@bitrix24/b24ui-nuxt 0.4.2 → 0.4.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.
Files changed (78) hide show
  1. package/.nuxt/b24ui/prose/a.ts +5 -0
  2. package/.nuxt/b24ui/prose/code.ts +31 -0
  3. package/.nuxt/b24ui/prose/pre.ts +6 -0
  4. package/dist/meta.cjs +714 -0
  5. package/dist/meta.d.cts +714 -0
  6. package/dist/meta.d.mts +714 -0
  7. package/dist/meta.d.ts +714 -0
  8. package/dist/meta.mjs +714 -0
  9. package/dist/module.cjs +1 -1
  10. package/dist/module.json +1 -1
  11. package/dist/module.mjs +1 -1
  12. package/dist/runtime/components/Avatar.vue +2 -1
  13. package/dist/runtime/components/RadioGroup.vue +3 -1
  14. package/dist/runtime/locale/ar.js +55 -0
  15. package/dist/runtime/locale/br.d.ts +2 -0
  16. package/dist/runtime/locale/br.js +54 -0
  17. package/dist/runtime/locale/de.d.ts +2 -0
  18. package/dist/runtime/locale/de.js +54 -0
  19. package/dist/runtime/locale/en.js +6 -0
  20. package/dist/runtime/locale/fr.d.ts +2 -0
  21. package/dist/runtime/locale/fr.js +54 -0
  22. package/dist/runtime/locale/id.d.ts +2 -0
  23. package/dist/runtime/locale/id.js +54 -0
  24. package/dist/runtime/locale/index.d.ts +44 -1
  25. package/dist/runtime/locale/index.js +17 -1
  26. package/dist/runtime/locale/it.d.ts +2 -0
  27. package/dist/runtime/locale/it.js +54 -0
  28. package/dist/runtime/locale/ja.d.ts +2 -0
  29. package/dist/runtime/locale/ja.js +54 -0
  30. package/dist/runtime/locale/kz.d.ts +2 -0
  31. package/dist/runtime/locale/kz.js +54 -0
  32. package/dist/runtime/locale/la.d.ts +2 -0
  33. package/dist/runtime/locale/{es.js → la.js} +7 -1
  34. package/dist/runtime/locale/ms.d.ts +2 -0
  35. package/dist/runtime/locale/ms.js +54 -0
  36. package/dist/runtime/locale/pl.d.ts +2 -0
  37. package/dist/runtime/locale/pl.js +54 -0
  38. package/dist/runtime/locale/ru.js +6 -0
  39. package/dist/runtime/locale/sc.d.ts +2 -0
  40. package/dist/runtime/locale/sc.js +54 -0
  41. package/dist/runtime/locale/tc.d.ts +2 -0
  42. package/dist/runtime/locale/tc.js +54 -0
  43. package/dist/runtime/locale/th.d.ts +2 -0
  44. package/dist/runtime/locale/th.js +54 -0
  45. package/dist/runtime/locale/tr.d.ts +2 -0
  46. package/dist/runtime/locale/tr.js +54 -0
  47. package/dist/runtime/locale/ua.d.ts +2 -0
  48. package/dist/runtime/locale/ua.js +54 -0
  49. package/dist/runtime/locale/vn.d.ts +2 -0
  50. package/dist/runtime/locale/vn.js +54 -0
  51. package/dist/runtime/prose/A.vue +32 -0
  52. package/dist/runtime/prose/Blockquote.vue +0 -2
  53. package/dist/runtime/prose/Code.vue +42 -0
  54. package/dist/runtime/prose/Em.vue +8 -12
  55. package/dist/runtime/prose/H1.vue +0 -2
  56. package/dist/runtime/prose/H2.vue +0 -2
  57. package/dist/runtime/prose/H3.vue +0 -2
  58. package/dist/runtime/prose/H4.vue +0 -2
  59. package/dist/runtime/prose/H5.vue +0 -2
  60. package/dist/runtime/prose/H6.vue +0 -2
  61. package/dist/runtime/prose/Hr.vue +0 -2
  62. package/dist/runtime/prose/Li.vue +0 -2
  63. package/dist/runtime/prose/Ol.vue +0 -2
  64. package/dist/runtime/prose/P.vue +0 -2
  65. package/dist/runtime/prose/Pre.vue +44 -0
  66. package/dist/runtime/prose/Strong.vue +0 -2
  67. package/dist/runtime/prose/Ul.vue +0 -2
  68. package/dist/runtime/types/index.d.ts +3 -0
  69. package/dist/runtime/types/index.js +3 -0
  70. package/dist/runtime/types/locale.d.ts +6 -0
  71. package/dist/shared/{b24ui-nuxt.Bx_-_mhu.mjs → b24ui-nuxt.BRwBcdAH.mjs} +91 -0
  72. package/dist/shared/{b24ui-nuxt.Bt28CeAD.cjs → b24ui-nuxt.C1tIhR9w.cjs} +91 -0
  73. package/dist/unplugin.cjs +1 -1
  74. package/dist/unplugin.mjs +1 -1
  75. package/dist/vite.cjs +1 -1
  76. package/dist/vite.mjs +1 -1
  77. package/package.json +7 -7
  78. /package/dist/runtime/locale/{es.d.ts → ar.d.ts} +0 -0
