@open-rlb/ng-bootstrap 3.1.2 → 3.1.4
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
|
@@ -1550,7 +1550,7 @@ declare const TABLE: (typeof DataTableActionComponent | typeof DataTableActionsC
|
|
|
1550
1550
|
declare abstract class AbstractComponent<T = any> implements ControlValueAccessor {
|
|
1551
1551
|
control?: NgControl | undefined;
|
|
1552
1552
|
abstract disabled?: boolean | Signal<boolean | undefined> | ModelSignal<boolean>;
|
|
1553
|
-
protected abstract userDefinedId: string |
|
|
1553
|
+
protected abstract userDefinedId: string | Signal<string> | ModelSignal<string>;
|
|
1554
1554
|
protected onTouched: Function;
|
|
1555
1555
|
protected onChanged: Function;
|
|
1556
1556
|
value: T;
|
|
@@ -1587,7 +1587,7 @@ declare abstract class AbstractAutocompleteComponent extends AbstractComponent<A
|
|
|
1587
1587
|
isOpen: boolean;
|
|
1588
1588
|
protected suggestionsList: AutocompleteItem[];
|
|
1589
1589
|
protected activeIndex: _angular_core.WritableSignal<number>;
|
|
1590
|
-
disabled:
|
|
1590
|
+
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1591
1591
|
isDisabled: _angular_core.Signal<boolean>;
|
|
1592
1592
|
readonly: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1593
1593
|
loading: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -1701,10 +1701,10 @@ declare class AutocompleteComponent extends AbstractComponent<AutocompleteItem>
|
|
|
1701
1701
|
|
|
1702
1702
|
declare class CheckboxComponent extends AbstractComponent<boolean | undefined> implements ControlValueAccessor {
|
|
1703
1703
|
control?: NgControl | undefined;
|
|
1704
|
-
disabled:
|
|
1704
|
+
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1705
1705
|
readonly: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1706
1706
|
indeterminate: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1707
|
-
userDefinedId: InputSignal<string>;
|
|
1707
|
+
userDefinedId: _angular_core.InputSignal<string>;
|
|
1708
1708
|
el: _angular_core.Signal<ElementRef<HTMLInputElement>>;
|
|
1709
1709
|
isDisabled: _angular_core.Signal<boolean>;
|
|
1710
1710
|
constructor(idService: UniqueIdService, control?: NgControl | undefined);
|
|
@@ -1731,10 +1731,10 @@ declare class ColorComponent extends AbstractComponent<string> implements Contro
|
|
|
1731
1731
|
|
|
1732
1732
|
declare class DatalistComponent extends AbstractComponent<string> implements ControlValueAccessor {
|
|
1733
1733
|
control?: NgControl | undefined;
|
|
1734
|
-
disabled:
|
|
1734
|
+
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1735
1735
|
readonly: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1736
|
-
placeholder: InputSignal<string | undefined>;
|
|
1737
|
-
size: InputSignal<"small" | "large" | undefined>;
|
|
1736
|
+
placeholder: _angular_core.InputSignal<string | undefined>;
|
|
1737
|
+
size: _angular_core.InputSignal<"small" | "large" | undefined>;
|
|
1738
1738
|
userDefinedId: _angular_core.InputSignalWithTransform<string, string>;
|
|
1739
1739
|
el: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
1740
1740
|
constructor(idService: UniqueIdService, control?: NgControl | undefined);
|
|
@@ -1772,11 +1772,11 @@ declare class DndDirective {
|
|
|
1772
1772
|
|
|
1773
1773
|
declare class FileComponent extends AbstractComponent<File | File[] | null> implements ControlValueAccessor {
|
|
1774
1774
|
control?: NgControl | undefined;
|
|
1775
|
-
disabled:
|
|
1775
|
+
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1776
1776
|
readonly: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1777
1777
|
multiple: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1778
|
-
size: InputSignal<"small" | "large" | undefined>;
|
|
1779
|
-
accept: InputSignal<string | undefined>;
|
|
1778
|
+
size: _angular_core.InputSignal<"small" | "large" | undefined>;
|
|
1779
|
+
accept: _angular_core.InputSignal<string | undefined>;
|
|
1780
1780
|
userDefinedId: _angular_core.InputSignalWithTransform<string, string>;
|
|
1781
1781
|
el: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
1782
1782
|
constructor(idService: UniqueIdService, control?: NgControl | undefined);
|
|
@@ -1861,17 +1861,17 @@ declare class InputGroupComponent {
|
|
|
1861
1861
|
}
|
|
1862
1862
|
|
|
1863
1863
|
declare class OptionComponent {
|
|
1864
|
-
value: _angular_core.InputSignal<string | number | null>;
|
|
1864
|
+
value: _angular_core.InputSignal<string | number | null | undefined>;
|
|
1865
1865
|
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1866
1866
|
template: _angular_core.Signal<TemplateRef<any>>;
|
|
1867
1867
|
contentTemplate: _angular_core.Signal<TemplateRef<any>>;
|
|
1868
1868
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OptionComponent, never>;
|
|
1869
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OptionComponent, "rlb-option", never, { "value": { "alias": "value"; "required":
|
|
1869
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OptionComponent, "rlb-option", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
|
|
1870
1870
|
}
|
|
1871
1871
|
|
|
1872
1872
|
declare class RadioComponent extends AbstractComponent<string> implements ControlValueAccessor {
|
|
1873
1873
|
control?: NgControl | undefined;
|
|
1874
|
-
disabled:
|
|
1874
|
+
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1875
1875
|
readonly: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1876
1876
|
userDefinedId: _angular_core.InputSignalWithTransform<string, string>;
|
|
1877
1877
|
options: _angular_core.Signal<readonly OptionComponent[]>;
|
|
@@ -1886,12 +1886,12 @@ declare class RadioComponent extends AbstractComponent<string> implements Contro
|
|
|
1886
1886
|
|
|
1887
1887
|
declare class RangeComponent extends AbstractComponent<string> implements ControlValueAccessor {
|
|
1888
1888
|
control?: NgControl | undefined;
|
|
1889
|
-
disabled:
|
|
1889
|
+
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1890
1890
|
readonly: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1891
1891
|
min: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
1892
1892
|
max: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
1893
1893
|
step: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
1894
|
-
userDefinedId: InputSignal<string>;
|
|
1894
|
+
userDefinedId: _angular_core.InputSignal<string>;
|
|
1895
1895
|
el: _angular_core.Signal<ElementRef<HTMLInputElement>>;
|
|
1896
1896
|
isDisabled: _angular_core.Signal<boolean>;
|
|
1897
1897
|
constructor(idService: UniqueIdService, control?: NgControl | undefined);
|
|
@@ -1903,13 +1903,13 @@ declare class RangeComponent extends AbstractComponent<string> implements Contro
|
|
|
1903
1903
|
|
|
1904
1904
|
declare class SelectComponent extends AbstractComponent<string | string[]> implements ControlValueAccessor {
|
|
1905
1905
|
control?: NgControl | undefined;
|
|
1906
|
-
placeholder: InputSignal<string | undefined>;
|
|
1907
|
-
size: InputSignal<"small" | "large" | undefined>;
|
|
1908
|
-
disabled:
|
|
1906
|
+
placeholder: _angular_core.InputSignal<string | undefined>;
|
|
1907
|
+
size: _angular_core.InputSignal<"small" | "large" | undefined>;
|
|
1908
|
+
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1909
1909
|
readonly: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1910
1910
|
multiple: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1911
1911
|
display: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
1912
|
-
userDefinedId:
|
|
1912
|
+
userDefinedId: _angular_core.InputSignalWithTransform<string, string | undefined>;
|
|
1913
1913
|
enableValidation: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1914
1914
|
el: _angular_core.Signal<ElementRef<HTMLSelectElement>>;
|
|
1915
1915
|
_projectedDisplayOptions: _angular_core.Signal<ViewContainerRef | undefined>;
|
|
@@ -1941,12 +1941,12 @@ declare class SwitchComponent extends AbstractComponent<boolean> implements Cont
|
|
|
1941
1941
|
|
|
1942
1942
|
declare class TextAreaComponent extends AbstractComponent<string> implements ControlValueAccessor {
|
|
1943
1943
|
control?: NgControl | undefined;
|
|
1944
|
-
disabled:
|
|
1944
|
+
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1945
1945
|
readonly: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1946
|
-
placeholder: InputSignal<string | undefined>;
|
|
1947
|
-
size: InputSignal<"small" | "large" | undefined>;
|
|
1946
|
+
placeholder: _angular_core.InputSignal<string | undefined>;
|
|
1947
|
+
size: _angular_core.InputSignal<"small" | "large" | undefined>;
|
|
1948
1948
|
rows: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
1949
|
-
userDefinedId: InputSignal<string>;
|
|
1949
|
+
userDefinedId: _angular_core.InputSignal<string>;
|
|
1950
1950
|
el: _angular_core.Signal<ElementRef<HTMLTextAreaElement> | undefined>;
|
|
1951
1951
|
isDisabled: _angular_core.Signal<boolean>;
|
|
1952
1952
|
constructor(idService: UniqueIdService, control?: NgControl | undefined);
|
|
@@ -1956,7 +1956,7 @@ declare class TextAreaComponent extends AbstractComponent<string> implements Con
|
|
|
1956
1956
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextAreaComponent, "rlb-textarea", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "userDefinedId": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, ["[before]", "[after]"], false, never>;
|
|
1957
1957
|
}
|
|
1958
1958
|
|
|
1959
|
-
declare const INPUTS: (typeof AutocompleteCountryDialCodeComponent | typeof AutocompleteCountryComponent | typeof AutocompleteTimezonesComponent | typeof AutocompleteComponent | typeof CheckboxComponent | typeof ColorComponent | typeof FileDndComponent | typeof DndDirective | typeof FileComponent | typeof HelpText | typeof InputValidationComponent | typeof InputComponent | typeof InputGroupComponent | typeof OptionComponent | typeof RadioComponent | typeof RangeComponent | typeof SelectComponent | typeof SwitchComponent | typeof TextAreaComponent)[];
|
|
1959
|
+
declare const INPUTS: (typeof AutocompleteCountryDialCodeComponent | typeof AutocompleteCountryComponent | typeof AutocompleteTimezonesComponent | typeof AutocompleteComponent | typeof CheckboxComponent | typeof ColorComponent | typeof DatalistComponent | typeof FileDndComponent | typeof DndDirective | typeof FileComponent | typeof HelpText | typeof InputValidationComponent | typeof InputComponent | typeof InputGroupComponent | typeof OptionComponent | typeof RadioComponent | typeof RangeComponent | typeof SelectComponent | typeof SwitchComponent | typeof TextAreaComponent)[];
|
|
1960
1960
|
|
|
1961
1961
|
interface FormFieldsDefinition {
|
|
1962
1962
|
[k: string]: _FormField;
|