@seeqdev/qomponents 0.0.224 → 0.0.229
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.
- package/dist/index.esm.js +37 -37
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +31 -31
- package/dist/index.js.map +1 -1
- package/dist/src/Accordion/Accordion.d.ts +10 -2
- package/dist/src/Accordion/Accordion.types.d.ts +4 -4
- package/dist/src/Alert/Alert.d.ts +12 -3
- package/dist/src/Alert/Alert.types.d.ts +2 -2
- package/dist/src/Badge/Badge.d.ts +2 -2
- package/dist/src/Button/Button.d.ts +26 -1
- package/dist/src/Button/Button.types.d.ts +2 -2
- package/dist/src/ButtonGroup/ButtonGroup.d.ts +2 -3
- package/dist/src/ButtonGroup/ButtonGroup.types.d.ts +6 -6
- package/dist/src/ButtonWithDropdown/ButtonWithDropdown.d.ts +19 -3
- package/dist/src/ButtonWithDropdown/ButtonWithDropdown.types.d.ts +6 -6
- package/dist/src/ButtonWithPopover/ButtonWithPopover.d.ts +26 -2
- package/dist/src/ButtonWithPopover/ButtonWithPopover.types.d.ts +2 -2
- package/dist/src/Carousel/Carousel.d.ts +16 -2
- package/dist/src/Carousel/Carousel.types.d.ts +2 -2
- package/dist/src/Checkbox/Checkbox.d.ts +2 -3
- package/dist/src/Checkbox/Checkbox.types.d.ts +2 -2
- package/dist/src/Collapse/Collapse.d.ts +5 -2
- package/dist/src/Collapse/Collapse.types.d.ts +2 -2
- package/dist/src/ColorPickerControl/ColorPickerControl.d.ts +2 -2
- package/dist/src/ColorPickerControl/ColorPickerControl.types.d.ts +2 -2
- package/dist/src/ColorSwatch/ColorSwatch.d.ts +2 -2
- package/dist/src/ColorSwatch/ColorSwatch.types.d.ts +2 -2
- package/dist/src/EditorPanel/EditorPanel.d.ts +14 -2
- package/dist/src/EditorPanel/EditorPanel.types.d.ts +2 -2
- package/dist/src/ExternalLink/ExternalLink.d.ts +17 -0
- package/dist/src/ExternalLink/ExternalLink.types.d.ts +28 -0
- package/dist/src/ExternalLink/index.d.ts +2 -0
- package/dist/src/Icon/Icon.d.ts +17 -2
- package/dist/src/Icon/Icon.types.d.ts +3 -3
- package/dist/src/InputGroup/InputGroup.d.ts +2 -3
- package/dist/src/InputGroup/InputGroup.types.d.ts +6 -6
- package/dist/src/LoadingIndicator/LoadingIndicator.d.ts +2 -2
- package/dist/src/Modal/Modal.d.ts +44 -3
- package/dist/src/Modal/Modal.types.d.ts +5 -5
- package/dist/src/ProgressBar/ProgressBar.d.ts +7 -2
- package/dist/src/ProgressBar/ProgressBar.types.d.ts +4 -4
- package/dist/src/SeeqActionDropdown/SeeqActionDropdown.d.ts +20 -2
- package/dist/src/SeeqActionDropdown/SeeqActionDropdown.types.d.ts +4 -4
- package/dist/src/SeeqActionDropdown/variants.d.ts +4 -4
- package/dist/src/SegmentedControl/SegmentedControl.d.ts +2 -2
- package/dist/src/SegmentedControl/SegmentedControl.types.d.ts +4 -4
- package/dist/src/Select/Select.d.ts +40 -2
- package/dist/src/Select/Select.types.d.ts +4 -4
- package/dist/src/Slider/Slider.d.ts +17 -4
- package/dist/src/Slider/Slider.types.d.ts +2 -2
- package/dist/src/SvgIcon/SvgIcon.d.ts +13 -2
- package/dist/src/SvgIcon/SvgIcon.types.d.ts +3 -3
- package/dist/src/Tabs/Tabs.d.ts +11 -2
- package/dist/src/Tabs/Tabs.types.d.ts +2 -2
- package/dist/src/TextArea/TextArea.d.ts +2 -3
- package/dist/src/TextArea/TextArea.types.d.ts +2 -2
- package/dist/src/TextField/TextField.d.ts +34 -4
- package/dist/src/TextField/TextField.types.d.ts +8 -7
- package/dist/src/ToolbarButton/ToolbarButton.d.ts +27 -2
- package/dist/src/ToolbarButton/ToolbarButton.types.d.ts +7 -2
- package/dist/src/Tooltip/QTip.types.d.ts +2 -2
- package/dist/src/Tooltip/Qtip.d.ts +2 -2
- package/dist/src/Tooltip/Tooltip.d.ts +7 -2
- package/dist/src/Tooltip/Tooltip.types.d.ts +4 -4
- package/dist/src/TriggerWithDropdown/TriggerWithDropdown.d.ts +2 -2
- package/dist/src/TriggerWithDropdown/TriggerWithDropdown.types.d.ts +2 -2
- package/dist/src/index.build.d.ts +26 -24
- package/dist/src/index.d.ts +26 -24
- package/dist/src/types.d.ts +5 -4
- package/dist/styles.css +40 -8
- package/package.json +5 -3
|
@@ -1,11 +1,41 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
1
|
+
import { TooltipComponentProps } from "../Tooltip/Tooltip.types.js";
|
|
2
|
+
import { FormControlElement, InputGroupPlacement } from "../types.js";
|
|
3
|
+
import { InputLengthStyleProps } from "./TextField.types.js";
|
|
4
|
+
import * as react1 from "react";
|
|
3
5
|
|
|
4
6
|
//#region src/TextField/TextField.d.ts
|
|
5
|
-
|
|
6
7
|
/**
|
|
7
8
|
* Textfield.
|
|
8
9
|
*/
|
|
9
|
-
declare const TextField:
|
|
10
|
+
declare const TextField: react1.ForwardRefExoticComponent<Omit<{
|
|
11
|
+
readonly?: boolean | undefined;
|
|
12
|
+
disabled?: boolean | undefined;
|
|
13
|
+
onChange?: react1.ChangeEventHandler<FormControlElement> | undefined;
|
|
14
|
+
onPaste?: react1.ClipboardEventHandler<FormControlElement> | undefined;
|
|
15
|
+
onKeyUp?: react1.KeyboardEventHandler<FormControlElement> | undefined;
|
|
16
|
+
onKeyDown?: react1.KeyboardEventHandler<FormControlElement> | undefined;
|
|
17
|
+
onFocus?: react1.FocusEventHandler<HTMLInputElement> | undefined;
|
|
18
|
+
onBlur?: react1.FocusEventHandler<FormControlElement> | undefined;
|
|
19
|
+
id?: string | undefined;
|
|
20
|
+
name?: string | undefined;
|
|
21
|
+
size?: "lg" | "sm" | undefined;
|
|
22
|
+
value?: string | number | string[] | undefined;
|
|
23
|
+
placeholder?: string | undefined;
|
|
24
|
+
extraClassNames?: string | undefined;
|
|
25
|
+
type?: "email" | "number" | "password" | "text" | undefined;
|
|
26
|
+
testId?: string | undefined;
|
|
27
|
+
ref?: react1.Ref<HTMLInputElement> | undefined;
|
|
28
|
+
inputGroup?: InputGroupPlacement;
|
|
29
|
+
step?: string | number | undefined;
|
|
30
|
+
showError?: boolean | undefined;
|
|
31
|
+
errorText?: string | undefined;
|
|
32
|
+
required?: boolean | undefined;
|
|
33
|
+
autoComplete?: string | undefined;
|
|
34
|
+
autoFocus?: boolean | undefined;
|
|
35
|
+
inputWidth?: number | undefined;
|
|
36
|
+
inputHeight?: number | undefined;
|
|
37
|
+
min?: number | undefined;
|
|
38
|
+
max?: number | undefined;
|
|
39
|
+
} & TooltipComponentProps & InputLengthStyleProps, "ref"> & react1.RefAttributes<HTMLInputElement>>;
|
|
10
40
|
//#endregion
|
|
11
41
|
export { TextField };
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { TooltipComponentProps } from "../Tooltip/Tooltip.types.js";
|
|
2
2
|
import { FormControlElement, InputGroupPlacement } from "../types.js";
|
|
3
|
+
import React from "react";
|
|
3
4
|
|
|
4
5
|
//#region src/TextField/TextField.types.d.ts
|
|
5
|
-
|
|
6
|
+
type TextFieldProps = {
|
|
6
7
|
/**
|
|
7
8
|
* When true, makes the text field read-only, preventing user input.
|
|
8
9
|
* The field will display its value but users cannot modify it. Unlike disabled fields,
|
|
@@ -108,7 +109,7 @@ interface TextFieldProps extends TooltipComponentProps {
|
|
|
108
109
|
* Use this when you need to programmatically focus the field,
|
|
109
110
|
* measure its dimensions, or perform other direct DOM operations.
|
|
110
111
|
*/
|
|
111
|
-
ref?:
|
|
112
|
+
ref?: React.Ref<HTMLInputElement>;
|
|
112
113
|
/**
|
|
113
114
|
* Configuration for input group styling when the field is part of a group:
|
|
114
115
|
* - `prepend`: Field is preceded by another element (button, icon, text)
|
|
@@ -174,22 +175,22 @@ interface TextFieldProps extends TooltipComponentProps {
|
|
|
174
175
|
* Used for validation and UI constraints in number-based inputs.
|
|
175
176
|
*/
|
|
176
177
|
max?: number;
|
|
177
|
-
}
|
|
178
|
+
} & TooltipComponentProps;
|
|
178
179
|
/**
|
|
179
180
|
* Interface for defining dimension styles with CSS-compatible values.
|
|
180
181
|
* Used internally for styling components with dynamic width and height.
|
|
181
182
|
*/
|
|
182
|
-
|
|
183
|
+
type DimensionStyle = {
|
|
183
184
|
/** CSS width value (e.g., '100px', '50%', 'auto') */
|
|
184
185
|
width?: string;
|
|
185
186
|
/** CSS height value (e.g., '40px', '2rem', 'auto') */
|
|
186
187
|
height?: string;
|
|
187
|
-
}
|
|
188
|
+
};
|
|
188
189
|
/**
|
|
189
190
|
* Interface for defining text input length constraints.
|
|
190
191
|
* Used for validation and input limiting in text-based fields.
|
|
191
192
|
*/
|
|
192
|
-
|
|
193
|
+
type InputLengthStyleProps = {
|
|
193
194
|
/**
|
|
194
195
|
* Maximum number of characters allowed in the text field.
|
|
195
196
|
* Prevents users from entering more text beyond this limit.
|
|
@@ -202,6 +203,6 @@ interface InputLengthStyleProps {
|
|
|
202
203
|
* Commonly used for passwords, codes, or required descriptions.
|
|
203
204
|
*/
|
|
204
205
|
minLength?: number;
|
|
205
|
-
}
|
|
206
|
+
};
|
|
206
207
|
//#endregion
|
|
207
208
|
export { DimensionStyle, InputLengthStyleProps, TextFieldProps };
|
|
@@ -1,7 +1,32 @@
|
|
|
1
1
|
import { ToolbarButtonProps } from "./ToolbarButton.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime1 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/ToolbarButton/ToolbarButton.d.ts
|
|
5
|
-
declare const ToolbarButton:
|
|
5
|
+
declare const ToolbarButton: ({
|
|
6
|
+
isSmall,
|
|
7
|
+
label,
|
|
8
|
+
icon,
|
|
9
|
+
secondIcon,
|
|
10
|
+
forceSmallIcon,
|
|
11
|
+
tooltipText,
|
|
12
|
+
id,
|
|
13
|
+
popoverContent,
|
|
14
|
+
extraClassNames,
|
|
15
|
+
testId,
|
|
16
|
+
tooltipTestId,
|
|
17
|
+
tooltipOptions,
|
|
18
|
+
isActive,
|
|
19
|
+
isHtmlTooltip,
|
|
20
|
+
hasArrow,
|
|
21
|
+
disabled,
|
|
22
|
+
isPrimaryAnSvg,
|
|
23
|
+
primaryIconExtraClassNames,
|
|
24
|
+
iconHeight,
|
|
25
|
+
iconWidth,
|
|
26
|
+
primaryIconViewbox,
|
|
27
|
+
popoverAlign,
|
|
28
|
+
onClick,
|
|
29
|
+
onHide
|
|
30
|
+
}: ToolbarButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
6
31
|
//#endregion
|
|
7
32
|
export { ToolbarButton };
|
|
@@ -8,7 +8,7 @@ type ToolbarButtonVariant = (typeof toolbarButtonVariants)[number];
|
|
|
8
8
|
* Props for the ToolbarButton component that creates toolbar-style buttons with optional popovers.
|
|
9
9
|
* Designed for use in toolbars, action bars, and similar UI contexts.
|
|
10
10
|
*/
|
|
11
|
-
|
|
11
|
+
type ToolbarButtonProps = {
|
|
12
12
|
/**
|
|
13
13
|
* Primary icon class name to display on the button.
|
|
14
14
|
* Typically uses FontAwesome classes (e.g., 'fc-zoom', 'fc-delete').
|
|
@@ -121,6 +121,11 @@ interface ToolbarButtonProps {
|
|
|
121
121
|
iconWidth?: number;
|
|
122
122
|
/** viewbox for the icon */
|
|
123
123
|
primaryIconViewbox?: string;
|
|
124
|
-
|
|
124
|
+
/**
|
|
125
|
+
* Alignment of the popover relative to the trigger button.
|
|
126
|
+
* 'start' aligns left edges (popover to the right), 'end' aligns right edges (popover to the left), 'center' centers it.
|
|
127
|
+
*/
|
|
128
|
+
popoverAlign?: 'start' | 'end' | 'center';
|
|
129
|
+
};
|
|
125
130
|
//#endregion
|
|
126
131
|
export { ToolbarButtonProps, ToolbarButtonVariant, toolbarButtonVariants };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TooltipPosition } from "./Tooltip.types.js";
|
|
2
2
|
|
|
3
3
|
//#region src/Tooltip/QTip.types.d.ts
|
|
4
|
-
|
|
4
|
+
type QTipDataAttributes = {
|
|
5
5
|
/** text displayed by the tooltip */
|
|
6
6
|
'data-qtip-text': string;
|
|
7
7
|
/** one of TooltipPosition */
|
|
@@ -12,6 +12,6 @@ interface QTipDataAttributes {
|
|
|
12
12
|
'data-qtip-delay'?: number;
|
|
13
13
|
/** useful for testing; sets the provided string as the data-testid attribute of the tooltip */
|
|
14
14
|
'data-qtip-testid'?: string;
|
|
15
|
-
}
|
|
15
|
+
};
|
|
16
16
|
//#endregion
|
|
17
17
|
export { QTipDataAttributes };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/Tooltip/Qtip.d.ts
|
|
4
4
|
|
|
@@ -26,6 +26,6 @@ import React from "react";
|
|
|
26
26
|
*
|
|
27
27
|
* and enjoy beautiful & performant tooltips!
|
|
28
28
|
*/
|
|
29
|
-
declare const QTip:
|
|
29
|
+
declare const QTip: () => react_jsx_runtime0.JSX.Element;
|
|
30
30
|
//#endregion
|
|
31
31
|
export { QTip };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TooltipProps } from "./Tooltip.types.js";
|
|
2
|
-
import
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/Tooltip/Tooltip.d.ts
|
|
5
5
|
|
|
@@ -12,6 +12,11 @@ import React from "react";
|
|
|
12
12
|
* correctly if a parent element has an overflow CSS property assigned. Please use QTip to ensure your tooltips
|
|
13
13
|
* display correctly.
|
|
14
14
|
*/
|
|
15
|
-
declare const Tooltip:
|
|
15
|
+
declare const Tooltip: ({
|
|
16
|
+
position,
|
|
17
|
+
children,
|
|
18
|
+
text,
|
|
19
|
+
delay
|
|
20
|
+
}: TooltipProps) => react_jsx_runtime0.JSX.Element;
|
|
16
21
|
//#endregion
|
|
17
22
|
export { Tooltip };
|
|
@@ -4,13 +4,13 @@ import React from "react";
|
|
|
4
4
|
declare const DEFAULT_TOOL_TIP_DELAY: number;
|
|
5
5
|
declare const tooltipPositions: readonly ["top", "left", "right", "bottom"];
|
|
6
6
|
type TooltipPosition = (typeof tooltipPositions)[number];
|
|
7
|
-
|
|
7
|
+
type TooltipProps = {
|
|
8
8
|
position?: TooltipPosition;
|
|
9
9
|
children?: React.JSX.Element | string;
|
|
10
10
|
text: React.JSX.Element | string;
|
|
11
11
|
delay?: number;
|
|
12
|
-
}
|
|
13
|
-
|
|
12
|
+
};
|
|
13
|
+
type TooltipComponentProps = {
|
|
14
14
|
/** text to display on tooltip */
|
|
15
15
|
tooltip?: string;
|
|
16
16
|
/** number of milliseconds to wait before showing a tooltip on-hover */
|
|
@@ -21,6 +21,6 @@ interface TooltipComponentProps {
|
|
|
21
21
|
isHtmlTooltip?: boolean;
|
|
22
22
|
/** optional testId applied to the tooltip - useful for testing */
|
|
23
23
|
tooltipTestId?: string;
|
|
24
|
-
}
|
|
24
|
+
};
|
|
25
25
|
//#endregion
|
|
26
26
|
export { DEFAULT_TOOL_TIP_DELAY, TooltipComponentProps, TooltipPosition, TooltipProps, tooltipPositions };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TriggerWithDropdownProps } from "./TriggerWithDropdown.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime2 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/TriggerWithDropdown/TriggerWithDropdown.d.ts
|
|
5
|
-
declare const TriggerWithDropdown:
|
|
5
|
+
declare const TriggerWithDropdown: (props: TriggerWithDropdownProps) => react_jsx_runtime2.JSX.Element;
|
|
6
6
|
//#endregion
|
|
7
7
|
export { TriggerWithDropdown as default };
|
|
@@ -10,7 +10,7 @@ import { DropdownItems } from "../ButtonWithDropdown/ButtonWithDropdown.types.js
|
|
|
10
10
|
* Use this component when you need full control over the trigger element's appearance.
|
|
11
11
|
* If you want a standard Qomponents Button as the trigger, use ButtonWithDropdown instead.
|
|
12
12
|
*/
|
|
13
|
-
|
|
13
|
+
type TriggerWithDropdownProps = {
|
|
14
14
|
/**
|
|
15
15
|
* Array of items to display in the dropdown menu.
|
|
16
16
|
* Each item can be interactive (with onClick) or decorative (labels/dividers).
|
|
@@ -102,6 +102,6 @@ interface TriggerWithDropdownProps extends TooltipComponentProps {
|
|
|
102
102
|
* Receives the click event. Use this for handling container-level interactions.
|
|
103
103
|
*/
|
|
104
104
|
onContainerClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
105
|
-
}
|
|
105
|
+
} & TooltipComponentProps;
|
|
106
106
|
//#endregion
|
|
107
107
|
export { TriggerWithDropdownProps };
|
|
@@ -9,14 +9,21 @@ import { ButtonProps, ButtonSize, ButtonType, ButtonVariant, IconPosition, butto
|
|
|
9
9
|
import Button from "./Button/Button.js";
|
|
10
10
|
import { ButtonGroupProps } from "./ButtonGroup/ButtonGroup.types.js";
|
|
11
11
|
import { ButtonGroup } from "./ButtonGroup/ButtonGroup.js";
|
|
12
|
-
import { ToolbarButtonProps, ToolbarButtonVariant, toolbarButtonVariants } from "./ToolbarButton/ToolbarButton.types.js";
|
|
13
|
-
import { ToolbarButton } from "./ToolbarButton/ToolbarButton.js";
|
|
14
|
-
import { TriggerWithDropdownProps } from "./TriggerWithDropdown/TriggerWithDropdown.types.js";
|
|
15
12
|
import { ButtonWithPopoverProps } from "./ButtonWithPopover/ButtonWithPopover.types.js";
|
|
13
|
+
import ButtonWithPopover from "./ButtonWithPopover/ButtonWithPopover.js";
|
|
16
14
|
import { CarouselProps } from "./Carousel/Carousel.types.js";
|
|
15
|
+
import Carousel from "./Carousel/Carousel.js";
|
|
17
16
|
import { CheckboxProps } from "./Checkbox/Checkbox.types.js";
|
|
17
|
+
import { Checkbox } from "./Checkbox/Checkbox.js";
|
|
18
18
|
import { CollapseProps } from "./Collapse/Collapse.types.js";
|
|
19
|
-
import
|
|
19
|
+
import Collapse from "./Collapse/Collapse.js";
|
|
20
|
+
import ColorPickerControl from "./ColorPickerControl/ColorPickerControl.js";
|
|
21
|
+
import ColorSwatch from "./ColorSwatch/ColorSwatch.js";
|
|
22
|
+
import EditorPanel from "./EditorPanel/EditorPanel.js";
|
|
23
|
+
import { ExternalLinkProps, ExternalLinkThemeClass, ExternalLinkVariant, externalLinkThemeClasses } from "./ExternalLink/ExternalLink.types.js";
|
|
24
|
+
import { ExternalLink } from "./ExternalLink/ExternalLink.js";
|
|
25
|
+
import Icon from "./Icon/Icon.js";
|
|
26
|
+
import { TriggerWithDropdownProps } from "./TriggerWithDropdown/TriggerWithDropdown.types.js";
|
|
20
27
|
import { ModalProps, ModalSize, TitleIconPosition } from "./Modal/Modal.types.js";
|
|
21
28
|
import { ProgressBarProps, ProgressIndicatorProps } from "./ProgressBar/ProgressBar.types.js";
|
|
22
29
|
import { SeeqActionDropdownItems, SeeqActionDropdownProps } from "./SeeqActionDropdown/SeeqActionDropdown.types.js";
|
|
@@ -25,33 +32,28 @@ import { SliderProps } from "./Slider/Slider.types.js";
|
|
|
25
32
|
import { SvgIconProps, SvgIconType, svgIconTypes } from "./SvgIcon/SvgIcon.types.js";
|
|
26
33
|
import { TabsProps } from "./Tabs/Tabs.types.js";
|
|
27
34
|
import { TextAreaProps } from "./TextArea/TextArea.types.js";
|
|
35
|
+
import { ToolbarButtonProps, ToolbarButtonVariant, toolbarButtonVariants } from "./ToolbarButton/ToolbarButton.types.js";
|
|
28
36
|
import { QTipDataAttributes } from "./Tooltip/QTip.types.js";
|
|
29
37
|
import { FormControlElement, InputGroupPlacement } from "./types.js";
|
|
30
38
|
import { DimensionStyle, InputLengthStyleProps, TextFieldProps } from "./TextField/TextField.types.js";
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import
|
|
34
|
-
import
|
|
35
|
-
import
|
|
36
|
-
import
|
|
39
|
+
import { AppendedProps, InputGroupProps } from "./InputGroup/InputGroup.types.js";
|
|
40
|
+
import { InputGroup } from "./InputGroup/InputGroup.js";
|
|
41
|
+
import LoadingIndicator from "./LoadingIndicator/LoadingIndicator.js";
|
|
42
|
+
import Modal from "./Modal/Modal.js";
|
|
43
|
+
import ProgressBar from "./ProgressBar/ProgressBar.js";
|
|
44
|
+
import SeeqActionDropdown from "./SeeqActionDropdown/SeeqActionDropdown.js";
|
|
45
|
+
import SegmentedControl from "./SegmentedControl/SegmentedControl.js";
|
|
37
46
|
import Select from "./Select/Select.js";
|
|
38
47
|
import { GroupBase, OptionProps, SelectComponents } from "./Select/index.js";
|
|
39
|
-
import
|
|
48
|
+
import { Slider } from "./Slider/Slider.js";
|
|
40
49
|
import Tabs from "./Tabs/Tabs.js";
|
|
41
|
-
import
|
|
50
|
+
import { TextArea } from "./TextArea/TextArea.js";
|
|
51
|
+
import { TextField } from "./TextField/TextField.js";
|
|
52
|
+
import { ToolbarButton } from "./ToolbarButton/ToolbarButton.js";
|
|
53
|
+
import { Tooltip } from "./Tooltip/Tooltip.js";
|
|
54
|
+
import { QTip } from "./Tooltip/Qtip.js";
|
|
42
55
|
import TriggerWithDropdown from "./TriggerWithDropdown/TriggerWithDropdown.js";
|
|
43
|
-
import SeeqActionDropdown from "./SeeqActionDropdown/SeeqActionDropdown.js";
|
|
44
|
-
import { InputGroup } from "./InputGroup/InputGroup.js";
|
|
45
|
-
import Collapse from "./Collapse/Collapse.js";
|
|
46
|
-
import { Slider } from "./Slider/Slider.js";
|
|
47
|
-
import ProgressBar from "./ProgressBar/ProgressBar.js";
|
|
48
|
-
import Carousel from "./Carousel/Carousel.js";
|
|
49
|
-
import SegmentedControl from "./SegmentedControl/SegmentedControl.js";
|
|
50
|
-
import EditorPanel from "./EditorPanel/EditorPanel.js";
|
|
51
|
-
import ColorSwatch from "./ColorSwatch/ColorSwatch.js";
|
|
52
|
-
import ColorPickerControl from "./ColorPickerControl/ColorPickerControl.js";
|
|
53
|
-
import LoadingIndicator from "./LoadingIndicator/LoadingIndicator.js";
|
|
54
56
|
import { QomponentsTheme } from "./constants.js";
|
|
55
57
|
import { ButtonWithDropdownProps, DropdownItems, DropdownProps, DropdownSubItem } from "./ButtonWithDropdown/ButtonWithDropdown.types.js";
|
|
56
58
|
import ButtonWithDropdown from "./ButtonWithDropdown/ButtonWithDropdown.js";
|
|
57
|
-
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, FormControlElement, GroupBase, GroupedOption, 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, iconPositions, iconTypes, svgIconTypes, toolbarButtonVariants, tooltipPositions };
|
|
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, 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 };
|
package/dist/src/index.d.ts
CHANGED
|
@@ -9,14 +9,21 @@ import { ButtonProps, ButtonSize, ButtonType, ButtonVariant, IconPosition, butto
|
|
|
9
9
|
import Button from "./Button/Button.js";
|
|
10
10
|
import { ButtonGroupProps } from "./ButtonGroup/ButtonGroup.types.js";
|
|
11
11
|
import { ButtonGroup } from "./ButtonGroup/ButtonGroup.js";
|
|
12
|
-
import { ToolbarButtonProps, ToolbarButtonVariant, toolbarButtonVariants } from "./ToolbarButton/ToolbarButton.types.js";
|
|
13
|
-
import { ToolbarButton } from "./ToolbarButton/ToolbarButton.js";
|
|
14
|
-
import { TriggerWithDropdownProps } from "./TriggerWithDropdown/TriggerWithDropdown.types.js";
|
|
15
12
|
import { ButtonWithPopoverProps } from "./ButtonWithPopover/ButtonWithPopover.types.js";
|
|
13
|
+
import ButtonWithPopover from "./ButtonWithPopover/ButtonWithPopover.js";
|
|
16
14
|
import { CarouselProps } from "./Carousel/Carousel.types.js";
|
|
15
|
+
import Carousel from "./Carousel/Carousel.js";
|
|
17
16
|
import { CheckboxProps } from "./Checkbox/Checkbox.types.js";
|
|
17
|
+
import { Checkbox } from "./Checkbox/Checkbox.js";
|
|
18
18
|
import { CollapseProps } from "./Collapse/Collapse.types.js";
|
|
19
|
-
import
|
|
19
|
+
import Collapse from "./Collapse/Collapse.js";
|
|
20
|
+
import ColorPickerControl from "./ColorPickerControl/ColorPickerControl.js";
|
|
21
|
+
import ColorSwatch from "./ColorSwatch/ColorSwatch.js";
|
|
22
|
+
import EditorPanel from "./EditorPanel/EditorPanel.js";
|
|
23
|
+
import { ExternalLinkProps, ExternalLinkThemeClass, ExternalLinkVariant, externalLinkThemeClasses } from "./ExternalLink/ExternalLink.types.js";
|
|
24
|
+
import { ExternalLink } from "./ExternalLink/ExternalLink.js";
|
|
25
|
+
import Icon from "./Icon/Icon.js";
|
|
26
|
+
import { TriggerWithDropdownProps } from "./TriggerWithDropdown/TriggerWithDropdown.types.js";
|
|
20
27
|
import { ModalProps, ModalSize, TitleIconPosition } from "./Modal/Modal.types.js";
|
|
21
28
|
import { ProgressBarProps, ProgressIndicatorProps } from "./ProgressBar/ProgressBar.types.js";
|
|
22
29
|
import { SeeqActionDropdownItems, SeeqActionDropdownProps } from "./SeeqActionDropdown/SeeqActionDropdown.types.js";
|
|
@@ -25,33 +32,28 @@ import { SliderProps } from "./Slider/Slider.types.js";
|
|
|
25
32
|
import { SvgIconProps, SvgIconType, svgIconTypes } from "./SvgIcon/SvgIcon.types.js";
|
|
26
33
|
import { TabsProps } from "./Tabs/Tabs.types.js";
|
|
27
34
|
import { TextAreaProps } from "./TextArea/TextArea.types.js";
|
|
35
|
+
import { ToolbarButtonProps, ToolbarButtonVariant, toolbarButtonVariants } from "./ToolbarButton/ToolbarButton.types.js";
|
|
28
36
|
import { QTipDataAttributes } from "./Tooltip/QTip.types.js";
|
|
29
37
|
import { FormControlElement, InputGroupPlacement } from "./types.js";
|
|
30
38
|
import { DimensionStyle, InputLengthStyleProps, TextFieldProps } from "./TextField/TextField.types.js";
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import
|
|
34
|
-
import
|
|
35
|
-
import
|
|
36
|
-
import
|
|
39
|
+
import { AppendedProps, InputGroupProps } from "./InputGroup/InputGroup.types.js";
|
|
40
|
+
import { InputGroup } from "./InputGroup/InputGroup.js";
|
|
41
|
+
import LoadingIndicator from "./LoadingIndicator/LoadingIndicator.js";
|
|
42
|
+
import Modal from "./Modal/Modal.js";
|
|
43
|
+
import ProgressBar from "./ProgressBar/ProgressBar.js";
|
|
44
|
+
import SeeqActionDropdown from "./SeeqActionDropdown/SeeqActionDropdown.js";
|
|
45
|
+
import SegmentedControl from "./SegmentedControl/SegmentedControl.js";
|
|
37
46
|
import Select from "./Select/Select.js";
|
|
38
47
|
import { GroupBase, OptionProps, SelectComponents } from "./Select/index.js";
|
|
39
|
-
import
|
|
48
|
+
import { Slider } from "./Slider/Slider.js";
|
|
40
49
|
import Tabs from "./Tabs/Tabs.js";
|
|
41
|
-
import
|
|
50
|
+
import { TextArea } from "./TextArea/TextArea.js";
|
|
51
|
+
import { TextField } from "./TextField/TextField.js";
|
|
52
|
+
import { ToolbarButton } from "./ToolbarButton/ToolbarButton.js";
|
|
53
|
+
import { Tooltip } from "./Tooltip/Tooltip.js";
|
|
54
|
+
import { QTip } from "./Tooltip/Qtip.js";
|
|
42
55
|
import TriggerWithDropdown from "./TriggerWithDropdown/TriggerWithDropdown.js";
|
|
43
|
-
import SeeqActionDropdown from "./SeeqActionDropdown/SeeqActionDropdown.js";
|
|
44
|
-
import { InputGroup } from "./InputGroup/InputGroup.js";
|
|
45
|
-
import Collapse from "./Collapse/Collapse.js";
|
|
46
|
-
import { Slider } from "./Slider/Slider.js";
|
|
47
|
-
import ProgressBar from "./ProgressBar/ProgressBar.js";
|
|
48
|
-
import Carousel from "./Carousel/Carousel.js";
|
|
49
|
-
import SegmentedControl from "./SegmentedControl/SegmentedControl.js";
|
|
50
|
-
import EditorPanel from "./EditorPanel/EditorPanel.js";
|
|
51
|
-
import ColorSwatch from "./ColorSwatch/ColorSwatch.js";
|
|
52
|
-
import ColorPickerControl from "./ColorPickerControl/ColorPickerControl.js";
|
|
53
|
-
import LoadingIndicator from "./LoadingIndicator/LoadingIndicator.js";
|
|
54
56
|
import { QomponentsTheme } from "./constants.js";
|
|
55
57
|
import { ButtonWithDropdownProps, DropdownItems, DropdownProps, DropdownSubItem } from "./ButtonWithDropdown/ButtonWithDropdown.types.js";
|
|
56
58
|
import ButtonWithDropdown from "./ButtonWithDropdown/ButtonWithDropdown.js";
|
|
57
|
-
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, FormControlElement, type GroupBase, GroupedOption, 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, iconPositions, iconTypes, svgIconTypes, toolbarButtonVariants, tooltipPositions };
|
|
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, 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 };
|
package/dist/src/types.d.ts
CHANGED
|
@@ -4,13 +4,12 @@ import { AlertProps } from "./Alert/Alert.types.js";
|
|
|
4
4
|
import { IconProps, IconSize, IconType, iconTypes } from "./Icon/Icon.types.js";
|
|
5
5
|
import { ButtonProps, ButtonSize, ButtonType, ButtonVariant, IconPosition, buttonSizes, buttonTypes, buttonVariants, iconPositions } from "./Button/Button.types.js";
|
|
6
6
|
import { ButtonGroupProps } from "./ButtonGroup/ButtonGroup.types.js";
|
|
7
|
-
import { ToolbarButtonProps, ToolbarButtonVariant, toolbarButtonVariants } from "./ToolbarButton/ToolbarButton.types.js";
|
|
8
|
-
import { TriggerWithDropdownProps } from "./TriggerWithDropdown/TriggerWithDropdown.types.js";
|
|
9
7
|
import { ButtonWithPopoverProps } from "./ButtonWithPopover/ButtonWithPopover.types.js";
|
|
10
8
|
import { CarouselProps } from "./Carousel/Carousel.types.js";
|
|
11
9
|
import { CheckboxProps } from "./Checkbox/Checkbox.types.js";
|
|
12
10
|
import { CollapseProps } from "./Collapse/Collapse.types.js";
|
|
13
|
-
import {
|
|
11
|
+
import { ExternalLinkProps, ExternalLinkThemeClass, ExternalLinkVariant, externalLinkThemeClasses } from "./ExternalLink/ExternalLink.types.js";
|
|
12
|
+
import { TriggerWithDropdownProps } from "./TriggerWithDropdown/TriggerWithDropdown.types.js";
|
|
14
13
|
import { ModalProps, ModalSize, TitleIconPosition } from "./Modal/Modal.types.js";
|
|
15
14
|
import { ProgressBarProps, ProgressIndicatorProps } from "./ProgressBar/ProgressBar.types.js";
|
|
16
15
|
import { SeeqActionDropdownItems, SeeqActionDropdownProps } from "./SeeqActionDropdown/SeeqActionDropdown.types.js";
|
|
@@ -19,12 +18,14 @@ import { SliderProps } from "./Slider/Slider.types.js";
|
|
|
19
18
|
import { SvgIconProps, SvgIconType, svgIconTypes } from "./SvgIcon/SvgIcon.types.js";
|
|
20
19
|
import { TabsProps } from "./Tabs/Tabs.types.js";
|
|
21
20
|
import { TextAreaProps } from "./TextArea/TextArea.types.js";
|
|
21
|
+
import { ToolbarButtonProps, ToolbarButtonVariant, toolbarButtonVariants } from "./ToolbarButton/ToolbarButton.types.js";
|
|
22
22
|
import { QTipDataAttributes } from "./Tooltip/QTip.types.js";
|
|
23
23
|
import { DimensionStyle, InputLengthStyleProps, TextFieldProps } from "./TextField/TextField.types.js";
|
|
24
|
+
import { AppendedProps, InputGroupProps } from "./InputGroup/InputGroup.types.js";
|
|
24
25
|
import { ButtonWithDropdownProps, DropdownItems, DropdownProps, DropdownSubItem } from "./ButtonWithDropdown/ButtonWithDropdown.types.js";
|
|
25
26
|
|
|
26
27
|
//#region src/types.d.ts
|
|
27
28
|
type InputGroupPlacement = 'left' | 'right' | undefined;
|
|
28
29
|
type FormControlElement = HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement;
|
|
29
30
|
//#endregion
|
|
30
|
-
export { AccordionProps, AlertProps, AppendedProps, ButtonGroupProps, ButtonProps, ButtonSize, ButtonType, ButtonVariant, ButtonWithDropdownProps, ButtonWithPopoverProps, CarouselProps, CheckboxProps, CollapseProps, DEFAULT_TOOL_TIP_DELAY, DimensionStyle, DropdownItems, DropdownProps, DropdownSubItem, 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, iconPositions, iconTypes, svgIconTypes, toolbarButtonVariants, tooltipPositions };
|
|
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 };
|
package/dist/styles.css
CHANGED
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
--tw-radius-sm: 0.25rem;
|
|
53
53
|
--tw-radius-md: 0.375rem;
|
|
54
54
|
--tw-radius-lg: 0.5rem;
|
|
55
|
-
--tw-radius-
|
|
55
|
+
--tw-radius-3xl: 1.5rem;
|
|
56
56
|
--tw-ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
57
57
|
--tw-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
58
58
|
--tw-animate-spin: spin 1s linear infinite;
|
|
@@ -355,6 +355,9 @@
|
|
|
355
355
|
.tw\:mb-0 {
|
|
356
356
|
margin-bottom: calc(var(--tw-spacing) * 0);
|
|
357
357
|
}
|
|
358
|
+
.tw\:mb-1 {
|
|
359
|
+
margin-bottom: calc(var(--tw-spacing) * 1);
|
|
360
|
+
}
|
|
358
361
|
.tw\:mb-2 {
|
|
359
362
|
margin-bottom: calc(var(--tw-spacing) * 2);
|
|
360
363
|
}
|
|
@@ -382,6 +385,9 @@
|
|
|
382
385
|
.tw\:ml-1\.5 {
|
|
383
386
|
margin-left: calc(var(--tw-spacing) * 1.5);
|
|
384
387
|
}
|
|
388
|
+
.tw\:ml-2 {
|
|
389
|
+
margin-left: calc(var(--tw-spacing) * 2);
|
|
390
|
+
}
|
|
385
391
|
.tw\:ml-4 {
|
|
386
392
|
margin-left: calc(var(--tw-spacing) * 4);
|
|
387
393
|
}
|
|
@@ -668,6 +674,9 @@
|
|
|
668
674
|
.tw\:flex-wrap {
|
|
669
675
|
flex-wrap: wrap;
|
|
670
676
|
}
|
|
677
|
+
.tw\:items-baseline {
|
|
678
|
+
align-items: baseline;
|
|
679
|
+
}
|
|
671
680
|
.tw\:items-center {
|
|
672
681
|
align-items: center;
|
|
673
682
|
}
|
|
@@ -704,6 +713,9 @@
|
|
|
704
713
|
.tw\:gap-4 {
|
|
705
714
|
gap: calc(var(--tw-spacing) * 4);
|
|
706
715
|
}
|
|
716
|
+
.tw\:gap-6 {
|
|
717
|
+
gap: calc(var(--tw-spacing) * 6);
|
|
718
|
+
}
|
|
707
719
|
.tw\:gap-8 {
|
|
708
720
|
gap: calc(var(--tw-spacing) * 8);
|
|
709
721
|
}
|
|
@@ -719,6 +731,9 @@
|
|
|
719
731
|
.tw\:rounded {
|
|
720
732
|
border-radius: 0.25rem;
|
|
721
733
|
}
|
|
734
|
+
.tw\:rounded-3xl {
|
|
735
|
+
border-radius: var(--tw-radius-3xl);
|
|
736
|
+
}
|
|
722
737
|
.tw\:rounded-\[0\.5rem\] {
|
|
723
738
|
border-radius: 0.5rem;
|
|
724
739
|
}
|
|
@@ -752,9 +767,6 @@
|
|
|
752
767
|
.tw\:rounded-sm {
|
|
753
768
|
border-radius: var(--tw-radius-sm);
|
|
754
769
|
}
|
|
755
|
-
.tw\:rounded-xl {
|
|
756
|
-
border-radius: var(--tw-radius-xl);
|
|
757
|
-
}
|
|
758
770
|
.tw\:rounded-t-md {
|
|
759
771
|
border-top-left-radius: var(--tw-radius-md);
|
|
760
772
|
border-top-right-radius: var(--tw-radius-md);
|
|
@@ -868,6 +880,9 @@
|
|
|
868
880
|
.tw\:border-sq-theme-icon {
|
|
869
881
|
border-color: var(--theme-icon);
|
|
870
882
|
}
|
|
883
|
+
.tw\:border-sq-tool-btn-border {
|
|
884
|
+
border-color: var(--sq-tool-btn-border);
|
|
885
|
+
}
|
|
871
886
|
.tw\:border-sq-warning {
|
|
872
887
|
border-color: var(--sq-status-warning-color);
|
|
873
888
|
}
|
|
@@ -952,6 +967,9 @@
|
|
|
952
967
|
.tw\:bg-sq-success\! {
|
|
953
968
|
background-color: var(--sqw-success-color) !important;
|
|
954
969
|
}
|
|
970
|
+
.tw\:bg-sq-surface {
|
|
971
|
+
background-color: #ffffff;
|
|
972
|
+
}
|
|
955
973
|
.tw\:bg-sq-text-color {
|
|
956
974
|
background-color: #3a3a3a;
|
|
957
975
|
}
|
|
@@ -988,6 +1006,9 @@
|
|
|
988
1006
|
.tw\:bg-yellow-500 {
|
|
989
1007
|
background-color: var(--tw-color-yellow-500);
|
|
990
1008
|
}
|
|
1009
|
+
.tw\:bg-cover {
|
|
1010
|
+
background-size: cover;
|
|
1011
|
+
}
|
|
991
1012
|
.tw\:fill-transparent {
|
|
992
1013
|
fill: transparent;
|
|
993
1014
|
}
|
|
@@ -1130,6 +1151,10 @@
|
|
|
1130
1151
|
.tw\:text-sq-15 {
|
|
1131
1152
|
font-size: 0.9375rem;
|
|
1132
1153
|
}
|
|
1154
|
+
.tw\:\!leading-normal {
|
|
1155
|
+
--tw-leading: var(--tw-leading-normal) !important;
|
|
1156
|
+
line-height: var(--tw-leading-normal) !important;
|
|
1157
|
+
}
|
|
1133
1158
|
.tw\:leading-4 {
|
|
1134
1159
|
--tw-leading: calc(var(--tw-spacing) * 4);
|
|
1135
1160
|
line-height: calc(var(--tw-spacing) * 4);
|
|
@@ -1253,6 +1278,12 @@
|
|
|
1253
1278
|
.tw\:not-italic {
|
|
1254
1279
|
font-style: normal;
|
|
1255
1280
|
}
|
|
1281
|
+
.tw\:underline {
|
|
1282
|
+
text-decoration-line: underline;
|
|
1283
|
+
}
|
|
1284
|
+
.tw\:underline-offset-2 {
|
|
1285
|
+
text-underline-offset: 2px;
|
|
1286
|
+
}
|
|
1256
1287
|
.tw\:placeholder-gray-400\! {
|
|
1257
1288
|
&::placeholder {
|
|
1258
1289
|
color: var(--tw-color-gray-400) !important;
|
|
@@ -1278,10 +1309,6 @@
|
|
|
1278
1309
|
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1279
1310
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1280
1311
|
}
|
|
1281
|
-
.tw\:shadow-md {
|
|
1282
|
-
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1283
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1284
|
-
}
|
|
1285
1312
|
.tw\:shadow-none {
|
|
1286
1313
|
--tw-shadow: 0 0 #0000;
|
|
1287
1314
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1300,6 +1327,11 @@
|
|
|
1300
1327
|
transition-timing-function: var(--tw-ease, var(--tw-default-transition-timing-function));
|
|
1301
1328
|
transition-duration: var(--tw-duration, var(--tw-default-transition-duration));
|
|
1302
1329
|
}
|
|
1330
|
+
.tw\:transition-colors {
|
|
1331
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
1332
|
+
transition-timing-function: var(--tw-ease, var(--tw-default-transition-timing-function));
|
|
1333
|
+
transition-duration: var(--tw-duration, var(--tw-default-transition-duration));
|
|
1334
|
+
}
|
|
1303
1335
|
.tw\:duration-150 {
|
|
1304
1336
|
--tw-duration: 150ms;
|
|
1305
1337
|
transition-duration: 150ms;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seeqdev/qomponents",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.229",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"react-dom": ">=19.0.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
+
"@eslint/js": "9.38.0",
|
|
33
34
|
"@ladle/react": "5.0.3",
|
|
34
35
|
"@react-types/shared": "3.30.0",
|
|
35
36
|
"@tailwindcss/forms": "0.5.3",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"autoprefixer": "10.4.17",
|
|
47
48
|
"color": "4.2.3",
|
|
48
49
|
"cross-env": "10.0.0",
|
|
50
|
+
"eslint": "9.39.4",
|
|
49
51
|
"identity-obj-proxy": "3.0.0",
|
|
50
52
|
"postcss-import": "16.0.0",
|
|
51
53
|
"prettier": "3.8.1",
|
|
@@ -96,8 +98,8 @@
|
|
|
96
98
|
"test:watch": "cross-env TZ=UTC LANG=en-US vitest watch",
|
|
97
99
|
"test:coverage": "cross-env TZ=UTC LANG=en-US vitest run --coverage",
|
|
98
100
|
"dev": "ladle serve",
|
|
99
|
-
"lint": "
|
|
100
|
-
"lint:fix": "
|
|
101
|
+
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
|
|
102
|
+
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
|
|
101
103
|
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,css}\"",
|
|
102
104
|
"format:write": "prettier --write \"**/*.{ts,tsx,js,json,css}\"",
|
|
103
105
|
"type:check": "tsgo --noEmit"
|