@shwfed/nuxt 0.10.2 → 0.10.4
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/button.d.vue.ts +77 -0
- package/dist/runtime/components/button.vue +39 -0
- package/dist/runtime/components/button.vue.d.ts +77 -0
- package/dist/runtime/components/fields.d.vue.ts +2 -2
- package/dist/runtime/components/fields.vue.d.ts +2 -2
- package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.d.vue.ts +79 -0
- package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.vue +977 -0
- package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.vue.d.ts +79 -0
- package/dist/runtime/components/ui/button-configurator/menu.d.ts +47 -0
- package/dist/runtime/components/ui/button-configurator/menu.js +373 -0
- package/dist/runtime/components/ui/buttons/Buttons.d.vue.ts +77 -0
- package/dist/runtime/components/ui/buttons/Buttons.vue +238 -0
- package/dist/runtime/components/ui/buttons/Buttons.vue.d.ts +77 -0
- package/dist/runtime/components/ui/buttons/schema.d.ts +281 -0
- package/dist/runtime/components/ui/buttons/schema.js +50 -0
- package/dist/runtime/components/ui/command/CommandInput.vue +1 -1
- package/dist/runtime/components/ui/fields/Fields.d.vue.ts +4 -4
- package/dist/runtime/components/ui/fields/Fields.vue +306 -134
- package/dist/runtime/components/ui/fields/Fields.vue.d.ts +4 -4
- package/dist/runtime/components/ui/fields/schema.d.ts +3 -3
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +2 -2
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +2 -2
- package/dist/runtime/components/ui/table/Table.vue +10 -9
- package/package.json +1 -1
|
@@ -765,10 +765,10 @@ export { AccessorC, ColumnC, RenderC, TableConfigC } from "./schema";
|
|
|
765
765
|
</div>
|
|
766
766
|
</div>
|
|
767
767
|
|
|
768
|
-
<div class="flex items-center justify-between w-full py-2 gap-2 text-sm text-zinc-600">
|
|
768
|
+
<div class="flex items-center justify-between w-full py-2 gap-2 text-sm text-zinc-600 @container">
|
|
769
769
|
<div
|
|
770
770
|
:class="[
|
|
771
|
-
'relative p-1 flex-1 prose prose-zinc text-xs'
|
|
771
|
+
'relative p-1 flex-1 prose prose-zinc text-xs invisible @lg:visible'
|
|
772
772
|
]"
|
|
773
773
|
>
|
|
774
774
|
<span
|
|
@@ -782,7 +782,7 @@ export { AccessorC, ColumnC, RenderC, TableConfigC } from "./schema";
|
|
|
782
782
|
<i18n-t
|
|
783
783
|
keypath="total"
|
|
784
784
|
tag="span"
|
|
785
|
-
class="text-xs"
|
|
785
|
+
class="text-xs hidden @lg:inline"
|
|
786
786
|
>
|
|
787
787
|
<template #count>
|
|
788
788
|
<strong>{{ totalItems }}</strong>
|
|
@@ -791,7 +791,7 @@ export { AccessorC, ColumnC, RenderC, TableConfigC } from "./schema";
|
|
|
791
791
|
<label
|
|
792
792
|
v-if="resolvedPaginationPageSizes"
|
|
793
793
|
data-slot="table-pagination-page-size"
|
|
794
|
-
class="
|
|
794
|
+
class="items-center gap-2 text-xs text-zinc-500 hidden @lg:flex"
|
|
795
795
|
>
|
|
796
796
|
<NativeSelect
|
|
797
797
|
data-slot="table-pagination-page-size-select"
|
|
@@ -850,8 +850,9 @@ export { AccessorC, ColumnC, RenderC, TableConfigC } from "./schema";
|
|
|
850
850
|
<Pagination.ListItem
|
|
851
851
|
v-if="page.type === 'page'"
|
|
852
852
|
:class="[
|
|
853
|
-
'w-7 h-7
|
|
854
|
-
'data-selected:text-(--primary) hover:bg-zinc-100 transition cursor-pointer'
|
|
853
|
+
'w-7 h-7 items-center justify-center rounded text-xs bg-transparent',
|
|
854
|
+
'data-selected:text-(--primary) hover:bg-zinc-100 transition cursor-pointer',
|
|
855
|
+
page.value - 1 === tableApi.getState().pagination.pageIndex ? '' : 'hidden @md:flex'
|
|
855
856
|
]"
|
|
856
857
|
:value="page.value"
|
|
857
858
|
>
|
|
@@ -859,7 +860,7 @@ export { AccessorC, ColumnC, RenderC, TableConfigC } from "./schema";
|
|
|
859
860
|
</Pagination.ListItem>
|
|
860
861
|
<Pagination.Ellipsis
|
|
861
862
|
v-else
|
|
862
|
-
class="w-7 h-7
|
|
863
|
+
class="w-7 h-7 items-center justify-center text-zinc-400 hidden @md:flex"
|
|
863
864
|
>
|
|
864
865
|
…
|
|
865
866
|
</Pagination.Ellipsis>
|
|
@@ -892,7 +893,7 @@ export { AccessorC, ColumnC, RenderC, TableConfigC } from "./schema";
|
|
|
892
893
|
<i18n-t
|
|
893
894
|
keypath="goto"
|
|
894
895
|
tag="div"
|
|
895
|
-
class="text-xs
|
|
896
|
+
class="text-xs items-center gap-2 hidden @lg:flex"
|
|
896
897
|
>
|
|
897
898
|
<template #page>
|
|
898
899
|
<NumberField
|
|
@@ -908,7 +909,7 @@ export { AccessorC, ColumnC, RenderC, TableConfigC } from "./schema";
|
|
|
908
909
|
</div>
|
|
909
910
|
<div
|
|
910
911
|
:class="[
|
|
911
|
-
'relative p-1 flex-1 prose prose-zinc text-xs text-right'
|
|
912
|
+
'relative p-1 flex-1 prose prose-zinc text-xs text-right invisible @lg:visible'
|
|
912
913
|
]"
|
|
913
914
|
>
|
|
914
915
|
<span
|