@codemonster-ru/vueforge 0.57.0 → 0.58.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,48 @@
1
+ type TimelineOrientation = 'vertical' | 'horizontal';
2
+ type TimelineSize = 'small' | 'normal' | 'large';
3
+ type TimelineStatus = 'neutral' | 'info' | 'success' | 'warn' | 'danger';
4
+ export interface TimelineItem {
5
+ id?: string | number;
6
+ title?: string;
7
+ description?: string;
8
+ date?: string;
9
+ icon?: string;
10
+ status?: TimelineStatus;
11
+ }
12
+ interface Props {
13
+ items?: Array<TimelineItem>;
14
+ orientation?: TimelineOrientation;
15
+ size?: TimelineSize;
16
+ ariaLabel?: string;
17
+ ariaLabelledby?: string;
18
+ }
19
+ declare function __VLS_template(): {
20
+ attrs: Partial<{}>;
21
+ slots: {
22
+ marker?(_: {
23
+ item: TimelineItem;
24
+ index: number;
25
+ }): any;
26
+ item?(_: {
27
+ item: TimelineItem;
28
+ index: number;
29
+ }): any;
30
+ };
31
+ refs: {};
32
+ rootEl: HTMLElement;
33
+ };
34
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
35
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
36
+ items: Array<TimelineItem>;
37
+ orientation: TimelineOrientation;
38
+ size: TimelineSize;
39
+ ariaLabel: string;
40
+ ariaLabelledby: string;
41
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
42
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
43
+ export default _default;
44
+ type __VLS_WithTemplateSlots<T, S> = T & {
45
+ new (): {
46
+ $slots: S;
47
+ };
48
+ };
@@ -1420,6 +1420,71 @@ export type StepperTokens = {
1420
1420
  itemGap?: string;
1421
1421
  };
1422
1422
  };
1423
+ export type TimelineTokens = {
1424
+ gap?: string;
1425
+ itemGap?: string;
1426
+ markerSize?: string;
1427
+ markerBorderRadius?: string;
1428
+ markerBorderWidth?: string;
1429
+ markerBackgroundColor?: string;
1430
+ markerBorderColor?: string;
1431
+ markerTextColor?: string;
1432
+ markerIconSize?: string;
1433
+ dotSize?: string;
1434
+ lineThickness?: string;
1435
+ lineLength?: string;
1436
+ lineColor?: string;
1437
+ titleFontSize?: string;
1438
+ titleColor?: string;
1439
+ descriptionFontSize?: string;
1440
+ descriptionColor?: string;
1441
+ dateFontSize?: string;
1442
+ dateColor?: string;
1443
+ info?: {
1444
+ markerBackgroundColor?: string;
1445
+ markerBorderColor?: string;
1446
+ markerTextColor?: string;
1447
+ lineColor?: string;
1448
+ };
1449
+ success?: {
1450
+ markerBackgroundColor?: string;
1451
+ markerBorderColor?: string;
1452
+ markerTextColor?: string;
1453
+ lineColor?: string;
1454
+ };
1455
+ warn?: {
1456
+ markerBackgroundColor?: string;
1457
+ markerBorderColor?: string;
1458
+ markerTextColor?: string;
1459
+ lineColor?: string;
1460
+ };
1461
+ danger?: {
1462
+ markerBackgroundColor?: string;
1463
+ markerBorderColor?: string;
1464
+ markerTextColor?: string;
1465
+ lineColor?: string;
1466
+ };
1467
+ small?: {
1468
+ itemGap?: string;
1469
+ markerSize?: string;
1470
+ markerIconSize?: string;
1471
+ dotSize?: string;
1472
+ lineLength?: string;
1473
+ dateFontSize?: string;
1474
+ titleFontSize?: string;
1475
+ descriptionFontSize?: string;
1476
+ };
1477
+ large?: {
1478
+ itemGap?: string;
1479
+ markerSize?: string;
1480
+ markerIconSize?: string;
1481
+ dotSize?: string;
1482
+ lineLength?: string;
1483
+ dateFontSize?: string;
1484
+ titleFontSize?: string;
1485
+ descriptionFontSize?: string;
1486
+ };
1487
+ };
1423
1488
  export type DataTableTokens = {
1424
1489
  borderColor?: string;
1425
1490
  borderRadius?: string;
@@ -1726,6 +1791,7 @@ export type ThemeComponentTokens = {
1726
1791
  progress?: ProgressTokens;
1727
1792
  slider?: SliderTokens;
1728
1793
  stepper?: StepperTokens;
1794
+ timeline?: TimelineTokens;
1729
1795
  datatable?: DataTableTokens;
1730
1796
  toast?: ToastTokens;
1731
1797
  alert?: AlertTokens;
@@ -0,0 +1,66 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ itemGap: string;
4
+ markerSize: string;
5
+ markerBorderRadius: string;
6
+ markerBorderWidth: string;
7
+ markerBackgroundColor: string;
8
+ markerBorderColor: string;
9
+ markerTextColor: string;
10
+ markerIconSize: string;
11
+ dotSize: string;
12
+ lineThickness: string;
13
+ lineLength: string;
14
+ lineColor: string;
15
+ titleFontSize: string;
16
+ titleColor: string;
17
+ descriptionFontSize: string;
18
+ descriptionColor: string;
19
+ dateFontSize: string;
20
+ dateColor: string;
21
+ info: {
22
+ markerBackgroundColor: string;
23
+ markerBorderColor: string;
24
+ markerTextColor: string;
25
+ lineColor: string;
26
+ };
27
+ success: {
28
+ markerBackgroundColor: string;
29
+ markerBorderColor: string;
30
+ markerTextColor: string;
31
+ lineColor: string;
32
+ };
33
+ warn: {
34
+ markerBackgroundColor: string;
35
+ markerBorderColor: string;
36
+ markerTextColor: string;
37
+ lineColor: string;
38
+ };
39
+ danger: {
40
+ markerBackgroundColor: string;
41
+ markerBorderColor: string;
42
+ markerTextColor: string;
43
+ lineColor: string;
44
+ };
45
+ small: {
46
+ itemGap: string;
47
+ markerSize: string;
48
+ markerIconSize: string;
49
+ dotSize: string;
50
+ lineLength: string;
51
+ dateFontSize: string;
52
+ titleFontSize: string;
53
+ descriptionFontSize: string;
54
+ };
55
+ large: {
56
+ itemGap: string;
57
+ markerSize: string;
58
+ markerIconSize: string;
59
+ dotSize: string;
60
+ lineLength: string;
61
+ dateFontSize: string;
62
+ titleFontSize: string;
63
+ descriptionFontSize: string;
64
+ };
65
+ };
66
+ export default _default;
@@ -1809,6 +1809,71 @@ declare const _default: {
1809
1809
  itemGap: string;
1810
1810
  };
1811
1811
  };
