@shwfed/nuxt 0.11.36 → 0.11.38

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 (22) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/fields.d.vue.ts +396 -342
  3. package/dist/runtime/components/fields.vue +2 -1
  4. package/dist/runtime/components/fields.vue.d.ts +396 -342
  5. package/dist/runtime/components/modal.vue +2 -2
  6. package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.vue +3 -3
  7. package/dist/runtime/components/ui/command/CommandDialog.vue +3 -3
  8. package/dist/runtime/components/ui/dialog/DialogScrollContent.d.vue.ts +8 -3
  9. package/dist/runtime/components/ui/dialog/DialogScrollContent.vue +167 -14
  10. package/dist/runtime/components/ui/dialog/DialogScrollContent.vue.d.ts +8 -3
  11. package/dist/runtime/components/ui/fields/Fields.d.vue.ts +846 -350
  12. package/dist/runtime/components/ui/fields/Fields.vue +538 -435
  13. package/dist/runtime/components/ui/fields/Fields.vue.d.ts +846 -350
  14. package/dist/runtime/components/ui/fields/schema.d.ts +3337 -30
  15. package/dist/runtime/components/ui/fields/schema.js +86 -9
  16. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +394 -340
  17. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +767 -175
  18. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +394 -340
  19. package/dist/runtime/components/ui/menu-tabs-configurator/MenuTabsConfiguratorDialog.vue +3 -3
  20. package/dist/runtime/components/ui/table/Table.vue +1 -0
  21. package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.vue +3 -3
  22. package/package.json +1 -1
@@ -7,10 +7,10 @@ import { cn } from "../../../utils/cn";
7
7
  import { Button } from "../button";
8
8
  import {
9
9
  Dialog,
10
- DialogContent,
11
10
  DialogDescription,
12
11
  DialogFooter,
13
12
  DialogHeader,
13
+ DialogScrollContent,
14
14
  DialogTitle
15
15
  } from "../dialog";
16
16
  import { ExpressionEditor } from "../expression-editor";
@@ -258,7 +258,7 @@ watch(normalizedSearch, async () => {
258
258
  :open="open"
259
259
  @update:open="open = $event"
260
260
  >
261
- <DialogContent
261
+ <DialogScrollContent
262
262
  data-slot="menu-tabs-configurator-dialog"
263
263
  class="flex h-[min(42rem,calc(100vh-4rem))] w-[calc(100%-2rem)] max-h-[calc(100vh-4rem)] max-w-[calc(100%-2rem)] flex-col overflow-hidden p-0 sm:w-[80vw] sm:max-w-[80vw]"
264
264
  >
@@ -419,7 +419,7 @@ watch(normalizedSearch, async () => {
419
419
  {{ t("confirm") }}
420
420
  </Button>
421
421
  </DialogFooter>
422
- </DialogContent>
422
+ </DialogScrollContent>
423
423
  </Dialog>
424
424
  </template>
425
425
 
@@ -159,6 +159,7 @@ const TableRowCELContext = defineComponent({
159
159
  name: "TableRowCELContext",
160
160
  props: {
161
161
  row: {
162
+ type: null,
162
163
  default: void 0
163
164
  },
164
165
  index: {
@@ -13,10 +13,10 @@ import { Button } from "../button";
13
13
  import { Checkbox } from "../checkbox";
14
14
  import {
15
15
  Dialog,
16
- DialogContent,
17
16
  DialogDescription,
18
17
  DialogFooter,
19
18
  DialogHeader,
19
+ DialogScrollContent,
20
20
  DialogTitle
21
21
  } from "../dialog";
22
22
  import { Input } from "../input";
@@ -1625,7 +1625,7 @@ function confirmChanges() {
1625
1625
  :open="open"
1626
1626
  @update:open="handleOpenChange"
1627
1627
  >
1628
- <DialogContent
1628
+ <DialogScrollContent
1629
1629
  class="flex h-[min(42rem,calc(100vh-4rem))] w-[calc(100%-2rem)] max-h-[calc(100vh-4rem)] max-w-[calc(100%-2rem)] flex-col overflow-hidden p-0 sm:w-[80vw] sm:max-w-[80vw]"
1630
1630
  :show-close-button="true"
1631
1631
  @pointer-down-outside="(event) => event.preventDefault()"
@@ -2437,7 +2437,7 @@ function confirmChanges() {
2437
2437
  </Button>
2438
2438
  </div>
2439
2439
  </DialogFooter>
2440
- </DialogContent>
2440
+ </DialogScrollContent>
2441
2441
  </Dialog>
2442
2442
  </template>
2443
2443
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shwfed/nuxt",
3
- "version": "0.11.36",
3
+ "version": "0.11.38",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "type": "module",