@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.
@@ -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;
@@ -0,0 +1,8 @@
1
+ declare const _default: {
2
+ maxWidth: string;
3
+ messageColor: string;
4
+ messageFontSize: string;
5
+ messageLineHeight: string;
6
+ actionsGap: string;
7
+ };
8
+ export default _default;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemonster-ru/vueforge",
3
- "version": "0.38.0",
3
+ "version": "0.39.0",
4
4
  "description": "Open source UI components for Vue.js.",
5
5
  "license": "MIT",
6
6
  "author": "Kirill Kolesnikov",