@weni/unnnic-system 3.0.4-alpha.1 → 3.0.5-alpha.0
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/CHANGELOG.md +9 -0
- package/dist/components/SelectSmart/SelectSmart.vue.d.ts +18 -0
- package/dist/components/SelectSmart/SelectSmart.vue.d.ts.map +1 -1
- package/dist/components/SelectSmart/SelectSmartOption.vue.d.ts +9 -0
- package/dist/components/SelectSmart/SelectSmartOption.vue.d.ts.map +1 -1
- package/dist/{es-39b05ec7.mjs → es-e4780f92.mjs} +1 -1
- package/dist/{index-c43e689f.mjs → index-c20c8a10.mjs} +717 -701
- package/dist/{pt-br-b70cfbf8.mjs → pt-br-9e604702.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +1 -1
- package/dist/unnnic.umd.js +1 -1
- package/package.json +1 -1
- package/src/assets/scss/colors.scss +3 -0
- package/src/components/SelectSmart/SelectSmart.vue +22 -1
- package/src/components/SelectSmart/SelectSmartMultipleHeader.vue +1 -1
- package/src/components/SelectSmart/SelectSmartOption.vue +5 -0
- package/src/stories/SelectSmart.stories.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## 3.0.4 (2025-01-27)
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Semantic Color Tokens**: Added new active state semantic color tokens:
|
|
13
|
+
- `bg-active`: Background color for active states using teal-600
|
|
14
|
+
- `fg-active`: Foreground/text color for active states using teal-600
|
|
15
|
+
- `border-active`: Border color for active states using teal-600
|
|
16
|
+
|
|
8
17
|
## 3.0.3 (2025-08-25)
|
|
9
18
|
|
|
10
19
|
### Added
|
|
@@ -64,6 +64,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
64
64
|
type: BooleanConstructor;
|
|
65
65
|
default: boolean;
|
|
66
66
|
};
|
|
67
|
+
multipleLimit: {
|
|
68
|
+
type: (NumberConstructor | null)[];
|
|
69
|
+
default: null;
|
|
70
|
+
};
|
|
67
71
|
}>, {}, {
|
|
68
72
|
active: boolean;
|
|
69
73
|
status: string;
|
|
@@ -173,6 +177,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
173
177
|
type: BooleanConstructor;
|
|
174
178
|
default: boolean;
|
|
175
179
|
};
|
|
180
|
+
multipleLimit: {
|
|
181
|
+
type: (NumberConstructor | null)[];
|
|
182
|
+
default: null;
|
|
183
|
+
};
|
|
176
184
|
}>> & Readonly<{
|
|
177
185
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
178
186
|
onOnChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -193,6 +201,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
193
201
|
selectFirst: boolean;
|
|
194
202
|
isLoading: boolean;
|
|
195
203
|
enableSearchByValue: boolean;
|
|
204
|
+
multipleLimit: number | null;
|
|
196
205
|
}, {}, {
|
|
197
206
|
TextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
198
207
|
placeholder: {
|
|
@@ -498,6 +507,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
498
507
|
type: BooleanConstructor;
|
|
499
508
|
default: null;
|
|
500
509
|
};
|
|
510
|
+
disabled: {
|
|
511
|
+
type: BooleanConstructor;
|
|
512
|
+
default: boolean;
|
|
513
|
+
};
|
|
501
514
|
allowCheckbox: {
|
|
502
515
|
type: BooleanConstructor;
|
|
503
516
|
default: boolean;
|
|
@@ -537,6 +550,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
537
550
|
type: BooleanConstructor;
|
|
538
551
|
default: null;
|
|
539
552
|
};
|
|
553
|
+
disabled: {
|
|
554
|
+
type: BooleanConstructor;
|
|
555
|
+
default: boolean;
|
|
556
|
+
};
|
|
540
557
|
allowCheckbox: {
|
|
541
558
|
type: BooleanConstructor;
|
|
542
559
|
default: boolean;
|
|
@@ -550,6 +567,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
550
567
|
}>> & Readonly<{}>, {
|
|
551
568
|
label: string;
|
|
552
569
|
size: string;
|
|
570
|
+
disabled: boolean;
|
|
553
571
|
description: string;
|
|
554
572
|
active: boolean;
|
|
555
573
|
isMultiple: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectSmart.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SelectSmart/SelectSmart.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SelectSmart.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SelectSmart/SelectSmart.vue"],"names":[],"mappings":"AA2GA;"}
|
|
@@ -26,6 +26,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
26
26
|
type: BooleanConstructor;
|
|
27
27
|
default: null;
|
|
28
28
|
};
|
|
29
|
+
disabled: {
|
|
30
|
+
type: BooleanConstructor;
|
|
31
|
+
default: boolean;
|
|
32
|
+
};
|
|
29
33
|
allowCheckbox: {
|
|
30
34
|
type: BooleanConstructor;
|
|
31
35
|
default: boolean;
|
|
@@ -65,6 +69,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
65
69
|
type: BooleanConstructor;
|
|
66
70
|
default: null;
|
|
67
71
|
};
|
|
72
|
+
disabled: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
default: boolean;
|
|
75
|
+
};
|
|
68
76
|
allowCheckbox: {
|
|
69
77
|
type: BooleanConstructor;
|
|
70
78
|
default: boolean;
|
|
@@ -78,6 +86,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
78
86
|
}>> & Readonly<{}>, {
|
|
79
87
|
label: string;
|
|
80
88
|
size: string;
|
|
89
|
+
disabled: boolean;
|
|
81
90
|
description: string;
|
|
82
91
|
active: boolean;
|
|
83
92
|
isMultiple: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectSmartOption.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SelectSmart/SelectSmartOption.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SelectSmartOption.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SelectSmart/SelectSmartOption.vue"],"names":[],"mappings":"AA6CA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8BAqL8B,sBAAsB"}
|