energy-components 2.8.0 → 2.9.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/dist/components/selectionChip.es.js +18 -11
- package/dist/components/style/selectionChip.css +1 -1
- package/dist/energy-components.css +1 -1
- package/dist/energy-components.es.js +9 -2
- package/dist/energy-components.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/types/src/components/input/selection-chip/selection-chip.vue.d.ts +15 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/llms/rdsselection-chip.md +1 -0
- package/package.json +2 -2
|
@@ -9,6 +9,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
9
9
|
default: string;
|
|
10
10
|
validator: (value: string) => boolean;
|
|
11
11
|
};
|
|
12
|
+
/**
|
|
13
|
+
* <span>Indica si el chip es pequeño (height: 32px)</span>
|
|
14
|
+
*/
|
|
15
|
+
small: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
12
19
|
/**
|
|
13
20
|
* <span>Icono a mostrar en el chip</span>
|
|
14
21
|
*/
|
|
@@ -71,6 +78,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
71
78
|
default: string;
|
|
72
79
|
validator: (value: string) => boolean;
|
|
73
80
|
};
|
|
81
|
+
/**
|
|
82
|
+
* <span>Indica si el chip es pequeño (height: 32px)</span>
|
|
83
|
+
*/
|
|
84
|
+
small: {
|
|
85
|
+
type: BooleanConstructor;
|
|
86
|
+
default: boolean;
|
|
87
|
+
};
|
|
74
88
|
/**
|
|
75
89
|
* <span>Icono a mostrar en el chip</span>
|
|
76
90
|
*/
|
|
@@ -123,6 +137,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
123
137
|
}>> & Readonly<{
|
|
124
138
|
onOnClickChip?: ((value: string | number | boolean | object) => any) | undefined;
|
|
125
139
|
}>, {
|
|
140
|
+
small: boolean;
|
|
126
141
|
id: string;
|
|
127
142
|
icon: string;
|
|
128
143
|
disabled: boolean;
|