@corto-ai/gds-angular 2.1.5-test.4 → 2.1.5-test.5
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/README.md +5 -5
- package/assets/scss/_toast-anchor-fallback.scss +3 -3
- package/assets/svg/line/line-desktop.svg +3 -0
- package/assets/svg/line/line-person-lock.svg +3 -0
- package/fesm2022/corto-ai-gds-angular.mjs +27 -15
- package/fesm2022/corto-ai-gds-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/types/corto-ai-gds-angular.d.ts +4 -2
package/package.json
CHANGED
|
@@ -665,6 +665,7 @@ declare class GdsDateInputComponent extends GdsSignalFormContainer implements Af
|
|
|
665
665
|
dropdownPositionX: _angular_core.InputSignal<string>;
|
|
666
666
|
dropdownPositionY: _angular_core.InputSignal<string>;
|
|
667
667
|
clearable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
668
|
+
clearableAlwaysVisible: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
668
669
|
blurred: _angular_core.OutputEmitterRef<void>;
|
|
669
670
|
cleared: _angular_core.OutputEmitterRef<void>;
|
|
670
671
|
selectedDate: _angular_core.ModelSignal<Date | undefined>;
|
|
@@ -689,7 +690,7 @@ declare class GdsDateInputComponent extends GdsSignalFormContainer implements Af
|
|
|
689
690
|
openCalendar(): void;
|
|
690
691
|
closeCalendar(): void;
|
|
691
692
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsDateInputComponent, never>;
|
|
692
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsDateInputComponent, "gds-date-input", never, { "dropdownPositionX": { "alias": "dropdownPositionX"; "required": false; "isSignal": true; }; "dropdownPositionY": { "alias": "dropdownPositionY"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "selectedDate": { "alias": "selectedDate"; "required": false; "isSignal": true; }; }, { "blurred": "blurred"; "cleared": "cleared"; "selectedDate": "selectedDateChange"; }, ["inputComponent"], ["[leading-visual]", "*", "[trailing-visual]"], true, never>;
|
|
693
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsDateInputComponent, "gds-date-input", never, { "dropdownPositionX": { "alias": "dropdownPositionX"; "required": false; "isSignal": true; }; "dropdownPositionY": { "alias": "dropdownPositionY"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "clearableAlwaysVisible": { "alias": "clearableAlwaysVisible"; "required": false; "isSignal": true; }; "selectedDate": { "alias": "selectedDate"; "required": false; "isSignal": true; }; }, { "blurred": "blurred"; "cleared": "cleared"; "selectedDate": "selectedDateChange"; }, ["inputComponent"], ["[leading-visual]", "*", "[trailing-visual]"], true, never>;
|
|
693
694
|
}
|
|
694
695
|
|
|
695
696
|
declare class GdsFileUploadComponent extends GdsSignalFormControl<File[]> {
|
|
@@ -866,6 +867,7 @@ declare class GdsSliderComponent extends GdsSignalFormContainer implements After
|
|
|
866
867
|
declare class GdsTextInputComponent extends GdsSignalFormContainer implements AfterContentInit, OnDestroy {
|
|
867
868
|
#private;
|
|
868
869
|
clearable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
870
|
+
clearableAlwaysVisible: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
869
871
|
cleared: _angular_core.OutputEmitterRef<void>;
|
|
870
872
|
input: _angular_core.Signal<GdsNativeInputDirective | undefined>;
|
|
871
873
|
inputValue: _angular_core.WritableSignal<string | undefined>;
|
|
@@ -875,7 +877,7 @@ declare class GdsTextInputComponent extends GdsSignalFormContainer implements Af
|
|
|
875
877
|
onInputChange(event: Event): void;
|
|
876
878
|
onClearClick(): void;
|
|
877
879
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsTextInputComponent, never>;
|
|
878
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsTextInputComponent, "gds-text-input", never, { "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; }, { "cleared": "cleared"; }, ["input"], ["[leading-visual]", "*", "[trailing-visual]"], true, never>;
|
|
880
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsTextInputComponent, "gds-text-input", never, { "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "clearableAlwaysVisible": { "alias": "clearableAlwaysVisible"; "required": false; "isSignal": true; }; }, { "cleared": "cleared"; }, ["input"], ["[leading-visual]", "*", "[trailing-visual]"], true, never>;
|
|
879
881
|
}
|
|
880
882
|
|
|
881
883
|
declare class GdsAutoGrowingTextareaComponent extends GdsSignalFormContainer implements AfterContentInit, OnDestroy {
|