@seeqdev/qomponents 0.0.240 → 0.0.241-beta.d822dfdbef.20260722

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 (47) hide show
  1. package/dist/i18n/de-DE.json +2 -0
  2. package/dist/i18n/en.json +2 -0
  3. package/dist/i18n/es-LA.json +2 -0
  4. package/dist/i18n/fr-FR.json +2 -0
  5. package/dist/i18n/it-IT.json +2 -0
  6. package/dist/i18n/ja-JP.json +2 -0
  7. package/dist/i18n/ko-KO.json +2 -0
  8. package/dist/i18n/pt-BR.json +2 -0
  9. package/dist/i18n/zh-CN.json +2 -0
  10. package/dist/index.esm.js +10 -10
  11. package/dist/index.esm.js.map +1 -1
  12. package/dist/index.js +59 -59
  13. package/dist/index.js.map +1 -1
  14. package/dist/src/Accordion/Accordion.d.ts +2 -2
  15. package/dist/src/Accordion/Accordion.types.d.ts +10 -1
  16. package/dist/src/Alert/Alert.d.ts +2 -2
  17. package/dist/src/Badge/Badge.d.ts +2 -2
  18. package/dist/src/Button/Button.d.ts +2 -2
  19. package/dist/src/ButtonWithDropdown/ButtonWithDropdown.d.ts +3 -3
  20. package/dist/src/ButtonWithPopover/ButtonWithPopover.d.ts +2 -2
  21. package/dist/src/Carousel/Carousel.d.ts +2 -2
  22. package/dist/src/Checkbox/Checkbox.d.ts +2 -2
  23. package/dist/src/Collapse/Collapse.d.ts +2 -2
  24. package/dist/src/ColorPickerControl/ColorPickerControl.d.ts +2 -2
  25. package/dist/src/EditorPanel/EditorPanel.d.ts +2 -2
  26. package/dist/src/ExternalLink/ExternalLink.d.ts +2 -2
  27. package/dist/src/Icon/Icon.d.ts +2 -2
  28. package/dist/src/LoadingIndicator/LoadingIndicator.d.ts +2 -2
  29. package/dist/src/Modal/Modal.d.ts +2 -2
  30. package/dist/src/Paginator/Paginator.d.ts +3 -3
  31. package/dist/src/Paginator/Paginator.utilities.d.ts +12 -1
  32. package/dist/src/ProgressBar/ProgressBar.d.ts +2 -2
  33. package/dist/src/SeeqActionDropdown/SeeqActionDropdown.d.ts +2 -2
  34. package/dist/src/SeeqActionDropdown/variants.d.ts +4 -4
  35. package/dist/src/SegmentedControl/SegmentedControl.d.ts +2 -2
  36. package/dist/src/Select/Select.d.ts +2 -2
  37. package/dist/src/Slider/Slider.d.ts +2 -2
  38. package/dist/src/SvgIcon/SvgIcon.d.ts +2 -2
  39. package/dist/src/Tabs/Tabs.d.ts +2 -2
  40. package/dist/src/ToolbarButton/ToolbarButton.d.ts +2 -2
  41. package/dist/src/Tooltip/Qtip.d.ts +2 -2
  42. package/dist/src/Tooltip/Tooltip.d.ts +2 -2
  43. package/dist/src/index.build.d.ts +2 -2
  44. package/dist/src/index.d.ts +2 -2
  45. package/dist/src/types.d.ts +2 -2
  46. package/dist/styles.css +9 -0
  47. package/package.json +3 -3
@@ -1,5 +1,5 @@
1
1
  import { AccordionProps } from "./Accordion.types.js";
2
- import * as react_jsx_runtime30 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime26 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/Accordion/Accordion.d.ts
5
5
  declare const Accordion: ({
@@ -10,6 +10,6 @@ declare const Accordion: ({
10
10
  disabled,
11
11
  extraClassNames,
12
12
  testId
13
- }: AccordionProps) => react_jsx_runtime30.JSX.Element;
13
+ }: AccordionProps) => react_jsx_runtime26.JSX.Element;
14
14
  //#endregion
15
15
  export { Accordion as default };
