@devjuliovilla/jv-ui 1.5.0 → 1.5.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devjuliovilla/jv-ui",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Accessibility-first Angular component library — components, forms, data grids, dialogs, layout, services, and i18n infrastructure built with signals and standalone APIs.",
|
|
5
5
|
"author": "@devjuliovilla",
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,6 +8,7 @@ type JvIntent = 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger' | 'succ
|
|
|
8
8
|
type JvTone = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'info' | 'neutral';
|
|
9
9
|
|
|
10
10
|
declare class JvButtonComponent {
|
|
11
|
+
readonly type: _angular_core.InputSignal<"button" | "submit" | "reset">;
|
|
11
12
|
readonly variant: _angular_core.InputSignal<JvIntent>;
|
|
12
13
|
readonly icon: _angular_core.InputSignal<string | null>;
|
|
13
14
|
readonly iconPosition: _angular_core.InputSignal<"start" | "end">;
|
|
@@ -15,7 +16,7 @@ declare class JvButtonComponent {
|
|
|
15
16
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
16
17
|
protected readonly buttonClass: _angular_core.Signal<string>;
|
|
17
18
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<JvButtonComponent, never>;
|
|
18
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<JvButtonComponent, "jv-button", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconPosition": { "alias": "iconPosition"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
19
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<JvButtonComponent, "jv-button", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconPosition": { "alias": "iconPosition"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
19
20
|
}
|
|
20
21
|
|
|
21
22
|
declare class JvButtonGroupComponent {
|