@codemonster-ru/vueforge 0.38.0 → 0.39.0
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/README.md +61 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.ts.mjs +1379 -1276
- package/dist/index.ts.umd.js +3 -3
- package/dist/package/components/__tests__/confirm-dialog.test.d.ts +1 -0
- package/dist/package/config/theme-core.d.ts +8 -0
- package/dist/package/themes/default/components/confirm-dialog.d.ts +8 -0
- package/dist/package/themes/default/index.d.ts +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -260,6 +260,13 @@ export type ModalTokens = {
|
|
|
260
260
|
closeFontSize?: string;
|
|
261
261
|
closeHoverBackgroundColor?: string;
|
|
262
262
|
};
|
|
263
|
+
export type ConfirmDialogTokens = {
|
|
264
|
+
maxWidth?: string;
|
|
265
|
+
messageColor?: string;
|
|
266
|
+
messageFontSize?: string;
|
|
267
|
+
messageLineHeight?: string;
|
|
268
|
+
actionsGap?: string;
|
|
269
|
+
};
|
|
263
270
|
export type DrawerTokens = {
|
|
264
271
|
width?: string;
|
|
265
272
|
widthSm?: string;
|
|
@@ -1082,6 +1089,7 @@ export type ThemeComponentTokens = {
|
|
|
1082
1089
|
breadcrumbs?: BreadcrumbsTokens;
|
|
1083
1090
|
menu?: MenuTokens;
|
|
1084
1091
|
modal?: ModalTokens;
|
|
1092
|
+
confirmDialog?: ConfirmDialogTokens;
|
|
1085
1093
|
drawer?: DrawerTokens;
|
|
1086
1094
|
popover?: PopoverTokens;
|
|
1087
1095
|
dropdown?: DropdownTokens;
|
|
@@ -417,6 +417,13 @@ declare const _default: {
|
|
|
417
417
|
closeFontSize: string;
|
|
418
418
|
closeHoverBackgroundColor: string;
|
|
419
419
|
};
|
|
420
|
+
confirmDialog: {
|
|
421
|
+
maxWidth: string;
|
|
422
|
+
messageColor: string;
|
|
423
|
+
messageFontSize: string;
|
|
424
|
+
messageLineHeight: string;
|
|
425
|
+
actionsGap: string;
|
|
426
|
+
};
|
|
420
427
|
drawer: {
|
|
421
428
|
width: string;
|
|
422
429
|
widthSm: string;
|