@@ -54,6 +54,15 @@ type AccordionItem = {
54
54
  * Can be any React element (text, icons, buttons, etc.).
55
55
  */
56
56
  trigger: React.ReactNode;
57
+ /**
58
+ * Interactive content (icons, menus, links) shown in the header row beside the trigger.
59
+ * It renders as a sibling of the trigger button, never inside it, so clicking it does not
60
+ * toggle the item, and focusable actions get their own tab stop after the trigger — per the
61
+ * WAI-ARIA accordion pattern (https://www.w3.org/WAI/ARIA/apg/patterns/accordion/).
62
+ * When omitted, no wrapper is added and the trigger stays a direct child of the item.
63
+ * The accordion's `disabled` prop is not applied to these elements — disable them yourself.
64
+ */
65
+ headerActions?: React.ReactNode;
57
66
  /**
58
67
  * The content displayed when the accordion item is expanded.
59
68
  * This is the collapsible content area that shows/hides when the trigger is clicked.
@@ -86,4 +95,4 @@ type AccordionItem = {
86
95
  contentClassNames?: string;
87
96
  };
88
97
  //#endregion
89
- export { AccordionProps };
98
+ export { AccordionItem, AccordionProps };
@@ -1,5 +1,5 @@
1
1
  import { AlertProps } from "./Alert.types.js";
2
- import * as react_jsx_runtime29 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime24 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/Alert/Alert.d.ts
5
5
  /**
@@ -15,6 +15,6 @@ declare const Alert: ({
15
15
  id,
16
16
  extraClassNames,
17
17
  ...tooltipProps
18
- }: AlertProps) => react_jsx_runtime29.JSX.Element;
18
+ }: AlertProps) => react_jsx_runtime24.JSX.Element;
19
19
  //#endregion
20
20
  export { Alert };
@@ -1,5 +1,5 @@
1
1
  import { BadgeProps } from "./Badge.types.js";
2
- import * as react_jsx_runtime27 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime21 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/Badge/Badge.d.ts
5
5
  /**
@@ -10,6 +10,6 @@ declare const Badge: ({
10
10
  variant,
11
11
  testId,
12
12
  extraClassNames
13
- }: BadgeProps) => react_jsx_runtime27.JSX.Element;
13
+ }: BadgeProps) => react_jsx_runtime21.JSX.Element;
14
14
  //#endregion
15
15
  export { Badge, Badge as default };
@@ -1,5 +1,5 @@
1
1
  import { ButtonProps } from "./Button.types.js";
2
- import * as react_jsx_runtime26 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime25 from "react/jsx-runtime";
3
3
  import React from "react";
4
4
 
5
5
  //#region src/Button/Button.d.ts
@@ -33,6 +33,6 @@ declare const Button: ({
33
33
  tooltipTestId,
34
34
  ref,
35
35
  ...rest
36
- }: ButtonComponentProps) => react_jsx_runtime26.JSX.Element;
36
+ }: ButtonComponentProps) => react_jsx_runtime25.JSX.Element;
37
37
  //#endregion
38
38
  export { Button as default };
@@ -1,8 +1,8 @@
1
1
  import { ButtonWithDropdownProps } from "./ButtonWithDropdown.types.js";
2
- import * as react_jsx_runtime23 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime29 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/ButtonWithDropdown/ButtonWithDropdown.d.ts
5
- declare const ButtonWithDropdown: (props: ButtonWithDropdownProps) => react_jsx_runtime23.JSX.Element;
5
+ declare const ButtonWithDropdown: (props: ButtonWithDropdownProps) => react_jsx_runtime29.JSX.Element;
6
6
  declare const Dropdown: ({
7
7
  dropdownItems,
8
8
  id,
@@ -19,6 +19,6 @@ declare const Dropdown: ({
19
19
  setFocusOnTriggerOnClose,
20
20
  keepFocusInsideDropdown,
21
21
  onContainerClick
22
- }: ButtonWithDropdownProps) => react_jsx_runtime23.JSX.Element;
22
+ }: ButtonWithDropdownProps) => react_jsx_runtime29.JSX.Element;
23
23
  //#endregion
24
24
  export { Dropdown, ButtonWithDropdown as default };
@@ -1,5 +1,5 @@
1
1
  import { ButtonWithPopoverProps } from "./ButtonWithPopover.types.js";
2
- import * as react_jsx_runtime28 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime20 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/ButtonWithPopover/ButtonWithPopover.d.ts
5
5
  declare const ButtonWithPopover: ({
@@ -27,6 +27,6 @@ declare const ButtonWithPopover: ({
27
27
  isPortal,
28
28
  hideWhenDetached,
29
29
  ...tooltipProps
30
- }: ButtonWithPopoverProps) => react_jsx_runtime28.JSX.Element;
30
+ }: ButtonWithPopoverProps) => react_jsx_runtime20.JSX.Element;
31
31
  //#endregion
32
32
  export { ButtonWithPopover as default };
@@ -1,5 +1,5 @@
1
1
  import { CarouselProps } from "./Carousel.types.js";
2
- import * as react_jsx_runtime19 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime23 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/Carousel/Carousel.d.ts
5
5
 
@@ -22,6 +22,6 @@ declare const Carousel: ({
22
22
  showArrows,
23
23
  iconExtraClassNames,
24
24
  carouselItems
25
- }: CarouselProps) => react_jsx_runtime19.JSX.Element;
25
+ }: CarouselProps) => react_jsx_runtime23.JSX.Element;
26
26
  //#endregion
27
27
  export { Carousel as default };
@@ -1,10 +1,10 @@
1
1
  import { CheckboxProps } from "./Checkbox.types.js";
2
- import * as react_jsx_runtime21 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime17 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/Checkbox/Checkbox.d.ts
5
5
  /**
6
6
  * Checkbox and Radio Box Component.
7
7
  */
8
- declare const Checkbox: (props: CheckboxProps) => react_jsx_runtime21.JSX.Element;
8
+ declare const Checkbox: (props: CheckboxProps) => react_jsx_runtime17.JSX.Element;
9
9
  //#endregion
10
10
  export { Checkbox };
@@ -1,10 +1,10 @@
1
1
  import { CollapseProps } from "./Collapse.types.js";
2
- import * as react_jsx_runtime25 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime19 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/Collapse/Collapse.d.ts
5
5
  declare const Collapse: ({
6
6
  isVisible,
7
7
  children
8
- }: CollapseProps) => react_jsx_runtime25.JSX.Element;
8
+ }: CollapseProps) => react_jsx_runtime19.JSX.Element;
9
9
  //#endregion
