@zealicsolutions/web-ui 0.3.191 → 0.3.192
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/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/molecules/Drawer/styles.d.ts +2 -2
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/molecules/Drawer/styles.d.ts +2 -2
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
@@ -4,7 +4,7 @@ import { Drawer as DrawerComponent, DrawerProps as DrawerComponentProps } from '
|
|
4
4
|
export declare type Anchor = 'top' | 'left' | 'bottom' | 'right';
|
5
5
|
export declare type DrawerProps = DrawerComponentProps & {
|
6
6
|
anchor: Anchor;
|
7
|
-
padding?: SizesTypes | number;
|
7
|
+
padding?: SizesTypes | number | string;
|
8
8
|
height?: number | string;
|
9
9
|
width?: number | string;
|
10
10
|
withCloseIcon?: boolean;
|
@@ -12,7 +12,7 @@ export declare type DrawerProps = DrawerComponentProps & {
|
|
12
12
|
};
|
13
13
|
export declare const BaseDrawer: import("styled-components").StyledComponent<typeof DrawerComponent, import("styled-components").DefaultTheme, DrawerComponentProps & {
|
14
14
|
anchor: Anchor;
|
15
|
-
padding?:
|
15
|
+
padding?: string | number | undefined;
|
16
16
|
height?: string | number | undefined;
|
17
17
|
width?: string | number | undefined;
|
18
18
|
withCloseIcon?: boolean | undefined;
|
package/dist/index.d.ts
CHANGED
@@ -1757,7 +1757,7 @@ declare const HeroImage: ({ backgroundImage, button, contentAlignment, mainHeadi
|
|
1757
1757
|
declare type Anchor = 'top' | 'left' | 'bottom' | 'right';
|
1758
1758
|
declare type DrawerProps = DrawerProps$1 & {
|
1759
1759
|
anchor: Anchor;
|
1760
|
-
padding?: SizesTypes$2 | number;
|
1760
|
+
padding?: SizesTypes$2 | number | string;
|
1761
1761
|
height?: number | string;
|
1762
1762
|
width?: number | string;
|
1763
1763
|
withCloseIcon?: boolean;
|