@sia.soul/sia-react-ui 0.1.22 → 0.1.24

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/Select-O_yY51vc.d.ts +307 -0
  2. package/dist/Select-W_xpkpOW.d.cts +307 -0
  3. package/dist/chart.cjs +1401 -1160
  4. package/dist/chart.css +21 -0
  5. package/dist/chart.js +4 -4
  6. package/dist/{chunk-3TRRBMXY.js → chunk-6R7JY7IY.js} +44 -21
  7. package/dist/{chunk-TZGUBGA4.js → chunk-6WBABNAX.js} +4 -3
  8. package/dist/{chunk-OKP4DIQH.js → chunk-GUXAWU63.js} +29 -26
  9. package/dist/{chunk-QJ4OQNQ4.js → chunk-LA7O3PN4.js} +4 -3
  10. package/dist/{chunk-7RNS52YG.js → chunk-LIYCU2GU.js} +349 -278
  11. package/dist/{chunk-KLI65JVD.js → chunk-LRPQ5FGE.js} +68 -186
  12. package/dist/chunk-NSSPGXNM.js +284 -0
  13. package/dist/{chunk-YT6E3X2K.js → chunk-OH6YILJW.js} +4 -3
  14. package/dist/{chunk-RWGSZW32.js → chunk-RGXVPS37.js} +7 -6
  15. package/dist/{chunk-VN6PIPP7.js → chunk-T2QIW4OO.js} +8 -7
  16. package/dist/{core-DeZknKwc.d.ts → core-BOzLwiXG.d.ts} +40 -158
  17. package/dist/{core-C5OnrCi4.d.cts → core-tbb9ZiBY.d.cts} +40 -158
  18. package/dist/core.cjs +1656 -1443
  19. package/dist/core.css +60 -0
  20. package/dist/core.d.cts +2 -2
  21. package/dist/core.d.ts +2 -2
  22. package/dist/core.js +8 -6
  23. package/dist/index.cjs +3801 -3580
  24. package/dist/index.css +60 -0
  25. package/dist/index.d.cts +33 -16
  26. package/dist/index.d.ts +33 -16
  27. package/dist/index.js +94 -85
  28. package/dist/markdown-editor.cjs +269 -28
  29. package/dist/markdown-editor.css +20 -0
  30. package/dist/markdown-editor.js +2 -2
  31. package/dist/rich-text-editor.cjs +1156 -1031
  32. package/dist/rich-text-editor.css +20 -0
  33. package/dist/rich-text-editor.js +4 -4
  34. package/dist/{select-date-range-CGRb3-W8.d.ts → select-date-range-BjqFUeU6.d.ts} +1 -1
  35. package/dist/{select-date-range-DDmYGDD4.d.cts → select-date-range-C9w8z3G8.d.cts} +1 -1
  36. package/dist/select-date-range.cjs +1209 -1061
  37. package/dist/select-date-range.css +20 -0
  38. package/dist/select-date-range.d.cts +2 -2
  39. package/dist/select-date-range.d.ts +2 -2
  40. package/dist/select-date-range.js +5 -5
  41. package/package.json +2 -2
  42. package/dist/Select-4hGJt3RJ.d.cts +0 -142
  43. package/dist/Select-BNSE67xn.d.ts +0 -142
  44. package/dist/chunk-3VJ4CZDQ.js +0 -43