10
10
  export { Collapse as default };
@@ -1,5 +1,5 @@
1
1
  import { ColorPickerControlProps } from "./ColorPickerControl.types.js";
2
- import * as react_jsx_runtime20 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime18 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/ColorPickerControl/ColorPickerControl.d.ts
5
5
  declare function ColorPickerControl({
@@ -12,6 +12,6 @@ declare function ColorPickerControl({
12
12
  id,
13
13
  testId,
14
14
  onOpen
15
- }: ColorPickerControlProps): react_jsx_runtime20.JSX.Element;
15
+ }: ColorPickerControlProps): react_jsx_runtime18.JSX.Element;
16
16
  //#endregion
17
17
  export { ColorPickerControl as default };
@@ -1,5 +1,5 @@
1
1
  import { EditorPanelProps } from "./EditorPanel.types.js";
2
- import * as react_jsx_runtime18 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime15 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/EditorPanel/EditorPanel.d.ts
5
5
  declare const EditorPanel: ({
@@ -14,6 +14,6 @@ declare const EditorPanel: ({
14
14
  extraClassNames,
15
15
  id,
16
16
  testId
17
- }: EditorPanelProps) => react_jsx_runtime18.JSX.Element;
17
+ }: EditorPanelProps) => react_jsx_runtime15.JSX.Element;
18
18
  //#endregion
19
19
  export { EditorPanel as default };
@@ -1,5 +1,5 @@
1
1
  import { ExternalLinkProps } from "./ExternalLink.types.js";
