@codemonster-ru/vueforge 0.59.0 → 0.61.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.
@@ -0,0 +1,35 @@
1
+ type Size = 'small' | 'normal' | 'large';
2
+ type Variant = 'filled' | 'outlined';
3
+ interface Props {
4
+ title?: string;
5
+ description?: string;
6
+ icon?: string;
7
+ size?: Size;
8
+ variant?: Variant;
9
+ }
10
+ declare function __VLS_template(): {
11
+ attrs: Partial<{}>;
12
+ slots: {
13
+ icon?(_: {}): any;
14
+ title?(_: {}): any;
15
+ default?(_: {}): any;
16
+ actions?(_: {}): any;
17
+ };
18
+ refs: {};
19
+ rootEl: HTMLDivElement;
20
+ };
21
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
22
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
23
+ title: string;
24
+ icon: string;
25
+ size: Size;
26
+ variant: Variant;
27
+ description: string;
28
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
29
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
30
+ export default _default;
31
+ type __VLS_WithTemplateSlots<T, S> = T & {
32
+ new (): {
33
+ $slots: S;
34
+ };
35
+ };
@@ -0,0 +1,22 @@
1
+ interface Props {
2
+ as?: string;
3
+ }
4
+ declare function __VLS_template(): {
5
+ attrs: Partial<{}>;
6
+ slots: {
7
+ default?(_: {}): any;
8
+ };
9
+ refs: {};
10
+ rootEl: any;
11
+ };
12
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
14
+ as: string;
15
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,28 @@
1
+ type Size = 'small' | 'normal' | 'large';
2
+ type Variant = 'filled' | 'outlined';
3
+ interface Props {
4
+ size?: Size;
5
+ variant?: Variant;
6
+ disabled?: boolean;
7
+ }
8
+ declare function __VLS_template(): {
9
+ attrs: Partial<{}>;
10
+ slots: {
11
+ default?(_: {}): any;
12
+ };
13
+ refs: {};
14
+ rootEl: HTMLDivElement;
15
+ };
16
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
17
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
18
+ disabled: boolean;
19
+ size: Size;
20
+ variant: Variant;
21
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
22
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
23
+ export default _default;
24
+ type __VLS_WithTemplateSlots<T, S> = T & {
25
+ new (): {
26
+ $slots: S;
27
+ };
28
+ };
@@ -77,6 +77,25 @@ export type InputTokens = {
77
77
  fontSize?: string;
78
78
  };
79
79
  };
80
+ export type InputGroupTokens = {
81
+ gap?: string;
82
+ borderRadius?: string;
83
+ addonPadding?: string;
84
+ addonFontSize?: string;
85
+ addonBackgroundColor?: string;
86
+ addonOutlinedBackgroundColor?: string;
87
+ addonTextColor?: string;
88
+ addonBorderColor?: string;
89
+ disabledOpacity?: string;
90
+ small?: {
91
+ addonPadding?: string;
92
+ addonFontSize?: string;
93
+ };
94
+ large?: {
95
+ addonPadding?: string;
96
+ addonFontSize?: string;
97
+ };
98
+ };
80
99
  export type InlineEditTokens = {
81
100
  gap?: string;
82
101
  fontSize?: string;
@@ -1603,6 +1622,38 @@ export type AlertTokens = {
1603
1622
  textColor?: string;
1604
1623
  };
1605
1624
  };
