@kern-ux-annex/kern-angular-kit 1.0.0 → 1.0.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/index.d.ts
CHANGED
|
@@ -386,6 +386,7 @@ declare class KernInputSelect {
|
|
|
386
386
|
readonly hintText: _angular_core.InputSignal<string | null>;
|
|
387
387
|
readonly errorText: _angular_core.InputSignal<string | null>;
|
|
388
388
|
readonly titleText: _angular_core.InputSignal<string | null>;
|
|
389
|
+
readonly emptyPlaceholder: _angular_core.InputSignal<string>;
|
|
389
390
|
readonly options: _angular_core.InputSignal<{
|
|
390
391
|
value: string;
|
|
391
392
|
label: string;
|
|
@@ -396,7 +397,7 @@ declare class KernInputSelect {
|
|
|
396
397
|
protected onInput(event: Event): void;
|
|
397
398
|
protected onKeydown(event: KeyboardEvent): void;
|
|
398
399
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KernInputSelect, never>;
|
|
399
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KernInputSelect, "kern-input-select", never, { "inputId": { "alias": "inputId"; "required": false; "isSignal": true; }; "labelText": { "alias": "labelText"; "required": true; "isSignal": true; }; "optional": { "alias": "optional"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hintTemplate": { "alias": "hintTemplate"; "required": false; "isSignal": true; }; "hintText": { "alias": "hintText"; "required": false; "isSignal": true; }; "errorText": { "alias": "errorText"; "required": false; "isSignal": true; }; "titleText": { "alias": "titleText"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": true; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof ControlValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
400
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KernInputSelect, "kern-input-select", never, { "inputId": { "alias": "inputId"; "required": false; "isSignal": true; }; "labelText": { "alias": "labelText"; "required": true; "isSignal": true; }; "optional": { "alias": "optional"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hintTemplate": { "alias": "hintTemplate"; "required": false; "isSignal": true; }; "hintText": { "alias": "hintText"; "required": false; "isSignal": true; }; "errorText": { "alias": "errorText"; "required": false; "isSignal": true; }; "titleText": { "alias": "titleText"; "required": false; "isSignal": true; }; "emptyPlaceholder": { "alias": "emptyPlaceholder"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": true; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof ControlValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
400
401
|
}
|
|
401
402
|
|
|
402
403
|
declare class KernInputTel {
|
|
@@ -784,7 +785,7 @@ interface KernInputRadioInputs extends KernInputBaseInputs {
|
|
|
784
785
|
name: string;
|
|
785
786
|
}
|
|
786
787
|
interface KernInputSelectInputs extends KernInputBaseInputs {
|
|
787
|
-
|
|
788
|
+
emptyPlaceholder?: string;
|
|
788
789
|
}
|
|
789
790
|
interface KernInputTelInputs extends KernInputBaseInputs {
|
|
790
791
|
}
|
|
@@ -1117,7 +1118,7 @@ declare global {
|
|
|
1117
1118
|
optional?: boolean;
|
|
1118
1119
|
readonly?: boolean;
|
|
1119
1120
|
required?: boolean;
|
|
1120
|
-
|
|
1121
|
+
emptyPlaceholder?: string;
|
|
1121
1122
|
value?: string | string[];
|
|
1122
1123
|
onChange?: (event: Event) => void;
|
|
1123
1124
|
children?: any;
|
package/package.json
CHANGED
|
@@ -675,10 +675,9 @@
|
|
|
675
675
|
"type": "object",
|
|
676
676
|
"description": "Configuration for kern-input-select component",
|
|
677
677
|
"properties": {
|
|
678
|
-
"
|
|
679
|
-
"type": "
|
|
680
|
-
"default":
|
|
681
|
-
"description": "Whether multiple options can be selected"
|
|
678
|
+
"emptyPlaceholder": {
|
|
679
|
+
"type": "string",
|
|
680
|
+
"default": ""
|
|
682
681
|
}
|
|
683
682
|
}
|
|
684
683
|
}
|
|
@@ -675,10 +675,9 @@
|
|
|
675
675
|
"type": "object",
|
|
676
676
|
"description": "Configuration for kern-input-select component",
|
|
677
677
|
"properties": {
|
|
678
|
-
"
|
|
679
|
-
"type": "
|
|
680
|
-
"default":
|
|
681
|
-
"description": "Whether multiple options can be selected"
|
|
678
|
+
"emptyPlaceholder": {
|
|
679
|
+
"type": "string",
|
|
680
|
+
"default": ""
|
|
682
681
|
}
|
|
683
682
|
}
|
|
684
683
|
}
|