2
- import * as react_jsx_runtime14 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime16 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/ExternalLink/ExternalLink.d.ts
5
5
  /**
@@ -12,6 +12,6 @@ declare const ExternalLink: ({
12
12
  children,
13
13
  extraClassNames,
14
14
  testId
15
- }: ExternalLinkProps) => react_jsx_runtime14.JSX.Element;
15
+ }: ExternalLinkProps) => react_jsx_runtime16.JSX.Element;
16
16
  //#endregion
17
17
  export { ExternalLink, ExternalLink as default };
@@ -1,5 +1,5 @@
1
1
  import { IconProps } from "./Icon.types.js";
2
- import * as react_jsx_runtime17 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime10 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/Icon/Icon.d.ts
5
5
 
@@ -23,6 +23,6 @@ declare const Icon: ({
23
23
  customId,
24
24
  number,
25
25
  ...tooltipProps
26
- }: IconProps) => react_jsx_runtime17.JSX.Element;
26
+ }: IconProps) => react_jsx_runtime10.JSX.Element;
27
27
  //#endregion
28
28
  export { Icon as default };
@@ -1,5 +1,5 @@
1
1
  import { LoadingIndicatorProps } from "./LoadingIndicator.types.js";
2
- import * as react_jsx_runtime13 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime28 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/LoadingIndicator/LoadingIndicator.d.ts
5
5
  /**
@@ -19,6 +19,6 @@ declare const LoadingIndicator: ({
19
19
  role,
20
20
  onClick,
21
21
  title
22
- }: LoadingIndicatorProps) => react_jsx_runtime13.JSX.Element;
22
+ }: LoadingIndicatorProps) => react_jsx_runtime28.JSX.Element;
23
23
  //#endregion
24
24
  export { LoadingIndicator as default };
@@ -1,5 +1,5 @@
1
1
  import { ModalProps } from "./Modal.types.js";
2
- import * as react_jsx_runtime15 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime14 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/Modal/Modal.d.ts
5
5
  declare const Modal: ({
@@ -44,6 +44,6 @@ declare const Modal: ({
44
44
  onPointerDownOutside,
45
45
  onInteractOutside,
46
46
  ariaDescribedBy
47
- }: ModalProps) => react_jsx_runtime15.JSX.Element;
47
+ }: ModalProps) => react_jsx_runtime14.JSX.Element;
48
48
  //#endregion
49
49
  export { Modal as default };
@@ -1,5 +1,5 @@
1
1
  import { PaginatorLabel, PaginatorSize, PaginatorVariant } from "./Paginator.types.js";
2
- import * as react_jsx_runtime3 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime12 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/Paginator/Paginator.d.ts
5
5
  type PaginatorProps = {
@@ -128,7 +128,7 @@ type PaginatorProps = {
128
128
  };
129
129
  declare const Paginator: ({
130
130
  onPageChange,
131
- pageCount,
131
+ 'pageCount': pageCountProp,
132
132
  pageNumber,
133
133
  pageSize,
134
134
  onPageSizeChange,
@@ -157,6 +157,6 @@ declare const Paginator: ({
157
157
  'containerClassName': containerClassName,
158
158
  'aria-label': arialLabel,
159
159
  testId
160
- }: PaginatorProps) => react_jsx_runtime3.JSX.Element;
160
+ }: PaginatorProps) => react_jsx_runtime12.JSX.Element;
161
161
  //#endregion
162
162
  export { Paginator as default };
@@ -2,8 +2,17 @@ import { BuildPaginationItemsArgs, CreateNavButtonClassArgs, NumericOption, Pagi
2
2
 
3
3
  //#region src/Paginator/Paginator.utilities.d.ts
4
4
 
5
+ /**
6
+ * Normalizes a page count to a safe non-negative integer for rendering pagination controls.
7
+ */
8
+ declare const normalizePageCount: (pageCount: number) => number;
5
9
  /**
6
10
  * Builds the ordered list of numbered-page and break items to render for the paginator.
11
+ *
12
+ * @param currentPage Current 1-based page number.
13
+ * @param pageCount Total number of pages, must be a non-negative integer.
14
+ * @param pageRangeDisplayed Number of pages to show in the middle window.
15
+ * @param marginPagesDisplayed Number of pages to always show at the beginning and end.
7
16
  */
