@codemonster-ru/vueforge 0.41.0 → 0.42.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 +10 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.ts.mjs +2270 -2133
- package/dist/index.ts.umd.js +3 -3
- package/dist/package/components/__tests__/split-button.test.d.ts +1 -0
- package/dist/package/config/theme-core.d.ts +14 -0
- package/dist/package/themes/default/components/splitbutton.d.ts +14 -0
- package/dist/package/themes/default/index.d.ts +13 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -310,6 +310,19 @@ export type DropdownTokens = {
|
|
|
310
310
|
disabledOpacity?: string;
|
|
311
311
|
itemPadding?: string;
|
|
312
312
|
};
|
|
313
|
+
export type SplitButtonTokens = {
|
|
314
|
+
borderRadius?: string;
|
|
315
|
+
toggleMinWidth?: string;
|
|
316
|
+
togglePaddingX?: string;
|
|
317
|
+
toggleIconSize?: string;
|
|
318
|
+
disabledOpacity?: string;
|
|
319
|
+
small?: {
|
|
320
|
+
toggleMinWidth?: string;
|
|
321
|
+
};
|
|
322
|
+
large?: {
|
|
323
|
+
toggleMinWidth?: string;
|
|
324
|
+
};
|
|
325
|
+
};
|
|
313
326
|
export type ContextMenuTokens = {
|
|
314
327
|
minWidth?: string;
|
|
315
328
|
panelPadding?: string;
|
|
@@ -1144,6 +1157,7 @@ export type ThemeComponentTokens = {
|
|
|
1144
1157
|
drawer?: DrawerTokens;
|
|
1145
1158
|
popover?: PopoverTokens;
|
|
1146
1159
|
dropdown?: DropdownTokens;
|
|
1160
|
+
splitbutton?: SplitButtonTokens;
|
|
1147
1161
|
contextMenu?: ContextMenuTokens;
|
|
1148
1162
|
select?: SelectTokens;
|
|
1149
1163
|
autocomplete?: AutocompleteTokens;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
borderRadius: string;
|
|
3
|
+
toggleMinWidth: string;
|
|
4
|
+
togglePaddingX: string;
|
|
5
|
+
toggleIconSize: string;
|
|
6
|
+
disabledOpacity: string;
|
|
7
|
+
small: {
|
|
8
|
+
toggleMinWidth: string;
|
|
9
|
+
};
|
|
10
|
+
large: {
|
|
11
|
+
toggleMinWidth: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
export default _default;
|
|
@@ -464,6 +464,19 @@ declare const _default: {
|
|
|
464
464
|
disabledOpacity: string;
|
|
465
465
|
itemPadding: string;
|
|
466
466
|
};
|
|
467
|
+
splitbutton: {
|
|
468
|
+
borderRadius: string;
|
|
469
|
+
toggleMinWidth: string;
|
|
470
|
+
togglePaddingX: string;
|
|
471
|
+
toggleIconSize: string;
|
|
472
|
+
disabledOpacity: string;
|
|
473
|
+
small: {
|
|
474
|
+
toggleMinWidth: string;
|
|
475
|
+
};
|
|
476
|
+
large: {
|
|
477
|
+
toggleMinWidth: string;
|
|
478
|
+
};
|
|
479
|
+
};
|
|
467
480
|
contextMenu: {
|
|
468
481
|
minWidth: string;
|
|
469
482
|
panelPadding: string;
|