@sebgroup/green-angular 4.2.2 → 4.3.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/esm2022/lib/dropdown/dropdown.component.mjs +19 -7
- package/esm2022/src/lib/dropdown/dropdown.component.mjs +19 -7
- package/fesm2022/sebgroup-green-angular-src-lib-dropdown.mjs +18 -6
- package/fesm2022/sebgroup-green-angular-src-lib-dropdown.mjs.map +1 -1
- package/fesm2022/sebgroup-green-angular.mjs +18 -6
- package/fesm2022/sebgroup-green-angular.mjs.map +1 -1
- package/lib/dropdown/dropdown.component.d.ts +5 -2
- package/package.json +2 -2
- package/src/lib/dropdown/dropdown.component.d.ts +5 -2
|
@@ -27,7 +27,6 @@ export declare class NggDropdownComponent implements ControlValueAccessor, OnIni
|
|
|
27
27
|
private injector;
|
|
28
28
|
private _cdr;
|
|
29
29
|
id?: string;
|
|
30
|
-
texts?: DropdownTexts;
|
|
31
30
|
loop?: boolean;
|
|
32
31
|
display: string;
|
|
33
32
|
useValue: string;
|
|
@@ -46,6 +45,9 @@ export declare class NggDropdownComponent implements ControlValueAccessor, OnIni
|
|
|
46
45
|
set options(value: DropdownOption[] | undefined);
|
|
47
46
|
get options(): DropdownOption[] | undefined;
|
|
48
47
|
private _options;
|
|
48
|
+
set texts(texts: DropdownTexts | undefined);
|
|
49
|
+
get texts(): DropdownTexts | undefined;
|
|
50
|
+
private _texts;
|
|
49
51
|
set multiSelect(value: string | boolean);
|
|
50
52
|
get multiSelect(): boolean;
|
|
51
53
|
private _multiSelect;
|
|
@@ -75,6 +77,7 @@ export declare class NggDropdownComponent implements ControlValueAccessor, OnIni
|
|
|
75
77
|
private convertToBoolean;
|
|
76
78
|
private optionByValue;
|
|
77
79
|
private displayTextByValue;
|
|
80
|
+
private textToDisplay;
|
|
78
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<NggDropdownComponent, never>;
|
|
79
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NggDropdownComponent, "ngg-dropdown", never, { "id": { "alias": "id"; "required": false; }; "
|
|
82
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NggDropdownComponent, "ngg-dropdown", never, { "id": { "alias": "id"; "required": false; }; "loop": { "alias": "loop"; "required": false; }; "display": { "alias": "display"; "required": false; }; "useValue": { "alias": "useValue"; "required": false; }; "label": { "alias": "label"; "required": false; }; "valid": { "alias": "valid"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "searchFilter": { "alias": "searchFilter"; "required": false; }; "syncPopoverWidth": { "alias": "syncPopoverWidth"; "required": false; }; "size": { "alias": "size"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "disableMobileStyles": { "alias": "disableMobileStyles"; "required": false; }; "fixedPlacement": { "alias": "fixedPlacement"; "required": false; }; "options": { "alias": "options"; "required": false; }; "texts": { "alias": "texts"; "required": false; }; "multiSelect": { "alias": "multiSelect"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "touched": "touched"; }, ["customOption", "customButton"], ["[data-form-info]"], false, never>;
|
|
80
83
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sebgroup/green-angular",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": ">=16.2.14",
|
|
6
6
|
"@angular/common": ">=16.2.12",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"date-fns": "^2.28.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@sebgroup/green-core": "^1.
|
|
17
|
+
"@sebgroup/green-core": "^1.28.0",
|
|
18
18
|
"@sebgroup/chlorophyll": "^3.4.3",
|
|
19
19
|
"@sebgroup/extract": "^3.0.2",
|
|
20
20
|
"tslib": "^2.3.1"
|
|
@@ -27,7 +27,6 @@ export declare class NggDropdownComponent implements ControlValueAccessor, OnIni
|
|
|
27
27
|
private injector;
|
|
28
28
|
private _cdr;
|
|
29
29
|
id?: string;
|
|
30
|
-
texts?: DropdownTexts;
|
|
31
30
|
loop?: boolean;
|
|
32
31
|
display: string;
|
|
33
32
|
useValue: string;
|
|
@@ -46,6 +45,9 @@ export declare class NggDropdownComponent implements ControlValueAccessor, OnIni
|
|
|
46
45
|
set options(value: DropdownOption[] | undefined);
|
|
47
46
|
get options(): DropdownOption[] | undefined;
|
|
48
47
|
private _options;
|
|
48
|
+
set texts(texts: DropdownTexts | undefined);
|
|
49
|
+
get texts(): DropdownTexts | undefined;
|
|
50
|
+
private _texts;
|
|
49
51
|
set multiSelect(value: string | boolean);
|
|
50
52
|
get multiSelect(): boolean;
|
|
51
53
|
private _multiSelect;
|
|
@@ -75,6 +77,7 @@ export declare class NggDropdownComponent implements ControlValueAccessor, OnIni
|
|
|
75
77
|
private convertToBoolean;
|
|
76
78
|
private optionByValue;
|
|
77
79
|
private displayTextByValue;
|
|
80
|
+
private textToDisplay;
|
|
78
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<NggDropdownComponent, never>;
|
|
79
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NggDropdownComponent, "ngg-dropdown", never, { "id": { "alias": "id"; "required": false; }; "
|
|
82
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NggDropdownComponent, "ngg-dropdown", never, { "id": { "alias": "id"; "required": false; }; "loop": { "alias": "loop"; "required": false; }; "display": { "alias": "display"; "required": false; }; "useValue": { "alias": "useValue"; "required": false; }; "label": { "alias": "label"; "required": false; }; "valid": { "alias": "valid"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "searchFilter": { "alias": "searchFilter"; "required": false; }; "syncPopoverWidth": { "alias": "syncPopoverWidth"; "required": false; }; "size": { "alias": "size"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "disableMobileStyles": { "alias": "disableMobileStyles"; "required": false; }; "fixedPlacement": { "alias": "fixedPlacement"; "required": false; }; "options": { "alias": "options"; "required": false; }; "texts": { "alias": "texts"; "required": false; }; "multiSelect": { "alias": "multiSelect"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "touched": "touched"; }, ["customOption", "customButton"], ["[data-form-info]"], false, never>;
|
|
80
83
|
}
|