8
17
  declare const buildPaginationItems: ({
9
18
  currentPage,
@@ -13,6 +22,8 @@ declare const buildPaginationItems: ({
13
22
  }: BuildPaginationItemsArgs) => PaginationItem[];
14
23
  /**
15
24
  * Converts either a page count or a list of numeric values into Select-compatible numeric options.
25
+ *
26
+ * @param countOrValues Either an explicit list of numeric values or a normalized non-negative integer count.
16
27
  */
17
28
  declare const createNumericOptions: (countOrValues: number | number[]) => NumericOption[];
18
29
  /**
@@ -28,4 +39,4 @@ declare const createNavButtonClass: (navButtonPaddingClass: string, size: Pagina
28
39
  */
29
40
  declare const createBreakClass: (navButtonPaddingClass: string) => string;
30
41
  //#endregion
31
- export { buildPaginationItems, createBreakClass, createNavButtonClass, createNumericOptions };
42
+ export { buildPaginationItems, createBreakClass, createNavButtonClass, createNumericOptions, normalizePageCount };
@@ -1,5 +1,5 @@
1
1
  import { ProgressBarProps } from "./ProgressBar.types.js";
2
- import * as react_jsx_runtime16 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime11 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/ProgressBar/ProgressBar.d.ts
5
5
  declare const ProgressBar: ({
@@ -7,6 +7,6 @@ declare const ProgressBar: ({
7
7
  max,
8
8
  containerExtraClasses,
9
9
  zeroValueLabel
10
- }: ProgressBarProps) => react_jsx_runtime16.JSX.Element;
10
+ }: ProgressBarProps) => react_jsx_runtime11.JSX.Element;
11
11
  //#endregion
12
12
  export { ProgressBar as default };
@@ -1,5 +1,5 @@
1
1
  import { SeeqActionDropdownProps } from "./SeeqActionDropdown.types.js";
2
- import * as react_jsx_runtime7 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime2 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/SeeqActionDropdown/SeeqActionDropdown.d.ts
5
5
  declare const SeeqActionDropdown: ({
@@ -20,6 +20,6 @@ declare const SeeqActionDropdown: ({
20
20
  keepFocusInsideDropdown,
21
21
  variant,
22
22
  ...tooltipProps
23
- }: SeeqActionDropdownProps) => react_jsx_runtime7.JSX.Element;
23
+ }: SeeqActionDropdownProps) => react_jsx_runtime2.JSX.Element;
24
24
  //#endregion
25
25
  export { SeeqActionDropdown as default };
@@ -1,9 +1,9 @@
1
1
  import { SeeqActionDropdownItems } from "./SeeqActionDropdown.types.js";
2
- import * as react_jsx_runtime8 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime4 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/SeeqActionDropdown/variants.d.ts
5
- declare const SeeqActionDropdownItem: (item: SeeqActionDropdownItems) => react_jsx_runtime8.JSX.Element;
6
- declare const ViewWorkbench: (item: SeeqActionDropdownItems) => react_jsx_runtime8.JSX.Element;
7
- declare const InsertSeeqContent: (item: SeeqActionDropdownItems) => react_jsx_runtime8.JSX.Element;
5
+ declare const SeeqActionDropdownItem: (item: SeeqActionDropdownItems) => react_jsx_runtime4.JSX.Element;
6
+ declare const ViewWorkbench: (item: SeeqActionDropdownItems) => react_jsx_runtime4.JSX.Element;
7
+ declare const InsertSeeqContent: (item: SeeqActionDropdownItems) => react_jsx_runtime4.JSX.Element;
8
8
  //#endregion
9
9
  export { InsertSeeqContent, SeeqActionDropdownItem, ViewWorkbench };
@@ -1,5 +1,5 @@
1
1
  import { SegmentedControlProps } from "./SegmentedControl.types.js";
2
- import * as react_jsx_runtime4 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime7 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/SegmentedControl/SegmentedControl.d.ts
5
5
  declare function SegmentedControl<T extends string | number | boolean>({
@@ -10,6 +10,6 @@ declare function SegmentedControl<T extends string | number | boolean>({
10
10
  id,
11
11
  testId,
12
12
  ariaLabel
13
- }: SegmentedControlProps<T>): react_jsx_runtime4.JSX.Element;
13
+ }: SegmentedControlProps<T>): react_jsx_runtime7.JSX.Element;
14
14
  //#endregion
15
15
  export { SegmentedControl as default };
@@ -1,5 +1,5 @@
1
1
  import { SelectProps } from "./Select.types.js";
2
- import * as react_jsx_runtime6 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime8 from "react/jsx-runtime";
3
3
  import { MultiValue as MultiValue$1, SingleValue as SingleValue$1 } from "react-select";
4
4
 
5
5
  //#region src/Select/Select.d.ts
@@ -50,6 +50,6 @@ declare const Select: ({
50
50
  onInputChange,
51
51
  inputValue,
52
52
  onMenuScrollToBottom
53
- }: SelectProps) => react_jsx_runtime6.JSX.Element;
53
+ }: SelectProps) => react_jsx_runtime8.JSX.Element;
54
54
  //#endregion
