@aloudata/aloudata-design 2.12.5 → 2.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ColorPicker/index.js +2 -2
- package/dist/ConfigProvider/index.js +1 -1
- package/dist/Icon/components/SignLightLine.d.ts +11 -0
- package/dist/Icon/components/SignLightLine.js +35 -0
- package/dist/Icon/index.d.ts +1 -0
- package/dist/Icon/index.js +1 -0
- package/dist/Icon/svg/Sign-light-line.svg +3 -0
- package/dist/List/index.js +1 -4
- package/dist/LogicTree/DisplayLogicTree.d.ts +9 -0
- package/dist/LogicTree/DisplayLogicTree.js +14 -0
- package/dist/LogicTree/components/DisplayLogicItem/index.d.ts +10 -0
- package/dist/LogicTree/components/DisplayLogicItem/index.js +87 -0
- package/dist/LogicTree/components/LogicItem/index.d.ts +14 -0
- package/dist/LogicTree/components/LogicItem/index.js +144 -0
- package/dist/LogicTree/helper.d.ts +8 -0
- package/dist/LogicTree/helper.js +183 -0
- package/dist/LogicTree/index.d.ts +17 -0
- package/dist/LogicTree/index.js +78 -0
- package/dist/LogicTree/style/DisplayLogicItem.less +54 -0
- package/dist/LogicTree/style/LoginItem.less +79 -0
- package/dist/LogicTree/style/index.d.ts +2 -0
- package/dist/LogicTree/style/index.js +2 -0
- package/dist/LogicTree/style/index.less +12 -0
- package/dist/LogicTree/type.d.ts +22 -0
- package/dist/LogicTree/type.js +10 -0
- package/dist/MemberPicker/components/PanelWrapper.js +14 -2
- package/dist/MemberPicker/index.js +24 -21
- package/dist/MemberPicker/tests/mockPort.d.ts +6 -0
- package/dist/MemberPicker/tests/mockPort.js +147 -0
- package/dist/MemberPicker/utils/getUsersWithUserId.js +2 -2
- package/dist/Steps/style/index.less +1 -7
- package/dist/_utils/getUniqId.d.ts +5 -0
- package/dist/_utils/getUniqId.js +12 -0
- package/dist/ald.min.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.less +1 -0
- package/dist/locale/default.d.ts +11 -0
- package/dist/locale/en_US.d.ts +11 -0
- package/dist/locale/en_US.js +11 -0
- package/dist/locale/zh_CN.d.ts +11 -0
- package/dist/locale/zh_CN.js +11 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -50,6 +50,7 @@ export { default as InputSearch } from './InputSearch';
|
|
|
50
50
|
export { default as Layout } from './Layout';
|
|
51
51
|
export type { LayoutProps } from './Layout';
|
|
52
52
|
export { default as List } from './List';
|
|
53
|
+
export { default as LogicTree } from './LogicTree';
|
|
53
54
|
export { default as MemberPicker } from './MemberPicker';
|
|
54
55
|
export type { IUser, IMemberPickerProps as MemberPickerProps, TMemberPickerValue as MemberPickerValue, } from './MemberPicker/interface';
|
|
55
56
|
export { default as Menu } from './Menu';
|
package/dist/index.js
CHANGED
|
@@ -29,6 +29,7 @@ export { default as InputNumber } from "./InputNumber";
|
|
|
29
29
|
export { default as InputSearch } from "./InputSearch";
|
|
30
30
|
export { default as Layout } from "./Layout";
|
|
31
31
|
export { default as List } from "./List";
|
|
32
|
+
export { default as LogicTree } from "./LogicTree";
|
|
32
33
|
export { default as MemberPicker } from "./MemberPicker";
|
|
33
34
|
export { default as Menu } from "./Menu";
|
|
34
35
|
export { default as Modal } from "./Modal";
|
package/dist/index.less
CHANGED
package/dist/locale/default.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export declare const defaultLocale: {
|
|
|
9
9
|
};
|
|
10
10
|
export declare const LocaleContext: import("react").Context<Locale>;
|
|
11
11
|
export declare function getTranslator(lang?: string): {
|
|
12
|
+
locale: string;
|
|
12
13
|
Empty: {
|
|
13
14
|
noContentFound: string;
|
|
14
15
|
};
|
|
@@ -56,4 +57,14 @@ export declare function getTranslator(lang?: string): {
|
|
|
56
57
|
ErrorBoundary: {
|
|
57
58
|
happenedError: string;
|
|
58
59
|
};
|
|
60
|
+
LogicTree: {
|
|
61
|
+
btn: {
|
|
62
|
+
addCondition: string;
|
|
63
|
+
addRelation: string;
|
|
64
|
+
};
|
|
65
|
+
select: {
|
|
66
|
+
and: string;
|
|
67
|
+
or: string;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
59
70
|
};
|
package/dist/locale/en_US.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare const localeValues: {
|
|
2
|
+
locale: string;
|
|
2
3
|
Empty: {
|
|
3
4
|
noContentFound: string;
|
|
4
5
|
};
|
|
@@ -46,5 +47,15 @@ declare const localeValues: {
|
|
|
46
47
|
ErrorBoundary: {
|
|
47
48
|
happenedError: string;
|
|
48
49
|
};
|
|
50
|
+
LogicTree: {
|
|
51
|
+
btn: {
|
|
52
|
+
addCondition: string;
|
|
53
|
+
addRelation: string;
|
|
54
|
+
};
|
|
55
|
+
select: {
|
|
56
|
+
and: string;
|
|
57
|
+
or: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
49
60
|
};
|
|
50
61
|
export default localeValues;
|
package/dist/locale/en_US.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
var localeValues = {
|
|
2
|
+
locale: 'en',
|
|
2
3
|
Empty: {
|
|
3
4
|
noContentFound: 'No Content Found'
|
|
4
5
|
},
|
|
@@ -47,6 +48,16 @@ var localeValues = {
|
|
|
47
48
|
},
|
|
48
49
|
ErrorBoundary: {
|
|
49
50
|
happenedError: 'An error occurred'
|
|
51
|
+
},
|
|
52
|
+
LogicTree: {
|
|
53
|
+
btn: {
|
|
54
|
+
addCondition: 'Add condition',
|
|
55
|
+
addRelation: 'Add relation'
|
|
56
|
+
},
|
|
57
|
+
select: {
|
|
58
|
+
and: 'And',
|
|
59
|
+
or: 'Or'
|
|
60
|
+
}
|
|
50
61
|
}
|
|
51
62
|
};
|
|
52
63
|
export default localeValues;
|
package/dist/locale/zh_CN.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare const localeValues: {
|
|
2
|
+
locale: string;
|
|
2
3
|
Empty: {
|
|
3
4
|
noContentFound: string;
|
|
4
5
|
};
|
|
@@ -46,5 +47,15 @@ declare const localeValues: {
|
|
|
46
47
|
ErrorBoundary: {
|
|
47
48
|
happenedError: string;
|
|
48
49
|
};
|
|
50
|
+
LogicTree: {
|
|
51
|
+
btn: {
|
|
52
|
+
addCondition: string;
|
|
53
|
+
addRelation: string;
|
|
54
|
+
};
|
|
55
|
+
select: {
|
|
56
|
+
and: string;
|
|
57
|
+
or: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
49
60
|
};
|
|
50
61
|
export default localeValues;
|
package/dist/locale/zh_CN.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
var localeValues = {
|
|
2
|
+
locale: 'zh-cn',
|
|
2
3
|
Empty: {
|
|
3
4
|
noContentFound: '未找到内容'
|
|
4
5
|
},
|
|
@@ -47,6 +48,16 @@ var localeValues = {
|
|
|
47
48
|
},
|
|
48
49
|
ErrorBoundary: {
|
|
49
50
|
happenedError: '发生了错误'
|
|
51
|
+
},
|
|
52
|
+
LogicTree: {
|
|
53
|
+
btn: {
|
|
54
|
+
addCondition: '添加条件',
|
|
55
|
+
addRelation: '添加关系'
|
|
56
|
+
},
|
|
57
|
+
select: {
|
|
58
|
+
and: '且',
|
|
59
|
+
or: '或'
|
|
60
|
+
}
|
|
50
61
|
}
|
|
51
62
|
};
|
|
52
63
|
export default localeValues;
|