Skip to content

Commit f98c328

Browse files
committed
fix import
1 parent 742078d commit f98c328

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codingapi/ui-framework",
3-
"version": "0.0.9",
3+
"version": "0.0.10",
44
"description": "A UI Framework built with React and Typescript",
55
"keywords": ["ui", "framework", "react", "typescript"],
66
"homepage": "https://github.com/codingapi/ui-framework",

src/Access/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react";
2-
import {RoleControl} from "../utils/role";
2+
import {RoleControl} from "../utils";
33

44
export interface AccessProps {
55
children?: React.ReactNode;

src/ComponentBus/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react";
2-
import {DynamicComponentUtils} from "../utils/dynamicComponent";
2+
import {DynamicComponentUtils} from "../utils";
33

44
export class ComponentBus {
55

src/Flow/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react";
2-
import {FormInstance} from "../Form/instance";
2+
import {FormInstance} from "../Form";
33

44
// 节点状态
55
export type NodeState = "done" | "wait" | "undone" | "current";

0 commit comments

Comments
 (0)