55
55
  export { MultiValue, SingleValue, Select as default };
@@ -1,5 +1,5 @@
1
1
  import { SliderProps } from "./Slider.types.js";
2
- import * as react_jsx_runtime5 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime27 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/Slider/Slider.d.ts
5
5
  /**
@@ -20,6 +20,6 @@ declare const Slider: ({
20
20
  min,
21
21
  max,
22
22
  maxAccessible
23
- }: SliderProps) => react_jsx_runtime5.JSX.Element;
23
+ }: SliderProps) => react_jsx_runtime27.JSX.Element;
24
24
  //#endregion
25
25
  export { Slider };
@@ -1,5 +1,5 @@
1
1
  import { SvgIconProps } from "./SvgIcon.types.js";
2
- import * as react_jsx_runtime12 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime3 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/SvgIcon/SvgIcon.d.ts
5
5
 
@@ -29,6 +29,6 @@ declare const SvgIcon: ({
29
29
  testId,
30
30
  customId,
31
31
  ...tooltipProps
32
- }: SvgIconProps) => react_jsx_runtime12.JSX.Element;
32
+ }: SvgIconProps) => react_jsx_runtime3.JSX.Element;
33
33
  //#endregion
34
34
  export { SvgIcon as default };
@@ -1,5 +1,5 @@
1
1
  import { TabsProps } from "./Tabs.types.js";
2
- import * as react_jsx_runtime11 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime9 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/Tabs/Tabs.d.ts
5
5
  declare const Tabs: ({
@@ -11,6 +11,6 @@ declare const Tabs: ({
11
11
  testId,
12
12
  id,
13
13
  stretchTabs
14
- }: TabsProps) => react_jsx_runtime11.JSX.Element;
14
+ }: TabsProps) => react_jsx_runtime9.JSX.Element;
15
15
  //#endregion
16
16
  export { Tabs as default };
@@ -1,5 +1,5 @@
1
1
  import { ToolbarButtonProps } from "./ToolbarButton.types.js";
2
- import * as react_jsx_runtime0 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime13 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_runtime0.JSX.Element;
30
+ }: ToolbarButtonProps) => react_jsx_runtime13.JSX.Element;
31
31
  //#endregion
32
32
  export { ToolbarButton };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime2 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime1 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/Tooltip/Qtip.d.ts
4
4
 
@@ -26,6 +26,6 @@ import * as react_jsx_runtime2 from "react/jsx-runtime";
26
26
  *
27
27
  * and enjoy beautiful & performant tooltips!
28
28
  */
29
- declare const QTip: () => react_jsx_runtime2.JSX.Element;
29
+ declare const QTip: () => react_jsx_runtime1.JSX.Element;
30
30
  //#endregion
31
31
  export { QTip };
@@ -1,5 +1,5 @@
1
1
  import { TooltipProps } from "./Tooltip.types.js";
