@bitrix24/b24ui-nuxt 0.3.1 → 0.3.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.
package/.nuxt/b24ui.css CHANGED
@@ -1,2 +1,3 @@
1
- @theme default {
2
- }
1
+ @source "./b24ui";
2
+
3
+ @theme default static {}
package/README.md CHANGED
@@ -39,13 +39,8 @@ export default defineNuxtConfig({
39
39
  2. Import Tailwind CSS and Bitrix24 UI in your CSS:
40
40
 
41
41
  ```css [assets/css/main.css]
42
- @import "tailwindcss";
42
+ @import "tailwindcss" theme(static);
43
43
  @import "@bitrix24/b24ui-nuxt";
44
- /**
45
- * @see https://github.com/tailwindlabs/tailwindcss/issues/16733#issuecomment-2676450404
46
- */
47
- @source "../../../node_modules/@bitrix24/b24ui-nuxt/.nuxt";
48
- @source "../../../node_modules/@bitrix24/b24ui-nuxt/dist";
49
44
  ```
50
45
 
51
46
  Learn more in the [installation guide](https://bitrix24.github.io/b24ui/guide/installation-nuxt-app.html).
@@ -90,13 +85,8 @@ app.mount('#app')
90
85
  3. Import Tailwind CSS and Bitrix24 UI in your CSS:
91
86
 
92
87
  ```css [assets/main.css]
93
- @import "tailwindcss";
88
+ @import "tailwindcss" theme(static);
94
89
  @import "@bitrix24/b24ui-nuxt";
95
- /**
96
- * @see https://github.com/tailwindlabs/tailwindcss/issues/16733#issuecomment-2676450404
97
- */
98
- @source "../../node_modules/@bitrix24/b24ui-nuxt/.nuxt";
99
- @source "../../node_modules/@bitrix24/b24ui-nuxt/dist";
100
90
  ```
101
91
 
102
92
  Learn more in the [installation guide](https://bitrix24.github.io/b24ui/guide/installation-vue.html).