1625
+ export type EmptyStateTokens = {
1626
+ gap?: string;
1627
+ bodyGap?: string;
1628
+ padding?: string;
1629
+ borderRadius?: string;
1630
+ borderColor?: string;
1631
+ backgroundColor?: string;
1632
+ textColor?: string;
1633
+ maxWidth?: string;
1634
+ iconSize?: string;
1635
+ iconColor?: string;
1636
+ titleFontSize?: string;
1637
+ titleLineHeight?: string;
1638
+ titleFontWeight?: string;
1639
+ titleColor?: string;
1640
+ descriptionFontSize?: string;
1641
+ descriptionLineHeight?: string;
1642
+ descriptionColor?: string;
1643
+ actionsGap?: string;
1644
+ small?: {
1645
+ padding?: string;
1646
+ iconSize?: string;
1647
+ titleFontSize?: string;
1648
+ descriptionFontSize?: string;
1649
+ };
1650
+ large?: {
1651
+ padding?: string;
1652
+ iconSize?: string;
1653
+ titleFontSize?: string;
1654
+ descriptionFontSize?: string;
1655
+ };
1656
+ };
1606
1657
  export type BadgeSeverityTokens = {
1607
1658
  backgroundColor?: string;
1608
1659
  textColor?: string;
@@ -1758,6 +1809,7 @@ export type ThemeComponentTokens = {
1758
1809
  tabs?: TabsTokens;
1759
1810
  accordion?: AccordionTokens;
1760
1811
  input?: InputTokens;
1812
+ inputGroup?: InputGroupTokens;
1761
1813
  inlineEdit?: InlineEditTokens;
1762
1814
  searchInput?: SearchInputTokens;
1763
1815
  mentionInput?: MentionInputTokens;
@@ -1803,6 +1855,7 @@ export type ThemeComponentTokens = {
1803
1855
  datatable?: DataTableTokens;
1804
1856
  toast?: ToastTokens;
1805
1857
  alert?: AlertTokens;
1858
+ emptyState?: EmptyStateTokens;
1806
1859
  badge?: BadgeTokens;
1807
1860
  chip?: ChipTokens;
1808
1861
  filterChips?: FilterChipsTokens;
@@ -0,0 +1,33 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ bodyGap: string;
4
+ padding: string;
5
+ borderRadius: string;
6
+ borderColor: string;
7
+ backgroundColor: string;
8
+ textColor: string;
9
+ maxWidth: string;
10
+ iconSize: string;
11
+ iconColor: string;
12
+ titleFontSize: string;
13
+ titleLineHeight: string;
14
+ titleFontWeight: string;
15
+ titleColor: string;
16
+ descriptionFontSize: string;
17
+ descriptionLineHeight: string;
18
+ descriptionColor: string;
19
+ actionsGap: string;
20
+ small: {
21
+ padding: string;
22
+ iconSize: string;
23
+ titleFontSize: string;
24
+ descriptionFontSize: string;
25
+ };
26
+ large: {
27
+ padding: string;
28
+ iconSize: string;
29
+ titleFontSize: string;
30
+ descriptionFontSize: string;
31
+ };
32
+ };
33
+ export default _default;
@@ -0,0 +1,20 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ borderRadius: string;
4
+ addonPadding: string;
5
+ addonFontSize: string;
6
+ addonBackgroundColor: string;
7
+ addonOutlinedBackgroundColor: string;
8
+ addonTextColor: string;
9
+ addonBorderColor: string;
10
+ disabledOpacity: string;
11
+ small: {
12
+ addonPadding: string;
13
+ addonFontSize: string;
14
+ };
15
+ large: {
16
+ addonPadding: string;
17
+ addonFontSize: string;
18
+ };
19
+ };
20
+ export default _default;
@@ -234,6 +234,25 @@ declare const _default: {
234
234
  fontSize: string;
235
235
  };
236
236
  };
237
+ inputGroup: {
238
+ gap: string;
239
+ borderRadius: string;
240
+ addonPadding: string;
241
+ addonFontSize: string;
242
+ addonBackgroundColor: string;
243
+ addonOutlinedBackgroundColor: string;
244
+ addonTextColor: string;
245
+ addonBorderColor: string;
246
+ disabledOpacity: string;
247
+ small: {
248
+ addonPadding: string;
249
+ addonFontSize: string;
250
+ };
251
+ large: {
252
+ addonPadding: string;
253
+ addonFontSize: string;
254
+ };
255
+ };
237
256
  inlineEdit: {
238
257
  gap: string;
239
258
  fontSize: string;
@@ -1503,6 +1522,38 @@ declare const _default: {
1503
1522
  textColor: string;
1504
1523
  };
1505
1524
  };
1525
+ emptyState: {
1526
+ gap: string;
1527
+ bodyGap: string;
1528
+ padding: string;
1529
+ borderRadius: string;
1530
+ borderColor: string;
1531
+ backgroundColor: string;
1532
+ textColor: string;
1533
+ maxWidth: string;
1534
+ iconSize: string;
1535
+ iconColor: string;
1536
+ titleFontSize: string;
1537
+ titleLineHeight: string;
1538
+ titleFontWeight: string;
1539
+ titleColor: string;
1540
+ descriptionFontSize: string;
1541
+ descriptionLineHeight: string;
1542
+ descriptionColor: string;
1543
+ actionsGap: string;
1544
+ small: {
1545
+ padding: string;
1546
+ iconSize: string;
1547
+ titleFontSize: string;
1548
+ descriptionFontSize: string;
1549
+ };
1550
+ large: {
1551
+ padding: string;
1552
+ iconSize: string;
1553
+ titleFontSize: string;
1554
+ descriptionFontSize: string;
1555
+ };
1556
+ };
1506
1557
  progress: {
1507
1558
  width: string;
1508
1559
  height: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemonster-ru/vueforge",
3
- "version": "0.59.0",
3
+ "version": "0.61.0",
4
4
  "description": "Open source UI components for Vue.js.",
5
5
  "license": "MIT",
6
6
  "author": "Kirill Kolesnikov",