@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.
- package/dist/module.json +1 -1
- package/dist/runtime/components/fields.d.vue.ts +396 -342
- package/dist/runtime/components/fields.vue +2 -1
- package/dist/runtime/components/fields.vue.d.ts +396 -342
- package/dist/runtime/components/modal.vue +2 -2
- package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.vue +3 -3
- package/dist/runtime/components/ui/command/CommandDialog.vue +3 -3
- package/dist/runtime/components/ui/dialog/DialogScrollContent.d.vue.ts +8 -3
- package/dist/runtime/components/ui/dialog/DialogScrollContent.vue +167 -14
- package/dist/runtime/components/ui/dialog/DialogScrollContent.vue.d.ts +8 -3
- package/dist/runtime/components/ui/fields/Fields.d.vue.ts +846 -350
- package/dist/runtime/components/ui/fields/Fields.vue +538 -435
- package/dist/runtime/components/ui/fields/Fields.vue.d.ts +846 -350
- package/dist/runtime/components/ui/fields/schema.d.ts +3337 -30
- package/dist/runtime/components/ui/fields/schema.js +86 -9
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +394 -340
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +767 -175
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +394 -340
- package/dist/runtime/components/ui/menu-tabs-configurator/MenuTabsConfiguratorDialog.vue +3 -3
- package/dist/runtime/components/ui/table/Table.vue +1 -0
- package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.vue +3 -3
- 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
|
-
<
|
|
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
|
-
</
|
|
422
|
+
</DialogScrollContent>
|
|
423
423
|
</Dialog>
|
|
424
424
|
</template>
|
|
425
425
|
|
|
@@ -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
|
-
<
|
|
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
|
-
</
|
|
2440
|
+
</DialogScrollContent>
|
|
2441
2441
|
</Dialog>
|
|
2442
2442
|
</template>
|
|
2443
2443
|
|