@bitrix24/b24ui-nuxt 2.1.11 → 2.1.15

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.css +2 -0
  2. package/README-AI.md +1 -1
  3. package/dist/meta.d.mts +98705 -785
  4. package/dist/meta.mjs +98705 -785
  5. package/dist/module.json +1 -1
  6. package/dist/module.mjs +1 -1
  7. package/dist/runtime/air-design-tokens/003_b24_context_light.css +1 -1
  8. package/dist/runtime/air-design-tokens/004_b24_context_dark.css +1 -1
  9. package/dist/runtime/air-design-tokens/components/popup.css +1 -1
  10. package/dist/runtime/air-design-tokens/tw-style/font-size.css +1 -1
  11. package/dist/runtime/components/ContextMenu.d.vue.ts +6 -2
  12. package/dist/runtime/components/ContextMenu.vue.d.ts +6 -2
  13. package/dist/runtime/components/ContextMenuContent.vue +3 -2
  14. package/dist/runtime/components/DropdownMenu.d.vue.ts +6 -2
  15. package/dist/runtime/components/DropdownMenu.vue +2 -2
  16. package/dist/runtime/components/DropdownMenu.vue.d.ts +6 -2
  17. package/dist/runtime/components/DropdownMenuContent.vue +5 -4
  18. package/dist/runtime/components/Editor.d.vue.ts +87 -0
  19. package/dist/runtime/components/Editor.vue +185 -0
  20. package/dist/runtime/components/Editor.vue.d.ts +87 -0
  21. package/dist/runtime/components/EditorDragHandle.d.vue.ts +60 -0
  22. package/dist/runtime/components/EditorDragHandle.vue +128 -0
  23. package/dist/runtime/components/EditorDragHandle.vue.d.ts +60 -0
  24. package/dist/runtime/components/EditorEmojiMenu.d.vue.ts +35 -0
  25. package/dist/runtime/components/EditorEmojiMenu.vue +70 -0
  26. package/dist/runtime/components/EditorEmojiMenu.vue.d.ts +35 -0
  27. package/dist/runtime/components/EditorMentionMenu.d.vue.ts +39 -0
  28. package/dist/runtime/components/EditorMentionMenu.vue +74 -0
  29. package/dist/runtime/components/EditorMentionMenu.vue.d.ts +39 -0
  30. package/dist/runtime/components/EditorSuggestionMenu.d.vue.ts +52 -0
  31. package/dist/runtime/components/EditorSuggestionMenu.vue +79 -0
  32. package/dist/runtime/components/EditorSuggestionMenu.vue.d.ts +52 -0
  33. package/dist/runtime/components/EditorToolbar.d.vue.ts +80 -0
  34. package/dist/runtime/components/EditorToolbar.vue +241 -0
  35. package/dist/runtime/components/EditorToolbar.vue.d.ts +80 -0
  36. package/dist/runtime/components/FormField.vue +2 -2
  37. package/dist/runtime/components/InputMenu.d.vue.ts +2 -0
  38. package/dist/runtime/components/InputMenu.vue +14 -1
  39. package/dist/runtime/components/InputMenu.vue.d.ts +2 -0
  40. package/dist/runtime/components/PageCard.vue +2 -1
  41. package/dist/runtime/components/Pagination.d.vue.ts +0 -1
  42. package/dist/runtime/components/Pagination.vue.d.ts +0 -1
  43. package/dist/runtime/components/Select.d.vue.ts +2 -0
  44. package/dist/runtime/components/Select.vue +14 -1
  45. package/dist/runtime/components/Select.vue.d.ts +2 -0
  46. package/dist/runtime/components/SelectMenu.d.vue.ts +2 -0
  47. package/dist/runtime/components/SelectMenu.vue +14 -1
  48. package/dist/runtime/components/SelectMenu.vue.d.ts +2 -0
  49. package/dist/runtime/components/User.vue +0 -1
  50. package/dist/runtime/components/color-mode/ColorModeSelect.vue +1 -0
  51. package/dist/runtime/components/locale/LocaleSelect.vue +6 -3
  52. package/dist/runtime/components/prose/Accordion.vue +1 -1
  53. package/dist/runtime/components/prose/Callout.vue +0 -1
  54. package/dist/runtime/components/prose/Card.vue +0 -1
  55. package/dist/runtime/composables/defineShortcuts.d.ts +2 -1
  56. package/dist/runtime/composables/defineShortcuts.js +62 -15
  57. package/dist/runtime/composables/useEditorMenu.d.ts +64 -0
  58. package/dist/runtime/composables/useEditorMenu.js +448 -0
  59. package/dist/runtime/dictionary/icons.d.ts +1 -0
  60. package/dist/runtime/dictionary/icons.js +5 -3
  61. package/dist/runtime/locale/in.d.ts +3 -0
  62. package/dist/runtime/locale/in.js +136 -0
  63. package/dist/runtime/locale/index.d.ts +25 -23
  64. package/dist/runtime/locale/index.js +11 -10
  65. package/dist/runtime/types/editor.d.ts +69 -0
  66. package/dist/runtime/types/editor.js +0 -0
  67. package/dist/runtime/types/index.d.ts +7 -0
  68. package/dist/runtime/types/index.js +7 -0
  69. package/dist/runtime/types/prose.d.ts +2 -0
  70. package/dist/runtime/types/prose.js +2 -0
  71. package/dist/runtime/utils/editor.d.ts +69 -0
  72. package/dist/runtime/utils/editor.js +364 -0
  73. package/dist/runtime/utils/tv.js +2 -1
  74. package/dist/runtime/vue/components/color-mode/ColorModeSelect.vue +1 -0
  75. package/dist/shared/{b24ui-nuxt.Dh5A-7HA.mjs → b24ui-nuxt.BYDi-4ID.mjs} +323 -132
  76. package/dist/unplugin.mjs +1 -1
  77. package/dist/vite.mjs +1 -1
  78. package/package.json +22 -8
@@ -33,6 +33,7 @@ const props = defineProps({
33
33
  labelKey: { type: null, required: false },
34
34
  descriptionKey: { type: null, required: false },
35
35
  defaultValue: { type: null, required: false },
36
+ modelModifiers: { type: Object, required: false },
36
37
  multiple: { type: Boolean, required: false },
37
38
  highlight: { type: Boolean, required: false },
38
39
  createItem: { type: [Boolean, String, Object], required: false },