@mdtl/uikit 0.0.65 → 0.0.66
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/components/Snackbar/Snackbar.d.ts +2 -1
- package/dist/components/Snackbar/interfaces.d.ts +0 -5
- package/dist/components/Stepper/Stepper.d.ts +2 -1
- package/dist/components/Tabs/Tabs.d.ts +11 -3
- package/dist/themes/aps/controls/configs/buttons.d.ts +5 -5
- package/dist/uikit.js +3097 -3074
- package/dist/vite-env.d.ts +0 -0
- package/package.json +3 -23
- package/dist/components/Snackbar/Snackbar.stories.d.ts +0 -26
- package/dist/components/Stepper/Stepper.stories.d.ts +0 -19
- package/dist/components/Tabs/Tabs.stories.d.ts +0 -26
- package/dist/components/Tabs/interfaces.d.ts +0 -9
- package/dist/components/Title/Title.stories.d.ts +0 -17
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as React, FC } from 'react';
|
|
2
2
|
import { SnackbarStyle } from './interfaces';
|
|
3
|
-
|
|
3
|
+
interface ISnackbarProps {
|
|
4
4
|
isOpen: boolean;
|
|
5
5
|
style: SnackbarStyle;
|
|
6
6
|
label: string;
|
|
@@ -9,3 +9,4 @@ export interface ISnackbarProps {
|
|
|
9
9
|
setConfig: (config: Partial<ISnackbarProps>) => void;
|
|
10
10
|
}
|
|
11
11
|
export declare const Snackbar: FC<ISnackbarProps>;
|
|
12
|
+
export {};
|
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
interface TabProps {
|
|
3
|
+
id: number;
|
|
4
|
+
label: string;
|
|
5
|
+
to?: string;
|
|
6
|
+
startTemplate?: React.ReactNode;
|
|
7
|
+
endTemplate?: React.ReactNode;
|
|
8
|
+
count?: number;
|
|
9
|
+
}
|
|
10
|
+
interface ITabsProps {
|
|
11
|
+
tabs: TabProps[];
|
|
5
12
|
activeTab: number;
|
|
6
13
|
onChange: (tab: number) => void;
|
|
7
14
|
}
|
|
8
15
|
export declare const Tabs: React.FC<ITabsProps>;
|
|
16
|
+
export {};
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
export declare const buttonsConfig: {
|
|
2
|
+
defaultProps: {
|
|
3
|
+
disableRipple: boolean;
|
|
4
|
+
disableFocusRipple: boolean;
|
|
5
|
+
disableTouchRipple: boolean;
|
|
6
|
+
};
|
|
2
7
|
styleOverrides: {
|
|
3
8
|
root: {
|
|
4
9
|
textTransform: string;
|
|
@@ -219,9 +224,4 @@ export declare const buttonsConfig: {
|
|
|
219
224
|
})[];
|
|
220
225
|
};
|
|
221
226
|
};
|
|
222
|
-
defaultProps: {
|
|
223
|
-
disableRipple: boolean;
|
|
224
|
-
disableFocusRipple: boolean;
|
|
225
|
-
disableTouchRipple: boolean;
|
|
226
|
-
};
|
|
227
227
|
};
|