@codemonster-ru/vueforge 0.60.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
+ };
@@ -1622,6 +1622,38 @@ export type AlertTokens = {
1622
1622
  textColor?: string;
1623
1623
  };
1624
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
+ };
1625
1657
  export type BadgeSeverityTokens = {
1626
1658
  backgroundColor?: string;
1627
1659
  textColor?: string;
@@ -1823,6 +1855,7 @@ export type ThemeComponentTokens = {
1823
1855
  datatable?: DataTableTokens;
1824
1856
  toast?: ToastTokens;
1825
1857
  alert?: AlertTokens;
1858
+ emptyState?: EmptyStateTokens;
1826
1859
  badge?: BadgeTokens;
1827
1860
  chip?: ChipTokens;
1828
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;
@@ -1522,6 +1522,38 @@ declare const _default: {
1522
1522
  textColor: string;
1523
1523
  };
1524
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
+ };
1525
1557
  progress: {
1526
1558
  width: string;
1527
1559
  height: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemonster-ru/vueforge",
3
- "version": "0.60.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",