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.
@@ -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;