1812
+ timeline: {
1813
+ gap: string;
1814
+ itemGap: string;
1815
+ markerSize: string;
1816
+ markerBorderRadius: string;
1817
+ markerBorderWidth: string;
1818
+ markerBackgroundColor: string;
1819
+ markerBorderColor: string;
1820
+ markerTextColor: string;
1821
+ markerIconSize: string;
1822
+ dotSize: string;
1823
+ lineThickness: string;
1824
+ lineLength: string;
1825
+ lineColor: string;
1826
+ titleFontSize: string;
1827
+ titleColor: string;
1828
+ descriptionFontSize: string;
1829
+ descriptionColor: string;
1830
+ dateFontSize: string;
1831
+ dateColor: string;
1832
+ info: {
1833
+ markerBackgroundColor: string;
1834
+ markerBorderColor: string;
1835
+ markerTextColor: string;
1836
+ lineColor: string;
1837
+ };
1838
+ success: {
1839
+ markerBackgroundColor: string;
1840
+ markerBorderColor: string;
1841
+ markerTextColor: string;
1842
+ lineColor: string;
1843
+ };
1844
+ warn: {
1845
+ markerBackgroundColor: string;
1846
+ markerBorderColor: string;
1847
+ markerTextColor: string;
1848
+ lineColor: string;
1849
+ };
1850
+ danger: {
1851
+ markerBackgroundColor: string;
1852
+ markerBorderColor: string;
1853
+ markerTextColor: string;
1854
+ lineColor: string;
1855
+ };
1856
+ small: {
1857
+ itemGap: string;
1858
+ markerSize: string;
1859
+ markerIconSize: string;
1860
+ dotSize: string;
1861
+ lineLength: string;
1862
+ dateFontSize: string;
1863
+ titleFontSize: string;
1864
+ descriptionFontSize: string;
1865
+ };
1866
+ large: {
1867
+ itemGap: string;
1868
+ markerSize: string;
1869
+ markerIconSize: string;
1870
+ dotSize: string;
1871
+ lineLength: string;
1872
+ dateFontSize: string;
1873
+ titleFontSize: string;
1874
+ descriptionFontSize: string;
1875
+ };
1876
+ };
1812
1877
  rating: {
1813
1878
  gap: string;
1814
1879
  size: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemonster-ru/vueforge",
3
- "version": "0.57.0",
3
+ "version": "0.58.0",
4
4
  "description": "Open source UI components for Vue.js.",
5
5
  "license": "MIT",
6
6
  "author": "Kirill Kolesnikov",