@aloudata/aloudata-design 2.5.1 → 2.6.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.
Files changed (38) hide show
  1. package/dist/DataPreviewTable/components/Body/Error.d.ts +1 -2
  2. package/dist/DataPreviewTable/components/Body/Error.js +5 -7
  3. package/dist/DataPreviewTable/components/Header/index.d.ts +1 -0
  4. package/dist/DataPreviewTable/components/Header/index.js +3 -4
  5. package/dist/DataPreviewTable/index.js +16 -15
  6. package/dist/DataPreviewTable/interface.d.ts +2 -2
  7. package/dist/DataPreviewTable/style/index.less +6 -0
  8. package/dist/Icon/components/CancelledCircleFill.d.ts +11 -0
  9. package/dist/Icon/components/CancelledCircleFill.js +35 -0
  10. package/dist/Icon/components/InProgressFill.d.ts +11 -0
  11. package/dist/Icon/components/InProgressFill.js +38 -0
  12. package/dist/Icon/index.d.ts +2 -0
  13. package/dist/Icon/index.js +2 -0
  14. package/dist/Icon/svg/Cancelled-Circle-fill.svg +5 -0
  15. package/dist/Icon/svg/In-Progress-fill.svg +8 -0
  16. package/dist/Radio/components/Radio/index.js +45 -9
  17. package/dist/Radio/interface/radio.d.ts +3 -0
  18. package/dist/Radio/style/index.less +32 -2
  19. package/dist/Spin/CustomIcon/index.js +4 -1
  20. package/dist/StatusLight/index.d.ts +12 -0
  21. package/dist/StatusLight/index.js +74 -0
  22. package/dist/StatusLight/style/index.d.ts +2 -0
  23. package/dist/StatusLight/style/index.js +2 -0
  24. package/dist/StatusLight/style/index.less +47 -0
  25. package/dist/Table/helper.d.ts +6 -4
  26. package/dist/Table/helper.js +20 -5
  27. package/dist/Table/hooks/useFixed.d.ts +10 -0
  28. package/dist/Table/hooks/useFixed.js +56 -0
  29. package/dist/Table/hooks/useScroll.d.ts +5 -1
  30. package/dist/Table/hooks/useScroll.js +79 -11
  31. package/dist/Table/index.js +56 -51
  32. package/dist/Table/style/index.less +70 -4
  33. package/dist/Table/types.d.ts +4 -0
  34. package/dist/ald.min.css +1 -1
  35. package/dist/index.d.ts +1 -0
  36. package/dist/index.js +1 -0
  37. package/dist/index.less +1 -0
  38. package/package.json +2 -1
package/dist/index.d.ts CHANGED
@@ -77,6 +77,7 @@ export { default as Space } from './Space';
77
77
  export type { SpaceProps } from './Space';
78
78
  export { default as Spin } from './Spin';
79
79
  export type { SpinProps } from './Spin';
80
+ export { default as StatusLight } from './StatusLight';
80
81
  export { default as Steps } from './Steps';
81
82
  export type { IStepProps as StepProps, IStepsProps as StepsProps, } from './Steps';
82
83
  export { default as Switch } from './Switch';
package/dist/index.js CHANGED
@@ -43,6 +43,7 @@ export { default as Select } from "./Select";
43
43
  export { default as Skeleton } from "./Skeleton";
44
44
  export { default as Space } from "./Space";
45
45
  export { default as Spin } from "./Spin";
46
+ export { default as StatusLight } from "./StatusLight";
46
47
  export { default as Steps } from "./Steps";
47
48
  export { default as Switch } from "./Switch";
48
49
  export { default as Table } from "./Table";
package/dist/index.less CHANGED
@@ -54,3 +54,4 @@
54
54
  @import './User/style/index.less';
55
55
  @import './Watermark/style/index.less';
56
56
  @import './Badge/style/index.less';
57
+ @import './StatusLight/style/index.less';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloudata/aloudata-design",
3
- "version": "2.5.1",
3
+ "version": "2.6.0",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "module": "dist/index.js",
@@ -58,6 +58,7 @@
58
58
  "@radix-ui/react-scroll-area": "^1.0.4",
59
59
  "@szhsin/react-menu": "^4.1.0",
60
60
  "@tanstack/react-table": "^8.10.0",
61
+ "@xobotyi/scrollbar-width": "^1.9.5",
61
62
  "ahooks": "^3.7.8",
62
63
  "antd": "5.4.3",
63
64
  "compare-func": "^2.0.0",