@zealicsolutions/web-ui 1.0.80-beta.13 → 1.0.80-beta.2
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/contexts/LayoutContext/LayoutContext.d.ts +0 -1
- package/dist/cjs/contexts/LayoutContext/LayoutContextProvider.d.ts +0 -1
- package/dist/cjs/helpers/styles.d.ts +0 -1
- package/dist/cjs/index.js +1585 -1585
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/molecules/Button/Button.d.ts +3 -3
- package/dist/cjs/molecules/Calendar/hooks/useCalendarStyling.d.ts +1 -1
- package/dist/cjs/molecules/Divider/Divider.d.ts +1 -1
- package/dist/cjs/molecules/Divider/Divider.stories.d.ts +6 -7
- package/dist/cjs/molecules/Drawer/Drawer.stories.d.ts +16 -4
- package/dist/cjs/molecules/Drawer/styles.d.ts +46 -15
- package/dist/cjs/molecules/Drawer/types.d.ts +2 -8
- package/dist/esm/contexts/LayoutContext/LayoutContext.d.ts +0 -1
- package/dist/esm/contexts/LayoutContext/LayoutContext.js +1 -1
- package/dist/esm/contexts/LayoutContext/LayoutContext.js.map +1 -1
- package/dist/esm/contexts/LayoutContext/LayoutContextProvider.d.ts +0 -1
- package/dist/esm/contexts/LayoutContext/LayoutContextProvider.js +1 -1
- package/dist/esm/contexts/LayoutContext/LayoutContextProvider.js.map +1 -1
- package/dist/esm/helpers/styles.d.ts +0 -1
- package/dist/esm/helpers/styles.js +1 -1
- package/dist/esm/helpers/styles.js.map +1 -1
- package/dist/esm/molecules/Accordion/Accordion.js +1 -1
- package/dist/esm/molecules/Avatar/Avatar.js +1 -1
- package/dist/esm/molecules/Button/Button.d.ts +3 -3
- package/dist/esm/molecules/Button/Button.js +1 -1
- package/dist/esm/molecules/Button/Button.js.map +1 -1
- package/dist/esm/molecules/Calendar/hooks/useCalendarStyling.d.ts +1 -1
- package/dist/esm/molecules/Calendar/hooks/useCalendarStyling.js +1 -1
- package/dist/esm/molecules/Calendar/hooks/useCalendarStyling.js.map +1 -1
- package/dist/esm/molecules/Divider/Divider.d.ts +1 -1
- package/dist/esm/molecules/Divider/Divider.js +1 -1
- package/dist/esm/molecules/Divider/Divider.js.map +1 -1
- package/dist/esm/molecules/Divider/Divider.stories.d.ts +6 -7
- package/dist/esm/molecules/Drawer/Drawer.js +1 -1
- package/dist/esm/molecules/Drawer/Drawer.js.map +1 -1
- package/dist/esm/molecules/Drawer/Drawer.stories.d.ts +16 -4
- package/dist/esm/molecules/Drawer/styles.d.ts +46 -15
- package/dist/esm/molecules/Drawer/styles.js +1 -1
- package/dist/esm/molecules/Drawer/styles.js.map +1 -1
- package/dist/esm/molecules/Drawer/types.d.ts +2 -8
- package/dist/esm/molecules/Menu/Menu.js +1 -1
- package/dist/esm/molecules/PasswordSetup/PasswordSetup.js +1 -1
- package/dist/esm/molecules/Stepper/Stepper.js +1 -1
- package/dist/index.d.ts +5 -13
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -687,7 +687,6 @@ interface LayoutContextType {
|
|
687
687
|
setDrawerContainerRef?: (ref: Element | null) => void;
|
688
688
|
headerHeight?: string;
|
689
689
|
setHeaderHeight?: (height: string) => void;
|
690
|
-
isMobile?: boolean;
|
691
690
|
isMLR?: boolean;
|
692
691
|
}
|
693
692
|
declare const LayoutContext: react.Context<LayoutContextType>;
|
@@ -697,7 +696,6 @@ interface LayoutProviderProps extends PropsWithChildren {
|
|
697
696
|
headerHeight?: string;
|
698
697
|
drawerMaxWidthPercent?: number;
|
699
698
|
isMLR?: boolean;
|
700
|
-
isMobile?: boolean;
|
701
699
|
}
|
702
700
|
declare const LayoutProvider: react__default.FC<LayoutProviderProps>;
|
703
701
|
|
@@ -786,7 +784,7 @@ interface BasicTextFieldProps extends TextFieldProps {
|
|
786
784
|
declare const BasicTextField: react__default.FC<BasicTextFieldProps>;
|
787
785
|
|
788
786
|
interface ButtonProps extends ButtonProps$1 {
|
789
|
-
gap
|
787
|
+
gap: number | string;
|
790
788
|
moleculeId?: string;
|
791
789
|
configurationItemInfo?: ConfigurationItemInfo$1;
|
792
790
|
borderRadius?: string | number;
|
@@ -817,7 +815,7 @@ interface ButtonProps extends ButtonProps$1 {
|
|
817
815
|
* We use `forwardRef` so that the ref passed from parent Component (Menu)
|
818
816
|
* will correctly point to the underlying <MuiButton> element.
|
819
817
|
*/
|
820
|
-
declare const Button:
|
818
|
+
declare const Button: react__default.ForwardRefExoticComponent<Pick<ButtonProps, "color" | "fontFamily" | "fontSize" | "fontWeight" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "textAlign" | "translate" | "width" | "borderRadius" | "gap" | "action" | "className" | "style" | "classes" | "children" | "sx" | "variant" | "form" | "link" | "slot" | "title" | "text" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "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" | "component" | "value" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "type" | "disableElevation" | "disableFocusRipple" | "endIcon" | "fullWidth" | "href" | "size" | "startIcon" | "textColor" | "configurationItemInfo" | "moleculeId" | "wrapText" | "elevated" | "disabledColor"> & react__default.RefAttributes<HTMLButtonElement>>;
|
821
819
|
|
822
820
|
declare type ChecklistItemType = {
|
823
821
|
id: string;
|
@@ -990,7 +988,7 @@ interface DividerProps {
|
|
990
988
|
marginLeft?: string | number;
|
991
989
|
configurationItemInfo?: ConfigurationItemInfo$1;
|
992
990
|
}
|
993
|
-
declare const Divider: ({ moleculeId,
|
991
|
+
declare const Divider: ({ moleculeId, lineWeight, orientation, borderColor, borderRadius, sx, marginTop, marginRight, marginBottom, marginLeft, configurationItemInfo, }: DividerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
994
992
|
|
995
993
|
declare type DrawerItemType = 'menu_item' | 'divider_item' | 'text_item' | 'rich_text_item';
|
996
994
|
interface BaseDrawerItem {
|
@@ -1083,7 +1081,6 @@ interface DrawerProps {
|
|
1083
1081
|
paddingLeft?: string;
|
1084
1082
|
height?: number | string;
|
1085
1083
|
width?: number | string;
|
1086
|
-
mobileWidth?: string | number;
|
1087
1084
|
backgroundColor?: string;
|
1088
1085
|
gap?: number | string;
|
1089
1086
|
marginTop?: string;
|
@@ -1103,7 +1100,7 @@ interface DrawerProps {
|
|
1103
1100
|
buttonGap?: number | string;
|
1104
1101
|
buttonStartIcon?: string;
|
1105
1102
|
buttonEndIcon?: string;
|
1106
|
-
|
1103
|
+
buttonCornerRadius?: string | number;
|
1107
1104
|
buttonMarginTop?: string;
|
1108
1105
|
buttonMarginRight?: string;
|
1109
1106
|
buttonMarginBottom?: string;
|
@@ -1116,12 +1113,7 @@ interface DrawerProps {
|
|
1116
1113
|
closeIconColor?: ThemeColors$2 | string;
|
1117
1114
|
closeIconName?: string;
|
1118
1115
|
closeIconSize?: number;
|
1119
|
-
|
1120
|
-
closeIconVisible?: boolean;
|
1121
|
-
closeIconTop?: string | number;
|
1122
|
-
closeIconLeft?: string | number;
|
1123
|
-
closeIconBorderRadius?: number | string;
|
1124
|
-
closeIconElevation?: number;
|
1116
|
+
closeIconPosition?: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
|
1125
1117
|
moleculeId?: string;
|
1126
1118
|
configurationItemInfo?: ConfigurationItemInfo$1;
|
1127
1119
|
}
|