valtech-components 2.0.218 → 2.0.222
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/LICENSE +21 -0
- package/README.md +25 -29
- package/esm2022/lib/components/atoms/button/button.component.mjs +1 -1
- package/esm2022/lib/components/organisms/toolbar/toolbar.component.mjs +13 -7
- package/esm2022/lib/components/types.mjs +1 -1
- package/fesm2022/valtech-components.mjs +12 -6
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/button/button.component.d.ts +0 -9
- package/lib/components/types.d.ts +7 -1
- package/logo-terminal-rounded.png +0 -0
- package/package.json +1 -1
|
@@ -13,15 +13,6 @@ export declare class ButtonComponent {
|
|
|
13
13
|
WORKING: "WORKING";
|
|
14
14
|
ERROR: "ERROR";
|
|
15
15
|
};
|
|
16
|
-
/**
|
|
17
|
-
* Button configuration object.
|
|
18
|
-
* @type {ButtonMetadata}
|
|
19
|
-
* @property text - The button label.
|
|
20
|
-
* @property color - The button color (Ionic color string).
|
|
21
|
-
* @property icon - Icon to display (optional).
|
|
22
|
-
* @property state - Button state (enabled, disabled, working, etc.).
|
|
23
|
-
* @property expand, fill, size, shape, href, target, download, handler, etc. - See ButtonMetadata for all options.
|
|
24
|
-
*/
|
|
25
16
|
props: ButtonMetadata;
|
|
26
17
|
/**
|
|
27
18
|
* Event emitted when the button is clicked.
|
|
@@ -174,7 +174,13 @@ export interface IconMetada {
|
|
|
174
174
|
slot: 'start' | 'end';
|
|
175
175
|
}
|
|
176
176
|
/**
|
|
177
|
-
*
|
|
177
|
+
* Button configuration object.
|
|
178
|
+
* @type {ButtonMetadata}
|
|
179
|
+
* @property text - The button label.
|
|
180
|
+
* @property color - The button color (Ionic color string).
|
|
181
|
+
* @property icon - Icon to display (optional).
|
|
182
|
+
* @property state - Button state (enabled, disabled, working, etc.).
|
|
183
|
+
* @property expand, fill, size, shape, href, target, download, handler, etc. - See ButtonMetadata for all options.
|
|
178
184
|
*/
|
|
179
185
|
export interface ButtonMetadata {
|
|
180
186
|
/** Associated action type */
|
|
Binary file
|