@sia.soul/sia-react-ui 0.1.23 → 0.1.25

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-KLI65JVD.js → chunk-27ZYAKII.js} +68 -186
  7. package/dist/{chunk-TZGUBGA4.js → chunk-IYNS423D.js} +4 -3
  8. package/dist/{chunk-GM47DAAN.js → chunk-IYO2JSGQ.js} +8 -7
  9. package/dist/{chunk-QJ4OQNQ4.js → chunk-PXHBIRQW.js} +4 -3
  10. package/dist/{chunk-VX2JECOU.js → chunk-QCBKT5FV.js} +20 -16
  11. package/dist/chunk-RAO3JHDL.js +284 -0
  12. package/dist/{chunk-RWGSZW32.js → chunk-RWODH2LW.js} +7 -6
  13. package/dist/{chunk-OKP4DIQH.js → chunk-TZROBD65.js} +29 -26
  14. package/dist/{chunk-NPB33IXJ.js → chunk-W52CNNWW.js} +349 -278
  15. package/dist/{chunk-YT6E3X2K.js → chunk-YQDHCORW.js} +4 -3
  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 +53 -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 +3797 -3583
  24. package/dist/index.css +53 -0
  25. package/dist/index.d.cts +36 -17
  26. package/dist/index.d.ts +36 -17
  27. package/dist/index.js +104 -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
@@ -2393,6 +2393,7 @@ fieldset:disabled .sia-input-number__floating-placeholder {
2393
2393
  padding-inline: 16px;
2394
2394
  }
2395
2395
  .sia-message {
2396
+ font-size: var(--sia-font-size, 16px);
2396
2397
  display: flex;
2397
2398
  align-items: center;
2398
2399
  gap: 9px;
@@ -4906,6 +4907,37 @@ fieldset:disabled .sia-input-number__floating-placeholder {
4906
4907
  .sia-table-settings__loading {
4907
4908
  min-height: 160px;
4908
4909
  }
4910
+ .sia-toolbar {
4911
+ display: flex;
4912
+ align-items: center;
4913
+ position: relative;
4914
+ width: 100%;
4915
+ min-width: 0;
4916
+ gap: 4px;
4917
+ flex-wrap: nowrap;
4918
+ overflow: hidden;
4919
+ }
4920
+ .sia-toolbar__item {
4921
+ display: inline-flex;
4922
+ flex: 0 0 auto;
4923
+ width: max-content;
4924
+ white-space: nowrap;
4925
+ }
4926
+ .sia-toolbar__item--hidden {
4927
+ position: absolute;
4928
+ top: 0;
4929
+ left: 0;
4930
+ visibility: hidden;
4931
+ pointer-events: none;
4932
+ }
4933
+ .sia-table__toolbar > div:first-child {
4934
+ flex: 1;
4935
+ min-width: 0;
4936
+ }
4937
+ .sia-table__toolbar > div:last-child {
4938
+ flex-shrink: 0;
4939
+ flex-wrap: nowrap;
4940
+ }
4909
4941
 
4910
4942
  /* src/components-extra.css */
4911
4943
  .sia-flex {
@@ -9652,6 +9684,27 @@ button.sia-treemap__tile:focus-visible,
9652
9684
  color: var(--sia-color-text-secondary, #777);
9653
9685
  }
9654
9686
 
9687
+ /* src/title-tooltip.css */
9688
+ body > .sia-title-tooltip[data-sia-popup-layer] {
9689
+ position: fixed;
9690
+ z-index: 1800;
9691
+ display: block;
9692
+ box-sizing: border-box;
9693
+ width: max-content;
9694
+ max-width: min(320px, calc(100vw - 16px));
9695
+ max-height: calc(100vh - 16px);
9696
+ padding: 7px 10px;
9697
+ color: var(--sia-color-text, #1f2329);
9698
+ background: var(--sia-color-surface, #fff);
9699
+ border: 1px solid var(--sia-color-border, #d9d9d9);
9700
+ border-radius: var(--sia-radius, 6px);
9701
+ box-shadow: var(--sia-shadow-popup, 0 4px 16px rgb(0 0 0 / 12%));
9702
+ font: 400 13px/1.5 system-ui, sans-serif;
9703
+ pointer-events: none;
9704
+ overflow-wrap: anywhere;
9705
+ white-space: pre-wrap;
9706
+ }
9707
+
9655
9708
  /* src/breadcrumb.css */
9656
9709
  .sia-breadcrumb {
9657
9710
  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-W52CNNWW.js";
14
+ import "./chunk-YQDHCORW.js";
14
15
  import {
15
16
  Modal,
16
17
  Select
17
- } from "./chunk-VX2JECOU.js";
18
+ } from "./chunk-QCBKT5FV.js";
18
19
  import {
19
20
  Icon,
20
21
  Input,
21
22
  Segmented
22
- } from "./chunk-KLI65JVD.js";
23
+ } from "./chunk-27ZYAKII.js";
23
24
  import {
24
25
  Button
25
- } from "./chunk-TZGUBGA4.js";
26
- import "./chunk-3VJ4CZDQ.js";
26
+ } from "./chunk-IYNS423D.js";
27
+ import "./chunk-RAO3JHDL.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