@bitrix24/b24ui-nuxt 0.2.1 → 0.2.3

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 (44) hide show
  1. package/.nuxt/b24ui/button.ts +9 -2
  2. package/.nuxt/b24ui/checkbox.ts +1 -1
  3. package/.nuxt/b24ui/dropdown-menu.ts +235 -0
  4. package/.nuxt/b24ui/index.ts +2 -0
  5. package/.nuxt/b24ui/input-menu.ts +1 -1
  6. package/.nuxt/b24ui/modal.ts +28 -0
  7. package/.nuxt/b24ui/radio-group.ts +1 -1
  8. package/.nuxt/b24ui/range.ts +1 -1
  9. package/.nuxt/b24ui/select-menu.ts +1 -1
  10. package/.nuxt/b24ui/select.ts +1 -1
  11. package/.nuxt/b24ui/switch.ts +1 -1
  12. package/.nuxt/b24ui/tabs.ts +2 -2
  13. package/.nuxt/b24ui/toaster.ts +4 -4
  14. package/.nuxt/b24ui.css +2 -0
  15. package/dist/meta.cjs +9050 -1027
  16. package/dist/meta.d.cts +9050 -1027
  17. package/dist/meta.d.mts +9050 -1027
  18. package/dist/meta.d.ts +9050 -1027
  19. package/dist/meta.mjs +9050 -1027
  20. package/dist/module.cjs +1 -1
  21. package/dist/module.json +1 -1
  22. package/dist/module.mjs +1 -1
  23. package/dist/runtime/components/App.vue +2 -2
  24. package/dist/runtime/components/DropdownMenu.vue +135 -0
  25. package/dist/runtime/components/DropdownMenuContent.vue +182 -0
  26. package/dist/runtime/components/Modal.vue +179 -0
  27. package/dist/runtime/components/ModalDialogClose.vue +17 -0
  28. package/dist/runtime/components/ModalProvider.vue +12 -0
  29. package/dist/runtime/composables/useComponentIcons.d.ts +2 -2
  30. package/dist/runtime/composables/useModal.d.ts +17 -0
  31. package/dist/runtime/composables/useModal.js +46 -0
  32. package/dist/runtime/index.css +1 -1
  33. package/dist/runtime/plugins/modal.d.ts +2 -0
  34. package/dist/runtime/plugins/modal.js +10 -0
  35. package/dist/runtime/types/index.d.ts +3 -0
  36. package/dist/runtime/types/index.js +3 -0
  37. package/dist/runtime/vue/components/Link.vue +1 -0
  38. package/dist/shared/{b24ui-nuxt.D5cXbZSx.cjs → b24ui-nuxt.Ce3hzs_q.cjs} +440 -26
  39. package/dist/shared/{b24ui-nuxt.CrjojW8t.mjs → b24ui-nuxt.DY8ePXC7.mjs} +440 -26
  40. package/dist/unplugin.cjs +1 -1
  41. package/dist/unplugin.mjs +1 -1
  42. package/dist/vite.cjs +1 -1
  43. package/dist/vite.mjs +1 -1
  44. package/package.json +12 -8
package/dist/vite.mjs CHANGED
@@ -4,7 +4,7 @@ import 'pathe';
4
4
  import 'unplugin';
5
5
  import 'defu';
6
6
  import '@tailwindcss/vite';
7
- import './shared/b24ui-nuxt.CrjojW8t.mjs';
7
+ import './shared/b24ui-nuxt.DY8ePXC7.mjs';
8
8
  import 'scule';
9
9
  import '@nuxt/kit';
10
10
  import 'tinyglobby';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrix24/b24ui-nuxt",
3
3
  "description": "Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE",
4
- "version": "0.2.1",
4
+ "version": "0.2.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/bitrix24/b24ui.git"
@@ -45,7 +45,8 @@
45
45
  }
46
46
  },
47
47
  "imports": {
48
- "#build/b24ui/*": "./.nuxt/b24ui/*.ts"
48
+ "#build/b24ui/*": "./.nuxt/b24ui/*.ts",
49
+ "#build/b24ui.css": "./.nuxt/b24ui.css"
49
50
  },
50
51
  "bin": {
51
52
  "bitrix24-ui": "./cli/index.mjs"
@@ -57,6 +58,7 @@
57
58
  "README.md",
58
59
  "LICENSE",
59
60
  ".nuxt/b24ui",
61
+ ".nuxt/b24ui.css",
60
62
  "dist",
61
63
  "cli",
62
64
  "vue-plugin.d.ts"
@@ -69,8 +71,8 @@
69
71
  "@nuxt/kit": "^3.15.4",
70
72
  "@nuxt/schema": "^3.15.4",
71
73
  "@nuxtjs/color-mode": "^3.5.2",
72
- "@tailwindcss/postcss": "^4.0.3",
73
- "@tailwindcss/vite": "^4.0.3",
74
+ "@tailwindcss/postcss": "^4.0.4",
75
+ "@tailwindcss/vite": "^4.0.4",
74
76
  "@tanstack/vue-table": "^8.20.5",
75
77
  "@unhead/vue": "^1.11.18",
76
78
  "@vueuse/core": "^12.5.0",
@@ -94,7 +96,7 @@
94
96
  "reka-ui": "1.0.0-alpha.9",
95
97
  "scule": "^1.3.0",
96
98
  "tailwind-variants": "^0.3.1",
97
- "tailwindcss": "^4.0.3",
99
+ "tailwindcss": "^4.0.4",
98
100
  "tinyglobby": "^0.2.10",
99
101
  "unplugin": "^2.1.2",
100
102
  "unplugin-auto-import": "^19.0.0",
@@ -156,13 +158,15 @@
156
158
  "ui-framework"
157
159
  ],
158
160
  "scripts": {
161
+ "dev:prepare-short": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && vite build playground-vue",
159
162
  "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && vite build playground-vue && nuxt-component-meta playground --outputDir ../src/.component-meta/",
160
- "dev:prepare_short": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && vite build playground-vue",
161
163
  "build": "nuxt-module-build build",
162
- "dev": "set DEV=true && nuxi dev playground",
164
+ "dev": "DEV=true nuxi dev playground",
165
+ "dev-window": "set DEV=true && nuxi dev playground",
163
166
  "dev:build": "nuxi build playground",
164
167
  "dev:generate": "nuxt generate playground",
165
- "dev:vue": "set DEV=true && vite playground-vue",
168
+ "dev:vue": "DEV=true vite playground-vue",
169
+ "dev:vue-window": "set DEV=true && vite playground-vue",
166
170
  "docs:full:dev": "pnpm build && vitepress dev docs",
167
171
  "docs:full:build": "pnpm build && vitepress build docs",
168
172
  "docs:dev": "vitepress dev docs",