@seeqdev/qomponents 0.0.239 → 0.0.240-beta.ff0068cf71.20260715

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/index.esm.js +41 -41
  2. package/dist/index.esm.js.map +1 -1
  3. package/dist/index.js +70 -70
  4. package/dist/index.js.map +1 -1
  5. package/dist/src/Accordion/Accordion.d.ts +2 -2
  6. package/dist/src/Alert/Alert.d.ts +2 -2
  7. package/dist/src/Badge/Badge.d.ts +2 -2
  8. package/dist/src/Button/Button.d.ts +2 -2
  9. package/dist/src/ButtonGroup/ButtonGroup.d.ts +2 -2
  10. package/dist/src/ButtonWithDropdown/ButtonWithDropdown.d.ts +3 -3
  11. package/dist/src/ButtonWithPopover/ButtonWithPopover.d.ts +2 -2
  12. package/dist/src/Carousel/Carousel.d.ts +2 -2
  13. package/dist/src/Checkbox/Checkbox.d.ts +2 -2
  14. package/dist/src/Collapse/Collapse.d.ts +2 -2
  15. package/dist/src/ColorPickerControl/ColorPickerControl.d.ts +2 -2
  16. package/dist/src/EditorPanel/EditorPanel.d.ts +2 -2
  17. package/dist/src/ExternalLink/ExternalLink.d.ts +2 -2
  18. package/dist/src/Icon/Icon.d.ts +2 -2
  19. package/dist/src/LoadingIndicator/LoadingIndicator.d.ts +2 -2
  20. package/dist/src/Modal/Modal.d.ts +2 -2
  21. package/dist/src/Paginator/Paginator.constants.d.ts +35 -0
  22. package/dist/src/Paginator/Paginator.d.ts +162 -0
  23. package/dist/src/Paginator/Paginator.types.d.ts +30 -0
  24. package/dist/src/Paginator/Paginator.utilities.d.ts +31 -0
  25. package/dist/src/Paginator/index.d.ts +2 -0
  26. package/dist/src/ProgressBar/ProgressBar.d.ts +2 -2
  27. package/dist/src/SeeqActionDropdown/SeeqActionDropdown.d.ts +2 -2
  28. package/dist/src/SeeqActionDropdown/variants.d.ts +4 -4
  29. package/dist/src/SegmentedControl/SegmentedControl.d.ts +2 -2
  30. package/dist/src/Select/Select.d.ts +2 -2
  31. package/dist/src/Slider/Slider.d.ts +2 -2
  32. package/dist/src/SvgIcon/SvgIcon.d.ts +2 -2
  33. package/dist/src/Tabs/Tabs.d.ts +2 -2
  34. package/dist/src/TextArea/TextArea.d.ts +2 -2
  35. package/dist/src/TextField/TextField.d.ts +3 -3
  36. package/dist/src/ToolbarButton/ToolbarButton.d.ts +2 -2
  37. package/dist/src/Tooltip/Tooltip.d.ts +2 -2
  38. package/dist/src/TriggerWithDropdown/TriggerWithDropdown.d.ts +2 -2
  39. package/dist/src/index.build.d.ts +2 -1
  40. package/dist/src/index.d.ts +2 -1
  41. package/dist/styles.css +165 -0
  42. package/package.json +1 -1
@@ -1,13 +1,13 @@
1
1
  import { TooltipComponentProps } from "../Tooltip/Tooltip.types.js";
2
2
  import { FormControlElement, InputGroupPlacement } from "../types.js";
3
3
  import { InputLengthStyleProps } from "./TextField.types.js";
4
- import * as react0 from "react";
4
+ import * as react1 from "react";
5
5
 
6
6
  //#region src/TextField/TextField.d.ts
7
7
  /**
8
8
  * Textfield.
9
9
  */
