@bitrix24/b24ui-nuxt 0.4.0 → 0.4.2

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 (88) hide show
  1. package/.nuxt/b24ui/button.ts +8 -0
  2. package/.nuxt/b24ui/index.ts +1 -0
  3. package/.nuxt/b24ui/modal.ts +21 -3
  4. package/.nuxt/b24ui/prose/blockquote.ts +5 -0
  5. package/.nuxt/b24ui/prose/em.ts +5 -0
  6. package/.nuxt/b24ui/prose/h1.ts +6 -0
  7. package/.nuxt/b24ui/prose/h2.ts +16 -0
  8. package/.nuxt/b24ui/prose/h3.ts +16 -0
  9. package/.nuxt/b24ui/prose/h4.ts +16 -0
  10. package/.nuxt/b24ui/prose/h5.ts +16 -0
  11. package/.nuxt/b24ui/prose/h6.ts +16 -0
  12. package/.nuxt/b24ui/prose/hr.ts +5 -0
  13. package/.nuxt/b24ui/prose/li.ts +5 -0
  14. package/.nuxt/b24ui/prose/ol.ts +5 -0
  15. package/.nuxt/b24ui/prose/p.ts +5 -0
  16. package/.nuxt/b24ui/prose/strong.ts +5 -0
  17. package/.nuxt/b24ui/prose/ul.ts +5 -0
  18. package/.nuxt/b24ui/slideover.ts +26 -7
  19. package/dist/meta.cjs +32768 -29015
  20. package/dist/meta.d.cts +32768 -29015
  21. package/dist/meta.d.mts +32768 -29015
  22. package/dist/meta.d.ts +32768 -29015
  23. package/dist/meta.mjs +32768 -29015
  24. package/dist/module.cjs +6 -1
  25. package/dist/module.json +1 -1
  26. package/dist/module.mjs +6 -1
  27. package/dist/runtime/components/Advice.vue +3 -0
  28. package/dist/runtime/components/Alert.vue +17 -2
  29. package/dist/runtime/components/Avatar.vue +7 -0
  30. package/dist/runtime/components/AvatarGroup.vue +3 -0
  31. package/dist/runtime/components/Badge.vue +21 -3
  32. package/dist/runtime/components/Button.vue +120 -52
  33. package/dist/runtime/components/ButtonGroup.vue +7 -1
  34. package/dist/runtime/components/Checkbox.vue +6 -0
  35. package/dist/runtime/components/Chip.vue +18 -2
  36. package/dist/runtime/components/Countdown.vue +32 -8
  37. package/dist/runtime/components/{content/DescriptionList.vue → DescriptionList.vue} +19 -8
  38. package/dist/runtime/components/DropdownMenu.vue +14 -2
  39. package/dist/runtime/components/DropdownMenuContent.vue +6 -0
  40. package/dist/runtime/components/FormField.vue +6 -0
  41. package/dist/runtime/components/Input.vue +50 -6
  42. package/dist/runtime/components/InputMenu.vue +67 -15
  43. package/dist/runtime/components/InputNumber.vue +42 -8
  44. package/dist/runtime/components/Kbd.vue +6 -0
  45. package/dist/runtime/components/Link.vue +8 -4
  46. package/dist/runtime/components/Modal.vue +22 -5
  47. package/dist/runtime/components/Progress.vue +19 -3
  48. package/dist/runtime/components/RadioGroup.vue +6 -0
  49. package/dist/runtime/components/Range.vue +9 -1
  50. package/dist/runtime/components/Select.vue +47 -10
  51. package/dist/runtime/components/SelectMenu.vue +52 -12
  52. package/dist/runtime/components/Separator.vue +16 -2
  53. package/dist/runtime/components/Slideover.vue +22 -4
  54. package/dist/runtime/components/Switch.vue +19 -3
  55. package/dist/runtime/components/Tabs.vue +12 -0
  56. package/dist/runtime/components/Textarea.vue +50 -6
  57. package/dist/runtime/components/Toast.vue +13 -2
  58. package/dist/runtime/components/Toaster.vue +8 -0
  59. package/dist/runtime/components/{prose → content}/TableWrapper.vue +27 -3
  60. package/dist/runtime/composables/useComponentIcons.d.ts +9 -2
  61. package/dist/runtime/index.css +1 -1
  62. package/dist/runtime/prose/Blockquote.vue +36 -0
  63. package/dist/runtime/prose/Em.vue +36 -0
  64. package/dist/runtime/prose/H1.vue +36 -0
  65. package/dist/runtime/prose/H2.vue +36 -0
  66. package/dist/runtime/prose/H3.vue +36 -0
  67. package/dist/runtime/prose/H4.vue +36 -0
  68. package/dist/runtime/prose/H5.vue +36 -0
  69. package/dist/runtime/prose/H6.vue +36 -0
  70. package/dist/runtime/prose/Hr.vue +30 -0
  71. package/dist/runtime/prose/Li.vue +36 -0
  72. package/dist/runtime/prose/Ol.vue +36 -0
  73. package/dist/runtime/prose/P.vue +36 -0
  74. package/dist/runtime/prose/Strong.vue +36 -0
  75. package/dist/runtime/prose/Ul.vue +36 -0
  76. package/dist/runtime/types/index.d.ts +16 -2
  77. package/dist/runtime/types/index.js +16 -2
  78. package/dist/runtime/utils/index.js +1 -1
  79. package/dist/runtime/vue/components/Link.vue +10 -6
  80. package/dist/shared/{b24ui-nuxt.BT9wxrhm.cjs → b24ui-nuxt.Bt28CeAD.cjs} +350 -90
  81. package/dist/shared/{b24ui-nuxt.CBO0gAWn.mjs → b24ui-nuxt.Bx_-_mhu.mjs} +350 -90
  82. package/dist/unplugin.cjs +4 -4
  83. package/dist/unplugin.mjs +4 -4
  84. package/dist/vite.cjs +1 -1
  85. package/dist/vite.mjs +1 -1
  86. package/package.json +7 -6
  87. /package/.nuxt/b24ui/{prose → content}/table-wrapper.ts +0 -0
  88. /package/.nuxt/b24ui/{content/description-list.ts → description-list.ts} +0 -0