@oicl/openbridge-webcomponents-ng 2.0.0-next.137 → 2.0.0-next.138
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.
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Input, Component } from '@angular/core';
|
|
3
|
+
import '@oicl/openbridge-webcomponents/dist/components/alert-subsystem-counter/alert-subsystem-counter.js';
|
|
4
|
+
|
|
5
|
+
class ObcAlertSubsystemCounter {
|
|
6
|
+
_el;
|
|
7
|
+
_ngZone;
|
|
8
|
+
constructor(e, ngZone) {
|
|
9
|
+
this._el = e.nativeElement;
|
|
10
|
+
this._ngZone = ngZone;
|
|
11
|
+
}
|
|
12
|
+
set label(v) {
|
|
13
|
+
this._ngZone.runOutsideAngular(() => (this._el.label = v));
|
|
14
|
+
}
|
|
15
|
+
get label() {
|
|
16
|
+
return this._el.label;
|
|
17
|
+
}
|
|
18
|
+
set orientation(v) {
|
|
19
|
+
this._ngZone.runOutsideAngular(() => (this._el.orientation = v));
|
|
20
|
+
}
|
|
21
|
+
get orientation() {
|
|
22
|
+
return this._el.orientation;
|
|
23
|
+
}
|
|
24
|
+
set hasAlert(v) {
|
|
25
|
+
this._ngZone.runOutsideAngular(() => (this._el.hasAlert = v));
|
|
26
|
+
}
|
|
27
|
+
get hasAlert() {
|
|
28
|
+
return this._el.hasAlert;
|
|
29
|
+
}
|
|
30
|
+
set emptyText(v) {
|
|
31
|
+
this._ngZone.runOutsideAngular(() => (this._el.emptyText = v));
|
|
32
|
+
}
|
|
33
|
+
get emptyText() {
|
|
34
|
+
return this._el.emptyText;
|
|
35
|
+
}
|
|
36
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcAlertSubsystemCounter, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
37
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcAlertSubsystemCounter, isStandalone: true, selector: "obc-alert-subsystem-counter", inputs: { label: "label", orientation: "orientation", hasAlert: "hasAlert", emptyText: "emptyText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
38
|
+
}
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcAlertSubsystemCounter, decorators: [{
|
|
40
|
+
type: Component,
|
|
41
|
+
args: [{
|
|
42
|
+
selector: 'obc-alert-subsystem-counter',
|
|
43
|
+
template: '<ng-content></ng-content>',
|
|
44
|
+
standalone: true,
|
|
45
|
+
imports: []
|
|
46
|
+
}]
|
|
47
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { label: [{
|
|
48
|
+
type: Input
|
|
49
|
+
}], orientation: [{
|
|
50
|
+
type: Input
|
|
51
|
+
}], hasAlert: [{
|
|
52
|
+
type: Input
|
|
53
|
+
}], emptyText: [{
|
|
54
|
+
type: Input
|
|
55
|
+
}] } });
|
|
56
|
+
|
|
57
|
+
/* eslint-disable import/extensions */
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Generated bundle index. Do not edit.
|
|
61
|
+
*/
|
|
62
|
+
|
|
63
|
+
export { ObcAlertSubsystemCounter };
|
|
64
|
+
//# sourceMappingURL=oicl-openbridge-webcomponents-ng-obc-alert-subsystem-counter.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"oicl-openbridge-webcomponents-ng-obc-alert-subsystem-counter.mjs","sources":["../../obc-alert-subsystem-counter/src/obc-alert-subsystem-counter.ts","../../obc-alert-subsystem-counter/src/public-api.ts","../../obc-alert-subsystem-counter/src/oicl-openbridge-webcomponents-ng-obc-alert-subsystem-counter.ts"],"sourcesContent":["import {\n Component,\n ElementRef,\n NgZone,\n Input\n\n} from '@angular/core';\nimport {ObcAlertSubsystemCounterOrientation} from '@oicl/openbridge-webcomponents/dist/components/alert-subsystem-counter/alert-subsystem-counter.js';\nexport type {ObcAlertSubsystemCounterOrientation} from '@oicl/openbridge-webcomponents/dist/components/alert-subsystem-counter/alert-subsystem-counter.js';\nimport type {ObcAlertSubsystemCounter as ObcAlertSubsystemCounterElement} from '@oicl/openbridge-webcomponents/dist/components/alert-subsystem-counter/alert-subsystem-counter.js';\nimport '@oicl/openbridge-webcomponents/dist/components/alert-subsystem-counter/alert-subsystem-counter.js';\n\n@Component({\n selector: 'obc-alert-subsystem-counter',\n template: '<ng-content></ng-content>',\n standalone: true,\n imports: []\n})\nexport class ObcAlertSubsystemCounter {\n private _el: ObcAlertSubsystemCounterElement;\n private _ngZone: NgZone;\n\n constructor(\n e: ElementRef<ObcAlertSubsystemCounterElement>,\n ngZone: NgZone\n ) {\n this._el = e.nativeElement;\n this._ngZone = ngZone;\n \n }\n\n \n @Input()\n set label(v: string) {\n this._ngZone.runOutsideAngular(() => (this._el.label = v));\n }\n\n get label() {\n return this._el.label;\n }\n \n @Input()\n set orientation(v: ObcAlertSubsystemCounterOrientation) {\n this._ngZone.runOutsideAngular(() => (this._el.orientation = v));\n }\n\n get orientation() {\n return this._el.orientation;\n }\n \n @Input()\n set hasAlert(v: boolean) {\n this._ngZone.runOutsideAngular(() => (this._el.hasAlert = v));\n }\n\n get hasAlert() {\n return this._el.hasAlert;\n }\n \n @Input()\n set emptyText(v: string) {\n this._ngZone.runOutsideAngular(() => (this._el.emptyText = v));\n }\n\n get emptyText() {\n return this._el.emptyText;\n }\n \n\n \n}\n\n","/* eslint-disable import/extensions */\nexport * from \"./obc-alert-subsystem-counter\";","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAkBa,wBAAwB,CAAA;AAC3B,IAAA,GAAG;AACH,IAAA,OAAO;IAEf,WAAA,CACE,CAA8C,EAC9C,MAAc,EAAA;AAEd,QAAA,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,aAAa;AAC1B,QAAA,IAAI,CAAC,OAAO,GAAG,MAAM;IAEvB;IAGA,IACI,KAAK,CAAC,CAAS,EAAA;AACjB,QAAA,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC,OAAO,IAAI,CAAC,GAAG,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC;IAC5D;AAEA,IAAA,IAAI,KAAK,GAAA;AACP,QAAA,OAAO,IAAI,CAAC,GAAG,CAAC,KAAK;IACvB;IAEA,IACI,WAAW,CAAC,CAAsC,EAAA;AACpD,QAAA,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC,OAAO,IAAI,CAAC,GAAG,CAAC,WAAW,GAAG,CAAC,CAAC,CAAC;IAClE;AAEA,IAAA,IAAI,WAAW,GAAA;AACb,QAAA,OAAO,IAAI,CAAC,GAAG,CAAC,WAAW;IAC7B;IAEA,IACI,QAAQ,CAAC,CAAU,EAAA;AACrB,QAAA,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,GAAG,CAAC,CAAC,CAAC;IAC/D;AAEA,IAAA,IAAI,QAAQ,GAAA;AACV,QAAA,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ;IAC1B;IAEA,IACI,SAAS,CAAC,CAAS,EAAA;AACrB,QAAA,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC,OAAO,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;IAChE;AAEA,IAAA,IAAI,SAAS,GAAA;AACX,QAAA,OAAO,IAAI,CAAC,GAAG,CAAC,SAAS;IAC3B;wGAhDW,wBAAwB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAxB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,wBAAwB,6LAJzB,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA;;4FAI1B,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBANpC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,6BAA6B;AACvC,oBAAA,QAAQ,EAAE,2BAA2B;AACrC,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,OAAO,EAAE;AACV,iBAAA;;sBAeE;;sBASA;;sBASA;;sBASA;;;AC3DH;;ACAA;;AAEG;;;;"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { ElementRef, NgZone } from '@angular/core';
|
|
3
|
+
import { ObcAlertSubsystemCounter as ObcAlertSubsystemCounter$1, ObcAlertSubsystemCounterOrientation } from '@oicl/openbridge-webcomponents/dist/components/alert-subsystem-counter/alert-subsystem-counter.js';
|
|
4
|
+
export { ObcAlertSubsystemCounterOrientation } from '@oicl/openbridge-webcomponents/dist/components/alert-subsystem-counter/alert-subsystem-counter.js';
|
|
5
|
+
|
|
6
|
+
declare class ObcAlertSubsystemCounter {
|
|
7
|
+
private _el;
|
|
8
|
+
private _ngZone;
|
|
9
|
+
constructor(e: ElementRef<ObcAlertSubsystemCounter$1>, ngZone: NgZone);
|
|
10
|
+
set label(v: string);
|
|
11
|
+
get label(): string;
|
|
12
|
+
set orientation(v: ObcAlertSubsystemCounterOrientation);
|
|
13
|
+
get orientation(): ObcAlertSubsystemCounterOrientation;
|
|
14
|
+
set hasAlert(v: boolean);
|
|
15
|
+
get hasAlert(): boolean;
|
|
16
|
+
set emptyText(v: string);
|
|
17
|
+
get emptyText(): string;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ObcAlertSubsystemCounter, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ObcAlertSubsystemCounter, "obc-alert-subsystem-counter", never, { "label": { "alias": "label"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "hasAlert": { "alias": "hasAlert"; "required": false; }; "emptyText": { "alias": "emptyText"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export { ObcAlertSubsystemCounter };
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oicl/openbridge-webcomponents-ng",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.0-next.
|
|
4
|
+
"version": "2.0.0-next.138",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@oicl/openbridge-webcomponents": "^2.0.0-next.
|
|
6
|
+
"@oicl/openbridge-webcomponents": "^2.0.0-next.138",
|
|
7
7
|
"tslib": "^2.8.1"
|
|
8
8
|
},
|
|
9
9
|
"peerDependencies": {
|
|
@@ -94,6 +94,10 @@
|
|
|
94
94
|
"types": "./obc-alert-menu-item/index.d.ts",
|
|
95
95
|
"default": "./fesm2022/oicl-openbridge-webcomponents-ng-obc-alert-menu-item.mjs"
|
|
96
96
|
},
|
|
97
|
+
"./obc-alert-subsystem-counter": {
|
|
98
|
+
"types": "./obc-alert-subsystem-counter/index.d.ts",
|
|
99
|
+
"default": "./fesm2022/oicl-openbridge-webcomponents-ng-obc-alert-subsystem-counter.mjs"
|
|
100
|
+
},
|
|
97
101
|
"./obc-analog-valve": {
|
|
98
102
|
"types": "./obc-analog-valve/index.d.ts",
|
|
99
103
|
"default": "./fesm2022/oicl-openbridge-webcomponents-ng-obc-analog-valve.mjs"
|