@solcre-org/core-ui 2.13.0 → 2.13.2
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
|
@@ -496,6 +496,7 @@ interface NumberFieldConfig {
|
|
|
496
496
|
icon?: string;
|
|
497
497
|
chars?: number;
|
|
498
498
|
disableInput?: boolean;
|
|
499
|
+
canUseInput?: boolean;
|
|
499
500
|
}
|
|
500
501
|
interface NumberModalFieldConfig<T> extends ModalFieldConfig<T> {
|
|
501
502
|
numberConfig?: NumberFieldConfig;
|
|
@@ -515,6 +516,7 @@ declare class NumberFieldComponent<T extends DataBaseModelInterface> extends Bas
|
|
|
515
516
|
fieldType: _angular_core.Signal<NumberFieldConfigType>;
|
|
516
517
|
iconClass: _angular_core.Signal<string | null | undefined>;
|
|
517
518
|
getDisableInput(): boolean | null;
|
|
519
|
+
getCanUseInput(): boolean;
|
|
518
520
|
getCharsWidth(): string | null;
|
|
519
521
|
isDisabled(): boolean;
|
|
520
522
|
getMinValue(): number;
|