@codemonster-ru/vueforge 0.68.0 → 0.70.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 +77 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.ts.mjs +1966 -1855
- package/dist/index.ts.umd.js +4 -4
- package/dist/package/components/__tests__/divider.test.d.ts +1 -0
- package/dist/package/components/__tests__/spinner.test.d.ts +1 -0
- package/dist/package/components/divider.vue.d.ts +32 -0
- package/dist/package/components/spinner.vue.d.ts +33 -0
- package/dist/package/config/theme-core.d.ts +48 -0
- package/dist/package/themes/default/components/divider.d.ts +11 -0
- package/dist/package/themes/default/components/spinner.d.ts +37 -0
- package/dist/package/themes/default/index.d.ts +46 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
type Orientation = 'horizontal' | 'vertical';
|
|
2
|
+
type Variant = 'solid' | 'dashed' | 'dotted';
|
|
3
|
+
interface Props {
|
|
4
|
+
orientation?: Orientation;
|
|
5
|
+
variant?: Variant;
|
|
6
|
+
inset?: boolean;
|
|
7
|
+
label?: string;
|
|
8
|
+
ariaLabel?: string;
|
|
9
|
+
}
|
|
10
|
+
declare function __VLS_template(): {
|
|
11
|
+
attrs: Partial<{}>;
|
|
12
|
+
slots: {
|
|
13
|
+
default?(_: {}): any;
|
|
14
|
+
};
|
|
15
|
+
refs: {};
|
|
16
|
+
rootEl: HTMLDivElement;
|
|
17
|
+
};
|
|
18
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
20
|
+
label: string;
|
|
21
|
+
orientation: Orientation;
|
|
22
|
+
variant: Variant;
|
|
23
|
+
ariaLabel: string;
|
|
24
|
+
inset: boolean;
|
|
25
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
26
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
27
|
+
export default _default;
|
|
28
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
29
|
+
new (): {
|
|
30
|
+
$slots: S;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
type SpinnerVariant = 'inline' | 'overlay';
|
|
2
|
+
type SpinnerSize = 'small' | 'normal' | 'large';
|
|
3
|
+
type SpinnerSeverity = 'neutral' | 'info' | 'success' | 'warn' | 'danger';
|
|
4
|
+
interface Props {
|
|
5
|
+
variant?: SpinnerVariant;
|
|
6
|
+
size?: SpinnerSize;
|
|
7
|
+
severity?: SpinnerSeverity;
|
|
8
|
+
label?: string;
|
|
9
|
+
ariaLabel?: string;
|
|
10
|
+
}
|
|
11
|
+
declare function __VLS_template(): {
|
|
12
|
+
attrs: Partial<{}>;
|
|
13
|
+
slots: {
|
|
14
|
+
default?(_: {}): any;
|
|
15
|
+
};
|
|
16
|
+
refs: {};
|
|
17
|
+
rootEl: HTMLDivElement;
|
|
18
|
+
};
|
|
19
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
21
|
+
label: string;
|
|
22
|
+
size: SpinnerSize;
|
|
23
|
+
variant: SpinnerVariant;
|
|
24
|
+
severity: SpinnerSeverity;
|
|
25
|
+
ariaLabel: string;
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
27
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
30
|
+
new (): {
|
|
31
|
+
$slots: S;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
@@ -503,6 +503,16 @@ export type BreadcrumbsTokens = {
|
|
|
503
503
|
separatorColor?: string;
|
|
504
504
|
disabledOpacity?: string;
|
|
505
505
|
};
|
|
506
|
+
export type DividerTokens = {
|
|
507
|
+
color?: string;
|
|
508
|
+
textColor?: string;
|
|
509
|
+
thickness?: string;
|
|
510
|
+
minLength?: string;
|
|
511
|
+
gap?: string;
|
|
512
|
+
inset?: string;
|
|
513
|
+
labelPadding?: string;
|
|
514
|
+
labelFontSize?: string;
|
|
515
|
+
};
|
|
506
516
|
export type MenuTokens = {
|
|
507
517
|
iconGap?: string;
|
|
508
518
|
submenuOffset?: string;
|
|
@@ -1413,6 +1423,42 @@ export type ProgressTokens = {
|
|
|
1413
1423
|
circularThickness?: string;
|
|
1414
1424
|
};
|
|
1415
1425
|
};
|
|
1426
|
+
export type SpinnerTokens = {
|
|
1427
|
+
size?: string;
|
|
1428
|
+
thickness?: string;
|
|
1429
|
+
color?: string;
|
|
1430
|
+
trackColor?: string;
|
|
1431
|
+
gap?: string;
|
|
1432
|
+
labelColor?: string;
|
|
1433
|
+
labelFontSize?: string;
|
|
1434
|
+
animationDuration?: string;
|
|
1435
|
+
overlayMinHeight?: string;
|
|
1436
|
+
overlayPadding?: string;
|
|
1437
|
+
overlayBorderRadius?: string;
|
|
1438
|
+
overlayBackgroundColor?: string;
|
|
1439
|
+
info?: {
|
|
1440
|
+
color?: string;
|
|
1441
|
+
};
|
|
1442
|
+
success?: {
|
|
1443
|
+
color?: string;
|
|
1444
|
+
};
|
|
1445
|
+
warn?: {
|
|
1446
|
+
color?: string;
|
|
1447
|
+
};
|
|
1448
|
+
danger?: {
|
|
1449
|
+
color?: string;
|
|
1450
|
+
};
|
|
1451
|
+
small?: {
|
|
1452
|
+
size?: string;
|
|
1453
|
+
thickness?: string;
|
|
1454
|
+
labelFontSize?: string;
|
|
1455
|
+
};
|
|
1456
|
+
large?: {
|
|
1457
|
+
size?: string;
|
|
1458
|
+
thickness?: string;
|
|
1459
|
+
labelFontSize?: string;
|
|
1460
|
+
};
|
|
1461
|
+
};
|
|
1416
1462
|
export type SliderTokens = {
|
|
1417
1463
|
width?: string;
|
|
1418
1464
|
gap?: string;
|
|
@@ -2061,6 +2107,7 @@ export type ThemeComponentTokens = {
|
|
|
2061
2107
|
fileUpload?: FileUploadTokens;
|
|
2062
2108
|
link?: LinkTokens;
|
|
2063
2109
|
breadcrumbs?: BreadcrumbsTokens;
|
|
2110
|
+
divider?: DividerTokens;
|
|
2064
2111
|
menu?: MenuTokens;
|
|
2065
2112
|
modal?: ModalTokens;
|
|
2066
2113
|
confirmDialog?: ConfirmDialogTokens;
|
|
@@ -2090,6 +2137,7 @@ export type ThemeComponentTokens = {
|
|
|
2090
2137
|
tour?: TourTokens;
|
|
2091
2138
|
skeleton?: SkeletonTokens;
|
|
2092
2139
|
progress?: ProgressTokens;
|
|
2140
|
+
spinner?: SpinnerTokens;
|
|
2093
2141
|
slider?: SliderTokens;
|
|
2094
2142
|
splitter?: SplitterTokens;
|
|
2095
2143
|
stepper?: StepperTokens;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
size: string;
|
|
3
|
+
thickness: string;
|
|
4
|
+
color: string;
|
|
5
|
+
trackColor: string;
|
|
6
|
+
gap: string;
|
|
7
|
+
labelColor: string;
|
|
8
|
+
labelFontSize: string;
|
|
9
|
+
animationDuration: string;
|
|
10
|
+
overlayMinHeight: string;
|
|
11
|
+
overlayPadding: string;
|
|
12
|
+
overlayBorderRadius: string;
|
|
13
|
+
overlayBackgroundColor: string;
|
|
14
|
+
info: {
|
|
15
|
+
color: string;
|
|
16
|
+
};
|
|
17
|
+
success: {
|
|
18
|
+
color: string;
|
|
19
|
+
};
|
|
20
|
+
warn: {
|
|
21
|
+
color: string;
|
|
22
|
+
};
|
|
23
|
+
danger: {
|
|
24
|
+
color: string;
|
|
25
|
+
};
|
|
26
|
+
small: {
|
|
27
|
+
size: string;
|
|
28
|
+
thickness: string;
|
|
29
|
+
labelFontSize: string;
|
|
30
|
+
};
|
|
31
|
+
large: {
|
|
32
|
+
size: string;
|
|
33
|
+
thickness: string;
|
|
34
|
+
labelFontSize: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
export default _default;
|
|
@@ -660,6 +660,16 @@ declare const _default: {
|
|
|
660
660
|
separatorColor: string;
|
|
661
661
|
disabledOpacity: string;
|
|
662
662
|
};
|
|
663
|
+
divider: {
|
|
664
|
+
color: string;
|
|
665
|
+
textColor: string;
|
|
666
|
+
thickness: string;
|
|
667
|
+
minLength: string;
|
|
668
|
+
gap: string;
|
|
669
|
+
inset: string;
|
|
670
|
+
labelPadding: string;
|
|
671
|
+
labelFontSize: string;
|
|
672
|
+
};
|
|
663
673
|
menu: {
|
|
664
674
|
iconGap: string;
|
|
665
675
|
submenuOffset: string;
|
|
@@ -1976,6 +1986,42 @@ declare const _default: {
|
|
|
1976
1986
|
statusSize: string;
|
|
1977
1987
|
};
|
|
1978
1988
|
};
|
|
1989
|
+
spinner: {
|
|
1990
|
+
size: string;
|
|
1991
|
+
thickness: string;
|
|
1992
|
+
color: string;
|
|
1993
|
+
trackColor: string;
|
|
1994
|
+
gap: string;
|
|
1995
|
+
labelColor: string;
|
|
1996
|
+
labelFontSize: string;
|
|
1997
|
+
animationDuration: string;
|
|
1998
|
+
overlayMinHeight: string;
|
|
1999
|
+
overlayPadding: string;
|
|
2000
|
+
overlayBorderRadius: string;
|
|
2001
|
+
overlayBackgroundColor: string;
|
|
2002
|
+
info: {
|
|
2003
|
+
color: string;
|
|
2004
|
+
};
|
|
2005
|
+
success: {
|
|
2006
|
+
color: string;
|
|
2007
|
+
};
|
|
2008
|
+
warn: {
|
|
2009
|
+
color: string;
|
|
2010
|
+
};
|
|
2011
|
+
danger: {
|
|
2012
|
+
color: string;
|
|
2013
|
+
};
|
|
2014
|
+
small: {
|
|
2015
|
+
size: string;
|
|
2016
|
+
thickness: string;
|
|
2017
|
+
labelFontSize: string;
|
|
2018
|
+
};
|
|
2019
|
+
large: {
|
|
2020
|
+
size: string;
|
|
2021
|
+
thickness: string;
|
|
2022
|
+
labelFontSize: string;
|
|
2023
|
+
};
|
|
2024
|
+
};
|
|
1979
2025
|
slider: {
|
|
1980
2026
|
width: string;
|
|
1981
2027
|
gap: string;
|