package/dist/core.css CHANGED
@@ -4419,6 +4419,14 @@ fieldset:disabled .sia-input-number__floating-placeholder {
4419
4419
  border: 1px solid var(--sia-table-border-color, #EFF2F6);
4420
4420
  border-radius: 0 0 var(--sia-radius) var(--sia-radius);
4421
4421
  }
4422
+ .sia-select-modal__header-extra {
4423
+ display: flex;
4424
+ align-items: center;
4425
+ flex-wrap: wrap;
4426
+ gap: 12px;
4427
+ min-width: 0;
4428
+ margin-bottom: 16px;
4429
+ }
4422
4430
  .sia-select-modal__heading {
4423
4431
  display: flex;
4424
4432
  justify-content: space-between;
@@ -4898,6 +4906,37 @@ fieldset:disabled .sia-input-number__floating-placeholder {
4898
4906
  .sia-table-settings__loading {
4899
4907
  min-height: 160px;
4900
4908
  }
4909
+ .sia-toolbar {
4910
+ display: flex;
4911
+ align-items: center;
4912
+ position: relative;
4913
+ width: 100%;
4914
+ min-width: 0;
4915
+ gap: 4px;
4916
+ flex-wrap: nowrap;
4917
+ overflow: hidden;
4918
+ }
4919
+ .sia-toolbar__item {
4920
+ display: inline-flex;
4921
+ flex: 0 0 auto;
4922
+ width: max-content;
4923
+ white-space: nowrap;
4924
+ }
4925
+ .sia-toolbar__item--hidden {
4926
+ position: absolute;
4927
+ top: 0;
4928
+ left: 0;
4929
+ visibility: hidden;
4930
+ pointer-events: none;
4931
+ }
4932
+ .sia-table__toolbar > div:first-child {
4933
+ flex: 1;
4934
+ min-width: 0;
4935
+ }
4936
+ .sia-table__toolbar > div:last-child {
4937
+ flex-shrink: 0;
4938
+ flex-wrap: nowrap;
4939
+ }
4901
4940
 
4902
4941
  /* src/components-extra.css */
4903
4942
  .sia-flex {
@@ -9644,6 +9683,27 @@ button.sia-treemap__tile:focus-visible,
9644
9683
  color: var(--sia-color-text-secondary, #777);
9645
9684
  }
9646
9685
 
9686
+ /* src/title-tooltip.css */
9687
+ body > .sia-title-tooltip[data-sia-popup-layer] {
9688
+ position: fixed;
9689
+ z-index: 1800;
9690
+ display: block;
9691
+ box-sizing: border-box;
9692
+ width: max-content;
9693
+ max-width: min(320px, calc(100vw - 16px));
9694
+ max-height: calc(100vh - 16px);
9695
+ padding: 7px 10px;
9696
+ color: var(--sia-color-text, #1f2329);
9697
+ background: var(--sia-color-surface, #fff);
9698
+ border: 1px solid var(--sia-color-border, #d9d9d9);
9699
+ border-radius: var(--sia-radius, 6px);
9700
+ box-shadow: var(--sia-shadow-popup, 0 4px 16px rgb(0 0 0 / 12%));
9701
+ font: 400 13px/1.5 system-ui, sans-serif;
9702
+ pointer-events: none;
9703
+ overflow-wrap: anywhere;
9704
+ white-space: pre-wrap;
9705
+ }
9706
+
9647
9707
  /* src/breadcrumb.css */
9648
9708
  .sia-breadcrumb {
9649
9709
  color: var(--sia-color-text-secondary);
package/dist/core.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- export { h as Breadcrumb, i as BreadcrumbItem, j as BreadcrumbProps, k as Button, B as ButtonProps, c as ButtonSize, l as ButtonVariant, n as Card, o as CardAccent, p as CardProps, t as Collapse, u as CollapseItem, v as CollapseKey, w as CollapseProps, H as FilledIconName, I as FloatButton, J as FloatButtonBackTopProps, K as FloatButtonGroupProps, L as FloatButtonProps, N as FloatButtonShape, S as Icon, U as IconName, V as IconProps, W as IconVariant, a0 as Input, a1 as InputProps, a8 as MessageConfig, a9 as MessageHandle, aa as MessageKey, ab as MessageType, ac as Modal, b as ModalActionResult, M as ModalOpenConfig, ad as ModalProps, ae as ModalType, a as OverlayApiHandle, am as Progress, an as ProgressProps, ao as ProgressStatus, ar as Segmented, as as SegmentedOption, at as SegmentedProps, au as SegmentedValue, aB as TabItem, aC as Tabs, aE as TabsOrientation, aF as TabsPosition, aG as TabsProps, aH as TabsType, aI as Tag, aJ as TagProps, T as TagStatus, aK as TagVariant, aY as Typography, aZ as TypographyLinkProps, a_ as TypographyProps, a$ as TypographyTitleProps, b0 as TypographyType, b1 as Upload, b2 as UploadChangeInfo, b3 as UploadDraggerProps, b4 as UploadFile, b5 as UploadFileStatus, b6 as UploadProps, b7 as UploadRequestOptions, bb as message } from './core-C5OnrCi4.cjs';
2
- export { c as Select, S as SelectOption, b as SelectProps, e as SelectValue } from './Select-4hGJt3RJ.cjs';
1
+ export { d as Breadcrumb, e as BreadcrumbItem, f as BreadcrumbProps, h as Card, i as CardAccent, j as CardProps, n as Collapse, o as CollapseItem, p as CollapseKey, q as CollapseProps, x as FilledIconName, y as FloatButton, z as FloatButtonBackTopProps, A as FloatButtonGroupProps, E as FloatButtonProps, G as FloatButtonShape, K as Icon, L as IconName, M as IconProps, N as IconVariant, U as Input, V as InputProps, a0 as MessageConfig, a1 as MessageHandle, a2 as MessageKey, a3 as MessageType, ab as Progress, ac as ProgressProps, ad as ProgressStatus, ag as Segmented, ah as SegmentedOption, ai as SegmentedProps, aj as SegmentedValue, aq as TabItem, ar as Tabs, at as TabsOrientation, au as TabsPosition, av as TabsProps, aw as TabsType, ax as Tag, ay as TagProps, T as TagStatus, az as TagVariant, aD as Toolbar, aE as ToolbarItem, aF as ToolbarProps, aQ as Typography, aR as TypographyLinkProps, aS as TypographyProps, aT as TypographyTitleProps, aU as TypographyType, aV as Upload, aW as UploadChangeInfo, aX as UploadDraggerProps, aY as UploadFile, aZ as UploadFileStatus, a_ as UploadProps, a$ as UploadRequestOptions, b3 as message } from './core-tbb9ZiBY.cjs';
2
+ export { f as Button, B as ButtonProps, e as ButtonSize, g as ButtonVariant, h as Modal, d as ModalActionResult, M as ModalOpenConfig, i as ModalProps, j as ModalType, a as OverlayApiHandle, k as Select, S as SelectOption, c as SelectProps, m as SelectValue } from './Select-W_xpkpOW.cjs';
3
3
  import 'react';
4
4
  import './shared-Bx4B28Wh.cjs';
package/dist/core.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { h as Breadcrumb, i as BreadcrumbItem, j as BreadcrumbProps, k as Button, B as ButtonProps, c as ButtonSize, l as ButtonVariant, n as Card, o as CardAccent, p as CardProps, t as Collapse, u as CollapseItem, v as CollapseKey, w as CollapseProps, H as FilledIconName, I as FloatButton, J as FloatButtonBackTopProps, K as FloatButtonGroupProps, L as FloatButtonProps, N as FloatButtonShape, S as Icon, U as IconName, V as IconProps, W as IconVariant, a0 as Input, a1 as InputProps, a8 as MessageConfig, a9 as MessageHandle, aa as MessageKey, ab as MessageType, ac as Modal, b as ModalActionResult, M as ModalOpenConfig, ad as ModalProps, ae as ModalType, a as OverlayApiHandle, am as Progress, an as ProgressProps, ao as ProgressStatus, ar as Segmented, as as SegmentedOption, at as SegmentedProps, au as SegmentedValue, aB as TabItem, aC as Tabs, aE as TabsOrientation, aF as TabsPosition, aG as TabsProps, aH as TabsType, aI as Tag, aJ as TagProps, T as TagStatus, aK as TagVariant, aY as Typography, aZ as TypographyLinkProps, a_ as TypographyProps, a$ as TypographyTitleProps, b0 as TypographyType, b1 as Upload, b2 as UploadChangeInfo, b3 as UploadDraggerProps, b4 as UploadFile, b5 as UploadFileStatus, b6 as UploadProps, b7 as UploadRequestOptions, bb as message } from './core-DeZknKwc.js';
2
- export { c as Select, S as SelectOption, b as SelectProps, e as SelectValue } from './Select-BNSE67xn.js';
1
+ export { d as Breadcrumb, e as BreadcrumbItem, f as BreadcrumbProps, h as Card, i as CardAccent, j as CardProps, n as Collapse, o as CollapseItem, p as CollapseKey, q as CollapseProps, x as FilledIconName, y as FloatButton, z as FloatButtonBackTopProps, A as FloatButtonGroupProps, E as FloatButtonProps, G as FloatButtonShape, K as Icon, L as IconName, M as IconProps, N as IconVariant, U as Input, V as InputProps, a0 as MessageConfig, a1 as MessageHandle, a2 as MessageKey, a3 as MessageType, ab as Progress, ac as ProgressProps, ad as ProgressStatus, ag as Segmented, ah as SegmentedOption, ai as SegmentedProps, aj as SegmentedValue, aq as TabItem, ar as Tabs, at as TabsOrientation, au as TabsPosition, av as TabsProps, aw as TabsType, ax as Tag, ay as TagProps, T as TagStatus, az as TagVariant, aD as Toolbar, aE as ToolbarItem, aF as ToolbarProps, aQ as Typography, aR as TypographyLinkProps, aS as TypographyProps, aT as TypographyTitleProps, aU as TypographyType, aV as Upload, aW as UploadChangeInfo, aX as UploadDraggerProps, aY as UploadFile, aZ as UploadFileStatus, a_ as UploadProps, a$ as UploadRequestOptions, b3 as message } from './core-BOzLwiXG.js';
2
+ export { f as Button, B as ButtonProps, e as ButtonSize, g as ButtonVariant, h as Modal, d as ModalActionResult, M as ModalOpenConfig, i as ModalProps, j as ModalType, a as OverlayApiHandle, k as Select, S as SelectOption, c as SelectProps, m as SelectValue } from './Select-O_yY51vc.js';
3
3
  import 'react';
4
4
  import './shared-Bx4B28Wh.js';
package/dist/core.js CHANGED
@@ -6,24 +6,25 @@ import {
6
6
  Progress,
7
7
  Tabs,
8
8
  Tag,
9
+ Toolbar,
9
10
  Typography,
10
11
  Upload,
11
12
  message
12
- } from "./chunk-7RNS52YG.js";
13
- import "./chunk-YT6E3X2K.js";
13
+ } from "./chunk-LIYCU2GU.js";
14
+ import "./chunk-OH6YILJW.js";
14
15
  import {
15
16
  Modal,
16
17
  Select
17
- } from "./chunk-3TRRBMXY.js";
18
+ } from "./chunk-6R7JY7IY.js";
18
19
  import {
19
20
  Icon,
20
21
  Input,
21
22
  Segmented
22
- } from "./chunk-KLI65JVD.js";
23
+ } from "./chunk-LRPQ5FGE.js";
23
24
  import {
24
25
  Button
25
- } from "./chunk-TZGUBGA4.js";
26
- import "./chunk-3VJ4CZDQ.js";
26
+ } from "./chunk-6WBABNAX.js";
27
+ import "./chunk-NSSPGXNM.js";
27
28
  export {
28
29
  Breadcrumb,
29
30
  Button,
@@ -38,6 +39,7 @@ export {
38
39
  Select,
39
40
  Tabs,
40
41
  Tag,
42
+ Toolbar,
41
43
  Typography,
42
44
  Upload,
43
45
  message