@aloudata/aloudata-design 2.12.6 → 2.13.1

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.
Files changed (44) hide show
  1. package/dist/ColorPicker/index.js +2 -2
  2. package/dist/Icon/components/SignLightLine.d.ts +11 -0
  3. package/dist/Icon/components/SignLightLine.js +35 -0
  4. package/dist/Icon/index.d.ts +1 -0
  5. package/dist/Icon/index.js +1 -0
  6. package/dist/Icon/svg/Sign-light-line.svg +3 -0
  7. package/dist/List/index.js +1 -4
  8. package/dist/LogicTree/DisplayLogicTree.d.ts +9 -0
  9. package/dist/LogicTree/DisplayLogicTree.js +14 -0
  10. package/dist/LogicTree/components/DisplayLogicItem/index.d.ts +10 -0
  11. package/dist/LogicTree/components/DisplayLogicItem/index.js +87 -0
  12. package/dist/LogicTree/components/LogicItem/index.d.ts +14 -0
  13. package/dist/LogicTree/components/LogicItem/index.js +144 -0
  14. package/dist/LogicTree/helper.d.ts +8 -0
  15. package/dist/LogicTree/helper.js +183 -0
  16. package/dist/LogicTree/index.d.ts +17 -0
  17. package/dist/LogicTree/index.js +78 -0
  18. package/dist/LogicTree/style/DisplayLogicItem.less +54 -0
  19. package/dist/LogicTree/style/LoginItem.less +79 -0
  20. package/dist/LogicTree/style/index.d.ts +2 -0
  21. package/dist/LogicTree/style/index.js +2 -0
  22. package/dist/LogicTree/style/index.less +12 -0
  23. package/dist/LogicTree/type.d.ts +22 -0
  24. package/dist/LogicTree/type.js +10 -0
  25. package/dist/MemberPicker/components/PanelWrapper.js +0 -1
  26. package/dist/MemberPicker/index.js +24 -21
  27. package/dist/MemberPicker/tests/mockPort.d.ts +6 -0
  28. package/dist/MemberPicker/tests/mockPort.js +147 -0
  29. package/dist/Steps/style/index.less +1 -7
  30. package/dist/Tag/index.d.ts +4 -0
  31. package/dist/Tag/index.js +4 -1
  32. package/dist/Tag/style/index.less +0 -1
  33. package/dist/_utils/getUniqId.d.ts +5 -0
  34. package/dist/_utils/getUniqId.js +12 -0
  35. package/dist/ald.min.css +1 -1
  36. package/dist/index.d.ts +1 -0
  37. package/dist/index.js +1 -0
  38. package/dist/index.less +1 -0
  39. package/dist/locale/default.d.ts +10 -0
  40. package/dist/locale/en_US.d.ts +10 -0
  41. package/dist/locale/en_US.js +10 -0
  42. package/dist/locale/zh_CN.d.ts +10 -0
  43. package/dist/locale/zh_CN.js +10 -0
  44. 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
@@ -58,3 +58,4 @@
58
58
  @import './OverflowCount/style/index.less';
59
59
  @import './Slider/style/index.less';
60
60
  @import './List/style/index.less';
61
+ @import './LogicTree/style/index.less';
@@ -57,4 +57,14 @@ export declare function getTranslator(lang?: string): {
57
57
  ErrorBoundary: {
58
58
  happenedError: string;
59
59
  };
60
+ LogicTree: {
61
+ btn: {
62
+ addCondition: string;
63
+ addRelation: string;
64
+ };
65
+ select: {
66
+ and: string;
67
+ or: string;
68
+ };
69
+ };
60
70
  };
@@ -47,5 +47,15 @@ declare const localeValues: {
47
47
  ErrorBoundary: {
48
48
  happenedError: string;
49
49
  };
50
+ LogicTree: {
51
+ btn: {
52
+ addCondition: string;
53
+ addRelation: string;
54
+ };
55
+ select: {
56
+ and: string;
57
+ or: string;
58
+ };
59
+ };
50
60
  };
51
61
  export default localeValues;
@@ -48,6 +48,16 @@ var localeValues = {
48
48
  },
49
49
  ErrorBoundary: {
50
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
+ }
51
61
  }
52
62
  };
53
63
  export default localeValues;
@@ -47,5 +47,15 @@ declare const localeValues: {
47
47
  ErrorBoundary: {
48
48
  happenedError: string;
49
49
  };
50
+ LogicTree: {
51
+ btn: {
52
+ addCondition: string;
53
+ addRelation: string;
54
+ };
55
+ select: {
56
+ and: string;
57
+ or: string;
58
+ };
59
+ };
50
60
  };
51
61
  export default localeValues;
@@ -48,6 +48,16 @@ var localeValues = {
48
48
  },
49
49
  ErrorBoundary: {
50
50
  happenedError: '发生了错误'
51
+ },
52
+ LogicTree: {
53
+ btn: {
54
+ addCondition: '添加条件',
55
+ addRelation: '添加关系'
56
+ },
57
+ select: {
58
+ and: '且',
59
+ or: '或'
60
+ }
51
61
  }
52
62
  };
53
63
  export default localeValues;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloudata/aloudata-design",
3
- "version": "2.12.6",
3
+ "version": "2.13.1",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "module": "dist/index.js",