@shwfed/nuxt 0.10.14 → 0.11.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/dist/module.json +1 -1
- package/dist/module.mjs +1 -0
- package/dist/runtime/components/app.d.vue.ts +2 -1
- package/dist/runtime/components/app.vue.d.ts +2 -1
- package/dist/runtime/components/button.d.vue.ts +67 -4
- package/dist/runtime/components/button.vue +29 -4
- package/dist/runtime/components/button.vue.d.ts +67 -4
- package/dist/runtime/components/component-config.d.ts +12 -0
- package/dist/runtime/components/component-config.js +22 -0
- package/dist/runtime/components/fields.d.vue.ts +9 -5
- package/dist/runtime/components/fields.vue +14 -5
- package/dist/runtime/components/fields.vue.d.ts +9 -5
- package/dist/runtime/components/markdown.d.vue.ts +19 -9
- package/dist/runtime/components/markdown.vue +15 -3
- package/dist/runtime/components/markdown.vue.d.ts +19 -9
- package/dist/runtime/components/menu-tabs.d.vue.ts +14 -4
- package/dist/runtime/components/menu-tabs.vue +15 -3
- package/dist/runtime/components/menu-tabs.vue.d.ts +14 -4
- package/dist/runtime/components/modal.d.vue.ts +3 -1
- package/dist/runtime/components/modal.vue +3 -1
- package/dist/runtime/components/modal.vue.d.ts +3 -1
- package/dist/runtime/components/table.d.vue.ts +8 -3
- package/dist/runtime/components/table.vue +28 -2
- package/dist/runtime/components/table.vue.d.ts +8 -3
- package/dist/runtime/components/ui/app/App.d.vue.ts +7 -5
- package/dist/runtime/components/ui/app/App.vue +23 -8
- package/dist/runtime/components/ui/app/App.vue.d.ts +7 -5
- package/dist/runtime/components/ui/app/OverlayHost.d.vue.ts +3 -0
- package/dist/runtime/components/ui/app/OverlayHost.vue +91 -0
- package/dist/runtime/components/ui/app/OverlayHost.vue.d.ts +3 -0
- package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.d.vue.ts +56 -0
- package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.vue +12 -4
- package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.vue.d.ts +56 -0
- package/dist/runtime/components/ui/buttons/Buttons.d.vue.ts +62 -5
- package/dist/runtime/components/ui/buttons/Buttons.vue +71 -7
- package/dist/runtime/components/ui/buttons/Buttons.vue.d.ts +62 -5
- package/dist/runtime/components/ui/buttons/schema.d.ts +562 -2
- package/dist/runtime/components/ui/buttons/schema.js +24 -23
- package/dist/runtime/components/ui/drawer/Drawer.d.vue.ts +4 -4
- package/dist/runtime/components/ui/drawer/Drawer.vue.d.ts +4 -4
- package/dist/runtime/components/ui/fields/Fields.d.vue.ts +10 -2
- package/dist/runtime/components/ui/fields/Fields.vue +12 -3
- package/dist/runtime/components/ui/fields/Fields.vue.d.ts +10 -2
- package/dist/runtime/components/ui/fields/schema.d.ts +464 -0
- package/dist/runtime/components/ui/fields/schema.js +15 -2
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +4 -0
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +10 -4
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +4 -0
- package/dist/runtime/components/ui/markdown/Markdown.d.vue.ts +18 -8
- package/dist/runtime/components/ui/markdown/Markdown.vue +13 -3
- package/dist/runtime/components/ui/markdown/Markdown.vue.d.ts +18 -8
- package/dist/runtime/components/ui/markdown/schema.d.ts +51 -6
- package/dist/runtime/components/ui/markdown/schema.js +15 -2
- package/dist/runtime/components/ui/markdown-configurator/MarkdownConfiguratorDialog.d.vue.ts +16 -7
- package/dist/runtime/components/ui/markdown-configurator/MarkdownConfiguratorDialog.vue +12 -7
- package/dist/runtime/components/ui/markdown-configurator/MarkdownConfiguratorDialog.vue.d.ts +16 -7
- package/dist/runtime/components/ui/menu-tabs/MenuTabs.d.vue.ts +14 -4
- package/dist/runtime/components/ui/menu-tabs/MenuTabs.vue +16 -5
- package/dist/runtime/components/ui/menu-tabs/MenuTabs.vue.d.ts +14 -4
- package/dist/runtime/components/ui/menu-tabs/schema.d.ts +42 -5
- package/dist/runtime/components/ui/menu-tabs/schema.js +13 -12
- package/dist/runtime/components/ui/menu-tabs-configurator/MenuTabsConfiguratorDialog.d.vue.ts +12 -3
- package/dist/runtime/components/ui/menu-tabs-configurator/MenuTabsConfiguratorDialog.vue +9 -5
- package/dist/runtime/components/ui/menu-tabs-configurator/MenuTabsConfiguratorDialog.vue.d.ts +12 -3
- package/dist/runtime/components/ui/table/Table.d.vue.ts +6 -2
- package/dist/runtime/components/ui/table/Table.vue +18 -2
- package/dist/runtime/components/ui/table/Table.vue.d.ts +6 -2
- package/dist/runtime/components/ui/table/schema.d.ts +239 -2
- package/dist/runtime/components/ui/table/schema.js +15 -6
- package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.d.vue.ts +4 -0
- package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.vue +2 -1
- package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.vue.d.ts +4 -0
- package/dist/runtime/composables/useOverlay.d.ts +86 -0
- package/dist/runtime/composables/useOverlay.js +201 -0
- package/dist/runtime/layouts/default.d.vue.ts +2 -1
- package/dist/runtime/layouts/default.vue.d.ts +2 -1
- package/dist/runtime/plugins/overlay/index.d.ts +6 -0
- package/dist/runtime/plugins/overlay/index.js +12 -0
- package/dist/runtime/plugins/toast/index.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1,23 +1,36 @@
|
|
|
1
1
|
import z from "zod";
|
|
2
|
+
import { createComponentConfig, createComponentConfigMetadataShape } from "../../component-config.js";
|
|
2
3
|
import { expressionC, localeC } from "../../../utils/coders.js";
|
|
3
4
|
const buttonIdC = z.uuid().describe("\u6309\u94AE\u552F\u4E00\u6807\u8BC6\uFF0C\u5FC5\u987B\u662F UUID");
|
|
4
5
|
const buttonGroupIdC = z.uuid().describe("\u6309\u94AE\u7EC4\u552F\u4E00\u6807\u8BC6\uFF0C\u5FC5\u987B\u662F UUID");
|
|
6
|
+
export const KIND = "shwfed.component.button";
|
|
7
|
+
export const CURRENT_COMPATIBILITY_DATE = "2026-03-20";
|
|
8
|
+
export const SUPPORTED_COMPATIBILITY_DATES = [CURRENT_COMPATIBILITY_DATE];
|
|
5
9
|
const buttonVariantC = z.enum(["default", "primary", "destructive", "ghost"]).optional().describe("\u6309\u94AE\u53D8\u4F53");
|
|
6
10
|
export const ButtonsStyleC = expressionC(/^map/).optional().describe("\u8FD4\u56DE\u6309\u94AE\u5BB9\u5668\u6837\u5F0F\u5BF9\u8C61\u7684 CEL \u8868\u8FBE\u5F0F");
|
|
11
|
+
export const ButtonModalC = z.strictObject({
|
|
12
|
+
title: localeC.optional().describe("Modal \u6807\u9898\u7684\u672C\u5730\u5316\u663E\u793A\u6587\u672C"),
|
|
13
|
+
description: localeC.optional().describe("Modal \u63CF\u8FF0\u7684\u672C\u5730\u5316\u663E\u793A\u6587\u672C"),
|
|
14
|
+
showCloseButton: z.boolean().optional().describe("\u662F\u5426\u663E\u793A Modal \u5173\u95ED\u6309\u94AE"),
|
|
15
|
+
breakpoint: z.string().optional().describe("\u5207\u6362\u684C\u9762 Dialog \u4E0E\u79FB\u52A8\u7AEF Drawer \u7684\u5A92\u4F53\u67E5\u8BE2\u65AD\u70B9"),
|
|
16
|
+
dismissible: z.boolean().optional().describe("\u662F\u5426\u5141\u8BB8\u901A\u8FC7\u5916\u90E8\u4EA4\u4E92\u5173\u95ED Modal")
|
|
17
|
+
}).readonly();
|
|
7
18
|
export const ButtonActionC = z.strictObject({
|
|
8
19
|
id: buttonIdC,
|
|
9
20
|
title: localeC.describe("\u6309\u94AE\u540D\u79F0\u7684\u672C\u5730\u5316\u663E\u793A\u6587\u672C"),
|
|
10
21
|
tooltip: localeC.optional().describe("\u6309\u94AE\u63D0\u793A\u7684\u672C\u5730\u5316\u663E\u793A\u6587\u672C"),
|
|
11
22
|
icon: z.string().optional().describe("Iconify \u56FE\u6807\u6807\u8BC6\u7B26"),
|
|
12
23
|
variant: buttonVariantC,
|
|
13
|
-
hideTitle: z.boolean().optional().describe("\u4EC5\u5BF9\u975E\u4E0B\u62C9\u6309\u94AE\u751F\u6548\uFF1B\u4E3A true \u65F6\u9690\u85CF\u6309\u94AE\u6587\u5B57\uFF0C\u4EC5\u663E\u793A\u56FE\u6807")
|
|
24
|
+
hideTitle: z.boolean().optional().describe("\u4EC5\u5BF9\u975E\u4E0B\u62C9\u6309\u94AE\u751F\u6548\uFF1B\u4E3A true \u65F6\u9690\u85CF\u6309\u94AE\u6587\u5B57\uFF0C\u4EC5\u663E\u793A\u56FE\u6807"),
|
|
25
|
+
modal: ButtonModalC.optional().describe("\u4E0E\u5F53\u524D\u6309\u94AE UUID \u540C\u540D slot \u6253\u5F00\u65F6\u4F7F\u7528\u7684\u9ED8\u8BA4 Modal \u58F3\u914D\u7F6E")
|
|
14
26
|
}).readonly();
|
|
15
27
|
const DropdownButtonActionC = z.strictObject({
|
|
16
28
|
id: buttonIdC,
|
|
17
29
|
title: localeC.describe("\u4E0B\u62C9\u9879\u6309\u94AE\u540D\u79F0\u7684\u672C\u5730\u5316\u663E\u793A\u6587\u672C"),
|
|
18
30
|
tooltip: localeC.optional().describe("\u4E0B\u62C9\u9879\u6309\u94AE\u63D0\u793A\u7684\u672C\u5730\u5316\u663E\u793A\u6587\u672C"),
|
|
19
31
|
icon: z.string().optional().describe("Iconify \u56FE\u6807\u6807\u8BC6\u7B26"),
|
|
20
|
-
variant: buttonVariantC
|
|
32
|
+
variant: buttonVariantC,
|
|
33
|
+
modal: ButtonModalC.optional().describe("\u4E0E\u5F53\u524D\u4E0B\u62C9\u6309\u94AE UUID \u540C\u540D slot \u6253\u5F00\u65F6\u4F7F\u7528\u7684\u9ED8\u8BA4 Modal \u58F3\u914D\u7F6E")
|
|
21
34
|
}).readonly();
|
|
22
35
|
export const ButtonDropdownC = z.strictObject({
|
|
23
36
|
id: buttonIdC,
|
|
@@ -30,29 +43,17 @@ export const ButtonGroupC = z.strictObject({
|
|
|
30
43
|
id: buttonGroupIdC,
|
|
31
44
|
items: z.array(ButtonGroupItemC).readonly().describe("\u6309\u94AE\u7EC4\u5185\u7684\u6309\u94AE\u4E0E\u4E0B\u62C9\u6309\u94AE")
|
|
32
45
|
}).readonly();
|
|
33
|
-
|
|
46
|
+
const ButtonBodyObjectC = z.strictObject({
|
|
34
47
|
gap: z.number().finite().min(0).optional().describe("\u6309\u94AE\u7EC4\u4E4B\u95F4\u7684\u95F4\u8DDD\u500D\u7387\uFF0C\u8FD0\u884C\u65F6\u6309 0.25rem \u6B65\u8FDB\u6362\u7B97"),
|
|
35
48
|
style: ButtonsStyleC,
|
|
36
49
|
groups: z.array(ButtonGroupC).readonly().describe("\u6839\u7EA7\u6309\u94AE\u7EC4\u5217\u8868")
|
|
37
|
-
})
|
|
50
|
+
});
|
|
51
|
+
export const ButtonBodyC = ButtonBodyObjectC.readonly();
|
|
52
|
+
export const ButtonBodyInputC = ButtonBodyC;
|
|
53
|
+
export const ButtonConfigC = ButtonBodyObjectC.extend(
|
|
54
|
+
createComponentConfigMetadataShape(KIND, SUPPORTED_COMPATIBILITY_DATES)
|
|
55
|
+
).readonly();
|
|
38
56
|
export const ButtonConfigInputC = ButtonConfigC;
|
|
39
|
-
export function
|
|
40
|
-
|
|
41
|
-
return {
|
|
42
|
-
groups: []
|
|
43
|
-
};
|
|
44
|
-
}
|
|
45
|
-
const groups = Reflect.get(value, "groups");
|
|
46
|
-
const gap = Reflect.get(value, "gap");
|
|
47
|
-
const style = Reflect.get(value, "style");
|
|
48
|
-
const nextConfig = {
|
|
49
|
-
groups: Array.isArray(groups) ? groups : []
|
|
50
|
-
};
|
|
51
|
-
if (typeof gap === "number" && Number.isFinite(gap) && gap >= 0) {
|
|
52
|
-
nextConfig.gap = gap;
|
|
53
|
-
}
|
|
54
|
-
if (typeof style === "string") {
|
|
55
|
-
nextConfig.style = style;
|
|
56
|
-
}
|
|
57
|
-
return nextConfig;
|
|
57
|
+
export function createButtonConfig(body) {
|
|
58
|
+
return createComponentConfig(KIND, CURRENT_COMPATIBILITY_DATE, body);
|
|
58
59
|
}
|
|
@@ -7,17 +7,17 @@ type __VLS_Slots = {} & {
|
|
|
7
7
|
default?: (props: typeof __VLS_8) => any;
|
|
8
8
|
};
|
|
9
9
|
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
10
|
-
"update:open": (open: boolean) => any;
|
|
11
10
|
close: () => any;
|
|
12
|
-
|
|
11
|
+
"update:open": (open: boolean) => any;
|
|
13
12
|
animationEnd: (open: boolean) => any;
|
|
13
|
+
drag: (percentageDragged: number) => any;
|
|
14
14
|
release: (open: boolean) => any;
|
|
15
15
|
"update:activeSnapPoint": (val: string | number) => any;
|
|
16
16
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
17
|
-
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
18
17
|
onClose?: (() => any) | undefined;
|
|
19
|
-
|
|
18
|
+
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
20
19
|
onAnimationEnd?: ((open: boolean) => any) | undefined;
|
|
20
|
+
onDrag?: ((percentageDragged: number) => any) | undefined;
|
|
21
21
|
onRelease?: ((open: boolean) => any) | undefined;
|
|
22
22
|
"onUpdate:activeSnapPoint"?: ((val: string | number) => any) | undefined;
|
|
23
23
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -7,17 +7,17 @@ type __VLS_Slots = {} & {
|
|
|
7
7
|
default?: (props: typeof __VLS_8) => any;
|
|
8
8
|
};
|
|
9
9
|
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
10
|
-
"update:open": (open: boolean) => any;
|
|
11
10
|
close: () => any;
|
|
12
|
-
|
|
11
|
+
"update:open": (open: boolean) => any;
|
|
13
12
|
animationEnd: (open: boolean) => any;
|
|
13
|
+
drag: (percentageDragged: number) => any;
|
|
14
14
|
release: (open: boolean) => any;
|
|
15
15
|
"update:activeSnapPoint": (val: string | number) => any;
|
|
16
16
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
17
|
-
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
18
17
|
onClose?: (() => any) | undefined;
|
|
19
|
-
|
|
18
|
+
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
20
19
|
onAnimationEnd?: ((open: boolean) => any) | undefined;
|
|
20
|
+
onDrag?: ((percentageDragged: number) => any) | undefined;
|
|
21
21
|
onRelease?: ((open: boolean) => any) | undefined;
|
|
22
22
|
"onUpdate:activeSnapPoint"?: ((val: string | number) => any) | undefined;
|
|
23
23
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Effect } from 'effect';
|
|
2
2
|
import type { CSSProperties } from 'vue';
|
|
3
|
-
export { CalendarFieldC, EmptyFieldC, FieldC, FieldsConfigC, NumberFieldC, SelectFieldC, SlotFieldC, StringFieldC, ValidationRuleC, validationC, } from './schema.js';
|
|
4
|
-
export type { EmptyField, Field, FieldsConfig, SlotField, ValidationRule } from './schema.js';
|
|
3
|
+
export { CalendarFieldC, CURRENT_COMPATIBILITY_DATE, EmptyFieldC, FieldC, FieldsBodyC, FieldsBodyInputC, FieldsConfigC, FieldsConfigInputC, KIND, NumberFieldC, SelectFieldC, SlotFieldC, SUPPORTED_COMPATIBILITY_DATES, StringFieldC, ValidationRuleC, createFieldsConfig, validationC, } from './schema.js';
|
|
4
|
+
export type { EmptyField, Field, FieldsBody, FieldsBodyInput, FieldsConfig, FieldsConfigInput, SlotField, ValidationRule, } from './schema.js';
|
|
5
5
|
declare const _default: typeof __VLS_export;
|
|
6
6
|
export default _default;
|
|
7
7
|
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
@@ -120,6 +120,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
120
120
|
type: "empty";
|
|
121
121
|
style?: string | undefined;
|
|
122
122
|
})[];
|
|
123
|
+
kind: string;
|
|
124
|
+
compatibilityDate: string;
|
|
123
125
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
124
126
|
style?: string | undefined;
|
|
125
127
|
}> | undefined>;
|
|
@@ -242,6 +244,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
242
244
|
type: "empty";
|
|
243
245
|
style?: string | undefined;
|
|
244
246
|
})[];
|
|
247
|
+
kind: string;
|
|
248
|
+
compatibilityDate: string;
|
|
245
249
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
246
250
|
style?: string | undefined;
|
|
247
251
|
}>) => any;
|
|
@@ -362,6 +366,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
362
366
|
type: "empty";
|
|
363
367
|
style?: string | undefined;
|
|
364
368
|
})[];
|
|
369
|
+
kind: string;
|
|
370
|
+
compatibilityDate: string;
|
|
365
371
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
366
372
|
style?: string | undefined;
|
|
367
373
|
}> | undefined>;
|
|
@@ -484,6 +490,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
484
490
|
type: "empty";
|
|
485
491
|
style?: string | undefined;
|
|
486
492
|
})[];
|
|
493
|
+
kind: string;
|
|
494
|
+
compatibilityDate: string;
|
|
487
495
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
488
496
|
style?: string | undefined;
|
|
489
497
|
}>) => any) | undefined;
|
|
@@ -20,11 +20,11 @@ import { Popover, PopoverAnchor, PopoverContent, PopoverTrigger } from "../popov
|
|
|
20
20
|
import { Skeleton } from "../skeleton";
|
|
21
21
|
import { Tooltip, TooltipContent, TooltipTrigger } from "../tooltip";
|
|
22
22
|
import { getLocalizedText } from "../../../utils/coders";
|
|
23
|
-
import { FieldsConfigC } from "./schema";
|
|
23
|
+
import { FieldsConfigC, createFieldsConfig } from "./schema";
|
|
24
24
|
const id = useId();
|
|
25
|
-
const defaultConfig = {
|
|
25
|
+
const defaultConfig = createFieldsConfig({
|
|
26
26
|
fields: []
|
|
27
|
-
};
|
|
27
|
+
});
|
|
28
28
|
const props = defineProps({
|
|
29
29
|
config: { type: null, required: true }
|
|
30
30
|
});
|
|
@@ -45,6 +45,8 @@ const hasInitializedFieldValues = ref(false);
|
|
|
45
45
|
const hasEmittedInitialValueReady = ref(false);
|
|
46
46
|
function cloneConfig(config2) {
|
|
47
47
|
const nextConfig = {
|
|
48
|
+
kind: config2.kind,
|
|
49
|
+
compatibilityDate: config2.compatibilityDate,
|
|
48
50
|
fields: config2.fields.slice()
|
|
49
51
|
};
|
|
50
52
|
if (config2.orientation) {
|
|
@@ -314,14 +316,21 @@ watchEffect(() => {
|
|
|
314
316
|
<script>
|
|
315
317
|
export {
|
|
316
318
|
CalendarFieldC,
|
|
319
|
+
CURRENT_COMPATIBILITY_DATE,
|
|
317
320
|
EmptyFieldC,
|
|
318
321
|
FieldC,
|
|
322
|
+
FieldsBodyC,
|
|
323
|
+
FieldsBodyInputC,
|
|
319
324
|
FieldsConfigC,
|
|
325
|
+
FieldsConfigInputC,
|
|
326
|
+
KIND,
|
|
320
327
|
NumberFieldC,
|
|
321
328
|
SelectFieldC,
|
|
322
329
|
SlotFieldC,
|
|
330
|
+
SUPPORTED_COMPATIBILITY_DATES,
|
|
323
331
|
StringFieldC,
|
|
324
332
|
ValidationRuleC,
|
|
333
|
+
createFieldsConfig,
|
|
325
334
|
validationC
|
|
326
335
|
} from "./schema";
|
|
327
336
|
</script>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Effect } from 'effect';
|
|
2
2
|
import type { CSSProperties } from 'vue';
|
|
3
|
-
export { CalendarFieldC, EmptyFieldC, FieldC, FieldsConfigC, NumberFieldC, SelectFieldC, SlotFieldC, StringFieldC, ValidationRuleC, validationC, } from './schema.js';
|
|
4
|
-
export type { EmptyField, Field, FieldsConfig, SlotField, ValidationRule } from './schema.js';
|
|
3
|
+
export { CalendarFieldC, CURRENT_COMPATIBILITY_DATE, EmptyFieldC, FieldC, FieldsBodyC, FieldsBodyInputC, FieldsConfigC, FieldsConfigInputC, KIND, NumberFieldC, SelectFieldC, SlotFieldC, SUPPORTED_COMPATIBILITY_DATES, StringFieldC, ValidationRuleC, createFieldsConfig, validationC, } from './schema.js';
|
|
4
|
+
export type { EmptyField, Field, FieldsBody, FieldsBodyInput, FieldsConfig, FieldsConfigInput, SlotField, ValidationRule, } from './schema.js';
|
|
5
5
|
declare const _default: typeof __VLS_export;
|
|
6
6
|
export default _default;
|
|
7
7
|
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
@@ -120,6 +120,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
120
120
|
type: "empty";
|
|
121
121
|
style?: string | undefined;
|
|
122
122
|
})[];
|
|
123
|
+
kind: string;
|
|
124
|
+
compatibilityDate: string;
|
|
123
125
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
124
126
|
style?: string | undefined;
|
|
125
127
|
}> | undefined>;
|
|
@@ -242,6 +244,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
242
244
|
type: "empty";
|
|
243
245
|
style?: string | undefined;
|
|
244
246
|
})[];
|
|
247
|
+
kind: string;
|
|
248
|
+
compatibilityDate: string;
|
|
245
249
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
246
250
|
style?: string | undefined;
|
|
247
251
|
}>) => any;
|
|
@@ -362,6 +366,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
362
366
|
type: "empty";
|
|
363
367
|
style?: string | undefined;
|
|
364
368
|
})[];
|
|
369
|
+
kind: string;
|
|
370
|
+
compatibilityDate: string;
|
|
365
371
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
366
372
|
style?: string | undefined;
|
|
367
373
|
}> | undefined>;
|
|
@@ -484,6 +490,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
484
490
|
type: "empty";
|
|
485
491
|
style?: string | undefined;
|
|
486
492
|
})[];
|
|
493
|
+
kind: string;
|
|
494
|
+
compatibilityDate: string;
|
|
487
495
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
488
496
|
style?: string | undefined;
|
|
489
497
|
}>) => any) | undefined;
|