@coreui/angular-pro 5.6.2 → 5.6.3
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
|
@@ -2965,6 +2965,7 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
|
|
|
2965
2965
|
|
|
2966
2966
|
declare class MultiSelectOptgroupComponent implements AfterContentInit {
|
|
2967
2967
|
#private;
|
|
2968
|
+
static ngAcceptInputType_disabled: BooleanInput$1;
|
|
2968
2969
|
readonly label: _angular_core.InputSignal<string | undefined>;
|
|
2969
2970
|
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2970
2971
|
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
@@ -3047,7 +3048,7 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3047
3048
|
private readonly differ;
|
|
3048
3049
|
readonly userOptionsArray$: BehaviorSubject<IOption[]>;
|
|
3049
3050
|
readonly optionTags: _angular_core.WritableSignal<IOption[]>;
|
|
3050
|
-
readonly optionsSelected: Map<any, IOption
|
|
3051
|
+
readonly optionsSelected: _angular_core.WritableSignal<Map<any, IOption>>;
|
|
3051
3052
|
readonly value$: BehaviorSubject<TValue[]>;
|
|
3052
3053
|
onChange: (value: any) => void;
|
|
3053
3054
|
onTouched: () => void;
|
|
@@ -3256,11 +3257,11 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3256
3257
|
onFirstUpdate?: (arg0: Partial<_popperjs_core.State>) => void;
|
|
3257
3258
|
}>;
|
|
3258
3259
|
readonly isDropdownVisible: _angular_core.WritableSignal<boolean>;
|
|
3259
|
-
|
|
3260
|
+
readonly selectedOptions: _angular_core.Signal<IOption[]>;
|
|
3260
3261
|
get selectedOptionsText(): string;
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3262
|
+
readonly counterText: _angular_core.Signal<string>;
|
|
3263
|
+
readonly counterTextType: _angular_core.Signal<"string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function">;
|
|
3264
|
+
readonly counterPlaceholderText: _angular_core.Signal<string | null>;
|
|
3264
3265
|
private focusMonitorSubscription;
|
|
3265
3266
|
multiSelectOptionsContent: QueryList<MultiSelectOptionComponent>;
|
|
3266
3267
|
multiSelectOptionsView: QueryList<MultiSelectOptionComponent>;
|