@bitrix24/b24ui-nuxt 0.4.4 → 0.4.6
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/.nuxt/b24ui/content/table-wrapper.ts +1 -1
- package/.nuxt/b24ui/prose/img.ts +5 -0
- package/.nuxt/b24ui/prose/table.ts +6 -0
- package/.nuxt/b24ui/prose/tbody.ts +5 -0
- package/.nuxt/b24ui/prose/td.ts +5 -0
- package/.nuxt/b24ui/prose/th.ts +5 -0
- package/.nuxt/b24ui/prose/thead.ts +5 -0
- package/.nuxt/b24ui/prose/tr.ts +5 -0
- package/dist/meta.cjs +480 -48
- package/dist/meta.d.cts +480 -48
- package/dist/meta.d.mts +480 -48
- package/dist/meta.d.ts +480 -48
- package/dist/meta.mjs +480 -48
- package/dist/module.cjs +2 -2
- package/dist/module.json +2 -2
- package/dist/module.mjs +2 -2
- package/dist/runtime/components/App.vue +6 -6
- package/dist/runtime/components/Button.vue +1 -0
- package/dist/runtime/components/Form.vue +1 -1
- package/dist/runtime/components/Input.vue +7 -3
- package/dist/runtime/components/LinkBase.vue +4 -2
- package/dist/runtime/components/Textarea.vue +7 -3
- package/dist/runtime/composables/defineLocale.d.ts +4 -4
- package/dist/runtime/composables/useLocale.d.ts +3 -3
- package/dist/runtime/composables/useLocale.js +3 -3
- package/dist/runtime/locale/ar.d.ts +2 -1
- package/dist/runtime/locale/br.d.ts +2 -1
- package/dist/runtime/locale/de.d.ts +2 -1
- package/dist/runtime/locale/en.d.ts +2 -1
- package/dist/runtime/locale/fr.d.ts +2 -1
- package/dist/runtime/locale/id.d.ts +2 -1
- package/dist/runtime/locale/index.d.ts +1 -1
- package/dist/runtime/locale/index.js +1 -1
- package/dist/runtime/locale/it.d.ts +2 -1
- package/dist/runtime/locale/ja.d.ts +2 -1
- package/dist/runtime/locale/kz.d.ts +2 -1
- package/dist/runtime/locale/la.d.ts +2 -1
- package/dist/runtime/locale/ms.d.ts +2 -1
- package/dist/runtime/locale/pl.d.ts +2 -1
- package/dist/runtime/locale/ru.d.ts +2 -1
- package/dist/runtime/locale/sc.d.ts +2 -1
- package/dist/runtime/locale/tc.d.ts +2 -1
- package/dist/runtime/locale/th.d.ts +2 -1
- package/dist/runtime/locale/tr.d.ts +2 -1
- package/dist/runtime/locale/ua.d.ts +2 -1
- package/dist/runtime/locale/vn.d.ts +2 -1
- package/dist/runtime/prose/A.vue +1 -1
- package/dist/runtime/prose/Code.vue +1 -1
- package/dist/runtime/prose/Img.vue +32 -0
- package/dist/runtime/prose/Table.vue +74 -0
- package/dist/runtime/prose/Tbody.vue +34 -0
- package/dist/runtime/prose/Td.vue +34 -0
- package/dist/runtime/prose/Th.vue +34 -0
- package/dist/runtime/prose/Thead.vue +34 -0
- package/dist/runtime/prose/Tr.vue +34 -0
- package/dist/runtime/types/index.d.ts +7 -0
- package/dist/runtime/types/index.js +7 -0
- package/dist/runtime/types/locale.d.ts +2 -2
- package/dist/runtime/utils/locale.d.ts +5 -5
- package/dist/runtime/utils/tv.d.ts +1 -1
- package/dist/runtime/vue/plugins/head.d.ts +1 -1
- package/dist/runtime/vue/plugins/head.js +4 -3
- package/dist/runtime/vue/stubs.d.ts +5 -1
- package/dist/runtime/vue/stubs.js +2 -1
- package/dist/shared/{b24ui-nuxt.BRwBcdAH.mjs → b24ui-nuxt.BiEJAB1L.mjs} +65 -1
- package/dist/shared/{b24ui-nuxt.C1tIhR9w.cjs → b24ui-nuxt.yyScbwpE.cjs} +65 -1
- package/dist/unplugin.cjs +1 -1
- package/dist/unplugin.mjs +1 -1
- package/dist/vite.cjs +1 -1
- package/dist/vite.mjs +1 -1
- package/package.json +20 -20
|
@@ -18,7 +18,7 @@ export default {
|
|
|
18
18
|
},
|
|
19
19
|
"rounded": {
|
|
20
20
|
"true": "rounded-md",
|
|
21
|
-
"false": "
|
|
21
|
+
"false": ""
|
|
22
22
|
},
|
|
23
23
|
"zebra": {
|
|
24
24
|
"true": "[&>table>tbody>tr]:even:bg-base-30 [&>table>tbody>tr]:even:[&>td]:bg-base-30 [&>table>tbody>tr]:even:[&>th]:bg-base-30 dark:[&>table>tbody>tr]:even:bg-base-dark dark:[&>table>tbody>tr]:even:[&>td]:bg-base-dark dark:[&>table>tbody>tr]:even:[&>th]:bg-base-dark"
|