@kouji-ui/components 0.1.3 → 0.1.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/package.json
CHANGED
|
@@ -2960,7 +2960,7 @@ declare class KjIconUsageExample {
|
|
|
2960
2960
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KjIconUsageExample, "kj-icon-usage-example", never, {}, {}, never, never, true, never>;
|
|
2961
2961
|
}
|
|
2962
2962
|
|
|
2963
|
-
type KjInputType = 'text' | 'email' | 'password' | 'number' | 'search' | 'tel' | 'url' | 'color';
|
|
2963
|
+
type KjInputType = 'text' | 'email' | 'password' | 'number' | 'search' | 'tel' | 'url' | 'color' | 'date' | 'time' | 'datetime-local';
|
|
2964
2964
|
/** Visual variants — `default` uses the field surface; `sunken` drops to
|
|
2965
2965
|
* body bg so the input pops against a card/surface parent. */
|
|
2966
2966
|
type KjInputVariant = 'default' | 'sunken';
|
|
@@ -3041,6 +3041,10 @@ declare class KjInputComponent implements ControlValueAccessor {
|
|
|
3041
3041
|
readonly placeholder: _angular_core.InputSignal<string>;
|
|
3042
3042
|
readonly invalid: _angular_core.InputSignal<boolean>;
|
|
3043
3043
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
3044
|
+
/** Native `autocomplete` attribute passthrough. Empty string omits the attribute. */
|
|
3045
|
+
readonly autocomplete: _angular_core.InputSignal<string>;
|
|
3046
|
+
/** Native `inputmode` attribute passthrough. Empty string omits the attribute. */
|
|
3047
|
+
readonly inputmode: _angular_core.InputSignal<string>;
|
|
3044
3048
|
protected innerInput?: KjInput;
|
|
3045
3049
|
/** Native `<input>` element, queried via template-ref. Used by callers
|
|
3046
3050
|
* (cell editors, focus-trapping consumers) that need to move keyboard
|
|
@@ -3053,7 +3057,7 @@ declare class KjInputComponent implements ControlValueAccessor {
|
|
|
3053
3057
|
registerOnTouched(fn: () => void): void;
|
|
3054
3058
|
setDisabledState(isDisabled: boolean): void;
|
|
3055
3059
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KjInputComponent, never>;
|
|
3056
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KjInputComponent, "kj-input", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "kjSize": { "alias": "kjSize"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3060
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KjInputComponent, "kj-input", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "kjSize": { "alias": "kjSize"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "autocomplete": { "alias": "autocomplete"; "required": false; "isSignal": true; }; "inputmode": { "alias": "inputmode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3057
3061
|
}
|
|
3058
3062
|
|
|
3059
3063
|
/**
|