@funcho/ui 1.1.38 → 1.1.39
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/dist/cjs/business/DataTable/DataTable.vue.js +2 -0
- package/dist/cjs/business/EditFormCard/EditFormCard.vue.js +2 -0
- package/dist/cjs/business/ProForm/ProForm.vue.js +2 -0
- package/dist/cjs/business/QueryForm/QueryForm.vue.js +2 -0
- package/dist/cjs/business/SidebarMainLayout/SidebarMainLayout.vue.js +2 -0
- package/dist/cjs/business/TreeCheckFilter/TreeCheckFilter.vue.js +2 -0
- package/dist/cjs/business/TreeTransfer/TreeTransfer.vue.js +2 -0
- package/dist/cjs/components/Col/Col.vue.js +48 -0
- package/dist/cjs/components/Col/Col.vue3.js +10 -0
- package/dist/cjs/components/Col/index.js +12 -0
- package/dist/cjs/components/Row/Row.vue.js +48 -0
- package/dist/cjs/components/Row/Row.vue3.js +10 -0
- package/dist/cjs/components/Row/index.js +12 -0
- package/dist/cjs/components/index.js +4 -0
- package/dist/cjs/index.js +32 -28
- package/dist/cjs/node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/col/index.js +6 -1
- package/dist/cjs/node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/row/index.js +6 -1
- package/dist/cjs/packages/ui/package.json.js +1 -1
- package/dist/esm/business/DataTable/DataTable.vue.mjs +2 -0
- package/dist/esm/business/EditFormCard/EditFormCard.vue.mjs +2 -0
- package/dist/esm/business/ProForm/ProForm.vue.mjs +2 -0
- package/dist/esm/business/QueryForm/QueryForm.vue.mjs +2 -0
- package/dist/esm/business/SidebarMainLayout/SidebarMainLayout.vue.mjs +2 -0
- package/dist/esm/business/TreeCheckFilter/TreeCheckFilter.vue.mjs +2 -0
- package/dist/esm/business/TreeTransfer/TreeTransfer.vue.mjs +2 -0
- package/dist/esm/components/Col/Col.vue.mjs +44 -0
- package/dist/esm/components/Col/Col.vue3.mjs +6 -0
- package/dist/esm/components/Col/index.mjs +7 -0
- package/dist/esm/components/Row/Row.vue.mjs +44 -0
- package/dist/esm/components/Row/Row.vue3.mjs +6 -0
- package/dist/esm/components/Row/index.mjs +7 -0
- package/dist/esm/components/index.mjs +2 -0
- package/dist/esm/index.mjs +2 -0
- package/dist/esm/node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/col/index.mjs +3 -1
- package/dist/esm/node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/row/index.mjs +3 -1
- package/dist/esm/packages/ui/package.json.mjs +1 -1
- package/dist/style.css +9 -1
- package/dist/types/components/Col/Col.types.d.ts +1 -0
- package/dist/types/components/Col/Col.vue.d.ts +481 -0
- package/dist/types/components/Col/index.d.ts +565 -0
- package/dist/types/components/Row/Row.types.d.ts +1 -0
- package/dist/types/components/Row/Row.vue.d.ts +276 -0
- package/dist/types/components/Row/index.d.ts +335 -0
- package/dist/types/components/index.d.ts +2 -0
- package/package.json +3 -3
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: any;
|
|
4
|
+
refs: {
|
|
5
|
+
elRef: ({
|
|
6
|
+
$: import('vue').ComponentInternalInstance;
|
|
7
|
+
$data: {};
|
|
8
|
+
$props: Partial<{
|
|
9
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
10
|
+
tag: string;
|
|
11
|
+
gutter: number;
|
|
12
|
+
}> & Omit<{
|
|
13
|
+
readonly tag: string;
|
|
14
|
+
readonly gutter: number;
|
|
15
|
+
readonly justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
16
|
+
readonly align?: ("top" | "bottom" | "middle") | undefined;
|
|
17
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "tag" | "gutter" | "justify">;
|
|
18
|
+
$attrs: {
|
|
19
|
+
[x: string]: unknown;
|
|
20
|
+
};
|
|
21
|
+
$refs: {
|
|
22
|
+
[x: string]: unknown;
|
|
23
|
+
};
|
|
24
|
+
$slots: Readonly<{
|
|
25
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
26
|
+
}>;
|
|
27
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
28
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
29
|
+
$host: Element | null;
|
|
30
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
31
|
+
$el: any;
|
|
32
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
33
|
+
tag: {
|
|
34
|
+
type: import('vue').PropType<string>;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
align: {
|
|
38
|
+
type: import('vue').PropType<"top" | "bottom" | "middle">;
|
|
39
|
+
};
|
|
40
|
+
gutter: {
|
|
41
|
+
type: import('vue').PropType<number>;
|
|
42
|
+
default: number;
|
|
43
|
+
};
|
|
44
|
+
justify: {
|
|
45
|
+
type: import('vue').PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly">;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
48
|
+
}>>, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
49
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
50
|
+
tag: string;
|
|
51
|
+
gutter: number;
|
|
52
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
53
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
54
|
+
created?: (() => void) | (() => void)[];
|
|
55
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
56
|
+
mounted?: (() => void) | (() => void)[];
|
|
57
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
58
|
+
updated?: (() => void) | (() => void)[];
|
|
59
|
+
activated?: (() => void) | (() => void)[];
|
|
60
|
+
deactivated?: (() => void) | (() => void)[];
|
|
61
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
62
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
63
|
+
destroyed?: (() => void) | (() => void)[];
|
|
64
|
+
unmounted?: (() => void) | (() => void)[];
|
|
65
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
66
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
67
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
68
|
+
};
|
|
69
|
+
$forceUpdate: () => void;
|
|
70
|
+
$nextTick: typeof import('vue').nextTick;
|
|
71
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
72
|
+
} & Readonly<{
|
|
73
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
74
|
+
tag: string;
|
|
75
|
+
gutter: number;
|
|
76
|
+
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
77
|
+
tag: {
|
|
78
|
+
type: import('vue').PropType<string>;
|
|
79
|
+
default: string;
|
|
80
|
+
};
|
|
81
|
+
align: {
|
|
82
|
+
type: import('vue').PropType<"top" | "bottom" | "middle">;
|
|
83
|
+
};
|
|
84
|
+
gutter: {
|
|
85
|
+
type: import('vue').PropType<number>;
|
|
86
|
+
default: number;
|
|
87
|
+
};
|
|
88
|
+
justify: {
|
|
89
|
+
type: import('vue').PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly">;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
92
|
+
}>>, "tag" | "gutter" | "justify"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
93
|
+
$slots: {
|
|
94
|
+
default?: (props: {}) => any;
|
|
95
|
+
};
|
|
96
|
+
}) | null;
|
|
97
|
+
};
|
|
98
|
+
rootEl: any;
|
|
99
|
+
};
|
|
100
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
101
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
102
|
+
$: import('vue').ComponentInternalInstance;
|
|
103
|
+
$data: {};
|
|
104
|
+
$props: Partial<{
|
|
105
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
106
|
+
tag: string;
|
|
107
|
+
gutter: number;
|
|
108
|
+
}> & Omit<{
|
|
109
|
+
readonly tag: string;
|
|
110
|
+
readonly gutter: number;
|
|
111
|
+
readonly justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
112
|
+
readonly align?: ("top" | "bottom" | "middle") | undefined;
|
|
113
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "tag" | "gutter" | "justify">;
|
|
114
|
+
$attrs: {
|
|
115
|
+
[x: string]: unknown;
|
|
116
|
+
};
|
|
117
|
+
$refs: {
|
|
118
|
+
[x: string]: unknown;
|
|
119
|
+
};
|
|
120
|
+
$slots: Readonly<{
|
|
121
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
122
|
+
}> & {
|
|
123
|
+
default?: (props: {}) => any;
|
|
124
|
+
};
|
|
125
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
126
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
127
|
+
$host: Element | null;
|
|
128
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
129
|
+
$el: any;
|
|
130
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
131
|
+
tag: {
|
|
132
|
+
type: import('vue').PropType<string>;
|
|
133
|
+
default: string;
|
|
134
|
+
};
|
|
135
|
+
align: {
|
|
136
|
+
type: import('vue').PropType<"top" | "bottom" | "middle">;
|
|
137
|
+
};
|
|
138
|
+
gutter: {
|
|
139
|
+
type: import('vue').PropType<number>;
|
|
140
|
+
default: number;
|
|
141
|
+
};
|
|
142
|
+
justify: {
|
|
143
|
+
type: import('vue').PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly">;
|
|
144
|
+
default: string;
|
|
145
|
+
};
|
|
146
|
+
}>>, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
147
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
148
|
+
tag: string;
|
|
149
|
+
gutter: number;
|
|
150
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
151
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
152
|
+
created?: (() => void) | (() => void)[];
|
|
153
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
154
|
+
mounted?: (() => void) | (() => void)[];
|
|
155
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
156
|
+
updated?: (() => void) | (() => void)[];
|
|
157
|
+
activated?: (() => void) | (() => void)[];
|
|
158
|
+
deactivated?: (() => void) | (() => void)[];
|
|
159
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
160
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
161
|
+
destroyed?: (() => void) | (() => void)[];
|
|
162
|
+
unmounted?: (() => void) | (() => void)[];
|
|
163
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
164
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
165
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
166
|
+
};
|
|
167
|
+
$forceUpdate: () => void;
|
|
168
|
+
$nextTick: typeof import('vue').nextTick;
|
|
169
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
170
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
171
|
+
tag: string;
|
|
172
|
+
gutter: number;
|
|
173
|
+
align?: "top" | "bottom" | "middle";
|
|
174
|
+
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
175
|
+
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
176
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
177
|
+
elRef: ({
|
|
178
|
+
$: import('vue').ComponentInternalInstance;
|
|
179
|
+
$data: {};
|
|
180
|
+
$props: Partial<{
|
|
181
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
182
|
+
tag: string;
|
|
183
|
+
gutter: number;
|
|
184
|
+
}> & Omit<{
|
|
185
|
+
readonly tag: string;
|
|
186
|
+
readonly gutter: number;
|
|
187
|
+
readonly justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
188
|
+
readonly align?: ("top" | "bottom" | "middle") | undefined;
|
|
189
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "tag" | "gutter" | "justify">;
|
|
190
|
+
$attrs: {
|
|
191
|
+
[x: string]: unknown;
|
|
192
|
+
};
|
|
193
|
+
$refs: {
|
|
194
|
+
[x: string]: unknown;
|
|
195
|
+
};
|
|
196
|
+
$slots: Readonly<{
|
|
197
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
198
|
+
}>;
|
|
199
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
200
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
201
|
+
$host: Element | null;
|
|
202
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
203
|
+
$el: any;
|
|
204
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
205
|
+
tag: {
|
|
206
|
+
type: import('vue').PropType<string>;
|
|
207
|
+
default: string;
|
|
208
|
+
};
|
|
209
|
+
align: {
|
|
210
|
+
type: import('vue').PropType<"top" | "bottom" | "middle">;
|
|
211
|
+
};
|
|
212
|
+
gutter: {
|
|
213
|
+
type: import('vue').PropType<number>;
|
|
214
|
+
default: number;
|
|
215
|
+
};
|
|
216
|
+
justify: {
|
|
217
|
+
type: import('vue').PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly">;
|
|
218
|
+
default: string;
|
|
219
|
+
};
|
|
220
|
+
}>>, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
221
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
222
|
+
tag: string;
|
|
223
|
+
gutter: number;
|
|
224
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
225
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
226
|
+
created?: (() => void) | (() => void)[];
|
|
227
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
228
|
+
mounted?: (() => void) | (() => void)[];
|
|
229
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
230
|
+
updated?: (() => void) | (() => void)[];
|
|
231
|
+
activated?: (() => void) | (() => void)[];
|
|
232
|
+
deactivated?: (() => void) | (() => void)[];
|
|
233
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
234
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
235
|
+
destroyed?: (() => void) | (() => void)[];
|
|
236
|
+
unmounted?: (() => void) | (() => void)[];
|
|
237
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
238
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
239
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
240
|
+
};
|
|
241
|
+
$forceUpdate: () => void;
|
|
242
|
+
$nextTick: typeof import('vue').nextTick;
|
|
243
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
244
|
+
} & Readonly<{
|
|
245
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
246
|
+
tag: string;
|
|
247
|
+
gutter: number;
|
|
248
|
+
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
249
|
+
tag: {
|
|
250
|
+
type: import('vue').PropType<string>;
|
|
251
|
+
default: string;
|
|
252
|
+
};
|
|
253
|
+
align: {
|
|
254
|
+
type: import('vue').PropType<"top" | "bottom" | "middle">;
|
|
255
|
+
};
|
|
256
|
+
gutter: {
|
|
257
|
+
type: import('vue').PropType<number>;
|
|
258
|
+
default: number;
|
|
259
|
+
};
|
|
260
|
+
justify: {
|
|
261
|
+
type: import('vue').PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly">;
|
|
262
|
+
default: string;
|
|
263
|
+
};
|
|
264
|
+
}>>, "tag" | "gutter" | "justify"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
265
|
+
$slots: {
|
|
266
|
+
default?: (props: {}) => any;
|
|
267
|
+
};
|
|
268
|
+
}) | null;
|
|
269
|
+
}, any>;
|
|
270
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
271
|
+
export default _default;
|
|
272
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
273
|
+
new (): {
|
|
274
|
+
$slots: S;
|
|
275
|
+
};
|
|
276
|
+
};
|
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
export declare const FcRow: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
3
|
+
$: import('vue').ComponentInternalInstance;
|
|
4
|
+
$data: {};
|
|
5
|
+
$props: Partial<{
|
|
6
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
7
|
+
tag: string;
|
|
8
|
+
gutter: number;
|
|
9
|
+
}> & Omit<{
|
|
10
|
+
readonly tag: string;
|
|
11
|
+
readonly gutter: number;
|
|
12
|
+
readonly justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
13
|
+
readonly align?: ("top" | "bottom" | "middle") | undefined;
|
|
14
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "tag" | "gutter" | "justify">;
|
|
15
|
+
$attrs: {
|
|
16
|
+
[x: string]: unknown;
|
|
17
|
+
};
|
|
18
|
+
$refs: {
|
|
19
|
+
[x: string]: unknown;
|
|
20
|
+
};
|
|
21
|
+
$slots: Readonly<{
|
|
22
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
23
|
+
}> & {
|
|
24
|
+
default?: (props: {}) => any;
|
|
25
|
+
};
|
|
26
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
27
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
28
|
+
$host: Element | null;
|
|
29
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
30
|
+
$el: any;
|
|
31
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
32
|
+
tag: {
|
|
33
|
+
type: import('vue').PropType<string>;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
align: {
|
|
37
|
+
type: import('vue').PropType<"top" | "bottom" | "middle">;
|
|
38
|
+
};
|
|
39
|
+
gutter: {
|
|
40
|
+
type: import('vue').PropType<number>;
|
|
41
|
+
default: number;
|
|
42
|
+
};
|
|
43
|
+
justify: {
|
|
44
|
+
type: import('vue').PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly">;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
}>>, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
48
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
49
|
+
tag: string;
|
|
50
|
+
gutter: number;
|
|
51
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
52
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
53
|
+
created?: (() => void) | (() => void)[];
|
|
54
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
55
|
+
mounted?: (() => void) | (() => void)[];
|
|
56
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
57
|
+
updated?: (() => void) | (() => void)[];
|
|
58
|
+
activated?: (() => void) | (() => void)[];
|
|
59
|
+
deactivated?: (() => void) | (() => void)[];
|
|
60
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
61
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
62
|
+
destroyed?: (() => void) | (() => void)[];
|
|
63
|
+
unmounted?: (() => void) | (() => void)[];
|
|
64
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
65
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
66
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
67
|
+
};
|
|
68
|
+
$forceUpdate: () => void;
|
|
69
|
+
$nextTick: typeof import('vue').nextTick;
|
|
70
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
71
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
72
|
+
tag: string;
|
|
73
|
+
gutter: number;
|
|
74
|
+
align?: "top" | "bottom" | "middle";
|
|
75
|
+
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
76
|
+
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
77
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
78
|
+
elRef: ({
|
|
79
|
+
$: import('vue').ComponentInternalInstance;
|
|
80
|
+
$data: {};
|
|
81
|
+
$props: Partial<{
|
|
82
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
83
|
+
tag: string;
|
|
84
|
+
gutter: number;
|
|
85
|
+
}> & Omit<{
|
|
86
|
+
readonly tag: string;
|
|
87
|
+
readonly gutter: number;
|
|
88
|
+
readonly justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
89
|
+
readonly align?: ("top" | "bottom" | "middle") | undefined;
|
|
90
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "tag" | "gutter" | "justify">;
|
|
91
|
+
$attrs: {
|
|
92
|
+
[x: string]: unknown;
|
|
93
|
+
};
|
|
94
|
+
$refs: {
|
|
95
|
+
[x: string]: unknown;
|
|
96
|
+
};
|
|
97
|
+
$slots: Readonly<{
|
|
98
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
99
|
+
}>;
|
|
100
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
101
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
102
|
+
$host: Element | null;
|
|
103
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
104
|
+
$el: any;
|
|
105
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
106
|
+
tag: {
|
|
107
|
+
type: import('vue').PropType<string>;
|
|
108
|
+
default: string;
|
|
109
|
+
};
|
|
110
|
+
align: {
|
|
111
|
+
type: import('vue').PropType<"top" | "bottom" | "middle">;
|
|
112
|
+
};
|
|
113
|
+
gutter: {
|
|
114
|
+
type: import('vue').PropType<number>;
|
|
115
|
+
default: number;
|
|
116
|
+
};
|
|
117
|
+
justify: {
|
|
118
|
+
type: import('vue').PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly">;
|
|
119
|
+
default: string;
|
|
120
|
+
};
|
|
121
|
+
}>>, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
122
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
123
|
+
tag: string;
|
|
124
|
+
gutter: number;
|
|
125
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
126
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
127
|
+
created?: (() => void) | (() => void)[];
|
|
128
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
129
|
+
mounted?: (() => void) | (() => void)[];
|
|
130
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
131
|
+
updated?: (() => void) | (() => void)[];
|
|
132
|
+
activated?: (() => void) | (() => void)[];
|
|
133
|
+
deactivated?: (() => void) | (() => void)[];
|
|
134
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
135
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
136
|
+
destroyed?: (() => void) | (() => void)[];
|
|
137
|
+
unmounted?: (() => void) | (() => void)[];
|
|
138
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
139
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
140
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
141
|
+
};
|
|
142
|
+
$forceUpdate: () => void;
|
|
143
|
+
$nextTick: typeof import('vue').nextTick;
|
|
144
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
145
|
+
} & Readonly<{
|
|
146
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
147
|
+
tag: string;
|
|
148
|
+
gutter: number;
|
|
149
|
+
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
150
|
+
tag: {
|
|
151
|
+
type: import('vue').PropType<string>;
|
|
152
|
+
default: string;
|
|
153
|
+
};
|
|
154
|
+
align: {
|
|
155
|
+
type: import('vue').PropType<"top" | "bottom" | "middle">;
|
|
156
|
+
};
|
|
157
|
+
gutter: {
|
|
158
|
+
type: import('vue').PropType<number>;
|
|
159
|
+
default: number;
|
|
160
|
+
};
|
|
161
|
+
justify: {
|
|
162
|
+
type: import('vue').PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly">;
|
|
163
|
+
default: string;
|
|
164
|
+
};
|
|
165
|
+
}>>, "tag" | "gutter" | "justify"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
166
|
+
$slots: {
|
|
167
|
+
default?: (props: {}) => any;
|
|
168
|
+
};
|
|
169
|
+
}) | null;
|
|
170
|
+
}, any, import('vue').ComponentProvideOptions, {
|
|
171
|
+
P: {};
|
|
172
|
+
B: {};
|
|
173
|
+
D: {};
|
|
174
|
+
C: {};
|
|
175
|
+
M: {};
|
|
176
|
+
Defaults: {};
|
|
177
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
178
|
+
$: import('vue').ComponentInternalInstance;
|
|
179
|
+
$data: {};
|
|
180
|
+
$props: Partial<{
|
|
181
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
182
|
+
tag: string;
|
|
183
|
+
gutter: number;
|
|
184
|
+
}> & Omit<{
|
|
185
|
+
readonly tag: string;
|
|
186
|
+
readonly gutter: number;
|
|
187
|
+
readonly justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
188
|
+
readonly align?: ("top" | "bottom" | "middle") | undefined;
|
|
189
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "tag" | "gutter" | "justify">;
|
|
190
|
+
$attrs: {
|
|
191
|
+
[x: string]: unknown;
|
|
192
|
+
};
|
|
193
|
+
$refs: {
|
|
194
|
+
[x: string]: unknown;
|
|
195
|
+
};
|
|
196
|
+
$slots: Readonly<{
|
|
197
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
198
|
+
}> & {
|
|
199
|
+
default?: (props: {}) => any;
|
|
200
|
+
};
|
|
201
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
202
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
203
|
+
$host: Element | null;
|
|
204
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
205
|
+
$el: any;
|
|
206
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
207
|
+
tag: {
|
|
208
|
+
type: import('vue').PropType<string>;
|
|
209
|
+
default: string;
|
|
210
|
+
};
|
|
211
|
+
align: {
|
|
212
|
+
type: import('vue').PropType<"top" | "bottom" | "middle">;
|
|
213
|
+
};
|
|
214
|
+
gutter: {
|
|
215
|
+
type: import('vue').PropType<number>;
|
|
216
|
+
default: number;
|
|
217
|
+
};
|
|
218
|
+
justify: {
|
|
219
|
+
type: import('vue').PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly">;
|
|
220
|
+
default: string;
|
|
221
|
+
};
|
|
222
|
+
}>>, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
223
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
224
|
+
tag: string;
|
|
225
|
+
gutter: number;
|
|
226
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
227
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
228
|
+
created?: (() => void) | (() => void)[];
|
|
229
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
230
|
+
mounted?: (() => void) | (() => void)[];
|
|
231
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
232
|
+
updated?: (() => void) | (() => void)[];
|
|
233
|
+
activated?: (() => void) | (() => void)[];
|
|
234
|
+
deactivated?: (() => void) | (() => void)[];
|
|
235
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
236
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
237
|
+
destroyed?: (() => void) | (() => void)[];
|
|
238
|
+
unmounted?: (() => void) | (() => void)[];
|
|
239
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
240
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
241
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
242
|
+
};
|
|
243
|
+
$forceUpdate: () => void;
|
|
244
|
+
$nextTick: typeof import('vue').nextTick;
|
|
245
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
246
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
247
|
+
tag: string;
|
|
248
|
+
gutter: number;
|
|
249
|
+
align?: "top" | "bottom" | "middle";
|
|
250
|
+
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
251
|
+
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
252
|
+
}, {}, {}, {}, {}>;
|
|
253
|
+
__isFragment?: never;
|
|
254
|
+
__isTeleport?: never;
|
|
255
|
+
__isSuspense?: never;
|
|
256
|
+
} & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
257
|
+
$: import('vue').ComponentInternalInstance;
|
|
258
|
+
$data: {};
|
|
259
|
+
$props: Partial<{
|
|
260
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
261
|
+
tag: string;
|
|
262
|
+
gutter: number;
|
|
263
|
+
}> & Omit<{
|
|
264
|
+
readonly tag: string;
|
|
265
|
+
readonly gutter: number;
|
|
266
|
+
readonly justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
267
|
+
readonly align?: ("top" | "bottom" | "middle") | undefined;
|
|
268
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "tag" | "gutter" | "justify">;
|
|
269
|
+
$attrs: {
|
|
270
|
+
[x: string]: unknown;
|
|
271
|
+
};
|
|
272
|
+
$refs: {
|
|
273
|
+
[x: string]: unknown;
|
|
274
|
+
};
|
|
275
|
+
$slots: Readonly<{
|
|
276
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
277
|
+
}> & {
|
|
278
|
+
default?: (props: {}) => any;
|
|
279
|
+
};
|
|
280
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
281
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
282
|
+
$host: Element | null;
|
|
283
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
284
|
+
$el: any;
|
|
285
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
286
|
+
tag: {
|
|
287
|
+
type: import('vue').PropType<string>;
|
|
288
|
+
default: string;
|
|
289
|
+
};
|
|
290
|
+
align: {
|
|
291
|
+
type: import('vue').PropType<"top" | "bottom" | "middle">;
|
|
292
|
+
};
|
|
293
|
+
gutter: {
|
|
294
|
+
type: import('vue').PropType<number>;
|
|
295
|
+
default: number;
|
|
296
|
+
};
|
|
297
|
+
justify: {
|
|
298
|
+
type: import('vue').PropType<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly">;
|
|
299
|
+
default: string;
|
|
300
|
+
};
|
|
301
|
+
}>>, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
302
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
303
|
+
tag: string;
|
|
304
|
+
gutter: number;
|
|
305
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
306
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
307
|
+
created?: (() => void) | (() => void)[];
|
|
308
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
309
|
+
mounted?: (() => void) | (() => void)[];
|
|
310
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
311
|
+
updated?: (() => void) | (() => void)[];
|
|
312
|
+
activated?: (() => void) | (() => void)[];
|
|
313
|
+
deactivated?: (() => void) | (() => void)[];
|
|
314
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
315
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
316
|
+
destroyed?: (() => void) | (() => void)[];
|
|
317
|
+
unmounted?: (() => void) | (() => void)[];
|
|
318
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
319
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
320
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
321
|
+
};
|
|
322
|
+
$forceUpdate: () => void;
|
|
323
|
+
$nextTick: typeof import('vue').nextTick;
|
|
324
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
325
|
+
justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
|
|
326
|
+
tag: string;
|
|
327
|
+
gutter: number;
|
|
328
|
+
align?: "top" | "bottom" | "middle";
|
|
329
|
+
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
330
|
+
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
331
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
332
|
+
$slots: any;
|
|
333
|
+
}) & import('vue').Plugin;
|
|
334
|
+
export default FcRow;
|
|
335
|
+
export * from './Row.types';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@funcho/ui",
|
|
3
3
|
"description": "@funcho ui library",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.39",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
7
7
|
"module": "dist/esm/index.mjs",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"vite-plugin-dts": "^4.5.4",
|
|
47
47
|
"vitest": "^4.0.7",
|
|
48
48
|
"vue": "^3.5.22",
|
|
49
|
-
"@funcho/
|
|
50
|
-
"@funcho/
|
|
49
|
+
"@funcho/icons-vue": "1.0.3",
|
|
50
|
+
"@funcho/typescript-config": "0.0.1"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"vue": "^3.5.22",
|