@ardium-ui/ui 3.3.0-alpha.9 → 3.3.0
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/_internal/selectable-list-component.mjs +2 -2
- package/esm2022/lib/inputs/digit-input/digit-input.component.mjs +12 -8
- package/esm2022/lib/inputs/digit-input/digit-input.model.mjs +33 -22
- package/esm2022/lib/inputs/digit-input/digit-input.types.mjs +1 -1
- package/esm2022/lib/select/select.component.mjs +2 -2
- package/fesm2022/ardium-ui-ui.mjs +45 -30
- package/fesm2022/ardium-ui-ui.mjs.map +1 -1
- package/lib/inputs/digit-input/digit-input.model.d.ts +0 -1
- package/lib/inputs/digit-input/digit-input.types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5,7 +5,6 @@ export declare class DigitInputModel {
|
|
|
5
5
|
constructor(_ardHost: DigitInputModelHost);
|
|
6
6
|
private readonly _configArray;
|
|
7
7
|
readonly configArrayData: import("@angular/core").Signal<DigitInputConfigData[]>;
|
|
8
|
-
private readonly _configArrayNoStatics;
|
|
9
8
|
readonly isConfigDefined: import("@angular/core").Signal<boolean>;
|
|
10
9
|
readonly value: import("@angular/core").WritableSignal<(string | null)[] | null>;
|
|
11
10
|
readonly stringValue: import("@angular/core").Signal<string>;
|
|
@@ -17,7 +17,7 @@ export declare const DigitInputPrimitiveOption: {
|
|
|
17
17
|
export type DigitInputPrimitiveOption = (typeof DigitInputPrimitiveOption)[keyof typeof DigitInputPrimitiveOption];
|
|
18
18
|
export interface DigitInputAcceptObject {
|
|
19
19
|
accept: string | RegExp | ((char: string, charsBefore: string) => boolean);
|
|
20
|
-
transform?: TransformType | null;
|
|
20
|
+
transform?: TransformType | ((char: string) => string) | null;
|
|
21
21
|
readonly?: boolean;
|
|
22
22
|
placeholder?: string;
|
|
23
23
|
}
|