@beeq/angular 1.8.4-beta.0 → 1.8.5-beta.2
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/LICENSE +201 -0
- package/esm2022/beeq.module.mjs +7 -1
- package/esm2022/index.mjs +7 -1
- package/esm2022/standalone/index.mjs +7 -1
- package/fesm2022/beeq-angular-standalone.mjs +7 -1
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +13 -1
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/index.d.ts +5 -0
- package/package.json +2 -2
- package/standalone/index.d.ts +5 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { HostListener, Directive, ChangeDetectorRef, ElementRef, NgZone, ChangeDetectionStrategy, Component, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
3
3
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
4
4
|
import { __decorate, __metadata } from 'tslib';
|
|
5
5
|
import { fromEvent } from 'rxjs';
|
|
@@ -2967,6 +2967,12 @@ const DIRECTIVES = [
|
|
|
2967
2967
|
BqTooltip
|
|
2968
2968
|
];
|
|
2969
2969
|
|
|
2970
|
+
// @ts-nocheck
|
|
2971
|
+
/**
|
|
2972
|
+
* The directives folder containing the value accessors is generated dynamically
|
|
2973
|
+
* when compiling the `beeq` package.
|
|
2974
|
+
* ⚠️ Since this file won't change that much, it is safe to disable TypeScript checking.
|
|
2975
|
+
*/
|
|
2970
2976
|
const DECLARATIONS = [
|
|
2971
2977
|
...DIRECTIVES,
|
|
2972
2978
|
// ngModel Accessors
|
|
@@ -3015,6 +3021,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
3015
3021
|
}]
|
|
3016
3022
|
}] });
|
|
3017
3023
|
|
|
3024
|
+
// @ts-nocheck
|
|
3025
|
+
/**
|
|
3026
|
+
* The directives folder containing the value accessors is generated dynamically
|
|
3027
|
+
* when compiling the `beeq` package.
|
|
3028
|
+
* ⚠️ Since this file won't change that much, it is safe to disable TypeScript checking.
|
|
3029
|
+
*/
|
|
3018
3030
|
/* -------------------------------------------------------------------------- */
|
|
3019
3031
|
/* DIRECTIVES */
|
|
3020
3032
|
/* -------------------------------------------------------------------------- */
|