@seeqdev/qomponents 0.0.153 → 0.0.155-react-19

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 (48) hide show
  1. package/dist/Accordion/Accordion.stories.d.ts +2 -1
  2. package/dist/Alert/Alert.stories.d.ts +2 -1
  3. package/dist/Alert/Alert.types.d.ts +1 -0
  4. package/dist/Button/Button.stories.d.ts +5 -4
  5. package/dist/Button/Button.types.d.ts +1 -1
  6. package/dist/ButtonGroup/ButtonGroup.stories.d.ts +2 -1
  7. package/dist/ButtonGroup/ButtonGroup.types.d.ts +1 -0
  8. package/dist/ButtonWithDropdown/ButtonWithDropdown.stories.d.ts +2 -1
  9. package/dist/ButtonWithDropdown/ButtonWithDropdown.types.d.ts +1 -0
  10. package/dist/ButtonWithPopover/ButtonWithPopover.stories.d.ts +2 -1
  11. package/dist/Carousel/Carousel.stories.d.ts +2 -1
  12. package/dist/Carousel/Carousel.types.d.ts +1 -0
  13. package/dist/Checkbox/Checkbox.stories.d.ts +2 -1
  14. package/dist/Checkbox/Checkbox.types.d.ts +1 -0
  15. package/dist/Collapse/Collapse.stories.d.ts +2 -1
  16. package/dist/Collapse/Collapse.types.d.ts +1 -0
  17. package/dist/FontCustom.woff +0 -0
  18. package/dist/FontCustom.woff2 +0 -0
  19. package/dist/Icon/Icon.stories.d.ts +2 -1
  20. package/dist/Icon/Icon.types.d.ts +1 -0
  21. package/dist/InputGroup/InputGroup.stories.d.ts +2 -1
  22. package/dist/InputGroup/InputGroup.types.d.ts +1 -0
  23. package/dist/ProgressBar/ProgressBar.stories.d.ts +2 -1
  24. package/dist/SeeqActionDropdown/SeeqActionDropdown.stories.d.ts +2 -1
  25. package/dist/SeeqActionDropdown/SeeqActionDropdown.types.d.ts +1 -0
  26. package/dist/Select/Select.stories.d.ts +2 -1
  27. package/dist/Slider/Slider.stories.d.ts +2 -1
  28. package/dist/Slider/Slider.types.d.ts +1 -0
  29. package/dist/SvgIcon/SvgIcon.stories.d.ts +2 -1
  30. package/dist/SvgIcon/SvgIcon.types.d.ts +1 -0
  31. package/dist/Tabs/Tabs.stories.d.ts +2 -1
  32. package/dist/Tabs/Tabs.types.d.ts +2 -1
  33. package/dist/TextArea/TextArea.stories.d.ts +2 -1
  34. package/dist/TextArea/TextArea.types.d.ts +1 -0
  35. package/dist/TextField/TextField.stories.d.ts +2 -1
  36. package/dist/TextField/TextField.types.d.ts +1 -0
  37. package/dist/ToolbarButton/ToolbarButton.stories.d.ts +2 -1
  38. package/dist/Tooltip/QTip.stories.d.ts +2 -1
  39. package/dist/Tooltip/QTipPerformance.stories.d.ts +2 -1
  40. package/dist/Tooltip/Tooltip.stories.d.ts +2 -1
  41. package/dist/Tooltip/Tooltip.types.d.ts +3 -2
  42. package/dist/Tooltip/TooltipPerformance.stories.d.ts +2 -1
  43. package/dist/index.esm.js +14397 -7942
  44. package/dist/index.esm.js.map +1 -1
  45. package/dist/index.js +14437 -7982
  46. package/dist/index.js.map +1 -1
  47. package/dist/styles.css +546 -538
  48. package/package.json +20 -19
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllAccordionVariants: () => JSX.Element;
6
+ export declare const AllAccordionVariants: () => React.JSX.Element;
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllAlertsVariants: () => JSX.Element;
6
+ export declare const AllAlertsVariants: () => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TooltipComponentProps } from '../Tooltip/Tooltip.types';
2
3
  interface Props {
3
4
  children: React.ReactNode;
@@ -1,8 +1,9 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllButtonVariants: () => JSX.Element;
6
- export declare const ButtonWithTooltip: () => JSX.Element;
7
- export declare const ButtonWithIcon: () => JSX.Element;
8
- export declare const DisabledButton: () => JSX.Element;
6
+ export declare const AllButtonVariants: () => React.JSX.Element;
7
+ export declare const ButtonWithTooltip: () => React.JSX.Element;
8
+ export declare const ButtonWithIcon: () => React.JSX.Element;
9
+ export declare const DisabledButton: () => React.JSX.Element;
@@ -13,7 +13,7 @@ export interface ButtonProps {
13
13
  /** function to call when clicking the button (takes no parameters) */
14
14
  onClick?: (e: React.MouseEvent) => void;
15
15
  /** label translation key on the button (i.e. SUBMIT) */
16
- label?: string | JSX.Element | React.ReactNode;
16
+ label?: string | React.JSX.Element | React.ReactNode;
17
17
  variant?: ButtonVariant;
18
18
  /** type of button (i.e button/submit/reset, default is button) */
19
19
  type?: ButtonType;
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllButtonGroups: () => JSX.Element;
6
+ export declare const AllButtonGroups: () => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { ButtonProps } from '../Button/Button.types';
2
3
  import { TooltipComponentProps } from '../Tooltip/Tooltip.types';
3
4
  /**
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllButtonWithDropdownVariants: () => JSX.Element;
6
+ export declare const AllButtonWithDropdownVariants: () => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TooltipComponentProps } from '../Tooltip/Tooltip.types';
2
3
  interface DropdownSubItem {
3
4
  /** icon class to be used with the dropdown subitems - if available (i.e. 'fc-zoom') */
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllButtonWithPopoverVariants: () => JSX.Element;
6
+ export declare const AllButtonWithPopoverVariants: () => React.JSX.Element;
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllCarousels: () => JSX.Element;
6
+ export declare const AllCarousels: () => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  /**
2
3
  * Properties for the Carousel component.
3
4
  */
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllCheckboxes: () => JSX.Element;
6
+ export declare const AllCheckboxes: () => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TooltipComponentProps } from '../Tooltip/Tooltip.types';
2
3
  type FormControlElement = HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement;
3
4
  export interface CheckboxProps extends TooltipComponentProps {
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllCollapses: () => JSX.Element;
6
+ export declare const AllCollapses: () => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface CollapseProps {
2
3
  isVisible: boolean;
3
4
  children: React.ReactNode;
Binary file
Binary file
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllIcons: () => JSX.Element;
6
+ export declare const AllIcons: () => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TooltipComponentProps } from '../Tooltip/Tooltip.types';
2
3
  export declare const iconTypes: readonly ["theme", "white", "dark-gray", "darkish-gray", "gray", "color", "info", "text", "warning", "inherit", "danger", "theme-light", "success"];
3
4
  export type IconType = (typeof iconTypes)[number];
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllTextFields: () => JSX.Element;
6
+ export declare const AllTextFields: () => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { ButtonProps } from '../Button/Button.types';
2
3
  import { InputLengthStyleProps, TextFieldProps } from '../TextField/TextField.types';
3
4
  import { TooltipComponentProps } from '../Tooltip/Tooltip.types';
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllProgressBars: () => JSX.Element;
6
+ export declare const AllProgressBars: () => React.JSX.Element;
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllSeeqActionDropdownVariants: () => JSX.Element;
6
+ export declare const AllSeeqActionDropdownVariants: () => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TooltipComponentProps } from '../Tooltip/Tooltip.types';
2
3
  export interface SeeqActionDropdownItems {
3
4
  id?: string;
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllSelectVariants: () => JSX.Element;
6
+ export declare const AllSelectVariants: () => React.JSX.Element;
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllSliders: () => JSX.Element;
6
+ export declare const AllSliders: () => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface SliderProps {
2
3
  disabled?: boolean;
3
4
  onValueChange?: (value: number[]) => void;
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllIcons: () => JSX.Element;
6
+ export declare const AllIcons: () => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TooltipComponentProps } from '../Tooltip/Tooltip.types';
2
3
  export declare const svgIconTypes: readonly ["theme", "white", "dark-gray", "darkish-gray", "gray", "color", "info", "text", "warning", "inherit", "danger", "theme-light", "success", "default"];
3
4
  export type SvgIconType = (typeof svgIconTypes)[number];
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllTabsVariants: () => JSX.Element;
6
+ export declare const AllTabsVariants: () => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  export interface TabsProps {
2
3
  extraClassNames?: string;
3
4
  defaultActiveTab?: string;
@@ -10,7 +11,7 @@ export interface TabsProps {
10
11
  tabs: {
11
12
  label: string;
12
13
  id: string;
13
- content: JSX.Element;
14
+ content: React.JSX.Element;
14
15
  icon?: string;
15
16
  testId?: string;
16
17
  tabExtraClassNames?: string;
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllTextAreas: () => JSX.Element;
6
+ export declare const AllTextAreas: () => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { FormControlElement } from '../types';
2
3
  export interface TextAreaProps {
3
4
  /** extra class names to be placed on the TextArea component */
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllTextFields: () => JSX.Element;
6
+ export declare const AllTextFields: () => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TooltipComponentProps } from '../Tooltip/Tooltip.types';
2
3
  import { FormControlElement, InputGroupPlacement } from '../types';
3
4
  export interface TextFieldProps extends TooltipComponentProps {
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllToolbarButtonVariants: () => JSX.Element;
6
+ export declare const AllToolbarButtonVariants: () => React.JSX.Element;
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllQTips: () => JSX.Element;
6
+ export declare const AllQTips: () => React.JSX.Element;
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const QtipPerformance: () => JSX.Element;
6
+ export declare const QtipPerformance: () => React.JSX.Element;
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const AllTooltips: () => JSX.Element;
6
+ export declare const AllTooltips: () => React.JSX.Element;
@@ -1,10 +1,11 @@
1
1
  export declare const DEFAULT_TOOL_TIP_DELAY = 500;
2
2
  export declare const tooltipPositions: readonly ["top", "left", "right", "bottom"];
3
+ import React from 'react';
3
4
  export type TooltipPosition = (typeof tooltipPositions)[number];
4
5
  export interface TooltipProps {
5
6
  position?: TooltipPosition;
6
- children?: JSX.Element | string;
7
- text: JSX.Element | string;
7
+ children?: React.JSX.Element | string;
8
+ text: React.JSX.Element | string;
8
9
  delay?: number;
9
10
  }
10
11
  export interface TooltipComponentProps {
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
4
5
  export default _default;
5
- export declare const TooltipPerformance: () => JSX.Element;
6
+ export declare const TooltipPerformance: () => React.JSX.Element;