10
- declare const TextField: react0.ForwardRefExoticComponent<Omit<{
10
+ declare const TextField: react1.ForwardRefExoticComponent<Omit<{
11
11
  readonly?: boolean;
12
12
  disabled?: boolean;
13
13
  onChange?: React.ChangeEventHandler<FormControlElement>;
@@ -36,6 +36,6 @@ declare const TextField: react0.ForwardRefExoticComponent<Omit<{
36
36
  inputHeight?: number;
37
37
  min?: number;
38
38
  max?: number;
39
- } & TooltipComponentProps & InputLengthStyleProps, "ref"> & react0.RefAttributes<HTMLInputElement>>;
39
+ } & TooltipComponentProps & InputLengthStyleProps, "ref"> & react1.RefAttributes<HTMLInputElement>>;
40
40
  //#endregion
41
41
  export { TextField };
@@ -1,5 +1,5 @@
1
1
  import { ToolbarButtonProps } from "./ToolbarButton.types.js";
2
- import * as react_jsx_runtime17 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/ToolbarButton/ToolbarButton.d.ts
5
5
  declare const ToolbarButton: ({
@@ -27,6 +27,6 @@ declare const ToolbarButton: ({
27
27
  popoverAlign,
28
28
  onClick,
29
29
  onHide
30
- }: ToolbarButtonProps) => react_jsx_runtime17.JSX.Element;
30
+ }: ToolbarButtonProps) => react_jsx_runtime0.JSX.Element;
31
31
  //#endregion
32
32
  export { ToolbarButton };
@@ -1,5 +1,5 @@
1
1
  import { TooltipProps } from "./Tooltip.types.js";
2
- import * as react_jsx_runtime13 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/Tooltip/Tooltip.d.ts
5
5
 
@@ -17,6 +17,6 @@ declare const Tooltip: ({
17
17
  children,
18
18
  text,
19
19
  delay
20
- }: TooltipProps) => react_jsx_runtime13.JSX.Element;
20
+ }: TooltipProps) => react_jsx_runtime0.JSX.Element;
21
21
  //#endregion
22
22
  export { Tooltip };
@@ -1,7 +1,7 @@
1
1
  import { TriggerWithDropdownProps } from "./TriggerWithDropdown.types.js";
2
- import * as react_jsx_runtime14 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime3 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/TriggerWithDropdown/TriggerWithDropdown.d.ts
5
- declare const TriggerWithDropdown: (props: TriggerWithDropdownProps) => react_jsx_runtime14.JSX.Element;
5
+ declare const TriggerWithDropdown: (props: TriggerWithDropdownProps) => react_jsx_runtime3.JSX.Element;
6
6
  //#endregion
7
7
  export { TriggerWithDropdown as default };
@@ -40,6 +40,7 @@ import { AppendedProps, InputGroupProps } from "./InputGroup/InputGroup.types.js
40
40
  import { InputGroup } from "./InputGroup/InputGroup.js";
41
41
  import LoadingIndicator from "./LoadingIndicator/LoadingIndicator.js";
42
42
  import Modal from "./Modal/Modal.js";
43
+ import Paginator from "./Paginator/Paginator.js";
43
44
  import ProgressBar from "./ProgressBar/ProgressBar.js";
44
45
  import SeeqActionDropdown from "./SeeqActionDropdown/SeeqActionDropdown.js";
45
46
  import SegmentedControl from "./SegmentedControl/SegmentedControl.js";
@@ -56,4 +57,4 @@ import TriggerWithDropdown from "./TriggerWithDropdown/TriggerWithDropdown.js";
56
57
  import { I18N_NAMESPACE, QomponentsTheme } from "./constants.js";
57
58
  import { ButtonWithDropdownProps, DropdownItems, DropdownProps, DropdownSubItem } from "./ButtonWithDropdown/ButtonWithDropdown.types.js";
58
59
  import ButtonWithDropdown from "./ButtonWithDropdown/ButtonWithDropdown.js";
