@beeq/angular 1.8.0-beta.0 → 1.8.0-beta.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.
Files changed (30) hide show
  1. package/directives/components.d.ts +4 -4
  2. package/esm2022/beeq.module.mjs +4 -4
  3. package/esm2022/directives/boolean-value-accessor.mjs +3 -3
  4. package/esm2022/directives/components.mjs +128 -128
  5. package/esm2022/directives/number-value-accessor.mjs +3 -3
  6. package/esm2022/directives/radio-value-accessor.mjs +3 -3
  7. package/esm2022/directives/select-value-accessor.mjs +3 -3
  8. package/esm2022/directives/text-value-accessor.mjs +3 -3
  9. package/esm2022/directives/value-accessor.mjs +3 -3
  10. package/esm2022/standalone/directives/boolean-value-accessor.mjs +38 -0
  11. package/esm2022/standalone/directives/components.mjs +128 -128
  12. package/esm2022/standalone/directives/number-value-accessor.mjs +40 -0
  13. package/esm2022/standalone/directives/radio-value-accessor.mjs +35 -0
  14. package/esm2022/standalone/directives/select-value-accessor.mjs +35 -0
  15. package/esm2022/standalone/directives/text-value-accessor.mjs +35 -0
  16. package/esm2022/standalone/directives/value-accessor.mjs +42 -0
  17. package/esm2022/standalone/index.mjs +6 -2
  18. package/fesm2022/beeq-angular-standalone.mjs +334 -131
  19. package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
  20. package/fesm2022/beeq-angular.mjs +149 -149
  21. package/fesm2022/beeq-angular.mjs.map +1 -1
  22. package/package.json +2 -2
  23. package/standalone/directives/boolean-value-accessor.d.ts +9 -0
  24. package/standalone/directives/components.d.ts +4 -4
  25. package/standalone/directives/number-value-accessor.d.ts +9 -0
  26. package/standalone/directives/radio-value-accessor.d.ts +8 -0
  27. package/standalone/directives/select-value-accessor.d.ts +8 -0
  28. package/standalone/directives/text-value-accessor.d.ts +8 -0
  29. package/standalone/directives/value-accessor.d.ts +18 -0
  30. package/standalone/index.d.ts +5 -0
@@ -61,13 +61,13 @@ export declare interface BqAlert extends Components.BqAlert {
61
61
  */
62
62
  bqShow: EventEmitter<CustomEvent<any>>;
63
63
  /**
64
- * Callback handler to be called after the alert has been opened
64
+ * Callback handler to be called after the alert has been shown
65
65
  */
66
- bqAfterOpen: EventEmitter<CustomEvent<any>>;
66
+ bqAfterShow: EventEmitter<CustomEvent<any>>;
67
67
  /**
68
- * Callback handler to be called after the alert has been closed
68
+ * Callback handler to be called after the alert has been hidden
69
69
  */
70
- bqAfterClose: EventEmitter<CustomEvent<any>>;
70
+ bqAfterHide: EventEmitter<CustomEvent<any>>;
71
71
  }
72
72
  export declare class BqAvatar {
73
73
  protected z: NgZone;
@@ -32,8 +32,8 @@ export class BeeQModule {
32
32
  ],
33
33
  };
34
34
  }
35
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: BeeQModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
36
- /** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: BeeQModule, declarations: [i1.BqAccordion, i1.BqAccordionGroup, i1.BqAlert, i1.BqAvatar, i1.BqBadge, i1.BqBreadcrumb, i1.BqBreadcrumbItem, i1.BqButton, i1.BqCard, i1.BqCheckbox, i1.BqDatePicker, i1.BqDialog, i1.BqDivider, i1.BqDrawer, i1.BqDropdown, i1.BqEmptyState, i1.BqIcon, i1.BqInput, i1.BqNotification, i1.BqOption, i1.BqOptionGroup, i1.BqOptionList, i1.BqPageTitle, i1.BqPanel, i1.BqProgress, i1.BqRadio, i1.BqRadioGroup, i1.BqSelect, i1.BqSideMenu, i1.BqSideMenuItem, i1.BqSlider, i1.BqSpinner, i1.BqStatus, i1.BqStepItem, i1.BqSteps, i1.BqSwitch, i1.BqTab, i1.BqTabGroup, i1.BqTag, i1.BqTextarea, i1.BqToast, i1.BqTooltip,
35
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BeeQModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
36
+ /** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.8", ngImport: i0, type: BeeQModule, declarations: [i1.BqAccordion, i1.BqAccordionGroup, i1.BqAlert, i1.BqAvatar, i1.BqBadge, i1.BqBreadcrumb, i1.BqBreadcrumbItem, i1.BqButton, i1.BqCard, i1.BqCheckbox, i1.BqDatePicker, i1.BqDialog, i1.BqDivider, i1.BqDrawer, i1.BqDropdown, i1.BqEmptyState, i1.BqIcon, i1.BqInput, i1.BqNotification, i1.BqOption, i1.BqOptionGroup, i1.BqOptionList, i1.BqPageTitle, i1.BqPanel, i1.BqProgress, i1.BqRadio, i1.BqRadioGroup, i1.BqSelect, i1.BqSideMenu, i1.BqSideMenuItem, i1.BqSlider, i1.BqSpinner, i1.BqStatus, i1.BqStepItem, i1.BqSteps, i1.BqSwitch, i1.BqTab, i1.BqTabGroup, i1.BqTag, i1.BqTextarea, i1.BqToast, i1.BqTooltip,
37
37
  // ngModel Accessors
38
38
  BooleanValueAccessor,
39
39
  NumericValueAccessor,
@@ -46,9 +46,9 @@ export class BeeQModule {
46
46
  RadioValueAccessor,
47
47
  SelectValueAccessor,
48
48
  TextValueAccessor] });
49
- /** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: BeeQModule, imports: [CommonModule] });
49
+ /** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BeeQModule, imports: [CommonModule] });
50
50
  }
51
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: BeeQModule, decorators: [{
51
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BeeQModule, decorators: [{
52
52
  type: NgModule,
53
53
  args: [{
54
54
  imports: [CommonModule],
@@ -9,8 +9,8 @@ export class BooleanValueAccessor extends ValueAccessor {
9
9
  writeValue(value) {
10
10
  this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
11
11
  }
12
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
13
- /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.0", type: BooleanValueAccessor, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target.checked)" } }, providers: [
12
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
13
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.8", type: BooleanValueAccessor, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target.checked)" } }, providers: [
14
14
  {
15
15
  provide: NG_VALUE_ACCESSOR,
16
16
  useExisting: BooleanValueAccessor,
@@ -18,7 +18,7 @@ export class BooleanValueAccessor extends ValueAccessor {
18
18
  }
19
19
  ], usesInheritance: true, ngImport: i0 });
20
20
  }
21
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: BooleanValueAccessor, decorators: [{
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BooleanValueAccessor, decorators: [{
22
22
  type: Directive,
23
23
  args: [{
24
24
  /* tslint:disable-next-line:directive-selector */