@getflip/swirl-components-angular 0.85.0 → 0.86.0

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.
@@ -231,11 +231,11 @@ let SwirlAutocomplete = class SwirlAutocomplete {
231
231
  }
232
232
  };
233
233
  SwirlAutocomplete.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlAutocomplete, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
234
- SwirlAutocomplete.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlAutocomplete, selector: "swirl-autocomplete", inputs: { autoSelect: "autoSelect", clearButtonLabel: "clearButtonLabel", clearable: "clearable", disabled: "disabled", generateSuggestions: "generateSuggestions", inline: "inline", invalid: "invalid", maxLength: "maxLength", menuLabel: "menuLabel", mode: "mode", required: "required", spellCheck: "spellCheck", swirlAriaDescribedby: "swirlAriaDescribedby", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
234
+ SwirlAutocomplete.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlAutocomplete, selector: "swirl-autocomplete", inputs: { autoSelect: "autoSelect", clearButtonLabel: "clearButtonLabel", clearable: "clearable", disabled: "disabled", generateSuggestions: "generateSuggestions", inline: "inline", invalid: "invalid", maxLength: "maxLength", menuLabel: "menuLabel", mode: "mode", multiSelect: "multiSelect", placeholder: "placeholder", required: "required", spellCheck: "spellCheck", swirlAriaDescribedby: "swirlAriaDescribedby", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
235
235
  SwirlAutocomplete = __decorate([
236
236
  ProxyCmp({
237
237
  defineCustomElementFn: undefined,
238
- inputs: ['autoSelect', 'clearButtonLabel', 'clearable', 'disabled', 'generateSuggestions', 'inline', 'invalid', 'maxLength', 'menuLabel', 'mode', 'required', 'spellCheck', 'swirlAriaDescribedby', 'value']
238
+ inputs: ['autoSelect', 'clearButtonLabel', 'clearable', 'disabled', 'generateSuggestions', 'inline', 'invalid', 'maxLength', 'menuLabel', 'mode', 'multiSelect', 'placeholder', 'required', 'spellCheck', 'swirlAriaDescribedby', 'value']
239
239
  })
240
240
  ], SwirlAutocomplete);
241
241
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlAutocomplete, decorators: [{
@@ -244,7 +244,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
244
244
  selector: 'swirl-autocomplete',
245
245
  changeDetection: ChangeDetectionStrategy.OnPush,
246
246
  template: '<ng-content></ng-content>',
247
- inputs: ['autoSelect', 'clearButtonLabel', 'clearable', 'disabled', 'generateSuggestions', 'inline', 'invalid', 'maxLength', 'menuLabel', 'mode', 'required', 'spellCheck', 'swirlAriaDescribedby', 'value']
247
+ inputs: ['autoSelect', 'clearButtonLabel', 'clearable', 'disabled', 'generateSuggestions', 'inline', 'invalid', 'maxLength', 'menuLabel', 'mode', 'multiSelect', 'placeholder', 'required', 'spellCheck', 'swirlAriaDescribedby', 'value']
248
248
  }]
249
249
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
250
250
  let SwirlAvatar = class SwirlAvatar {
@@ -7214,7 +7214,7 @@ class SelectValueAccessor extends ValueAccessor {
7214
7214
  }
7215
7215
  }
7216
7216
  SelectValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
7217
- SelectValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: SelectValueAccessor, selector: "swirl-option-list, swirl-select", host: { listeners: { "valueChange": "handleChangeEvent($event.target.value)" } }, providers: [
7217
+ SelectValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: SelectValueAccessor, selector: "swirl-autocomplete[multi-select], swirl-autocomplete[multiSelect], swirl-option-list, swirl-select", host: { listeners: { "valueChange": "handleChangeEvent($event.target.value)" } }, providers: [
7218
7218
  {
7219
7219
  provide: NG_VALUE_ACCESSOR,
7220
7220
  useExisting: SelectValueAccessor,
@@ -7225,7 +7225,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
7225
7225
  type: Directive,
7226
7226
  args: [{
7227
7227
  /* tslint:disable-next-line:directive-selector */
7228
- selector: 'swirl-option-list, swirl-select',
7228
+ selector: 'swirl-autocomplete[multi-select], swirl-autocomplete[multiSelect], swirl-option-list, swirl-select',
7229
7229
  host: {
7230
7230
  '(valueChange)': 'handleChangeEvent($event.target.value)'
7231
7231
  },
@@ -7245,7 +7245,7 @@ class TextValueAccessor extends ValueAccessor {
7245
7245
  }
7246
7246
  }
7247
7247
  TextValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
7248
- TextValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: TextValueAccessor, selector: "swirl-date-input, swirl-radio-group, swirl-search, swirl-text-input, swirl-time-input", host: { listeners: { "valueChange": "handleChangeEvent($event.target.value)" } }, providers: [
7248
+ TextValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: TextValueAccessor, selector: "swirl-autocomplete:not([multi-select]):not([multiSelect]), swirl-date-input, swirl-radio-group, swirl-search, swirl-text-input, swirl-time-input", host: { listeners: { "valueChange": "handleChangeEvent($event.target.value)" } }, providers: [
7249
7249
  {
7250
7250
  provide: NG_VALUE_ACCESSOR,
7251
7251
  useExisting: TextValueAccessor,
@@ -7256,7 +7256,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
7256
7256
  type: Directive,
7257
7257
  args: [{
7258
7258
  /* tslint:disable-next-line:directive-selector */
7259
- selector: 'swirl-date-input, swirl-radio-group, swirl-search, swirl-text-input, swirl-time-input',
7259
+ selector: 'swirl-autocomplete:not([multi-select]):not([multiSelect]), swirl-date-input, swirl-radio-group, swirl-search, swirl-text-input, swirl-time-input',
7260
7260
  host: {
7261
7261
  '(valueChange)': 'handleChangeEvent($event.target.value)'
7262
7262
  },