@codemonster-ru/vueforge 0.75.0 → 0.77.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 +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.ts.mjs +902 -830
- package/dist/index.ts.umd.js +4 -4
- package/dist/package/components/__tests__/inline.test.d.ts +1 -0
- package/dist/package/components/__tests__/stack.test.d.ts +1 -0
- package/dist/package/components/filter-chips.vue.d.ts +1 -1
- package/dist/package/components/inline.vue.d.ts +33 -0
- package/dist/package/components/stack.vue.d.ts +33 -0
- package/dist/package/config/theme-core.d.ts +14 -0
- package/dist/package/themes/default/components/inline.d.ts +7 -0
- package/dist/package/themes/default/components/stack.d.ts +7 -0
- package/dist/package/themes/default/index.d.ts +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -34,6 +34,7 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
34
34
|
}>, {
|
|
35
35
|
disabled: boolean;
|
|
36
36
|
size: FilterSize;
|
|
37
|
+
wrap: boolean;
|
|
37
38
|
variant: FilterVariant;
|
|
38
39
|
modelValue: FilterModel;
|
|
39
40
|
clearable: boolean;
|
|
@@ -44,6 +45,5 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
44
45
|
clearLabel: string;
|
|
45
46
|
allowEmpty: boolean;
|
|
46
47
|
clearText: string;
|
|
47
|
-
wrap: boolean;
|
|
48
48
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
49
49
|
export default _default;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
type Align = 'start' | 'center' | 'end' | 'stretch';
|
|
2
|
+
type Justify = 'start' | 'center' | 'end' | 'space-between' | 'space-around' | 'space-evenly';
|
|
3
|
+
type Wrap = 'nowrap' | 'wrap' | 'wrap-reverse';
|
|
4
|
+
interface Props {
|
|
5
|
+
as?: string;
|
|
6
|
+
gap?: string;
|
|
7
|
+
align?: Align;
|
|
8
|
+
justify?: Justify;
|
|
9
|
+
wrap?: Wrap;
|
|
10
|
+
}
|
|
11
|
+
declare function __VLS_template(): {
|
|
12
|
+
attrs: Partial<{}>;
|
|
13
|
+
slots: {
|
|
14
|
+
default?(_: {}): any;
|
|
15
|
+
};
|
|
16
|
+
refs: {};
|
|
17
|
+
rootEl: any;
|
|
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
|
+
as: string;
|
|
22
|
+
gap: string;
|
|
23
|
+
align: Align;
|
|
24
|
+
justify: Justify;
|
|
25
|
+
wrap: Wrap;
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
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
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
type Align = 'start' | 'center' | 'end' | 'stretch';
|
|
2
|
+
type Justify = 'start' | 'center' | 'end' | 'space-between' | 'space-around' | 'space-evenly';
|
|
3
|
+
type Wrap = 'nowrap' | 'wrap' | 'wrap-reverse';
|
|
4
|
+
interface Props {
|
|
5
|
+
as?: string;
|
|
6
|
+
gap?: string;
|
|
7
|
+
align?: Align;
|
|
8
|
+
justify?: Justify;
|
|
9
|
+
wrap?: Wrap;
|
|
10
|
+
}
|
|
11
|
+
declare function __VLS_template(): {
|
|
12
|
+
attrs: Partial<{}>;
|
|
13
|
+
slots: {
|
|
14
|
+
default?(_: {}): any;
|
|
15
|
+
};
|
|
16
|
+
refs: {};
|
|
17
|
+
rootEl: any;
|
|
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
|
+
as: string;
|
|
22
|
+
gap: string;
|
|
23
|
+
align: Align;
|
|
24
|
+
justify: Justify;
|
|
25
|
+
wrap: Wrap;
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
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
|
+
};
|
|
@@ -63,6 +63,18 @@ export type GridTokens = {
|
|
|
63
63
|
breakpointLg?: string;
|
|
64
64
|
breakpointXl?: string;
|
|
65
65
|
};
|
|
66
|
+
export type StackTokens = {
|
|
67
|
+
gap?: string;
|
|
68
|
+
alignItems?: string;
|
|
69
|
+
justifyContent?: string;
|
|
70
|
+
wrap?: string;
|
|
71
|
+
};
|
|
72
|
+
export type InlineTokens = {
|
|
73
|
+
gap?: string;
|
|
74
|
+
alignItems?: string;
|
|
75
|
+
justifyContent?: string;
|
|
76
|
+
wrap?: string;
|
|
77
|
+
};
|
|
66
78
|
export type CheckboxTokens = {
|
|
67
79
|
size?: string;
|
|
68
80
|
gap?: string;
|
|
@@ -2154,6 +2166,8 @@ export type ThemeComponentTokens = {
|
|
|
2154
2166
|
container?: ContainerTokens;
|
|
2155
2167
|
section?: SectionTokens;
|
|
2156
2168
|
grid?: GridTokens;
|
|
2169
|
+
stack?: StackTokens;
|
|
2170
|
+
inline?: InlineTokens;
|
|
2157
2171
|
checkbox?: CheckboxTokens;
|
|
2158
2172
|
radio?: RadioTokens;
|
|
2159
2173
|
tabs?: TabsTokens;
|
|
@@ -248,6 +248,18 @@ declare const _default: {
|
|
|
248
248
|
backgroundColorElevated: string;
|
|
249
249
|
borderColor: string;
|
|
250
250
|
};
|
|
251
|
+
stack: {
|
|
252
|
+
gap: string;
|
|
253
|
+
alignItems: string;
|
|
254
|
+
justifyContent: string;
|
|
255
|
+
wrap: string;
|
|
256
|
+
};
|
|
257
|
+
inline: {
|
|
258
|
+
gap: string;
|
|
259
|
+
alignItems: string;
|
|
260
|
+
justifyContent: string;
|
|
261
|
+
wrap: string;
|
|
262
|
+
};
|
|
251
263
|
input: {
|
|
252
264
|
gap: string;
|
|
253
265
|
fontSize: string;
|