@bitrix24/b24ui-nuxt 0.5.8 → 0.5.9
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/textarea.ts +43 -0
- package/dist/meta.cjs +392 -94
- package/dist/meta.d.cts +392 -94
- package/dist/meta.d.mts +392 -94
- package/dist/meta.d.ts +392 -94
- package/dist/meta.mjs +392 -94
- package/dist/module.cjs +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/Input.vue +9 -9
- package/dist/runtime/components/InputNumber.vue +12 -12
- package/dist/runtime/components/Textarea.vue +65 -29
- package/dist/runtime/composables/useComponentIcons.d.ts +2 -2
- package/dist/runtime/vue/stubs.d.ts +2 -2
- package/dist/shared/{b24ui-nuxt.B9fPD5yO.cjs → b24ui-nuxt.BVg3rkkG.cjs} +50 -1
- package/dist/shared/{b24ui-nuxt.DBFS6LH7.mjs → b24ui-nuxt.C1lGF53R.mjs} +50 -1
- package/dist/unplugin.cjs +1 -1
- package/dist/unplugin.mjs +1 -1
- package/dist/vite.cjs +1 -1
- package/dist/vite.mjs +1 -1
- package/package.json +4 -4
package/.nuxt/b24ui/textarea.ts
CHANGED
|
@@ -29,6 +29,12 @@ export default {
|
|
|
29
29
|
"slots": {
|
|
30
30
|
"root": "isolate relative inline-flex items-center w-full",
|
|
31
31
|
"base": "w-full px-3 py-1.5 border-0 focus:outline-none disabled:cursor-not-allowed disabled:bg-base-30/37 disabled:resize-none disabled:text-base-500 dark:disabled:bg-base-900/37 dark:disabled:text-base-800 appearance-none transition duration-300 ease-linear ring ring-inset ring-base-300 dark:ring-base-800 text-base-master bg-white placeholder:text-base-400 hover:text-base-900 focus:text-base-900 active:text-base-900 dark:text-base-150 dark:bg-transparent dark:placeholder:text-base-300 dark:hover:text-base-350 dark:focus:text-base-350 dark:active:text-base-350 font-b24-primary font-regular text-md leading-normal align-middle",
|
|
32
|
+
"leading": "absolute start-0 flex items-start inset-y-1.5 px-1.5",
|
|
33
|
+
"leadingIcon": "shrink-0 text-base-400 inset-y-1.5 size-lg2",
|
|
34
|
+
"leadingAvatar": "shrink-0",
|
|
35
|
+
"leadingAvatarSize": "xs",
|
|
36
|
+
"trailing": "absolute end-0 flex items-start inset-y-1.5 px-1.5",
|
|
37
|
+
"trailingIcon": "shrink-0 text-base-400 size-lg2",
|
|
32
38
|
"tag": "pointer-events-none select-none absolute z-10 -top-1.5 right-3 h-sm px-1.5 flex flex-col justify-center items-center font-b24-primary font-bold text-6xs leading-none uppercase rounded-full"
|
|
33
39
|
},
|
|
34
40
|
"variants": {
|
|
@@ -45,6 +51,11 @@ export default {
|
|
|
45
51
|
"noSplit": {
|
|
46
52
|
"false": "group-not-only:not-first:after:content-[''] group-not-only:not-first:after:absolute group-not-only:not-first:after:top-[7px] group-not-only:not-first:after:bottom-[6px] group-not-only:not-first:after:left-0 group-not-only:not-first:after:w-px group-not-only:not-first:after:bg-current/30"
|
|
47
53
|
},
|
|
54
|
+
"autoresize": {
|
|
55
|
+
"true": {
|
|
56
|
+
"base": "resize-none"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
48
59
|
"color": {
|
|
49
60
|
"default": "",
|
|
50
61
|
"danger": "",
|
|
@@ -96,6 +107,15 @@ export default {
|
|
|
96
107
|
"underline": {
|
|
97
108
|
"true": "ring-0 focus-visible:ring-0 border-b border-b-base-300 rounded-none"
|
|
98
109
|
},
|
|
110
|
+
"leading": {
|
|
111
|
+
"true": ""
|
|
112
|
+
},
|
|
113
|
+
"trailing": {
|
|
114
|
+
"true": ""
|
|
115
|
+
},
|
|
116
|
+
"loading": {
|
|
117
|
+
"true": ""
|
|
118
|
+
},
|
|
99
119
|
"highlight": {
|
|
100
120
|
"true": ""
|
|
101
121
|
}
|
|
@@ -308,6 +328,29 @@ export default {
|
|
|
308
328
|
"noBorder": false,
|
|
309
329
|
"underline": true,
|
|
310
330
|
"class": "border-b-ai-500 dark:border-b-ai-600"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"leading": true,
|
|
334
|
+
"class": "ps-8"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"trailing": true,
|
|
338
|
+
"class": "pe-8"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"loading": true,
|
|
342
|
+
"leading": true,
|
|
343
|
+
"class": {
|
|
344
|
+
"leadingIcon": "size-[21px]"
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"loading": true,
|
|
349
|
+
"leading": false,
|
|
350
|
+
"trailing": true,
|
|
351
|
+
"class": {
|
|
352
|
+
"trailingIcon": "size-[21px]"
|
|
353
|
+
}
|
|
311
354
|
}
|
|
312
355
|
],
|
|
313
356
|
"defaultVariants": {
|