@sia.soul/sia-react-ui 0.1.23 → 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 (42) hide show
  1. package/dist/{Select-BoVx-D0D.d.ts → Select-O_yY51vc.d.ts} +4 -2
  2. package/dist/{Select-BO3VyE2n.d.cts → Select-W_xpkpOW.d.cts} +4 -2
  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-VX2JECOU.js → chunk-6R7JY7IY.js} +20 -16
  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-NPB33IXJ.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-GM47DAAN.js → chunk-T2QIW4OO.js} +8 -7
  16. package/dist/{core-Cqgl6Z7h.d.ts → core-BOzLwiXG.d.ts} +44 -5
  17. package/dist/{core-DF0pknX6.d.cts → core-tbb9ZiBY.d.cts} +44 -5
  18. package/dist/core.cjs +1637 -1443
  19. package/dist/core.css +52 -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 +3705 -3505
  24. package/dist/index.css +52 -0
  25. package/dist/index.d.cts +28 -15
  26. package/dist/index.d.ts +28 -15
  27. package/dist/index.js +90 -83
  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-a6nzK7Wu.d.ts → select-date-range-BjqFUeU6.d.ts} +1 -1
  35. package/dist/{select-date-range-IOe6MMqu.d.cts → select-date-range-C9w8z3G8.d.cts} +1 -1
  36. package/dist/select-date-range.cjs +1188 -1059
  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/chunk-3VJ4CZDQ.js +0 -43
package/dist/core.css CHANGED
@@ -4906,6 +4906,37 @@ fieldset:disabled .sia-input-number__floating-placeholder {
4906
4906
  .sia-table-settings__loading {
4907
4907
  min-height: 160px;
4908
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
+ }
4909
4940
 
4910
4941
  /* src/components-extra.css */
4911
4942
  .sia-flex {
@@ -9652,6 +9683,27 @@ button.sia-treemap__tile:focus-visible,
9652
9683
  color: var(--sia-color-text-secondary, #777);
9653
9684
  }
9654
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
+
9655
9707
  /* src/breadcrumb.css */
9656
9708
  .sia-breadcrumb {
9657
9709
  color: var(--sia-color-text-secondary);
package/dist/core.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- 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-BO3VyE2n.cjs';
2
- 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, aN as Typography, aO as TypographyLinkProps, aP as TypographyProps, aQ as TypographyTitleProps, aR as TypographyType, aS as Upload, aT as UploadChangeInfo, aU as UploadDraggerProps, aV as UploadFile, aW as UploadFileStatus, aX as UploadProps, aY as UploadRequestOptions, b0 as message } from './core-DF0pknX6.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 { 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-BoVx-D0D.js';
2
- 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, aN as Typography, aO as TypographyLinkProps, aP as TypographyProps, aQ as TypographyTitleProps, aR as TypographyType, aS as Upload, aT as UploadChangeInfo, aU as UploadDraggerProps, aV as UploadFile, aW as UploadFileStatus, aX as UploadProps, aY as UploadRequestOptions, b0 as message } from './core-Cqgl6Z7h.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-NPB33IXJ.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-VX2JECOU.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