2
- import * as react_jsx_runtime1 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_runtime1.JSX.Element;
20
+ }: TooltipProps) => react_jsx_runtime0.JSX.Element;
21
21
  //#endregion
22
22
  export { Tooltip };
@@ -1,4 +1,4 @@
1
- import { AccordionProps } from "./Accordion/Accordion.types.js";
1
+ import { AccordionItem, AccordionProps } from "./Accordion/Accordion.types.js";
2
2
  import Accordion from "./Accordion/Accordion.js";
3
3
  import { DEFAULT_TOOL_TIP_DELAY, TooltipComponentProps, TooltipPosition, TooltipProps, tooltipPositions } from "./Tooltip/Tooltip.types.js";
4
4
  import { AlertProps } from "./Alert/Alert.types.js";
@@ -57,4 +57,4 @@ import TriggerWithDropdown from "./TriggerWithDropdown/TriggerWithDropdown.js";
57
57
  import { I18N_NAMESPACE, QomponentsTheme } from "./constants.js";
58
58
  import { ButtonWithDropdownProps, DropdownItems, DropdownProps, DropdownSubItem } from "./ButtonWithDropdown/ButtonWithDropdown.types.js";
59
59
  import ButtonWithDropdown from "./ButtonWithDropdown/ButtonWithDropdown.js";
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 };
60
+ export { Accordion, AccordionItem, 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 };
@@ -1,4 +1,4 @@
1
- import { AccordionProps } from "./Accordion/Accordion.types.js";
1
+ import { AccordionItem, AccordionProps } from "./Accordion/Accordion.types.js";
2
2
  import Accordion from "./Accordion/Accordion.js";
3
3
  import { DEFAULT_TOOL_TIP_DELAY, TooltipComponentProps, TooltipPosition, TooltipProps, tooltipPositions } from "./Tooltip/Tooltip.types.js";
4
4
  import { AlertProps } from "./Alert/Alert.types.js";
@@ -57,4 +57,4 @@ import TriggerWithDropdown from "./TriggerWithDropdown/TriggerWithDropdown.js";
57
57
  import { I18N_NAMESPACE, QomponentsTheme } from "./constants.js";
58
58
  import { ButtonWithDropdownProps, DropdownItems, DropdownProps, DropdownSubItem } from "./ButtonWithDropdown/ButtonWithDropdown.types.js";
59
59
  import ButtonWithDropdown from "./ButtonWithDropdown/ButtonWithDropdown.js";
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 };
60
+ export { Accordion, AccordionItem, 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 };
@@ -1,4 +1,4 @@
1
- import { AccordionProps } from "./Accordion/Accordion.types.js";
1
+ import { AccordionItem, AccordionProps } from "./Accordion/Accordion.types.js";
2
2
  import { DEFAULT_TOOL_TIP_DELAY, TooltipComponentProps, TooltipPosition, TooltipProps, tooltipPositions } from "./Tooltip/Tooltip.types.js";
3
3
  import { AlertProps } from "./Alert/Alert.types.js";
4
4
  import { IconProps, IconSize, IconType, iconTypes } from "./Icon/Icon.types.js";
