@codemonster-ru/vueforge 0.59.0 → 0.60.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 +49 -2
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.ts.mjs +1193 -1139
- package/dist/index.ts.umd.js +3 -3
- package/dist/package/components/__tests__/input-group.test.d.ts +1 -0
- package/dist/package/components/input-addon.vue.d.ts +22 -0
- package/dist/package/components/input-group.vue.d.ts +28 -0
- package/dist/package/config/theme-core.d.ts +20 -0
- package/dist/package/themes/default/components/input-group.d.ts +20 -0
- package/dist/package/themes/default/index.d.ts +19 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -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;
|
|
@@ -1758,6 +1777,7 @@ export type ThemeComponentTokens = {
|
|
|
1758
1777
|
tabs?: TabsTokens;
|
|
1759
1778
|
accordion?: AccordionTokens;
|
|
1760
1779
|
input?: InputTokens;
|
|
1780
|
+
inputGroup?: InputGroupTokens;
|
|
1761
1781
|
inlineEdit?: InlineEditTokens;
|
|
1762
1782
|
searchInput?: SearchInputTokens;
|
|
1763
1783
|
mentionInput?: MentionInputTokens;
|
|
@@ -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;
|