59
- export { Accordion, AccordionProps, Alert, AlertProps, AppendedProps, Badge, Button, ButtonGroup, ButtonGroupProps, ButtonProps, ButtonSize, ButtonType, ButtonVariant, ButtonWithDropdown, ButtonWithDropdownProps, ButtonWithPopover, ButtonWithPopoverProps, Carousel, CarouselProps, Checkbox, CheckboxProps, Collapse, CollapseProps, ColorPickerControl, ColorSwatch, DEFAULT_TOOL_TIP_DELAY, DimensionStyle, DropdownItems, DropdownProps, DropdownSubItem, EditorPanel, ExternalLink, ExternalLinkProps, ExternalLinkThemeClass, ExternalLinkVariant, FormControlElement, GroupBase, GroupedOption, I18N_NAMESPACE, Icon, IconPosition, IconProps, IconSize, IconType, InputGroup, InputGroupPlacement, InputGroupProps, InputLengthStyleProps, LoadingIndicator, Modal, ModalProps, ModalSize, Option, OptionProps, ProgressBar, ProgressBarProps, ProgressIndicatorProps, QTip, QTipDataAttributes, QomponentsTheme, SeeqActionDropdown, SeeqActionDropdownItems, SeeqActionDropdownProps, SegmentedControl, Select, SelectComponents, SelectProps, Slider, SliderProps, SvgIconProps, SvgIconType, Tabs, TabsProps, TextArea, TextAreaProps, TextField, TextFieldProps, TitleIconPosition, ToolbarButton, ToolbarButtonProps, ToolbarButtonVariant, Tooltip, TooltipComponentProps, TooltipPosition, TooltipProps, TriggerWithDropdown, TriggerWithDropdownProps, buttonSizes, buttonTypes, buttonVariants, externalLinkThemeClasses, iconPositions, iconTypes, svgIconTypes, toolbarButtonVariants, tooltipPositions };
60
+ export { Accordion, AccordionProps, Alert, AlertProps, AppendedProps, Badge, Button, ButtonGroup, ButtonGroupProps, ButtonProps, ButtonSize, ButtonType, ButtonVariant, ButtonWithDropdown, ButtonWithDropdownProps, ButtonWithPopover, ButtonWithPopoverProps, Carousel, CarouselProps, Checkbox, CheckboxProps, Collapse, CollapseProps, ColorPickerControl, ColorSwatch, DEFAULT_TOOL_TIP_DELAY, DimensionStyle, DropdownItems, DropdownProps, DropdownSubItem, EditorPanel, ExternalLink, ExternalLinkProps, ExternalLinkThemeClass, ExternalLinkVariant, FormControlElement, GroupBase, GroupedOption, I18N_NAMESPACE, Icon, IconPosition, IconProps, IconSize, IconType, InputGroup, InputGroupPlacement, InputGroupProps, InputLengthStyleProps, LoadingIndicator, Modal, ModalProps, ModalSize, Option, OptionProps, Paginator, ProgressBar, ProgressBarProps, ProgressIndicatorProps, QTip, QTipDataAttributes, QomponentsTheme, SeeqActionDropdown, SeeqActionDropdownItems, SeeqActionDropdownProps, SegmentedControl, Select, SelectComponents, SelectProps, Slider, SliderProps, SvgIconProps, SvgIconType, Tabs, TabsProps, TextArea, TextAreaProps, TextField, TextFieldProps, TitleIconPosition, ToolbarButton, ToolbarButtonProps, ToolbarButtonVariant, Tooltip, TooltipComponentProps, TooltipPosition, TooltipProps, TriggerWithDropdown, TriggerWithDropdownProps, buttonSizes, buttonTypes, buttonVariants, externalLinkThemeClasses, iconPositions, iconTypes, svgIconTypes, toolbarButtonVariants, tooltipPositions };
@@ -40,6 +40,7 @@ import { AppendedProps, InputGroupProps } from "./InputGroup/InputGroup.types.js
40
40
  import { InputGroup } from "./InputGroup/InputGroup.js";
41
41
  import LoadingIndicator from "./LoadingIndicator/LoadingIndicator.js";
42
42
  import Modal from "./Modal/Modal.js";
43
+ import Paginator from "./Paginator/Paginator.js";
43
44
  import ProgressBar from "./ProgressBar/ProgressBar.js";
