@orfium/ictinus 5.24.0 → 5.26.0
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.js +7890 -7644
- package/dist/index.umd.cjs +66 -54
- package/dist/src/components/Button/Button.d.ts +1 -1
- package/dist/src/components/Button/Button.stories.d.ts +1 -1
- package/dist/src/components/ButtonBase/ButtonBase.d.ts +1 -1
- package/dist/src/components/Drawer/Drawer.stories.d.ts +6 -0
- package/dist/src/components/Filter/Filter.stories.d.ts +6 -0
- package/dist/src/components/Filter/Filter.types.d.ts +2 -0
- package/dist/src/components/Filter/components/FilterButton/FilterButton.d.ts +1 -1
- package/dist/src/components/Filter/components/FilterMenu/components/FilterSearchField/FilterSearchField.d.ts +1 -1
- package/dist/src/components/Link/Link.tokens.d.ts +1 -1
- package/dist/src/components/List/components/ListItemWrapper/ListItemWrapper.style.d.ts +1 -1
- package/dist/src/components/Modal/Modal.stories.d.ts +15 -0
- package/dist/src/components/NumberField/NumberField.d.ts +1 -1
- package/dist/src/components/NumberField/NumberField.stories.d.ts +1 -1
- package/dist/src/components/Search/Search.d.ts +1 -1
- package/dist/src/components/Search/Search.stories.d.ts +1 -1
- package/dist/src/components/Search/Search.style.d.ts +28 -28
- package/dist/src/components/Select/Select.stories.d.ts +6 -0
- package/dist/src/components/Select/components/SelectMenu/SelectMenu.d.ts +3 -4
- package/dist/src/components/Select/components/SelectMenu/SelectMenu.style.d.ts +4 -3
- package/dist/src/components/TextInputBase/TextInputBase.d.ts +1 -1
- package/dist/src/components/Toast/Toast.d.ts +11 -22
- package/dist/src/components/Toast/Toast.stories.d.ts +28 -0
- package/dist/src/components/Toast/Toast.style.d.ts +12 -10
- package/dist/src/components/Toast/Toast.types.d.ts +44 -0
- package/dist/src/components/Toast/index.d.ts +1 -2
- package/dist/src/components/ToastV4/ToastV4.d.ts +28 -0
- package/dist/src/components/ToastV4/ToastV4.style.d.ts +12 -0
- package/dist/src/components/ToastV4/ToastV4.test.d.ts +1 -0
- package/dist/src/components/ToastV4/index.d.ts +2 -0
- package/dist/src/components/utils/Overlay/Overlay.d.ts +20 -0
- package/dist/src/components/utils/Overlay/index.d.ts +1 -0
- package/dist/src/components/utils/PositionInScreen/PositionInScreen.d.ts +5 -2
- package/dist/src/components/utils/PositionInScreen/hooks.d.ts +9 -5
- package/dist/src/components/utils/PositionInScreen/index.d.ts +1 -1
- package/dist/src/hooks/useOverlayStack.d.ts +13 -0
- package/dist/src/index.d.ts +74 -75
- package/package.json +1 -1
- package/dist/src/components/utils/PositionInScreen/utils.d.ts +0 -1
|
@@ -27,7 +27,7 @@ declare const Button: React.ForwardRefExoticComponent<{
|
|
|
27
27
|
sx?: {
|
|
28
28
|
container?: import('@emotion/serialize').CSSObject;
|
|
29
29
|
};
|
|
30
|
-
} & TestProps & import('../ButtonBase').EventButtonProps & Partial<Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "type" | "
|
|
30
|
+
} & TestProps & import('../ButtonBase').EventButtonProps & Partial<Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "type" | "onClick" | "onBlur" | "css" | "disabled" | "size">> & {
|
|
31
31
|
/** An optional icon to put on the right of the button */
|
|
32
32
|
iconRightName?: AcceptedIconNames;
|
|
33
33
|
/** An optional icon to put on the left of the button */
|
|
@@ -12,7 +12,7 @@ declare const _default: {
|
|
|
12
12
|
sx?: {
|
|
13
13
|
container?: import('@emotion/serialize').CSSObject;
|
|
14
14
|
};
|
|
15
|
-
} & import('../..').TestProps & import('../ButtonBase').EventButtonProps & Partial<Omit<import('react').ButtonHTMLAttributes<HTMLButtonElement>, "type" | "
|
|
15
|
+
} & import('../..').TestProps & import('../ButtonBase').EventButtonProps & Partial<Omit<import('react').ButtonHTMLAttributes<HTMLButtonElement>, "type" | "onClick" | "onBlur" | "css" | "disabled" | "size">> & {
|
|
16
16
|
iconRightName?: import('../Icon').AcceptedIconNames;
|
|
17
17
|
iconLeftName?: import('../Icon').AcceptedIconNames;
|
|
18
18
|
avatar?: Pick<import('../Avatar').AvatarProps, "src" | "color"> & {
|
|
@@ -53,5 +53,5 @@ declare const ButtonBase: React.ForwardRefExoticComponent<{
|
|
|
53
53
|
sx?: {
|
|
54
54
|
container?: CSSObject;
|
|
55
55
|
};
|
|
56
|
-
} & TestProps & EventButtonProps & Partial<Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "type" | "
|
|
56
|
+
} & TestProps & EventButtonProps & Partial<Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "type" | "onClick" | "onBlur" | "css" | "disabled" | "size">> & React.RefAttributes<HTMLButtonElement>>;
|
|
57
57
|
export default ButtonBase;
|
|
@@ -79,6 +79,12 @@ export declare const MoreExamples: {
|
|
|
79
79
|
};
|
|
80
80
|
};
|
|
81
81
|
};
|
|
82
|
+
export declare const WithOverlays: {
|
|
83
|
+
render: () => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
84
|
+
play: ({ canvasElement }: {
|
|
85
|
+
canvasElement: any;
|
|
86
|
+
}) => Promise<void>;
|
|
87
|
+
};
|
|
82
88
|
export declare const Playground: {
|
|
83
89
|
render: (args: any) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
84
90
|
name: string;
|
|
@@ -9,6 +9,9 @@ declare const _default: {
|
|
|
9
9
|
name: string;
|
|
10
10
|
url: string;
|
|
11
11
|
}[];
|
|
12
|
+
chromatic: {
|
|
13
|
+
delay: number;
|
|
14
|
+
};
|
|
12
15
|
};
|
|
13
16
|
args: {
|
|
14
17
|
singleFilterLabel: string;
|
|
@@ -30,6 +33,9 @@ export declare const PresetFilter: {
|
|
|
30
33
|
disable: boolean;
|
|
31
34
|
};
|
|
32
35
|
};
|
|
36
|
+
play: ({ canvasElement }: {
|
|
37
|
+
canvasElement: any;
|
|
38
|
+
}) => Promise<void>;
|
|
33
39
|
};
|
|
34
40
|
export declare const AddedFilter: {
|
|
35
41
|
render: () => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -61,6 +61,8 @@ export type FilterProps = {
|
|
|
61
61
|
isVirtualized?: boolean;
|
|
62
62
|
/** Whether the multi-filter should have a select-all option*/
|
|
63
63
|
hasSelectAllOption?: boolean;
|
|
64
|
+
/** Whether to apply a wrapper width to the filter menu. */
|
|
65
|
+
hasWrapperWidth?: boolean;
|
|
64
66
|
/** In case of custom filter menu */
|
|
65
67
|
children?: React.FC<FilterChildrenProps>;
|
|
66
68
|
} & FilterAsyncSearchProps & TestProps & (SingleFilterProps | MultiFilterProps);
|
|
@@ -19,5 +19,5 @@ export declare const FilterButton: React.ForwardRefExoticComponent<Pick<FilterPr
|
|
|
19
19
|
isActive?: boolean;
|
|
20
20
|
isPopulated?: boolean;
|
|
21
21
|
moreFilters?: number;
|
|
22
|
-
} & TestProps & EventButtonProps & Partial<Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "type" | "
|
|
22
|
+
} & TestProps & EventButtonProps & Partial<Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "type" | "onClick" | "onBlur" | "css" | "disabled" | "size">> & React.RefAttributes<HTMLButtonElement>>;
|
|
23
23
|
export default FilterButton;
|
|
@@ -3,4 +3,4 @@ import { DotKeys } from '../../theme/tokens/utils';
|
|
|
3
3
|
import { Theme } from '../../theme';
|
|
4
4
|
|
|
5
5
|
export type LinkTokens = DotKeys<typeof link>;
|
|
6
|
-
export declare const getLinkTokens: (theme: Theme) => (path: "
|
|
6
|
+
export declare const getLinkTokens: (theme: Theme) => (path: "block.1" | "block.2" | "block.3" | "inline.1" | "inline.2" | "inline.3", fn?: (val: string) => unknown) => any;
|
|
@@ -6,4 +6,4 @@ export declare const ListItemWrapperStyled: import('@emotion/styled').StyledComp
|
|
|
6
6
|
} & {
|
|
7
7
|
rowSize?: ListRowSize;
|
|
8
8
|
isDisabled: boolean;
|
|
9
|
-
}, Pick<import('react').DetailedHTMLProps<import('react').LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "color" | "
|
|
9
|
+
}, Pick<import('react').DetailedHTMLProps<import('react').LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "color" | "onClick" | "children" | "slot" | "style" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "data-tooltip-id" | "data-tooltip-place" | "data-tooltip-content" | "data-tooltip-html" | "data-tooltip-variant" | "data-tooltip-offset" | "data-tooltip-wrapper" | "data-tooltip-events" | "data-tooltip-position-strategy" | "data-tooltip-delay-show" | "data-tooltip-delay-hide" | "data-tooltip-float" | "data-tooltip-hidden" | "data-tooltip-class-name" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "value" | "ref" | "key" | "css">, {}>;
|
|
@@ -2,6 +2,9 @@ declare const _default: {
|
|
|
2
2
|
title: string;
|
|
3
3
|
component: import('react').FCC<import('./Modal').ModalProps>;
|
|
4
4
|
parameters: {
|
|
5
|
+
chromatic: {
|
|
6
|
+
delay: number;
|
|
7
|
+
};
|
|
5
8
|
design: {
|
|
6
9
|
type: string;
|
|
7
10
|
name: string;
|
|
@@ -25,6 +28,9 @@ export declare const Modal: {
|
|
|
25
28
|
include: string[];
|
|
26
29
|
};
|
|
27
30
|
};
|
|
31
|
+
play: ({ canvasElement }: {
|
|
32
|
+
canvasElement: any;
|
|
33
|
+
}) => Promise<void>;
|
|
28
34
|
};
|
|
29
35
|
export declare const ModalContent: {
|
|
30
36
|
render: (args: any) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -34,4 +40,13 @@ export declare const ModalContent: {
|
|
|
34
40
|
include: string[];
|
|
35
41
|
};
|
|
36
42
|
};
|
|
43
|
+
play: ({ canvasElement }: {
|
|
44
|
+
canvasElement: any;
|
|
45
|
+
}) => Promise<void>;
|
|
46
|
+
};
|
|
47
|
+
export declare const WithOverlays: {
|
|
48
|
+
render: () => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
49
|
+
play: ({ canvasElement }: {
|
|
50
|
+
canvasElement: any;
|
|
51
|
+
}) => Promise<void>;
|
|
37
52
|
};
|
|
@@ -17,7 +17,7 @@ export type NumberFieldProps = Omit<TextFieldProps, 'mask' | 'maskChar' | 'value
|
|
|
17
17
|
/** The largest value allowed for the input. */
|
|
18
18
|
maxValue?: number;
|
|
19
19
|
};
|
|
20
|
-
declare const NumberField: React.ForwardRefExoticComponent<Omit<TextFieldProps, "
|
|
20
|
+
declare const NumberField: React.ForwardRefExoticComponent<Omit<TextFieldProps, "mask" | "onChange" | "value" | "isMulti" | "onMultiValueDelete" | "onMultiValueClearAll" | "maskChar"> & {
|
|
21
21
|
/** Callback fired when the `input` is changed. */
|
|
22
22
|
onChange?: (value: number) => void;
|
|
23
23
|
/** The value of the `input` element. */
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
title: string;
|
|
3
|
-
component: import('react').ForwardRefExoticComponent<Omit<import('../TextField').TextFieldProps, "
|
|
3
|
+
component: import('react').ForwardRefExoticComponent<Omit<import('../TextField').TextFieldProps, "mask" | "onChange" | "value" | "isMulti" | "onMultiValueDelete" | "onMultiValueClearAll" | "maskChar"> & {
|
|
4
4
|
onChange?: (value: number) => void;
|
|
5
5
|
value?: number;
|
|
6
6
|
formatOptions?: Intl.NumberFormatOptions;
|
|
@@ -3,5 +3,5 @@ import { default as React } from 'react';
|
|
|
3
3
|
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
|
|
4
4
|
onClear: () => void;
|
|
5
5
|
children?: React.FC<import('../Filter').FilterChildrenProps>;
|
|
6
|
-
} & Omit<import('../TextField').TextFieldProps, "children" | "label" | "mask" | "status" | "size" | "isInteractive" | "
|
|
6
|
+
} & Omit<import('../TextField').TextFieldProps, "children" | "label" | "mask" | "status" | "size" | "isInteractive" | "suffix" | "isMulti" | "tags" | "onMultiValueDelete" | "onMultiValueClearAll"> & import('./Search.types').SearchFilterConfig & React.RefAttributes<HTMLInputElement>>>;
|
|
7
7
|
export default _default;
|
|
@@ -3,7 +3,7 @@ declare const _default: {
|
|
|
3
3
|
component: import('react').MemoExoticComponent<import('react').ForwardRefExoticComponent<{
|
|
4
4
|
onClear: () => void;
|
|
5
5
|
children?: React.FC<import('../Filter').FilterChildrenProps>;
|
|
6
|
-
} & Omit<import('../TextField').TextFieldProps, "children" | "label" | "mask" | "status" | "size" | "isInteractive" | "
|
|
6
|
+
} & Omit<import('../TextField').TextFieldProps, "children" | "label" | "mask" | "status" | "size" | "isInteractive" | "suffix" | "isMulti" | "tags" | "onMultiValueDelete" | "onMultiValueClearAll"> & import('./Search.types').SearchFilterConfig & import('react').RefAttributes<HTMLInputElement>>>;
|
|
7
7
|
parameters: {
|
|
8
8
|
design: {
|
|
9
9
|
type: string;
|
|
@@ -158,7 +158,7 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
158
158
|
fontVariantNumeric?: readonly string[] | import("csstype").Property.FontVariantNumeric | readonly import("csstype").Property.FontVariantNumeric[];
|
|
159
159
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition>[] | readonly import("csstype").Property.FontVariantPosition[];
|
|
160
160
|
fontVariationSettings?: readonly string[] | import("csstype").Property.FontVariationSettings | readonly import("csstype").Property.FontVariationSettings[];
|
|
161
|
-
fontWeight?: import("csstype").Property.FontWeight | readonly NonNullable<import("csstype").Property.FontWeight>[] | readonly ("bold" | "normal" |
|
|
161
|
+
fontWeight?: import("csstype").Property.FontWeight | readonly NonNullable<import("csstype").Property.FontWeight>[] | readonly ((string & {}) | "bold" | "normal" | import('csstype').Globals | "bolder" | "lighter")[];
|
|
162
162
|
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust>[] | readonly import("csstype").Property.ForcedColorAdjust[];
|
|
163
163
|
gridAutoColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number>>[];
|
|
164
164
|
gridAutoFlow?: readonly string[] | import("csstype").Property.GridAutoFlow | readonly import("csstype").Property.GridAutoFlow[];
|
|
@@ -178,7 +178,7 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
178
178
|
imageOrientation?: readonly string[] | import("csstype").Property.ImageOrientation | readonly import("csstype").Property.ImageOrientation[];
|
|
179
179
|
imageRendering?: import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering>[] | readonly import("csstype").Property.ImageRendering[];
|
|
180
180
|
imageResolution?: readonly string[] | import("csstype").Property.ImageResolution | readonly import("csstype").Property.ImageResolution[];
|
|
181
|
-
initialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter>[] | readonly (
|
|
181
|
+
initialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter>[] | readonly ((string & {}) | "normal" | import('csstype').Globals)[];
|
|
182
182
|
inlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number>>[];
|
|
183
183
|
inputSecurity?: import("csstype").Property.InputSecurity | readonly NonNullable<import("csstype").Property.InputSecurity>[] | readonly import("csstype").Property.InputSecurity[];
|
|
184
184
|
insetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number>>[];
|
|
@@ -383,9 +383,9 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
383
383
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap>[] | readonly import("csstype").Property.WordWrap[];
|
|
384
384
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode>[] | readonly import("csstype").Property.WritingMode[];
|
|
385
385
|
zIndex: number | (string & {}) | "inherit" | "initial" | "unset" | "auto" | "-moz-initial" | "revert" | "revert-layer" | readonly NonNullable<import("csstype").Property.ZIndex>[];
|
|
386
|
-
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom>[] | readonly (
|
|
386
|
+
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom>[] | readonly ((string & {}) | "reset" | "normal" | import('csstype').Globals)[];
|
|
387
387
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals>[] | readonly import('csstype').Globals[];
|
|
388
|
-
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" |
|
|
388
|
+
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" | (string & {}) | "normal" | "reverse" | "auto" | import('csstype').Globals | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[];
|
|
389
389
|
animationRange?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRange<string | number> | readonly NonNullable<import("csstype").Property.AnimationRange<string | number>>[];
|
|
390
390
|
background: string | number | readonly NonNullable<import("csstype").Property.Background<string | number>>[];
|
|
391
391
|
backgroundPosition?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPosition<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number>>[];
|
|
@@ -395,7 +395,7 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
395
395
|
borderBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockStart<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number>>[];
|
|
396
396
|
borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number>>[];
|
|
397
397
|
borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[];
|
|
398
|
-
borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("
|
|
398
|
+
borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("none" | (string & {}) | "repeat" | "stretch" | import('csstype').Globals | "round" | "space")[];
|
|
399
399
|
borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number>>[];
|
|
400
400
|
borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number>>[];
|
|
401
401
|
borderInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineStart<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number>>[];
|
|
@@ -428,7 +428,7 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
428
428
|
marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number>>[];
|
|
429
429
|
marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number>>[];
|
|
430
430
|
mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number>>[];
|
|
431
|
-
maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder>[] | readonly ("
|
|
431
|
+
maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder>[] | readonly ("none" | (string & {}) | "repeat" | "stretch" | import('csstype').Globals | "round" | "space" | "alpha" | "luminance")[];
|
|
432
432
|
motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number>>[];
|
|
433
433
|
offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number>>[];
|
|
434
434
|
outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number>>[];
|
|
@@ -612,7 +612,7 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
612
612
|
WebkitFontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[];
|
|
613
613
|
WebkitHyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[];
|
|
614
614
|
WebkitHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens>[] | readonly import("csstype").Property.Hyphens[];
|
|
615
|
-
WebkitInitialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter>[] | readonly (
|
|
615
|
+
WebkitInitialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter>[] | readonly ((string & {}) | "normal" | import('csstype').Globals)[];
|
|
616
616
|
WebkitJustifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[];
|
|
617
617
|
WebkitLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak>[] | readonly import("csstype").Property.LineBreak[];
|
|
618
618
|
WebkitLineClamp?: readonly ("none" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.WebkitLineClamp | readonly NonNullable<import("csstype").Property.WebkitLineClamp>[];
|
|
@@ -672,8 +672,8 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
672
672
|
WebkitUserModify?: import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify>[] | readonly import("csstype").Property.WebkitUserModify[];
|
|
673
673
|
WebkitUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect>[] | readonly import("csstype").Property.UserSelect[];
|
|
674
674
|
WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode>[] | readonly import("csstype").Property.WritingMode[];
|
|
675
|
-
MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" |
|
|
676
|
-
MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("
|
|
675
|
+
MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" | (string & {}) | "normal" | "reverse" | "auto" | import('csstype').Globals | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[];
|
|
676
|
+
MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("none" | (string & {}) | "repeat" | "stretch" | import('csstype').Globals | "round" | "space")[];
|
|
677
677
|
MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number>>[];
|
|
678
678
|
MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number>>[];
|
|
679
679
|
MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number>>[];
|
|
@@ -684,16 +684,16 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
684
684
|
msScrollSnapX?: readonly string[] | import("csstype").Property.MsScrollSnapX | readonly import("csstype").Property.MsScrollSnapX[];
|
|
685
685
|
msScrollSnapY?: readonly string[] | import("csstype").Property.MsScrollSnapY | readonly import("csstype").Property.MsScrollSnapY[];
|
|
686
686
|
msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[];
|
|
687
|
-
WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" |
|
|
687
|
+
WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" | (string & {}) | "normal" | "reverse" | "auto" | import('csstype').Globals | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[];
|
|
688
688
|
WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number>>[];
|
|
689
|
-
WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("
|
|
689
|
+
WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("none" | (string & {}) | "repeat" | "stretch" | import('csstype').Globals | "round" | "space")[];
|
|
690
690
|
WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number>>[];
|
|
691
691
|
WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number>>[];
|
|
692
692
|
WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number>>[];
|
|
693
693
|
WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number>>[];
|
|
694
694
|
WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[];
|
|
695
695
|
WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number>>[];
|
|
696
|
-
WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder>[] | readonly ("
|
|
696
|
+
WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder>[] | readonly ("none" | (string & {}) | "repeat" | "stretch" | import('csstype').Globals | "round" | "space" | "alpha" | "luminance")[];
|
|
697
697
|
WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[];
|
|
698
698
|
WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number>>[];
|
|
699
699
|
WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[];
|
|
@@ -774,7 +774,7 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
774
774
|
MozTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[];
|
|
775
775
|
MozUserInput?: import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput>[] | readonly import("csstype").Property.MozUserInput[];
|
|
776
776
|
msImeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode>[] | readonly import("csstype").Property.ImeMode[];
|
|
777
|
-
OAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" |
|
|
777
|
+
OAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" | (string & {}) | "normal" | "reverse" | "auto" | import('csstype').Globals | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[];
|
|
778
778
|
OAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[];
|
|
779
779
|
OAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[];
|
|
780
780
|
OAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[];
|
|
@@ -784,7 +784,7 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
784
784
|
OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[];
|
|
785
785
|
OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[];
|
|
786
786
|
OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number>>[] | readonly (string | (string & {}))[];
|
|
787
|
-
OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("
|
|
787
|
+
OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("none" | (string & {}) | "repeat" | "stretch" | import('csstype').Globals | "round" | "space")[];
|
|
788
788
|
OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit>[] | readonly import("csstype").Property.ObjectFit[];
|
|
789
789
|
OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number>>[];
|
|
790
790
|
OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number>>[];
|
|
@@ -1125,7 +1125,7 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
1125
1125
|
fontVariantNumeric?: readonly string[] | import("csstype").Property.FontVariantNumeric | readonly import("csstype").Property.FontVariantNumeric[];
|
|
1126
1126
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition>[] | readonly import("csstype").Property.FontVariantPosition[];
|
|
1127
1127
|
fontVariationSettings?: readonly string[] | import("csstype").Property.FontVariationSettings | readonly import("csstype").Property.FontVariationSettings[];
|
|
1128
|
-
fontWeight?: import("csstype").Property.FontWeight | readonly NonNullable<import("csstype").Property.FontWeight>[] | readonly ("bold" | "normal" |
|
|
1128
|
+
fontWeight?: import("csstype").Property.FontWeight | readonly NonNullable<import("csstype").Property.FontWeight>[] | readonly ((string & {}) | "bold" | "normal" | import('csstype').Globals | "bolder" | "lighter")[];
|
|
1129
1129
|
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust>[] | readonly import("csstype").Property.ForcedColorAdjust[];
|
|
1130
1130
|
gridAutoColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number>>[];
|
|
1131
1131
|
gridAutoFlow?: readonly string[] | import("csstype").Property.GridAutoFlow | readonly import("csstype").Property.GridAutoFlow[];
|
|
@@ -1145,7 +1145,7 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
1145
1145
|
imageOrientation?: readonly string[] | import("csstype").Property.ImageOrientation | readonly import("csstype").Property.ImageOrientation[];
|
|
1146
1146
|
imageRendering?: import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering>[] | readonly import("csstype").Property.ImageRendering[];
|
|
1147
1147
|
imageResolution?: readonly string[] | import("csstype").Property.ImageResolution | readonly import("csstype").Property.ImageResolution[];
|
|
1148
|
-
initialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter>[] | readonly (
|
|
1148
|
+
initialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter>[] | readonly ((string & {}) | "normal" | import('csstype').Globals)[];
|
|
1149
1149
|
inlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number>>[];
|
|
1150
1150
|
inputSecurity?: import("csstype").Property.InputSecurity | readonly NonNullable<import("csstype").Property.InputSecurity>[] | readonly import("csstype").Property.InputSecurity[];
|
|
1151
1151
|
insetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number>>[];
|
|
@@ -1350,9 +1350,9 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
1350
1350
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap>[] | readonly import("csstype").Property.WordWrap[];
|
|
1351
1351
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode>[] | readonly import("csstype").Property.WritingMode[];
|
|
1352
1352
|
zIndex?: readonly ((string & {}) | "auto" | import('csstype').Globals)[] | import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex>[];
|
|
1353
|
-
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom>[] | readonly (
|
|
1353
|
+
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom>[] | readonly ((string & {}) | "reset" | "normal" | import('csstype').Globals)[];
|
|
1354
1354
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals>[] | readonly import('csstype').Globals[];
|
|
1355
|
-
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" |
|
|
1355
|
+
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" | (string & {}) | "normal" | "reverse" | "auto" | import('csstype').Globals | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[];
|
|
1356
1356
|
animationRange?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRange<string | number> | readonly NonNullable<import("csstype").Property.AnimationRange<string | number>>[];
|
|
1357
1357
|
background?: readonly (string | (string & {}))[] | import("csstype").Property.Background<string | number> | readonly NonNullable<import("csstype").Property.Background<string | number>>[];
|
|
1358
1358
|
backgroundPosition?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPosition<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number>>[];
|
|
@@ -1362,7 +1362,7 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
1362
1362
|
borderBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockStart<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number>>[];
|
|
1363
1363
|
borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number>>[];
|
|
1364
1364
|
borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[];
|
|
1365
|
-
borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("
|
|
1365
|
+
borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("none" | (string & {}) | "repeat" | "stretch" | import('csstype').Globals | "round" | "space")[];
|
|
1366
1366
|
borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number>>[];
|
|
1367
1367
|
borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number>>[];
|
|
1368
1368
|
borderInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineStart<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number>>[];
|
|
@@ -1395,7 +1395,7 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
1395
1395
|
marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number>>[];
|
|
1396
1396
|
marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number>>[];
|
|
1397
1397
|
mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number>>[];
|
|
1398
|
-
maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder>[] | readonly ("
|
|
1398
|
+
maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder>[] | readonly ("none" | (string & {}) | "repeat" | "stretch" | import('csstype').Globals | "round" | "space" | "alpha" | "luminance")[];
|
|
1399
1399
|
motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number>>[];
|
|
1400
1400
|
offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number>>[];
|
|
1401
1401
|
outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number>>[];
|
|
@@ -1579,7 +1579,7 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
1579
1579
|
WebkitFontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[];
|
|
1580
1580
|
WebkitHyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[];
|
|
1581
1581
|
WebkitHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens>[] | readonly import("csstype").Property.Hyphens[];
|
|
1582
|
-
WebkitInitialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter>[] | readonly (
|
|
1582
|
+
WebkitInitialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter>[] | readonly ((string & {}) | "normal" | import('csstype').Globals)[];
|
|
1583
1583
|
WebkitJustifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[];
|
|
1584
1584
|
WebkitLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak>[] | readonly import("csstype").Property.LineBreak[];
|
|
1585
1585
|
WebkitLineClamp?: readonly ("none" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.WebkitLineClamp | readonly NonNullable<import("csstype").Property.WebkitLineClamp>[];
|
|
@@ -1639,8 +1639,8 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
1639
1639
|
WebkitUserModify?: import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify>[] | readonly import("csstype").Property.WebkitUserModify[];
|
|
1640
1640
|
WebkitUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect>[] | readonly import("csstype").Property.UserSelect[];
|
|
1641
1641
|
WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode>[] | readonly import("csstype").Property.WritingMode[];
|
|
1642
|
-
MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" |
|
|
1643
|
-
MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("
|
|
1642
|
+
MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" | (string & {}) | "normal" | "reverse" | "auto" | import('csstype').Globals | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[];
|
|
1643
|
+
MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("none" | (string & {}) | "repeat" | "stretch" | import('csstype').Globals | "round" | "space")[];
|
|
1644
1644
|
MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number>>[];
|
|
1645
1645
|
MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number>>[];
|
|
1646
1646
|
MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number>>[];
|
|
@@ -1651,16 +1651,16 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
1651
1651
|
msScrollSnapX?: readonly string[] | import("csstype").Property.MsScrollSnapX | readonly import("csstype").Property.MsScrollSnapX[];
|
|
1652
1652
|
msScrollSnapY?: readonly string[] | import("csstype").Property.MsScrollSnapY | readonly import("csstype").Property.MsScrollSnapY[];
|
|
1653
1653
|
msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[];
|
|
1654
|
-
WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" |
|
|
1654
|
+
WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" | (string & {}) | "normal" | "reverse" | "auto" | import('csstype').Globals | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[];
|
|
1655
1655
|
WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number>>[];
|
|
1656
|
-
WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("
|
|
1656
|
+
WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("none" | (string & {}) | "repeat" | "stretch" | import('csstype').Globals | "round" | "space")[];
|
|
1657
1657
|
WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number>>[];
|
|
1658
1658
|
WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number>>[];
|
|
1659
1659
|
WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number>>[];
|
|
1660
1660
|
WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number>>[];
|
|
1661
1661
|
WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[];
|
|
1662
1662
|
WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number>>[];
|
|
1663
|
-
WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder>[] | readonly ("
|
|
1663
|
+
WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder>[] | readonly ("none" | (string & {}) | "repeat" | "stretch" | import('csstype').Globals | "round" | "space" | "alpha" | "luminance")[];
|
|
1664
1664
|
WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[];
|
|
1665
1665
|
WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number>>[];
|
|
1666
1666
|
WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[];
|
|
@@ -1741,7 +1741,7 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
1741
1741
|
MozTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[];
|
|
1742
1742
|
MozUserInput?: import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput>[] | readonly import("csstype").Property.MozUserInput[];
|
|
1743
1743
|
msImeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode>[] | readonly import("csstype").Property.ImeMode[];
|
|
1744
|
-
OAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" |
|
|
1744
|
+
OAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[] | readonly ("none" | (string & {}) | "normal" | "reverse" | "auto" | import('csstype').Globals | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[];
|
|
1745
1745
|
OAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[];
|
|
1746
1746
|
OAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[];
|
|
1747
1747
|
OAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[];
|
|
@@ -1751,7 +1751,7 @@ export declare const getSX: ({ hasFilter, isDisabled, sx, }: {
|
|
|
1751
1751
|
OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[];
|
|
1752
1752
|
OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[];
|
|
1753
1753
|
OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number>>[] | readonly (string | (string & {}))[];
|
|
1754
|
-
OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("
|
|
1754
|
+
OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[] | readonly ("none" | (string & {}) | "repeat" | "stretch" | import('csstype').Globals | "round" | "space")[];
|
|
1755
1755
|
OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit>[] | readonly import("csstype").Property.ObjectFit[];
|
|
1756
1756
|
OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number>>[];
|
|
1757
1757
|
OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number>>[];
|
|
@@ -7,6 +7,9 @@ declare const _default: {
|
|
|
7
7
|
name: string;
|
|
8
8
|
url: string;
|
|
9
9
|
}[];
|
|
10
|
+
chromatic: {
|
|
11
|
+
delay: number;
|
|
12
|
+
};
|
|
10
13
|
};
|
|
11
14
|
args: {
|
|
12
15
|
hintMessage: string;
|
|
@@ -38,6 +41,9 @@ export declare const SimpleSelect: {
|
|
|
38
41
|
disable: boolean;
|
|
39
42
|
};
|
|
40
43
|
};
|
|
44
|
+
play: ({ canvasElement }: {
|
|
45
|
+
canvasElement: any;
|
|
46
|
+
}) => Promise<void>;
|
|
41
47
|
};
|
|
42
48
|
export declare const SearchableSelect: {
|
|
43
49
|
render: (args: any) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { CSSObject } from '@emotion/react';
|
|
2
|
-
import {
|
|
2
|
+
import { TextInputBaseProps } from '../../../TextInputBase';
|
|
3
3
|
import { ComponentSizes } from '../../../../utils/types';
|
|
4
4
|
import { SelectOption } from '../../types';
|
|
5
|
-
import { TextInputBaseProps } from '../../../TextInputBase';
|
|
6
5
|
|
|
7
6
|
export type SelectMenuProps = {
|
|
8
7
|
filteredOptions: SelectOption[];
|
|
@@ -14,7 +13,7 @@ export type SelectMenuProps = {
|
|
|
14
13
|
size?: ComponentSizes;
|
|
15
14
|
sx?: CSSObject;
|
|
16
15
|
} & Pick<TextInputBaseProps, 'status'>;
|
|
17
|
-
declare const SelectMenu:
|
|
16
|
+
declare const SelectMenu: import('react').ForwardRefExoticComponent<{
|
|
18
17
|
filteredOptions: SelectOption[];
|
|
19
18
|
handleOptionClick: (option: SelectOption) => void;
|
|
20
19
|
selectedOption: SelectOption;
|
|
@@ -23,5 +22,5 @@ declare const SelectMenu: React.ForwardRefExoticComponent<{
|
|
|
23
22
|
hasSelectAllOption?: boolean;
|
|
24
23
|
size?: ComponentSizes;
|
|
25
24
|
sx?: CSSObject;
|
|
26
|
-
} & Pick<TextInputBaseProps, "status"> &
|
|
25
|
+
} & Pick<TextInputBaseProps, "status"> & import('react').RefAttributes<HTMLUListElement>>;
|
|
27
26
|
export default SelectMenu;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { SerializedStyles } from '@emotion/react';
|
|
2
|
+
import { TextFieldProps } from '../../../TextField/TextField';
|
|
2
3
|
import { Theme } from 'theme';
|
|
3
4
|
import { SelectMenuProps } from './SelectMenu';
|
|
4
|
-
import { TextFieldProps } from '../../../TextField/TextField';
|
|
5
5
|
|
|
6
6
|
export declare const optionStyle: ({ isSelected, hasNoResultsExist, }: {
|
|
7
7
|
isSelected: boolean;
|
|
8
8
|
hasNoResultsExist?: boolean;
|
|
9
9
|
} & Omit<TextFieldProps, "ref" | "label">) => (theme: Theme) => SerializedStyles;
|
|
10
|
-
export declare const menuStyle: ({ status, isVirtualized,
|
|
10
|
+
export declare const menuStyle: ({ status, isVirtualized, sx }: SelectMenuProps & Omit<TextFieldProps, "ref" | "label">) => (theme: Theme) => SerializedStyles;
|
|
11
|
+
export declare const innerMenuStyle: ({ height }: {
|
|
11
12
|
height: number;
|
|
12
|
-
}) =>
|
|
13
|
+
}) => SerializedStyles;
|
|
@@ -34,5 +34,5 @@ export type TextInputBaseProps = {
|
|
|
34
34
|
isInteractive?: boolean;
|
|
35
35
|
children?: React.ReactNode;
|
|
36
36
|
} & TestProps;
|
|
37
|
-
declare const _default: React.NamedExoticComponent<React.PropsWithChildren<Omit<TextInputBaseProps, "
|
|
37
|
+
declare const _default: React.NamedExoticComponent<React.PropsWithChildren<Omit<TextInputBaseProps, "label" | "value" | "placeholder" | "isRequired" | "suffix">>>;
|
|
38
38
|
export default _default;
|