@3ddv/software-division-components 2.0.2 → 2.0.3
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/fesm2022/3ddv-software-division-components-backoffice-datepicker.mjs +4 -4
- package/fesm2022/3ddv-software-division-components-backoffice-datepicker.mjs.map +1 -1
- package/fesm2022/3ddv-software-division-components-backoffice-table.mjs +2 -2
- package/fesm2022/3ddv-software-division-components-backoffice-table.mjs.map +1 -1
- package/fesm2022/3ddv-software-division-components-dvm-legend.mjs +4 -4
- package/fesm2022/3ddv-software-division-components-dvm-legend.mjs.map +1 -1
- package/fesm2022/3ddv-software-division-components-dvm-popover.mjs.map +1 -1
- package/fesm2022/3ddv-software-division-components-generic-button.mjs +4 -2
- package/fesm2022/3ddv-software-division-components-generic-button.mjs.map +1 -1
- package/fesm2022/3ddv-software-division-components-generic-carousel.mjs +2 -2
- package/fesm2022/3ddv-software-division-components-generic-carousel.mjs.map +1 -1
- package/fesm2022/3ddv-software-division-components-generic-dialog.mjs +1 -1
- package/fesm2022/3ddv-software-division-components-generic-dialog.mjs.map +1 -1
- package/fesm2022/3ddv-software-division-components-generic-icon.mjs +28 -5
- package/fesm2022/3ddv-software-division-components-generic-icon.mjs.map +1 -1
- package/fesm2022/3ddv-software-division-components-generic-select.mjs +31 -11
- package/fesm2022/3ddv-software-division-components-generic-select.mjs.map +1 -1
- package/package.json +1 -1
- package/styles.css +1 -1
- package/types/3ddv-software-division-components-generic-button.d.ts +3 -1
- package/types/3ddv-software-division-components-generic-icon.d.ts +10 -1
- package/types/3ddv-software-division-components-generic-select.d.ts +3 -2
|
@@ -69,10 +69,11 @@ declare class HlmSelectTrigger {
|
|
|
69
69
|
protected readonly _icon: _angular_core.Signal<HlmIcon | undefined>;
|
|
70
70
|
protected readonly _brnSelect: BrnSelect<any> | null;
|
|
71
71
|
readonly userClass: _angular_core.InputSignal<ClassValue>;
|
|
72
|
+
readonly variant: _angular_core.InputSignal<"light" | "dark">;
|
|
72
73
|
readonly size: _angular_core.InputSignal<"default" | "sm">;
|
|
73
74
|
protected readonly _computedClass: _angular_core.Signal<string>;
|
|
74
75
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HlmSelectTrigger, never>;
|
|
75
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HlmSelectTrigger, "hlm-select-trigger", never, { "userClass": { "alias": "class"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, ["_icon"], ["*", "ng-icon"], true, never>;
|
|
76
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HlmSelectTrigger, "hlm-select-trigger", never, { "userClass": { "alias": "class"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, ["_icon"], ["*", "ng-icon"], true, never>;
|
|
76
77
|
}
|
|
77
78
|
|
|
78
79
|
declare class HlmSelectValue {
|
|
@@ -96,7 +97,7 @@ interface SelectOptions {
|
|
|
96
97
|
|
|
97
98
|
declare class SelectComponent {
|
|
98
99
|
placeholder: _angular_core.InputSignal<string>;
|
|
99
|
-
variant: _angular_core.InputSignal<
|
|
100
|
+
variant: _angular_core.InputSignal<"light" | "dark">;
|
|
100
101
|
options: _angular_core.InputSignal<SelectOptions[]>;
|
|
101
102
|
fullWidth: _angular_core.InputSignal<boolean>;
|
|
102
103
|
defaultValue: _angular_core.InputSignal<SelectOptions | undefined>;
|