44
45
  import SeeqActionDropdown from "./SeeqActionDropdown/SeeqActionDropdown.js";
45
46
  import SegmentedControl from "./SegmentedControl/SegmentedControl.js";
@@ -56,4 +57,4 @@ import TriggerWithDropdown from "./TriggerWithDropdown/TriggerWithDropdown.js";
56
57
  import { I18N_NAMESPACE, QomponentsTheme } from "./constants.js";
57
58
  import { ButtonWithDropdownProps, DropdownItems, DropdownProps, DropdownSubItem } from "./ButtonWithDropdown/ButtonWithDropdown.types.js";
58
59
  import ButtonWithDropdown from "./ButtonWithDropdown/ButtonWithDropdown.js";
59
- export { Accordion, AccordionProps, Alert, AlertProps, AppendedProps, Badge, Button, ButtonGroup, ButtonGroupProps, ButtonProps, ButtonSize, ButtonType, ButtonVariant, ButtonWithDropdown, ButtonWithDropdownProps, ButtonWithPopover, ButtonWithPopoverProps, Carousel, CarouselProps, Checkbox, CheckboxProps, Collapse, CollapseProps, ColorPickerControl, ColorSwatch, DEFAULT_TOOL_TIP_DELAY, DimensionStyle, DropdownItems, DropdownProps, DropdownSubItem, EditorPanel, ExternalLink, ExternalLinkProps, ExternalLinkThemeClass, ExternalLinkVariant, FormControlElement, type GroupBase, GroupedOption, I18N_NAMESPACE, Icon, IconPosition, IconProps, IconSize, IconType, InputGroup, InputGroupPlacement, InputGroupProps, InputLengthStyleProps, LoadingIndicator, Modal, ModalProps, ModalSize, Option, type OptionProps, ProgressBar, ProgressBarProps, ProgressIndicatorProps, QTip, QTipDataAttributes, type QomponentsTheme, SeeqActionDropdown, SeeqActionDropdownItems, SeeqActionDropdownProps, SegmentedControl, Select, SelectComponents, SelectProps, Slider, SliderProps, SvgIconProps, SvgIconType, Tabs, TabsProps, TextArea, TextAreaProps, TextField, TextFieldProps, TitleIconPosition, ToolbarButton, ToolbarButtonProps, ToolbarButtonVariant, Tooltip, TooltipComponentProps, TooltipPosition, TooltipProps, TriggerWithDropdown, TriggerWithDropdownProps, buttonSizes, buttonTypes, buttonVariants, externalLinkThemeClasses, iconPositions, iconTypes, svgIconTypes, toolbarButtonVariants, tooltipPositions };
60
+ export { Accordion, AccordionProps, Alert, AlertProps, AppendedProps, Badge, Button, ButtonGroup, ButtonGroupProps, ButtonProps, ButtonSize, ButtonType, ButtonVariant, ButtonWithDropdown, ButtonWithDropdownProps, ButtonWithPopover, ButtonWithPopoverProps, Carousel, CarouselProps, Checkbox, CheckboxProps, Collapse, CollapseProps, ColorPickerControl, ColorSwatch, DEFAULT_TOOL_TIP_DELAY, DimensionStyle, DropdownItems, DropdownProps, DropdownSubItem, EditorPanel, ExternalLink, ExternalLinkProps, ExternalLinkThemeClass, ExternalLinkVariant, FormControlElement, type GroupBase, GroupedOption, I18N_NAMESPACE, Icon, IconPosition, IconProps, IconSize, IconType, InputGroup, InputGroupPlacement, InputGroupProps, InputLengthStyleProps, LoadingIndicator, Modal, ModalProps, ModalSize, Option, type OptionProps, Paginator, ProgressBar, ProgressBarProps, ProgressIndicatorProps, QTip, QTipDataAttributes, type QomponentsTheme, SeeqActionDropdown, SeeqActionDropdownItems, SeeqActionDropdownProps, SegmentedControl, Select, SelectComponents, SelectProps, Slider, SliderProps, SvgIconProps, SvgIconType, Tabs, TabsProps, TextArea, TextAreaProps, TextField, TextFieldProps, TitleIconPosition, ToolbarButton, ToolbarButtonProps, ToolbarButtonVariant, Tooltip, TooltipComponentProps, TooltipPosition, TooltipProps, TriggerWithDropdown, TriggerWithDropdownProps, buttonSizes, buttonTypes, buttonVariants, externalLinkThemeClasses, iconPositions, iconTypes, svgIconTypes, toolbarButtonVariants, tooltipPositions };
package/dist/styles.css CHANGED
@@ -271,6 +271,9 @@
271
271
  .tw\:z-1 {
272
272
  z-index: 1;
273
273
  }
