@shwfed/nuxt 0.11.49 → 0.11.51

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 (30) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/button.d.vue.ts +8 -0
  3. package/dist/runtime/components/button.vue.d.ts +8 -0
  4. package/dist/runtime/components/fields.d.vue.ts +850 -6
  5. package/dist/runtime/components/fields.vue +0 -2
  6. package/dist/runtime/components/fields.vue.d.ts +850 -6
  7. package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.d.vue.ts +8 -0
  8. package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.vue +137 -0
  9. package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.vue.d.ts +8 -0
  10. package/dist/runtime/components/ui/button-configurator/menu.d.ts +2 -0
  11. package/dist/runtime/components/ui/button-configurator/menu.js +14 -0
  12. package/dist/runtime/components/ui/buttons/Buttons.d.vue.ts +8 -0
  13. package/dist/runtime/components/ui/buttons/Buttons.vue +42 -14
  14. package/dist/runtime/components/ui/buttons/Buttons.vue.d.ts +8 -0
  15. package/dist/runtime/components/ui/buttons/schema.d.ts +30 -0
  16. package/dist/runtime/components/ui/buttons/schema.js +5 -0
  17. package/dist/runtime/components/ui/fields/Fields.d.vue.ts +1698 -10
  18. package/dist/runtime/components/ui/fields/Fields.vue +627 -162
  19. package/dist/runtime/components/ui/fields/Fields.vue.d.ts +1698 -10
  20. package/dist/runtime/components/ui/fields/schema.d.ts +5625 -153
  21. package/dist/runtime/components/ui/fields/schema.js +83 -80
  22. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +849 -5
  23. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +224 -618
  24. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +849 -5
  25. package/package.json +1 -1
  26. package/dist/runtime/components/ui/fields/FieldsBody.d.vue.ts +0 -17
  27. package/dist/runtime/components/ui/fields/FieldsBody.vue +0 -720
  28. package/dist/runtime/components/ui/fields/FieldsBody.vue.d.ts +0 -17
  29. package/dist/runtime/components/ui/fields/render-context.d.ts +0 -120
  30. package/dist/runtime/components/ui/fields/render-context.js +0 -0
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@shwfed/nuxt",
3
3
  "configKey": "shwfed",
4
- "version": "0.11.49",
4
+ "version": "0.11.51",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -23,6 +23,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
23
23
  message: string;
24
24
  }[] | undefined;
25
25
  icon?: string | undefined;
26
+ hidden?: string | undefined;
27
+ disabled?: string | undefined;
26
28
  variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
27
29
  size?: "default" | "sm" | "xs" | undefined;
28
30
  hideTitle?: boolean | undefined;
@@ -56,6 +58,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
56
58
  message: string;
57
59
  }[] | undefined;
58
60
  icon?: string | undefined;
61
+ hidden?: string | undefined;
62
+ disabled?: string | undefined;
59
63
  variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
60
64
  modal?: Readonly<{
61
65
  title?: readonly {
@@ -98,6 +102,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
98
102
  message: string;
99
103
  }[] | undefined;
100
104
  icon?: string | undefined;
105
+ hidden?: string | undefined;
106
+ disabled?: string | undefined;
101
107
  variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
102
108
  size?: "default" | "sm" | "xs" | undefined;
103
109
  hideTitle?: boolean | undefined;
@@ -131,6 +137,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
131
137
  message: string;
132
138
  }[] | undefined;
133
139
  icon?: string | undefined;
140
+ hidden?: string | undefined;
141
+ disabled?: string | undefined;
134
142
  variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
135
143
  modal?: Readonly<{
136
144
  title?: readonly {
@@ -23,6 +23,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
23
23
  message: string;
24
24
  }[] | undefined;
25
25
  icon?: string | undefined;
26
+ hidden?: string | undefined;
27
+ disabled?: string | undefined;
26
28
  variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
27
29
  size?: "default" | "sm" | "xs" | undefined;
28
30
  hideTitle?: boolean | undefined;
@@ -56,6 +58,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
56
58
  message: string;
57
59
  }[] | undefined;
58
60
  icon?: string | undefined;
61
+ hidden?: string | undefined;
62
+ disabled?: string | undefined;
59
63
  variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
60
64
  modal?: Readonly<{
61
65
  title?: readonly {
@@ -98,6 +102,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
98
102
  message: string;
99
103
  }[] | undefined;
100
104
  icon?: string | undefined;
105
+ hidden?: string | undefined;
106
+ disabled?: string | undefined;
101
107
  variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
102
108
  size?: "default" | "sm" | "xs" | undefined;
103
109
  hideTitle?: boolean | undefined;
@@ -131,6 +137,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
131
137
  message: string;
132
138
  }[] | undefined;
133
139
  icon?: string | undefined;
140
+ hidden?: string | undefined;
141
+ disabled?: string | undefined;
134
142
  variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
135
143
  modal?: Readonly<{
136
144
  title?: readonly {