@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,2142 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* auto-generated angular directive proxies */
|
|
3
|
+
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
4
|
+
import { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';
|
|
5
|
+
|
|
6
|
+
import { Components } from '@getflip/swirl-components';
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
export declare interface FlipActionList extends Components.FlipActionList {}
|
|
12
|
+
|
|
13
|
+
@ProxyCmp({
|
|
14
|
+
defineCustomElementFn: undefined
|
|
15
|
+
})
|
|
16
|
+
@Component({
|
|
17
|
+
selector: 'flip-action-list',
|
|
18
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
19
|
+
template: '<ng-content></ng-content>'
|
|
20
|
+
})
|
|
21
|
+
export class FlipActionList {
|
|
22
|
+
protected el: HTMLElement;
|
|
23
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
24
|
+
c.detach();
|
|
25
|
+
this.el = r.nativeElement;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
export declare interface FlipActionListItem extends Components.FlipActionListItem {}
|
|
31
|
+
|
|
32
|
+
@ProxyCmp({
|
|
33
|
+
defineCustomElementFn: undefined,
|
|
34
|
+
inputs: ['description', 'disabled', 'icon', 'intent', 'label', 'size', 'suffix']
|
|
35
|
+
})
|
|
36
|
+
@Component({
|
|
37
|
+
selector: 'flip-action-list-item',
|
|
38
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
39
|
+
template: '<ng-content></ng-content>',
|
|
40
|
+
inputs: ['description', 'disabled', 'icon', 'intent', 'label', 'size', 'suffix']
|
|
41
|
+
})
|
|
42
|
+
export class FlipActionListItem {
|
|
43
|
+
protected el: HTMLElement;
|
|
44
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
45
|
+
c.detach();
|
|
46
|
+
this.el = r.nativeElement;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
export declare interface FlipActionListSection extends Components.FlipActionListSection {}
|
|
52
|
+
|
|
53
|
+
@ProxyCmp({
|
|
54
|
+
defineCustomElementFn: undefined,
|
|
55
|
+
inputs: ['label']
|
|
56
|
+
})
|
|
57
|
+
@Component({
|
|
58
|
+
selector: 'flip-action-list-section',
|
|
59
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
60
|
+
template: '<ng-content></ng-content>',
|
|
61
|
+
inputs: ['label']
|
|
62
|
+
})
|
|
63
|
+
export class FlipActionListSection {
|
|
64
|
+
protected el: HTMLElement;
|
|
65
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
66
|
+
c.detach();
|
|
67
|
+
this.el = r.nativeElement;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
export declare interface FlipAvatar extends Components.FlipAvatar {}
|
|
73
|
+
|
|
74
|
+
@ProxyCmp({
|
|
75
|
+
defineCustomElementFn: undefined,
|
|
76
|
+
inputs: ['badge', 'badgePosition', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'variant']
|
|
77
|
+
})
|
|
78
|
+
@Component({
|
|
79
|
+
selector: 'flip-avatar',
|
|
80
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
81
|
+
template: '<ng-content></ng-content>',
|
|
82
|
+
inputs: ['badge', 'badgePosition', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'variant']
|
|
83
|
+
})
|
|
84
|
+
export class FlipAvatar {
|
|
85
|
+
protected el: HTMLElement;
|
|
86
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
87
|
+
c.detach();
|
|
88
|
+
this.el = r.nativeElement;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
export declare interface FlipAvatarGroup extends Components.FlipAvatarGroup {}
|
|
94
|
+
|
|
95
|
+
@ProxyCmp({
|
|
96
|
+
defineCustomElementFn: undefined,
|
|
97
|
+
inputs: ['badge']
|
|
98
|
+
})
|
|
99
|
+
@Component({
|
|
100
|
+
selector: 'flip-avatar-group',
|
|
101
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
102
|
+
template: '<ng-content></ng-content>',
|
|
103
|
+
inputs: ['badge']
|
|
104
|
+
})
|
|
105
|
+
export class FlipAvatarGroup {
|
|
106
|
+
protected el: HTMLElement;
|
|
107
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
108
|
+
c.detach();
|
|
109
|
+
this.el = r.nativeElement;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
export declare interface FlipBadge extends Components.FlipBadge {}
|
|
115
|
+
|
|
116
|
+
@ProxyCmp({
|
|
117
|
+
defineCustomElementFn: undefined,
|
|
118
|
+
inputs: ['icon', 'intent', 'label', 'size', 'variant']
|
|
119
|
+
})
|
|
120
|
+
@Component({
|
|
121
|
+
selector: 'flip-badge',
|
|
122
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
123
|
+
template: '<ng-content></ng-content>',
|
|
124
|
+
inputs: ['icon', 'intent', 'label', 'size', 'variant']
|
|
125
|
+
})
|
|
126
|
+
export class FlipBadge {
|
|
127
|
+
protected el: HTMLElement;
|
|
128
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
129
|
+
c.detach();
|
|
130
|
+
this.el = r.nativeElement;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
export declare interface FlipBanner extends Components.FlipBanner {
|
|
136
|
+
/**
|
|
137
|
+
*
|
|
138
|
+
*/
|
|
139
|
+
action: EventEmitter<CustomEvent<MouseEvent>>;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
*/
|
|
143
|
+
dismiss: EventEmitter<CustomEvent<MouseEvent>>;
|
|
144
|
+
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
@ProxyCmp({
|
|
148
|
+
defineCustomElementFn: undefined,
|
|
149
|
+
inputs: ['actionLabel', 'content', 'dismissLabel', 'dismissable', 'importance', 'intent', 'showIcon']
|
|
150
|
+
})
|
|
151
|
+
@Component({
|
|
152
|
+
selector: 'flip-banner',
|
|
153
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
154
|
+
template: '<ng-content></ng-content>',
|
|
155
|
+
inputs: ['actionLabel', 'content', 'dismissLabel', 'dismissable', 'importance', 'intent', 'showIcon']
|
|
156
|
+
})
|
|
157
|
+
export class FlipBanner {
|
|
158
|
+
protected el: HTMLElement;
|
|
159
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
160
|
+
c.detach();
|
|
161
|
+
this.el = r.nativeElement;
|
|
162
|
+
proxyOutputs(this, this.el, ['action', 'dismiss']);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
export declare interface FlipButton extends Components.FlipButton {}
|
|
168
|
+
|
|
169
|
+
@ProxyCmp({
|
|
170
|
+
defineCustomElementFn: undefined,
|
|
171
|
+
inputs: ['disabled', 'download', 'form', 'hideLabel', 'href', 'icon', 'intent', 'label', 'name', 'size', 'target', 'type', 'value', 'variant']
|
|
172
|
+
})
|
|
173
|
+
@Component({
|
|
174
|
+
selector: 'flip-button',
|
|
175
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
176
|
+
template: '<ng-content></ng-content>',
|
|
177
|
+
inputs: ['disabled', 'download', 'form', 'hideLabel', 'href', 'icon', 'intent', 'label', 'name', 'size', 'target', 'type', 'value', 'variant']
|
|
178
|
+
})
|
|
179
|
+
export class FlipButton {
|
|
180
|
+
protected el: HTMLElement;
|
|
181
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
182
|
+
c.detach();
|
|
183
|
+
this.el = r.nativeElement;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
export declare interface FlipButtonGroup extends Components.FlipButtonGroup {}
|
|
189
|
+
|
|
190
|
+
@ProxyCmp({
|
|
191
|
+
defineCustomElementFn: undefined,
|
|
192
|
+
inputs: ['orientation', 'stretch', 'wrap']
|
|
193
|
+
})
|
|
194
|
+
@Component({
|
|
195
|
+
selector: 'flip-button-group',
|
|
196
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
197
|
+
template: '<ng-content></ng-content>',
|
|
198
|
+
inputs: ['orientation', 'stretch', 'wrap']
|
|
199
|
+
})
|
|
200
|
+
export class FlipButtonGroup {
|
|
201
|
+
protected el: HTMLElement;
|
|
202
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
203
|
+
c.detach();
|
|
204
|
+
this.el = r.nativeElement;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
export declare interface FlipCheckbox extends Components.FlipCheckbox {
|
|
210
|
+
/**
|
|
211
|
+
*
|
|
212
|
+
*/
|
|
213
|
+
valueChange: EventEmitter<CustomEvent<boolean>>;
|
|
214
|
+
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
@ProxyCmp({
|
|
218
|
+
defineCustomElementFn: undefined,
|
|
219
|
+
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'value']
|
|
220
|
+
})
|
|
221
|
+
@Component({
|
|
222
|
+
selector: 'flip-checkbox',
|
|
223
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
224
|
+
template: '<ng-content></ng-content>',
|
|
225
|
+
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'value']
|
|
226
|
+
})
|
|
227
|
+
export class FlipCheckbox {
|
|
228
|
+
protected el: HTMLElement;
|
|
229
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
230
|
+
c.detach();
|
|
231
|
+
this.el = r.nativeElement;
|
|
232
|
+
proxyOutputs(this, this.el, ['valueChange']);
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
export declare interface FlipChip extends Components.FlipChip {}
|
|
238
|
+
|
|
239
|
+
@ProxyCmp({
|
|
240
|
+
defineCustomElementFn: undefined,
|
|
241
|
+
inputs: ['avatar', 'icon', 'intent', 'interactive', 'label']
|
|
242
|
+
})
|
|
243
|
+
@Component({
|
|
244
|
+
selector: 'flip-chip',
|
|
245
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
246
|
+
template: '<ng-content></ng-content>',
|
|
247
|
+
inputs: ['avatar', 'icon', 'intent', 'interactive', 'label']
|
|
248
|
+
})
|
|
249
|
+
export class FlipChip {
|
|
250
|
+
protected el: HTMLElement;
|
|
251
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
252
|
+
c.detach();
|
|
253
|
+
this.el = r.nativeElement;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
export declare interface FlipDescriptionList extends Components.FlipDescriptionList {}
|
|
259
|
+
|
|
260
|
+
@ProxyCmp({
|
|
261
|
+
defineCustomElementFn: undefined
|
|
262
|
+
})
|
|
263
|
+
@Component({
|
|
264
|
+
selector: 'flip-description-list',
|
|
265
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
266
|
+
template: '<ng-content></ng-content>'
|
|
267
|
+
})
|
|
268
|
+
export class FlipDescriptionList {
|
|
269
|
+
protected el: HTMLElement;
|
|
270
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
271
|
+
c.detach();
|
|
272
|
+
this.el = r.nativeElement;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
export declare interface FlipDescriptionListItem extends Components.FlipDescriptionListItem {}
|
|
278
|
+
|
|
279
|
+
@ProxyCmp({
|
|
280
|
+
defineCustomElementFn: undefined,
|
|
281
|
+
inputs: ['term']
|
|
282
|
+
})
|
|
283
|
+
@Component({
|
|
284
|
+
selector: 'flip-description-list-item',
|
|
285
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
286
|
+
template: '<ng-content></ng-content>',
|
|
287
|
+
inputs: ['term']
|
|
288
|
+
})
|
|
289
|
+
export class FlipDescriptionListItem {
|
|
290
|
+
protected el: HTMLElement;
|
|
291
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
292
|
+
c.detach();
|
|
293
|
+
this.el = r.nativeElement;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
export declare interface FlipDialog extends Components.FlipDialog {
|
|
299
|
+
/**
|
|
300
|
+
*
|
|
301
|
+
*/
|
|
302
|
+
primaryAction: EventEmitter<CustomEvent<MouseEvent>>;
|
|
303
|
+
/**
|
|
304
|
+
*
|
|
305
|
+
*/
|
|
306
|
+
secondaryAction: EventEmitter<CustomEvent<MouseEvent>>;
|
|
307
|
+
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
@ProxyCmp({
|
|
311
|
+
defineCustomElementFn: undefined,
|
|
312
|
+
inputs: ['hideLabel', 'intent', 'label', 'primaryActionLabel', 'secondaryActionLabel'],
|
|
313
|
+
methods: ['open', 'close']
|
|
314
|
+
})
|
|
315
|
+
@Component({
|
|
316
|
+
selector: 'flip-dialog',
|
|
317
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
318
|
+
template: '<ng-content></ng-content>',
|
|
319
|
+
inputs: ['hideLabel', 'intent', 'label', 'primaryActionLabel', 'secondaryActionLabel']
|
|
320
|
+
})
|
|
321
|
+
export class FlipDialog {
|
|
322
|
+
protected el: HTMLElement;
|
|
323
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
324
|
+
c.detach();
|
|
325
|
+
this.el = r.nativeElement;
|
|
326
|
+
proxyOutputs(this, this.el, ['primaryAction', 'secondaryAction']);
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
export declare interface FlipIconAdd extends Components.FlipIconAdd {}
|
|
332
|
+
|
|
333
|
+
@ProxyCmp({
|
|
334
|
+
defineCustomElementFn: undefined,
|
|
335
|
+
inputs: ['size']
|
|
336
|
+
})
|
|
337
|
+
@Component({
|
|
338
|
+
selector: 'flip-icon-add',
|
|
339
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
340
|
+
template: '<ng-content></ng-content>',
|
|
341
|
+
inputs: ['size']
|
|
342
|
+
})
|
|
343
|
+
export class FlipIconAdd {
|
|
344
|
+
protected el: HTMLElement;
|
|
345
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
346
|
+
c.detach();
|
|
347
|
+
this.el = r.nativeElement;
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
export declare interface FlipIconAddPhoto extends Components.FlipIconAddPhoto {}
|
|
353
|
+
|
|
354
|
+
@ProxyCmp({
|
|
355
|
+
defineCustomElementFn: undefined,
|
|
356
|
+
inputs: ['size']
|
|
357
|
+
})
|
|
358
|
+
@Component({
|
|
359
|
+
selector: 'flip-icon-add-photo',
|
|
360
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
361
|
+
template: '<ng-content></ng-content>',
|
|
362
|
+
inputs: ['size']
|
|
363
|
+
})
|
|
364
|
+
export class FlipIconAddPhoto {
|
|
365
|
+
protected el: HTMLElement;
|
|
366
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
367
|
+
c.detach();
|
|
368
|
+
this.el = r.nativeElement;
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
export declare interface FlipIconAdminPanelSettings extends Components.FlipIconAdminPanelSettings {}
|
|
374
|
+
|
|
375
|
+
@ProxyCmp({
|
|
376
|
+
defineCustomElementFn: undefined,
|
|
377
|
+
inputs: ['size']
|
|
378
|
+
})
|
|
379
|
+
@Component({
|
|
380
|
+
selector: 'flip-icon-admin-panel-settings',
|
|
381
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
382
|
+
template: '<ng-content></ng-content>',
|
|
383
|
+
inputs: ['size']
|
|
384
|
+
})
|
|
385
|
+
export class FlipIconAdminPanelSettings {
|
|
386
|
+
protected el: HTMLElement;
|
|
387
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
388
|
+
c.detach();
|
|
389
|
+
this.el = r.nativeElement;
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
export declare interface FlipIconArrowBack extends Components.FlipIconArrowBack {}
|
|
395
|
+
|
|
396
|
+
@ProxyCmp({
|
|
397
|
+
defineCustomElementFn: undefined,
|
|
398
|
+
inputs: ['size']
|
|
399
|
+
})
|
|
400
|
+
@Component({
|
|
401
|
+
selector: 'flip-icon-arrow-back',
|
|
402
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
403
|
+
template: '<ng-content></ng-content>',
|
|
404
|
+
inputs: ['size']
|
|
405
|
+
})
|
|
406
|
+
export class FlipIconArrowBack {
|
|
407
|
+
protected el: HTMLElement;
|
|
408
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
409
|
+
c.detach();
|
|
410
|
+
this.el = r.nativeElement;
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
export declare interface FlipIconArrowForward extends Components.FlipIconArrowForward {}
|
|
416
|
+
|
|
417
|
+
@ProxyCmp({
|
|
418
|
+
defineCustomElementFn: undefined,
|
|
419
|
+
inputs: ['size']
|
|
420
|
+
})
|
|
421
|
+
@Component({
|
|
422
|
+
selector: 'flip-icon-arrow-forward',
|
|
423
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
424
|
+
template: '<ng-content></ng-content>',
|
|
425
|
+
inputs: ['size']
|
|
426
|
+
})
|
|
427
|
+
export class FlipIconArrowForward {
|
|
428
|
+
protected el: HTMLElement;
|
|
429
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
430
|
+
c.detach();
|
|
431
|
+
this.el = r.nativeElement;
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
export declare interface FlipIconArrowRightSmall extends Components.FlipIconArrowRightSmall {}
|
|
437
|
+
|
|
438
|
+
@ProxyCmp({
|
|
439
|
+
defineCustomElementFn: undefined,
|
|
440
|
+
inputs: ['size']
|
|
441
|
+
})
|
|
442
|
+
@Component({
|
|
443
|
+
selector: 'flip-icon-arrow-right-small',
|
|
444
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
445
|
+
template: '<ng-content></ng-content>',
|
|
446
|
+
inputs: ['size']
|
|
447
|
+
})
|
|
448
|
+
export class FlipIconArrowRightSmall {
|
|
449
|
+
protected el: HTMLElement;
|
|
450
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
451
|
+
c.detach();
|
|
452
|
+
this.el = r.nativeElement;
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
export declare interface FlipIconAttachment extends Components.FlipIconAttachment {}
|
|
458
|
+
|
|
459
|
+
@ProxyCmp({
|
|
460
|
+
defineCustomElementFn: undefined,
|
|
461
|
+
inputs: ['size']
|
|
462
|
+
})
|
|
463
|
+
@Component({
|
|
464
|
+
selector: 'flip-icon-attachment',
|
|
465
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
466
|
+
template: '<ng-content></ng-content>',
|
|
467
|
+
inputs: ['size']
|
|
468
|
+
})
|
|
469
|
+
export class FlipIconAttachment {
|
|
470
|
+
protected el: HTMLElement;
|
|
471
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
472
|
+
c.detach();
|
|
473
|
+
this.el = r.nativeElement;
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
export declare interface FlipIconCancel extends Components.FlipIconCancel {}
|
|
479
|
+
|
|
480
|
+
@ProxyCmp({
|
|
481
|
+
defineCustomElementFn: undefined,
|
|
482
|
+
inputs: ['size']
|
|
483
|
+
})
|
|
484
|
+
@Component({
|
|
485
|
+
selector: 'flip-icon-cancel',
|
|
486
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
487
|
+
template: '<ng-content></ng-content>',
|
|
488
|
+
inputs: ['size']
|
|
489
|
+
})
|
|
490
|
+
export class FlipIconCancel {
|
|
491
|
+
protected el: HTMLElement;
|
|
492
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
493
|
+
c.detach();
|
|
494
|
+
this.el = r.nativeElement;
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
export declare interface FlipIconChatBubble extends Components.FlipIconChatBubble {}
|
|
500
|
+
|
|
501
|
+
@ProxyCmp({
|
|
502
|
+
defineCustomElementFn: undefined,
|
|
503
|
+
inputs: ['size']
|
|
504
|
+
})
|
|
505
|
+
@Component({
|
|
506
|
+
selector: 'flip-icon-chat-bubble',
|
|
507
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
508
|
+
template: '<ng-content></ng-content>',
|
|
509
|
+
inputs: ['size']
|
|
510
|
+
})
|
|
511
|
+
export class FlipIconChatBubble {
|
|
512
|
+
protected el: HTMLElement;
|
|
513
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
514
|
+
c.detach();
|
|
515
|
+
this.el = r.nativeElement;
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
export declare interface FlipIconCheck extends Components.FlipIconCheck {}
|
|
521
|
+
|
|
522
|
+
@ProxyCmp({
|
|
523
|
+
defineCustomElementFn: undefined,
|
|
524
|
+
inputs: ['size']
|
|
525
|
+
})
|
|
526
|
+
@Component({
|
|
527
|
+
selector: 'flip-icon-check',
|
|
528
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
529
|
+
template: '<ng-content></ng-content>',
|
|
530
|
+
inputs: ['size']
|
|
531
|
+
})
|
|
532
|
+
export class FlipIconCheck {
|
|
533
|
+
protected el: HTMLElement;
|
|
534
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
535
|
+
c.detach();
|
|
536
|
+
this.el = r.nativeElement;
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
export declare interface FlipIconCheckCircle extends Components.FlipIconCheckCircle {}
|
|
542
|
+
|
|
543
|
+
@ProxyCmp({
|
|
544
|
+
defineCustomElementFn: undefined,
|
|
545
|
+
inputs: ['size']
|
|
546
|
+
})
|
|
547
|
+
@Component({
|
|
548
|
+
selector: 'flip-icon-check-circle',
|
|
549
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
550
|
+
template: '<ng-content></ng-content>',
|
|
551
|
+
inputs: ['size']
|
|
552
|
+
})
|
|
553
|
+
export class FlipIconCheckCircle {
|
|
554
|
+
protected el: HTMLElement;
|
|
555
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
556
|
+
c.detach();
|
|
557
|
+
this.el = r.nativeElement;
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
export declare interface FlipIconCheckSmall extends Components.FlipIconCheckSmall {}
|
|
563
|
+
|
|
564
|
+
@ProxyCmp({
|
|
565
|
+
defineCustomElementFn: undefined,
|
|
566
|
+
inputs: ['size']
|
|
567
|
+
})
|
|
568
|
+
@Component({
|
|
569
|
+
selector: 'flip-icon-check-small',
|
|
570
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
571
|
+
template: '<ng-content></ng-content>',
|
|
572
|
+
inputs: ['size']
|
|
573
|
+
})
|
|
574
|
+
export class FlipIconCheckSmall {
|
|
575
|
+
protected el: HTMLElement;
|
|
576
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
577
|
+
c.detach();
|
|
578
|
+
this.el = r.nativeElement;
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
export declare interface FlipIconCheckStrong extends Components.FlipIconCheckStrong {}
|
|
584
|
+
|
|
585
|
+
@ProxyCmp({
|
|
586
|
+
defineCustomElementFn: undefined,
|
|
587
|
+
inputs: ['size']
|
|
588
|
+
})
|
|
589
|
+
@Component({
|
|
590
|
+
selector: 'flip-icon-check-strong',
|
|
591
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
592
|
+
template: '<ng-content></ng-content>',
|
|
593
|
+
inputs: ['size']
|
|
594
|
+
})
|
|
595
|
+
export class FlipIconCheckStrong {
|
|
596
|
+
protected el: HTMLElement;
|
|
597
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
598
|
+
c.detach();
|
|
599
|
+
this.el = r.nativeElement;
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
export declare interface FlipIconChevronLeft extends Components.FlipIconChevronLeft {}
|
|
605
|
+
|
|
606
|
+
@ProxyCmp({
|
|
607
|
+
defineCustomElementFn: undefined,
|
|
608
|
+
inputs: ['size']
|
|
609
|
+
})
|
|
610
|
+
@Component({
|
|
611
|
+
selector: 'flip-icon-chevron-left',
|
|
612
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
613
|
+
template: '<ng-content></ng-content>',
|
|
614
|
+
inputs: ['size']
|
|
615
|
+
})
|
|
616
|
+
export class FlipIconChevronLeft {
|
|
617
|
+
protected el: HTMLElement;
|
|
618
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
619
|
+
c.detach();
|
|
620
|
+
this.el = r.nativeElement;
|
|
621
|
+
}
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
export declare interface FlipIconChevronRight extends Components.FlipIconChevronRight {}
|
|
626
|
+
|
|
627
|
+
@ProxyCmp({
|
|
628
|
+
defineCustomElementFn: undefined,
|
|
629
|
+
inputs: ['size']
|
|
630
|
+
})
|
|
631
|
+
@Component({
|
|
632
|
+
selector: 'flip-icon-chevron-right',
|
|
633
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
634
|
+
template: '<ng-content></ng-content>',
|
|
635
|
+
inputs: ['size']
|
|
636
|
+
})
|
|
637
|
+
export class FlipIconChevronRight {
|
|
638
|
+
protected el: HTMLElement;
|
|
639
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
640
|
+
c.detach();
|
|
641
|
+
this.el = r.nativeElement;
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
export declare interface FlipIconClose extends Components.FlipIconClose {}
|
|
647
|
+
|
|
648
|
+
@ProxyCmp({
|
|
649
|
+
defineCustomElementFn: undefined,
|
|
650
|
+
inputs: ['size']
|
|
651
|
+
})
|
|
652
|
+
@Component({
|
|
653
|
+
selector: 'flip-icon-close',
|
|
654
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
655
|
+
template: '<ng-content></ng-content>',
|
|
656
|
+
inputs: ['size']
|
|
657
|
+
})
|
|
658
|
+
export class FlipIconClose {
|
|
659
|
+
protected el: HTMLElement;
|
|
660
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
661
|
+
c.detach();
|
|
662
|
+
this.el = r.nativeElement;
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
export declare interface FlipIconCloseSmall extends Components.FlipIconCloseSmall {}
|
|
668
|
+
|
|
669
|
+
@ProxyCmp({
|
|
670
|
+
defineCustomElementFn: undefined,
|
|
671
|
+
inputs: ['size']
|
|
672
|
+
})
|
|
673
|
+
@Component({
|
|
674
|
+
selector: 'flip-icon-close-small',
|
|
675
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
676
|
+
template: '<ng-content></ng-content>',
|
|
677
|
+
inputs: ['size']
|
|
678
|
+
})
|
|
679
|
+
export class FlipIconCloseSmall {
|
|
680
|
+
protected el: HTMLElement;
|
|
681
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
682
|
+
c.detach();
|
|
683
|
+
this.el = r.nativeElement;
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
export declare interface FlipIconComment extends Components.FlipIconComment {}
|
|
689
|
+
|
|
690
|
+
@ProxyCmp({
|
|
691
|
+
defineCustomElementFn: undefined,
|
|
692
|
+
inputs: ['size']
|
|
693
|
+
})
|
|
694
|
+
@Component({
|
|
695
|
+
selector: 'flip-icon-comment',
|
|
696
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
697
|
+
template: '<ng-content></ng-content>',
|
|
698
|
+
inputs: ['size']
|
|
699
|
+
})
|
|
700
|
+
export class FlipIconComment {
|
|
701
|
+
protected el: HTMLElement;
|
|
702
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
703
|
+
c.detach();
|
|
704
|
+
this.el = r.nativeElement;
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
export declare interface FlipIconCopy extends Components.FlipIconCopy {}
|
|
710
|
+
|
|
711
|
+
@ProxyCmp({
|
|
712
|
+
defineCustomElementFn: undefined,
|
|
713
|
+
inputs: ['size']
|
|
714
|
+
})
|
|
715
|
+
@Component({
|
|
716
|
+
selector: 'flip-icon-copy',
|
|
717
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
718
|
+
template: '<ng-content></ng-content>',
|
|
719
|
+
inputs: ['size']
|
|
720
|
+
})
|
|
721
|
+
export class FlipIconCopy {
|
|
722
|
+
protected el: HTMLElement;
|
|
723
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
724
|
+
c.detach();
|
|
725
|
+
this.el = r.nativeElement;
|
|
726
|
+
}
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
export declare interface FlipIconDateRange extends Components.FlipIconDateRange {}
|
|
731
|
+
|
|
732
|
+
@ProxyCmp({
|
|
733
|
+
defineCustomElementFn: undefined,
|
|
734
|
+
inputs: ['size']
|
|
735
|
+
})
|
|
736
|
+
@Component({
|
|
737
|
+
selector: 'flip-icon-date-range',
|
|
738
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
739
|
+
template: '<ng-content></ng-content>',
|
|
740
|
+
inputs: ['size']
|
|
741
|
+
})
|
|
742
|
+
export class FlipIconDateRange {
|
|
743
|
+
protected el: HTMLElement;
|
|
744
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
745
|
+
c.detach();
|
|
746
|
+
this.el = r.nativeElement;
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
export declare interface FlipIconDelete extends Components.FlipIconDelete {}
|
|
752
|
+
|
|
753
|
+
@ProxyCmp({
|
|
754
|
+
defineCustomElementFn: undefined,
|
|
755
|
+
inputs: ['size']
|
|
756
|
+
})
|
|
757
|
+
@Component({
|
|
758
|
+
selector: 'flip-icon-delete',
|
|
759
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
760
|
+
template: '<ng-content></ng-content>',
|
|
761
|
+
inputs: ['size']
|
|
762
|
+
})
|
|
763
|
+
export class FlipIconDelete {
|
|
764
|
+
protected el: HTMLElement;
|
|
765
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
766
|
+
c.detach();
|
|
767
|
+
this.el = r.nativeElement;
|
|
768
|
+
}
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
export declare interface FlipIconDescription extends Components.FlipIconDescription {}
|
|
773
|
+
|
|
774
|
+
@ProxyCmp({
|
|
775
|
+
defineCustomElementFn: undefined,
|
|
776
|
+
inputs: ['size']
|
|
777
|
+
})
|
|
778
|
+
@Component({
|
|
779
|
+
selector: 'flip-icon-description',
|
|
780
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
781
|
+
template: '<ng-content></ng-content>',
|
|
782
|
+
inputs: ['size']
|
|
783
|
+
})
|
|
784
|
+
export class FlipIconDescription {
|
|
785
|
+
protected el: HTMLElement;
|
|
786
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
787
|
+
c.detach();
|
|
788
|
+
this.el = r.nativeElement;
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
export declare interface FlipIconDownload extends Components.FlipIconDownload {}
|
|
794
|
+
|
|
795
|
+
@ProxyCmp({
|
|
796
|
+
defineCustomElementFn: undefined,
|
|
797
|
+
inputs: ['size']
|
|
798
|
+
})
|
|
799
|
+
@Component({
|
|
800
|
+
selector: 'flip-icon-download',
|
|
801
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
802
|
+
template: '<ng-content></ng-content>',
|
|
803
|
+
inputs: ['size']
|
|
804
|
+
})
|
|
805
|
+
export class FlipIconDownload {
|
|
806
|
+
protected el: HTMLElement;
|
|
807
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
808
|
+
c.detach();
|
|
809
|
+
this.el = r.nativeElement;
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
export declare interface FlipIconEdit extends Components.FlipIconEdit {}
|
|
815
|
+
|
|
816
|
+
@ProxyCmp({
|
|
817
|
+
defineCustomElementFn: undefined,
|
|
818
|
+
inputs: ['size']
|
|
819
|
+
})
|
|
820
|
+
@Component({
|
|
821
|
+
selector: 'flip-icon-edit',
|
|
822
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
823
|
+
template: '<ng-content></ng-content>',
|
|
824
|
+
inputs: ['size']
|
|
825
|
+
})
|
|
826
|
+
export class FlipIconEdit {
|
|
827
|
+
protected el: HTMLElement;
|
|
828
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
829
|
+
c.detach();
|
|
830
|
+
this.el = r.nativeElement;
|
|
831
|
+
}
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
export declare interface FlipIconEmojiMood extends Components.FlipIconEmojiMood {}
|
|
836
|
+
|
|
837
|
+
@ProxyCmp({
|
|
838
|
+
defineCustomElementFn: undefined,
|
|
839
|
+
inputs: ['size']
|
|
840
|
+
})
|
|
841
|
+
@Component({
|
|
842
|
+
selector: 'flip-icon-emoji-mood',
|
|
843
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
844
|
+
template: '<ng-content></ng-content>',
|
|
845
|
+
inputs: ['size']
|
|
846
|
+
})
|
|
847
|
+
export class FlipIconEmojiMood {
|
|
848
|
+
protected el: HTMLElement;
|
|
849
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
850
|
+
c.detach();
|
|
851
|
+
this.el = r.nativeElement;
|
|
852
|
+
}
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
|
|
856
|
+
export declare interface FlipIconEmojiSatisfied extends Components.FlipIconEmojiSatisfied {}
|
|
857
|
+
|
|
858
|
+
@ProxyCmp({
|
|
859
|
+
defineCustomElementFn: undefined,
|
|
860
|
+
inputs: ['size']
|
|
861
|
+
})
|
|
862
|
+
@Component({
|
|
863
|
+
selector: 'flip-icon-emoji-satisfied',
|
|
864
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
865
|
+
template: '<ng-content></ng-content>',
|
|
866
|
+
inputs: ['size']
|
|
867
|
+
})
|
|
868
|
+
export class FlipIconEmojiSatisfied {
|
|
869
|
+
protected el: HTMLElement;
|
|
870
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
871
|
+
c.detach();
|
|
872
|
+
this.el = r.nativeElement;
|
|
873
|
+
}
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
export declare interface FlipIconError extends Components.FlipIconError {}
|
|
878
|
+
|
|
879
|
+
@ProxyCmp({
|
|
880
|
+
defineCustomElementFn: undefined,
|
|
881
|
+
inputs: ['size']
|
|
882
|
+
})
|
|
883
|
+
@Component({
|
|
884
|
+
selector: 'flip-icon-error',
|
|
885
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
886
|
+
template: '<ng-content></ng-content>',
|
|
887
|
+
inputs: ['size']
|
|
888
|
+
})
|
|
889
|
+
export class FlipIconError {
|
|
890
|
+
protected el: HTMLElement;
|
|
891
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
892
|
+
c.detach();
|
|
893
|
+
this.el = r.nativeElement;
|
|
894
|
+
}
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
export declare interface FlipIconExpandLess extends Components.FlipIconExpandLess {}
|
|
899
|
+
|
|
900
|
+
@ProxyCmp({
|
|
901
|
+
defineCustomElementFn: undefined,
|
|
902
|
+
inputs: ['size']
|
|
903
|
+
})
|
|
904
|
+
@Component({
|
|
905
|
+
selector: 'flip-icon-expand-less',
|
|
906
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
907
|
+
template: '<ng-content></ng-content>',
|
|
908
|
+
inputs: ['size']
|
|
909
|
+
})
|
|
910
|
+
export class FlipIconExpandLess {
|
|
911
|
+
protected el: HTMLElement;
|
|
912
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
913
|
+
c.detach();
|
|
914
|
+
this.el = r.nativeElement;
|
|
915
|
+
}
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
export declare interface FlipIconExpandMore extends Components.FlipIconExpandMore {}
|
|
920
|
+
|
|
921
|
+
@ProxyCmp({
|
|
922
|
+
defineCustomElementFn: undefined,
|
|
923
|
+
inputs: ['size']
|
|
924
|
+
})
|
|
925
|
+
@Component({
|
|
926
|
+
selector: 'flip-icon-expand-more',
|
|
927
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
928
|
+
template: '<ng-content></ng-content>',
|
|
929
|
+
inputs: ['size']
|
|
930
|
+
})
|
|
931
|
+
export class FlipIconExpandMore {
|
|
932
|
+
protected el: HTMLElement;
|
|
933
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
934
|
+
c.detach();
|
|
935
|
+
this.el = r.nativeElement;
|
|
936
|
+
}
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
|
|
940
|
+
export declare interface FlipIconFile extends Components.FlipIconFile {}
|
|
941
|
+
|
|
942
|
+
@ProxyCmp({
|
|
943
|
+
defineCustomElementFn: undefined,
|
|
944
|
+
inputs: ['size']
|
|
945
|
+
})
|
|
946
|
+
@Component({
|
|
947
|
+
selector: 'flip-icon-file',
|
|
948
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
949
|
+
template: '<ng-content></ng-content>',
|
|
950
|
+
inputs: ['size']
|
|
951
|
+
})
|
|
952
|
+
export class FlipIconFile {
|
|
953
|
+
protected el: HTMLElement;
|
|
954
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
955
|
+
c.detach();
|
|
956
|
+
this.el = r.nativeElement;
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
export declare interface FlipIconFolderShared extends Components.FlipIconFolderShared {}
|
|
962
|
+
|
|
963
|
+
@ProxyCmp({
|
|
964
|
+
defineCustomElementFn: undefined,
|
|
965
|
+
inputs: ['size']
|
|
966
|
+
})
|
|
967
|
+
@Component({
|
|
968
|
+
selector: 'flip-icon-folder-shared',
|
|
969
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
970
|
+
template: '<ng-content></ng-content>',
|
|
971
|
+
inputs: ['size']
|
|
972
|
+
})
|
|
973
|
+
export class FlipIconFolderShared {
|
|
974
|
+
protected el: HTMLElement;
|
|
975
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
976
|
+
c.detach();
|
|
977
|
+
this.el = r.nativeElement;
|
|
978
|
+
}
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
export declare interface FlipIconGroupAssign extends Components.FlipIconGroupAssign {}
|
|
983
|
+
|
|
984
|
+
@ProxyCmp({
|
|
985
|
+
defineCustomElementFn: undefined,
|
|
986
|
+
inputs: ['size']
|
|
987
|
+
})
|
|
988
|
+
@Component({
|
|
989
|
+
selector: 'flip-icon-group-assign',
|
|
990
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
991
|
+
template: '<ng-content></ng-content>',
|
|
992
|
+
inputs: ['size']
|
|
993
|
+
})
|
|
994
|
+
export class FlipIconGroupAssign {
|
|
995
|
+
protected el: HTMLElement;
|
|
996
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
997
|
+
c.detach();
|
|
998
|
+
this.el = r.nativeElement;
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
export declare interface FlipIconGroups extends Components.FlipIconGroups {}
|
|
1004
|
+
|
|
1005
|
+
@ProxyCmp({
|
|
1006
|
+
defineCustomElementFn: undefined,
|
|
1007
|
+
inputs: ['size']
|
|
1008
|
+
})
|
|
1009
|
+
@Component({
|
|
1010
|
+
selector: 'flip-icon-groups',
|
|
1011
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1012
|
+
template: '<ng-content></ng-content>',
|
|
1013
|
+
inputs: ['size']
|
|
1014
|
+
})
|
|
1015
|
+
export class FlipIconGroups {
|
|
1016
|
+
protected el: HTMLElement;
|
|
1017
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1018
|
+
c.detach();
|
|
1019
|
+
this.el = r.nativeElement;
|
|
1020
|
+
}
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
|
|
1024
|
+
export declare interface FlipIconGroupsCustom extends Components.FlipIconGroupsCustom {}
|
|
1025
|
+
|
|
1026
|
+
@ProxyCmp({
|
|
1027
|
+
defineCustomElementFn: undefined,
|
|
1028
|
+
inputs: ['size']
|
|
1029
|
+
})
|
|
1030
|
+
@Component({
|
|
1031
|
+
selector: 'flip-icon-groups-custom',
|
|
1032
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1033
|
+
template: '<ng-content></ng-content>',
|
|
1034
|
+
inputs: ['size']
|
|
1035
|
+
})
|
|
1036
|
+
export class FlipIconGroupsCustom {
|
|
1037
|
+
protected el: HTMLElement;
|
|
1038
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1039
|
+
c.detach();
|
|
1040
|
+
this.el = r.nativeElement;
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
|
|
1045
|
+
export declare interface FlipIconImage extends Components.FlipIconImage {}
|
|
1046
|
+
|
|
1047
|
+
@ProxyCmp({
|
|
1048
|
+
defineCustomElementFn: undefined,
|
|
1049
|
+
inputs: ['size']
|
|
1050
|
+
})
|
|
1051
|
+
@Component({
|
|
1052
|
+
selector: 'flip-icon-image',
|
|
1053
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1054
|
+
template: '<ng-content></ng-content>',
|
|
1055
|
+
inputs: ['size']
|
|
1056
|
+
})
|
|
1057
|
+
export class FlipIconImage {
|
|
1058
|
+
protected el: HTMLElement;
|
|
1059
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1060
|
+
c.detach();
|
|
1061
|
+
this.el = r.nativeElement;
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
|
|
1066
|
+
export declare interface FlipIconInfo extends Components.FlipIconInfo {}
|
|
1067
|
+
|
|
1068
|
+
@ProxyCmp({
|
|
1069
|
+
defineCustomElementFn: undefined,
|
|
1070
|
+
inputs: ['size']
|
|
1071
|
+
})
|
|
1072
|
+
@Component({
|
|
1073
|
+
selector: 'flip-icon-info',
|
|
1074
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1075
|
+
template: '<ng-content></ng-content>',
|
|
1076
|
+
inputs: ['size']
|
|
1077
|
+
})
|
|
1078
|
+
export class FlipIconInfo {
|
|
1079
|
+
protected el: HTMLElement;
|
|
1080
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1081
|
+
c.detach();
|
|
1082
|
+
this.el = r.nativeElement;
|
|
1083
|
+
}
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
|
|
1087
|
+
export declare interface FlipIconInventory extends Components.FlipIconInventory {}
|
|
1088
|
+
|
|
1089
|
+
@ProxyCmp({
|
|
1090
|
+
defineCustomElementFn: undefined,
|
|
1091
|
+
inputs: ['size']
|
|
1092
|
+
})
|
|
1093
|
+
@Component({
|
|
1094
|
+
selector: 'flip-icon-inventory',
|
|
1095
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1096
|
+
template: '<ng-content></ng-content>',
|
|
1097
|
+
inputs: ['size']
|
|
1098
|
+
})
|
|
1099
|
+
export class FlipIconInventory {
|
|
1100
|
+
protected el: HTMLElement;
|
|
1101
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1102
|
+
c.detach();
|
|
1103
|
+
this.el = r.nativeElement;
|
|
1104
|
+
}
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
|
|
1108
|
+
export declare interface FlipIconLike extends Components.FlipIconLike {}
|
|
1109
|
+
|
|
1110
|
+
@ProxyCmp({
|
|
1111
|
+
defineCustomElementFn: undefined,
|
|
1112
|
+
inputs: ['size']
|
|
1113
|
+
})
|
|
1114
|
+
@Component({
|
|
1115
|
+
selector: 'flip-icon-like',
|
|
1116
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1117
|
+
template: '<ng-content></ng-content>',
|
|
1118
|
+
inputs: ['size']
|
|
1119
|
+
})
|
|
1120
|
+
export class FlipIconLike {
|
|
1121
|
+
protected el: HTMLElement;
|
|
1122
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1123
|
+
c.detach();
|
|
1124
|
+
this.el = r.nativeElement;
|
|
1125
|
+
}
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
|
|
1129
|
+
export declare interface FlipIconLink extends Components.FlipIconLink {}
|
|
1130
|
+
|
|
1131
|
+
@ProxyCmp({
|
|
1132
|
+
defineCustomElementFn: undefined,
|
|
1133
|
+
inputs: ['size']
|
|
1134
|
+
})
|
|
1135
|
+
@Component({
|
|
1136
|
+
selector: 'flip-icon-link',
|
|
1137
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1138
|
+
template: '<ng-content></ng-content>',
|
|
1139
|
+
inputs: ['size']
|
|
1140
|
+
})
|
|
1141
|
+
export class FlipIconLink {
|
|
1142
|
+
protected el: HTMLElement;
|
|
1143
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1144
|
+
c.detach();
|
|
1145
|
+
this.el = r.nativeElement;
|
|
1146
|
+
}
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
|
|
1150
|
+
export declare interface FlipIconLock extends Components.FlipIconLock {}
|
|
1151
|
+
|
|
1152
|
+
@ProxyCmp({
|
|
1153
|
+
defineCustomElementFn: undefined,
|
|
1154
|
+
inputs: ['size']
|
|
1155
|
+
})
|
|
1156
|
+
@Component({
|
|
1157
|
+
selector: 'flip-icon-lock',
|
|
1158
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1159
|
+
template: '<ng-content></ng-content>',
|
|
1160
|
+
inputs: ['size']
|
|
1161
|
+
})
|
|
1162
|
+
export class FlipIconLock {
|
|
1163
|
+
protected el: HTMLElement;
|
|
1164
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1165
|
+
c.detach();
|
|
1166
|
+
this.el = r.nativeElement;
|
|
1167
|
+
}
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
|
|
1171
|
+
export declare interface FlipIconLogout extends Components.FlipIconLogout {}
|
|
1172
|
+
|
|
1173
|
+
@ProxyCmp({
|
|
1174
|
+
defineCustomElementFn: undefined,
|
|
1175
|
+
inputs: ['size']
|
|
1176
|
+
})
|
|
1177
|
+
@Component({
|
|
1178
|
+
selector: 'flip-icon-logout',
|
|
1179
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1180
|
+
template: '<ng-content></ng-content>',
|
|
1181
|
+
inputs: ['size']
|
|
1182
|
+
})
|
|
1183
|
+
export class FlipIconLogout {
|
|
1184
|
+
protected el: HTMLElement;
|
|
1185
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1186
|
+
c.detach();
|
|
1187
|
+
this.el = r.nativeElement;
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
|
|
1192
|
+
export declare interface FlipIconMail extends Components.FlipIconMail {}
|
|
1193
|
+
|
|
1194
|
+
@ProxyCmp({
|
|
1195
|
+
defineCustomElementFn: undefined,
|
|
1196
|
+
inputs: ['size']
|
|
1197
|
+
})
|
|
1198
|
+
@Component({
|
|
1199
|
+
selector: 'flip-icon-mail',
|
|
1200
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1201
|
+
template: '<ng-content></ng-content>',
|
|
1202
|
+
inputs: ['size']
|
|
1203
|
+
})
|
|
1204
|
+
export class FlipIconMail {
|
|
1205
|
+
protected el: HTMLElement;
|
|
1206
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1207
|
+
c.detach();
|
|
1208
|
+
this.el = r.nativeElement;
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
|
|
1213
|
+
export declare interface FlipIconManageAccounts extends Components.FlipIconManageAccounts {}
|
|
1214
|
+
|
|
1215
|
+
@ProxyCmp({
|
|
1216
|
+
defineCustomElementFn: undefined,
|
|
1217
|
+
inputs: ['size']
|
|
1218
|
+
})
|
|
1219
|
+
@Component({
|
|
1220
|
+
selector: 'flip-icon-manage-accounts',
|
|
1221
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1222
|
+
template: '<ng-content></ng-content>',
|
|
1223
|
+
inputs: ['size']
|
|
1224
|
+
})
|
|
1225
|
+
export class FlipIconManageAccounts {
|
|
1226
|
+
protected el: HTMLElement;
|
|
1227
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1228
|
+
c.detach();
|
|
1229
|
+
this.el = r.nativeElement;
|
|
1230
|
+
}
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
|
|
1234
|
+
export declare interface FlipIconMention extends Components.FlipIconMention {}
|
|
1235
|
+
|
|
1236
|
+
@ProxyCmp({
|
|
1237
|
+
defineCustomElementFn: undefined,
|
|
1238
|
+
inputs: ['size']
|
|
1239
|
+
})
|
|
1240
|
+
@Component({
|
|
1241
|
+
selector: 'flip-icon-mention',
|
|
1242
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1243
|
+
template: '<ng-content></ng-content>',
|
|
1244
|
+
inputs: ['size']
|
|
1245
|
+
})
|
|
1246
|
+
export class FlipIconMention {
|
|
1247
|
+
protected el: HTMLElement;
|
|
1248
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1249
|
+
c.detach();
|
|
1250
|
+
this.el = r.nativeElement;
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
|
|
1255
|
+
export declare interface FlipIconMessage extends Components.FlipIconMessage {}
|
|
1256
|
+
|
|
1257
|
+
@ProxyCmp({
|
|
1258
|
+
defineCustomElementFn: undefined,
|
|
1259
|
+
inputs: ['size']
|
|
1260
|
+
})
|
|
1261
|
+
@Component({
|
|
1262
|
+
selector: 'flip-icon-message',
|
|
1263
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1264
|
+
template: '<ng-content></ng-content>',
|
|
1265
|
+
inputs: ['size']
|
|
1266
|
+
})
|
|
1267
|
+
export class FlipIconMessage {
|
|
1268
|
+
protected el: HTMLElement;
|
|
1269
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1270
|
+
c.detach();
|
|
1271
|
+
this.el = r.nativeElement;
|
|
1272
|
+
}
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
|
|
1276
|
+
export declare interface FlipIconMoreHorizontal extends Components.FlipIconMoreHorizontal {}
|
|
1277
|
+
|
|
1278
|
+
@ProxyCmp({
|
|
1279
|
+
defineCustomElementFn: undefined,
|
|
1280
|
+
inputs: ['size']
|
|
1281
|
+
})
|
|
1282
|
+
@Component({
|
|
1283
|
+
selector: 'flip-icon-more-horizontal',
|
|
1284
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1285
|
+
template: '<ng-content></ng-content>',
|
|
1286
|
+
inputs: ['size']
|
|
1287
|
+
})
|
|
1288
|
+
export class FlipIconMoreHorizontal {
|
|
1289
|
+
protected el: HTMLElement;
|
|
1290
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1291
|
+
c.detach();
|
|
1292
|
+
this.el = r.nativeElement;
|
|
1293
|
+
}
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
|
|
1297
|
+
export declare interface FlipIconMoreVertikal extends Components.FlipIconMoreVertikal {}
|
|
1298
|
+
|
|
1299
|
+
@ProxyCmp({
|
|
1300
|
+
defineCustomElementFn: undefined,
|
|
1301
|
+
inputs: ['size']
|
|
1302
|
+
})
|
|
1303
|
+
@Component({
|
|
1304
|
+
selector: 'flip-icon-more-vertikal',
|
|
1305
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1306
|
+
template: '<ng-content></ng-content>',
|
|
1307
|
+
inputs: ['size']
|
|
1308
|
+
})
|
|
1309
|
+
export class FlipIconMoreVertikal {
|
|
1310
|
+
protected el: HTMLElement;
|
|
1311
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1312
|
+
c.detach();
|
|
1313
|
+
this.el = r.nativeElement;
|
|
1314
|
+
}
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
|
|
1318
|
+
export declare interface FlipIconNotifications extends Components.FlipIconNotifications {}
|
|
1319
|
+
|
|
1320
|
+
@ProxyCmp({
|
|
1321
|
+
defineCustomElementFn: undefined,
|
|
1322
|
+
inputs: ['size']
|
|
1323
|
+
})
|
|
1324
|
+
@Component({
|
|
1325
|
+
selector: 'flip-icon-notifications',
|
|
1326
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1327
|
+
template: '<ng-content></ng-content>',
|
|
1328
|
+
inputs: ['size']
|
|
1329
|
+
})
|
|
1330
|
+
export class FlipIconNotifications {
|
|
1331
|
+
protected el: HTMLElement;
|
|
1332
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1333
|
+
c.detach();
|
|
1334
|
+
this.el = r.nativeElement;
|
|
1335
|
+
}
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
|
|
1339
|
+
export declare interface FlipIconNotificationsActive extends Components.FlipIconNotificationsActive {}
|
|
1340
|
+
|
|
1341
|
+
@ProxyCmp({
|
|
1342
|
+
defineCustomElementFn: undefined,
|
|
1343
|
+
inputs: ['size']
|
|
1344
|
+
})
|
|
1345
|
+
@Component({
|
|
1346
|
+
selector: 'flip-icon-notifications-active',
|
|
1347
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1348
|
+
template: '<ng-content></ng-content>',
|
|
1349
|
+
inputs: ['size']
|
|
1350
|
+
})
|
|
1351
|
+
export class FlipIconNotificationsActive {
|
|
1352
|
+
protected el: HTMLElement;
|
|
1353
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1354
|
+
c.detach();
|
|
1355
|
+
this.el = r.nativeElement;
|
|
1356
|
+
}
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
|
|
1360
|
+
export declare interface FlipIconNotificationsOff extends Components.FlipIconNotificationsOff {}
|
|
1361
|
+
|
|
1362
|
+
@ProxyCmp({
|
|
1363
|
+
defineCustomElementFn: undefined,
|
|
1364
|
+
inputs: ['size']
|
|
1365
|
+
})
|
|
1366
|
+
@Component({
|
|
1367
|
+
selector: 'flip-icon-notifications-off',
|
|
1368
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1369
|
+
template: '<ng-content></ng-content>',
|
|
1370
|
+
inputs: ['size']
|
|
1371
|
+
})
|
|
1372
|
+
export class FlipIconNotificationsOff {
|
|
1373
|
+
protected el: HTMLElement;
|
|
1374
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1375
|
+
c.detach();
|
|
1376
|
+
this.el = r.nativeElement;
|
|
1377
|
+
}
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
export declare interface FlipIconPeopleAlt extends Components.FlipIconPeopleAlt {}
|
|
1382
|
+
|
|
1383
|
+
@ProxyCmp({
|
|
1384
|
+
defineCustomElementFn: undefined,
|
|
1385
|
+
inputs: ['size']
|
|
1386
|
+
})
|
|
1387
|
+
@Component({
|
|
1388
|
+
selector: 'flip-icon-people-alt',
|
|
1389
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1390
|
+
template: '<ng-content></ng-content>',
|
|
1391
|
+
inputs: ['size']
|
|
1392
|
+
})
|
|
1393
|
+
export class FlipIconPeopleAlt {
|
|
1394
|
+
protected el: HTMLElement;
|
|
1395
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1396
|
+
c.detach();
|
|
1397
|
+
this.el = r.nativeElement;
|
|
1398
|
+
}
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
|
|
1402
|
+
export declare interface FlipIconPerson extends Components.FlipIconPerson {}
|
|
1403
|
+
|
|
1404
|
+
@ProxyCmp({
|
|
1405
|
+
defineCustomElementFn: undefined,
|
|
1406
|
+
inputs: ['size']
|
|
1407
|
+
})
|
|
1408
|
+
@Component({
|
|
1409
|
+
selector: 'flip-icon-person',
|
|
1410
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1411
|
+
template: '<ng-content></ng-content>',
|
|
1412
|
+
inputs: ['size']
|
|
1413
|
+
})
|
|
1414
|
+
export class FlipIconPerson {
|
|
1415
|
+
protected el: HTMLElement;
|
|
1416
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1417
|
+
c.detach();
|
|
1418
|
+
this.el = r.nativeElement;
|
|
1419
|
+
}
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
|
|
1423
|
+
export declare interface FlipIconPersonOff extends Components.FlipIconPersonOff {}
|
|
1424
|
+
|
|
1425
|
+
@ProxyCmp({
|
|
1426
|
+
defineCustomElementFn: undefined,
|
|
1427
|
+
inputs: ['size']
|
|
1428
|
+
})
|
|
1429
|
+
@Component({
|
|
1430
|
+
selector: 'flip-icon-person-off',
|
|
1431
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1432
|
+
template: '<ng-content></ng-content>',
|
|
1433
|
+
inputs: ['size']
|
|
1434
|
+
})
|
|
1435
|
+
export class FlipIconPersonOff {
|
|
1436
|
+
protected el: HTMLElement;
|
|
1437
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1438
|
+
c.detach();
|
|
1439
|
+
this.el = r.nativeElement;
|
|
1440
|
+
}
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
|
|
1444
|
+
export declare interface FlipIconPhone extends Components.FlipIconPhone {}
|
|
1445
|
+
|
|
1446
|
+
@ProxyCmp({
|
|
1447
|
+
defineCustomElementFn: undefined,
|
|
1448
|
+
inputs: ['size']
|
|
1449
|
+
})
|
|
1450
|
+
@Component({
|
|
1451
|
+
selector: 'flip-icon-phone',
|
|
1452
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1453
|
+
template: '<ng-content></ng-content>',
|
|
1454
|
+
inputs: ['size']
|
|
1455
|
+
})
|
|
1456
|
+
export class FlipIconPhone {
|
|
1457
|
+
protected el: HTMLElement;
|
|
1458
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1459
|
+
c.detach();
|
|
1460
|
+
this.el = r.nativeElement;
|
|
1461
|
+
}
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
|
|
1465
|
+
export declare interface FlipIconPoll extends Components.FlipIconPoll {}
|
|
1466
|
+
|
|
1467
|
+
@ProxyCmp({
|
|
1468
|
+
defineCustomElementFn: undefined,
|
|
1469
|
+
inputs: ['size']
|
|
1470
|
+
})
|
|
1471
|
+
@Component({
|
|
1472
|
+
selector: 'flip-icon-poll',
|
|
1473
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1474
|
+
template: '<ng-content></ng-content>',
|
|
1475
|
+
inputs: ['size']
|
|
1476
|
+
})
|
|
1477
|
+
export class FlipIconPoll {
|
|
1478
|
+
protected el: HTMLElement;
|
|
1479
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1480
|
+
c.detach();
|
|
1481
|
+
this.el = r.nativeElement;
|
|
1482
|
+
}
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
|
|
1486
|
+
export declare interface FlipIconRecieved extends Components.FlipIconRecieved {}
|
|
1487
|
+
|
|
1488
|
+
@ProxyCmp({
|
|
1489
|
+
defineCustomElementFn: undefined,
|
|
1490
|
+
inputs: ['size']
|
|
1491
|
+
})
|
|
1492
|
+
@Component({
|
|
1493
|
+
selector: 'flip-icon-recieved',
|
|
1494
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1495
|
+
template: '<ng-content></ng-content>',
|
|
1496
|
+
inputs: ['size']
|
|
1497
|
+
})
|
|
1498
|
+
export class FlipIconRecieved {
|
|
1499
|
+
protected el: HTMLElement;
|
|
1500
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1501
|
+
c.detach();
|
|
1502
|
+
this.el = r.nativeElement;
|
|
1503
|
+
}
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
|
|
1507
|
+
export declare interface FlipIconSearch extends Components.FlipIconSearch {}
|
|
1508
|
+
|
|
1509
|
+
@ProxyCmp({
|
|
1510
|
+
defineCustomElementFn: undefined,
|
|
1511
|
+
inputs: ['size']
|
|
1512
|
+
})
|
|
1513
|
+
@Component({
|
|
1514
|
+
selector: 'flip-icon-search',
|
|
1515
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1516
|
+
template: '<ng-content></ng-content>',
|
|
1517
|
+
inputs: ['size']
|
|
1518
|
+
})
|
|
1519
|
+
export class FlipIconSearch {
|
|
1520
|
+
protected el: HTMLElement;
|
|
1521
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1522
|
+
c.detach();
|
|
1523
|
+
this.el = r.nativeElement;
|
|
1524
|
+
}
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1527
|
+
|
|
1528
|
+
export declare interface FlipIconSearchStrong extends Components.FlipIconSearchStrong {}
|
|
1529
|
+
|
|
1530
|
+
@ProxyCmp({
|
|
1531
|
+
defineCustomElementFn: undefined,
|
|
1532
|
+
inputs: ['size']
|
|
1533
|
+
})
|
|
1534
|
+
@Component({
|
|
1535
|
+
selector: 'flip-icon-search-strong',
|
|
1536
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1537
|
+
template: '<ng-content></ng-content>',
|
|
1538
|
+
inputs: ['size']
|
|
1539
|
+
})
|
|
1540
|
+
export class FlipIconSearchStrong {
|
|
1541
|
+
protected el: HTMLElement;
|
|
1542
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1543
|
+
c.detach();
|
|
1544
|
+
this.el = r.nativeElement;
|
|
1545
|
+
}
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
|
|
1549
|
+
export declare interface FlipIconSend extends Components.FlipIconSend {}
|
|
1550
|
+
|
|
1551
|
+
@ProxyCmp({
|
|
1552
|
+
defineCustomElementFn: undefined,
|
|
1553
|
+
inputs: ['size']
|
|
1554
|
+
})
|
|
1555
|
+
@Component({
|
|
1556
|
+
selector: 'flip-icon-send',
|
|
1557
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1558
|
+
template: '<ng-content></ng-content>',
|
|
1559
|
+
inputs: ['size']
|
|
1560
|
+
})
|
|
1561
|
+
export class FlipIconSend {
|
|
1562
|
+
protected el: HTMLElement;
|
|
1563
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1564
|
+
c.detach();
|
|
1565
|
+
this.el = r.nativeElement;
|
|
1566
|
+
}
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
|
|
1570
|
+
export declare interface FlipIconSettings extends Components.FlipIconSettings {}
|
|
1571
|
+
|
|
1572
|
+
@ProxyCmp({
|
|
1573
|
+
defineCustomElementFn: undefined,
|
|
1574
|
+
inputs: ['size']
|
|
1575
|
+
})
|
|
1576
|
+
@Component({
|
|
1577
|
+
selector: 'flip-icon-settings',
|
|
1578
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1579
|
+
template: '<ng-content></ng-content>',
|
|
1580
|
+
inputs: ['size']
|
|
1581
|
+
})
|
|
1582
|
+
export class FlipIconSettings {
|
|
1583
|
+
protected el: HTMLElement;
|
|
1584
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1585
|
+
c.detach();
|
|
1586
|
+
this.el = r.nativeElement;
|
|
1587
|
+
}
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1590
|
+
|
|
1591
|
+
export declare interface FlipIconTimeFilled extends Components.FlipIconTimeFilled {}
|
|
1592
|
+
|
|
1593
|
+
@ProxyCmp({
|
|
1594
|
+
defineCustomElementFn: undefined,
|
|
1595
|
+
inputs: ['size']
|
|
1596
|
+
})
|
|
1597
|
+
@Component({
|
|
1598
|
+
selector: 'flip-icon-time-filled',
|
|
1599
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1600
|
+
template: '<ng-content></ng-content>',
|
|
1601
|
+
inputs: ['size']
|
|
1602
|
+
})
|
|
1603
|
+
export class FlipIconTimeFilled {
|
|
1604
|
+
protected el: HTMLElement;
|
|
1605
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1606
|
+
c.detach();
|
|
1607
|
+
this.el = r.nativeElement;
|
|
1608
|
+
}
|
|
1609
|
+
}
|
|
1610
|
+
|
|
1611
|
+
|
|
1612
|
+
export declare interface FlipIconTimeOutlined extends Components.FlipIconTimeOutlined {}
|
|
1613
|
+
|
|
1614
|
+
@ProxyCmp({
|
|
1615
|
+
defineCustomElementFn: undefined,
|
|
1616
|
+
inputs: ['size']
|
|
1617
|
+
})
|
|
1618
|
+
@Component({
|
|
1619
|
+
selector: 'flip-icon-time-outlined',
|
|
1620
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1621
|
+
template: '<ng-content></ng-content>',
|
|
1622
|
+
inputs: ['size']
|
|
1623
|
+
})
|
|
1624
|
+
export class FlipIconTimeOutlined {
|
|
1625
|
+
protected el: HTMLElement;
|
|
1626
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1627
|
+
c.detach();
|
|
1628
|
+
this.el = r.nativeElement;
|
|
1629
|
+
}
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
|
|
1633
|
+
export declare interface FlipIconToday extends Components.FlipIconToday {}
|
|
1634
|
+
|
|
1635
|
+
@ProxyCmp({
|
|
1636
|
+
defineCustomElementFn: undefined,
|
|
1637
|
+
inputs: ['size']
|
|
1638
|
+
})
|
|
1639
|
+
@Component({
|
|
1640
|
+
selector: 'flip-icon-today',
|
|
1641
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1642
|
+
template: '<ng-content></ng-content>',
|
|
1643
|
+
inputs: ['size']
|
|
1644
|
+
})
|
|
1645
|
+
export class FlipIconToday {
|
|
1646
|
+
protected el: HTMLElement;
|
|
1647
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1648
|
+
c.detach();
|
|
1649
|
+
this.el = r.nativeElement;
|
|
1650
|
+
}
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
|
|
1654
|
+
export declare interface FlipIconUserAssign extends Components.FlipIconUserAssign {}
|
|
1655
|
+
|
|
1656
|
+
@ProxyCmp({
|
|
1657
|
+
defineCustomElementFn: undefined,
|
|
1658
|
+
inputs: ['size']
|
|
1659
|
+
})
|
|
1660
|
+
@Component({
|
|
1661
|
+
selector: 'flip-icon-user-assign',
|
|
1662
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1663
|
+
template: '<ng-content></ng-content>',
|
|
1664
|
+
inputs: ['size']
|
|
1665
|
+
})
|
|
1666
|
+
export class FlipIconUserAssign {
|
|
1667
|
+
protected el: HTMLElement;
|
|
1668
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1669
|
+
c.detach();
|
|
1670
|
+
this.el = r.nativeElement;
|
|
1671
|
+
}
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
|
|
1675
|
+
export declare interface FlipIconVideoCamera extends Components.FlipIconVideoCamera {}
|
|
1676
|
+
|
|
1677
|
+
@ProxyCmp({
|
|
1678
|
+
defineCustomElementFn: undefined,
|
|
1679
|
+
inputs: ['size']
|
|
1680
|
+
})
|
|
1681
|
+
@Component({
|
|
1682
|
+
selector: 'flip-icon-video-camera',
|
|
1683
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1684
|
+
template: '<ng-content></ng-content>',
|
|
1685
|
+
inputs: ['size']
|
|
1686
|
+
})
|
|
1687
|
+
export class FlipIconVideoCamera {
|
|
1688
|
+
protected el: HTMLElement;
|
|
1689
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1690
|
+
c.detach();
|
|
1691
|
+
this.el = r.nativeElement;
|
|
1692
|
+
}
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
|
|
1696
|
+
export declare interface FlipIconVisibility extends Components.FlipIconVisibility {}
|
|
1697
|
+
|
|
1698
|
+
@ProxyCmp({
|
|
1699
|
+
defineCustomElementFn: undefined,
|
|
1700
|
+
inputs: ['size']
|
|
1701
|
+
})
|
|
1702
|
+
@Component({
|
|
1703
|
+
selector: 'flip-icon-visibility',
|
|
1704
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1705
|
+
template: '<ng-content></ng-content>',
|
|
1706
|
+
inputs: ['size']
|
|
1707
|
+
})
|
|
1708
|
+
export class FlipIconVisibility {
|
|
1709
|
+
protected el: HTMLElement;
|
|
1710
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1711
|
+
c.detach();
|
|
1712
|
+
this.el = r.nativeElement;
|
|
1713
|
+
}
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1716
|
+
|
|
1717
|
+
export declare interface FlipIconVisibilityOff extends Components.FlipIconVisibilityOff {}
|
|
1718
|
+
|
|
1719
|
+
@ProxyCmp({
|
|
1720
|
+
defineCustomElementFn: undefined,
|
|
1721
|
+
inputs: ['size']
|
|
1722
|
+
})
|
|
1723
|
+
@Component({
|
|
1724
|
+
selector: 'flip-icon-visibility-off',
|
|
1725
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1726
|
+
template: '<ng-content></ng-content>',
|
|
1727
|
+
inputs: ['size']
|
|
1728
|
+
})
|
|
1729
|
+
export class FlipIconVisibilityOff {
|
|
1730
|
+
protected el: HTMLElement;
|
|
1731
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1732
|
+
c.detach();
|
|
1733
|
+
this.el = r.nativeElement;
|
|
1734
|
+
}
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
|
|
1738
|
+
export declare interface FlipIconWarning extends Components.FlipIconWarning {}
|
|
1739
|
+
|
|
1740
|
+
@ProxyCmp({
|
|
1741
|
+
defineCustomElementFn: undefined,
|
|
1742
|
+
inputs: ['size']
|
|
1743
|
+
})
|
|
1744
|
+
@Component({
|
|
1745
|
+
selector: 'flip-icon-warning',
|
|
1746
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1747
|
+
template: '<ng-content></ng-content>',
|
|
1748
|
+
inputs: ['size']
|
|
1749
|
+
})
|
|
1750
|
+
export class FlipIconWarning {
|
|
1751
|
+
protected el: HTMLElement;
|
|
1752
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1753
|
+
c.detach();
|
|
1754
|
+
this.el = r.nativeElement;
|
|
1755
|
+
}
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
|
|
1759
|
+
export declare interface FlipInlineError extends Components.FlipInlineError {}
|
|
1760
|
+
|
|
1761
|
+
@ProxyCmp({
|
|
1762
|
+
defineCustomElementFn: undefined,
|
|
1763
|
+
inputs: ['message', 'size']
|
|
1764
|
+
})
|
|
1765
|
+
@Component({
|
|
1766
|
+
selector: 'flip-inline-error',
|
|
1767
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1768
|
+
template: '<ng-content></ng-content>',
|
|
1769
|
+
inputs: ['message', 'size']
|
|
1770
|
+
})
|
|
1771
|
+
export class FlipInlineError {
|
|
1772
|
+
protected el: HTMLElement;
|
|
1773
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1774
|
+
c.detach();
|
|
1775
|
+
this.el = r.nativeElement;
|
|
1776
|
+
}
|
|
1777
|
+
}
|
|
1778
|
+
|
|
1779
|
+
|
|
1780
|
+
export declare interface FlipLink extends Components.FlipLink {}
|
|
1781
|
+
|
|
1782
|
+
@ProxyCmp({
|
|
1783
|
+
defineCustomElementFn: undefined,
|
|
1784
|
+
inputs: ['href', 'label', 'target']
|
|
1785
|
+
})
|
|
1786
|
+
@Component({
|
|
1787
|
+
selector: 'flip-link',
|
|
1788
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1789
|
+
template: '<ng-content></ng-content>',
|
|
1790
|
+
inputs: ['href', 'label', 'target']
|
|
1791
|
+
})
|
|
1792
|
+
export class FlipLink {
|
|
1793
|
+
protected el: HTMLElement;
|
|
1794
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1795
|
+
c.detach();
|
|
1796
|
+
this.el = r.nativeElement;
|
|
1797
|
+
}
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1800
|
+
|
|
1801
|
+
export declare interface FlipPopover extends Components.FlipPopover {}
|
|
1802
|
+
|
|
1803
|
+
@ProxyCmp({
|
|
1804
|
+
defineCustomElementFn: undefined,
|
|
1805
|
+
inputs: ['label', 'popoverId', 'trigger']
|
|
1806
|
+
})
|
|
1807
|
+
@Component({
|
|
1808
|
+
selector: 'flip-popover',
|
|
1809
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1810
|
+
template: '<ng-content></ng-content>',
|
|
1811
|
+
inputs: ['label', 'popoverId', 'trigger']
|
|
1812
|
+
})
|
|
1813
|
+
export class FlipPopover {
|
|
1814
|
+
protected el: HTMLElement;
|
|
1815
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1816
|
+
c.detach();
|
|
1817
|
+
this.el = r.nativeElement;
|
|
1818
|
+
}
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
|
|
1822
|
+
export declare interface FlipRadio extends Components.FlipRadio {
|
|
1823
|
+
/**
|
|
1824
|
+
*
|
|
1825
|
+
*/
|
|
1826
|
+
valueChange: EventEmitter<CustomEvent<string>>;
|
|
1827
|
+
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
@ProxyCmp({
|
|
1831
|
+
defineCustomElementFn: undefined,
|
|
1832
|
+
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'value']
|
|
1833
|
+
})
|
|
1834
|
+
@Component({
|
|
1835
|
+
selector: 'flip-radio',
|
|
1836
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1837
|
+
template: '<ng-content></ng-content>',
|
|
1838
|
+
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'value']
|
|
1839
|
+
})
|
|
1840
|
+
export class FlipRadio {
|
|
1841
|
+
protected el: HTMLElement;
|
|
1842
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1843
|
+
c.detach();
|
|
1844
|
+
this.el = r.nativeElement;
|
|
1845
|
+
proxyOutputs(this, this.el, ['valueChange']);
|
|
1846
|
+
}
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1849
|
+
|
|
1850
|
+
export declare interface FlipRadioGroup extends Components.FlipRadioGroup {
|
|
1851
|
+
/**
|
|
1852
|
+
*
|
|
1853
|
+
*/
|
|
1854
|
+
valueChange: EventEmitter<CustomEvent<string>>;
|
|
1855
|
+
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
@ProxyCmp({
|
|
1859
|
+
defineCustomElementFn: undefined,
|
|
1860
|
+
inputs: ['value']
|
|
1861
|
+
})
|
|
1862
|
+
@Component({
|
|
1863
|
+
selector: 'flip-radio-group',
|
|
1864
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1865
|
+
template: '<ng-content></ng-content>',
|
|
1866
|
+
inputs: ['value']
|
|
1867
|
+
})
|
|
1868
|
+
export class FlipRadioGroup {
|
|
1869
|
+
protected el: HTMLElement;
|
|
1870
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1871
|
+
c.detach();
|
|
1872
|
+
this.el = r.nativeElement;
|
|
1873
|
+
proxyOutputs(this, this.el, ['valueChange']);
|
|
1874
|
+
}
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
|
|
1878
|
+
export declare interface FlipSearch extends Components.FlipSearch {
|
|
1879
|
+
/**
|
|
1880
|
+
*
|
|
1881
|
+
*/
|
|
1882
|
+
inputBlur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
1883
|
+
/**
|
|
1884
|
+
*
|
|
1885
|
+
*/
|
|
1886
|
+
inputFocus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
1887
|
+
/**
|
|
1888
|
+
*
|
|
1889
|
+
*/
|
|
1890
|
+
valueChange: EventEmitter<CustomEvent<string>>;
|
|
1891
|
+
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
@ProxyCmp({
|
|
1895
|
+
defineCustomElementFn: undefined,
|
|
1896
|
+
inputs: ['autoFocus', 'clearButtonLabel', 'disabled', 'inputId', 'inputName', 'label', 'placeholder', 'value']
|
|
1897
|
+
})
|
|
1898
|
+
@Component({
|
|
1899
|
+
selector: 'flip-search',
|
|
1900
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1901
|
+
template: '<ng-content></ng-content>',
|
|
1902
|
+
inputs: ['autoFocus', 'clearButtonLabel', 'disabled', 'inputId', 'inputName', 'label', 'placeholder', 'value']
|
|
1903
|
+
})
|
|
1904
|
+
export class FlipSearch {
|
|
1905
|
+
protected el: HTMLElement;
|
|
1906
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1907
|
+
c.detach();
|
|
1908
|
+
this.el = r.nativeElement;
|
|
1909
|
+
proxyOutputs(this, this.el, ['inputBlur', 'inputFocus', 'valueChange']);
|
|
1910
|
+
}
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
|
|
1914
|
+
export declare interface FlipSpinner extends Components.FlipSpinner {}
|
|
1915
|
+
|
|
1916
|
+
@ProxyCmp({
|
|
1917
|
+
defineCustomElementFn: undefined,
|
|
1918
|
+
inputs: ['label', 'size']
|
|
1919
|
+
})
|
|
1920
|
+
@Component({
|
|
1921
|
+
selector: 'flip-spinner',
|
|
1922
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1923
|
+
template: '<ng-content></ng-content>',
|
|
1924
|
+
inputs: ['label', 'size']
|
|
1925
|
+
})
|
|
1926
|
+
export class FlipSpinner {
|
|
1927
|
+
protected el: HTMLElement;
|
|
1928
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1929
|
+
c.detach();
|
|
1930
|
+
this.el = r.nativeElement;
|
|
1931
|
+
}
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
|
|
1935
|
+
export declare interface FlipStack extends Components.FlipStack {}
|
|
1936
|
+
|
|
1937
|
+
@ProxyCmp({
|
|
1938
|
+
defineCustomElementFn: undefined,
|
|
1939
|
+
inputs: ['align', 'as', 'justify', 'orientation', 'spacing', 'wrap']
|
|
1940
|
+
})
|
|
1941
|
+
@Component({
|
|
1942
|
+
selector: 'flip-stack',
|
|
1943
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1944
|
+
template: '<ng-content></ng-content>',
|
|
1945
|
+
inputs: ['align', 'as', 'justify', 'orientation', 'spacing', 'wrap']
|
|
1946
|
+
})
|
|
1947
|
+
export class FlipStack {
|
|
1948
|
+
protected el: HTMLElement;
|
|
1949
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1950
|
+
c.detach();
|
|
1951
|
+
this.el = r.nativeElement;
|
|
1952
|
+
}
|
|
1953
|
+
}
|
|
1954
|
+
|
|
1955
|
+
|
|
1956
|
+
export declare interface FlipSwitch extends Components.FlipSwitch {
|
|
1957
|
+
/**
|
|
1958
|
+
*
|
|
1959
|
+
*/
|
|
1960
|
+
valueChange: EventEmitter<CustomEvent<boolean>>;
|
|
1961
|
+
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
@ProxyCmp({
|
|
1965
|
+
defineCustomElementFn: undefined,
|
|
1966
|
+
inputs: ['checked', 'disabled', 'inputId', 'inputName', 'label', 'size', 'value']
|
|
1967
|
+
})
|
|
1968
|
+
@Component({
|
|
1969
|
+
selector: 'flip-switch',
|
|
1970
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1971
|
+
template: '<ng-content></ng-content>',
|
|
1972
|
+
inputs: ['checked', 'disabled', 'inputId', 'inputName', 'label', 'size', 'value']
|
|
1973
|
+
})
|
|
1974
|
+
export class FlipSwitch {
|
|
1975
|
+
protected el: HTMLElement;
|
|
1976
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1977
|
+
c.detach();
|
|
1978
|
+
this.el = r.nativeElement;
|
|
1979
|
+
proxyOutputs(this, this.el, ['valueChange']);
|
|
1980
|
+
}
|
|
1981
|
+
}
|
|
1982
|
+
|
|
1983
|
+
|
|
1984
|
+
export declare interface FlipTag extends Components.FlipTag {
|
|
1985
|
+
/**
|
|
1986
|
+
*
|
|
1987
|
+
*/
|
|
1988
|
+
remove: EventEmitter<CustomEvent<MouseEvent>>;
|
|
1989
|
+
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
@ProxyCmp({
|
|
1993
|
+
defineCustomElementFn: undefined,
|
|
1994
|
+
inputs: ['intent', 'label', 'removable', 'removalButtonLabel']
|
|
1995
|
+
})
|
|
1996
|
+
@Component({
|
|
1997
|
+
selector: 'flip-tag',
|
|
1998
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1999
|
+
template: '<ng-content></ng-content>',
|
|
2000
|
+
inputs: ['intent', 'label', 'removable', 'removalButtonLabel']
|
|
2001
|
+
})
|
|
2002
|
+
export class FlipTag {
|
|
2003
|
+
protected el: HTMLElement;
|
|
2004
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2005
|
+
c.detach();
|
|
2006
|
+
this.el = r.nativeElement;
|
|
2007
|
+
proxyOutputs(this, this.el, ['remove']);
|
|
2008
|
+
}
|
|
2009
|
+
}
|
|
2010
|
+
|
|
2011
|
+
|
|
2012
|
+
export declare interface FlipThemeProvider extends Components.FlipThemeProvider {}
|
|
2013
|
+
|
|
2014
|
+
@ProxyCmp({
|
|
2015
|
+
defineCustomElementFn: undefined,
|
|
2016
|
+
inputs: ['config'],
|
|
2017
|
+
methods: ['getActiveTheme', 'getPreferredTheme', 'setPreferredTheme', 'resetPreferredTheme']
|
|
2018
|
+
})
|
|
2019
|
+
@Component({
|
|
2020
|
+
selector: 'flip-theme-provider',
|
|
2021
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2022
|
+
template: '<ng-content></ng-content>',
|
|
2023
|
+
inputs: ['config']
|
|
2024
|
+
})
|
|
2025
|
+
export class FlipThemeProvider {
|
|
2026
|
+
protected el: HTMLElement;
|
|
2027
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2028
|
+
c.detach();
|
|
2029
|
+
this.el = r.nativeElement;
|
|
2030
|
+
}
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2033
|
+
|
|
2034
|
+
export declare interface FlipThumbnail extends Components.FlipThumbnail {}
|
|
2035
|
+
|
|
2036
|
+
@ProxyCmp({
|
|
2037
|
+
defineCustomElementFn: undefined,
|
|
2038
|
+
inputs: ['alt', 'format', 'size', 'src']
|
|
2039
|
+
})
|
|
2040
|
+
@Component({
|
|
2041
|
+
selector: 'flip-thumbnail',
|
|
2042
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2043
|
+
template: '<ng-content></ng-content>',
|
|
2044
|
+
inputs: ['alt', 'format', 'size', 'src']
|
|
2045
|
+
})
|
|
2046
|
+
export class FlipThumbnail {
|
|
2047
|
+
protected el: HTMLElement;
|
|
2048
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2049
|
+
c.detach();
|
|
2050
|
+
this.el = r.nativeElement;
|
|
2051
|
+
}
|
|
2052
|
+
}
|
|
2053
|
+
|
|
2054
|
+
|
|
2055
|
+
export declare interface FlipToast extends Components.FlipToast {
|
|
2056
|
+
/**
|
|
2057
|
+
*
|
|
2058
|
+
*/
|
|
2059
|
+
dismiss: EventEmitter<CustomEvent<string>>;
|
|
2060
|
+
|
|
2061
|
+
}
|
|
2062
|
+
|
|
2063
|
+
@ProxyCmp({
|
|
2064
|
+
defineCustomElementFn: undefined,
|
|
2065
|
+
inputs: ['accessibleDismissLabel', 'content', 'dismissLabel', 'duration', 'icon', 'intent', 'toastId']
|
|
2066
|
+
})
|
|
2067
|
+
@Component({
|
|
2068
|
+
selector: 'flip-toast',
|
|
2069
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2070
|
+
template: '<ng-content></ng-content>',
|
|
2071
|
+
inputs: ['accessibleDismissLabel', 'content', 'dismissLabel', 'duration', 'icon', 'intent', 'toastId']
|
|
2072
|
+
})
|
|
2073
|
+
export class FlipToast {
|
|
2074
|
+
protected el: HTMLElement;
|
|
2075
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2076
|
+
c.detach();
|
|
2077
|
+
this.el = r.nativeElement;
|
|
2078
|
+
proxyOutputs(this, this.el, ['dismiss']);
|
|
2079
|
+
}
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
|
|
2083
|
+
export declare interface FlipToastProvider extends Components.FlipToastProvider {}
|
|
2084
|
+
|
|
2085
|
+
@ProxyCmp({
|
|
2086
|
+
defineCustomElementFn: undefined,
|
|
2087
|
+
inputs: ['globalDuration'],
|
|
2088
|
+
methods: ['clearAll', 'dismiss', 'toast']
|
|
2089
|
+
})
|
|
2090
|
+
@Component({
|
|
2091
|
+
selector: 'flip-toast-provider',
|
|
2092
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2093
|
+
template: '<ng-content></ng-content>',
|
|
2094
|
+
inputs: ['globalDuration']
|
|
2095
|
+
})
|
|
2096
|
+
export class FlipToastProvider {
|
|
2097
|
+
protected el: HTMLElement;
|
|
2098
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2099
|
+
c.detach();
|
|
2100
|
+
this.el = r.nativeElement;
|
|
2101
|
+
}
|
|
2102
|
+
}
|
|
2103
|
+
|
|
2104
|
+
|
|
2105
|
+
export declare interface FlipTooltip extends Components.FlipTooltip {}
|
|
2106
|
+
|
|
2107
|
+
@ProxyCmp({
|
|
2108
|
+
defineCustomElementFn: undefined,
|
|
2109
|
+
inputs: ['content', 'delay', 'position']
|
|
2110
|
+
})
|
|
2111
|
+
@Component({
|
|
2112
|
+
selector: 'flip-tooltip',
|
|
2113
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2114
|
+
template: '<ng-content></ng-content>',
|
|
2115
|
+
inputs: ['content', 'delay', 'position']
|
|
2116
|
+
})
|
|
2117
|
+
export class FlipTooltip {
|
|
2118
|
+
protected el: HTMLElement;
|
|
2119
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2120
|
+
c.detach();
|
|
2121
|
+
this.el = r.nativeElement;
|
|
2122
|
+
}
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2125
|
+
|
|
2126
|
+
export declare interface FlipVisuallyHidden extends Components.FlipVisuallyHidden {}
|
|
2127
|
+
|
|
2128
|
+
@ProxyCmp({
|
|
2129
|
+
defineCustomElementFn: undefined
|
|
2130
|
+
})
|
|
2131
|
+
@Component({
|
|
2132
|
+
selector: 'flip-visually-hidden',
|
|
2133
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2134
|
+
template: '<ng-content></ng-content>'
|
|
2135
|
+
})
|
|
2136
|
+
export class FlipVisuallyHidden {
|
|
2137
|
+
protected el: HTMLElement;
|
|
2138
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2139
|
+
c.detach();
|
|
2140
|
+
this.el = r.nativeElement;
|
|
2141
|
+
}
|
|
2142
|
+
}
|