274
+ .tw\:z-10 {
275
+ z-index: 10;
276
+ }
274
277
  .tw\:z-50 {
275
278
  z-index: 50;
276
279
  }
@@ -301,6 +304,9 @@
301
304
  .tw\:z-\[9999\]\! {
302
305
  z-index: 9999 !important;
303
306
  }
307
+ .tw\:m-0 {
308
+ margin: calc(var(--tw-spacing) * 0);
309
+ }
304
310
  .tw\:m-0\.5 {
305
311
  margin: calc(var(--tw-spacing) * 0.5);
306
312
  }
@@ -313,6 +319,9 @@
313
319
  .tw\:mx-sq-1\.5 {
314
320
  margin-inline: 0.09375rem;
315
321
  }
322
+ .tw\:my-1\.5 {
323
+ margin-block: calc(var(--tw-spacing) * 1.5);
324
+ }
316
325
  .tw\:my-2 {
317
326
  margin-block: calc(var(--tw-spacing) * 2);
318
327
  }
@@ -394,6 +403,12 @@
394
403
  .tw\:ml-4 {
395
404
  margin-left: calc(var(--tw-spacing) * 4);
396
405
  }
406
+ .tw\:ml-\[5px\] {
407
+ margin-left: 5px;
408
+ }
409
+ .tw\:ml-\[10px\] {
410
+ margin-left: 10px;
411
+ }
397
412
  .tw\:ml-sq-3 {
398
413
  margin-left: 0.1875rem;
399
414
  }
@@ -469,6 +484,15 @@
469
484
  .tw\:h-sq-27 {
470
485
  height: 1.6875rem;
471
486
  }
487
+ .tw\:min-h-6 {
488
+ min-height: calc(var(--tw-spacing) * 6);
489
+ }
490
+ .tw\:min-h-8 {
491
+ min-height: calc(var(--tw-spacing) * 8);
492
+ }
493
+ .tw\:min-h-\[34px\] {
494
+ min-height: 34px;
495
+ }
472
496
  .tw\:min-h-sq-27 {
473
497
  min-height: 1.6875rem;
474
498
  }
@@ -514,6 +538,12 @@
514
538
  .tw\:w-150 {
515
539
  width: calc(var(--tw-spacing) * 150);
516
540
  }
541
+ .tw\:w-\[55px\] {
542
+ width: 55px;
543
+ }
544
+ .tw\:w-\[65px\] {
545
+ width: 65px;
546
+ }
517
547
  .tw\:w-full {
518
548
  width: 100%;
519
549
  }
@@ -541,6 +571,9 @@
541
571
  .tw\:max-w-96 {
542
572
  max-width: calc(var(--tw-spacing) * 96);
543
573
  }
574
+ .tw\:max-w-100 {
575
+ max-width: calc(var(--tw-spacing) * 100);
576
+ }
544
577
  .tw\:max-w-full {
545
578
  max-width: 100%;
546
579
  }
@@ -568,6 +601,9 @@
568
601
  .tw\:min-w-6 {
569
602
  min-width: calc(var(--tw-spacing) * 6);
570
603
  }
604
+ .tw\:min-w-8 {
605
+ min-width: calc(var(--tw-spacing) * 8);
606
+ }
571
607
  .tw\:min-w-9 {
572
608
  min-width: calc(var(--tw-spacing) * 9);
573
609
  }