@@ -0,0 +1,5 @@
1
+ export default {
2
+ "slots": {
3
+ "base": "cursor-pointer text-blue-700 dark:text-blue-300 hover:underline underline-offset-2 focus-visible:outline-info-text transition-colors [&>code]:transition-colors [&>code]:ring-dashed hover:[&>code]:text-blue-700 hover:[&>code]:bg-blue-250 hover:[&>code]:ring-blue-250 dark:hover:[&>code]:text-blue-700 dark:hover:[&>code]:bg-blue-250 dark:hover:[&>code]:ring-blue-250"
4
+ }
5
+ }
@@ -0,0 +1,31 @@
1
+ const color = [
2
+ "default",
3
+ "danger",
4
+ "success",
5
+ "warning",
6
+ "primary",
7
+ "secondary",
8
+ "collab",
9
+ "ai"
10
+ ] as const
11
+
12
+ export default {
13
+ "slots": {
14
+ "base": "px-1.5 py-0.5 font-b24-system-mono font-medium text-sm leading-normal rounded-md inline-block"
15
+ },
16
+ "variants": {
17
+ "color": {
18
+ "default": "ring ring-inset text-base-800 bg-base-150 ring-base-300 dark:text-base-950 dark:bg-base-200 dark:ring-base-800",
19
+ "danger": "ring ring-inset text-red-800 bg-red-250 ring-red-250 dark:text-red-800 dark:bg-red-350 dark:ring-red-350",
20
+ "success": "ring ring-inset text-green-800 bg-green-300 ring-green-300 dark:text-green-800 dark:bg-green-330 dark:ring-green-330",
21
+ "warning": "ring ring-inset text-orange-800 bg-orange-300 ring-orange-300 dark:text-orange-800 dark:bg-orange-400 dark:ring-orange-400",
22
+ "primary": "ring ring-inset text-blue-700 bg-blue-250 ring-blue-250 dark:text-blue-700 dark:bg-blue-300 dark:ring-blue-300",
23
+ "secondary": "ring ring-inset text-white bg-cyan-350 ring-cyan-350 dark:text-cyan-100 dark:bg-cyan-400 dark:ring-cyan-400",
24
+ "collab": "ring ring-inset text-collab-800 bg-collab-300 ring-collab-300 dark:text-collab-800 dark:bg-collab-300 dark:ring-collab-300",
25
+ "ai": "ring ring-inset text-ai-500 bg-ai-150 ring-ai-150 dark:text-ai-600 dark:bg-ai-200 dark:ring-ai-200"
26
+ }
27
+ },
28
+ "defaultVariants": {
29
+ "color": "default" as typeof color[number]
30
+ }
31
+ }
@@ -0,0 +1,6 @@
1
+ export default {
2
+ "slots": {
3
+ "root": "my-4 p-4 font-b24-system-mono font-semibold text-sm leading-4 bg-black overflow-auto rounded w-full text-pretty",
4
+ "base": "text-green-350"
5
+ }
6
+ }