onshore-forms 1.1.9 → 1.1.10
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
package/types/onshore-forms.d.ts
CHANGED
|
@@ -253,13 +253,18 @@ declare class OnshoreFormDropdownItemComponent implements OnInit, OnChanges, Con
|
|
|
253
253
|
private cdr;
|
|
254
254
|
formTemplate: OnshoreFormTemplateItem;
|
|
255
255
|
multiple: boolean | undefined;
|
|
256
|
+
multipleItemSeverity: 'secondary' | 'danger' | 'info' | 'success' | 'warn' | 'contrast' | null | undefined;
|
|
256
257
|
showClear: boolean | undefined;
|
|
258
|
+
showMultiClear: boolean | undefined;
|
|
257
259
|
group: boolean | undefined;
|
|
258
260
|
selectionLimit?: number;
|
|
259
261
|
minLength?: number;
|
|
260
262
|
optionLabel?: string;
|
|
261
263
|
optionValue?: string;
|
|
262
264
|
dataKey?: string;
|
|
265
|
+
secondOptionLabel?: string;
|
|
266
|
+
thirdOptionLabel?: string;
|
|
267
|
+
optionLabelDivider?: string;
|
|
263
268
|
optionGroupLabel?: string;
|
|
264
269
|
actionButtonDisabled: boolean;
|
|
265
270
|
createEnabled: boolean;
|
|
@@ -268,22 +273,24 @@ declare class OnshoreFormDropdownItemComponent implements OnInit, OnChanges, Con
|
|
|
268
273
|
valueChange: EventEmitter<boolean>;
|
|
269
274
|
actionButtonClick: EventEmitter<any>;
|
|
270
275
|
entryCreated: EventEmitter<any>;
|
|
271
|
-
disabled: boolean
|
|
276
|
+
disabled: boolean;
|
|
272
277
|
writeValue(obj: any): void;
|
|
273
278
|
registerOnChange(fn: any): void;
|
|
274
279
|
registerOnTouched(fn: any): void;
|
|
275
280
|
setDisabledState?(isDisabled: boolean): void;
|
|
276
281
|
clearSelection(): void;
|
|
277
282
|
get formControl(): FormControl;
|
|
283
|
+
findValue(item: any, key: string): string;
|
|
278
284
|
ngOnInit(): void;
|
|
279
285
|
ngOnDestroy(): void;
|
|
280
286
|
checkExclude(): void;
|
|
287
|
+
removeSelected(value: any, event: MouseEvent): void;
|
|
281
288
|
ngAfterViewInit(): void;
|
|
282
289
|
ngOnChanges(changes: SimpleChanges): void;
|
|
283
290
|
constructor(ngControl: NgControl, cdr: ChangeDetectorRef);
|
|
284
291
|
protected readonly OnshoreFormTemplateType: typeof OnshoreFormTemplateType;
|
|
285
292
|
static ɵfac: i0.ɵɵFactoryDeclaration<OnshoreFormDropdownItemComponent, [{ optional: true; self: true; }, null]>;
|
|
286
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OnshoreFormDropdownItemComponent, "onshore-form-dropdown-item", never, { "formTemplate": { "alias": "formTemplate"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "group": { "alias": "group"; "required": false; }; "selectionLimit": { "alias": "selectionLimit"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "dataKey": { "alias": "dataKey"; "required": false; }; "optionGroupLabel": { "alias": "optionGroupLabel"; "required": false; }; "actionButtonDisabled": { "alias": "actionButtonDisabled"; "required": false; }; "createEnabled": { "alias": "createEnabled"; "required": false; }; "options": { "alias": "options"; "required": false; }; "exclude": { "alias": "exclude"; "required": false; }; }, { "valueChange": "valueChange"; "actionButtonClick": "actionButtonClick"; "entryCreated": "entryCreated"; }, never, never, true, never>;
|
|
293
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OnshoreFormDropdownItemComponent, "onshore-form-dropdown-item", never, { "formTemplate": { "alias": "formTemplate"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "multipleItemSeverity": { "alias": "multipleItemSeverity"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "showMultiClear": { "alias": "showMultiClear"; "required": false; }; "group": { "alias": "group"; "required": false; }; "selectionLimit": { "alias": "selectionLimit"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "dataKey": { "alias": "dataKey"; "required": false; }; "secondOptionLabel": { "alias": "secondOptionLabel"; "required": false; }; "thirdOptionLabel": { "alias": "thirdOptionLabel"; "required": false; }; "optionLabelDivider": { "alias": "optionLabelDivider"; "required": false; }; "optionGroupLabel": { "alias": "optionGroupLabel"; "required": false; }; "actionButtonDisabled": { "alias": "actionButtonDisabled"; "required": false; }; "createEnabled": { "alias": "createEnabled"; "required": false; }; "options": { "alias": "options"; "required": false; }; "exclude": { "alias": "exclude"; "required": false; }; }, { "valueChange": "valueChange"; "actionButtonClick": "actionButtonClick"; "entryCreated": "entryCreated"; }, never, never, true, never>;
|
|
287
294
|
}
|
|
288
295
|
|
|
289
296
|
declare class OnshoreFormImageItemComponent implements ControlValueAccessor, OnInit, OnDestroy, OnChanges, AfterViewInit {
|