@@ -656,6 +692,9 @@
656
692
  .tw\:touch-none {
657
693
  touch-action: none;
658
694
  }
695
+ .tw\:list-none {
696
+ list-style-type: none;
697
+ }
659
698
  .tw\:appearance-none {
660
699
  appearance: none;
661
700
  }
@@ -671,6 +710,9 @@
671
710
  .tw\:flex-row {
672
711
  flex-direction: row;
673
712
  }
713
+ .tw\:flex-nowrap {
714
+ flex-wrap: nowrap;
715
+ }
674
716
  .tw\:flex-wrap {
675
717
  flex-wrap: wrap;
676
718
  }
@@ -704,6 +746,9 @@
704
746
  .tw\:gap-1 {
705
747
  gap: calc(var(--tw-spacing) * 1);
706
748
  }
749
+ .tw\:gap-1\.5 {
750
+ gap: calc(var(--tw-spacing) * 1.5);
751
+ }
707
752
  .tw\:gap-2 {
708
753
  gap: calc(var(--tw-spacing) * 2);
709
754
  }
@@ -719,6 +764,12 @@
719
764
  .tw\:gap-8 {
720
765
  gap: calc(var(--tw-spacing) * 8);
721
766
  }
767
+ .tw\:gap-x-3 {
768
+ column-gap: calc(var(--tw-spacing) * 3);
769
+ }
770
+ .tw\:gap-y-2 {
771
+ row-gap: calc(var(--tw-spacing) * 2);
772
+ }
722
773
  .tw\:self-end {
723
774
  align-self: flex-end;
724
775
  }
@@ -775,6 +826,10 @@
775
826
  border-top-left-radius: 0.9375rem;
776
827
  border-bottom-left-radius: 0.9375rem;
777
828
  }
829
+ .tw\:rounded-l-lg {
830
+ border-top-left-radius: var(--tw-radius-lg);
831
+ border-bottom-left-radius: var(--tw-radius-lg);
832
+ }
778
833
  .tw\:rounded-l-md {
779
834
  border-top-left-radius: var(--tw-radius-md);
780
835
  border-bottom-left-radius: var(--tw-radius-md);
@@ -790,6 +845,10 @@
790
845
  border-top-right-radius: 0.9375rem;
791
846
  border-bottom-right-radius: 0.9375rem;
792
847
  }
848
+ .tw\:rounded-r-lg {
849
+ border-top-right-radius: var(--tw-radius-lg);
850
+ border-bottom-right-radius: var(--tw-radius-lg);
851
+ }
793
852
  .tw\:rounded-r-md {
794
853
  border-top-right-radius: var(--tw-radius-md);
795
854
  border-bottom-right-radius: var(--tw-radius-md);
@@ -877,6 +936,9 @@
877
936
  .tw\:border-sq-theme-dark {
878
937
  border-color: var(--theme-dark);
879
938
  }
939
+ .tw\:border-sq-theme-dark\! {
940
+ border-color: var(--theme-dark) !important;
941
+ }
880
942
  .tw\:border-sq-theme-icon {
881
943
  border-color: var(--theme-icon);
882
944
  }
@@ -976,6 +1038,9 @@
976
1038
  .tw\:bg-sq-theme-dark {
977
1039
  background-color: var(--theme-dark);
978
1040
  }
1041
+ .tw\:bg-sq-theme-dark\! {
1042
+ background-color: var(--theme-dark) !important;
1043
+ }
979
1044
  .tw\:bg-sq-theme-highlight {
980
1045
  background-color: var(--theme-highlight);
981
1046
  }
@@ -1060,6 +1125,12 @@
1060
1125
  .tw\:px-\[5px\] {
1061
1126
  padding-inline: 5px;
1062
1127
  }
1128
+ .tw\:px-\[6px\] {
1129
+ padding-inline: 6px;
1130
+ }
1131
+ .tw\:px-\[15px\] {
1132
+ padding-inline: 15px;
1133
+ }
1063
1134
  .tw\:px-sq-19 {
1064
1135
  padding-inline: 1.1875rem;
1065
1136
  }
@@ -1087,6 +1158,9 @@
1087
1158
  .tw\:py-\[2px\] {
1088
1159
  padding-block: 2px;
1089
1160
  }
1161
+ .tw\:py-\[6px\] {
1162
+ padding-block: 6px;
1163
+ }
1090
1164
  .tw\:py-px {
1091
1165
  padding-block: 1px;
1092
1166
  }
@@ -1266,6 +1340,9 @@
1266
1340
  .tw\:text-sq-white {
1267
1341
  color: var(--sqw-white);
1268
1342
  }
1343
+ .tw\:text-sq-white\! {
1344
+ color: var(--sqw-white) !important;
1345
+ }
1269
1346
  .tw\:text-white {
1270
1347
  color: var(--tw-color-white);
1271
1348
  }
@@ -1281,6 +1358,9 @@
1281
1358
  .tw\:not-italic {
1282
1359
  font-style: normal;
1283
1360
  }
1361
+ .tw\:no-underline {
1362
+ text-decoration-line: none;
1363
+ }
1284
1364
  .tw\:underline {
1285
1365
  text-decoration-line: underline;
1286
1366
  }
@@ -1653,6 +1733,13 @@
1653
1733
  }
