@formatica/vue 0.1.2 → 0.2.1

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.
Files changed (95) hide show
  1. package/dist/components/BaseField.d.ts +28 -0
  2. package/dist/components/BaseField.d.ts.map +1 -0
  3. package/dist/components/FormBuilder.d.ts +25 -0
  4. package/dist/components/FormBuilder.d.ts.map +1 -0
  5. package/dist/components/FormField.d.ts +6 -0
  6. package/dist/components/FormField.d.ts.map +1 -0
  7. package/dist/components/inputs/CheckboxGroupInput.d.ts +21 -0
  8. package/dist/components/inputs/CheckboxGroupInput.d.ts.map +1 -0
  9. package/dist/components/inputs/CheckboxInput.d.ts +16 -0
  10. package/dist/components/inputs/CheckboxInput.d.ts.map +1 -0
  11. package/dist/components/inputs/DateInput.d.ts +22 -0
  12. package/dist/components/inputs/DateInput.d.ts.map +1 -0
  13. package/dist/components/inputs/FileInput.d.ts +22 -0
  14. package/dist/components/inputs/FileInput.d.ts.map +1 -0
  15. package/dist/components/inputs/NumberInput.d.ts +26 -0
  16. package/dist/components/inputs/NumberInput.d.ts.map +1 -0
  17. package/dist/components/inputs/PhoneInput.d.ts +23 -0
  18. package/dist/components/inputs/PhoneInput.d.ts.map +1 -0
  19. package/dist/components/inputs/RadioInput.d.ts +19 -0
  20. package/dist/components/inputs/RadioInput.d.ts.map +1 -0
  21. package/dist/components/inputs/SelectInput.d.ts +29 -0
  22. package/dist/components/inputs/SelectInput.d.ts.map +1 -0
  23. package/dist/components/inputs/SliderInput.d.ts +23 -0
  24. package/dist/components/inputs/SliderInput.d.ts.map +1 -0
  25. package/dist/components/inputs/SwitchInput.d.ts +17 -0
  26. package/dist/components/inputs/SwitchInput.d.ts.map +1 -0
  27. package/dist/components/inputs/TagsInput.d.ts +24 -0
  28. package/dist/components/inputs/TagsInput.d.ts.map +1 -0
  29. package/dist/components/inputs/TextInput.d.ts +27 -0
  30. package/dist/components/inputs/TextInput.d.ts.map +1 -0
  31. package/dist/components/inputs/TextareaInput.d.ts +28 -0
  32. package/dist/components/inputs/TextareaInput.d.ts.map +1 -0
  33. package/dist/components/layout/FormDivider.d.ts +7 -0
  34. package/dist/components/layout/FormDivider.d.ts.map +1 -0
  35. package/dist/components/layout/FormGroup.d.ts +15 -0
  36. package/dist/components/layout/FormGroup.d.ts.map +1 -0
  37. package/dist/components/layout/FormHtml.d.ts +7 -0
  38. package/dist/components/layout/FormHtml.d.ts.map +1 -0
  39. package/dist/components/layout/FormRow.d.ts +12 -0
  40. package/dist/components/layout/FormRow.d.ts.map +1 -0
  41. package/dist/components/layout/FormSteps.d.ts +11 -0
  42. package/dist/components/layout/FormSteps.d.ts.map +1 -0
  43. package/dist/components/layout/FormTabs.d.ts +8 -0
  44. package/dist/components/layout/FormTabs.d.ts.map +1 -0
  45. package/dist/components/layout/LayoutRenderer.d.ts +8 -0
  46. package/dist/components/layout/LayoutRenderer.d.ts.map +1 -0
  47. package/dist/core/eventBus.d.ts +9 -0
  48. package/dist/core/eventBus.d.ts.map +1 -0
  49. package/dist/core/fieldRegistry.d.ts +24 -0
  50. package/dist/core/fieldRegistry.d.ts.map +1 -0
  51. package/dist/core/ruleRegistry.d.ts +2 -0
  52. package/dist/core/ruleRegistry.d.ts.map +1 -0
  53. package/dist/core/schemaParser.d.ts +4 -0
  54. package/dist/core/schemaParser.d.ts.map +1 -0
  55. package/dist/core/useConditions.d.ts +2 -0
  56. package/dist/core/useConditions.d.ts.map +1 -0
  57. package/dist/core/useForm.d.ts +10 -0
  58. package/dist/core/useForm.d.ts.map +1 -0
  59. package/dist/core/useFormI18n.d.ts +22 -0
  60. package/dist/core/useFormI18n.d.ts.map +1 -0
  61. package/dist/core/useTheme.d.ts +28 -0
  62. package/dist/core/useTheme.d.ts.map +1 -0
  63. package/dist/core/useValidation.d.ts +17 -0
  64. package/dist/core/useValidation.d.ts.map +1 -0
  65. package/dist/formatica.es.js +974 -966
  66. package/dist/formatica.es.js.map +1 -1
  67. package/dist/formatica.umd.cjs +1 -1
  68. package/dist/formatica.umd.cjs.map +1 -1
  69. package/dist/index.d.ts +12 -0
  70. package/dist/index.d.ts.map +1 -0
  71. package/dist/plugin.d.ts +11 -0
  72. package/dist/plugin.d.ts.map +1 -0
  73. package/dist/types/form.d.ts +92 -0
  74. package/dist/types/form.d.ts.map +1 -0
  75. package/dist/types/i18n.d.ts +18 -0
  76. package/dist/types/i18n.d.ts.map +1 -0
  77. package/dist/types/index.d.ts +7 -0
  78. package/dist/types/index.d.ts.map +1 -0
  79. package/dist/types/layout.d.ts +76 -0
  80. package/dist/types/layout.d.ts.map +1 -0
  81. package/dist/types/schema.d.ts +251 -0
  82. package/dist/types/schema.d.ts.map +1 -0
  83. package/dist/types/theme.d.ts +69 -0
  84. package/dist/types/theme.d.ts.map +1 -0
  85. package/dist/types/validation.d.ts +26 -0
  86. package/dist/types/validation.d.ts.map +1 -0
  87. package/dist/utils/deepMerge.d.ts +2 -0
  88. package/dist/utils/deepMerge.d.ts.map +1 -0
  89. package/dist/utils/extractFields.d.ts +2 -0
  90. package/dist/utils/extractFields.d.ts.map +1 -0
  91. package/dist/utils/sanitize.d.ts +2 -0
  92. package/dist/utils/sanitize.d.ts.map +1 -0
  93. package/dist/utils/titleCase.d.ts +2 -0
  94. package/dist/utils/titleCase.d.ts.map +1 -0
  95. package/package.json +4 -2
