commons-shared-web-ui 0.0.38 → 0.0.39
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
|
@@ -1388,6 +1388,7 @@ declare class FormFieldComponent implements OnInit, OnDestroy {
|
|
|
1388
1388
|
value: any;
|
|
1389
1389
|
isVisible: boolean;
|
|
1390
1390
|
showPassword: boolean;
|
|
1391
|
+
isMultiDropdownOpen: boolean;
|
|
1391
1392
|
isDragOver: boolean;
|
|
1392
1393
|
fileUploadError: string;
|
|
1393
1394
|
multiSaveError: string;
|
|
@@ -1462,6 +1463,14 @@ declare class FormFieldComponent implements OnInit, OnDestroy {
|
|
|
1462
1463
|
constructor(fb: FormBuilder, expressionService: ExpressionService, http: HttpClient);
|
|
1463
1464
|
ngOnInit(): void;
|
|
1464
1465
|
get addMultiLabel(): string;
|
|
1466
|
+
/** Getter for Select placeholder label */
|
|
1467
|
+
get selectPlaceholderLabel(): string;
|
|
1468
|
+
/** Getter for No options available label */
|
|
1469
|
+
get noOptionsAvailableLabel(): string;
|
|
1470
|
+
/** Getter for expand less icon name */
|
|
1471
|
+
get expandLessLabel(): string;
|
|
1472
|
+
/** Getter for expand more icon name */
|
|
1473
|
+
get expandMoreLabel(): string;
|
|
1465
1474
|
private initGroupField;
|
|
1466
1475
|
/**
|
|
1467
1476
|
* Sets up cross-field validation based on the `onValidate` formula.
|
|
@@ -1515,6 +1524,10 @@ declare class FormFieldComponent implements OnInit, OnDestroy {
|
|
|
1515
1524
|
get errorMessage(): string;
|
|
1516
1525
|
get showCharCount(): boolean;
|
|
1517
1526
|
get remainingCharacters(): number | null;
|
|
1527
|
+
toggleMultiDropdown(event: MouseEvent): void;
|
|
1528
|
+
onDocumentClick(): void;
|
|
1529
|
+
onEscapeKey(): void;
|
|
1530
|
+
get multiSelectedCount(): number;
|
|
1518
1531
|
get isTextField(): boolean;
|
|
1519
1532
|
get isNumberField(): boolean;
|
|
1520
1533
|
get isDateField(): boolean;
|
|
@@ -1975,10 +1988,13 @@ declare class DropdownComponent implements ControlValueAccessor, OnInit, OnChang
|
|
|
1975
1988
|
private get validOptions();
|
|
1976
1989
|
private updateFromConfig;
|
|
1977
1990
|
private updateFromLabels;
|
|
1978
|
-
get
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1991
|
+
get resolvedLabels(): {
|
|
1992
|
+
requiredMarker: string;
|
|
1993
|
+
searchPlaceholder: string;
|
|
1994
|
+
selectedSuffix: string;
|
|
1995
|
+
clearAriaLabel: string;
|
|
1996
|
+
noResultsFound: string;
|
|
1997
|
+
};
|
|
1982
1998
|
writeValue(value: any): void;
|
|
1983
1999
|
registerOnChange(fn: any): void;
|
|
1984
2000
|
registerOnTouched(fn: any): void;
|