@@ -28,4 +28,4 @@ import { ButtonWithDropdownProps, DropdownItems, DropdownProps, DropdownSubItem
28
28
  type InputGroupPlacement = 'left' | 'right' | undefined;
29
29
  type FormControlElement = HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement;
30
30
  //#endregion
31
- export { AccordionProps, AlertProps, AppendedProps, ButtonGroupProps, ButtonProps, ButtonSize, ButtonType, ButtonVariant, ButtonWithDropdownProps, ButtonWithPopoverProps, CarouselProps, CheckboxProps, CollapseProps, DEFAULT_TOOL_TIP_DELAY, DimensionStyle, DropdownItems, DropdownProps, DropdownSubItem, ExternalLinkProps, ExternalLinkThemeClass, ExternalLinkVariant, FormControlElement, GroupedOption, IconPosition, IconProps, IconSize, IconType, InputGroupPlacement, InputGroupProps, InputLengthStyleProps, ModalProps, ModalSize, Option, ProgressBarProps, ProgressIndicatorProps, QTipDataAttributes, SeeqActionDropdownItems, SeeqActionDropdownProps, SelectProps, SliderProps, SvgIconProps, SvgIconType, TabsProps, TextAreaProps, TextFieldProps, TitleIconPosition, type ToolbarButtonProps, type ToolbarButtonVariant, TooltipComponentProps, TooltipPosition, TooltipProps, TriggerWithDropdownProps, buttonSizes, buttonTypes, buttonVariants, externalLinkThemeClasses, iconPositions, iconTypes, svgIconTypes, toolbarButtonVariants, tooltipPositions };
31
+ export { AccordionItem, AccordionProps, AlertProps, AppendedProps, ButtonGroupProps, ButtonProps, ButtonSize, ButtonType, ButtonVariant, ButtonWithDropdownProps, ButtonWithPopoverProps, CarouselProps, CheckboxProps, CollapseProps, DEFAULT_TOOL_TIP_DELAY, DimensionStyle, DropdownItems, DropdownProps, DropdownSubItem, ExternalLinkProps, ExternalLinkThemeClass, ExternalLinkVariant, FormControlElement, GroupedOption, IconPosition, IconProps, IconSize, IconType, InputGroupPlacement, InputGroupProps, InputLengthStyleProps, ModalProps, ModalSize, Option, ProgressBarProps, ProgressIndicatorProps, QTipDataAttributes, SeeqActionDropdownItems, SeeqActionDropdownProps, SelectProps, SliderProps, SvgIconProps, SvgIconType, TabsProps, TextAreaProps, TextFieldProps, TitleIconPosition, type ToolbarButtonProps, type ToolbarButtonVariant, TooltipComponentProps, TooltipPosition, TooltipProps, TriggerWithDropdownProps, buttonSizes, buttonTypes, buttonVariants, externalLinkThemeClasses, iconPositions, iconTypes, svgIconTypes, toolbarButtonVariants, tooltipPositions };
package/dist/styles.css CHANGED
@@ -352,6 +352,9 @@
352
352
  .tw\:mt-3 {
353
353
  margin-top: calc(var(--tw-spacing) * 3);
354
354
  }
355
+ .tw\:mt-4 {
356
+ margin-top: calc(var(--tw-spacing) * 4);
357
+ }
355
358
  .tw\:mr-1 {
356
359
  margin-right: calc(var(--tw-spacing) * 1);
357
360
  }
@@ -773,6 +776,9 @@
773
776
  .tw\:self-end {
774
777
  align-self: flex-end;
775
778
  }
779
+ .tw\:self-stretch {
780
+ align-self: stretch;
781
+ }
776
782
  .tw\:overflow-hidden {
777
783
  overflow: hidden;
778
784
  }
@@ -1176,6 +1182,9 @@
1176
1182
  .tw\:pr-1\.5 {
1177
1183
  padding-right: calc(var(--tw-spacing) * 1.5);
1178
1184
  }
1185
+ .tw\:pr-2 {
1186
+ padding-right: calc(var(--tw-spacing) * 2);
1187
+ }
1179
1188
  .tw\:pl-0\.5 {
1180
1189
  padding-left: calc(var(--tw-spacing) * 0.5);
1181
1190
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seeqdev/qomponents",
3
- "version": "0.0.240",
3
+ "version": "0.0.241-beta.d822dfdbef.20260722",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "source": "src/index.ts",
@@ -101,8 +101,8 @@
101
101
  "test:watch": "cross-env TZ=UTC LANG=en-US vitest watch",
102
102
  "test:coverage": "cross-env TZ=UTC LANG=en-US vitest run --coverage",
103
103
  "dev": "ladle serve",
104
- "lint": "eslint . --ext .ts,.tsx,.js,.jsx",
105
- "lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
104
+ "lint": "eslint",
105
+ "lint:fix": "eslint --fix",
106
106
  "format:check": "prettier --check \"**/*.{ts,tsx,js,json,css}\"",
107
107
  "format:write": "prettier --write \"**/*.{ts,tsx,js,json,css}\"",
108
108
  "type:check": "tsgo --noEmit"