@stencil-kit/angular 0.0.1 → 0.0.3
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.
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { __decorate } from 'tslib';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
3
|
+
import { EventEmitter, Output, ChangeDetectionStrategy, Component } from '@angular/core';
|
|
4
4
|
import { fromEvent } from 'rxjs';
|
|
5
|
-
import { defineCustomElement as defineCustomElement$1 } from '@stencil-kit/core/components/my-
|
|
6
|
-
import { defineCustomElement as defineCustomElement$2 } from '@stencil-kit/core/components/my-
|
|
7
|
-
import { defineCustomElement as defineCustomElement$3 } from '@stencil-kit/core/components/my-
|
|
8
|
-
import { defineCustomElement as defineCustomElement$4 } from '@stencil-kit/core/components/my-
|
|
5
|
+
import { defineCustomElement as defineCustomElement$1 } from '@stencil-kit/core/components/my-alert.js';
|
|
6
|
+
import { defineCustomElement as defineCustomElement$2 } from '@stencil-kit/core/components/my-badge.js';
|
|
7
|
+
import { defineCustomElement as defineCustomElement$3 } from '@stencil-kit/core/components/my-button.js';
|
|
8
|
+
import { defineCustomElement as defineCustomElement$4 } from '@stencil-kit/core/components/my-card.js';
|
|
9
|
+
import { defineCustomElement as defineCustomElement$5 } from '@stencil-kit/core/components/my-component.js';
|
|
10
|
+
import { defineCustomElement as defineCustomElement$6 } from '@stencil-kit/core/components/my-dropdown.js';
|
|
11
|
+
import { defineCustomElement as defineCustomElement$7 } from '@stencil-kit/core/components/my-input.js';
|
|
12
|
+
import { defineCustomElement as defineCustomElement$8 } from '@stencil-kit/core/components/my-modal.js';
|
|
9
13
|
|
|
10
14
|
/* eslint-disable */
|
|
11
15
|
/* tslint:disable */
|
|
@@ -65,6 +69,37 @@ function ProxyCmp(opts) {
|
|
|
65
69
|
return decorator;
|
|
66
70
|
}
|
|
67
71
|
|
|
72
|
+
let MyAlert = class MyAlert {
|
|
73
|
+
z;
|
|
74
|
+
el;
|
|
75
|
+
myDismiss = new EventEmitter();
|
|
76
|
+
constructor(c, r, z) {
|
|
77
|
+
this.z = z;
|
|
78
|
+
c.detach();
|
|
79
|
+
this.el = r.nativeElement;
|
|
80
|
+
}
|
|
81
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: MyAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
82
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.17", type: MyAlert, isStandalone: true, selector: "my-alert", inputs: { alertTitle: "alertTitle", dismissible: "dismissible", type: "type" }, outputs: { myDismiss: "myDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
83
|
+
};
|
|
84
|
+
MyAlert = __decorate([
|
|
85
|
+
ProxyCmp({
|
|
86
|
+
defineCustomElementFn: defineCustomElement$1,
|
|
87
|
+
inputs: ['alertTitle', 'dismissible', 'type']
|
|
88
|
+
})
|
|
89
|
+
], MyAlert);
|
|
90
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: MyAlert, decorators: [{
|
|
91
|
+
type: Component,
|
|
92
|
+
args: [{
|
|
93
|
+
selector: 'my-alert',
|
|
94
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
95
|
+
template: '<ng-content></ng-content>',
|
|
96
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
97
|
+
inputs: ['alertTitle', 'dismissible', 'type'],
|
|
98
|
+
outputs: ['myDismiss'],
|
|
99
|
+
}]
|
|
100
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { myDismiss: [{
|
|
101
|
+
type: Output
|
|
102
|
+
}] } });
|
|
68
103
|
let MyBadge = class MyBadge {
|
|
69
104
|
z;
|
|
70
105
|
el;
|
|
@@ -78,7 +113,7 @@ let MyBadge = class MyBadge {
|
|
|
78
113
|
};
|
|
79
114
|
MyBadge = __decorate([
|
|
80
115
|
ProxyCmp({
|
|
81
|
-
defineCustomElementFn: defineCustomElement$
|
|
116
|
+
defineCustomElementFn: defineCustomElement$2,
|
|
82
117
|
inputs: ['color', 'pill', 'size']
|
|
83
118
|
})
|
|
84
119
|
], MyBadge);
|
|
@@ -105,7 +140,7 @@ let MyButton = class MyButton {
|
|
|
105
140
|
};
|
|
106
141
|
MyButton = __decorate([
|
|
107
142
|
ProxyCmp({
|
|
108
|
-
defineCustomElementFn: defineCustomElement$
|
|
143
|
+
defineCustomElementFn: defineCustomElement$3,
|
|
109
144
|
inputs: ['disabled', 'size', 'variant']
|
|
110
145
|
})
|
|
111
146
|
], MyButton);
|
|
@@ -132,7 +167,7 @@ let MyCard = class MyCard {
|
|
|
132
167
|
};
|
|
133
168
|
MyCard = __decorate([
|
|
134
169
|
ProxyCmp({
|
|
135
|
-
defineCustomElementFn: defineCustomElement$
|
|
170
|
+
defineCustomElementFn: defineCustomElement$4,
|
|
136
171
|
inputs: ['cardTitle', 'elevation', 'subtitle']
|
|
137
172
|
})
|
|
138
173
|
], MyCard);
|
|
@@ -159,7 +194,7 @@ let MyComponent = class MyComponent {
|
|
|
159
194
|
};
|
|
160
195
|
MyComponent = __decorate([
|
|
161
196
|
ProxyCmp({
|
|
162
|
-
defineCustomElementFn: defineCustomElement$
|
|
197
|
+
defineCustomElementFn: defineCustomElement$5,
|
|
163
198
|
inputs: ['first', 'last', 'middle']
|
|
164
199
|
})
|
|
165
200
|
], MyComponent);
|
|
@@ -173,12 +208,112 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImpo
|
|
|
173
208
|
inputs: ['first', 'last', 'middle'],
|
|
174
209
|
}]
|
|
175
210
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
211
|
+
let MyDropdown = class MyDropdown {
|
|
212
|
+
z;
|
|
213
|
+
el;
|
|
214
|
+
myChange = new EventEmitter();
|
|
215
|
+
constructor(c, r, z) {
|
|
216
|
+
this.z = z;
|
|
217
|
+
c.detach();
|
|
218
|
+
this.el = r.nativeElement;
|
|
219
|
+
}
|
|
220
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: MyDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
221
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.17", type: MyDropdown, isStandalone: true, selector: "my-dropdown", inputs: { disabled: "disabled", error: "error", label: "label", options: "options", placeholder: "placeholder", value: "value" }, outputs: { myChange: "myChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
222
|
+
};
|
|
223
|
+
MyDropdown = __decorate([
|
|
224
|
+
ProxyCmp({
|
|
225
|
+
defineCustomElementFn: defineCustomElement$6,
|
|
226
|
+
inputs: ['disabled', 'error', 'label', 'options', 'placeholder', 'value']
|
|
227
|
+
})
|
|
228
|
+
], MyDropdown);
|
|
229
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: MyDropdown, decorators: [{
|
|
230
|
+
type: Component,
|
|
231
|
+
args: [{
|
|
232
|
+
selector: 'my-dropdown',
|
|
233
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
234
|
+
template: '<ng-content></ng-content>',
|
|
235
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
236
|
+
inputs: ['disabled', 'error', 'label', 'options', 'placeholder', 'value'],
|
|
237
|
+
outputs: ['myChange'],
|
|
238
|
+
}]
|
|
239
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { myChange: [{
|
|
240
|
+
type: Output
|
|
241
|
+
}] } });
|
|
242
|
+
let MyInput = class MyInput {
|
|
243
|
+
z;
|
|
244
|
+
el;
|
|
245
|
+
myChange = new EventEmitter();
|
|
246
|
+
myBlur = new EventEmitter();
|
|
247
|
+
constructor(c, r, z) {
|
|
248
|
+
this.z = z;
|
|
249
|
+
c.detach();
|
|
250
|
+
this.el = r.nativeElement;
|
|
251
|
+
}
|
|
252
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: MyInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
253
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.17", type: MyInput, isStandalone: true, selector: "my-input", inputs: { disabled: "disabled", error: "error", label: "label", placeholder: "placeholder", required: "required", type: "type", value: "value" }, outputs: { myChange: "myChange", myBlur: "myBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
254
|
+
};
|
|
255
|
+
MyInput = __decorate([
|
|
256
|
+
ProxyCmp({
|
|
257
|
+
defineCustomElementFn: defineCustomElement$7,
|
|
258
|
+
inputs: ['disabled', 'error', 'label', 'placeholder', 'required', 'type', 'value']
|
|
259
|
+
})
|
|
260
|
+
], MyInput);
|
|
261
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: MyInput, decorators: [{
|
|
262
|
+
type: Component,
|
|
263
|
+
args: [{
|
|
264
|
+
selector: 'my-input',
|
|
265
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
266
|
+
template: '<ng-content></ng-content>',
|
|
267
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
268
|
+
inputs: ['disabled', 'error', 'label', 'placeholder', 'required', 'type', 'value'],
|
|
269
|
+
outputs: ['myChange', 'myBlur'],
|
|
270
|
+
}]
|
|
271
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { myChange: [{
|
|
272
|
+
type: Output
|
|
273
|
+
}], myBlur: [{
|
|
274
|
+
type: Output
|
|
275
|
+
}] } });
|
|
276
|
+
let MyModal = class MyModal {
|
|
277
|
+
z;
|
|
278
|
+
el;
|
|
279
|
+
myClose = new EventEmitter();
|
|
280
|
+
constructor(c, r, z) {
|
|
281
|
+
this.z = z;
|
|
282
|
+
c.detach();
|
|
283
|
+
this.el = r.nativeElement;
|
|
284
|
+
}
|
|
285
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: MyModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
286
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.17", type: MyModal, isStandalone: true, selector: "my-modal", inputs: { modalTitle: "modalTitle", open: "open", size: "size" }, outputs: { myClose: "myClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
287
|
+
};
|
|
288
|
+
MyModal = __decorate([
|
|
289
|
+
ProxyCmp({
|
|
290
|
+
defineCustomElementFn: defineCustomElement$8,
|
|
291
|
+
inputs: ['modalTitle', 'open', 'size']
|
|
292
|
+
})
|
|
293
|
+
], MyModal);
|
|
294
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: MyModal, decorators: [{
|
|
295
|
+
type: Component,
|
|
296
|
+
args: [{
|
|
297
|
+
selector: 'my-modal',
|
|
298
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
299
|
+
template: '<ng-content></ng-content>',
|
|
300
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
301
|
+
inputs: ['modalTitle', 'open', 'size'],
|
|
302
|
+
outputs: ['myClose'],
|
|
303
|
+
}]
|
|
304
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { myClose: [{
|
|
305
|
+
type: Output
|
|
306
|
+
}] } });
|
|
176
307
|
|
|
177
308
|
const DIRECTIVES = [
|
|
309
|
+
MyAlert,
|
|
178
310
|
MyBadge,
|
|
179
311
|
MyButton,
|
|
180
312
|
MyCard,
|
|
181
|
-
MyComponent
|
|
313
|
+
MyComponent,
|
|
314
|
+
MyDropdown,
|
|
315
|
+
MyInput,
|
|
316
|
+
MyModal
|
|
182
317
|
];
|
|
183
318
|
|
|
184
319
|
/*
|
|
@@ -190,5 +325,5 @@ const DIRECTIVES = [
|
|
|
190
325
|
* Generated bundle index. Do not edit.
|
|
191
326
|
*/
|
|
192
327
|
|
|
193
|
-
export { DIRECTIVES, MyBadge, MyButton, MyCard, MyComponent };
|
|
328
|
+
export { DIRECTIVES, MyAlert, MyBadge, MyButton, MyCard, MyComponent, MyDropdown, MyInput, MyModal };
|
|
194
329
|
//# sourceMappingURL=stencil-kit-angular.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stencil-kit-angular.mjs","sources":["../../../projects/component-library/src/lib/stencil-generated/angular-component-lib/utils.ts","../../../projects/component-library/src/lib/stencil-generated/components.ts","../../../projects/component-library/src/lib/stencil-generated/index.ts","../../../projects/component-library/src/public-api.ts","../../../projects/component-library/src/stencil-kit-angular.ts"],"sourcesContent":["/* eslint-disable */\n/* tslint:disable */\nimport { fromEvent } from 'rxjs';\n\nexport const proxyInputs = (Cmp: any, inputs: string[]) => {\n const Prototype = Cmp.prototype;\n inputs.forEach((item) => {\n Object.defineProperty(Prototype, item, {\n get() {\n return this.el[item];\n },\n set(val: any) {\n this.z.runOutsideAngular(() => (this.el[item] = val));\n },\n /**\n * In the event that proxyInputs is called\n * multiple times re-defining these inputs\n * will cause an error to be thrown. As a result\n * we set configurable: true to indicate these\n * properties can be changed.\n */\n configurable: true,\n });\n });\n};\n\nexport const proxyMethods = (Cmp: any, methods: string[]) => {\n const Prototype = Cmp.prototype;\n methods.forEach((methodName) => {\n Prototype[methodName] = function () {\n const args = arguments;\n return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));\n };\n });\n};\n\nexport const proxyOutputs = (instance: any, el: any, events: string[]) => {\n events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));\n};\n\nexport const defineCustomElement = (tagName: string, customElement: any) => {\n if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {\n customElements.define(tagName, customElement);\n }\n};\n\n// tslint:disable-next-line: only-arrow-functions\nexport function ProxyCmp(opts: { defineCustomElementFn?: () => void; inputs?: any; methods?: any }) {\n const decorator = function (cls: any) {\n const { defineCustomElementFn, inputs, methods } = opts;\n\n if (defineCustomElementFn !== undefined) {\n defineCustomElementFn();\n }\n\n if (inputs) {\n proxyInputs(cls, inputs);\n }\n if (methods) {\n proxyMethods(cls, methods);\n }\n return cls;\n };\n return decorator;\n}\n","/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone } from '@angular/core';\n\nimport { ProxyCmp } from './angular-component-lib/utils';\n\nimport type { Components } from '@stencil-kit/core/components';\n\nimport { defineCustomElement as defineMyBadge } from '@stencil-kit/core/components/my-badge.js';\nimport { defineCustomElement as defineMyButton } from '@stencil-kit/core/components/my-button.js';\nimport { defineCustomElement as defineMyCard } from '@stencil-kit/core/components/my-card.js';\nimport { defineCustomElement as defineMyComponent } from '@stencil-kit/core/components/my-component.js';\n@ProxyCmp({\n defineCustomElementFn: defineMyBadge,\n inputs: ['color', 'pill', 'size']\n})\n@Component({\n selector: 'my-badge',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['color', 'pill', 'size'],\n})\nexport class MyBadge {\n protected el: HTMLMyBadgeElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface MyBadge extends Components.MyBadge {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineMyButton,\n inputs: ['disabled', 'size', 'variant']\n})\n@Component({\n selector: 'my-button',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['disabled', 'size', 'variant'],\n})\nexport class MyButton {\n protected el: HTMLMyButtonElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface MyButton extends Components.MyButton {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineMyCard,\n inputs: ['cardTitle', 'elevation', 'subtitle']\n})\n@Component({\n selector: 'my-card',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['cardTitle', 'elevation', 'subtitle'],\n})\nexport class MyCard {\n protected el: HTMLMyCardElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface MyCard extends Components.MyCard {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineMyComponent,\n inputs: ['first', 'last', 'middle']\n})\n@Component({\n selector: 'my-component',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['first', 'last', 'middle'],\n})\nexport class MyComponent {\n protected el: HTMLMyComponentElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface MyComponent extends Components.MyComponent {}\n\n\n","\nimport * as d from './components';\n\nexport const DIRECTIVES = [\n d.MyBadge,\n d.MyButton,\n d.MyCard,\n d.MyComponent\n];\n","/*\n * Public API Surface of component-library\n */\n\n// export * from './lib/component-library';\n\nexport { DIRECTIVES } from './lib/stencil-generated';\nexport * from './lib/stencil-generated/components';\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["defineMyBadge","defineMyButton","defineMyCard","defineMyComponent","d.MyBadge","d.MyButton","d.MyCard","d.MyComponent"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"stencil-kit-angular.mjs","sources":["../../../projects/component-library/src/lib/stencil-generated/angular-component-lib/utils.ts","../../../projects/component-library/src/lib/stencil-generated/components.ts","../../../projects/component-library/src/lib/stencil-generated/index.ts","../../../projects/component-library/src/public-api.ts","../../../projects/component-library/src/stencil-kit-angular.ts"],"sourcesContent":["/* eslint-disable */\n/* tslint:disable */\nimport { fromEvent } from 'rxjs';\n\nexport const proxyInputs = (Cmp: any, inputs: string[]) => {\n const Prototype = Cmp.prototype;\n inputs.forEach((item) => {\n Object.defineProperty(Prototype, item, {\n get() {\n return this.el[item];\n },\n set(val: any) {\n this.z.runOutsideAngular(() => (this.el[item] = val));\n },\n /**\n * In the event that proxyInputs is called\n * multiple times re-defining these inputs\n * will cause an error to be thrown. As a result\n * we set configurable: true to indicate these\n * properties can be changed.\n */\n configurable: true,\n });\n });\n};\n\nexport const proxyMethods = (Cmp: any, methods: string[]) => {\n const Prototype = Cmp.prototype;\n methods.forEach((methodName) => {\n Prototype[methodName] = function () {\n const args = arguments;\n return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));\n };\n });\n};\n\nexport const proxyOutputs = (instance: any, el: any, events: string[]) => {\n events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));\n};\n\nexport const defineCustomElement = (tagName: string, customElement: any) => {\n if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {\n customElements.define(tagName, customElement);\n }\n};\n\n// tslint:disable-next-line: only-arrow-functions\nexport function ProxyCmp(opts: { defineCustomElementFn?: () => void; inputs?: any; methods?: any }) {\n const decorator = function (cls: any) {\n const { defineCustomElementFn, inputs, methods } = opts;\n\n if (defineCustomElementFn !== undefined) {\n defineCustomElementFn();\n }\n\n if (inputs) {\n proxyInputs(cls, inputs);\n }\n if (methods) {\n proxyMethods(cls, methods);\n }\n return cls;\n };\n return decorator;\n}\n","/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, Output, NgZone } from '@angular/core';\n\nimport { ProxyCmp } from './angular-component-lib/utils';\n\nimport type { Components } from '@stencil-kit/core/components';\n\nimport { defineCustomElement as defineMyAlert } from '@stencil-kit/core/components/my-alert.js';\nimport { defineCustomElement as defineMyBadge } from '@stencil-kit/core/components/my-badge.js';\nimport { defineCustomElement as defineMyButton } from '@stencil-kit/core/components/my-button.js';\nimport { defineCustomElement as defineMyCard } from '@stencil-kit/core/components/my-card.js';\nimport { defineCustomElement as defineMyComponent } from '@stencil-kit/core/components/my-component.js';\nimport { defineCustomElement as defineMyDropdown } from '@stencil-kit/core/components/my-dropdown.js';\nimport { defineCustomElement as defineMyInput } from '@stencil-kit/core/components/my-input.js';\nimport { defineCustomElement as defineMyModal } from '@stencil-kit/core/components/my-modal.js';\n@ProxyCmp({\n defineCustomElementFn: defineMyAlert,\n inputs: ['alertTitle', 'dismissible', 'type']\n})\n@Component({\n selector: 'my-alert',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['alertTitle', 'dismissible', 'type'],\n outputs: ['myDismiss'],\n})\nexport class MyAlert {\n protected el: HTMLMyAlertElement;\n @Output() myDismiss = new EventEmitter<MyAlertCustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { MyAlertCustomEvent } from '@stencil-kit/core/components';\n\nexport declare interface MyAlert extends Components.MyAlert {\n\n myDismiss: EventEmitter<MyAlertCustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineMyBadge,\n inputs: ['color', 'pill', 'size']\n})\n@Component({\n selector: 'my-badge',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['color', 'pill', 'size'],\n})\nexport class MyBadge {\n protected el: HTMLMyBadgeElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface MyBadge extends Components.MyBadge {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineMyButton,\n inputs: ['disabled', 'size', 'variant']\n})\n@Component({\n selector: 'my-button',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['disabled', 'size', 'variant'],\n})\nexport class MyButton {\n protected el: HTMLMyButtonElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface MyButton extends Components.MyButton {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineMyCard,\n inputs: ['cardTitle', 'elevation', 'subtitle']\n})\n@Component({\n selector: 'my-card',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['cardTitle', 'elevation', 'subtitle'],\n})\nexport class MyCard {\n protected el: HTMLMyCardElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface MyCard extends Components.MyCard {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineMyComponent,\n inputs: ['first', 'last', 'middle']\n})\n@Component({\n selector: 'my-component',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['first', 'last', 'middle'],\n})\nexport class MyComponent {\n protected el: HTMLMyComponentElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface MyComponent extends Components.MyComponent {}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineMyDropdown,\n inputs: ['disabled', 'error', 'label', 'options', 'placeholder', 'value']\n})\n@Component({\n selector: 'my-dropdown',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['disabled', 'error', 'label', 'options', 'placeholder', 'value'],\n outputs: ['myChange'],\n})\nexport class MyDropdown {\n protected el: HTMLMyDropdownElement;\n @Output() myChange = new EventEmitter<MyDropdownCustomEvent<string>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { MyDropdownCustomEvent } from '@stencil-kit/core/components';\n\nexport declare interface MyDropdown extends Components.MyDropdown {\n\n myChange: EventEmitter<MyDropdownCustomEvent<string>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineMyInput,\n inputs: ['disabled', 'error', 'label', 'placeholder', 'required', 'type', 'value']\n})\n@Component({\n selector: 'my-input',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['disabled', 'error', 'label', 'placeholder', 'required', 'type', 'value'],\n outputs: ['myChange', 'myBlur'],\n})\nexport class MyInput {\n protected el: HTMLMyInputElement;\n @Output() myChange = new EventEmitter<MyInputCustomEvent<string>>();\n @Output() myBlur = new EventEmitter<MyInputCustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { MyInputCustomEvent } from '@stencil-kit/core/components';\n\nexport declare interface MyInput extends Components.MyInput {\n\n myChange: EventEmitter<MyInputCustomEvent<string>>;\n\n myBlur: EventEmitter<MyInputCustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n defineCustomElementFn: defineMyModal,\n inputs: ['modalTitle', 'open', 'size']\n})\n@Component({\n selector: 'my-modal',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['modalTitle', 'open', 'size'],\n outputs: ['myClose'],\n})\nexport class MyModal {\n protected el: HTMLMyModalElement;\n @Output() myClose = new EventEmitter<MyModalCustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { MyModalCustomEvent } from '@stencil-kit/core/components';\n\nexport declare interface MyModal extends Components.MyModal {\n\n myClose: EventEmitter<MyModalCustomEvent<void>>;\n}\n\n\n","\nimport * as d from './components';\n\nexport const DIRECTIVES = [\n d.MyAlert,\n d.MyBadge,\n d.MyButton,\n d.MyCard,\n d.MyComponent,\n d.MyDropdown,\n d.MyInput,\n d.MyModal\n];\n","/*\n * Public API Surface of component-library\n */\n\n// export * from './lib/component-library';\n\nexport { DIRECTIVES } from './lib/stencil-generated';\nexport * from './lib/stencil-generated/components';\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["defineMyAlert","defineMyBadge","defineMyButton","defineMyCard","defineMyComponent","defineMyDropdown","defineMyInput","defineMyModal","d.MyAlert","d.MyBadge","d.MyButton","d.MyCard","d.MyComponent","d.MyDropdown","d.MyInput","d.MyModal"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { NgZone, ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
3
|
-
import { Components } from '@stencil-kit/core/components';
|
|
2
|
+
import { NgZone, EventEmitter, ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
3
|
+
import { MyAlertCustomEvent, Components, MyDropdownCustomEvent, MyInputCustomEvent, MyModalCustomEvent } from '@stencil-kit/core/components';
|
|
4
4
|
|
|
5
|
+
declare class MyAlert {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLMyAlertElement;
|
|
8
|
+
myDismiss: EventEmitter<MyAlertCustomEvent<void>>;
|
|
9
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyAlert, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MyAlert, "my-alert", never, { "alertTitle": { "alias": "alertTitle"; "required": false; }; "dismissible": { "alias": "dismissible"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "myDismiss": "myDismiss"; }, never, ["*"], true, never>;
|
|
12
|
+
}
|
|
13
|
+
declare interface MyAlert extends Components.MyAlert {
|
|
14
|
+
myDismiss: EventEmitter<MyAlertCustomEvent<void>>;
|
|
15
|
+
}
|
|
5
16
|
declare class MyBadge {
|
|
6
17
|
protected z: NgZone;
|
|
7
18
|
protected el: HTMLMyBadgeElement;
|
|
@@ -38,7 +49,42 @@ declare class MyComponent {
|
|
|
38
49
|
}
|
|
39
50
|
declare interface MyComponent extends Components.MyComponent {
|
|
40
51
|
}
|
|
52
|
+
declare class MyDropdown {
|
|
53
|
+
protected z: NgZone;
|
|
54
|
+
protected el: HTMLMyDropdownElement;
|
|
55
|
+
myChange: EventEmitter<MyDropdownCustomEvent<string>>;
|
|
56
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
57
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyDropdown, never>;
|
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MyDropdown, "my-dropdown", never, { "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "label": { "alias": "label"; "required": false; }; "options": { "alias": "options"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "myChange": "myChange"; }, never, ["*"], true, never>;
|
|
59
|
+
}
|
|
60
|
+
declare interface MyDropdown extends Components.MyDropdown {
|
|
61
|
+
myChange: EventEmitter<MyDropdownCustomEvent<string>>;
|
|
62
|
+
}
|
|
63
|
+
declare class MyInput {
|
|
64
|
+
protected z: NgZone;
|
|
65
|
+
protected el: HTMLMyInputElement;
|
|
66
|
+
myChange: EventEmitter<MyInputCustomEvent<string>>;
|
|
67
|
+
myBlur: EventEmitter<MyInputCustomEvent<void>>;
|
|
68
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
69
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyInput, never>;
|
|
70
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MyInput, "my-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "myChange": "myChange"; "myBlur": "myBlur"; }, never, ["*"], true, never>;
|
|
71
|
+
}
|
|
72
|
+
declare interface MyInput extends Components.MyInput {
|
|
73
|
+
myChange: EventEmitter<MyInputCustomEvent<string>>;
|
|
74
|
+
myBlur: EventEmitter<MyInputCustomEvent<void>>;
|
|
75
|
+
}
|
|
76
|
+
declare class MyModal {
|
|
77
|
+
protected z: NgZone;
|
|
78
|
+
protected el: HTMLMyModalElement;
|
|
79
|
+
myClose: EventEmitter<MyModalCustomEvent<void>>;
|
|
80
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
81
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyModal, never>;
|
|
82
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MyModal, "my-modal", never, { "modalTitle": { "alias": "modalTitle"; "required": false; }; "open": { "alias": "open"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "myClose": "myClose"; }, never, ["*"], true, never>;
|
|
83
|
+
}
|
|
84
|
+
declare interface MyModal extends Components.MyModal {
|
|
85
|
+
myClose: EventEmitter<MyModalCustomEvent<void>>;
|
|
86
|
+
}
|
|
41
87
|
|
|
42
|
-
declare const DIRECTIVES: (typeof MyBadge | typeof MyButton | typeof MyCard | typeof MyComponent)[];
|
|
88
|
+
declare const DIRECTIVES: (typeof MyAlert | typeof MyBadge | typeof MyButton | typeof MyCard | typeof MyComponent | typeof MyDropdown | typeof MyInput | typeof MyModal)[];
|
|
43
89
|
|
|
44
|
-
export { DIRECTIVES, MyBadge, MyButton, MyCard, MyComponent };
|
|
90
|
+
export { DIRECTIVES, MyAlert, MyBadge, MyButton, MyCard, MyComponent, MyDropdown, MyInput, MyModal };
|