@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.
Files changed (71) hide show
  1. package/.nuxt/b24ui/content/table-wrapper.ts +1 -1
  2. package/.nuxt/b24ui/prose/img.ts +5 -0
  3. package/.nuxt/b24ui/prose/table.ts +6 -0
  4. package/.nuxt/b24ui/prose/tbody.ts +5 -0
  5. package/.nuxt/b24ui/prose/td.ts +5 -0
  6. package/.nuxt/b24ui/prose/th.ts +5 -0
  7. package/.nuxt/b24ui/prose/thead.ts +5 -0
  8. package/.nuxt/b24ui/prose/tr.ts +5 -0
  9. package/dist/meta.cjs +480 -48
  10. package/dist/meta.d.cts +480 -48
  11. package/dist/meta.d.mts +480 -48
  12. package/dist/meta.d.ts +480 -48
  13. package/dist/meta.mjs +480 -48
  14. package/dist/module.cjs +2 -2
  15. package/dist/module.json +2 -2
  16. package/dist/module.mjs +2 -2
  17. package/dist/runtime/components/App.vue +6 -6
  18. package/dist/runtime/components/Button.vue +1 -0
  19. package/dist/runtime/components/Form.vue +1 -1
  20. package/dist/runtime/components/Input.vue +7 -3
  21. package/dist/runtime/components/LinkBase.vue +4 -2
  22. package/dist/runtime/components/Textarea.vue +7 -3
  23. package/dist/runtime/composables/defineLocale.d.ts +4 -4
  24. package/dist/runtime/composables/useLocale.d.ts +3 -3
  25. package/dist/runtime/composables/useLocale.js +3 -3
  26. package/dist/runtime/locale/ar.d.ts +2 -1
  27. package/dist/runtime/locale/br.d.ts +2 -1
  28. package/dist/runtime/locale/de.d.ts +2 -1
  29. package/dist/runtime/locale/en.d.ts +2 -1
  30. package/dist/runtime/locale/fr.d.ts +2 -1
  31. package/dist/runtime/locale/id.d.ts +2 -1
  32. package/dist/runtime/locale/index.d.ts +1 -1
  33. package/dist/runtime/locale/index.js +1 -1
  34. package/dist/runtime/locale/it.d.ts +2 -1
  35. package/dist/runtime/locale/ja.d.ts +2 -1
  36. package/dist/runtime/locale/kz.d.ts +2 -1
  37. package/dist/runtime/locale/la.d.ts +2 -1
  38. package/dist/runtime/locale/ms.d.ts +2 -1
  39. package/dist/runtime/locale/pl.d.ts +2 -1
  40. package/dist/runtime/locale/ru.d.ts +2 -1
  41. package/dist/runtime/locale/sc.d.ts +2 -1
  42. package/dist/runtime/locale/tc.d.ts +2 -1
  43. package/dist/runtime/locale/th.d.ts +2 -1
  44. package/dist/runtime/locale/tr.d.ts +2 -1
  45. package/dist/runtime/locale/ua.d.ts +2 -1
  46. package/dist/runtime/locale/vn.d.ts +2 -1
  47. package/dist/runtime/prose/A.vue +1 -1
  48. package/dist/runtime/prose/Code.vue +1 -1
  49. package/dist/runtime/prose/Img.vue +32 -0
  50. package/dist/runtime/prose/Table.vue +74 -0
  51. package/dist/runtime/prose/Tbody.vue +34 -0
  52. package/dist/runtime/prose/Td.vue +34 -0
  53. package/dist/runtime/prose/Th.vue +34 -0
  54. package/dist/runtime/prose/Thead.vue +34 -0
  55. package/dist/runtime/prose/Tr.vue +34 -0
  56. package/dist/runtime/types/index.d.ts +7 -0
  57. package/dist/runtime/types/index.js +7 -0
  58. package/dist/runtime/types/locale.d.ts +2 -2
  59. package/dist/runtime/utils/locale.d.ts +5 -5
  60. package/dist/runtime/utils/tv.d.ts +1 -1
  61. package/dist/runtime/vue/plugins/head.d.ts +1 -1
  62. package/dist/runtime/vue/plugins/head.js +4 -3
  63. package/dist/runtime/vue/stubs.d.ts +5 -1
  64. package/dist/runtime/vue/stubs.js +2 -1
  65. package/dist/shared/{b24ui-nuxt.BRwBcdAH.mjs → b24ui-nuxt.BiEJAB1L.mjs} +65 -1
  66. package/dist/shared/{b24ui-nuxt.C1tIhR9w.cjs → b24ui-nuxt.yyScbwpE.cjs} +65 -1
  67. package/dist/unplugin.cjs +1 -1
  68. package/dist/unplugin.mjs +1 -1
  69. package/dist/vite.cjs +1 -1
  70. package/dist/vite.mjs +1 -1
  71. package/package.json +20 -20
@@ -18,7 +18,7 @@ export default {
18
18
  },
19
19
  "rounded": {
20
20
  "true": "rounded-md",
21
- "false": "rounded"
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"
@@ -0,0 +1,5 @@
1
+ export default {
2
+ "slots": {
3
+ "base": ""
4
+ }
5
+ }
@@ -0,0 +1,6 @@
1
+ export default {
2
+ "slots": {
3
+ "root": "my-4 overflow-x-auto",
4
+ "base": ""
5
+ }
6
+ }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ "slots": {
3
+ "base": ""
4
+ }
5
+ }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ "slots": {
3
+ "base": "[&_code]:text-xs/5 [&_p]:my-0 [&_p]:leading-6 [&_ul]:my-0 [&_ol]:my-0 [&_ul]:ps-4.5 [&_ol]:ps-4.5 [&_li]:leading-6 [&_li]:my-0.5"
4
+ }
5
+ }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ "slots": {
3
+ "base": ""
4
+ }
5
+ }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ "slots": {
3
+ "base": "bg-base-50 dark:bg-base-600"
4
+ }
5
+ }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ "slots": {
3
+ "base": ""
4
+ }
5
+ }