1654
1734
  }
1655
1735
  }
1736
+ .tw\:hover\:text-sq-text-color {
1737
+ &:hover {
1738
+ @media (hover: hover) {
1739
+ color: #3a3a3a;
1740
+ }
1741
+ }
1742
+ }
1656
1743
  .tw\:hover\:text-sq-theme-dark {
1657
1744
  &:hover {
1658
1745
  @media (hover: hover) {
@@ -1660,6 +1747,13 @@
1660
1747
  }
1661
1748
  }
1662
1749
  }
1750
+ .tw\:hover\:text-sq-white\! {
1751
+ &:hover {
1752
+ @media (hover: hover) {
1753
+ color: var(--sqw-white) !important;
1754
+ }
1755
+ }
1756
+ }
1663
1757
  .tw\:hover\:opacity-100 {
1664
1758
  &:hover {
1665
1759
  @media (hover: hover) {
@@ -1745,11 +1839,21 @@
1745
1839
  background-color: #ec971f;
1746
1840
  }
1747
1841
  }
1842
+ .tw\:focus\:text-sq-text-color {
1843
+ &:focus {
1844
+ color: #3a3a3a;
1845
+ }
1846
+ }
1748
1847
  .tw\:focus\:text-sq-theme-dark {
1749
1848
  &:focus {
1750
1849
  color: var(--theme-dark);
1751
1850
  }
1752
1851
  }
1852
+ .tw\:focus\:text-sq-white\! {
1853
+ &:focus {
1854
+ color: var(--sqw-white) !important;
1855
+ }
1856
+ }
1753
1857
  .tw\:focus\:ring-0 {
1754
1858
  &:focus {
1755
1859
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
@@ -1889,11 +1993,21 @@
1889
1993
  background-color: var(--sqw-worksheetspanel-gray);
1890
1994
  }
1891
1995
  }
1996
+ .tw\:active\:text-sq-text-color {
1997
+ &:active {
1998
+ color: #3a3a3a;
1999
+ }
2000
+ }
1892
2001
  .tw\:active\:text-sq-theme-dark {
1893
2002
  &:active {
1894
2003
  color: var(--theme-dark);
1895
2004
  }
1896
2005
  }
2006
+ .tw\:active\:text-sq-white\! {
2007
+ &:active {
2008
+ color: var(--sqw-white) !important;
2009
+ }
2010
+ }
1897
2011
  .tw\:checked\:active\:border-sq-theme-darker {
1898
2012
  &:checked {
1899
2013
  &:active {
@@ -2213,6 +2327,11 @@
2213
2327
  color: var(--sqw-white);
2214
2328
  }
2215
2329
  }
2330
+ .tw\:dark\:text-sq-white\! {
2331
+ &:where(.tw-dark, .tw-dark *) {
2332
+ color: var(--sqw-white) !important;
2333
+ }
2334
+ }
2216
2335
  .tw\:dark\:placeholder-sq-dark-text\/30\! {
2217
2336
  &:where(.tw-dark, .tw-dark *) {
2218
2337
  &::placeholder {
@@ -2362,6 +2481,15 @@
2362
2481
  }
2363
2482
  }
2364
2483
  }
2484
+ .tw\:dark\:hover\:text-sq-dark-text {
2485
+ &:where(.tw-dark, .tw-dark *) {
2486
+ &:hover {
2487
+ @media (hover: hover) {
2488
+ color: #e6ecf2;
2489
+ }
2490
+ }
2491
+ }
2492
+ }
2365
2493
  .tw\:dark\:hover\:text-sq-theme-darker {
2366
2494
  &:where(.tw-dark, .tw-dark *) {
2367
2495
  &:hover {
@@ -2371,6 +2499,15 @@
2371
2499
  }
2372
2500
  }
2373
2501
  }
2502
+ .tw\:dark\:hover\:text-sq-white\! {
2503
+ &:where(.tw-dark, .tw-dark *) {
2504
+ &:hover {
2505
+ @media (hover: hover) {
2506
+ color: var(--sqw-white) !important;
2507
+ }
2508
+ }
2509
+ }
2510
+ }
2374
2511
  .tw\:dark\:focus\:border-sq-danger-hover {
2375
2512
  &:where(.tw-dark, .tw-dark *) {
2376
2513
  &:focus {
@@ -2441,6 +2578,13 @@
2441
2578
  }
2442
2579
  }
2443
2580
  }
2581
+ .tw\:dark\:focus\:text-sq-dark-text {
2582
+ &:where(.tw-dark, .tw-dark *) {
2583
+ &:focus {
2584
+ color: #e6ecf2;
2585
+ }
2586
+ }
2587
+ }
2444
2588
  .tw\:dark\:focus\:text-sq-theme-darker {
2445
2589
  &:where(.tw-dark, .tw-dark *) {
2446
2590
  &:focus {
@@ -2448,6 +2592,13 @@
2448
2592
  }
2449
2593
  }
2450
2594
  }
2595
+ .tw\:dark\:focus\:text-sq-white\! {
2596
+ &:where(.tw-dark, .tw-dark *) {
2597
+ &:focus {
2598
+ color: var(--sqw-white) !important;
2599
+ }
2600
+ }
2601
+ }
2451
2602
  .tw\:dark\:checked\:focus\:bg-sq-dark-background {
2452
2603
  &:where(.tw-dark, .tw-dark *) {
2453
2604
  &:checked {
@@ -2548,6 +2699,13 @@
2548
2699
  }
2549
2700
  }
2550
2701
  }
2702
+ .tw\:dark\:active\:text-sq-dark-text {
2703
+ &:where(.tw-dark, .tw-dark *) {
2704
+ &:active {
2705
+ color: #e6ecf2;
2706
+ }
2707
+ }
2708
+ }
2551
2709
  .tw\:dark\:active\:text-sq-theme-darker {
2552
2710
  &:where(.tw-dark, .tw-dark *) {
2553
2711
  &:active {
@@ -2555,6 +2713,13 @@
2555
2713
  }
2556
2714
  }
2557
2715
  }
2716
+ .tw\:dark\:active\:text-sq-white\! {
2717
+ &:where(.tw-dark, .tw-dark *) {
2718
+ &:active {
2719
+ color: var(--sqw-white) !important;
2720
+ }
2721
+ }
2722
+ }
2558
2723
  .tw\:dark\:enabled\:hover\:bg-sq-dark-background {
2559
2724
  &:where(.tw-dark, .tw-dark *) {
2560
2725
  &:enabled {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seeqdev/qomponents",
3
- "version": "0.0.239",
3
+ "version": "0.0.240-beta.ff0068cf71.20260715",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "source": "src/index.ts",