@getflip/swirl-components-angular 0.1.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.
- package/.turbo/turbo-build.log +28 -0
- package/CHANGELOG.md +41 -0
- package/README.md +4 -0
- package/angular.json +38 -0
- package/dist/component-library/esm2020/getflip-swirl-components-angular.mjs +5 -0
- package/dist/component-library/esm2020/lib/component-library.module.mjs +20 -0
- package/dist/component-library/esm2020/lib/stencil-generated/angular-component-lib/utils.mjs +53 -0
- package/dist/component-library/esm2020/lib/stencil-generated/boolean-value-accessor.mjs +38 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +2463 -0
- package/dist/component-library/esm2020/lib/stencil-generated/index.mjs +102 -0
- package/dist/component-library/esm2020/lib/stencil-generated/text-value-accessor.mjs +35 -0
- package/dist/component-library/esm2020/lib/stencil-generated/value-accessor.mjs +40 -0
- package/dist/component-library/esm2020/public-api.mjs +8 -0
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +2644 -0
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -0
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +2644 -0
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -0
- package/dist/component-library/index.d.ts +5 -0
- package/dist/component-library/lib/component-library.module.d.ts +9 -0
- package/dist/component-library/lib/stencil-generated/angular-component-lib/utils.d.ts +9 -0
- package/dist/component-library/lib/stencil-generated/boolean-value-accessor.d.ts +9 -0
- package/dist/component-library/lib/stencil-generated/components.d.ts +937 -0
- package/dist/component-library/lib/stencil-generated/index.d.ts +2 -0
- package/dist/component-library/lib/stencil-generated/text-value-accessor.d.ts +8 -0
- package/dist/component-library/lib/stencil-generated/value-accessor.d.ts +18 -0
- package/dist/component-library/package.json +31 -0
- package/dist/component-library/public-api.d.ts +4 -0
- package/package.json +29 -0
- package/projects/component-library/ng-package.json +7 -0
- package/projects/component-library/package.json +11 -0
- package/projects/component-library/src/lib/component-library.module.ts +12 -0
- package/projects/component-library/src/lib/stencil-generated/angular-component-lib/utils.ts +63 -0
- package/projects/component-library/src/lib/stencil-generated/boolean-value-accessor.ts +27 -0
- package/projects/component-library/src/lib/stencil-generated/components.ts +2142 -0
- package/projects/component-library/src/lib/stencil-generated/index.ts +103 -0
- package/projects/component-library/src/lib/stencil-generated/text-value-accessor.ts +24 -0
- package/projects/component-library/src/lib/stencil-generated/value-accessor.ts +39 -0
- package/projects/component-library/src/public-api.ts +8 -0
- package/projects/component-library/tsconfig.lib.json +12 -0
- package/projects/component-library/tsconfig.lib.prod.json +10 -0
- package/projects/component-library/tsconfig.spec.json +10 -0
- package/tsconfig.json +32 -0
|
@@ -0,0 +1,2644 @@
|
|
|
1
|
+
import { __decorate } from 'tslib';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { Component, ChangeDetectionStrategy, Directive, HostListener, NgModule } from '@angular/core';
|
|
4
|
+
import { fromEvent } from 'rxjs';
|
|
5
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
6
|
+
|
|
7
|
+
/* eslint-disable */
|
|
8
|
+
const proxyInputs = (Cmp, inputs) => {
|
|
9
|
+
const Prototype = Cmp.prototype;
|
|
10
|
+
inputs.forEach(item => {
|
|
11
|
+
Object.defineProperty(Prototype, item, {
|
|
12
|
+
get() {
|
|
13
|
+
return this.el[item];
|
|
14
|
+
},
|
|
15
|
+
set(val) {
|
|
16
|
+
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
const proxyMethods = (Cmp, methods) => {
|
|
22
|
+
const Prototype = Cmp.prototype;
|
|
23
|
+
methods.forEach(methodName => {
|
|
24
|
+
Prototype[methodName] = function () {
|
|
25
|
+
const args = arguments;
|
|
26
|
+
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
27
|
+
};
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
const proxyOutputs = (instance, el, events) => {
|
|
31
|
+
events.forEach(eventName => instance[eventName] = fromEvent(el, eventName));
|
|
32
|
+
};
|
|
33
|
+
const defineCustomElement = (tagName, customElement) => {
|
|
34
|
+
if (customElement !== undefined &&
|
|
35
|
+
typeof customElements !== 'undefined' &&
|
|
36
|
+
!customElements.get(tagName)) {
|
|
37
|
+
customElements.define(tagName, customElement);
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
// tslint:disable-next-line: only-arrow-functions
|
|
41
|
+
function ProxyCmp(opts) {
|
|
42
|
+
const decorator = function (cls) {
|
|
43
|
+
const { defineCustomElementFn, inputs, methods } = opts;
|
|
44
|
+
if (defineCustomElementFn !== undefined) {
|
|
45
|
+
defineCustomElementFn();
|
|
46
|
+
}
|
|
47
|
+
if (inputs) {
|
|
48
|
+
proxyInputs(cls, inputs);
|
|
49
|
+
}
|
|
50
|
+
if (methods) {
|
|
51
|
+
proxyMethods(cls, methods);
|
|
52
|
+
}
|
|
53
|
+
return cls;
|
|
54
|
+
};
|
|
55
|
+
return decorator;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
let FlipActionList = class FlipActionList {
|
|
59
|
+
constructor(c, r, z) {
|
|
60
|
+
this.z = z;
|
|
61
|
+
c.detach();
|
|
62
|
+
this.el = r.nativeElement;
|
|
63
|
+
}
|
|
64
|
+
};
|
|
65
|
+
FlipActionList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipActionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
66
|
+
FlipActionList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipActionList, selector: "flip-action-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
67
|
+
FlipActionList = __decorate([
|
|
68
|
+
ProxyCmp({
|
|
69
|
+
defineCustomElementFn: undefined
|
|
70
|
+
})
|
|
71
|
+
], FlipActionList);
|
|
72
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipActionList, decorators: [{
|
|
73
|
+
type: Component,
|
|
74
|
+
args: [{
|
|
75
|
+
selector: 'flip-action-list',
|
|
76
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
77
|
+
template: '<ng-content></ng-content>'
|
|
78
|
+
}]
|
|
79
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
80
|
+
let FlipActionListItem = class FlipActionListItem {
|
|
81
|
+
constructor(c, r, z) {
|
|
82
|
+
this.z = z;
|
|
83
|
+
c.detach();
|
|
84
|
+
this.el = r.nativeElement;
|
|
85
|
+
}
|
|
86
|
+
};
|
|
87
|
+
FlipActionListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipActionListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
88
|
+
FlipActionListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipActionListItem, selector: "flip-action-list-item", inputs: { description: "description", disabled: "disabled", icon: "icon", intent: "intent", label: "label", size: "size", suffix: "suffix" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
89
|
+
FlipActionListItem = __decorate([
|
|
90
|
+
ProxyCmp({
|
|
91
|
+
defineCustomElementFn: undefined,
|
|
92
|
+
inputs: ['description', 'disabled', 'icon', 'intent', 'label', 'size', 'suffix']
|
|
93
|
+
})
|
|
94
|
+
], FlipActionListItem);
|
|
95
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipActionListItem, decorators: [{
|
|
96
|
+
type: Component,
|
|
97
|
+
args: [{
|
|
98
|
+
selector: 'flip-action-list-item',
|
|
99
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
100
|
+
template: '<ng-content></ng-content>',
|
|
101
|
+
inputs: ['description', 'disabled', 'icon', 'intent', 'label', 'size', 'suffix']
|
|
102
|
+
}]
|
|
103
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
104
|
+
let FlipActionListSection = class FlipActionListSection {
|
|
105
|
+
constructor(c, r, z) {
|
|
106
|
+
this.z = z;
|
|
107
|
+
c.detach();
|
|
108
|
+
this.el = r.nativeElement;
|
|
109
|
+
}
|
|
110
|
+
};
|
|
111
|
+
FlipActionListSection.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipActionListSection, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
112
|
+
FlipActionListSection.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipActionListSection, selector: "flip-action-list-section", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
113
|
+
FlipActionListSection = __decorate([
|
|
114
|
+
ProxyCmp({
|
|
115
|
+
defineCustomElementFn: undefined,
|
|
116
|
+
inputs: ['label']
|
|
117
|
+
})
|
|
118
|
+
], FlipActionListSection);
|
|
119
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipActionListSection, decorators: [{
|
|
120
|
+
type: Component,
|
|
121
|
+
args: [{
|
|
122
|
+
selector: 'flip-action-list-section',
|
|
123
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
124
|
+
template: '<ng-content></ng-content>',
|
|
125
|
+
inputs: ['label']
|
|
126
|
+
}]
|
|
127
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
128
|
+
let FlipAvatar = class FlipAvatar {
|
|
129
|
+
constructor(c, r, z) {
|
|
130
|
+
this.z = z;
|
|
131
|
+
c.detach();
|
|
132
|
+
this.el = r.nativeElement;
|
|
133
|
+
}
|
|
134
|
+
};
|
|
135
|
+
FlipAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
136
|
+
FlipAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipAvatar, selector: "flip-avatar", inputs: { badge: "badge", badgePosition: "badgePosition", icon: "icon", initials: "initials", interactive: "interactive", label: "label", showLabel: "showLabel", size: "size", src: "src", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
137
|
+
FlipAvatar = __decorate([
|
|
138
|
+
ProxyCmp({
|
|
139
|
+
defineCustomElementFn: undefined,
|
|
140
|
+
inputs: ['badge', 'badgePosition', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'variant']
|
|
141
|
+
})
|
|
142
|
+
], FlipAvatar);
|
|
143
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipAvatar, decorators: [{
|
|
144
|
+
type: Component,
|
|
145
|
+
args: [{
|
|
146
|
+
selector: 'flip-avatar',
|
|
147
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
148
|
+
template: '<ng-content></ng-content>',
|
|
149
|
+
inputs: ['badge', 'badgePosition', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'variant']
|
|
150
|
+
}]
|
|
151
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
152
|
+
let FlipAvatarGroup = class FlipAvatarGroup {
|
|
153
|
+
constructor(c, r, z) {
|
|
154
|
+
this.z = z;
|
|
155
|
+
c.detach();
|
|
156
|
+
this.el = r.nativeElement;
|
|
157
|
+
}
|
|
158
|
+
};
|
|
159
|
+
FlipAvatarGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipAvatarGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
160
|
+
FlipAvatarGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipAvatarGroup, selector: "flip-avatar-group", inputs: { badge: "badge" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
161
|
+
FlipAvatarGroup = __decorate([
|
|
162
|
+
ProxyCmp({
|
|
163
|
+
defineCustomElementFn: undefined,
|
|
164
|
+
inputs: ['badge']
|
|
165
|
+
})
|
|
166
|
+
], FlipAvatarGroup);
|
|
167
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipAvatarGroup, decorators: [{
|
|
168
|
+
type: Component,
|
|
169
|
+
args: [{
|
|
170
|
+
selector: 'flip-avatar-group',
|
|
171
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
172
|
+
template: '<ng-content></ng-content>',
|
|
173
|
+
inputs: ['badge']
|
|
174
|
+
}]
|
|
175
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
176
|
+
let FlipBadge = class FlipBadge {
|
|
177
|
+
constructor(c, r, z) {
|
|
178
|
+
this.z = z;
|
|
179
|
+
c.detach();
|
|
180
|
+
this.el = r.nativeElement;
|
|
181
|
+
}
|
|
182
|
+
};
|
|
183
|
+
FlipBadge.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
184
|
+
FlipBadge.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipBadge, selector: "flip-badge", inputs: { icon: "icon", intent: "intent", label: "label", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
185
|
+
FlipBadge = __decorate([
|
|
186
|
+
ProxyCmp({
|
|
187
|
+
defineCustomElementFn: undefined,
|
|
188
|
+
inputs: ['icon', 'intent', 'label', 'size', 'variant']
|
|
189
|
+
})
|
|
190
|
+
], FlipBadge);
|
|
191
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipBadge, decorators: [{
|
|
192
|
+
type: Component,
|
|
193
|
+
args: [{
|
|
194
|
+
selector: 'flip-badge',
|
|
195
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
196
|
+
template: '<ng-content></ng-content>',
|
|
197
|
+
inputs: ['icon', 'intent', 'label', 'size', 'variant']
|
|
198
|
+
}]
|
|
199
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
200
|
+
let FlipBanner = class FlipBanner {
|
|
201
|
+
constructor(c, r, z) {
|
|
202
|
+
this.z = z;
|
|
203
|
+
c.detach();
|
|
204
|
+
this.el = r.nativeElement;
|
|
205
|
+
proxyOutputs(this, this.el, ['action', 'dismiss']);
|
|
206
|
+
}
|
|
207
|
+
};
|
|
208
|
+
FlipBanner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
209
|
+
FlipBanner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipBanner, selector: "flip-banner", inputs: { actionLabel: "actionLabel", content: "content", dismissLabel: "dismissLabel", dismissable: "dismissable", importance: "importance", intent: "intent", showIcon: "showIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
210
|
+
FlipBanner = __decorate([
|
|
211
|
+
ProxyCmp({
|
|
212
|
+
defineCustomElementFn: undefined,
|
|
213
|
+
inputs: ['actionLabel', 'content', 'dismissLabel', 'dismissable', 'importance', 'intent', 'showIcon']
|
|
214
|
+
})
|
|
215
|
+
], FlipBanner);
|
|
216
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipBanner, decorators: [{
|
|
217
|
+
type: Component,
|
|
218
|
+
args: [{
|
|
219
|
+
selector: 'flip-banner',
|
|
220
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
221
|
+
template: '<ng-content></ng-content>',
|
|
222
|
+
inputs: ['actionLabel', 'content', 'dismissLabel', 'dismissable', 'importance', 'intent', 'showIcon']
|
|
223
|
+
}]
|
|
224
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
225
|
+
let FlipButton = class FlipButton {
|
|
226
|
+
constructor(c, r, z) {
|
|
227
|
+
this.z = z;
|
|
228
|
+
c.detach();
|
|
229
|
+
this.el = r.nativeElement;
|
|
230
|
+
}
|
|
231
|
+
};
|
|
232
|
+
FlipButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
233
|
+
FlipButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipButton, selector: "flip-button", inputs: { disabled: "disabled", download: "download", form: "form", hideLabel: "hideLabel", href: "href", icon: "icon", intent: "intent", label: "label", name: "name", size: "size", target: "target", type: "type", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
234
|
+
FlipButton = __decorate([
|
|
235
|
+
ProxyCmp({
|
|
236
|
+
defineCustomElementFn: undefined,
|
|
237
|
+
inputs: ['disabled', 'download', 'form', 'hideLabel', 'href', 'icon', 'intent', 'label', 'name', 'size', 'target', 'type', 'value', 'variant']
|
|
238
|
+
})
|
|
239
|
+
], FlipButton);
|
|
240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipButton, decorators: [{
|
|
241
|
+
type: Component,
|
|
242
|
+
args: [{
|
|
243
|
+
selector: 'flip-button',
|
|
244
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
245
|
+
template: '<ng-content></ng-content>',
|
|
246
|
+
inputs: ['disabled', 'download', 'form', 'hideLabel', 'href', 'icon', 'intent', 'label', 'name', 'size', 'target', 'type', 'value', 'variant']
|
|
247
|
+
}]
|
|
248
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
249
|
+
let FlipButtonGroup = class FlipButtonGroup {
|
|
250
|
+
constructor(c, r, z) {
|
|
251
|
+
this.z = z;
|
|
252
|
+
c.detach();
|
|
253
|
+
this.el = r.nativeElement;
|
|
254
|
+
}
|
|
255
|
+
};
|
|
256
|
+
FlipButtonGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipButtonGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
257
|
+
FlipButtonGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipButtonGroup, selector: "flip-button-group", inputs: { orientation: "orientation", stretch: "stretch", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
258
|
+
FlipButtonGroup = __decorate([
|
|
259
|
+
ProxyCmp({
|
|
260
|
+
defineCustomElementFn: undefined,
|
|
261
|
+
inputs: ['orientation', 'stretch', 'wrap']
|
|
262
|
+
})
|
|
263
|
+
], FlipButtonGroup);
|
|
264
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipButtonGroup, decorators: [{
|
|
265
|
+
type: Component,
|
|
266
|
+
args: [{
|
|
267
|
+
selector: 'flip-button-group',
|
|
268
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
269
|
+
template: '<ng-content></ng-content>',
|
|
270
|
+
inputs: ['orientation', 'stretch', 'wrap']
|
|
271
|
+
}]
|
|
272
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
273
|
+
let FlipCheckbox = class FlipCheckbox {
|
|
274
|
+
constructor(c, r, z) {
|
|
275
|
+
this.z = z;
|
|
276
|
+
c.detach();
|
|
277
|
+
this.el = r.nativeElement;
|
|
278
|
+
proxyOutputs(this, this.el, ['valueChange']);
|
|
279
|
+
}
|
|
280
|
+
};
|
|
281
|
+
FlipCheckbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
282
|
+
FlipCheckbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipCheckbox, selector: "flip-checkbox", inputs: { checked: "checked", description: "description", disabled: "disabled", inputId: "inputId", inputName: "inputName", invalid: "invalid", label: "label", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
283
|
+
FlipCheckbox = __decorate([
|
|
284
|
+
ProxyCmp({
|
|
285
|
+
defineCustomElementFn: undefined,
|
|
286
|
+
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'value']
|
|
287
|
+
})
|
|
288
|
+
], FlipCheckbox);
|
|
289
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipCheckbox, decorators: [{
|
|
290
|
+
type: Component,
|
|
291
|
+
args: [{
|
|
292
|
+
selector: 'flip-checkbox',
|
|
293
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
294
|
+
template: '<ng-content></ng-content>',
|
|
295
|
+
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'value']
|
|
296
|
+
}]
|
|
297
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
298
|
+
let FlipChip = class FlipChip {
|
|
299
|
+
constructor(c, r, z) {
|
|
300
|
+
this.z = z;
|
|
301
|
+
c.detach();
|
|
302
|
+
this.el = r.nativeElement;
|
|
303
|
+
}
|
|
304
|
+
};
|
|
305
|
+
FlipChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
306
|
+
FlipChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipChip, selector: "flip-chip", inputs: { avatar: "avatar", icon: "icon", intent: "intent", interactive: "interactive", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
307
|
+
FlipChip = __decorate([
|
|
308
|
+
ProxyCmp({
|
|
309
|
+
defineCustomElementFn: undefined,
|
|
310
|
+
inputs: ['avatar', 'icon', 'intent', 'interactive', 'label']
|
|
311
|
+
})
|
|
312
|
+
], FlipChip);
|
|
313
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipChip, decorators: [{
|
|
314
|
+
type: Component,
|
|
315
|
+
args: [{
|
|
316
|
+
selector: 'flip-chip',
|
|
317
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
318
|
+
template: '<ng-content></ng-content>',
|
|
319
|
+
inputs: ['avatar', 'icon', 'intent', 'interactive', 'label']
|
|
320
|
+
}]
|
|
321
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
322
|
+
let FlipDescriptionList = class FlipDescriptionList {
|
|
323
|
+
constructor(c, r, z) {
|
|
324
|
+
this.z = z;
|
|
325
|
+
c.detach();
|
|
326
|
+
this.el = r.nativeElement;
|
|
327
|
+
}
|
|
328
|
+
};
|
|
329
|
+
FlipDescriptionList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipDescriptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
330
|
+
FlipDescriptionList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipDescriptionList, selector: "flip-description-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
331
|
+
FlipDescriptionList = __decorate([
|
|
332
|
+
ProxyCmp({
|
|
333
|
+
defineCustomElementFn: undefined
|
|
334
|
+
})
|
|
335
|
+
], FlipDescriptionList);
|
|
336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipDescriptionList, decorators: [{
|
|
337
|
+
type: Component,
|
|
338
|
+
args: [{
|
|
339
|
+
selector: 'flip-description-list',
|
|
340
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
341
|
+
template: '<ng-content></ng-content>'
|
|
342
|
+
}]
|
|
343
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
344
|
+
let FlipDescriptionListItem = class FlipDescriptionListItem {
|
|
345
|
+
constructor(c, r, z) {
|
|
346
|
+
this.z = z;
|
|
347
|
+
c.detach();
|
|
348
|
+
this.el = r.nativeElement;
|
|
349
|
+
}
|
|
350
|
+
};
|
|
351
|
+
FlipDescriptionListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipDescriptionListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
352
|
+
FlipDescriptionListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipDescriptionListItem, selector: "flip-description-list-item", inputs: { term: "term" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
353
|
+
FlipDescriptionListItem = __decorate([
|
|
354
|
+
ProxyCmp({
|
|
355
|
+
defineCustomElementFn: undefined,
|
|
356
|
+
inputs: ['term']
|
|
357
|
+
})
|
|
358
|
+
], FlipDescriptionListItem);
|
|
359
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipDescriptionListItem, decorators: [{
|
|
360
|
+
type: Component,
|
|
361
|
+
args: [{
|
|
362
|
+
selector: 'flip-description-list-item',
|
|
363
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
364
|
+
template: '<ng-content></ng-content>',
|
|
365
|
+
inputs: ['term']
|
|
366
|
+
}]
|
|
367
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
368
|
+
let FlipDialog = class FlipDialog {
|
|
369
|
+
constructor(c, r, z) {
|
|
370
|
+
this.z = z;
|
|
371
|
+
c.detach();
|
|
372
|
+
this.el = r.nativeElement;
|
|
373
|
+
proxyOutputs(this, this.el, ['primaryAction', 'secondaryAction']);
|
|
374
|
+
}
|
|
375
|
+
};
|
|
376
|
+
FlipDialog.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
377
|
+
FlipDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipDialog, selector: "flip-dialog", inputs: { hideLabel: "hideLabel", intent: "intent", label: "label", primaryActionLabel: "primaryActionLabel", secondaryActionLabel: "secondaryActionLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
378
|
+
FlipDialog = __decorate([
|
|
379
|
+
ProxyCmp({
|
|
380
|
+
defineCustomElementFn: undefined,
|
|
381
|
+
inputs: ['hideLabel', 'intent', 'label', 'primaryActionLabel', 'secondaryActionLabel'],
|
|
382
|
+
methods: ['open', 'close']
|
|
383
|
+
})
|
|
384
|
+
], FlipDialog);
|
|
385
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipDialog, decorators: [{
|
|
386
|
+
type: Component,
|
|
387
|
+
args: [{
|
|
388
|
+
selector: 'flip-dialog',
|
|
389
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
390
|
+
template: '<ng-content></ng-content>',
|
|
391
|
+
inputs: ['hideLabel', 'intent', 'label', 'primaryActionLabel', 'secondaryActionLabel']
|
|
392
|
+
}]
|
|
393
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
394
|
+
let FlipIconAdd = class FlipIconAdd {
|
|
395
|
+
constructor(c, r, z) {
|
|
396
|
+
this.z = z;
|
|
397
|
+
c.detach();
|
|
398
|
+
this.el = r.nativeElement;
|
|
399
|
+
}
|
|
400
|
+
};
|
|
401
|
+
FlipIconAdd.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconAdd, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
402
|
+
FlipIconAdd.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconAdd, selector: "flip-icon-add", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
403
|
+
FlipIconAdd = __decorate([
|
|
404
|
+
ProxyCmp({
|
|
405
|
+
defineCustomElementFn: undefined,
|
|
406
|
+
inputs: ['size']
|
|
407
|
+
})
|
|
408
|
+
], FlipIconAdd);
|
|
409
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconAdd, decorators: [{
|
|
410
|
+
type: Component,
|
|
411
|
+
args: [{
|
|
412
|
+
selector: 'flip-icon-add',
|
|
413
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
414
|
+
template: '<ng-content></ng-content>',
|
|
415
|
+
inputs: ['size']
|
|
416
|
+
}]
|
|
417
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
418
|
+
let FlipIconAddPhoto = class FlipIconAddPhoto {
|
|
419
|
+
constructor(c, r, z) {
|
|
420
|
+
this.z = z;
|
|
421
|
+
c.detach();
|
|
422
|
+
this.el = r.nativeElement;
|
|
423
|
+
}
|
|
424
|
+
};
|
|
425
|
+
FlipIconAddPhoto.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconAddPhoto, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
426
|
+
FlipIconAddPhoto.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconAddPhoto, selector: "flip-icon-add-photo", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
427
|
+
FlipIconAddPhoto = __decorate([
|
|
428
|
+
ProxyCmp({
|
|
429
|
+
defineCustomElementFn: undefined,
|
|
430
|
+
inputs: ['size']
|
|
431
|
+
})
|
|
432
|
+
], FlipIconAddPhoto);
|
|
433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconAddPhoto, decorators: [{
|
|
434
|
+
type: Component,
|
|
435
|
+
args: [{
|
|
436
|
+
selector: 'flip-icon-add-photo',
|
|
437
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
438
|
+
template: '<ng-content></ng-content>',
|
|
439
|
+
inputs: ['size']
|
|
440
|
+
}]
|
|
441
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
442
|
+
let FlipIconAdminPanelSettings = class FlipIconAdminPanelSettings {
|
|
443
|
+
constructor(c, r, z) {
|
|
444
|
+
this.z = z;
|
|
445
|
+
c.detach();
|
|
446
|
+
this.el = r.nativeElement;
|
|
447
|
+
}
|
|
448
|
+
};
|
|
449
|
+
FlipIconAdminPanelSettings.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconAdminPanelSettings, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
450
|
+
FlipIconAdminPanelSettings.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconAdminPanelSettings, selector: "flip-icon-admin-panel-settings", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
451
|
+
FlipIconAdminPanelSettings = __decorate([
|
|
452
|
+
ProxyCmp({
|
|
453
|
+
defineCustomElementFn: undefined,
|
|
454
|
+
inputs: ['size']
|
|
455
|
+
})
|
|
456
|
+
], FlipIconAdminPanelSettings);
|
|
457
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconAdminPanelSettings, decorators: [{
|
|
458
|
+
type: Component,
|
|
459
|
+
args: [{
|
|
460
|
+
selector: 'flip-icon-admin-panel-settings',
|
|
461
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
462
|
+
template: '<ng-content></ng-content>',
|
|
463
|
+
inputs: ['size']
|
|
464
|
+
}]
|
|
465
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
466
|
+
let FlipIconArrowBack = class FlipIconArrowBack {
|
|
467
|
+
constructor(c, r, z) {
|
|
468
|
+
this.z = z;
|
|
469
|
+
c.detach();
|
|
470
|
+
this.el = r.nativeElement;
|
|
471
|
+
}
|
|
472
|
+
};
|
|
473
|
+
FlipIconArrowBack.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconArrowBack, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
474
|
+
FlipIconArrowBack.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconArrowBack, selector: "flip-icon-arrow-back", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
475
|
+
FlipIconArrowBack = __decorate([
|
|
476
|
+
ProxyCmp({
|
|
477
|
+
defineCustomElementFn: undefined,
|
|
478
|
+
inputs: ['size']
|
|
479
|
+
})
|
|
480
|
+
], FlipIconArrowBack);
|
|
481
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconArrowBack, decorators: [{
|
|
482
|
+
type: Component,
|
|
483
|
+
args: [{
|
|
484
|
+
selector: 'flip-icon-arrow-back',
|
|
485
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
486
|
+
template: '<ng-content></ng-content>',
|
|
487
|
+
inputs: ['size']
|
|
488
|
+
}]
|
|
489
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
490
|
+
let FlipIconArrowForward = class FlipIconArrowForward {
|
|
491
|
+
constructor(c, r, z) {
|
|
492
|
+
this.z = z;
|
|
493
|
+
c.detach();
|
|
494
|
+
this.el = r.nativeElement;
|
|
495
|
+
}
|
|
496
|
+
};
|
|
497
|
+
FlipIconArrowForward.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconArrowForward, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
498
|
+
FlipIconArrowForward.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconArrowForward, selector: "flip-icon-arrow-forward", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
499
|
+
FlipIconArrowForward = __decorate([
|
|
500
|
+
ProxyCmp({
|
|
501
|
+
defineCustomElementFn: undefined,
|
|
502
|
+
inputs: ['size']
|
|
503
|
+
})
|
|
504
|
+
], FlipIconArrowForward);
|
|
505
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconArrowForward, decorators: [{
|
|
506
|
+
type: Component,
|
|
507
|
+
args: [{
|
|
508
|
+
selector: 'flip-icon-arrow-forward',
|
|
509
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
510
|
+
template: '<ng-content></ng-content>',
|
|
511
|
+
inputs: ['size']
|
|
512
|
+
}]
|
|
513
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
514
|
+
let FlipIconArrowRightSmall = class FlipIconArrowRightSmall {
|
|
515
|
+
constructor(c, r, z) {
|
|
516
|
+
this.z = z;
|
|
517
|
+
c.detach();
|
|
518
|
+
this.el = r.nativeElement;
|
|
519
|
+
}
|
|
520
|
+
};
|
|
521
|
+
FlipIconArrowRightSmall.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconArrowRightSmall, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
522
|
+
FlipIconArrowRightSmall.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconArrowRightSmall, selector: "flip-icon-arrow-right-small", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
523
|
+
FlipIconArrowRightSmall = __decorate([
|
|
524
|
+
ProxyCmp({
|
|
525
|
+
defineCustomElementFn: undefined,
|
|
526
|
+
inputs: ['size']
|
|
527
|
+
})
|
|
528
|
+
], FlipIconArrowRightSmall);
|
|
529
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconArrowRightSmall, decorators: [{
|
|
530
|
+
type: Component,
|
|
531
|
+
args: [{
|
|
532
|
+
selector: 'flip-icon-arrow-right-small',
|
|
533
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
534
|
+
template: '<ng-content></ng-content>',
|
|
535
|
+
inputs: ['size']
|
|
536
|
+
}]
|
|
537
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
538
|
+
let FlipIconAttachment = class FlipIconAttachment {
|
|
539
|
+
constructor(c, r, z) {
|
|
540
|
+
this.z = z;
|
|
541
|
+
c.detach();
|
|
542
|
+
this.el = r.nativeElement;
|
|
543
|
+
}
|
|
544
|
+
};
|
|
545
|
+
FlipIconAttachment.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconAttachment, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
546
|
+
FlipIconAttachment.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconAttachment, selector: "flip-icon-attachment", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
547
|
+
FlipIconAttachment = __decorate([
|
|
548
|
+
ProxyCmp({
|
|
549
|
+
defineCustomElementFn: undefined,
|
|
550
|
+
inputs: ['size']
|
|
551
|
+
})
|
|
552
|
+
], FlipIconAttachment);
|
|
553
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconAttachment, decorators: [{
|
|
554
|
+
type: Component,
|
|
555
|
+
args: [{
|
|
556
|
+
selector: 'flip-icon-attachment',
|
|
557
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
558
|
+
template: '<ng-content></ng-content>',
|
|
559
|
+
inputs: ['size']
|
|
560
|
+
}]
|
|
561
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
562
|
+
let FlipIconCancel = class FlipIconCancel {
|
|
563
|
+
constructor(c, r, z) {
|
|
564
|
+
this.z = z;
|
|
565
|
+
c.detach();
|
|
566
|
+
this.el = r.nativeElement;
|
|
567
|
+
}
|
|
568
|
+
};
|
|
569
|
+
FlipIconCancel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconCancel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
570
|
+
FlipIconCancel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconCancel, selector: "flip-icon-cancel", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
571
|
+
FlipIconCancel = __decorate([
|
|
572
|
+
ProxyCmp({
|
|
573
|
+
defineCustomElementFn: undefined,
|
|
574
|
+
inputs: ['size']
|
|
575
|
+
})
|
|
576
|
+
], FlipIconCancel);
|
|
577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconCancel, decorators: [{
|
|
578
|
+
type: Component,
|
|
579
|
+
args: [{
|
|
580
|
+
selector: 'flip-icon-cancel',
|
|
581
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
582
|
+
template: '<ng-content></ng-content>',
|
|
583
|
+
inputs: ['size']
|
|
584
|
+
}]
|
|
585
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
586
|
+
let FlipIconChatBubble = class FlipIconChatBubble {
|
|
587
|
+
constructor(c, r, z) {
|
|
588
|
+
this.z = z;
|
|
589
|
+
c.detach();
|
|
590
|
+
this.el = r.nativeElement;
|
|
591
|
+
}
|
|
592
|
+
};
|
|
593
|
+
FlipIconChatBubble.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconChatBubble, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
594
|
+
FlipIconChatBubble.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconChatBubble, selector: "flip-icon-chat-bubble", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
595
|
+
FlipIconChatBubble = __decorate([
|
|
596
|
+
ProxyCmp({
|
|
597
|
+
defineCustomElementFn: undefined,
|
|
598
|
+
inputs: ['size']
|
|
599
|
+
})
|
|
600
|
+
], FlipIconChatBubble);
|
|
601
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconChatBubble, decorators: [{
|
|
602
|
+
type: Component,
|
|
603
|
+
args: [{
|
|
604
|
+
selector: 'flip-icon-chat-bubble',
|
|
605
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
606
|
+
template: '<ng-content></ng-content>',
|
|
607
|
+
inputs: ['size']
|
|
608
|
+
}]
|
|
609
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
610
|
+
let FlipIconCheck = class FlipIconCheck {
|
|
611
|
+
constructor(c, r, z) {
|
|
612
|
+
this.z = z;
|
|
613
|
+
c.detach();
|
|
614
|
+
this.el = r.nativeElement;
|
|
615
|
+
}
|
|
616
|
+
};
|
|
617
|
+
FlipIconCheck.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconCheck, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
618
|
+
FlipIconCheck.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconCheck, selector: "flip-icon-check", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
619
|
+
FlipIconCheck = __decorate([
|
|
620
|
+
ProxyCmp({
|
|
621
|
+
defineCustomElementFn: undefined,
|
|
622
|
+
inputs: ['size']
|
|
623
|
+
})
|
|
624
|
+
], FlipIconCheck);
|
|
625
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconCheck, decorators: [{
|
|
626
|
+
type: Component,
|
|
627
|
+
args: [{
|
|
628
|
+
selector: 'flip-icon-check',
|
|
629
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
630
|
+
template: '<ng-content></ng-content>',
|
|
631
|
+
inputs: ['size']
|
|
632
|
+
}]
|
|
633
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
634
|
+
let FlipIconCheckCircle = class FlipIconCheckCircle {
|
|
635
|
+
constructor(c, r, z) {
|
|
636
|
+
this.z = z;
|
|
637
|
+
c.detach();
|
|
638
|
+
this.el = r.nativeElement;
|
|
639
|
+
}
|
|
640
|
+
};
|
|
641
|
+
FlipIconCheckCircle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconCheckCircle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
642
|
+
FlipIconCheckCircle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconCheckCircle, selector: "flip-icon-check-circle", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
643
|
+
FlipIconCheckCircle = __decorate([
|
|
644
|
+
ProxyCmp({
|
|
645
|
+
defineCustomElementFn: undefined,
|
|
646
|
+
inputs: ['size']
|
|
647
|
+
})
|
|
648
|
+
], FlipIconCheckCircle);
|
|
649
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconCheckCircle, decorators: [{
|
|
650
|
+
type: Component,
|
|
651
|
+
args: [{
|
|
652
|
+
selector: 'flip-icon-check-circle',
|
|
653
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
654
|
+
template: '<ng-content></ng-content>',
|
|
655
|
+
inputs: ['size']
|
|
656
|
+
}]
|
|
657
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
658
|
+
let FlipIconCheckSmall = class FlipIconCheckSmall {
|
|
659
|
+
constructor(c, r, z) {
|
|
660
|
+
this.z = z;
|
|
661
|
+
c.detach();
|
|
662
|
+
this.el = r.nativeElement;
|
|
663
|
+
}
|
|
664
|
+
};
|
|
665
|
+
FlipIconCheckSmall.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconCheckSmall, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
666
|
+
FlipIconCheckSmall.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconCheckSmall, selector: "flip-icon-check-small", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
667
|
+
FlipIconCheckSmall = __decorate([
|
|
668
|
+
ProxyCmp({
|
|
669
|
+
defineCustomElementFn: undefined,
|
|
670
|
+
inputs: ['size']
|
|
671
|
+
})
|
|
672
|
+
], FlipIconCheckSmall);
|
|
673
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconCheckSmall, decorators: [{
|
|
674
|
+
type: Component,
|
|
675
|
+
args: [{
|
|
676
|
+
selector: 'flip-icon-check-small',
|
|
677
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
678
|
+
template: '<ng-content></ng-content>',
|
|
679
|
+
inputs: ['size']
|
|
680
|
+
}]
|
|
681
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
682
|
+
let FlipIconCheckStrong = class FlipIconCheckStrong {
|
|
683
|
+
constructor(c, r, z) {
|
|
684
|
+
this.z = z;
|
|
685
|
+
c.detach();
|
|
686
|
+
this.el = r.nativeElement;
|
|
687
|
+
}
|
|
688
|
+
};
|
|
689
|
+
FlipIconCheckStrong.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconCheckStrong, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
690
|
+
FlipIconCheckStrong.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconCheckStrong, selector: "flip-icon-check-strong", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
691
|
+
FlipIconCheckStrong = __decorate([
|
|
692
|
+
ProxyCmp({
|
|
693
|
+
defineCustomElementFn: undefined,
|
|
694
|
+
inputs: ['size']
|
|
695
|
+
})
|
|
696
|
+
], FlipIconCheckStrong);
|
|
697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconCheckStrong, decorators: [{
|
|
698
|
+
type: Component,
|
|
699
|
+
args: [{
|
|
700
|
+
selector: 'flip-icon-check-strong',
|
|
701
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
702
|
+
template: '<ng-content></ng-content>',
|
|
703
|
+
inputs: ['size']
|
|
704
|
+
}]
|
|
705
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
706
|
+
let FlipIconChevronLeft = class FlipIconChevronLeft {
|
|
707
|
+
constructor(c, r, z) {
|
|
708
|
+
this.z = z;
|
|
709
|
+
c.detach();
|
|
710
|
+
this.el = r.nativeElement;
|
|
711
|
+
}
|
|
712
|
+
};
|
|
713
|
+
FlipIconChevronLeft.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconChevronLeft, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
714
|
+
FlipIconChevronLeft.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconChevronLeft, selector: "flip-icon-chevron-left", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
715
|
+
FlipIconChevronLeft = __decorate([
|
|
716
|
+
ProxyCmp({
|
|
717
|
+
defineCustomElementFn: undefined,
|
|
718
|
+
inputs: ['size']
|
|
719
|
+
})
|
|
720
|
+
], FlipIconChevronLeft);
|
|
721
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconChevronLeft, decorators: [{
|
|
722
|
+
type: Component,
|
|
723
|
+
args: [{
|
|
724
|
+
selector: 'flip-icon-chevron-left',
|
|
725
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
726
|
+
template: '<ng-content></ng-content>',
|
|
727
|
+
inputs: ['size']
|
|
728
|
+
}]
|
|
729
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
730
|
+
let FlipIconChevronRight = class FlipIconChevronRight {
|
|
731
|
+
constructor(c, r, z) {
|
|
732
|
+
this.z = z;
|
|
733
|
+
c.detach();
|
|
734
|
+
this.el = r.nativeElement;
|
|
735
|
+
}
|
|
736
|
+
};
|
|
737
|
+
FlipIconChevronRight.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconChevronRight, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
738
|
+
FlipIconChevronRight.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconChevronRight, selector: "flip-icon-chevron-right", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
739
|
+
FlipIconChevronRight = __decorate([
|
|
740
|
+
ProxyCmp({
|
|
741
|
+
defineCustomElementFn: undefined,
|
|
742
|
+
inputs: ['size']
|
|
743
|
+
})
|
|
744
|
+
], FlipIconChevronRight);
|
|
745
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconChevronRight, decorators: [{
|
|
746
|
+
type: Component,
|
|
747
|
+
args: [{
|
|
748
|
+
selector: 'flip-icon-chevron-right',
|
|
749
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
750
|
+
template: '<ng-content></ng-content>',
|
|
751
|
+
inputs: ['size']
|
|
752
|
+
}]
|
|
753
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
754
|
+
let FlipIconClose = class FlipIconClose {
|
|
755
|
+
constructor(c, r, z) {
|
|
756
|
+
this.z = z;
|
|
757
|
+
c.detach();
|
|
758
|
+
this.el = r.nativeElement;
|
|
759
|
+
}
|
|
760
|
+
};
|
|
761
|
+
FlipIconClose.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconClose, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
762
|
+
FlipIconClose.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconClose, selector: "flip-icon-close", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
763
|
+
FlipIconClose = __decorate([
|
|
764
|
+
ProxyCmp({
|
|
765
|
+
defineCustomElementFn: undefined,
|
|
766
|
+
inputs: ['size']
|
|
767
|
+
})
|
|
768
|
+
], FlipIconClose);
|
|
769
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconClose, decorators: [{
|
|
770
|
+
type: Component,
|
|
771
|
+
args: [{
|
|
772
|
+
selector: 'flip-icon-close',
|
|
773
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
774
|
+
template: '<ng-content></ng-content>',
|
|
775
|
+
inputs: ['size']
|
|
776
|
+
}]
|
|
777
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
778
|
+
let FlipIconCloseSmall = class FlipIconCloseSmall {
|
|
779
|
+
constructor(c, r, z) {
|
|
780
|
+
this.z = z;
|
|
781
|
+
c.detach();
|
|
782
|
+
this.el = r.nativeElement;
|
|
783
|
+
}
|
|
784
|
+
};
|
|
785
|
+
FlipIconCloseSmall.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconCloseSmall, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
786
|
+
FlipIconCloseSmall.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconCloseSmall, selector: "flip-icon-close-small", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
787
|
+
FlipIconCloseSmall = __decorate([
|
|
788
|
+
ProxyCmp({
|
|
789
|
+
defineCustomElementFn: undefined,
|
|
790
|
+
inputs: ['size']
|
|
791
|
+
})
|
|
792
|
+
], FlipIconCloseSmall);
|
|
793
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconCloseSmall, decorators: [{
|
|
794
|
+
type: Component,
|
|
795
|
+
args: [{
|
|
796
|
+
selector: 'flip-icon-close-small',
|
|
797
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
798
|
+
template: '<ng-content></ng-content>',
|
|
799
|
+
inputs: ['size']
|
|
800
|
+
}]
|
|
801
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
802
|
+
let FlipIconComment = class FlipIconComment {
|
|
803
|
+
constructor(c, r, z) {
|
|
804
|
+
this.z = z;
|
|
805
|
+
c.detach();
|
|
806
|
+
this.el = r.nativeElement;
|
|
807
|
+
}
|
|
808
|
+
};
|
|
809
|
+
FlipIconComment.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconComment, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
810
|
+
FlipIconComment.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconComment, selector: "flip-icon-comment", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
811
|
+
FlipIconComment = __decorate([
|
|
812
|
+
ProxyCmp({
|
|
813
|
+
defineCustomElementFn: undefined,
|
|
814
|
+
inputs: ['size']
|
|
815
|
+
})
|
|
816
|
+
], FlipIconComment);
|
|
817
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconComment, decorators: [{
|
|
818
|
+
type: Component,
|
|
819
|
+
args: [{
|
|
820
|
+
selector: 'flip-icon-comment',
|
|
821
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
822
|
+
template: '<ng-content></ng-content>',
|
|
823
|
+
inputs: ['size']
|
|
824
|
+
}]
|
|
825
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
826
|
+
let FlipIconCopy = class FlipIconCopy {
|
|
827
|
+
constructor(c, r, z) {
|
|
828
|
+
this.z = z;
|
|
829
|
+
c.detach();
|
|
830
|
+
this.el = r.nativeElement;
|
|
831
|
+
}
|
|
832
|
+
};
|
|
833
|
+
FlipIconCopy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconCopy, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
834
|
+
FlipIconCopy.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconCopy, selector: "flip-icon-copy", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
835
|
+
FlipIconCopy = __decorate([
|
|
836
|
+
ProxyCmp({
|
|
837
|
+
defineCustomElementFn: undefined,
|
|
838
|
+
inputs: ['size']
|
|
839
|
+
})
|
|
840
|
+
], FlipIconCopy);
|
|
841
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconCopy, decorators: [{
|
|
842
|
+
type: Component,
|
|
843
|
+
args: [{
|
|
844
|
+
selector: 'flip-icon-copy',
|
|
845
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
846
|
+
template: '<ng-content></ng-content>',
|
|
847
|
+
inputs: ['size']
|
|
848
|
+
}]
|
|
849
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
850
|
+
let FlipIconDateRange = class FlipIconDateRange {
|
|
851
|
+
constructor(c, r, z) {
|
|
852
|
+
this.z = z;
|
|
853
|
+
c.detach();
|
|
854
|
+
this.el = r.nativeElement;
|
|
855
|
+
}
|
|
856
|
+
};
|
|
857
|
+
FlipIconDateRange.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconDateRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
858
|
+
FlipIconDateRange.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconDateRange, selector: "flip-icon-date-range", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
859
|
+
FlipIconDateRange = __decorate([
|
|
860
|
+
ProxyCmp({
|
|
861
|
+
defineCustomElementFn: undefined,
|
|
862
|
+
inputs: ['size']
|
|
863
|
+
})
|
|
864
|
+
], FlipIconDateRange);
|
|
865
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconDateRange, decorators: [{
|
|
866
|
+
type: Component,
|
|
867
|
+
args: [{
|
|
868
|
+
selector: 'flip-icon-date-range',
|
|
869
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
870
|
+
template: '<ng-content></ng-content>',
|
|
871
|
+
inputs: ['size']
|
|
872
|
+
}]
|
|
873
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
874
|
+
let FlipIconDelete = class FlipIconDelete {
|
|
875
|
+
constructor(c, r, z) {
|
|
876
|
+
this.z = z;
|
|
877
|
+
c.detach();
|
|
878
|
+
this.el = r.nativeElement;
|
|
879
|
+
}
|
|
880
|
+
};
|
|
881
|
+
FlipIconDelete.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconDelete, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
882
|
+
FlipIconDelete.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconDelete, selector: "flip-icon-delete", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
883
|
+
FlipIconDelete = __decorate([
|
|
884
|
+
ProxyCmp({
|
|
885
|
+
defineCustomElementFn: undefined,
|
|
886
|
+
inputs: ['size']
|
|
887
|
+
})
|
|
888
|
+
], FlipIconDelete);
|
|
889
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconDelete, decorators: [{
|
|
890
|
+
type: Component,
|
|
891
|
+
args: [{
|
|
892
|
+
selector: 'flip-icon-delete',
|
|
893
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
894
|
+
template: '<ng-content></ng-content>',
|
|
895
|
+
inputs: ['size']
|
|
896
|
+
}]
|
|
897
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
898
|
+
let FlipIconDescription = class FlipIconDescription {
|
|
899
|
+
constructor(c, r, z) {
|
|
900
|
+
this.z = z;
|
|
901
|
+
c.detach();
|
|
902
|
+
this.el = r.nativeElement;
|
|
903
|
+
}
|
|
904
|
+
};
|
|
905
|
+
FlipIconDescription.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconDescription, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
906
|
+
FlipIconDescription.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconDescription, selector: "flip-icon-description", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
907
|
+
FlipIconDescription = __decorate([
|
|
908
|
+
ProxyCmp({
|
|
909
|
+
defineCustomElementFn: undefined,
|
|
910
|
+
inputs: ['size']
|
|
911
|
+
})
|
|
912
|
+
], FlipIconDescription);
|
|
913
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconDescription, decorators: [{
|
|
914
|
+
type: Component,
|
|
915
|
+
args: [{
|
|
916
|
+
selector: 'flip-icon-description',
|
|
917
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
918
|
+
template: '<ng-content></ng-content>',
|
|
919
|
+
inputs: ['size']
|
|
920
|
+
}]
|
|
921
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
922
|
+
let FlipIconDownload = class FlipIconDownload {
|
|
923
|
+
constructor(c, r, z) {
|
|
924
|
+
this.z = z;
|
|
925
|
+
c.detach();
|
|
926
|
+
this.el = r.nativeElement;
|
|
927
|
+
}
|
|
928
|
+
};
|
|
929
|
+
FlipIconDownload.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconDownload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
930
|
+
FlipIconDownload.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconDownload, selector: "flip-icon-download", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
931
|
+
FlipIconDownload = __decorate([
|
|
932
|
+
ProxyCmp({
|
|
933
|
+
defineCustomElementFn: undefined,
|
|
934
|
+
inputs: ['size']
|
|
935
|
+
})
|
|
936
|
+
], FlipIconDownload);
|
|
937
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconDownload, decorators: [{
|
|
938
|
+
type: Component,
|
|
939
|
+
args: [{
|
|
940
|
+
selector: 'flip-icon-download',
|
|
941
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
942
|
+
template: '<ng-content></ng-content>',
|
|
943
|
+
inputs: ['size']
|
|
944
|
+
}]
|
|
945
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
946
|
+
let FlipIconEdit = class FlipIconEdit {
|
|
947
|
+
constructor(c, r, z) {
|
|
948
|
+
this.z = z;
|
|
949
|
+
c.detach();
|
|
950
|
+
this.el = r.nativeElement;
|
|
951
|
+
}
|
|
952
|
+
};
|
|
953
|
+
FlipIconEdit.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconEdit, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
954
|
+
FlipIconEdit.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconEdit, selector: "flip-icon-edit", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
955
|
+
FlipIconEdit = __decorate([
|
|
956
|
+
ProxyCmp({
|
|
957
|
+
defineCustomElementFn: undefined,
|
|
958
|
+
inputs: ['size']
|
|
959
|
+
})
|
|
960
|
+
], FlipIconEdit);
|
|
961
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconEdit, decorators: [{
|
|
962
|
+
type: Component,
|
|
963
|
+
args: [{
|
|
964
|
+
selector: 'flip-icon-edit',
|
|
965
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
966
|
+
template: '<ng-content></ng-content>',
|
|
967
|
+
inputs: ['size']
|
|
968
|
+
}]
|
|
969
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
970
|
+
let FlipIconEmojiMood = class FlipIconEmojiMood {
|
|
971
|
+
constructor(c, r, z) {
|
|
972
|
+
this.z = z;
|
|
973
|
+
c.detach();
|
|
974
|
+
this.el = r.nativeElement;
|
|
975
|
+
}
|
|
976
|
+
};
|
|
977
|
+
FlipIconEmojiMood.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconEmojiMood, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
978
|
+
FlipIconEmojiMood.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconEmojiMood, selector: "flip-icon-emoji-mood", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
979
|
+
FlipIconEmojiMood = __decorate([
|
|
980
|
+
ProxyCmp({
|
|
981
|
+
defineCustomElementFn: undefined,
|
|
982
|
+
inputs: ['size']
|
|
983
|
+
})
|
|
984
|
+
], FlipIconEmojiMood);
|
|
985
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconEmojiMood, decorators: [{
|
|
986
|
+
type: Component,
|
|
987
|
+
args: [{
|
|
988
|
+
selector: 'flip-icon-emoji-mood',
|
|
989
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
990
|
+
template: '<ng-content></ng-content>',
|
|
991
|
+
inputs: ['size']
|
|
992
|
+
}]
|
|
993
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
994
|
+
let FlipIconEmojiSatisfied = class FlipIconEmojiSatisfied {
|
|
995
|
+
constructor(c, r, z) {
|
|
996
|
+
this.z = z;
|
|
997
|
+
c.detach();
|
|
998
|
+
this.el = r.nativeElement;
|
|
999
|
+
}
|
|
1000
|
+
};
|
|
1001
|
+
FlipIconEmojiSatisfied.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconEmojiSatisfied, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1002
|
+
FlipIconEmojiSatisfied.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconEmojiSatisfied, selector: "flip-icon-emoji-satisfied", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1003
|
+
FlipIconEmojiSatisfied = __decorate([
|
|
1004
|
+
ProxyCmp({
|
|
1005
|
+
defineCustomElementFn: undefined,
|
|
1006
|
+
inputs: ['size']
|
|
1007
|
+
})
|
|
1008
|
+
], FlipIconEmojiSatisfied);
|
|
1009
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconEmojiSatisfied, decorators: [{
|
|
1010
|
+
type: Component,
|
|
1011
|
+
args: [{
|
|
1012
|
+
selector: 'flip-icon-emoji-satisfied',
|
|
1013
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1014
|
+
template: '<ng-content></ng-content>',
|
|
1015
|
+
inputs: ['size']
|
|
1016
|
+
}]
|
|
1017
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1018
|
+
let FlipIconError = class FlipIconError {
|
|
1019
|
+
constructor(c, r, z) {
|
|
1020
|
+
this.z = z;
|
|
1021
|
+
c.detach();
|
|
1022
|
+
this.el = r.nativeElement;
|
|
1023
|
+
}
|
|
1024
|
+
};
|
|
1025
|
+
FlipIconError.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconError, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1026
|
+
FlipIconError.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconError, selector: "flip-icon-error", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1027
|
+
FlipIconError = __decorate([
|
|
1028
|
+
ProxyCmp({
|
|
1029
|
+
defineCustomElementFn: undefined,
|
|
1030
|
+
inputs: ['size']
|
|
1031
|
+
})
|
|
1032
|
+
], FlipIconError);
|
|
1033
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconError, decorators: [{
|
|
1034
|
+
type: Component,
|
|
1035
|
+
args: [{
|
|
1036
|
+
selector: 'flip-icon-error',
|
|
1037
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1038
|
+
template: '<ng-content></ng-content>',
|
|
1039
|
+
inputs: ['size']
|
|
1040
|
+
}]
|
|
1041
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1042
|
+
let FlipIconExpandLess = class FlipIconExpandLess {
|
|
1043
|
+
constructor(c, r, z) {
|
|
1044
|
+
this.z = z;
|
|
1045
|
+
c.detach();
|
|
1046
|
+
this.el = r.nativeElement;
|
|
1047
|
+
}
|
|
1048
|
+
};
|
|
1049
|
+
FlipIconExpandLess.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconExpandLess, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1050
|
+
FlipIconExpandLess.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconExpandLess, selector: "flip-icon-expand-less", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1051
|
+
FlipIconExpandLess = __decorate([
|
|
1052
|
+
ProxyCmp({
|
|
1053
|
+
defineCustomElementFn: undefined,
|
|
1054
|
+
inputs: ['size']
|
|
1055
|
+
})
|
|
1056
|
+
], FlipIconExpandLess);
|
|
1057
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconExpandLess, decorators: [{
|
|
1058
|
+
type: Component,
|
|
1059
|
+
args: [{
|
|
1060
|
+
selector: 'flip-icon-expand-less',
|
|
1061
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1062
|
+
template: '<ng-content></ng-content>',
|
|
1063
|
+
inputs: ['size']
|
|
1064
|
+
}]
|
|
1065
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1066
|
+
let FlipIconExpandMore = class FlipIconExpandMore {
|
|
1067
|
+
constructor(c, r, z) {
|
|
1068
|
+
this.z = z;
|
|
1069
|
+
c.detach();
|
|
1070
|
+
this.el = r.nativeElement;
|
|
1071
|
+
}
|
|
1072
|
+
};
|
|
1073
|
+
FlipIconExpandMore.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconExpandMore, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1074
|
+
FlipIconExpandMore.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconExpandMore, selector: "flip-icon-expand-more", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1075
|
+
FlipIconExpandMore = __decorate([
|
|
1076
|
+
ProxyCmp({
|
|
1077
|
+
defineCustomElementFn: undefined,
|
|
1078
|
+
inputs: ['size']
|
|
1079
|
+
})
|
|
1080
|
+
], FlipIconExpandMore);
|
|
1081
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconExpandMore, decorators: [{
|
|
1082
|
+
type: Component,
|
|
1083
|
+
args: [{
|
|
1084
|
+
selector: 'flip-icon-expand-more',
|
|
1085
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1086
|
+
template: '<ng-content></ng-content>',
|
|
1087
|
+
inputs: ['size']
|
|
1088
|
+
}]
|
|
1089
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1090
|
+
let FlipIconFile = class FlipIconFile {
|
|
1091
|
+
constructor(c, r, z) {
|
|
1092
|
+
this.z = z;
|
|
1093
|
+
c.detach();
|
|
1094
|
+
this.el = r.nativeElement;
|
|
1095
|
+
}
|
|
1096
|
+
};
|
|
1097
|
+
FlipIconFile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconFile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1098
|
+
FlipIconFile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconFile, selector: "flip-icon-file", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1099
|
+
FlipIconFile = __decorate([
|
|
1100
|
+
ProxyCmp({
|
|
1101
|
+
defineCustomElementFn: undefined,
|
|
1102
|
+
inputs: ['size']
|
|
1103
|
+
})
|
|
1104
|
+
], FlipIconFile);
|
|
1105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconFile, decorators: [{
|
|
1106
|
+
type: Component,
|
|
1107
|
+
args: [{
|
|
1108
|
+
selector: 'flip-icon-file',
|
|
1109
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1110
|
+
template: '<ng-content></ng-content>',
|
|
1111
|
+
inputs: ['size']
|
|
1112
|
+
}]
|
|
1113
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1114
|
+
let FlipIconFolderShared = class FlipIconFolderShared {
|
|
1115
|
+
constructor(c, r, z) {
|
|
1116
|
+
this.z = z;
|
|
1117
|
+
c.detach();
|
|
1118
|
+
this.el = r.nativeElement;
|
|
1119
|
+
}
|
|
1120
|
+
};
|
|
1121
|
+
FlipIconFolderShared.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconFolderShared, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1122
|
+
FlipIconFolderShared.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconFolderShared, selector: "flip-icon-folder-shared", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1123
|
+
FlipIconFolderShared = __decorate([
|
|
1124
|
+
ProxyCmp({
|
|
1125
|
+
defineCustomElementFn: undefined,
|
|
1126
|
+
inputs: ['size']
|
|
1127
|
+
})
|
|
1128
|
+
], FlipIconFolderShared);
|
|
1129
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconFolderShared, decorators: [{
|
|
1130
|
+
type: Component,
|
|
1131
|
+
args: [{
|
|
1132
|
+
selector: 'flip-icon-folder-shared',
|
|
1133
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1134
|
+
template: '<ng-content></ng-content>',
|
|
1135
|
+
inputs: ['size']
|
|
1136
|
+
}]
|
|
1137
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1138
|
+
let FlipIconGroupAssign = class FlipIconGroupAssign {
|
|
1139
|
+
constructor(c, r, z) {
|
|
1140
|
+
this.z = z;
|
|
1141
|
+
c.detach();
|
|
1142
|
+
this.el = r.nativeElement;
|
|
1143
|
+
}
|
|
1144
|
+
};
|
|
1145
|
+
FlipIconGroupAssign.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconGroupAssign, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1146
|
+
FlipIconGroupAssign.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconGroupAssign, selector: "flip-icon-group-assign", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1147
|
+
FlipIconGroupAssign = __decorate([
|
|
1148
|
+
ProxyCmp({
|
|
1149
|
+
defineCustomElementFn: undefined,
|
|
1150
|
+
inputs: ['size']
|
|
1151
|
+
})
|
|
1152
|
+
], FlipIconGroupAssign);
|
|
1153
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconGroupAssign, decorators: [{
|
|
1154
|
+
type: Component,
|
|
1155
|
+
args: [{
|
|
1156
|
+
selector: 'flip-icon-group-assign',
|
|
1157
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1158
|
+
template: '<ng-content></ng-content>',
|
|
1159
|
+
inputs: ['size']
|
|
1160
|
+
}]
|
|
1161
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1162
|
+
let FlipIconGroups = class FlipIconGroups {
|
|
1163
|
+
constructor(c, r, z) {
|
|
1164
|
+
this.z = z;
|
|
1165
|
+
c.detach();
|
|
1166
|
+
this.el = r.nativeElement;
|
|
1167
|
+
}
|
|
1168
|
+
};
|
|
1169
|
+
FlipIconGroups.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconGroups, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1170
|
+
FlipIconGroups.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconGroups, selector: "flip-icon-groups", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1171
|
+
FlipIconGroups = __decorate([
|
|
1172
|
+
ProxyCmp({
|
|
1173
|
+
defineCustomElementFn: undefined,
|
|
1174
|
+
inputs: ['size']
|
|
1175
|
+
})
|
|
1176
|
+
], FlipIconGroups);
|
|
1177
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconGroups, decorators: [{
|
|
1178
|
+
type: Component,
|
|
1179
|
+
args: [{
|
|
1180
|
+
selector: 'flip-icon-groups',
|
|
1181
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1182
|
+
template: '<ng-content></ng-content>',
|
|
1183
|
+
inputs: ['size']
|
|
1184
|
+
}]
|
|
1185
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1186
|
+
let FlipIconGroupsCustom = class FlipIconGroupsCustom {
|
|
1187
|
+
constructor(c, r, z) {
|
|
1188
|
+
this.z = z;
|
|
1189
|
+
c.detach();
|
|
1190
|
+
this.el = r.nativeElement;
|
|
1191
|
+
}
|
|
1192
|
+
};
|
|
1193
|
+
FlipIconGroupsCustom.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconGroupsCustom, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1194
|
+
FlipIconGroupsCustom.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconGroupsCustom, selector: "flip-icon-groups-custom", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1195
|
+
FlipIconGroupsCustom = __decorate([
|
|
1196
|
+
ProxyCmp({
|
|
1197
|
+
defineCustomElementFn: undefined,
|
|
1198
|
+
inputs: ['size']
|
|
1199
|
+
})
|
|
1200
|
+
], FlipIconGroupsCustom);
|
|
1201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconGroupsCustom, decorators: [{
|
|
1202
|
+
type: Component,
|
|
1203
|
+
args: [{
|
|
1204
|
+
selector: 'flip-icon-groups-custom',
|
|
1205
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1206
|
+
template: '<ng-content></ng-content>',
|
|
1207
|
+
inputs: ['size']
|
|
1208
|
+
}]
|
|
1209
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1210
|
+
let FlipIconImage = class FlipIconImage {
|
|
1211
|
+
constructor(c, r, z) {
|
|
1212
|
+
this.z = z;
|
|
1213
|
+
c.detach();
|
|
1214
|
+
this.el = r.nativeElement;
|
|
1215
|
+
}
|
|
1216
|
+
};
|
|
1217
|
+
FlipIconImage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconImage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1218
|
+
FlipIconImage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconImage, selector: "flip-icon-image", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1219
|
+
FlipIconImage = __decorate([
|
|
1220
|
+
ProxyCmp({
|
|
1221
|
+
defineCustomElementFn: undefined,
|
|
1222
|
+
inputs: ['size']
|
|
1223
|
+
})
|
|
1224
|
+
], FlipIconImage);
|
|
1225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconImage, decorators: [{
|
|
1226
|
+
type: Component,
|
|
1227
|
+
args: [{
|
|
1228
|
+
selector: 'flip-icon-image',
|
|
1229
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1230
|
+
template: '<ng-content></ng-content>',
|
|
1231
|
+
inputs: ['size']
|
|
1232
|
+
}]
|
|
1233
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1234
|
+
let FlipIconInfo = class FlipIconInfo {
|
|
1235
|
+
constructor(c, r, z) {
|
|
1236
|
+
this.z = z;
|
|
1237
|
+
c.detach();
|
|
1238
|
+
this.el = r.nativeElement;
|
|
1239
|
+
}
|
|
1240
|
+
};
|
|
1241
|
+
FlipIconInfo.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconInfo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1242
|
+
FlipIconInfo.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconInfo, selector: "flip-icon-info", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1243
|
+
FlipIconInfo = __decorate([
|
|
1244
|
+
ProxyCmp({
|
|
1245
|
+
defineCustomElementFn: undefined,
|
|
1246
|
+
inputs: ['size']
|
|
1247
|
+
})
|
|
1248
|
+
], FlipIconInfo);
|
|
1249
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconInfo, decorators: [{
|
|
1250
|
+
type: Component,
|
|
1251
|
+
args: [{
|
|
1252
|
+
selector: 'flip-icon-info',
|
|
1253
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1254
|
+
template: '<ng-content></ng-content>',
|
|
1255
|
+
inputs: ['size']
|
|
1256
|
+
}]
|
|
1257
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1258
|
+
let FlipIconInventory = class FlipIconInventory {
|
|
1259
|
+
constructor(c, r, z) {
|
|
1260
|
+
this.z = z;
|
|
1261
|
+
c.detach();
|
|
1262
|
+
this.el = r.nativeElement;
|
|
1263
|
+
}
|
|
1264
|
+
};
|
|
1265
|
+
FlipIconInventory.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconInventory, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1266
|
+
FlipIconInventory.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconInventory, selector: "flip-icon-inventory", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1267
|
+
FlipIconInventory = __decorate([
|
|
1268
|
+
ProxyCmp({
|
|
1269
|
+
defineCustomElementFn: undefined,
|
|
1270
|
+
inputs: ['size']
|
|
1271
|
+
})
|
|
1272
|
+
], FlipIconInventory);
|
|
1273
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconInventory, decorators: [{
|
|
1274
|
+
type: Component,
|
|
1275
|
+
args: [{
|
|
1276
|
+
selector: 'flip-icon-inventory',
|
|
1277
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1278
|
+
template: '<ng-content></ng-content>',
|
|
1279
|
+
inputs: ['size']
|
|
1280
|
+
}]
|
|
1281
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1282
|
+
let FlipIconLike = class FlipIconLike {
|
|
1283
|
+
constructor(c, r, z) {
|
|
1284
|
+
this.z = z;
|
|
1285
|
+
c.detach();
|
|
1286
|
+
this.el = r.nativeElement;
|
|
1287
|
+
}
|
|
1288
|
+
};
|
|
1289
|
+
FlipIconLike.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconLike, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1290
|
+
FlipIconLike.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconLike, selector: "flip-icon-like", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1291
|
+
FlipIconLike = __decorate([
|
|
1292
|
+
ProxyCmp({
|
|
1293
|
+
defineCustomElementFn: undefined,
|
|
1294
|
+
inputs: ['size']
|
|
1295
|
+
})
|
|
1296
|
+
], FlipIconLike);
|
|
1297
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconLike, decorators: [{
|
|
1298
|
+
type: Component,
|
|
1299
|
+
args: [{
|
|
1300
|
+
selector: 'flip-icon-like',
|
|
1301
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1302
|
+
template: '<ng-content></ng-content>',
|
|
1303
|
+
inputs: ['size']
|
|
1304
|
+
}]
|
|
1305
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1306
|
+
let FlipIconLink = class FlipIconLink {
|
|
1307
|
+
constructor(c, r, z) {
|
|
1308
|
+
this.z = z;
|
|
1309
|
+
c.detach();
|
|
1310
|
+
this.el = r.nativeElement;
|
|
1311
|
+
}
|
|
1312
|
+
};
|
|
1313
|
+
FlipIconLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1314
|
+
FlipIconLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconLink, selector: "flip-icon-link", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1315
|
+
FlipIconLink = __decorate([
|
|
1316
|
+
ProxyCmp({
|
|
1317
|
+
defineCustomElementFn: undefined,
|
|
1318
|
+
inputs: ['size']
|
|
1319
|
+
})
|
|
1320
|
+
], FlipIconLink);
|
|
1321
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconLink, decorators: [{
|
|
1322
|
+
type: Component,
|
|
1323
|
+
args: [{
|
|
1324
|
+
selector: 'flip-icon-link',
|
|
1325
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1326
|
+
template: '<ng-content></ng-content>',
|
|
1327
|
+
inputs: ['size']
|
|
1328
|
+
}]
|
|
1329
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1330
|
+
let FlipIconLock = class FlipIconLock {
|
|
1331
|
+
constructor(c, r, z) {
|
|
1332
|
+
this.z = z;
|
|
1333
|
+
c.detach();
|
|
1334
|
+
this.el = r.nativeElement;
|
|
1335
|
+
}
|
|
1336
|
+
};
|
|
1337
|
+
FlipIconLock.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconLock, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1338
|
+
FlipIconLock.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconLock, selector: "flip-icon-lock", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1339
|
+
FlipIconLock = __decorate([
|
|
1340
|
+
ProxyCmp({
|
|
1341
|
+
defineCustomElementFn: undefined,
|
|
1342
|
+
inputs: ['size']
|
|
1343
|
+
})
|
|
1344
|
+
], FlipIconLock);
|
|
1345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconLock, decorators: [{
|
|
1346
|
+
type: Component,
|
|
1347
|
+
args: [{
|
|
1348
|
+
selector: 'flip-icon-lock',
|
|
1349
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1350
|
+
template: '<ng-content></ng-content>',
|
|
1351
|
+
inputs: ['size']
|
|
1352
|
+
}]
|
|
1353
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1354
|
+
let FlipIconLogout = class FlipIconLogout {
|
|
1355
|
+
constructor(c, r, z) {
|
|
1356
|
+
this.z = z;
|
|
1357
|
+
c.detach();
|
|
1358
|
+
this.el = r.nativeElement;
|
|
1359
|
+
}
|
|
1360
|
+
};
|
|
1361
|
+
FlipIconLogout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconLogout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1362
|
+
FlipIconLogout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconLogout, selector: "flip-icon-logout", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1363
|
+
FlipIconLogout = __decorate([
|
|
1364
|
+
ProxyCmp({
|
|
1365
|
+
defineCustomElementFn: undefined,
|
|
1366
|
+
inputs: ['size']
|
|
1367
|
+
})
|
|
1368
|
+
], FlipIconLogout);
|
|
1369
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconLogout, decorators: [{
|
|
1370
|
+
type: Component,
|
|
1371
|
+
args: [{
|
|
1372
|
+
selector: 'flip-icon-logout',
|
|
1373
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1374
|
+
template: '<ng-content></ng-content>',
|
|
1375
|
+
inputs: ['size']
|
|
1376
|
+
}]
|
|
1377
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1378
|
+
let FlipIconMail = class FlipIconMail {
|
|
1379
|
+
constructor(c, r, z) {
|
|
1380
|
+
this.z = z;
|
|
1381
|
+
c.detach();
|
|
1382
|
+
this.el = r.nativeElement;
|
|
1383
|
+
}
|
|
1384
|
+
};
|
|
1385
|
+
FlipIconMail.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconMail, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1386
|
+
FlipIconMail.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconMail, selector: "flip-icon-mail", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1387
|
+
FlipIconMail = __decorate([
|
|
1388
|
+
ProxyCmp({
|
|
1389
|
+
defineCustomElementFn: undefined,
|
|
1390
|
+
inputs: ['size']
|
|
1391
|
+
})
|
|
1392
|
+
], FlipIconMail);
|
|
1393
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconMail, decorators: [{
|
|
1394
|
+
type: Component,
|
|
1395
|
+
args: [{
|
|
1396
|
+
selector: 'flip-icon-mail',
|
|
1397
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1398
|
+
template: '<ng-content></ng-content>',
|
|
1399
|
+
inputs: ['size']
|
|
1400
|
+
}]
|
|
1401
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1402
|
+
let FlipIconManageAccounts = class FlipIconManageAccounts {
|
|
1403
|
+
constructor(c, r, z) {
|
|
1404
|
+
this.z = z;
|
|
1405
|
+
c.detach();
|
|
1406
|
+
this.el = r.nativeElement;
|
|
1407
|
+
}
|
|
1408
|
+
};
|
|
1409
|
+
FlipIconManageAccounts.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconManageAccounts, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1410
|
+
FlipIconManageAccounts.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconManageAccounts, selector: "flip-icon-manage-accounts", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1411
|
+
FlipIconManageAccounts = __decorate([
|
|
1412
|
+
ProxyCmp({
|
|
1413
|
+
defineCustomElementFn: undefined,
|
|
1414
|
+
inputs: ['size']
|
|
1415
|
+
})
|
|
1416
|
+
], FlipIconManageAccounts);
|
|
1417
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconManageAccounts, decorators: [{
|
|
1418
|
+
type: Component,
|
|
1419
|
+
args: [{
|
|
1420
|
+
selector: 'flip-icon-manage-accounts',
|
|
1421
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1422
|
+
template: '<ng-content></ng-content>',
|
|
1423
|
+
inputs: ['size']
|
|
1424
|
+
}]
|
|
1425
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1426
|
+
let FlipIconMention = class FlipIconMention {
|
|
1427
|
+
constructor(c, r, z) {
|
|
1428
|
+
this.z = z;
|
|
1429
|
+
c.detach();
|
|
1430
|
+
this.el = r.nativeElement;
|
|
1431
|
+
}
|
|
1432
|
+
};
|
|
1433
|
+
FlipIconMention.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconMention, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1434
|
+
FlipIconMention.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconMention, selector: "flip-icon-mention", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1435
|
+
FlipIconMention = __decorate([
|
|
1436
|
+
ProxyCmp({
|
|
1437
|
+
defineCustomElementFn: undefined,
|
|
1438
|
+
inputs: ['size']
|
|
1439
|
+
})
|
|
1440
|
+
], FlipIconMention);
|
|
1441
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconMention, decorators: [{
|
|
1442
|
+
type: Component,
|
|
1443
|
+
args: [{
|
|
1444
|
+
selector: 'flip-icon-mention',
|
|
1445
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1446
|
+
template: '<ng-content></ng-content>',
|
|
1447
|
+
inputs: ['size']
|
|
1448
|
+
}]
|
|
1449
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1450
|
+
let FlipIconMessage = class FlipIconMessage {
|
|
1451
|
+
constructor(c, r, z) {
|
|
1452
|
+
this.z = z;
|
|
1453
|
+
c.detach();
|
|
1454
|
+
this.el = r.nativeElement;
|
|
1455
|
+
}
|
|
1456
|
+
};
|
|
1457
|
+
FlipIconMessage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1458
|
+
FlipIconMessage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconMessage, selector: "flip-icon-message", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1459
|
+
FlipIconMessage = __decorate([
|
|
1460
|
+
ProxyCmp({
|
|
1461
|
+
defineCustomElementFn: undefined,
|
|
1462
|
+
inputs: ['size']
|
|
1463
|
+
})
|
|
1464
|
+
], FlipIconMessage);
|
|
1465
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconMessage, decorators: [{
|
|
1466
|
+
type: Component,
|
|
1467
|
+
args: [{
|
|
1468
|
+
selector: 'flip-icon-message',
|
|
1469
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1470
|
+
template: '<ng-content></ng-content>',
|
|
1471
|
+
inputs: ['size']
|
|
1472
|
+
}]
|
|
1473
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1474
|
+
let FlipIconMoreHorizontal = class FlipIconMoreHorizontal {
|
|
1475
|
+
constructor(c, r, z) {
|
|
1476
|
+
this.z = z;
|
|
1477
|
+
c.detach();
|
|
1478
|
+
this.el = r.nativeElement;
|
|
1479
|
+
}
|
|
1480
|
+
};
|
|
1481
|
+
FlipIconMoreHorizontal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconMoreHorizontal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1482
|
+
FlipIconMoreHorizontal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconMoreHorizontal, selector: "flip-icon-more-horizontal", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1483
|
+
FlipIconMoreHorizontal = __decorate([
|
|
1484
|
+
ProxyCmp({
|
|
1485
|
+
defineCustomElementFn: undefined,
|
|
1486
|
+
inputs: ['size']
|
|
1487
|
+
})
|
|
1488
|
+
], FlipIconMoreHorizontal);
|
|
1489
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconMoreHorizontal, decorators: [{
|
|
1490
|
+
type: Component,
|
|
1491
|
+
args: [{
|
|
1492
|
+
selector: 'flip-icon-more-horizontal',
|
|
1493
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1494
|
+
template: '<ng-content></ng-content>',
|
|
1495
|
+
inputs: ['size']
|
|
1496
|
+
}]
|
|
1497
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1498
|
+
let FlipIconMoreVertikal = class FlipIconMoreVertikal {
|
|
1499
|
+
constructor(c, r, z) {
|
|
1500
|
+
this.z = z;
|
|
1501
|
+
c.detach();
|
|
1502
|
+
this.el = r.nativeElement;
|
|
1503
|
+
}
|
|
1504
|
+
};
|
|
1505
|
+
FlipIconMoreVertikal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconMoreVertikal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1506
|
+
FlipIconMoreVertikal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconMoreVertikal, selector: "flip-icon-more-vertikal", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1507
|
+
FlipIconMoreVertikal = __decorate([
|
|
1508
|
+
ProxyCmp({
|
|
1509
|
+
defineCustomElementFn: undefined,
|
|
1510
|
+
inputs: ['size']
|
|
1511
|
+
})
|
|
1512
|
+
], FlipIconMoreVertikal);
|
|
1513
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconMoreVertikal, decorators: [{
|
|
1514
|
+
type: Component,
|
|
1515
|
+
args: [{
|
|
1516
|
+
selector: 'flip-icon-more-vertikal',
|
|
1517
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1518
|
+
template: '<ng-content></ng-content>',
|
|
1519
|
+
inputs: ['size']
|
|
1520
|
+
}]
|
|
1521
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1522
|
+
let FlipIconNotifications = class FlipIconNotifications {
|
|
1523
|
+
constructor(c, r, z) {
|
|
1524
|
+
this.z = z;
|
|
1525
|
+
c.detach();
|
|
1526
|
+
this.el = r.nativeElement;
|
|
1527
|
+
}
|
|
1528
|
+
};
|
|
1529
|
+
FlipIconNotifications.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconNotifications, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1530
|
+
FlipIconNotifications.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconNotifications, selector: "flip-icon-notifications", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1531
|
+
FlipIconNotifications = __decorate([
|
|
1532
|
+
ProxyCmp({
|
|
1533
|
+
defineCustomElementFn: undefined,
|
|
1534
|
+
inputs: ['size']
|
|
1535
|
+
})
|
|
1536
|
+
], FlipIconNotifications);
|
|
1537
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconNotifications, decorators: [{
|
|
1538
|
+
type: Component,
|
|
1539
|
+
args: [{
|
|
1540
|
+
selector: 'flip-icon-notifications',
|
|
1541
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1542
|
+
template: '<ng-content></ng-content>',
|
|
1543
|
+
inputs: ['size']
|
|
1544
|
+
}]
|
|
1545
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1546
|
+
let FlipIconNotificationsActive = class FlipIconNotificationsActive {
|
|
1547
|
+
constructor(c, r, z) {
|
|
1548
|
+
this.z = z;
|
|
1549
|
+
c.detach();
|
|
1550
|
+
this.el = r.nativeElement;
|
|
1551
|
+
}
|
|
1552
|
+
};
|
|
1553
|
+
FlipIconNotificationsActive.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconNotificationsActive, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1554
|
+
FlipIconNotificationsActive.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconNotificationsActive, selector: "flip-icon-notifications-active", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1555
|
+
FlipIconNotificationsActive = __decorate([
|
|
1556
|
+
ProxyCmp({
|
|
1557
|
+
defineCustomElementFn: undefined,
|
|
1558
|
+
inputs: ['size']
|
|
1559
|
+
})
|
|
1560
|
+
], FlipIconNotificationsActive);
|
|
1561
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconNotificationsActive, decorators: [{
|
|
1562
|
+
type: Component,
|
|
1563
|
+
args: [{
|
|
1564
|
+
selector: 'flip-icon-notifications-active',
|
|
1565
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1566
|
+
template: '<ng-content></ng-content>',
|
|
1567
|
+
inputs: ['size']
|
|
1568
|
+
}]
|
|
1569
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1570
|
+
let FlipIconNotificationsOff = class FlipIconNotificationsOff {
|
|
1571
|
+
constructor(c, r, z) {
|
|
1572
|
+
this.z = z;
|
|
1573
|
+
c.detach();
|
|
1574
|
+
this.el = r.nativeElement;
|
|
1575
|
+
}
|
|
1576
|
+
};
|
|
1577
|
+
FlipIconNotificationsOff.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconNotificationsOff, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1578
|
+
FlipIconNotificationsOff.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconNotificationsOff, selector: "flip-icon-notifications-off", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1579
|
+
FlipIconNotificationsOff = __decorate([
|
|
1580
|
+
ProxyCmp({
|
|
1581
|
+
defineCustomElementFn: undefined,
|
|
1582
|
+
inputs: ['size']
|
|
1583
|
+
})
|
|
1584
|
+
], FlipIconNotificationsOff);
|
|
1585
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconNotificationsOff, decorators: [{
|
|
1586
|
+
type: Component,
|
|
1587
|
+
args: [{
|
|
1588
|
+
selector: 'flip-icon-notifications-off',
|
|
1589
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1590
|
+
template: '<ng-content></ng-content>',
|
|
1591
|
+
inputs: ['size']
|
|
1592
|
+
}]
|
|
1593
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1594
|
+
let FlipIconPeopleAlt = class FlipIconPeopleAlt {
|
|
1595
|
+
constructor(c, r, z) {
|
|
1596
|
+
this.z = z;
|
|
1597
|
+
c.detach();
|
|
1598
|
+
this.el = r.nativeElement;
|
|
1599
|
+
}
|
|
1600
|
+
};
|
|
1601
|
+
FlipIconPeopleAlt.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconPeopleAlt, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1602
|
+
FlipIconPeopleAlt.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconPeopleAlt, selector: "flip-icon-people-alt", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1603
|
+
FlipIconPeopleAlt = __decorate([
|
|
1604
|
+
ProxyCmp({
|
|
1605
|
+
defineCustomElementFn: undefined,
|
|
1606
|
+
inputs: ['size']
|
|
1607
|
+
})
|
|
1608
|
+
], FlipIconPeopleAlt);
|
|
1609
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconPeopleAlt, decorators: [{
|
|
1610
|
+
type: Component,
|
|
1611
|
+
args: [{
|
|
1612
|
+
selector: 'flip-icon-people-alt',
|
|
1613
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1614
|
+
template: '<ng-content></ng-content>',
|
|
1615
|
+
inputs: ['size']
|
|
1616
|
+
}]
|
|
1617
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1618
|
+
let FlipIconPerson = class FlipIconPerson {
|
|
1619
|
+
constructor(c, r, z) {
|
|
1620
|
+
this.z = z;
|
|
1621
|
+
c.detach();
|
|
1622
|
+
this.el = r.nativeElement;
|
|
1623
|
+
}
|
|
1624
|
+
};
|
|
1625
|
+
FlipIconPerson.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconPerson, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1626
|
+
FlipIconPerson.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconPerson, selector: "flip-icon-person", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1627
|
+
FlipIconPerson = __decorate([
|
|
1628
|
+
ProxyCmp({
|
|
1629
|
+
defineCustomElementFn: undefined,
|
|
1630
|
+
inputs: ['size']
|
|
1631
|
+
})
|
|
1632
|
+
], FlipIconPerson);
|
|
1633
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconPerson, decorators: [{
|
|
1634
|
+
type: Component,
|
|
1635
|
+
args: [{
|
|
1636
|
+
selector: 'flip-icon-person',
|
|
1637
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1638
|
+
template: '<ng-content></ng-content>',
|
|
1639
|
+
inputs: ['size']
|
|
1640
|
+
}]
|
|
1641
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1642
|
+
let FlipIconPersonOff = class FlipIconPersonOff {
|
|
1643
|
+
constructor(c, r, z) {
|
|
1644
|
+
this.z = z;
|
|
1645
|
+
c.detach();
|
|
1646
|
+
this.el = r.nativeElement;
|
|
1647
|
+
}
|
|
1648
|
+
};
|
|
1649
|
+
FlipIconPersonOff.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconPersonOff, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1650
|
+
FlipIconPersonOff.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconPersonOff, selector: "flip-icon-person-off", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1651
|
+
FlipIconPersonOff = __decorate([
|
|
1652
|
+
ProxyCmp({
|
|
1653
|
+
defineCustomElementFn: undefined,
|
|
1654
|
+
inputs: ['size']
|
|
1655
|
+
})
|
|
1656
|
+
], FlipIconPersonOff);
|
|
1657
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconPersonOff, decorators: [{
|
|
1658
|
+
type: Component,
|
|
1659
|
+
args: [{
|
|
1660
|
+
selector: 'flip-icon-person-off',
|
|
1661
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1662
|
+
template: '<ng-content></ng-content>',
|
|
1663
|
+
inputs: ['size']
|
|
1664
|
+
}]
|
|
1665
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1666
|
+
let FlipIconPhone = class FlipIconPhone {
|
|
1667
|
+
constructor(c, r, z) {
|
|
1668
|
+
this.z = z;
|
|
1669
|
+
c.detach();
|
|
1670
|
+
this.el = r.nativeElement;
|
|
1671
|
+
}
|
|
1672
|
+
};
|
|
1673
|
+
FlipIconPhone.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconPhone, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1674
|
+
FlipIconPhone.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconPhone, selector: "flip-icon-phone", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1675
|
+
FlipIconPhone = __decorate([
|
|
1676
|
+
ProxyCmp({
|
|
1677
|
+
defineCustomElementFn: undefined,
|
|
1678
|
+
inputs: ['size']
|
|
1679
|
+
})
|
|
1680
|
+
], FlipIconPhone);
|
|
1681
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconPhone, decorators: [{
|
|
1682
|
+
type: Component,
|
|
1683
|
+
args: [{
|
|
1684
|
+
selector: 'flip-icon-phone',
|
|
1685
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1686
|
+
template: '<ng-content></ng-content>',
|
|
1687
|
+
inputs: ['size']
|
|
1688
|
+
}]
|
|
1689
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1690
|
+
let FlipIconPoll = class FlipIconPoll {
|
|
1691
|
+
constructor(c, r, z) {
|
|
1692
|
+
this.z = z;
|
|
1693
|
+
c.detach();
|
|
1694
|
+
this.el = r.nativeElement;
|
|
1695
|
+
}
|
|
1696
|
+
};
|
|
1697
|
+
FlipIconPoll.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconPoll, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1698
|
+
FlipIconPoll.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconPoll, selector: "flip-icon-poll", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1699
|
+
FlipIconPoll = __decorate([
|
|
1700
|
+
ProxyCmp({
|
|
1701
|
+
defineCustomElementFn: undefined,
|
|
1702
|
+
inputs: ['size']
|
|
1703
|
+
})
|
|
1704
|
+
], FlipIconPoll);
|
|
1705
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconPoll, decorators: [{
|
|
1706
|
+
type: Component,
|
|
1707
|
+
args: [{
|
|
1708
|
+
selector: 'flip-icon-poll',
|
|
1709
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1710
|
+
template: '<ng-content></ng-content>',
|
|
1711
|
+
inputs: ['size']
|
|
1712
|
+
}]
|
|
1713
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1714
|
+
let FlipIconRecieved = class FlipIconRecieved {
|
|
1715
|
+
constructor(c, r, z) {
|
|
1716
|
+
this.z = z;
|
|
1717
|
+
c.detach();
|
|
1718
|
+
this.el = r.nativeElement;
|
|
1719
|
+
}
|
|
1720
|
+
};
|
|
1721
|
+
FlipIconRecieved.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconRecieved, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1722
|
+
FlipIconRecieved.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconRecieved, selector: "flip-icon-recieved", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1723
|
+
FlipIconRecieved = __decorate([
|
|
1724
|
+
ProxyCmp({
|
|
1725
|
+
defineCustomElementFn: undefined,
|
|
1726
|
+
inputs: ['size']
|
|
1727
|
+
})
|
|
1728
|
+
], FlipIconRecieved);
|
|
1729
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconRecieved, decorators: [{
|
|
1730
|
+
type: Component,
|
|
1731
|
+
args: [{
|
|
1732
|
+
selector: 'flip-icon-recieved',
|
|
1733
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1734
|
+
template: '<ng-content></ng-content>',
|
|
1735
|
+
inputs: ['size']
|
|
1736
|
+
}]
|
|
1737
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1738
|
+
let FlipIconSearch = class FlipIconSearch {
|
|
1739
|
+
constructor(c, r, z) {
|
|
1740
|
+
this.z = z;
|
|
1741
|
+
c.detach();
|
|
1742
|
+
this.el = r.nativeElement;
|
|
1743
|
+
}
|
|
1744
|
+
};
|
|
1745
|
+
FlipIconSearch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1746
|
+
FlipIconSearch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconSearch, selector: "flip-icon-search", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1747
|
+
FlipIconSearch = __decorate([
|
|
1748
|
+
ProxyCmp({
|
|
1749
|
+
defineCustomElementFn: undefined,
|
|
1750
|
+
inputs: ['size']
|
|
1751
|
+
})
|
|
1752
|
+
], FlipIconSearch);
|
|
1753
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconSearch, decorators: [{
|
|
1754
|
+
type: Component,
|
|
1755
|
+
args: [{
|
|
1756
|
+
selector: 'flip-icon-search',
|
|
1757
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1758
|
+
template: '<ng-content></ng-content>',
|
|
1759
|
+
inputs: ['size']
|
|
1760
|
+
}]
|
|
1761
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1762
|
+
let FlipIconSearchStrong = class FlipIconSearchStrong {
|
|
1763
|
+
constructor(c, r, z) {
|
|
1764
|
+
this.z = z;
|
|
1765
|
+
c.detach();
|
|
1766
|
+
this.el = r.nativeElement;
|
|
1767
|
+
}
|
|
1768
|
+
};
|
|
1769
|
+
FlipIconSearchStrong.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconSearchStrong, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1770
|
+
FlipIconSearchStrong.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconSearchStrong, selector: "flip-icon-search-strong", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1771
|
+
FlipIconSearchStrong = __decorate([
|
|
1772
|
+
ProxyCmp({
|
|
1773
|
+
defineCustomElementFn: undefined,
|
|
1774
|
+
inputs: ['size']
|
|
1775
|
+
})
|
|
1776
|
+
], FlipIconSearchStrong);
|
|
1777
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconSearchStrong, decorators: [{
|
|
1778
|
+
type: Component,
|
|
1779
|
+
args: [{
|
|
1780
|
+
selector: 'flip-icon-search-strong',
|
|
1781
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1782
|
+
template: '<ng-content></ng-content>',
|
|
1783
|
+
inputs: ['size']
|
|
1784
|
+
}]
|
|
1785
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1786
|
+
let FlipIconSend = class FlipIconSend {
|
|
1787
|
+
constructor(c, r, z) {
|
|
1788
|
+
this.z = z;
|
|
1789
|
+
c.detach();
|
|
1790
|
+
this.el = r.nativeElement;
|
|
1791
|
+
}
|
|
1792
|
+
};
|
|
1793
|
+
FlipIconSend.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconSend, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1794
|
+
FlipIconSend.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconSend, selector: "flip-icon-send", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1795
|
+
FlipIconSend = __decorate([
|
|
1796
|
+
ProxyCmp({
|
|
1797
|
+
defineCustomElementFn: undefined,
|
|
1798
|
+
inputs: ['size']
|
|
1799
|
+
})
|
|
1800
|
+
], FlipIconSend);
|
|
1801
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconSend, decorators: [{
|
|
1802
|
+
type: Component,
|
|
1803
|
+
args: [{
|
|
1804
|
+
selector: 'flip-icon-send',
|
|
1805
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1806
|
+
template: '<ng-content></ng-content>',
|
|
1807
|
+
inputs: ['size']
|
|
1808
|
+
}]
|
|
1809
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1810
|
+
let FlipIconSettings = class FlipIconSettings {
|
|
1811
|
+
constructor(c, r, z) {
|
|
1812
|
+
this.z = z;
|
|
1813
|
+
c.detach();
|
|
1814
|
+
this.el = r.nativeElement;
|
|
1815
|
+
}
|
|
1816
|
+
};
|
|
1817
|
+
FlipIconSettings.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconSettings, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1818
|
+
FlipIconSettings.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconSettings, selector: "flip-icon-settings", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1819
|
+
FlipIconSettings = __decorate([
|
|
1820
|
+
ProxyCmp({
|
|
1821
|
+
defineCustomElementFn: undefined,
|
|
1822
|
+
inputs: ['size']
|
|
1823
|
+
})
|
|
1824
|
+
], FlipIconSettings);
|
|
1825
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconSettings, decorators: [{
|
|
1826
|
+
type: Component,
|
|
1827
|
+
args: [{
|
|
1828
|
+
selector: 'flip-icon-settings',
|
|
1829
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1830
|
+
template: '<ng-content></ng-content>',
|
|
1831
|
+
inputs: ['size']
|
|
1832
|
+
}]
|
|
1833
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1834
|
+
let FlipIconTimeFilled = class FlipIconTimeFilled {
|
|
1835
|
+
constructor(c, r, z) {
|
|
1836
|
+
this.z = z;
|
|
1837
|
+
c.detach();
|
|
1838
|
+
this.el = r.nativeElement;
|
|
1839
|
+
}
|
|
1840
|
+
};
|
|
1841
|
+
FlipIconTimeFilled.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconTimeFilled, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1842
|
+
FlipIconTimeFilled.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconTimeFilled, selector: "flip-icon-time-filled", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1843
|
+
FlipIconTimeFilled = __decorate([
|
|
1844
|
+
ProxyCmp({
|
|
1845
|
+
defineCustomElementFn: undefined,
|
|
1846
|
+
inputs: ['size']
|
|
1847
|
+
})
|
|
1848
|
+
], FlipIconTimeFilled);
|
|
1849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconTimeFilled, decorators: [{
|
|
1850
|
+
type: Component,
|
|
1851
|
+
args: [{
|
|
1852
|
+
selector: 'flip-icon-time-filled',
|
|
1853
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1854
|
+
template: '<ng-content></ng-content>',
|
|
1855
|
+
inputs: ['size']
|
|
1856
|
+
}]
|
|
1857
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1858
|
+
let FlipIconTimeOutlined = class FlipIconTimeOutlined {
|
|
1859
|
+
constructor(c, r, z) {
|
|
1860
|
+
this.z = z;
|
|
1861
|
+
c.detach();
|
|
1862
|
+
this.el = r.nativeElement;
|
|
1863
|
+
}
|
|
1864
|
+
};
|
|
1865
|
+
FlipIconTimeOutlined.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconTimeOutlined, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1866
|
+
FlipIconTimeOutlined.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconTimeOutlined, selector: "flip-icon-time-outlined", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1867
|
+
FlipIconTimeOutlined = __decorate([
|
|
1868
|
+
ProxyCmp({
|
|
1869
|
+
defineCustomElementFn: undefined,
|
|
1870
|
+
inputs: ['size']
|
|
1871
|
+
})
|
|
1872
|
+
], FlipIconTimeOutlined);
|
|
1873
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconTimeOutlined, decorators: [{
|
|
1874
|
+
type: Component,
|
|
1875
|
+
args: [{
|
|
1876
|
+
selector: 'flip-icon-time-outlined',
|
|
1877
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1878
|
+
template: '<ng-content></ng-content>',
|
|
1879
|
+
inputs: ['size']
|
|
1880
|
+
}]
|
|
1881
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1882
|
+
let FlipIconToday = class FlipIconToday {
|
|
1883
|
+
constructor(c, r, z) {
|
|
1884
|
+
this.z = z;
|
|
1885
|
+
c.detach();
|
|
1886
|
+
this.el = r.nativeElement;
|
|
1887
|
+
}
|
|
1888
|
+
};
|
|
1889
|
+
FlipIconToday.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconToday, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1890
|
+
FlipIconToday.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconToday, selector: "flip-icon-today", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1891
|
+
FlipIconToday = __decorate([
|
|
1892
|
+
ProxyCmp({
|
|
1893
|
+
defineCustomElementFn: undefined,
|
|
1894
|
+
inputs: ['size']
|
|
1895
|
+
})
|
|
1896
|
+
], FlipIconToday);
|
|
1897
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconToday, decorators: [{
|
|
1898
|
+
type: Component,
|
|
1899
|
+
args: [{
|
|
1900
|
+
selector: 'flip-icon-today',
|
|
1901
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1902
|
+
template: '<ng-content></ng-content>',
|
|
1903
|
+
inputs: ['size']
|
|
1904
|
+
}]
|
|
1905
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1906
|
+
let FlipIconUserAssign = class FlipIconUserAssign {
|
|
1907
|
+
constructor(c, r, z) {
|
|
1908
|
+
this.z = z;
|
|
1909
|
+
c.detach();
|
|
1910
|
+
this.el = r.nativeElement;
|
|
1911
|
+
}
|
|
1912
|
+
};
|
|
1913
|
+
FlipIconUserAssign.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconUserAssign, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1914
|
+
FlipIconUserAssign.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconUserAssign, selector: "flip-icon-user-assign", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1915
|
+
FlipIconUserAssign = __decorate([
|
|
1916
|
+
ProxyCmp({
|
|
1917
|
+
defineCustomElementFn: undefined,
|
|
1918
|
+
inputs: ['size']
|
|
1919
|
+
})
|
|
1920
|
+
], FlipIconUserAssign);
|
|
1921
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconUserAssign, decorators: [{
|
|
1922
|
+
type: Component,
|
|
1923
|
+
args: [{
|
|
1924
|
+
selector: 'flip-icon-user-assign',
|
|
1925
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1926
|
+
template: '<ng-content></ng-content>',
|
|
1927
|
+
inputs: ['size']
|
|
1928
|
+
}]
|
|
1929
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1930
|
+
let FlipIconVideoCamera = class FlipIconVideoCamera {
|
|
1931
|
+
constructor(c, r, z) {
|
|
1932
|
+
this.z = z;
|
|
1933
|
+
c.detach();
|
|
1934
|
+
this.el = r.nativeElement;
|
|
1935
|
+
}
|
|
1936
|
+
};
|
|
1937
|
+
FlipIconVideoCamera.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconVideoCamera, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1938
|
+
FlipIconVideoCamera.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconVideoCamera, selector: "flip-icon-video-camera", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1939
|
+
FlipIconVideoCamera = __decorate([
|
|
1940
|
+
ProxyCmp({
|
|
1941
|
+
defineCustomElementFn: undefined,
|
|
1942
|
+
inputs: ['size']
|
|
1943
|
+
})
|
|
1944
|
+
], FlipIconVideoCamera);
|
|
1945
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconVideoCamera, decorators: [{
|
|
1946
|
+
type: Component,
|
|
1947
|
+
args: [{
|
|
1948
|
+
selector: 'flip-icon-video-camera',
|
|
1949
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1950
|
+
template: '<ng-content></ng-content>',
|
|
1951
|
+
inputs: ['size']
|
|
1952
|
+
}]
|
|
1953
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1954
|
+
let FlipIconVisibility = class FlipIconVisibility {
|
|
1955
|
+
constructor(c, r, z) {
|
|
1956
|
+
this.z = z;
|
|
1957
|
+
c.detach();
|
|
1958
|
+
this.el = r.nativeElement;
|
|
1959
|
+
}
|
|
1960
|
+
};
|
|
1961
|
+
FlipIconVisibility.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconVisibility, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1962
|
+
FlipIconVisibility.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconVisibility, selector: "flip-icon-visibility", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1963
|
+
FlipIconVisibility = __decorate([
|
|
1964
|
+
ProxyCmp({
|
|
1965
|
+
defineCustomElementFn: undefined,
|
|
1966
|
+
inputs: ['size']
|
|
1967
|
+
})
|
|
1968
|
+
], FlipIconVisibility);
|
|
1969
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconVisibility, decorators: [{
|
|
1970
|
+
type: Component,
|
|
1971
|
+
args: [{
|
|
1972
|
+
selector: 'flip-icon-visibility',
|
|
1973
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1974
|
+
template: '<ng-content></ng-content>',
|
|
1975
|
+
inputs: ['size']
|
|
1976
|
+
}]
|
|
1977
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1978
|
+
let FlipIconVisibilityOff = class FlipIconVisibilityOff {
|
|
1979
|
+
constructor(c, r, z) {
|
|
1980
|
+
this.z = z;
|
|
1981
|
+
c.detach();
|
|
1982
|
+
this.el = r.nativeElement;
|
|
1983
|
+
}
|
|
1984
|
+
};
|
|
1985
|
+
FlipIconVisibilityOff.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconVisibilityOff, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1986
|
+
FlipIconVisibilityOff.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconVisibilityOff, selector: "flip-icon-visibility-off", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1987
|
+
FlipIconVisibilityOff = __decorate([
|
|
1988
|
+
ProxyCmp({
|
|
1989
|
+
defineCustomElementFn: undefined,
|
|
1990
|
+
inputs: ['size']
|
|
1991
|
+
})
|
|
1992
|
+
], FlipIconVisibilityOff);
|
|
1993
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconVisibilityOff, decorators: [{
|
|
1994
|
+
type: Component,
|
|
1995
|
+
args: [{
|
|
1996
|
+
selector: 'flip-icon-visibility-off',
|
|
1997
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1998
|
+
template: '<ng-content></ng-content>',
|
|
1999
|
+
inputs: ['size']
|
|
2000
|
+
}]
|
|
2001
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2002
|
+
let FlipIconWarning = class FlipIconWarning {
|
|
2003
|
+
constructor(c, r, z) {
|
|
2004
|
+
this.z = z;
|
|
2005
|
+
c.detach();
|
|
2006
|
+
this.el = r.nativeElement;
|
|
2007
|
+
}
|
|
2008
|
+
};
|
|
2009
|
+
FlipIconWarning.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconWarning, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2010
|
+
FlipIconWarning.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipIconWarning, selector: "flip-icon-warning", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2011
|
+
FlipIconWarning = __decorate([
|
|
2012
|
+
ProxyCmp({
|
|
2013
|
+
defineCustomElementFn: undefined,
|
|
2014
|
+
inputs: ['size']
|
|
2015
|
+
})
|
|
2016
|
+
], FlipIconWarning);
|
|
2017
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipIconWarning, decorators: [{
|
|
2018
|
+
type: Component,
|
|
2019
|
+
args: [{
|
|
2020
|
+
selector: 'flip-icon-warning',
|
|
2021
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2022
|
+
template: '<ng-content></ng-content>',
|
|
2023
|
+
inputs: ['size']
|
|
2024
|
+
}]
|
|
2025
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2026
|
+
let FlipInlineError = class FlipInlineError {
|
|
2027
|
+
constructor(c, r, z) {
|
|
2028
|
+
this.z = z;
|
|
2029
|
+
c.detach();
|
|
2030
|
+
this.el = r.nativeElement;
|
|
2031
|
+
}
|
|
2032
|
+
};
|
|
2033
|
+
FlipInlineError.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipInlineError, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2034
|
+
FlipInlineError.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipInlineError, selector: "flip-inline-error", inputs: { message: "message", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2035
|
+
FlipInlineError = __decorate([
|
|
2036
|
+
ProxyCmp({
|
|
2037
|
+
defineCustomElementFn: undefined,
|
|
2038
|
+
inputs: ['message', 'size']
|
|
2039
|
+
})
|
|
2040
|
+
], FlipInlineError);
|
|
2041
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipInlineError, decorators: [{
|
|
2042
|
+
type: Component,
|
|
2043
|
+
args: [{
|
|
2044
|
+
selector: 'flip-inline-error',
|
|
2045
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2046
|
+
template: '<ng-content></ng-content>',
|
|
2047
|
+
inputs: ['message', 'size']
|
|
2048
|
+
}]
|
|
2049
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2050
|
+
let FlipLink = class FlipLink {
|
|
2051
|
+
constructor(c, r, z) {
|
|
2052
|
+
this.z = z;
|
|
2053
|
+
c.detach();
|
|
2054
|
+
this.el = r.nativeElement;
|
|
2055
|
+
}
|
|
2056
|
+
};
|
|
2057
|
+
FlipLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2058
|
+
FlipLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipLink, selector: "flip-link", inputs: { href: "href", label: "label", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2059
|
+
FlipLink = __decorate([
|
|
2060
|
+
ProxyCmp({
|
|
2061
|
+
defineCustomElementFn: undefined,
|
|
2062
|
+
inputs: ['href', 'label', 'target']
|
|
2063
|
+
})
|
|
2064
|
+
], FlipLink);
|
|
2065
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipLink, decorators: [{
|
|
2066
|
+
type: Component,
|
|
2067
|
+
args: [{
|
|
2068
|
+
selector: 'flip-link',
|
|
2069
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2070
|
+
template: '<ng-content></ng-content>',
|
|
2071
|
+
inputs: ['href', 'label', 'target']
|
|
2072
|
+
}]
|
|
2073
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2074
|
+
let FlipPopover = class FlipPopover {
|
|
2075
|
+
constructor(c, r, z) {
|
|
2076
|
+
this.z = z;
|
|
2077
|
+
c.detach();
|
|
2078
|
+
this.el = r.nativeElement;
|
|
2079
|
+
}
|
|
2080
|
+
};
|
|
2081
|
+
FlipPopover.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2082
|
+
FlipPopover.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipPopover, selector: "flip-popover", inputs: { label: "label", popoverId: "popoverId", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2083
|
+
FlipPopover = __decorate([
|
|
2084
|
+
ProxyCmp({
|
|
2085
|
+
defineCustomElementFn: undefined,
|
|
2086
|
+
inputs: ['label', 'popoverId', 'trigger']
|
|
2087
|
+
})
|
|
2088
|
+
], FlipPopover);
|
|
2089
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipPopover, decorators: [{
|
|
2090
|
+
type: Component,
|
|
2091
|
+
args: [{
|
|
2092
|
+
selector: 'flip-popover',
|
|
2093
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2094
|
+
template: '<ng-content></ng-content>',
|
|
2095
|
+
inputs: ['label', 'popoverId', 'trigger']
|
|
2096
|
+
}]
|
|
2097
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2098
|
+
let FlipRadio = class FlipRadio {
|
|
2099
|
+
constructor(c, r, z) {
|
|
2100
|
+
this.z = z;
|
|
2101
|
+
c.detach();
|
|
2102
|
+
this.el = r.nativeElement;
|
|
2103
|
+
proxyOutputs(this, this.el, ['valueChange']);
|
|
2104
|
+
}
|
|
2105
|
+
};
|
|
2106
|
+
FlipRadio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2107
|
+
FlipRadio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipRadio, selector: "flip-radio", inputs: { checked: "checked", description: "description", disabled: "disabled", inputId: "inputId", inputName: "inputName", invalid: "invalid", label: "label", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2108
|
+
FlipRadio = __decorate([
|
|
2109
|
+
ProxyCmp({
|
|
2110
|
+
defineCustomElementFn: undefined,
|
|
2111
|
+
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'value']
|
|
2112
|
+
})
|
|
2113
|
+
], FlipRadio);
|
|
2114
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipRadio, decorators: [{
|
|
2115
|
+
type: Component,
|
|
2116
|
+
args: [{
|
|
2117
|
+
selector: 'flip-radio',
|
|
2118
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2119
|
+
template: '<ng-content></ng-content>',
|
|
2120
|
+
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'value']
|
|
2121
|
+
}]
|
|
2122
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2123
|
+
let FlipRadioGroup = class FlipRadioGroup {
|
|
2124
|
+
constructor(c, r, z) {
|
|
2125
|
+
this.z = z;
|
|
2126
|
+
c.detach();
|
|
2127
|
+
this.el = r.nativeElement;
|
|
2128
|
+
proxyOutputs(this, this.el, ['valueChange']);
|
|
2129
|
+
}
|
|
2130
|
+
};
|
|
2131
|
+
FlipRadioGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2132
|
+
FlipRadioGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipRadioGroup, selector: "flip-radio-group", inputs: { value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2133
|
+
FlipRadioGroup = __decorate([
|
|
2134
|
+
ProxyCmp({
|
|
2135
|
+
defineCustomElementFn: undefined,
|
|
2136
|
+
inputs: ['value']
|
|
2137
|
+
})
|
|
2138
|
+
], FlipRadioGroup);
|
|
2139
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipRadioGroup, decorators: [{
|
|
2140
|
+
type: Component,
|
|
2141
|
+
args: [{
|
|
2142
|
+
selector: 'flip-radio-group',
|
|
2143
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2144
|
+
template: '<ng-content></ng-content>',
|
|
2145
|
+
inputs: ['value']
|
|
2146
|
+
}]
|
|
2147
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2148
|
+
let FlipSearch = class FlipSearch {
|
|
2149
|
+
constructor(c, r, z) {
|
|
2150
|
+
this.z = z;
|
|
2151
|
+
c.detach();
|
|
2152
|
+
this.el = r.nativeElement;
|
|
2153
|
+
proxyOutputs(this, this.el, ['inputBlur', 'inputFocus', 'valueChange']);
|
|
2154
|
+
}
|
|
2155
|
+
};
|
|
2156
|
+
FlipSearch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2157
|
+
FlipSearch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipSearch, selector: "flip-search", inputs: { autoFocus: "autoFocus", clearButtonLabel: "clearButtonLabel", disabled: "disabled", inputId: "inputId", inputName: "inputName", label: "label", placeholder: "placeholder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2158
|
+
FlipSearch = __decorate([
|
|
2159
|
+
ProxyCmp({
|
|
2160
|
+
defineCustomElementFn: undefined,
|
|
2161
|
+
inputs: ['autoFocus', 'clearButtonLabel', 'disabled', 'inputId', 'inputName', 'label', 'placeholder', 'value']
|
|
2162
|
+
})
|
|
2163
|
+
], FlipSearch);
|
|
2164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipSearch, decorators: [{
|
|
2165
|
+
type: Component,
|
|
2166
|
+
args: [{
|
|
2167
|
+
selector: 'flip-search',
|
|
2168
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2169
|
+
template: '<ng-content></ng-content>',
|
|
2170
|
+
inputs: ['autoFocus', 'clearButtonLabel', 'disabled', 'inputId', 'inputName', 'label', 'placeholder', 'value']
|
|
2171
|
+
}]
|
|
2172
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2173
|
+
let FlipSpinner = class FlipSpinner {
|
|
2174
|
+
constructor(c, r, z) {
|
|
2175
|
+
this.z = z;
|
|
2176
|
+
c.detach();
|
|
2177
|
+
this.el = r.nativeElement;
|
|
2178
|
+
}
|
|
2179
|
+
};
|
|
2180
|
+
FlipSpinner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2181
|
+
FlipSpinner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipSpinner, selector: "flip-spinner", inputs: { label: "label", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2182
|
+
FlipSpinner = __decorate([
|
|
2183
|
+
ProxyCmp({
|
|
2184
|
+
defineCustomElementFn: undefined,
|
|
2185
|
+
inputs: ['label', 'size']
|
|
2186
|
+
})
|
|
2187
|
+
], FlipSpinner);
|
|
2188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipSpinner, decorators: [{
|
|
2189
|
+
type: Component,
|
|
2190
|
+
args: [{
|
|
2191
|
+
selector: 'flip-spinner',
|
|
2192
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2193
|
+
template: '<ng-content></ng-content>',
|
|
2194
|
+
inputs: ['label', 'size']
|
|
2195
|
+
}]
|
|
2196
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2197
|
+
let FlipStack = class FlipStack {
|
|
2198
|
+
constructor(c, r, z) {
|
|
2199
|
+
this.z = z;
|
|
2200
|
+
c.detach();
|
|
2201
|
+
this.el = r.nativeElement;
|
|
2202
|
+
}
|
|
2203
|
+
};
|
|
2204
|
+
FlipStack.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipStack, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2205
|
+
FlipStack.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipStack, selector: "flip-stack", inputs: { align: "align", as: "as", justify: "justify", orientation: "orientation", spacing: "spacing", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2206
|
+
FlipStack = __decorate([
|
|
2207
|
+
ProxyCmp({
|
|
2208
|
+
defineCustomElementFn: undefined,
|
|
2209
|
+
inputs: ['align', 'as', 'justify', 'orientation', 'spacing', 'wrap']
|
|
2210
|
+
})
|
|
2211
|
+
], FlipStack);
|
|
2212
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipStack, decorators: [{
|
|
2213
|
+
type: Component,
|
|
2214
|
+
args: [{
|
|
2215
|
+
selector: 'flip-stack',
|
|
2216
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2217
|
+
template: '<ng-content></ng-content>',
|
|
2218
|
+
inputs: ['align', 'as', 'justify', 'orientation', 'spacing', 'wrap']
|
|
2219
|
+
}]
|
|
2220
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2221
|
+
let FlipSwitch = class FlipSwitch {
|
|
2222
|
+
constructor(c, r, z) {
|
|
2223
|
+
this.z = z;
|
|
2224
|
+
c.detach();
|
|
2225
|
+
this.el = r.nativeElement;
|
|
2226
|
+
proxyOutputs(this, this.el, ['valueChange']);
|
|
2227
|
+
}
|
|
2228
|
+
};
|
|
2229
|
+
FlipSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2230
|
+
FlipSwitch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipSwitch, selector: "flip-switch", inputs: { checked: "checked", disabled: "disabled", inputId: "inputId", inputName: "inputName", label: "label", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2231
|
+
FlipSwitch = __decorate([
|
|
2232
|
+
ProxyCmp({
|
|
2233
|
+
defineCustomElementFn: undefined,
|
|
2234
|
+
inputs: ['checked', 'disabled', 'inputId', 'inputName', 'label', 'size', 'value']
|
|
2235
|
+
})
|
|
2236
|
+
], FlipSwitch);
|
|
2237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipSwitch, decorators: [{
|
|
2238
|
+
type: Component,
|
|
2239
|
+
args: [{
|
|
2240
|
+
selector: 'flip-switch',
|
|
2241
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2242
|
+
template: '<ng-content></ng-content>',
|
|
2243
|
+
inputs: ['checked', 'disabled', 'inputId', 'inputName', 'label', 'size', 'value']
|
|
2244
|
+
}]
|
|
2245
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2246
|
+
let FlipTag = class FlipTag {
|
|
2247
|
+
constructor(c, r, z) {
|
|
2248
|
+
this.z = z;
|
|
2249
|
+
c.detach();
|
|
2250
|
+
this.el = r.nativeElement;
|
|
2251
|
+
proxyOutputs(this, this.el, ['remove']);
|
|
2252
|
+
}
|
|
2253
|
+
};
|
|
2254
|
+
FlipTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2255
|
+
FlipTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipTag, selector: "flip-tag", inputs: { intent: "intent", label: "label", removable: "removable", removalButtonLabel: "removalButtonLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2256
|
+
FlipTag = __decorate([
|
|
2257
|
+
ProxyCmp({
|
|
2258
|
+
defineCustomElementFn: undefined,
|
|
2259
|
+
inputs: ['intent', 'label', 'removable', 'removalButtonLabel']
|
|
2260
|
+
})
|
|
2261
|
+
], FlipTag);
|
|
2262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipTag, decorators: [{
|
|
2263
|
+
type: Component,
|
|
2264
|
+
args: [{
|
|
2265
|
+
selector: 'flip-tag',
|
|
2266
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2267
|
+
template: '<ng-content></ng-content>',
|
|
2268
|
+
inputs: ['intent', 'label', 'removable', 'removalButtonLabel']
|
|
2269
|
+
}]
|
|
2270
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2271
|
+
let FlipThemeProvider = class FlipThemeProvider {
|
|
2272
|
+
constructor(c, r, z) {
|
|
2273
|
+
this.z = z;
|
|
2274
|
+
c.detach();
|
|
2275
|
+
this.el = r.nativeElement;
|
|
2276
|
+
}
|
|
2277
|
+
};
|
|
2278
|
+
FlipThemeProvider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipThemeProvider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2279
|
+
FlipThemeProvider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipThemeProvider, selector: "flip-theme-provider", inputs: { config: "config" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2280
|
+
FlipThemeProvider = __decorate([
|
|
2281
|
+
ProxyCmp({
|
|
2282
|
+
defineCustomElementFn: undefined,
|
|
2283
|
+
inputs: ['config'],
|
|
2284
|
+
methods: ['getActiveTheme', 'getPreferredTheme', 'setPreferredTheme', 'resetPreferredTheme']
|
|
2285
|
+
})
|
|
2286
|
+
], FlipThemeProvider);
|
|
2287
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipThemeProvider, decorators: [{
|
|
2288
|
+
type: Component,
|
|
2289
|
+
args: [{
|
|
2290
|
+
selector: 'flip-theme-provider',
|
|
2291
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2292
|
+
template: '<ng-content></ng-content>',
|
|
2293
|
+
inputs: ['config']
|
|
2294
|
+
}]
|
|
2295
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2296
|
+
let FlipThumbnail = class FlipThumbnail {
|
|
2297
|
+
constructor(c, r, z) {
|
|
2298
|
+
this.z = z;
|
|
2299
|
+
c.detach();
|
|
2300
|
+
this.el = r.nativeElement;
|
|
2301
|
+
}
|
|
2302
|
+
};
|
|
2303
|
+
FlipThumbnail.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipThumbnail, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2304
|
+
FlipThumbnail.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipThumbnail, selector: "flip-thumbnail", inputs: { alt: "alt", format: "format", size: "size", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2305
|
+
FlipThumbnail = __decorate([
|
|
2306
|
+
ProxyCmp({
|
|
2307
|
+
defineCustomElementFn: undefined,
|
|
2308
|
+
inputs: ['alt', 'format', 'size', 'src']
|
|
2309
|
+
})
|
|
2310
|
+
], FlipThumbnail);
|
|
2311
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipThumbnail, decorators: [{
|
|
2312
|
+
type: Component,
|
|
2313
|
+
args: [{
|
|
2314
|
+
selector: 'flip-thumbnail',
|
|
2315
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2316
|
+
template: '<ng-content></ng-content>',
|
|
2317
|
+
inputs: ['alt', 'format', 'size', 'src']
|
|
2318
|
+
}]
|
|
2319
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2320
|
+
let FlipToast = class FlipToast {
|
|
2321
|
+
constructor(c, r, z) {
|
|
2322
|
+
this.z = z;
|
|
2323
|
+
c.detach();
|
|
2324
|
+
this.el = r.nativeElement;
|
|
2325
|
+
proxyOutputs(this, this.el, ['dismiss']);
|
|
2326
|
+
}
|
|
2327
|
+
};
|
|
2328
|
+
FlipToast.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2329
|
+
FlipToast.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipToast, selector: "flip-toast", inputs: { accessibleDismissLabel: "accessibleDismissLabel", content: "content", dismissLabel: "dismissLabel", duration: "duration", icon: "icon", intent: "intent", toastId: "toastId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2330
|
+
FlipToast = __decorate([
|
|
2331
|
+
ProxyCmp({
|
|
2332
|
+
defineCustomElementFn: undefined,
|
|
2333
|
+
inputs: ['accessibleDismissLabel', 'content', 'dismissLabel', 'duration', 'icon', 'intent', 'toastId']
|
|
2334
|
+
})
|
|
2335
|
+
], FlipToast);
|
|
2336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipToast, decorators: [{
|
|
2337
|
+
type: Component,
|
|
2338
|
+
args: [{
|
|
2339
|
+
selector: 'flip-toast',
|
|
2340
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2341
|
+
template: '<ng-content></ng-content>',
|
|
2342
|
+
inputs: ['accessibleDismissLabel', 'content', 'dismissLabel', 'duration', 'icon', 'intent', 'toastId']
|
|
2343
|
+
}]
|
|
2344
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2345
|
+
let FlipToastProvider = class FlipToastProvider {
|
|
2346
|
+
constructor(c, r, z) {
|
|
2347
|
+
this.z = z;
|
|
2348
|
+
c.detach();
|
|
2349
|
+
this.el = r.nativeElement;
|
|
2350
|
+
}
|
|
2351
|
+
};
|
|
2352
|
+
FlipToastProvider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipToastProvider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2353
|
+
FlipToastProvider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipToastProvider, selector: "flip-toast-provider", inputs: { globalDuration: "globalDuration" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2354
|
+
FlipToastProvider = __decorate([
|
|
2355
|
+
ProxyCmp({
|
|
2356
|
+
defineCustomElementFn: undefined,
|
|
2357
|
+
inputs: ['globalDuration'],
|
|
2358
|
+
methods: ['clearAll', 'dismiss', 'toast']
|
|
2359
|
+
})
|
|
2360
|
+
], FlipToastProvider);
|
|
2361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipToastProvider, decorators: [{
|
|
2362
|
+
type: Component,
|
|
2363
|
+
args: [{
|
|
2364
|
+
selector: 'flip-toast-provider',
|
|
2365
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2366
|
+
template: '<ng-content></ng-content>',
|
|
2367
|
+
inputs: ['globalDuration']
|
|
2368
|
+
}]
|
|
2369
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2370
|
+
let FlipTooltip = class FlipTooltip {
|
|
2371
|
+
constructor(c, r, z) {
|
|
2372
|
+
this.z = z;
|
|
2373
|
+
c.detach();
|
|
2374
|
+
this.el = r.nativeElement;
|
|
2375
|
+
}
|
|
2376
|
+
};
|
|
2377
|
+
FlipTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2378
|
+
FlipTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipTooltip, selector: "flip-tooltip", inputs: { content: "content", delay: "delay", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2379
|
+
FlipTooltip = __decorate([
|
|
2380
|
+
ProxyCmp({
|
|
2381
|
+
defineCustomElementFn: undefined,
|
|
2382
|
+
inputs: ['content', 'delay', 'position']
|
|
2383
|
+
})
|
|
2384
|
+
], FlipTooltip);
|
|
2385
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipTooltip, decorators: [{
|
|
2386
|
+
type: Component,
|
|
2387
|
+
args: [{
|
|
2388
|
+
selector: 'flip-tooltip',
|
|
2389
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2390
|
+
template: '<ng-content></ng-content>',
|
|
2391
|
+
inputs: ['content', 'delay', 'position']
|
|
2392
|
+
}]
|
|
2393
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2394
|
+
let FlipVisuallyHidden = class FlipVisuallyHidden {
|
|
2395
|
+
constructor(c, r, z) {
|
|
2396
|
+
this.z = z;
|
|
2397
|
+
c.detach();
|
|
2398
|
+
this.el = r.nativeElement;
|
|
2399
|
+
}
|
|
2400
|
+
};
|
|
2401
|
+
FlipVisuallyHidden.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipVisuallyHidden, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2402
|
+
FlipVisuallyHidden.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: FlipVisuallyHidden, selector: "flip-visually-hidden", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2403
|
+
FlipVisuallyHidden = __decorate([
|
|
2404
|
+
ProxyCmp({
|
|
2405
|
+
defineCustomElementFn: undefined
|
|
2406
|
+
})
|
|
2407
|
+
], FlipVisuallyHidden);
|
|
2408
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: FlipVisuallyHidden, decorators: [{
|
|
2409
|
+
type: Component,
|
|
2410
|
+
args: [{
|
|
2411
|
+
selector: 'flip-visually-hidden',
|
|
2412
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2413
|
+
template: '<ng-content></ng-content>'
|
|
2414
|
+
}]
|
|
2415
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2416
|
+
|
|
2417
|
+
class ValueAccessor {
|
|
2418
|
+
constructor(el) {
|
|
2419
|
+
this.el = el;
|
|
2420
|
+
this.onChange = () => { };
|
|
2421
|
+
this.onTouched = () => { };
|
|
2422
|
+
}
|
|
2423
|
+
writeValue(value) {
|
|
2424
|
+
this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
|
|
2425
|
+
}
|
|
2426
|
+
handleChangeEvent(value) {
|
|
2427
|
+
if (value !== this.lastValue) {
|
|
2428
|
+
this.lastValue = value;
|
|
2429
|
+
this.onChange(value);
|
|
2430
|
+
}
|
|
2431
|
+
}
|
|
2432
|
+
_handleBlurEvent() {
|
|
2433
|
+
this.onTouched();
|
|
2434
|
+
}
|
|
2435
|
+
registerOnChange(fn) {
|
|
2436
|
+
this.onChange = fn;
|
|
2437
|
+
}
|
|
2438
|
+
registerOnTouched(fn) {
|
|
2439
|
+
this.onTouched = fn;
|
|
2440
|
+
}
|
|
2441
|
+
setDisabledState(isDisabled) {
|
|
2442
|
+
this.el.nativeElement.disabled = isDisabled;
|
|
2443
|
+
}
|
|
2444
|
+
}
|
|
2445
|
+
ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2446
|
+
ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
2447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
2448
|
+
type: Directive,
|
|
2449
|
+
args: [{}]
|
|
2450
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
|
|
2451
|
+
type: HostListener,
|
|
2452
|
+
args: ['focusout']
|
|
2453
|
+
}] } });
|
|
2454
|
+
|
|
2455
|
+
class BooleanValueAccessor extends ValueAccessor {
|
|
2456
|
+
constructor(el) {
|
|
2457
|
+
super(el);
|
|
2458
|
+
}
|
|
2459
|
+
writeValue(value) {
|
|
2460
|
+
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
2461
|
+
}
|
|
2462
|
+
}
|
|
2463
|
+
BooleanValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2464
|
+
BooleanValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: BooleanValueAccessor, selector: "flip-checkbox, flip-switch", host: { listeners: { "valueChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
2465
|
+
{
|
|
2466
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2467
|
+
useExisting: BooleanValueAccessor,
|
|
2468
|
+
multi: true
|
|
2469
|
+
}
|
|
2470
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2471
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
2472
|
+
type: Directive,
|
|
2473
|
+
args: [{
|
|
2474
|
+
/* tslint:disable-next-line:directive-selector */
|
|
2475
|
+
selector: 'flip-checkbox, flip-switch',
|
|
2476
|
+
host: {
|
|
2477
|
+
'(valueChange)': 'handleChangeEvent($event.target.checked)'
|
|
2478
|
+
},
|
|
2479
|
+
providers: [
|
|
2480
|
+
{
|
|
2481
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2482
|
+
useExisting: BooleanValueAccessor,
|
|
2483
|
+
multi: true
|
|
2484
|
+
}
|
|
2485
|
+
]
|
|
2486
|
+
}]
|
|
2487
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
2488
|
+
|
|
2489
|
+
class TextValueAccessor extends ValueAccessor {
|
|
2490
|
+
constructor(el) {
|
|
2491
|
+
super(el);
|
|
2492
|
+
}
|
|
2493
|
+
}
|
|
2494
|
+
TextValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2495
|
+
TextValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: TextValueAccessor, selector: "flip-radio-group, flip-search", host: { listeners: { "valueChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
2496
|
+
{
|
|
2497
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2498
|
+
useExisting: TextValueAccessor,
|
|
2499
|
+
multi: true
|
|
2500
|
+
}
|
|
2501
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
2503
|
+
type: Directive,
|
|
2504
|
+
args: [{
|
|
2505
|
+
/* tslint:disable-next-line:directive-selector */
|
|
2506
|
+
selector: 'flip-radio-group, flip-search',
|
|
2507
|
+
host: {
|
|
2508
|
+
'(valueChange)': 'handleChangeEvent($event.target.value)'
|
|
2509
|
+
},
|
|
2510
|
+
providers: [
|
|
2511
|
+
{
|
|
2512
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2513
|
+
useExisting: TextValueAccessor,
|
|
2514
|
+
multi: true
|
|
2515
|
+
}
|
|
2516
|
+
]
|
|
2517
|
+
}]
|
|
2518
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
2519
|
+
|
|
2520
|
+
const DIRECTIVES = [
|
|
2521
|
+
FlipActionList,
|
|
2522
|
+
FlipActionListItem,
|
|
2523
|
+
FlipActionListSection,
|
|
2524
|
+
FlipAvatar,
|
|
2525
|
+
FlipAvatarGroup,
|
|
2526
|
+
FlipBadge,
|
|
2527
|
+
FlipBanner,
|
|
2528
|
+
FlipButton,
|
|
2529
|
+
FlipButtonGroup,
|
|
2530
|
+
FlipCheckbox,
|
|
2531
|
+
FlipChip,
|
|
2532
|
+
FlipDescriptionList,
|
|
2533
|
+
FlipDescriptionListItem,
|
|
2534
|
+
FlipDialog,
|
|
2535
|
+
FlipIconAdd,
|
|
2536
|
+
FlipIconAddPhoto,
|
|
2537
|
+
FlipIconAdminPanelSettings,
|
|
2538
|
+
FlipIconArrowBack,
|
|
2539
|
+
FlipIconArrowForward,
|
|
2540
|
+
FlipIconArrowRightSmall,
|
|
2541
|
+
FlipIconAttachment,
|
|
2542
|
+
FlipIconCancel,
|
|
2543
|
+
FlipIconChatBubble,
|
|
2544
|
+
FlipIconCheck,
|
|
2545
|
+
FlipIconCheckCircle,
|
|
2546
|
+
FlipIconCheckSmall,
|
|
2547
|
+
FlipIconCheckStrong,
|
|
2548
|
+
FlipIconChevronLeft,
|
|
2549
|
+
FlipIconChevronRight,
|
|
2550
|
+
FlipIconClose,
|
|
2551
|
+
FlipIconCloseSmall,
|
|
2552
|
+
FlipIconComment,
|
|
2553
|
+
FlipIconCopy,
|
|
2554
|
+
FlipIconDateRange,
|
|
2555
|
+
FlipIconDelete,
|
|
2556
|
+
FlipIconDescription,
|
|
2557
|
+
FlipIconDownload,
|
|
2558
|
+
FlipIconEdit,
|
|
2559
|
+
FlipIconEmojiMood,
|
|
2560
|
+
FlipIconEmojiSatisfied,
|
|
2561
|
+
FlipIconError,
|
|
2562
|
+
FlipIconExpandLess,
|
|
2563
|
+
FlipIconExpandMore,
|
|
2564
|
+
FlipIconFile,
|
|
2565
|
+
FlipIconFolderShared,
|
|
2566
|
+
FlipIconGroupAssign,
|
|
2567
|
+
FlipIconGroups,
|
|
2568
|
+
FlipIconGroupsCustom,
|
|
2569
|
+
FlipIconImage,
|
|
2570
|
+
FlipIconInfo,
|
|
2571
|
+
FlipIconInventory,
|
|
2572
|
+
FlipIconLike,
|
|
2573
|
+
FlipIconLink,
|
|
2574
|
+
FlipIconLock,
|
|
2575
|
+
FlipIconLogout,
|
|
2576
|
+
FlipIconMail,
|
|
2577
|
+
FlipIconManageAccounts,
|
|
2578
|
+
FlipIconMention,
|
|
2579
|
+
FlipIconMessage,
|
|
2580
|
+
FlipIconMoreHorizontal,
|
|
2581
|
+
FlipIconMoreVertikal,
|
|
2582
|
+
FlipIconNotifications,
|
|
2583
|
+
FlipIconNotificationsActive,
|
|
2584
|
+
FlipIconNotificationsOff,
|
|
2585
|
+
FlipIconPeopleAlt,
|
|
2586
|
+
FlipIconPerson,
|
|
2587
|
+
FlipIconPersonOff,
|
|
2588
|
+
FlipIconPhone,
|
|
2589
|
+
FlipIconPoll,
|
|
2590
|
+
FlipIconRecieved,
|
|
2591
|
+
FlipIconSearch,
|
|
2592
|
+
FlipIconSearchStrong,
|
|
2593
|
+
FlipIconSend,
|
|
2594
|
+
FlipIconSettings,
|
|
2595
|
+
FlipIconTimeFilled,
|
|
2596
|
+
FlipIconTimeOutlined,
|
|
2597
|
+
FlipIconToday,
|
|
2598
|
+
FlipIconUserAssign,
|
|
2599
|
+
FlipIconVideoCamera,
|
|
2600
|
+
FlipIconVisibility,
|
|
2601
|
+
FlipIconVisibilityOff,
|
|
2602
|
+
FlipIconWarning,
|
|
2603
|
+
FlipInlineError,
|
|
2604
|
+
FlipLink,
|
|
2605
|
+
FlipPopover,
|
|
2606
|
+
FlipRadio,
|
|
2607
|
+
FlipRadioGroup,
|
|
2608
|
+
FlipSearch,
|
|
2609
|
+
FlipSpinner,
|
|
2610
|
+
FlipStack,
|
|
2611
|
+
FlipSwitch,
|
|
2612
|
+
FlipTag,
|
|
2613
|
+
FlipThemeProvider,
|
|
2614
|
+
FlipThumbnail,
|
|
2615
|
+
FlipToast,
|
|
2616
|
+
FlipToastProvider,
|
|
2617
|
+
FlipTooltip,
|
|
2618
|
+
FlipVisuallyHidden
|
|
2619
|
+
];
|
|
2620
|
+
|
|
2621
|
+
class SwirlComponentsModule {
|
|
2622
|
+
}
|
|
2623
|
+
SwirlComponentsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2624
|
+
SwirlComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.2", ngImport: i0, type: SwirlComponentsModule, declarations: [FlipActionList, FlipActionListItem, FlipActionListSection, FlipAvatar, FlipAvatarGroup, FlipBadge, FlipBanner, FlipButton, FlipButtonGroup, FlipCheckbox, FlipChip, FlipDescriptionList, FlipDescriptionListItem, FlipDialog, FlipIconAdd, FlipIconAddPhoto, FlipIconAdminPanelSettings, FlipIconArrowBack, FlipIconArrowForward, FlipIconArrowRightSmall, FlipIconAttachment, FlipIconCancel, FlipIconChatBubble, FlipIconCheck, FlipIconCheckCircle, FlipIconCheckSmall, FlipIconCheckStrong, FlipIconChevronLeft, FlipIconChevronRight, FlipIconClose, FlipIconCloseSmall, FlipIconComment, FlipIconCopy, FlipIconDateRange, FlipIconDelete, FlipIconDescription, FlipIconDownload, FlipIconEdit, FlipIconEmojiMood, FlipIconEmojiSatisfied, FlipIconError, FlipIconExpandLess, FlipIconExpandMore, FlipIconFile, FlipIconFolderShared, FlipIconGroupAssign, FlipIconGroups, FlipIconGroupsCustom, FlipIconImage, FlipIconInfo, FlipIconInventory, FlipIconLike, FlipIconLink, FlipIconLock, FlipIconLogout, FlipIconMail, FlipIconManageAccounts, FlipIconMention, FlipIconMessage, FlipIconMoreHorizontal, FlipIconMoreVertikal, FlipIconNotifications, FlipIconNotificationsActive, FlipIconNotificationsOff, FlipIconPeopleAlt, FlipIconPerson, FlipIconPersonOff, FlipIconPhone, FlipIconPoll, FlipIconRecieved, FlipIconSearch, FlipIconSearchStrong, FlipIconSend, FlipIconSettings, FlipIconTimeFilled, FlipIconTimeOutlined, FlipIconToday, FlipIconUserAssign, FlipIconVideoCamera, FlipIconVisibility, FlipIconVisibilityOff, FlipIconWarning, FlipInlineError, FlipLink, FlipPopover, FlipRadio, FlipRadioGroup, FlipSearch, FlipSpinner, FlipStack, FlipSwitch, FlipTag, FlipThemeProvider, FlipThumbnail, FlipToast, FlipToastProvider, FlipTooltip, FlipVisuallyHidden, BooleanValueAccessor, TextValueAccessor], exports: [FlipActionList, FlipActionListItem, FlipActionListSection, FlipAvatar, FlipAvatarGroup, FlipBadge, FlipBanner, FlipButton, FlipButtonGroup, FlipCheckbox, FlipChip, FlipDescriptionList, FlipDescriptionListItem, FlipDialog, FlipIconAdd, FlipIconAddPhoto, FlipIconAdminPanelSettings, FlipIconArrowBack, FlipIconArrowForward, FlipIconArrowRightSmall, FlipIconAttachment, FlipIconCancel, FlipIconChatBubble, FlipIconCheck, FlipIconCheckCircle, FlipIconCheckSmall, FlipIconCheckStrong, FlipIconChevronLeft, FlipIconChevronRight, FlipIconClose, FlipIconCloseSmall, FlipIconComment, FlipIconCopy, FlipIconDateRange, FlipIconDelete, FlipIconDescription, FlipIconDownload, FlipIconEdit, FlipIconEmojiMood, FlipIconEmojiSatisfied, FlipIconError, FlipIconExpandLess, FlipIconExpandMore, FlipIconFile, FlipIconFolderShared, FlipIconGroupAssign, FlipIconGroups, FlipIconGroupsCustom, FlipIconImage, FlipIconInfo, FlipIconInventory, FlipIconLike, FlipIconLink, FlipIconLock, FlipIconLogout, FlipIconMail, FlipIconManageAccounts, FlipIconMention, FlipIconMessage, FlipIconMoreHorizontal, FlipIconMoreVertikal, FlipIconNotifications, FlipIconNotificationsActive, FlipIconNotificationsOff, FlipIconPeopleAlt, FlipIconPerson, FlipIconPersonOff, FlipIconPhone, FlipIconPoll, FlipIconRecieved, FlipIconSearch, FlipIconSearchStrong, FlipIconSend, FlipIconSettings, FlipIconTimeFilled, FlipIconTimeOutlined, FlipIconToday, FlipIconUserAssign, FlipIconVideoCamera, FlipIconVisibility, FlipIconVisibilityOff, FlipIconWarning, FlipInlineError, FlipLink, FlipPopover, FlipRadio, FlipRadioGroup, FlipSearch, FlipSpinner, FlipStack, FlipSwitch, FlipTag, FlipThemeProvider, FlipThumbnail, FlipToast, FlipToastProvider, FlipTooltip, FlipVisuallyHidden, BooleanValueAccessor, TextValueAccessor] });
|
|
2625
|
+
SwirlComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlComponentsModule });
|
|
2626
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlComponentsModule, decorators: [{
|
|
2627
|
+
type: NgModule,
|
|
2628
|
+
args: [{
|
|
2629
|
+
declarations: [...DIRECTIVES, BooleanValueAccessor, TextValueAccessor],
|
|
2630
|
+
imports: [],
|
|
2631
|
+
exports: [...DIRECTIVES, BooleanValueAccessor, TextValueAccessor],
|
|
2632
|
+
}]
|
|
2633
|
+
}] });
|
|
2634
|
+
|
|
2635
|
+
/*
|
|
2636
|
+
* Public API Surface of component-library
|
|
2637
|
+
*/
|
|
2638
|
+
|
|
2639
|
+
/**
|
|
2640
|
+
* Generated bundle index. Do not edit.
|
|
2641
|
+
*/
|
|
2642
|
+
|
|
2643
|
+
export { BooleanValueAccessor, FlipActionList, FlipActionListItem, FlipActionListSection, FlipAvatar, FlipAvatarGroup, FlipBadge, FlipBanner, FlipButton, FlipButtonGroup, FlipCheckbox, FlipChip, FlipDescriptionList, FlipDescriptionListItem, FlipDialog, FlipIconAdd, FlipIconAddPhoto, FlipIconAdminPanelSettings, FlipIconArrowBack, FlipIconArrowForward, FlipIconArrowRightSmall, FlipIconAttachment, FlipIconCancel, FlipIconChatBubble, FlipIconCheck, FlipIconCheckCircle, FlipIconCheckSmall, FlipIconCheckStrong, FlipIconChevronLeft, FlipIconChevronRight, FlipIconClose, FlipIconCloseSmall, FlipIconComment, FlipIconCopy, FlipIconDateRange, FlipIconDelete, FlipIconDescription, FlipIconDownload, FlipIconEdit, FlipIconEmojiMood, FlipIconEmojiSatisfied, FlipIconError, FlipIconExpandLess, FlipIconExpandMore, FlipIconFile, FlipIconFolderShared, FlipIconGroupAssign, FlipIconGroups, FlipIconGroupsCustom, FlipIconImage, FlipIconInfo, FlipIconInventory, FlipIconLike, FlipIconLink, FlipIconLock, FlipIconLogout, FlipIconMail, FlipIconManageAccounts, FlipIconMention, FlipIconMessage, FlipIconMoreHorizontal, FlipIconMoreVertikal, FlipIconNotifications, FlipIconNotificationsActive, FlipIconNotificationsOff, FlipIconPeopleAlt, FlipIconPerson, FlipIconPersonOff, FlipIconPhone, FlipIconPoll, FlipIconRecieved, FlipIconSearch, FlipIconSearchStrong, FlipIconSend, FlipIconSettings, FlipIconTimeFilled, FlipIconTimeOutlined, FlipIconToday, FlipIconUserAssign, FlipIconVideoCamera, FlipIconVisibility, FlipIconVisibilityOff, FlipIconWarning, FlipInlineError, FlipLink, FlipPopover, FlipRadio, FlipRadioGroup, FlipSearch, FlipSpinner, FlipStack, FlipSwitch, FlipTag, FlipThemeProvider, FlipThumbnail, FlipToast, FlipToastProvider, FlipTooltip, FlipVisuallyHidden, SwirlComponentsModule, TextValueAccessor };
|
|
2644
|
+
//# sourceMappingURL=getflip-swirl-components-angular.mjs.map
|