@seeqdev/qomponents 0.0.231 → 0.0.232
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 +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/src/Accordion/Accordion.d.ts +2 -2
- package/dist/src/Alert/Alert.d.ts +2 -2
- package/dist/src/Button/Button.d.ts +2 -2
- package/dist/src/ButtonGroup/ButtonGroup.d.ts +2 -2
- package/dist/src/ButtonWithPopover/ButtonWithPopover.d.ts +2 -2
- package/dist/src/Carousel/Carousel.d.ts +2 -2
- package/dist/src/Checkbox/Checkbox.d.ts +2 -2
- package/dist/src/Collapse/Collapse.d.ts +2 -2
- package/dist/src/ColorPickerControl/ColorPickerControl.d.ts +2 -2
- package/dist/src/EditorPanel/EditorPanel.d.ts +2 -2
- package/dist/src/ExternalLink/ExternalLink.d.ts +2 -2
- package/dist/src/Icon/Icon.d.ts +2 -2
- package/dist/src/LoadingIndicator/LoadingIndicator.d.ts +2 -2
- package/dist/src/Modal/Modal.d.ts +2 -2
- package/dist/src/ProgressBar/ProgressBar.d.ts +2 -2
- package/dist/src/SeeqActionDropdown/SeeqActionDropdown.d.ts +2 -2
- package/dist/src/SegmentedControl/SegmentedControl.d.ts +2 -2
- package/dist/src/Select/Select.d.ts +2 -2
- package/dist/src/Slider/Slider.d.ts +2 -2
- package/dist/src/SvgIcon/SvgIcon.d.ts +2 -2
- package/dist/src/Tabs/Tabs.d.ts +2 -2
- package/dist/src/TextArea/TextArea.d.ts +2 -2
- package/dist/src/TextField/TextField.d.ts +10 -10
- package/dist/src/ToolbarButton/ToolbarButton.d.ts +2 -2
- package/dist/src/Tooltip/Qtip.d.ts +2 -2
- package/dist/styles.css +34 -63
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AccordionProps } from "./Accordion.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime30 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) =>
|
|
13
|
+
}: AccordionProps) => react_jsx_runtime30.JSX.Element;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { Accordion as default };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AlertProps } from "./Alert.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime31 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) =>
|
|
18
|
+
}: AlertProps) => react_jsx_runtime31.JSX.Element;
|
|
19
19
|
//#endregion
|
|
20
20
|
export { Alert };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ButtonProps } from "./Button.types.js";
|
|
2
|
-
import * as
|
|
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) =>
|
|
36
|
+
}: ButtonComponentProps) => react_jsx_runtime25.JSX.Element;
|
|
37
37
|
//#endregion
|
|
38
38
|
export { Button as default };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ButtonGroupProps } from "./ButtonGroup.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime26 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/ButtonGroup/ButtonGroup.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* ButtonGroup.
|
|
7
7
|
*/
|
|
8
|
-
declare const ButtonGroup: (props: ButtonGroupProps) =>
|
|
8
|
+
declare const ButtonGroup: (props: ButtonGroupProps) => react_jsx_runtime26.JSX.Element;
|
|
9
9
|
//#endregion
|
|
10
10
|
export { ButtonGroup };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ButtonWithPopoverProps } from "./ButtonWithPopover.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime19 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/ButtonWithPopover/ButtonWithPopover.d.ts
|
|
5
5
|
declare const ButtonWithPopover: ({
|
|
@@ -26,6 +26,6 @@ declare const ButtonWithPopover: ({
|
|
|
26
26
|
isCloseOnContentClick,
|
|
27
27
|
isPortal,
|
|
28
28
|
...tooltipProps
|
|
29
|
-
}: ButtonWithPopoverProps) =>
|
|
29
|
+
}: ButtonWithPopoverProps) => react_jsx_runtime19.JSX.Element;
|
|
30
30
|
//#endregion
|
|
31
31
|
export { ButtonWithPopover as default };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CarouselProps } from "./Carousel.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime24 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) =>
|
|
25
|
+
}: CarouselProps) => react_jsx_runtime24.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
|
|
2
|
+
import * as react_jsx_runtime23 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) =>
|
|
8
|
+
declare const Checkbox: (props: CheckboxProps) => react_jsx_runtime23.JSX.Element;
|
|
9
9
|
//#endregion
|
|
10
10
|
export { Checkbox };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { CollapseProps } from "./Collapse.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime20 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) =>
|
|
8
|
+
}: CollapseProps) => react_jsx_runtime20.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
|
|
2
|
+
import * as react_jsx_runtime15 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):
|
|
15
|
+
}: ColorPickerControlProps): react_jsx_runtime15.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
|
|
2
|
+
import * as react_jsx_runtime22 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) =>
|
|
17
|
+
}: EditorPanelProps) => react_jsx_runtime22.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
|
|
2
|
+
import * as react_jsx_runtime21 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) =>
|
|
15
|
+
}: ExternalLinkProps) => react_jsx_runtime21.JSX.Element;
|
|
16
16
|
//#endregion
|
|
17
17
|
export { ExternalLink, ExternalLink as default };
|
package/dist/src/Icon/Icon.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IconProps } from "./Icon.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime13 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) =>
|
|
26
|
+
}: IconProps) => react_jsx_runtime13.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
|
|
2
|
+
import * as react_jsx_runtime14 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) =>
|
|
22
|
+
}: LoadingIndicatorProps) => react_jsx_runtime14.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
|
|
2
|
+
import * as react_jsx_runtime9 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/Modal/Modal.d.ts
|
|
5
5
|
|
|
@@ -45,6 +45,6 @@ declare const Modal: ({
|
|
|
45
45
|
onPointerDownOutside,
|
|
46
46
|
onInteractOutside,
|
|
47
47
|
ariaDescribedBy
|
|
48
|
-
}: ModalProps) =>
|
|
48
|
+
}: ModalProps) => react_jsx_runtime9.JSX.Element;
|
|
49
49
|
//#endregion
|
|
50
50
|
export { Modal as default };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ProgressBarProps } from "./ProgressBar.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime5 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) =>
|
|
10
|
+
}: ProgressBarProps) => react_jsx_runtime5.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
|
|
2
|
+
import * as react_jsx_runtime7 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) =>
|
|
23
|
+
}: SeeqActionDropdownProps) => react_jsx_runtime7.JSX.Element;
|
|
24
24
|
//#endregion
|
|
25
25
|
export { SeeqActionDropdown as default };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SegmentedControlProps } from "./SegmentedControl.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime12 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>):
|
|
13
|
+
}: SegmentedControlProps<T>): react_jsx_runtime12.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
|
|
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) =>
|
|
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
|
|
2
|
+
import * as react_jsx_runtime17 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) =>
|
|
23
|
+
}: SliderProps) => react_jsx_runtime17.JSX.Element;
|
|
24
24
|
//#endregion
|
|
25
25
|
export { Slider };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SvgIconProps } from "./SvgIcon.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime16 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) =>
|
|
32
|
+
}: SvgIconProps) => react_jsx_runtime16.JSX.Element;
|
|
33
33
|
//#endregion
|
|
34
34
|
export { SvgIcon as default };
|
package/dist/src/Tabs/Tabs.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TabsProps } from "./Tabs.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime18 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) =>
|
|
14
|
+
}: TabsProps) => react_jsx_runtime18.JSX.Element;
|
|
15
15
|
//#endregion
|
|
16
16
|
export { Tabs as default };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { TextAreaProps } from "./TextArea.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react8 from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/TextArea/TextArea.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* TextArea.
|
|
7
7
|
*/
|
|
8
|
-
declare const TextArea:
|
|
8
|
+
declare const TextArea: react8.ForwardRefExoticComponent<Omit<TextAreaProps, "ref"> & react8.RefAttributes<HTMLTextAreaElement>>;
|
|
9
9
|
//#endregion
|
|
10
10
|
export { TextArea };
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import { TooltipComponentProps } from "../Tooltip/Tooltip.types.js";
|
|
2
2
|
import { FormControlElement, InputGroupPlacement } from "../types.js";
|
|
3
3
|
import { InputLengthStyleProps } from "./TextField.types.js";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react0 from "react";
|
|
5
5
|
|
|
6
6
|
//#region src/TextField/TextField.d.ts
|
|
7
7
|
/**
|
|
8
8
|
* Textfield.
|
|
9
9
|
*/
|
|
10
|
-
declare const TextField:
|
|
10
|
+
declare const TextField: react0.ForwardRefExoticComponent<Omit<{
|
|
11
11
|
readonly?: boolean | undefined;
|
|
12
12
|
disabled?: boolean | undefined;
|
|
13
|
-
onChange?:
|
|
14
|
-
onPaste?:
|
|
15
|
-
onKeyUp?:
|
|
16
|
-
onKeyDown?:
|
|
17
|
-
onFocus?:
|
|
18
|
-
onBlur?:
|
|
13
|
+
onChange?: react0.ChangeEventHandler<FormControlElement> | undefined;
|
|
14
|
+
onPaste?: react0.ClipboardEventHandler<FormControlElement> | undefined;
|
|
15
|
+
onKeyUp?: react0.KeyboardEventHandler<FormControlElement> | undefined;
|
|
16
|
+
onKeyDown?: react0.KeyboardEventHandler<FormControlElement> | undefined;
|
|
17
|
+
onFocus?: react0.FocusEventHandler<HTMLInputElement> | undefined;
|
|
18
|
+
onBlur?: react0.FocusEventHandler<FormControlElement> | undefined;
|
|
19
19
|
id?: string | undefined;
|
|
20
20
|
name?: string | undefined;
|
|
21
21
|
size?: "lg" | "sm" | undefined;
|
|
@@ -24,7 +24,7 @@ declare const TextField: react1.ForwardRefExoticComponent<Omit<{
|
|
|
24
24
|
extraClassNames?: string | undefined;
|
|
25
25
|
type?: "email" | "number" | "password" | "text" | undefined;
|
|
26
26
|
testId?: string | undefined;
|
|
27
|
-
ref?:
|
|
27
|
+
ref?: react0.Ref<HTMLInputElement> | undefined;
|
|
28
28
|
inputGroup?: InputGroupPlacement;
|
|
29
29
|
step?: string | number | undefined;
|
|
30
30
|
showError?: boolean | undefined;
|
|
@@ -36,6 +36,6 @@ declare const TextField: react1.ForwardRefExoticComponent<Omit<{
|
|
|
36
36
|
inputHeight?: number | undefined;
|
|
37
37
|
min?: number | undefined;
|
|
38
38
|
max?: number | undefined;
|
|
39
|
-
} & TooltipComponentProps & InputLengthStyleProps, "ref"> &
|
|
39
|
+
} & TooltipComponentProps & InputLengthStyleProps, "ref"> & react0.RefAttributes<HTMLInputElement>>;
|
|
40
40
|
//#endregion
|
|
41
41
|
export { TextField };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ToolbarButtonProps } from "./ToolbarButton.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime4 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) =>
|
|
30
|
+
}: ToolbarButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
31
31
|
//#endregion
|
|
32
32
|
export { ToolbarButton };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime6 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/Tooltip/Qtip.d.ts
|
|
4
4
|
|
|
@@ -26,6 +26,6 @@ import * as react_jsx_runtime4 from "react/jsx-runtime";
|
|
|
26
26
|
*
|
|
27
27
|
* and enjoy beautiful & performant tooltips!
|
|
28
28
|
*/
|
|
29
|
-
declare const QTip: () =>
|
|
29
|
+
declare const QTip: () => react_jsx_runtime6.JSX.Element;
|
|
30
30
|
//#endregion
|
|
31
31
|
export { QTip };
|
package/dist/styles.css
CHANGED
|
@@ -1538,14 +1538,6 @@
|
|
|
1538
1538
|
outline-style: none;
|
|
1539
1539
|
}
|
|
1540
1540
|
}
|
|
1541
|
-
.tw\:hover\:-translate-y-px {
|
|
1542
|
-
&:hover {
|
|
1543
|
-
@media (hover: hover) {
|
|
1544
|
-
--tw-translate-y: -1px;
|
|
1545
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1546
|
-
}
|
|
1547
|
-
}
|
|
1548
|
-
}
|
|
1549
1541
|
.tw\:hover\:cursor-pointer {
|
|
1550
1542
|
&:hover {
|
|
1551
1543
|
@media (hover: hover) {
|
|
@@ -1665,14 +1657,6 @@
|
|
|
1665
1657
|
}
|
|
1666
1658
|
}
|
|
1667
1659
|
}
|
|
1668
|
-
.tw\:hover\:shadow-md {
|
|
1669
|
-
&:hover {
|
|
1670
|
-
@media (hover: hover) {
|
|
1671
|
-
--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));
|
|
1672
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1673
|
-
}
|
|
1674
|
-
}
|
|
1675
|
-
}
|
|
1676
1660
|
.tw\:focus\:z-30 {
|
|
1677
1661
|
&:focus {
|
|
1678
1662
|
z-index: 30;
|
|
@@ -3515,9 +3499,9 @@
|
|
|
3515
3499
|
--sq-insights-highlight: #0086e8;
|
|
3516
3500
|
--sq-insights-light: #cce7ff;
|
|
3517
3501
|
--sq-segmented-control-color: var(--sq-topic-dark);
|
|
3518
|
-
--sq-segmented-control-
|
|
3519
|
-
--sq-segmented-control-
|
|
3520
|
-
--sq-segmented-control-dark-
|
|
3502
|
+
--sq-segmented-control-background-active: #d9ecff;
|
|
3503
|
+
--sq-segmented-control-background-hover: #c7e3ff;
|
|
3504
|
+
--sq-segmented-control-dark-background-accent: var(--sq-topic-highlight);
|
|
3521
3505
|
.color_topic, .color_topic_dark {
|
|
3522
3506
|
--theme-darker: var(--sq-topic-darker);
|
|
3523
3507
|
--theme-dark: var(--sq-topic-dark);
|
|
@@ -3531,9 +3515,9 @@
|
|
|
3531
3515
|
--theme-item-row: var(--sq-topic-light);
|
|
3532
3516
|
--theme-highlight-background: var(--sq-topic-light);
|
|
3533
3517
|
--sq-segmented-control-color: #1f5f9f;
|
|
3534
|
-
--sq-segmented-control-
|
|
3535
|
-
--sq-segmented-control-
|
|
3536
|
-
--sq-segmented-control-dark-
|
|
3518
|
+
--sq-segmented-control-background-active: #d9ecff;
|
|
3519
|
+
--sq-segmented-control-background-hover: #c7e3ff;
|
|
3520
|
+
--sq-segmented-control-dark-background-accent: #41a5e1;
|
|
3537
3521
|
}
|
|
3538
3522
|
.color_analysis, .color_analysis_dark {
|
|
3539
3523
|
--theme-darker: var(--sq-analysis-darker);
|
|
@@ -3548,9 +3532,9 @@
|
|
|
3548
3532
|
--theme-item-row: var(--sq-analysis-light);
|
|
3549
3533
|
--theme-highlight-background: var(--sq-analysis-light);
|
|
3550
3534
|
--sq-segmented-control-color: var(--sq-analysis-dark);
|
|
3551
|
-
--sq-segmented-control-
|
|
3552
|
-
--sq-segmented-control-
|
|
3553
|
-
--sq-segmented-control-dark-
|
|
3535
|
+
--sq-segmented-control-background-active: var(--sq-analysis-light);
|
|
3536
|
+
--sq-segmented-control-background-hover: #dff2ee;
|
|
3537
|
+
--sq-segmented-control-dark-background-accent: var(--sq-analysis-highlight);
|
|
3554
3538
|
}
|
|
3555
3539
|
.color_datalab, .color_datalab_dark {
|
|
3556
3540
|
--theme-darker: var(--sq-datalab-darker);
|
|
@@ -3563,9 +3547,9 @@
|
|
|
3563
3547
|
--theme-footer-text: var(--sq-datalab-dark);
|
|
3564
3548
|
--theme-highlight-background: var(--sq-datalab-light);
|
|
3565
3549
|
--sq-segmented-control-color: #b95b22;
|
|
3566
|
-
--sq-segmented-control-
|
|
3567
|
-
--sq-segmented-control-
|
|
3568
|
-
--sq-segmented-control-dark-
|
|
3550
|
+
--sq-segmented-control-background-active: #ffe6d6;
|
|
3551
|
+
--sq-segmented-control-background-hover: #ffd9bf;
|
|
3552
|
+
--sq-segmented-control-dark-background-accent: #e58a52;
|
|
3569
3553
|
}
|
|
3570
3554
|
.color_vantage, .color_vantage_dark {
|
|
3571
3555
|
--theme-darker: var(--sq-vantage-darker);
|
|
@@ -3578,9 +3562,9 @@
|
|
|
3578
3562
|
--theme-footer-text: var(--sq-vantage-dark);
|
|
3579
3563
|
--theme-highlight-background: var(--sq-vantage-light);
|
|
3580
3564
|
--sq-segmented-control-color: var(--sq-vantage-dark);
|
|
3581
|
-
--sq-segmented-control-
|
|
3582
|
-
--sq-segmented-control-
|
|
3583
|
-
--sq-segmented-control-dark-
|
|
3565
|
+
--sq-segmented-control-background-active: var(--sq-vantage-light);
|
|
3566
|
+
--sq-segmented-control-background-hover: #c5addd;
|
|
3567
|
+
--sq-segmented-control-dark-background-accent: var(--sq-vantage-highlight);
|
|
3584
3568
|
}
|
|
3585
3569
|
.color_insights, .color_insights_dark {
|
|
3586
3570
|
--theme-darker: var(--sq-insights-darker);
|
|
@@ -3593,9 +3577,9 @@
|
|
|
3593
3577
|
--theme-footer-text: var(--sq-insights-dark);
|
|
3594
3578
|
--theme-highlight-background: var(--sq-insights-light);
|
|
3595
3579
|
--sq-segmented-control-color: var(--sq-insights-dark);
|
|
3596
|
-
--sq-segmented-control-
|
|
3597
|
-
--sq-segmented-control-
|
|
3598
|
-
--sq-segmented-control-dark-
|
|
3580
|
+
--sq-segmented-control-background-active: var(--sq-insights-light);
|
|
3581
|
+
--sq-segmented-control-background-hover: #b8dcff;
|
|
3582
|
+
--sq-segmented-control-dark-background-accent: var(--sq-insights-highlight);
|
|
3599
3583
|
}
|
|
3600
3584
|
--height-inputs: 34px;
|
|
3601
3585
|
--height-30: 30px;
|
|
@@ -3819,60 +3803,47 @@
|
|
|
3819
3803
|
}
|
|
3820
3804
|
@layer components {
|
|
3821
3805
|
.sq-segmented-control-pill {
|
|
3822
|
-
background-
|
|
3823
|
-
|
|
3824
|
-
color: var(--
|
|
3806
|
+
background-color: var(--sqw-white);
|
|
3807
|
+
background-image: none;
|
|
3808
|
+
border-color: var(--sqw-disabled-gray);
|
|
3809
|
+
color: var(--sqw-text-color);
|
|
3825
3810
|
}
|
|
3826
3811
|
.sq-segmented-control-pill--inactive:hover {
|
|
3827
|
-
background-
|
|
3828
|
-
border-color: var(--sq-segmented-control-color);
|
|
3829
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3830
|
-
border-color: color-mix(in srgb, var(--sq-segmented-control-color) 40%, transparent);
|
|
3831
|
-
}
|
|
3812
|
+
background-color: var(--sqw-light-gray);
|
|
3832
3813
|
color: var(--sqw-text-color);
|
|
3833
3814
|
}
|
|
3834
3815
|
.sq-segmented-control-pill.sq-segmented-control-pill--active {
|
|
3835
|
-
background-
|
|
3816
|
+
background-color: var(--sq-segmented-control-background-active);
|
|
3836
3817
|
border-color: var(--sq-segmented-control-color);
|
|
3837
|
-
box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
|
|
3838
3818
|
color: var(--sqw-text-color);
|
|
3839
3819
|
}
|
|
3840
3820
|
.sq-segmented-control-pill.sq-segmented-control-pill--active:hover {
|
|
3841
|
-
background-
|
|
3842
|
-
box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
|
|
3821
|
+
background-color: var(--sq-segmented-control-background-hover);
|
|
3843
3822
|
color: var(--sqw-text-color);
|
|
3844
3823
|
}
|
|
3845
3824
|
.tw-dark .sq-segmented-control-pill {
|
|
3846
|
-
background-
|
|
3847
|
-
|
|
3848
|
-
color: var(--
|
|
3825
|
+
background-color: var(--sq-tools-background-dark);
|
|
3826
|
+
background-image: none;
|
|
3827
|
+
border-color: var(--sq-disabled-gray-dark);
|
|
3828
|
+
color: var(--sq-text-color-dark);
|
|
3849
3829
|
}
|
|
3850
3830
|
.tw-dark .sq-segmented-control-pill--inactive:hover {
|
|
3851
|
-
background-
|
|
3852
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3853
|
-
background-image: linear-gradient( 0deg, color-mix(in srgb, var(--sq-segmented-control-dark-gradient-start) 30%, transparent) 0%, transparent 100% ), linear-gradient(180deg, #1f2937 0%, #151b23 100%);
|
|
3854
|
-
}
|
|
3855
|
-
border-color: var(--theme-highlight);
|
|
3856
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3857
|
-
border-color: color-mix(in srgb, var(--theme-highlight) 60%, transparent);
|
|
3858
|
-
}
|
|
3831
|
+
background-color: var(--sq-light-gray-dark);
|
|
3859
3832
|
color: var(--sqw-white);
|
|
3860
3833
|
}
|
|
3861
3834
|
.tw-dark .sq-segmented-control-pill.sq-segmented-control-pill--active {
|
|
3862
|
-
background-
|
|
3835
|
+
background-color: var(--sq-segmented-control-dark-background-accent);
|
|
3863
3836
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3864
|
-
background-
|
|
3837
|
+
background-color: color-mix( in srgb, var(--sq-segmented-control-dark-background-accent) 54%, var(--sq-tools-background-dark) );
|
|
3865
3838
|
}
|
|
3866
3839
|
border-color: var(--theme-highlight);
|
|
3867
|
-
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
|
|
3868
3840
|
color: var(--sqw-white);
|
|
3869
3841
|
}
|
|
3870
3842
|
.tw-dark .sq-segmented-control-pill.sq-segmented-control-pill--active:hover {
|
|
3871
|
-
background-
|
|
3843
|
+
background-color: var(--sq-segmented-control-dark-background-accent);
|
|
3872
3844
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3873
|
-
background-
|
|
3845
|
+
background-color: color-mix( in srgb, var(--sq-segmented-control-dark-background-accent) 64%, var(--sq-tools-background-dark) );
|
|
3874
3846
|
}
|
|
3875
|
-
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
|
|
3876
3847
|
color: var(--sqw-white);
|
|
3877
3848
|
}
|
|
3878
3849
|
}
|