@zealicsolutions/web-ui 1.0.86-beta.1 → 1.0.86-beta.3
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/cjs/components/Buttons/TextButton.d.ts +1 -1
- package/dist/cjs/components/Input/helpers.d.ts +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/molecules/Avatar/Avatar.d.ts +2 -0
- package/dist/cjs/molecules/BasicTextField/BasicTextField.d.ts +2 -0
- package/dist/cjs/molecules/Button/Button.d.ts +5 -1
- package/dist/cjs/molecules/Checklist/Checklist.stories.d.ts +5 -5
- package/dist/cjs/molecules/CurrencyInputtField/CurrencyInputField.d.ts +2 -0
- package/dist/cjs/molecules/DatePicker/DatePicker.d.ts +1 -0
- package/dist/cjs/molecules/Drawer/styles.d.ts +1 -1
- package/dist/cjs/molecules/EmailInputField/EmailInputField.d.ts +2 -0
- package/dist/cjs/molecules/NumericInputField/NumericInputField.d.ts +2 -0
- package/dist/cjs/molecules/PasswordSetup/PasswordSetup.d.ts +11 -1
- package/dist/cjs/molecules/PasswordSetup/PasswordSetup.stories.d.ts +1 -1
- package/dist/cjs/molecules/PhoneNumberInputField/PhoneNumberInputField.d.ts +2 -0
- package/dist/cjs/molecules/Rating/Rating.d.ts +2 -0
- package/dist/cjs/molecules/Select/Select.d.ts +1 -0
- package/dist/cjs/molecules/Slider/Slider.d.ts +1 -0
- package/dist/cjs/molecules/Stepper/Stepper.stories.d.ts +5 -5
- package/dist/cjs/molecules/Switch/Switch.d.ts +1 -0
- package/dist/esm/components/Buttons/TextButton.d.ts +1 -1
- package/dist/esm/components/Input/helpers.d.ts +1 -1
- package/dist/esm/molecules/Avatar/Avatar.d.ts +2 -0
- package/dist/esm/molecules/Avatar/Avatar.js +1 -1
- package/dist/esm/molecules/Avatar/Avatar.js.map +1 -1
- package/dist/esm/molecules/BasicTextField/BasicTextField.d.ts +2 -0
- package/dist/esm/molecules/BasicTextField/BasicTextField.js +1 -1
- package/dist/esm/molecules/BasicTextField/BasicTextField.js.map +1 -1
- package/dist/esm/molecules/Button/Button.d.ts +5 -1
- package/dist/esm/molecules/Checklist/Checklist.stories.d.ts +5 -5
- package/dist/esm/molecules/CurrencyInputtField/CurrencyInputField.d.ts +2 -0
- package/dist/esm/molecules/CurrencyInputtField/CurrencyInputField.js +1 -1
- package/dist/esm/molecules/CurrencyInputtField/CurrencyInputField.js.map +1 -1
- package/dist/esm/molecules/DatePicker/DatePicker.d.ts +1 -0
- package/dist/esm/molecules/DatePicker/DatePicker.js +1 -1
- package/dist/esm/molecules/DatePicker/DatePicker.js.map +1 -1
- package/dist/esm/molecules/Drawer/styles.d.ts +1 -1
- package/dist/esm/molecules/EmailInputField/EmailInputField.d.ts +2 -0
- package/dist/esm/molecules/EmailInputField/EmailInputField.js +1 -1
- package/dist/esm/molecules/EmailInputField/EmailInputField.js.map +1 -1
- package/dist/esm/molecules/NumericInputField/NumericInputField.d.ts +2 -0
- package/dist/esm/molecules/NumericInputField/NumericInputField.js +1 -1
- package/dist/esm/molecules/NumericInputField/NumericInputField.js.map +1 -1
- package/dist/esm/molecules/PasswordSetup/PasswordSetup.d.ts +11 -1
- package/dist/esm/molecules/PasswordSetup/PasswordSetup.js +1 -1
- package/dist/esm/molecules/PasswordSetup/PasswordSetup.js.map +1 -1
- package/dist/esm/molecules/PasswordSetup/PasswordSetup.stories.d.ts +1 -1
- package/dist/esm/molecules/PhoneNumberInputField/PhoneNumberInputField.d.ts +2 -0
- package/dist/esm/molecules/PhoneNumberInputField/PhoneNumberInputField.js +1 -1
- package/dist/esm/molecules/PhoneNumberInputField/PhoneNumberInputField.js.map +1 -1
- package/dist/esm/molecules/Rating/Rating.d.ts +2 -0
- package/dist/esm/molecules/Rating/Rating.js +1 -1
- package/dist/esm/molecules/Rating/Rating.js.map +1 -1
- package/dist/esm/molecules/Select/Select.d.ts +1 -0
- package/dist/esm/molecules/Select/Select.js +1 -1
- package/dist/esm/molecules/Select/Select.js.map +1 -1
- package/dist/esm/molecules/Slider/Slider.d.ts +1 -0
- package/dist/esm/molecules/Slider/Slider.js +1 -1
- package/dist/esm/molecules/Slider/Slider.js.map +1 -1
- package/dist/esm/molecules/Stepper/Stepper.stories.d.ts +5 -5
- package/dist/esm/molecules/Switch/Switch.d.ts +1 -0
- package/dist/esm/molecules/Switch/Switch.js +1 -1
- package/dist/esm/molecules/Switch/Switch.js.map +1 -1
- package/dist/index.d.ts +33 -3
- package/package.json +1 -1
@@ -40,9 +40,13 @@ export interface ButtonProps extends MuiButtonProps {
|
|
40
40
|
textAlign?: TypographyProps['textAlign'];
|
41
41
|
height?: string;
|
42
42
|
width?: string;
|
43
|
+
minWidth?: string;
|
44
|
+
maxWidth?: string;
|
45
|
+
minHeight?: string;
|
46
|
+
maxHeight?: string;
|
43
47
|
}
|
44
48
|
/**
|
45
49
|
* We use `forwardRef` so that the ref passed from parent Component (Menu)
|
46
50
|
* will correctly point to the underlying <MuiButton> element.
|
47
51
|
*/
|
48
|
-
export declare const Button: import("react").ForwardRefExoticComponent<Pick<ButtonProps, "
|
52
|
+
export declare const Button: import("react").ForwardRefExoticComponent<Pick<ButtonProps, "className" | "style" | "classes" | "action" | "centerRipple" | "children" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "sx" | "tabIndex" | "TouchRippleProps" | "touchRippleRef" | "fontWeight" | "color" | "fontFamily" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "textAlign" | "translate" | "width" | "borderColor" | "borderRadius" | "gap" | "disableElevation" | "disableFocusRipple" | "endIcon" | "fullWidth" | "href" | "size" | "startIcon" | "variant" | "form" | "link" | "slot" | "title" | "text" | "key" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "type" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "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-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" | "onClick" | "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" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "moleculeId" | "configurationItemInfo" | "wrapText" | "iconOnly" | "elevation" | "fillColor" | "fillColorDisabled" | "fillColorHover" | "fillColorPressed" | "borderColorDisabled" | "borderColorHover" | "borderColorPressed" | "textColor" | "textColorDisabled" | "textColorHover" | "textColorPressed" | "component"> & import("react").RefAttributes<HTMLButtonElement>>;
|
@@ -81,7 +81,7 @@ declare const _default: {
|
|
81
81
|
};
|
82
82
|
};
|
83
83
|
export default _default;
|
84
|
-
export declare const UserInteractiveCheckboxes: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<ChecklistProps, "
|
84
|
+
export declare const UserInteractiveCheckboxes: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<ChecklistProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxWidth" | "minWidth" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "width" | "gap"> & {
|
85
85
|
gap: number | string;
|
86
86
|
width: number | string;
|
87
87
|
minWidth: number | string;
|
@@ -98,7 +98,7 @@ export declare const UserInteractiveCheckboxes: import("@storybook/types").Annot
|
|
98
98
|
interacted: 'checked' | 'unchecked';
|
99
99
|
}> | undefined;
|
100
100
|
}>;
|
101
|
-
export declare const SystemDrivenCheckboxes: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<ChecklistProps, "
|
101
|
+
export declare const SystemDrivenCheckboxes: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<ChecklistProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxWidth" | "minWidth" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "width" | "gap"> & {
|
102
102
|
gap: number | string;
|
103
103
|
width: number | string;
|
104
104
|
minWidth: number | string;
|
@@ -115,7 +115,7 @@ export declare const SystemDrivenCheckboxes: import("@storybook/types").Annotate
|
|
115
115
|
interacted: 'checked' | 'unchecked';
|
116
116
|
}> | undefined;
|
117
117
|
}>;
|
118
|
-
export declare const MixedChecklistWithWidthConstraints: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<ChecklistProps, "
|
118
|
+
export declare const MixedChecklistWithWidthConstraints: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<ChecklistProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxWidth" | "minWidth" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "width" | "gap"> & {
|
119
119
|
gap: number | string;
|
120
120
|
width: number | string;
|
121
121
|
minWidth: number | string;
|
@@ -132,7 +132,7 @@ export declare const MixedChecklistWithWidthConstraints: import("@storybook/type
|
|
132
132
|
interacted: 'checked' | 'unchecked';
|
133
133
|
}> | undefined;
|
134
134
|
}>;
|
135
|
-
export declare const WithCustomSpacing: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<ChecklistProps, "
|
135
|
+
export declare const WithCustomSpacing: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<ChecklistProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxWidth" | "minWidth" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "width" | "gap"> & {
|
136
136
|
gap: number | string;
|
137
137
|
width: number | string;
|
138
138
|
minWidth: number | string;
|
@@ -149,7 +149,7 @@ export declare const WithCustomSpacing: import("@storybook/types").AnnotatedStor
|
|
149
149
|
interacted: 'checked' | 'unchecked';
|
150
150
|
}> | undefined;
|
151
151
|
}>;
|
152
|
-
export declare const WithStateObjectValues: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<ChecklistProps, "
|
152
|
+
export declare const WithStateObjectValues: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<ChecklistProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxWidth" | "minWidth" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "width" | "gap"> & {
|
153
153
|
gap: number | string;
|
154
154
|
width: number | string;
|
155
155
|
minWidth: number | string;
|
@@ -55,7 +55,7 @@ export declare const IconWrapper: import("@emotion/styled").StyledComponent<{
|
|
55
55
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
56
56
|
export declare const DrawerItemsList: import("@emotion/styled").StyledComponent<import("@mui/material").ListOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "key" | keyof import("react").HTMLAttributes<HTMLUListElement>> & {
|
57
57
|
ref?: ((instance: HTMLUListElement | null) => void) | import("react").RefObject<HTMLUListElement> | null | undefined;
|
58
|
-
}, "className" | "style" | "classes" | "children" | "sx" | "
|
58
|
+
}, "className" | "style" | "classes" | "children" | "sx" | "dense" | "disablePadding" | "subheader"> & {
|
59
59
|
theme?: import("@emotion/react").Theme | undefined;
|
60
60
|
} & {
|
61
61
|
gap?: string | number | undefined;
|
@@ -31,6 +31,8 @@ export interface NumericInputFieldProps {
|
|
31
31
|
paddingTop?: string;
|
32
32
|
paddingRight?: string;
|
33
33
|
paddingBottom?: string;
|
34
|
+
width?: string;
|
35
|
+
height?: string;
|
34
36
|
configurationItemInfo?: ConfigurationItemInfo;
|
35
37
|
textAlign?: 'inherit' | 'left' | 'center' | 'right' | 'justify';
|
36
38
|
minHeight?: string;
|
@@ -9,5 +9,15 @@ export declare type PasswordSetupProps = {
|
|
9
9
|
validationState: FormStateType;
|
10
10
|
overridesProperties: PasswordSetupMoleculeType['properties'];
|
11
11
|
configurationItemInfo: ConfigurationItemInfo;
|
12
|
+
width?: string;
|
13
|
+
height?: string;
|
14
|
+
minWidth?: string;
|
15
|
+
maxWidth?: string;
|
16
|
+
minHeight?: string;
|
17
|
+
maxHeight?: string;
|
18
|
+
marginLeft?: string;
|
19
|
+
marginTop?: string;
|
20
|
+
marginRight?: string;
|
21
|
+
marginBottom?: string;
|
12
22
|
};
|
13
|
-
export declare const PasswordSetup: ({ gap, inputProps, validations, htmlElementId, validationState, overridesProperties, configurationItemInfo, }: PasswordSetupProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
23
|
+
export declare const PasswordSetup: ({ gap, inputProps, validations, htmlElementId, validationState, overridesProperties, configurationItemInfo, width, height, minWidth, maxWidth, minHeight, maxHeight, marginLeft, marginTop, marginRight, marginBottom, }: PasswordSetupProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
@@ -2,7 +2,7 @@ import type { StoryFn } from '@storybook/react';
|
|
2
2
|
import { PasswordSetup as PasswordSetupComponent } from './PasswordSetup';
|
3
3
|
declare const _default: {
|
4
4
|
title: string;
|
5
|
-
component: ({ gap, inputProps, validations, htmlElementId, validationState, overridesProperties, configurationItemInfo, }: import("./PasswordSetup").PasswordSetupProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
5
|
+
component: ({ gap, inputProps, validations, htmlElementId, validationState, overridesProperties, configurationItemInfo, width, height, minWidth, maxWidth, minHeight, maxHeight, marginLeft, marginTop, marginRight, marginBottom, }: import("./PasswordSetup").PasswordSetupProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
6
6
|
};
|
7
7
|
export default _default;
|
8
8
|
export declare const PasswordSetup: StoryFn<typeof PasswordSetupComponent>;
|
@@ -25,6 +25,8 @@ export interface RatingMoleculeProps extends Omit<RatingProps, 'onChange'> {
|
|
25
25
|
paddingTop?: string;
|
26
26
|
paddingRight?: string;
|
27
27
|
paddingBottom?: string;
|
28
|
+
width?: string;
|
29
|
+
height?: string;
|
28
30
|
minHeight?: string;
|
29
31
|
maxHeight?: string;
|
30
32
|
minWidth?: string;
|
@@ -85,7 +85,7 @@ declare const _default: {
|
|
85
85
|
};
|
86
86
|
};
|
87
87
|
export default _default;
|
88
|
-
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<StepperProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "borderRadius" | "gap" | "iconSize" | "
|
88
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<StepperProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "borderRadius" | "gap" | "iconSize" | "iconBorderRadius" | "lineWidth" | "lineRadius" | "stepGap"> & {
|
89
89
|
gap: number | string;
|
90
90
|
stepGap: number | string;
|
91
91
|
iconSize: number | string;
|
@@ -102,7 +102,7 @@ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import
|
|
102
102
|
marginLeft: number | string;
|
103
103
|
borderRadius: number | string;
|
104
104
|
}>;
|
105
|
-
export declare const Horizontal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<StepperProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "borderRadius" | "gap" | "iconSize" | "
|
105
|
+
export declare const Horizontal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<StepperProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "borderRadius" | "gap" | "iconSize" | "iconBorderRadius" | "lineWidth" | "lineRadius" | "stepGap"> & {
|
106
106
|
gap: number | string;
|
107
107
|
stepGap: number | string;
|
108
108
|
iconSize: number | string;
|
@@ -119,7 +119,7 @@ export declare const Horizontal: import("@storybook/types").AnnotatedStoryFn<imp
|
|
119
119
|
marginLeft: number | string;
|
120
120
|
borderRadius: number | string;
|
121
121
|
}>;
|
122
|
-
export declare const WithCustomGap: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<StepperProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "borderRadius" | "gap" | "iconSize" | "
|
122
|
+
export declare const WithCustomGap: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<StepperProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "borderRadius" | "gap" | "iconSize" | "iconBorderRadius" | "lineWidth" | "lineRadius" | "stepGap"> & {
|
123
123
|
gap: number | string;
|
124
124
|
stepGap: number | string;
|
125
125
|
iconSize: number | string;
|
@@ -136,7 +136,7 @@ export declare const WithCustomGap: import("@storybook/types").AnnotatedStoryFn<
|
|
136
136
|
marginLeft: number | string;
|
137
137
|
borderRadius: number | string;
|
138
138
|
}>;
|
139
|
-
export declare const MobileView: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<StepperProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "borderRadius" | "gap" | "iconSize" | "
|
139
|
+
export declare const MobileView: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<StepperProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "borderRadius" | "gap" | "iconSize" | "iconBorderRadius" | "lineWidth" | "lineRadius" | "stepGap"> & {
|
140
140
|
gap: number | string;
|
141
141
|
stepGap: number | string;
|
142
142
|
iconSize: number | string;
|
@@ -153,7 +153,7 @@ export declare const MobileView: import("@storybook/types").AnnotatedStoryFn<imp
|
|
153
153
|
marginLeft: number | string;
|
154
154
|
borderRadius: number | string;
|
155
155
|
}>;
|
156
|
-
export declare const WithMarginAndPadding: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<StepperProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "borderRadius" | "gap" | "iconSize" | "
|
156
|
+
export declare const WithMarginAndPadding: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Omit<StepperProps, "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "borderRadius" | "gap" | "iconSize" | "iconBorderRadius" | "lineWidth" | "lineRadius" | "stepGap"> & {
|
157
157
|
gap: number | string;
|
158
158
|
stepGap: number | string;
|
159
159
|
iconSize: number | string;
|
@@ -10,7 +10,7 @@ export declare type TextButtonProps = Pick<BaseButtonProps, 'disabled' | 'onClic
|
|
10
10
|
textColor: string;
|
11
11
|
}>;
|
12
12
|
export declare const BaseTextButton: React.FC<TextButtonProps & React.AnchorHTMLAttributes<HTMLAnchorElement>>;
|
13
|
-
export declare const TextButton: import("@emotion/styled").StyledComponent<Pick<BaseButtonProps, "children" | "
|
13
|
+
export declare const TextButton: import("@emotion/styled").StyledComponent<Pick<BaseButtonProps, "children" | "disabled" | "size" | "onClick" | "colorTheme"> & Partial<{
|
14
14
|
buttonLink: string;
|
15
15
|
elementId: string;
|
16
16
|
$styles: StylesType;
|
@@ -10,7 +10,7 @@ export declare type MaskConfig = {
|
|
10
10
|
};
|
11
11
|
export declare const getSpecificInputProps: (type: string) => {
|
12
12
|
type?: HTMLInputTypeAttribute | undefined;
|
13
|
-
inputMode?: "
|
13
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
14
14
|
};
|
15
15
|
export declare const getMaskInputProps: (type?: any, config?: MaskConfig) => Pick<MaskedInputProps, 'pipe' | 'mask' | 'placeholder' | 'keepCharPositions'>;
|
16
16
|
export declare const getInputIconColor: ({ isEditMode, isFocused, isError, disabled, }: Pick<Partial<{
|