@gomeniucivan/ui 1.0.67 → 1.0.69
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.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +121 -117
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +147 -143
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1863,12 +1863,14 @@ interface DrawerProps extends Omit<DrawerProps$1, 'styles' | 'classNames'> {
|
|
|
1863
1863
|
classNames?: DrawerProps$1['classNames'] & {
|
|
1864
1864
|
bodyContent?: string;
|
|
1865
1865
|
extra?: string;
|
|
1866
|
+
footer?: string;
|
|
1866
1867
|
sidebar?: string;
|
|
1867
1868
|
sidebarContent?: string;
|
|
1868
1869
|
title?: string;
|
|
1869
1870
|
};
|
|
1870
1871
|
closeIconProps?: ActionIconProps;
|
|
1871
1872
|
containerMaxWidth?: number | string;
|
|
1873
|
+
footer?: ReactNode;
|
|
1872
1874
|
noHeader?: boolean;
|
|
1873
1875
|
ref?: Ref<HTMLDivElement>;
|
|
1874
1876
|
sidebar?: ReactNode;
|
|
@@ -1876,6 +1878,7 @@ interface DrawerProps extends Omit<DrawerProps$1, 'styles' | 'classNames'> {
|
|
|
1876
1878
|
styles?: DrawerProps$1['styles'] & {
|
|
1877
1879
|
bodyContent?: CSSProperties;
|
|
1878
1880
|
extra?: CSSProperties;
|
|
1881
|
+
footer?: CSSProperties;
|
|
1879
1882
|
sidebar?: CSSProperties;
|
|
1880
1883
|
sidebarContent?: CSSProperties;
|
|
1881
1884
|
title?: CSSProperties;
|
package/dist/index.d.ts
CHANGED
|
@@ -1863,12 +1863,14 @@ interface DrawerProps extends Omit<DrawerProps$1, 'styles' | 'classNames'> {
|
|
|
1863
1863
|
classNames?: DrawerProps$1['classNames'] & {
|
|
1864
1864
|
bodyContent?: string;
|
|
1865
1865
|
extra?: string;
|
|
1866
|
+
footer?: string;
|
|
1866
1867
|
sidebar?: string;
|
|
1867
1868
|
sidebarContent?: string;
|
|
1868
1869
|
title?: string;
|
|
1869
1870
|
};
|
|
1870
1871
|
closeIconProps?: ActionIconProps;
|
|
1871
1872
|
containerMaxWidth?: number | string;
|
|
1873
|
+
footer?: ReactNode;
|
|
1872
1874
|
noHeader?: boolean;
|
|
1873
1875
|
ref?: Ref<HTMLDivElement>;
|
|
1874
1876
|
sidebar?: ReactNode;
|
|
@@ -1876,6 +1878,7 @@ interface DrawerProps extends Omit<DrawerProps$1, 'styles' | 'classNames'> {
|
|
|
1876
1878
|
styles?: DrawerProps$1['styles'] & {
|
|
1877
1879
|
bodyContent?: CSSProperties;
|
|
1878
1880
|
extra?: CSSProperties;
|
|
1881
|
+
footer?: CSSProperties;
|
|
1879
1882
|
sidebar?: CSSProperties;
|
|
1880
1883
|
sidebarContent?: CSSProperties;
|
|
1881
1884
|
title?: CSSProperties;
|