@@ -0,0 +1,28 @@
1
+ import { FieldBase } from '@formatica/core';
2
+ type __VLS_Props = {
3
+ fieldSchema: FieldBase;
4
+ fieldName: string;
5
+ errors: string[];
6
+ touched: 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<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
18
+ errors: string[];
19
+ touched: boolean;
20
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
21
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
22
+ export default _default;
23
+ type __VLS_WithTemplateSlots<T, S> = T & {
24
+ new (): {
25
+ $slots: S;
26
+ };
27
+ };
28
+ //# sourceMappingURL=BaseField.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BaseField.vue.d.ts","sourceRoot":"","sources":["../../src/components/BaseField.vue"],"names":[],"mappings":"AAoKI,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAEjD,KAAK,WAAW,GAAG;IACX,WAAW,EAAE,SAAS,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,OAAO,EAAE,OAAO,CAAC;CACpB,CAAC;AAwDV,iBAAS,cAAc;WAsJT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAkBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;YAxOD,MAAM,EAAE;aACP,OAAO;wFA+O1B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,25 @@
1
+ import { Component } from 'vue';
2
+ import { FormSchema, LayoutSchema, ThemeConfig } from '@formatica/core';
3
+ type __VLS_Props = {
4
+ schema: FormSchema;
5
+ layout?: LayoutSchema;
6
+ locale?: string;
7
+ fallbackLocale?: string;
8
+ modelValue?: Record<string, unknown>;
9
+ theme?: ThemeConfig;
10
+ /** Override built-in components or register custom field types per instance. */
11
+ components?: Record<string, Component>;
12
+ };
13
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {
14
+ form: import('..').FormInstance;
15
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
+ error: (error: unknown) => any;
17
+ submit: (values: Record<string, unknown>) => any;
18
+ "update:modelValue": (values: Record<string, unknown>) => any;
19
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
20
+ onError?: ((error: unknown) => any) | undefined;
21
+ onSubmit?: ((values: Record<string, unknown>) => any) | undefined;
22
+ "onUpdate:modelValue"?: ((values: Record<string, unknown>) => any) | undefined;
23
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLFormElement>;
24
+ export default _default;
25
+ //# sourceMappingURL=FormBuilder.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormBuilder.vue.d.ts","sourceRoot":"","sources":["../../src/components/FormBuilder.vue"],"names":[],"mappings":"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"}
@@ -0,0 +1,6 @@
1
+ type __VLS_Props = {
2
+ name: string;
3
+ };
4
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
5
+ export default _default;
6
+ //# sourceMappingURL=FormField.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormField.vue.d.ts","sourceRoot":"","sources":["../../src/components/FormField.vue"],"names":[],"mappings":"AA+JI,KAAK,WAAW,GAAG;IACf,IAAI,EAAE,MAAM,CAAC;CAChB,CAAC;;AA2NN,wBAOG"}
@@ -0,0 +1,21 @@
1
+ import { OptionItem } from '../../types/schema';
2
+ type __VLS_Props = {
3
+ modelValue: Array<string | number | boolean>;
4
+ options: OptionItem[];
5
+ inline?: boolean;
6
+ disabled?: boolean;
7
+ minSelect?: number;
8
+ maxSelect?: number;
9
+ };
10
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
+ "update:modelValue": (value: (string | number | boolean)[]) => any;
12
+ blur: (event: FocusEvent) => any;
13
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
14
+ "onUpdate:modelValue"?: ((value: (string | number | boolean)[]) => any) | undefined;
15
+ onBlur?: ((event: FocusEvent) => any) | undefined;
16
+ }>, {
17
+ inline: boolean;
18
+ disabled: boolean;
19
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
20
+ export default _default;
21
+ //# sourceMappingURL=CheckboxGroupInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CheckboxGroupInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/CheckboxGroupInput.vue"],"names":[],"mappings":"AAyHI,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAErD,KAAK,WAAW,GAAG;IACX,UAAU,EAAE,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC;IAC7C,OAAO,EAAE,UAAU,EAAE,CAAC;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;;;;;;;;YAJW,OAAO;cACL,OAAO;;AAsK9B,wBASG"}
@@ -0,0 +1,16 @@
1
+ type __VLS_Props = {
2
+ modelValue: boolean;
3
+ checkboxLabel?: string;
4
+ disabled?: boolean;
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
+ "update:modelValue": (value: boolean) => any;
8
+ blur: (event: FocusEvent) => any;
9
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
10
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
11
+ onBlur?: ((event: FocusEvent) => any) | undefined;
12
+ }>, {
13
+ disabled: boolean;
14
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLabelElement>;
15
+ export default _default;
16
+ //# sourceMappingURL=CheckboxInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CheckboxInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/CheckboxInput.vue"],"names":[],"mappings":"AAoFI,KAAK,WAAW,GAAG;IACX,UAAU,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;;;;;;;;cADa,OAAO;;AA8H9B,wBASG"}
@@ -0,0 +1,22 @@
1
+ type __VLS_Props = {
2
+ modelValue: string;
3
+ format?: string;
4
+ minDate?: string;
5
+ maxDate?: string;
6
+ placeholder?: string;
7
+ disabled?: boolean;
8
+ };
9
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ focus: (event: FocusEvent) => any;
11
+ "update:modelValue": (value: string) => any;
12
+ blur: (event: FocusEvent) => any;
13
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
14
+ onFocus?: ((event: FocusEvent) => any) | undefined;
15
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
16
+ onBlur?: ((event: FocusEvent) => any) | undefined;
17
+ }>, {
18
+ placeholder: string;
19
+ disabled: boolean;
20
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLInputElement>;
21
+ export default _default;
22
+ //# sourceMappingURL=DateInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DateInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/DateInput.vue"],"names":[],"mappings":"AAsEI,KAAK,WAAW,GAAG;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;;;;;;;;;;iBAFgB,MAAM;cACT,OAAO;;AAkG9B,wBASG"}
@@ -0,0 +1,22 @@
1
+ type __VLS_Props = {
2
+ modelValue: File | File[] | null;
3
+ accept?: string;
4
+ maxSize?: number;
5
+ multiple?: boolean;
6
+ maxFiles?: number;
7
+ disabled?: boolean;
8
+ };
9
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ "update:modelValue": (value: File | File[] | null) => any;
11
+ blur: (event: FocusEvent) => any;
12
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
13
+ "onUpdate:modelValue"?: ((value: File | File[] | null) => any) | undefined;
14
+ onBlur?: ((event: FocusEvent) => any) | undefined;
15
+ }>, {
16
+ disabled: boolean;
17
+ multiple: boolean;
18
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
19
+ fileInputRef: HTMLInputElement;
20
+ }, HTMLDivElement>;
21
+ export default _default;
22
+ //# sourceMappingURL=FileInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FileInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/FileInput.vue"],"names":[],"mappings":"AAkMI,KAAK,WAAW,GAAG;IACX,UAAU,EAAE,IAAI,GAAG,IAAI,EAAE,GAAG,IAAI,CAAC;IACjC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;;;;;;;;cADa,OAAO;cAFP,OAAO;;;;AA6P9B,wBAUG"}
@@ -0,0 +1,26 @@
1
+ type __VLS_Props = {
2
+ modelValue: number | null;
3
+ min?: number;
4
+ max?: number;
5
+ step?: number;
6
+ precision?: number;
7
+ prefix?: string;
8
+ suffix?: string;
9
+ disabled?: boolean;
10
+ readonly?: boolean;
11
+ };
12
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
+ focus: (event: FocusEvent) => any;
14
+ "update:modelValue": (value: number | null) => any;
15
+ blur: (event: FocusEvent) => any;
16
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
17
+ onFocus?: ((event: FocusEvent) => any) | undefined;
18
+ "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
19
+ onBlur?: ((event: FocusEvent) => any) | undefined;
20
+ }>, {
21
+ disabled: boolean;
22
+ step: number;
23
+ readonly: boolean;
24
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
25
+ export default _default;
26
+ //# sourceMappingURL=NumberInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NumberInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/NumberInput.vue"],"names":[],"mappings":"AAyHI,KAAK,WAAW,GAAG;IACX,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;;;;;;;;;;cAFa,OAAO;UAJX,MAAM;cAKF,OAAO;;AAiK9B,wBAQG"}
@@ -0,0 +1,23 @@
1
+ type __VLS_Props = {
2
+ modelValue: string;
3
+ defaultCountry?: string;
4
+ countries?: string[];
5
+ showDialCode?: boolean;
6
+ placeholder?: string;
7
+ disabled?: boolean;
8
+ };
9
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ "update:modelValue": (value: string) => any;
11
+ blur: (event: FocusEvent) => any;
12
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
13
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
14
+ onBlur?: ((event: FocusEvent) => any) | undefined;
15
+ }>, {
16
+ disabled: boolean;
17
+ defaultCountry: string;
18
+ showDialCode: boolean;
19
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
20
+ searchInputRef: HTMLInputElement;
21
+ }, HTMLDivElement>;
22
+ export default _default;
23
+ //# sourceMappingURL=PhoneInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PhoneInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/PhoneInput.vue"],"names":[],"mappings":"AAgYI,KAAK,WAAW,GAAG;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;;;;;;;;cADa,OAAO;oBAJD,MAAM;kBAER,OAAO;;;;AAoblC,wBAUG"}
@@ -0,0 +1,19 @@
1
+ import { OptionItem } from '../../types/schema';
2
+ type __VLS_Props = {
3
+ modelValue: string | number | boolean | null;
4
+ options: OptionItem[];
5
+ inline?: boolean;
6
+ disabled?: boolean;
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
+ "update:modelValue": (value: string | number | boolean | null) => any;
10
+ blur: (event: FocusEvent) => any;
11
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
12
+ "onUpdate:modelValue"?: ((value: string | number | boolean | null) => any) | undefined;
13
+ onBlur?: ((event: FocusEvent) => any) | undefined;
14
+ }>, {
15
+ inline: boolean;
16
+ disabled: boolean;
17
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
18
+ export default _default;
19
+ //# sourceMappingURL=RadioInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RadioInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/RadioInput.vue"],"names":[],"mappings":"AA2FI,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAErD,KAAK,WAAW,GAAG;IACX,UAAU,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,CAAC;IAC7C,OAAO,EAAE,UAAU,EAAE,CAAC;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;;;;;;;;YAFW,OAAO;cACL,OAAO;;AAuI9B,wBASG"}
@@ -0,0 +1,29 @@
1
+ import { OptionItem } from '../../types/schema';
2
+ type SelectValue = string | number | boolean | Array<string | number | boolean> | null;
3
+ type __VLS_Props = {
4
+ modelValue: SelectValue;
5
+ options: OptionItem[];
6
+ multiple?: boolean;
7
+ searchable?: boolean;
8
+ clearable?: boolean;
9
+ placeholder?: string;
10
+ disabled?: boolean;
11
+ };
12
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
+ "update:modelValue": (value: SelectValue) => any;
14
+ blur: (event: FocusEvent) => any;
15
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
16
+ "onUpdate:modelValue"?: ((value: SelectValue) => any) | undefined;
17
+ onBlur?: ((event: FocusEvent) => any) | undefined;
18
+ }>, {
19
+ placeholder: string;
20
+ disabled: boolean;
21
+ multiple: boolean;
22
+ searchable: boolean;
23
+ clearable: boolean;
24
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
25
+ containerRef: HTMLDivElement;
26
+ searchInputRef: HTMLInputElement;
27
+ }, HTMLDivElement>;
28
+ export default _default;
29
+ //# sourceMappingURL=SelectInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SelectInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/SelectInput.vue"],"names":[],"mappings":"AA4RI,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAErD,KAAK,WAAW,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,GAAG,IAAI,CAAC;AAEvF,KAAK,WAAW,GAAG;IACX,UAAU,EAAE,WAAW,CAAC;IACxB,OAAO,EAAE,UAAU,EAAE,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;;;;;;;;iBAFgB,MAAM;cACT,OAAO;cAJP,OAAO;gBACL,OAAO;eACR,OAAO;;;;;AAqV/B,wBAUG"}
@@ -0,0 +1,23 @@
1
+ type __VLS_Props = {
2
+ modelValue: number;
3
+ min?: number;
4
+ max?: number;
5
+ step?: number;
6
+ showTooltip?: boolean;
7
+ disabled?: boolean;
8
+ };
9
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ "update:modelValue": (value: number) => any;
11
+ blur: (event: FocusEvent) => any;
12
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
13
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
14
+ onBlur?: ((event: FocusEvent) => any) | undefined;
15
+ }>, {
16
+ min: number;
17
+ max: number;
18
+ disabled: boolean;
19
+ step: number;
20
+ showTooltip: boolean;
21
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
22
+ export default _default;
23
+ //# sourceMappingURL=SliderInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SliderInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/SliderInput.vue"],"names":[],"mappings":"AA0FI,KAAK,WAAW,GAAG;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;;;;;;;;SALQ,MAAM;SACN,MAAM;cAGD,OAAO;UAFX,MAAM;iBACC,OAAO;;AAyIjC,wBASG"}
@@ -0,0 +1,17 @@
1
+ type __VLS_Props = {
2
+ modelValue: boolean;
3
+ activeLabel?: string;
4
+ inactiveLabel?: string;
5
+ disabled?: boolean;
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
+ "update:modelValue": (value: boolean) => any;
9
+ blur: (event: FocusEvent) => any;
10
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
11
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
12
+ onBlur?: ((event: FocusEvent) => any) | undefined;
13
+ }>, {
14
+ disabled: boolean;
15
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLabelElement>;
16
+ export default _default;
17
+ //# sourceMappingURL=SwitchInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SwitchInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/SwitchInput.vue"],"names":[],"mappings":"AAkFI,KAAK,WAAW,GAAG;IACX,UAAU,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;;;;;;;;cADa,OAAO;;AA4H9B,wBASG"}
@@ -0,0 +1,24 @@
1
+ type __VLS_Props = {
2
+ modelValue: string[] | null;
3
+ maxTags?: number;
4
+ suggestions?: string[];
5
+ placeholder?: string;
6
+ disabled?: boolean;
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
+ "update:modelValue": (value: string[]) => any;
10
+ blur: (event: FocusEvent) => any;
11
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
12
+ "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
13
+ onBlur?: ((event: FocusEvent) => any) | undefined;
14
+ }>, {
15
+ placeholder: string;
16
+ disabled: boolean;
17
+ suggestions: string[];
18
+ modelValue: string[] | null;
19
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
20
+ containerRef: HTMLDivElement;
21
+ inputRef: HTMLInputElement;
22
+ }, HTMLDivElement>;
23
+ export default _default;
24
+ //# sourceMappingURL=TagsInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TagsInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/TagsInput.vue"],"names":[],"mappings":"AA+LI,KAAK,WAAW,GAAG;IACX,UAAU,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IAC5B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;;;;;;;;iBAFgB,MAAM;cACT,OAAO;iBAFJ,MAAM,EAAE;gBAFV,MAAM,EAAE,GAAG,IAAI;;;;;AA0PvC,wBAUG"}
@@ -0,0 +1,27 @@
1
+ type __VLS_Props = {
2
+ modelValue: string;
3
+ inputType?: "text" | "email" | "password" | "url" | "tel";
4
+ placeholder?: string;
5
+ maxLength?: number;
6
+ prefix?: string;
7
+ suffix?: string;
8
+ disabled?: boolean;
9
+ readonly?: boolean;
10
+ mask?: string;
11
+ };
12
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
+ focus: (event: FocusEvent) => any;
14
+ "update:modelValue": (value: string) => any;
15
+ blur: (event: FocusEvent) => any;
16
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
17
+ onFocus?: ((event: FocusEvent) => any) | undefined;
18
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
19
+ onBlur?: ((event: FocusEvent) => any) | undefined;
20
+ }>, {
21
+ placeholder: string;
22
+ inputType: "text" | "email" | "password" | "url" | "tel";
23
+ disabled: boolean;
24
+ readonly: boolean;
25
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
26
+ export default _default;
27
+ //# sourceMappingURL=TextInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TextInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/TextInput.vue"],"names":[],"mappings":"AA8GI,KAAK,WAAW,GAAG;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,KAAK,GAAG,KAAK,CAAC;IAC1D,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;;;;;;;;;;iBAPgB,MAAM;eADR,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,KAAK,GAAG,KAAK;cAK9C,OAAO;cACP,OAAO;;AAwJ9B,wBAQG"}
@@ -0,0 +1,28 @@
1
+ type __VLS_Props = {
2
+ modelValue: string;
3
+ rows?: number;
4
+ autoResize?: boolean;
5
+ maxLength?: number;
6
+ placeholder?: string;
7
+ disabled?: boolean;
8
+ readonly?: boolean;
9
+ };
10
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
+ focus: (event: FocusEvent) => any;
12
+ "update:modelValue": (value: string) => any;
13
+ blur: (event: FocusEvent) => any;
14
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
15
+ onFocus?: ((event: FocusEvent) => any) | undefined;
16
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
17
+ onBlur?: ((event: FocusEvent) => any) | undefined;
18
+ }>, {
19
+ placeholder: string;
20
+ disabled: boolean;
21
+ rows: number;
22
+ autoResize: boolean;
23
+ readonly: boolean;
24
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
25
+ textareaRef: HTMLTextAreaElement;
26
+ }, HTMLTextAreaElement>;
27
+ export default _default;
28
+ //# sourceMappingURL=TextareaInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TextareaInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/TextareaInput.vue"],"names":[],"mappings":"AAkGI,KAAK,WAAW,GAAG;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;;;;;;;;;;iBAHgB,MAAM;cACT,OAAO;UAJX,MAAM;gBACA,OAAO;cAIT,OAAO;;;;AAoI9B,wBAUG"}
@@ -0,0 +1,7 @@
1
+ type __VLS_Props = {
2
+ label?: string;
3
+ className?: string;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
6
+ export default _default;
7
+ //# sourceMappingURL=FormDivider.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormDivider.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/FormDivider.vue"],"names":[],"mappings":"AAwBI,KAAK,WAAW,GAAG;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;;AA0DN,wBAOG"}
@@ -0,0 +1,15 @@
1
+ import { SchemaNode } from '../../types/schema';
2
+ type __VLS_Props = {
3
+ title?: string;
4
+ description?: string;
5
+ collapsible?: boolean;
6
+ collapsed?: boolean;
7
+ children: SchemaNode[];
8
+ className?: string;
9
+ };
10
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
11
+ collapsible: boolean;
12
+ collapsed: boolean;
13
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
14
+ export default _default;
15
+ //# sourceMappingURL=FormGroup.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/FormGroup.vue"],"names":[],"mappings":"AAwGI,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAGrD,KAAK,WAAW,GAAG;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,EAAE,UAAU,EAAE,CAAC;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;;iBAJgB,OAAO;eACT,OAAO;;AAuK/B,wBAQG"}
@@ -0,0 +1,7 @@
1
+ type __VLS_Props = {
2
+ content: string;
3
+ className?: string;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
6
+ export default _default;
7
+ //# sourceMappingURL=FormHtml.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormHtml.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/FormHtml.vue"],"names":[],"mappings":"AAuBI,KAAK,WAAW,GAAG;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;;AA6CN,wBAOG"}
@@ -0,0 +1,12 @@
1
+ import { SchemaNode } from '../../types/schema';
2
+ type __VLS_Props = {
3
+ children: SchemaNode[];
4
+ gap?: string | number;
5
+ align?: "start" | "center" | "end" | "stretch";
6
+ className?: string;
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
9
+ align: "start" | "center" | "end" | "stretch";
10
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
11
+ export default _default;
12
+ //# sourceMappingURL=FormRow.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormRow.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/FormRow.vue"],"names":[],"mappings":"AA6CI,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAGrD,KAAK,WAAW,GAAG;IACX,QAAQ,EAAE,UAAU,EAAE,CAAC;IACvB,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,GAAG,SAAS,CAAC;IAC/C,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;;WAFU,OAAO,GAAG,QAAQ,GAAG,KAAK,GAAG,SAAS;;AAiF1D,wBAQG"}
@@ -0,0 +1,11 @@
1
+ import { StepNodeItem } from '../../types/schema';
2
+ type __VLS_Props = {
3
+ steps: StepNodeItem[];
4
+ linear?: boolean;
5
+ className?: string;
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
8
+ linear: boolean;
9
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
10
+ export default _default;
11
+ //# sourceMappingURL=FormSteps.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormSteps.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/FormSteps.vue"],"names":[],"mappings":"AA4MI,OAAO,KAAK,EAAc,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAInE,KAAK,WAAW,GAAG;IACX,KAAK,EAAE,YAAY,EAAE,CAAC;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;;YAFW,OAAO;;AAsQ5B,wBAQG"}
@@ -0,0 +1,8 @@
1
+ import { TabNodeItem } from '../../types/schema';
2
+ type __VLS_Props = {
3
+ tabs: TabNodeItem[];
4
+ className?: string;
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
7
+ export default _default;
8
+ //# sourceMappingURL=FormTabs.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormTabs.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/FormTabs.vue"],"names":[],"mappings":"AA2HI,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAGtD,KAAK,WAAW,GAAG;IACf,IAAI,EAAE,WAAW,EAAE,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;;AA6KN,wBAOG"}
@@ -0,0 +1,8 @@
1
+ import { LayoutNode } from '../../types/layout';
2
+ import { SchemaNode } from '../../types/schema';
3
+ type __VLS_Props = {
4
+ nodes: SchemaNode[] | LayoutNode[];
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
7
+ export default _default;
8
+ //# sourceMappingURL=LayoutRenderer.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LayoutRenderer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/LayoutRenderer.vue"],"names":[],"mappings":"AA2HI,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAUrD,KAAK,WAAW,GAAG;IACf,KAAK,EAAE,UAAU,EAAE,GAAG,UAAU,EAAE,CAAC;CACtC,CAAC;;AAkNN,wBAMG"}
@@ -0,0 +1,9 @@
1
+ import { FormEventName, FormEventPayloadMap } from '../types/form';
2
+ type EventHandler<E extends FormEventName> = (payload: FormEventPayloadMap[E]) => void;
3
+ export interface EventBus {
4
+ on: <E extends FormEventName>(event: E, handler: EventHandler<E>) => () => void;
5
+ emit: <E extends FormEventName>(event: E, payload: FormEventPayloadMap[E]) => void;
6
+ }
7
+ export declare function createEventBus(): EventBus;
8
+ export {};
9
+ //# sourceMappingURL=eventBus.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"eventBus.d.ts","sourceRoot":"","sources":["../../src/core/eventBus.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;AAExE,KAAK,YAAY,CAAC,CAAC,SAAS,aAAa,IAAI,CAAC,OAAO,EAAE,mBAAmB,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;AAEvF,MAAM,WAAW,QAAQ;IACrB,EAAE,EAAE,CAAC,CAAC,SAAS,aAAa,EAAE,KAAK,EAAE,CAAC,EAAE,OAAO,EAAE,YAAY,CAAC,CAAC,CAAC,KAAK,MAAM,IAAI,CAAC;IAChF,IAAI,EAAE,CAAC,CAAC,SAAS,aAAa,EAAE,KAAK,EAAE,CAAC,EAAE,OAAO,EAAE,mBAAmB,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;CACtF;AAED,wBAAgB,cAAc,IAAI,QAAQ,CAyBzC"}
@@ -0,0 +1,24 @@
1
+ import { Component, ComputedRef, InjectionKey } from 'vue';
2
+ export declare const FormComponentsKey: InjectionKey<ComputedRef<Record<string, Component>>>;
3
+ /**
4
+ * Register a Vue component for a given field type.
5
+ * If a component is already registered for that type, it will be replaced.
6
+ */
7
+ export declare function registerFieldType(type: string, component: Component): void;
8
+ /**
9
+ * Unregister a field type component.
10
+ */
11
+ export declare function unregisterFieldType(type: string): void;
12
+ /**
13
+ * Retrieve the component registered for a given field type.
14
+ */
15
+ export declare function getFieldComponent(type: string): Component | undefined;
16
+ /**
17
+ * Check whether a component is registered for a given field type.
18
+ */
19
+ export declare function hasFieldType(type: string): boolean;
20
+ /**
21
+ * Return all registered field type names.
22
+ */
23
+ export declare function getRegisteredFieldTypes(): string[];
24
+ //# sourceMappingURL=fieldRegistry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fieldRegistry.d.ts","sourceRoot":"","sources":["../../src/core/fieldRegistry.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,SAAS,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,KAAK,CAAC;AAMhE,eAAO,MAAM,iBAAiB,EAAE,YAAY,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC,CAClD,CAAC;AAQlC;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,SAAS,GAAG,IAAI,CAE1E;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAEtD;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,CAErE;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAElD;AAED;;GAEG;AACH,wBAAgB,uBAAuB,IAAI,MAAM,EAAE,CAElD"}