@zealicsolutions/web-ui 1.0.80-beta.14 → 1.0.80-beta.5
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/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/molecules/Drawer/Drawer.stories.d.ts +0 -1
- package/dist/cjs/molecules/Drawer/styles.d.ts +47 -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/molecules/Accordion/Accordion.js +1 -1
- package/dist/esm/molecules/Avatar/Avatar.js +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/Drawer/Drawer.js +1 -1
- package/dist/esm/molecules/Drawer/Drawer.js.map +1 -1
- package/dist/esm/molecules/Drawer/Drawer.stories.d.ts +0 -1
- package/dist/esm/molecules/Drawer/styles.d.ts +47 -8
- package/dist/esm/molecules/Drawer/styles.js +1 -1
- package/dist/esm/molecules/Drawer/styles.js.map +1 -1
- 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 +0 -2
- 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
|
|