@getflip/swirl-components-angular 0.9.0 → 0.11.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 +2 -2
- package/CHANGELOG.md +59 -0
- package/dist/component-library/esm2020/lib/component-library.module.mjs +3 -3
- package/dist/component-library/esm2020/lib/stencil-generated/boolean-value-accessor.mjs +3 -3
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +1714 -1193
- package/dist/component-library/esm2020/lib/stencil-generated/index.mjs +169 -148
- package/dist/component-library/esm2020/lib/stencil-generated/select-value-accessor.mjs +3 -3
- package/dist/component-library/esm2020/lib/stencil-generated/text-value-accessor.mjs +3 -3
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +1722 -1201
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +1722 -1201
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/component-library.module.d.ts +1 -1
- package/dist/component-library/lib/stencil-generated/boolean-value-accessor.d.ts +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +782 -593
- package/dist/component-library/lib/stencil-generated/index.d.ts +1 -1
- package/dist/component-library/lib/stencil-generated/select-value-accessor.d.ts +1 -1
- package/dist/component-library/lib/stencil-generated/text-value-accessor.d.ts +1 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/boolean-value-accessor.ts +1 -1
- package/projects/component-library/src/lib/stencil-generated/components.ts +899 -462
- package/projects/component-library/src/lib/stencil-generated/index.ts +168 -147
- package/projects/component-library/src/lib/stencil-generated/select-value-accessor.ts +1 -1
- package/projects/component-library/src/lib/stencil-generated/text-value-accessor.ts +1 -1
|
@@ -27,17 +27,17 @@ export class FileManager {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
export declare interface
|
|
30
|
+
export declare interface SwirlActionList extends Components.SwirlActionList {}
|
|
31
31
|
|
|
32
32
|
@ProxyCmp({
|
|
33
33
|
defineCustomElementFn: undefined
|
|
34
34
|
})
|
|
35
35
|
@Component({
|
|
36
|
-
selector: '
|
|
36
|
+
selector: 'swirl-action-list',
|
|
37
37
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
38
38
|
template: '<ng-content></ng-content>'
|
|
39
39
|
})
|
|
40
|
-
export class
|
|
40
|
+
export class SwirlActionList {
|
|
41
41
|
protected el: HTMLElement;
|
|
42
42
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
43
43
|
c.detach();
|
|
@@ -46,19 +46,19 @@ export class FlipActionList {
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
|
|
49
|
-
export declare interface
|
|
49
|
+
export declare interface SwirlActionListItem extends Components.SwirlActionListItem {}
|
|
50
50
|
|
|
51
51
|
@ProxyCmp({
|
|
52
52
|
defineCustomElementFn: undefined,
|
|
53
53
|
inputs: ['description', 'disabled', 'icon', 'intent', 'label', 'size', 'suffix']
|
|
54
54
|
})
|
|
55
55
|
@Component({
|
|
56
|
-
selector: '
|
|
56
|
+
selector: 'swirl-action-list-item',
|
|
57
57
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
58
58
|
template: '<ng-content></ng-content>',
|
|
59
59
|
inputs: ['description', 'disabled', 'icon', 'intent', 'label', 'size', 'suffix']
|
|
60
60
|
})
|
|
61
|
-
export class
|
|
61
|
+
export class SwirlActionListItem {
|
|
62
62
|
protected el: HTMLElement;
|
|
63
63
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
64
64
|
c.detach();
|
|
@@ -67,19 +67,19 @@ export class FlipActionListItem {
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
|
|
70
|
-
export declare interface
|
|
70
|
+
export declare interface SwirlActionListSection extends Components.SwirlActionListSection {}
|
|
71
71
|
|
|
72
72
|
@ProxyCmp({
|
|
73
73
|
defineCustomElementFn: undefined,
|
|
74
74
|
inputs: ['label']
|
|
75
75
|
})
|
|
76
76
|
@Component({
|
|
77
|
-
selector: '
|
|
77
|
+
selector: 'swirl-action-list-section',
|
|
78
78
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
79
79
|
template: '<ng-content></ng-content>',
|
|
80
80
|
inputs: ['label']
|
|
81
81
|
})
|
|
82
|
-
export class
|
|
82
|
+
export class SwirlActionListSection {
|
|
83
83
|
protected el: HTMLElement;
|
|
84
84
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
85
85
|
c.detach();
|
|
@@ -87,8 +87,8 @@ export class FlipActionListSection {
|
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
import type {
|
|
91
|
-
export declare interface
|
|
90
|
+
import type { SwirlAppLayoutMobileView as ISwirlAppLayoutSwirlAppLayoutMobileView } from '@getflip/swirl-components';
|
|
91
|
+
export declare interface SwirlAppLayout extends Components.SwirlAppLayout {
|
|
92
92
|
/**
|
|
93
93
|
*
|
|
94
94
|
*/
|
|
@@ -96,7 +96,7 @@ export declare interface FlipAppLayout extends Components.FlipAppLayout {
|
|
|
96
96
|
/**
|
|
97
97
|
*
|
|
98
98
|
*/
|
|
99
|
-
mobileViewChange: EventEmitter<CustomEvent<
|
|
99
|
+
mobileViewChange: EventEmitter<CustomEvent<ISwirlAppLayoutSwirlAppLayoutMobileView>>;
|
|
100
100
|
/**
|
|
101
101
|
*
|
|
102
102
|
*/
|
|
@@ -114,12 +114,12 @@ export declare interface FlipAppLayout extends Components.FlipAppLayout {
|
|
|
114
114
|
methods: ['showSidebar', 'hideSidebar', 'toggleSidebar', 'changeMobileView']
|
|
115
115
|
})
|
|
116
116
|
@Component({
|
|
117
|
-
selector: '
|
|
117
|
+
selector: 'swirl-app-layout',
|
|
118
118
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
119
119
|
template: '<ng-content></ng-content>',
|
|
120
120
|
inputs: ['appBarMedia', 'appName', 'backToNavigationViewButtonLabel', 'ctaIcon', 'ctaLabel', 'heading', 'navigationBackButtonLabel', 'navigationLabel', 'showNavigationBackButton', 'sidebarCloseButtonLabel', 'sidebarHeading', 'subheading', 'transitionStyle']
|
|
121
121
|
})
|
|
122
|
-
export class
|
|
122
|
+
export class SwirlAppLayout {
|
|
123
123
|
protected el: HTMLElement;
|
|
124
124
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
125
125
|
c.detach();
|
|
@@ -129,7 +129,7 @@ export class FlipAppLayout {
|
|
|
129
129
|
}
|
|
130
130
|
|
|
131
131
|
|
|
132
|
-
export declare interface
|
|
132
|
+
export declare interface SwirlAutocomplete extends Components.SwirlAutocomplete {
|
|
133
133
|
/**
|
|
134
134
|
*
|
|
135
135
|
*/
|
|
@@ -139,15 +139,15 @@ export declare interface FlipAutocomplete extends Components.FlipAutocomplete {
|
|
|
139
139
|
|
|
140
140
|
@ProxyCmp({
|
|
141
141
|
defineCustomElementFn: undefined,
|
|
142
|
-
inputs: ['autoSelect', 'clearButtonLabel', 'clearable', 'disabled', '
|
|
142
|
+
inputs: ['autoSelect', 'clearButtonLabel', 'clearable', 'disabled', 'generateSuggestions', 'invalid', 'maxLength', 'menuLabel', 'mode', 'required', 'spellCheck', 'swirlAriaDescribedby', 'value']
|
|
143
143
|
})
|
|
144
144
|
@Component({
|
|
145
|
-
selector: '
|
|
145
|
+
selector: 'swirl-autocomplete',
|
|
146
146
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
147
147
|
template: '<ng-content></ng-content>',
|
|
148
|
-
inputs: ['autoSelect', 'clearButtonLabel', 'clearable', 'disabled', '
|
|
148
|
+
inputs: ['autoSelect', 'clearButtonLabel', 'clearable', 'disabled', 'generateSuggestions', 'invalid', 'maxLength', 'menuLabel', 'mode', 'required', 'spellCheck', 'swirlAriaDescribedby', 'value']
|
|
149
149
|
})
|
|
150
|
-
export class
|
|
150
|
+
export class SwirlAutocomplete {
|
|
151
151
|
protected el: HTMLElement;
|
|
152
152
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
153
153
|
c.detach();
|
|
@@ -157,19 +157,19 @@ export class FlipAutocomplete {
|
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
|
|
160
|
-
export declare interface
|
|
160
|
+
export declare interface SwirlAvatar extends Components.SwirlAvatar {}
|
|
161
161
|
|
|
162
162
|
@ProxyCmp({
|
|
163
163
|
defineCustomElementFn: undefined,
|
|
164
164
|
inputs: ['badge', 'badgePosition', 'color', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'variant']
|
|
165
165
|
})
|
|
166
166
|
@Component({
|
|
167
|
-
selector: '
|
|
167
|
+
selector: 'swirl-avatar',
|
|
168
168
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
169
169
|
template: '<ng-content></ng-content>',
|
|
170
170
|
inputs: ['badge', 'badgePosition', 'color', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'variant']
|
|
171
171
|
})
|
|
172
|
-
export class
|
|
172
|
+
export class SwirlAvatar {
|
|
173
173
|
protected el: HTMLElement;
|
|
174
174
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
175
175
|
c.detach();
|
|
@@ -178,19 +178,19 @@ export class FlipAvatar {
|
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
|
|
181
|
-
export declare interface
|
|
181
|
+
export declare interface SwirlAvatarGroup extends Components.SwirlAvatarGroup {}
|
|
182
182
|
|
|
183
183
|
@ProxyCmp({
|
|
184
184
|
defineCustomElementFn: undefined,
|
|
185
185
|
inputs: ['badge']
|
|
186
186
|
})
|
|
187
187
|
@Component({
|
|
188
|
-
selector: '
|
|
188
|
+
selector: 'swirl-avatar-group',
|
|
189
189
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
190
190
|
template: '<ng-content></ng-content>',
|
|
191
191
|
inputs: ['badge']
|
|
192
192
|
})
|
|
193
|
-
export class
|
|
193
|
+
export class SwirlAvatarGroup {
|
|
194
194
|
protected el: HTMLElement;
|
|
195
195
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
196
196
|
c.detach();
|
|
@@ -199,19 +199,19 @@ export class FlipAvatarGroup {
|
|
|
199
199
|
}
|
|
200
200
|
|
|
201
201
|
|
|
202
|
-
export declare interface
|
|
202
|
+
export declare interface SwirlBadge extends Components.SwirlBadge {}
|
|
203
203
|
|
|
204
204
|
@ProxyCmp({
|
|
205
205
|
defineCustomElementFn: undefined,
|
|
206
206
|
inputs: ['icon', 'intent', 'label', 'size', 'variant']
|
|
207
207
|
})
|
|
208
208
|
@Component({
|
|
209
|
-
selector: '
|
|
209
|
+
selector: 'swirl-badge',
|
|
210
210
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
211
211
|
template: '<ng-content></ng-content>',
|
|
212
212
|
inputs: ['icon', 'intent', 'label', 'size', 'variant']
|
|
213
213
|
})
|
|
214
|
-
export class
|
|
214
|
+
export class SwirlBadge {
|
|
215
215
|
protected el: HTMLElement;
|
|
216
216
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
217
217
|
c.detach();
|
|
@@ -220,7 +220,7 @@ export class FlipBadge {
|
|
|
220
220
|
}
|
|
221
221
|
|
|
222
222
|
|
|
223
|
-
export declare interface
|
|
223
|
+
export declare interface SwirlBanner extends Components.SwirlBanner {
|
|
224
224
|
/**
|
|
225
225
|
*
|
|
226
226
|
*/
|
|
@@ -237,12 +237,12 @@ export declare interface FlipBanner extends Components.FlipBanner {
|
|
|
237
237
|
inputs: ['actionLabel', 'content', 'dismissLabel', 'dismissable', 'importance', 'intent', 'showIcon']
|
|
238
238
|
})
|
|
239
239
|
@Component({
|
|
240
|
-
selector: '
|
|
240
|
+
selector: 'swirl-banner',
|
|
241
241
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
242
242
|
template: '<ng-content></ng-content>',
|
|
243
243
|
inputs: ['actionLabel', 'content', 'dismissLabel', 'dismissable', 'importance', 'intent', 'showIcon']
|
|
244
244
|
})
|
|
245
|
-
export class
|
|
245
|
+
export class SwirlBanner {
|
|
246
246
|
protected el: HTMLElement;
|
|
247
247
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
248
248
|
c.detach();
|
|
@@ -252,19 +252,19 @@ export class FlipBanner {
|
|
|
252
252
|
}
|
|
253
253
|
|
|
254
254
|
|
|
255
|
-
export declare interface
|
|
255
|
+
export declare interface SwirlBox extends Components.SwirlBox {}
|
|
256
256
|
|
|
257
257
|
@ProxyCmp({
|
|
258
258
|
defineCustomElementFn: undefined,
|
|
259
|
-
inputs: ['as', 'bordered', 'centerBlock', 'centerInline', 'cover', 'padding']
|
|
259
|
+
inputs: ['as', 'bordered', 'centerBlock', 'centerInline', 'cover', 'overflow', 'padding']
|
|
260
260
|
})
|
|
261
261
|
@Component({
|
|
262
|
-
selector: '
|
|
262
|
+
selector: 'swirl-box',
|
|
263
263
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
264
264
|
template: '<ng-content></ng-content>',
|
|
265
|
-
inputs: ['as', 'bordered', 'centerBlock', 'centerInline', 'cover', 'padding']
|
|
265
|
+
inputs: ['as', 'bordered', 'centerBlock', 'centerInline', 'cover', 'overflow', 'padding']
|
|
266
266
|
})
|
|
267
|
-
export class
|
|
267
|
+
export class SwirlBox {
|
|
268
268
|
protected el: HTMLElement;
|
|
269
269
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
270
270
|
c.detach();
|
|
@@ -273,19 +273,19 @@ export class FlipBox {
|
|
|
273
273
|
}
|
|
274
274
|
|
|
275
275
|
|
|
276
|
-
export declare interface
|
|
276
|
+
export declare interface SwirlButton extends Components.SwirlButton {}
|
|
277
277
|
|
|
278
278
|
@ProxyCmp({
|
|
279
279
|
defineCustomElementFn: undefined,
|
|
280
|
-
inputs: ['disabled', 'download', '
|
|
280
|
+
inputs: ['disabled', 'download', 'form', 'hideLabel', 'href', 'icon', 'iconPosition', 'intent', 'label', 'name', 'pill', 'size', 'swirlAriaDescribedby', 'swirlAriaExpanded', 'swirlAriaLabel', 'target', 'type', 'value', 'variant']
|
|
281
281
|
})
|
|
282
282
|
@Component({
|
|
283
|
-
selector: '
|
|
283
|
+
selector: 'swirl-button',
|
|
284
284
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
285
285
|
template: '<ng-content></ng-content>',
|
|
286
|
-
inputs: ['disabled', 'download', '
|
|
286
|
+
inputs: ['disabled', 'download', 'form', 'hideLabel', 'href', 'icon', 'iconPosition', 'intent', 'label', 'name', 'pill', 'size', 'swirlAriaDescribedby', 'swirlAriaExpanded', 'swirlAriaLabel', 'target', 'type', 'value', 'variant']
|
|
287
287
|
})
|
|
288
|
-
export class
|
|
288
|
+
export class SwirlButton {
|
|
289
289
|
protected el: HTMLElement;
|
|
290
290
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
291
291
|
c.detach();
|
|
@@ -294,19 +294,19 @@ export class FlipButton {
|
|
|
294
294
|
}
|
|
295
295
|
|
|
296
296
|
|
|
297
|
-
export declare interface
|
|
297
|
+
export declare interface SwirlButtonGroup extends Components.SwirlButtonGroup {}
|
|
298
298
|
|
|
299
299
|
@ProxyCmp({
|
|
300
300
|
defineCustomElementFn: undefined,
|
|
301
301
|
inputs: ['orientation', 'segmented', 'stretch', 'wrap']
|
|
302
302
|
})
|
|
303
303
|
@Component({
|
|
304
|
-
selector: '
|
|
304
|
+
selector: 'swirl-button-group',
|
|
305
305
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
306
306
|
template: '<ng-content></ng-content>',
|
|
307
307
|
inputs: ['orientation', 'segmented', 'stretch', 'wrap']
|
|
308
308
|
})
|
|
309
|
-
export class
|
|
309
|
+
export class SwirlButtonGroup {
|
|
310
310
|
protected el: HTMLElement;
|
|
311
311
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
312
312
|
c.detach();
|
|
@@ -315,19 +315,19 @@ export class FlipButtonGroup {
|
|
|
315
315
|
}
|
|
316
316
|
|
|
317
317
|
|
|
318
|
-
export declare interface
|
|
318
|
+
export declare interface SwirlCard extends Components.SwirlCard {}
|
|
319
319
|
|
|
320
320
|
@ProxyCmp({
|
|
321
321
|
defineCustomElementFn: undefined,
|
|
322
322
|
inputs: ['as', 'elevated', 'href', 'interactive', 'linkTarget']
|
|
323
323
|
})
|
|
324
324
|
@Component({
|
|
325
|
-
selector: '
|
|
325
|
+
selector: 'swirl-card',
|
|
326
326
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
327
327
|
template: '<ng-content></ng-content>',
|
|
328
328
|
inputs: ['as', 'elevated', 'href', 'interactive', 'linkTarget']
|
|
329
329
|
})
|
|
330
|
-
export class
|
|
330
|
+
export class SwirlCard {
|
|
331
331
|
protected el: HTMLElement;
|
|
332
332
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
333
333
|
c.detach();
|
|
@@ -336,7 +336,7 @@ export class FlipCard {
|
|
|
336
336
|
}
|
|
337
337
|
|
|
338
338
|
|
|
339
|
-
export declare interface
|
|
339
|
+
export declare interface SwirlCheckbox extends Components.SwirlCheckbox {
|
|
340
340
|
/**
|
|
341
341
|
*
|
|
342
342
|
*/
|
|
@@ -346,15 +346,15 @@ export declare interface FlipCheckbox extends Components.FlipCheckbox {
|
|
|
346
346
|
|
|
347
347
|
@ProxyCmp({
|
|
348
348
|
defineCustomElementFn: undefined,
|
|
349
|
-
inputs: ['checked', 'description', 'disabled', '
|
|
349
|
+
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'swirlAriaDescribedby', 'swirlAriaLabel', 'value']
|
|
350
350
|
})
|
|
351
351
|
@Component({
|
|
352
|
-
selector: '
|
|
352
|
+
selector: 'swirl-checkbox',
|
|
353
353
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
354
354
|
template: '<ng-content></ng-content>',
|
|
355
|
-
inputs: ['checked', 'description', 'disabled', '
|
|
355
|
+
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'swirlAriaDescribedby', 'swirlAriaLabel', 'value']
|
|
356
356
|
})
|
|
357
|
-
export class
|
|
357
|
+
export class SwirlCheckbox {
|
|
358
358
|
protected el: HTMLElement;
|
|
359
359
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
360
360
|
c.detach();
|
|
@@ -364,19 +364,19 @@ export class FlipCheckbox {
|
|
|
364
364
|
}
|
|
365
365
|
|
|
366
366
|
|
|
367
|
-
export declare interface
|
|
367
|
+
export declare interface SwirlChip extends Components.SwirlChip {}
|
|
368
368
|
|
|
369
369
|
@ProxyCmp({
|
|
370
370
|
defineCustomElementFn: undefined,
|
|
371
371
|
inputs: ['avatar', 'icon', 'intent', 'interactive', 'label']
|
|
372
372
|
})
|
|
373
373
|
@Component({
|
|
374
|
-
selector: '
|
|
374
|
+
selector: 'swirl-chip',
|
|
375
375
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
376
376
|
template: '<ng-content></ng-content>',
|
|
377
377
|
inputs: ['avatar', 'icon', 'intent', 'interactive', 'label']
|
|
378
378
|
})
|
|
379
|
-
export class
|
|
379
|
+
export class SwirlChip {
|
|
380
380
|
protected el: HTMLElement;
|
|
381
381
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
382
382
|
c.detach();
|
|
@@ -385,7 +385,7 @@ export class FlipChip {
|
|
|
385
385
|
}
|
|
386
386
|
|
|
387
387
|
|
|
388
|
-
export declare interface
|
|
388
|
+
export declare interface SwirlConsoleLayout extends Components.SwirlConsoleLayout {
|
|
389
389
|
/**
|
|
390
390
|
*
|
|
391
391
|
*/
|
|
@@ -403,12 +403,12 @@ export declare interface FlipConsoleLayout extends Components.FlipConsoleLayout
|
|
|
403
403
|
methods: ['toggleSidebar', 'showSidebar', 'hideSidebar']
|
|
404
404
|
})
|
|
405
405
|
@Component({
|
|
406
|
-
selector: '
|
|
406
|
+
selector: 'swirl-console-layout',
|
|
407
407
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
408
408
|
template: '<ng-content></ng-content>',
|
|
409
409
|
inputs: ['appName', 'backButonLabel', 'heading', 'helpButonLabel', 'hideNavigationButtonLabel', 'logoText', 'navigationLabel', 'showBackButton', 'showHelpButton', 'showNavigationButtonLabel', 'subheading']
|
|
410
410
|
})
|
|
411
|
-
export class
|
|
411
|
+
export class SwirlConsoleLayout {
|
|
412
412
|
protected el: HTMLElement;
|
|
413
413
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
414
414
|
c.detach();
|
|
@@ -418,7 +418,7 @@ export class FlipConsoleLayout {
|
|
|
418
418
|
}
|
|
419
419
|
|
|
420
420
|
|
|
421
|
-
export declare interface
|
|
421
|
+
export declare interface SwirlDateInput extends Components.SwirlDateInput {
|
|
422
422
|
/**
|
|
423
423
|
*
|
|
424
424
|
*/
|
|
@@ -428,15 +428,15 @@ export declare interface FlipDateInput extends Components.FlipDateInput {
|
|
|
428
428
|
|
|
429
429
|
@ProxyCmp({
|
|
430
430
|
defineCustomElementFn: undefined,
|
|
431
|
-
inputs: ['autoFocus', 'autoSelect', 'datePickerLabel', 'disabled', '
|
|
431
|
+
inputs: ['autoFocus', 'autoSelect', 'datePickerLabel', 'disabled', 'format', 'invalid', 'locale', 'placeholder', 'required', 'swirlAriaDescribedby', 'value']
|
|
432
432
|
})
|
|
433
433
|
@Component({
|
|
434
|
-
selector: '
|
|
434
|
+
selector: 'swirl-date-input',
|
|
435
435
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
436
436
|
template: '<ng-content></ng-content>',
|
|
437
|
-
inputs: ['autoFocus', 'autoSelect', 'datePickerLabel', 'disabled', '
|
|
437
|
+
inputs: ['autoFocus', 'autoSelect', 'datePickerLabel', 'disabled', 'format', 'invalid', 'locale', 'placeholder', 'required', 'swirlAriaDescribedby', 'value']
|
|
438
438
|
})
|
|
439
|
-
export class
|
|
439
|
+
export class SwirlDateInput {
|
|
440
440
|
protected el: HTMLElement;
|
|
441
441
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
442
442
|
c.detach();
|
|
@@ -446,7 +446,7 @@ export class FlipDateInput {
|
|
|
446
446
|
}
|
|
447
447
|
|
|
448
448
|
|
|
449
|
-
export declare interface
|
|
449
|
+
export declare interface SwirlDatePicker extends Components.SwirlDatePicker {
|
|
450
450
|
/**
|
|
451
451
|
*
|
|
452
452
|
*/
|
|
@@ -459,12 +459,12 @@ export declare interface FlipDatePicker extends Components.FlipDatePicker {
|
|
|
459
459
|
inputs: ['locale', 'maxDate', 'minDate', 'range', 'startDate', 'value']
|
|
460
460
|
})
|
|
461
461
|
@Component({
|
|
462
|
-
selector: '
|
|
462
|
+
selector: 'swirl-date-picker',
|
|
463
463
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
464
464
|
template: '<ng-content></ng-content>',
|
|
465
465
|
inputs: ['locale', 'maxDate', 'minDate', 'range', 'startDate', 'value']
|
|
466
466
|
})
|
|
467
|
-
export class
|
|
467
|
+
export class SwirlDatePicker {
|
|
468
468
|
protected el: HTMLElement;
|
|
469
469
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
470
470
|
c.detach();
|
|
@@ -474,17 +474,17 @@ export class FlipDatePicker {
|
|
|
474
474
|
}
|
|
475
475
|
|
|
476
476
|
|
|
477
|
-
export declare interface
|
|
477
|
+
export declare interface SwirlDescriptionList extends Components.SwirlDescriptionList {}
|
|
478
478
|
|
|
479
479
|
@ProxyCmp({
|
|
480
480
|
defineCustomElementFn: undefined
|
|
481
481
|
})
|
|
482
482
|
@Component({
|
|
483
|
-
selector: '
|
|
483
|
+
selector: 'swirl-description-list',
|
|
484
484
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
485
485
|
template: '<ng-content></ng-content>'
|
|
486
486
|
})
|
|
487
|
-
export class
|
|
487
|
+
export class SwirlDescriptionList {
|
|
488
488
|
protected el: HTMLElement;
|
|
489
489
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
490
490
|
c.detach();
|
|
@@ -493,19 +493,19 @@ export class FlipDescriptionList {
|
|
|
493
493
|
}
|
|
494
494
|
|
|
495
495
|
|
|
496
|
-
export declare interface
|
|
496
|
+
export declare interface SwirlDescriptionListItem extends Components.SwirlDescriptionListItem {}
|
|
497
497
|
|
|
498
498
|
@ProxyCmp({
|
|
499
499
|
defineCustomElementFn: undefined,
|
|
500
500
|
inputs: ['term']
|
|
501
501
|
})
|
|
502
502
|
@Component({
|
|
503
|
-
selector: '
|
|
503
|
+
selector: 'swirl-description-list-item',
|
|
504
504
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
505
505
|
template: '<ng-content></ng-content>',
|
|
506
506
|
inputs: ['term']
|
|
507
507
|
})
|
|
508
|
-
export class
|
|
508
|
+
export class SwirlDescriptionListItem {
|
|
509
509
|
protected el: HTMLElement;
|
|
510
510
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
511
511
|
c.detach();
|
|
@@ -514,7 +514,7 @@ export class FlipDescriptionListItem {
|
|
|
514
514
|
}
|
|
515
515
|
|
|
516
516
|
|
|
517
|
-
export declare interface
|
|
517
|
+
export declare interface SwirlDialog extends Components.SwirlDialog {
|
|
518
518
|
/**
|
|
519
519
|
*
|
|
520
520
|
*/
|
|
@@ -532,12 +532,12 @@ export declare interface FlipDialog extends Components.FlipDialog {
|
|
|
532
532
|
methods: ['open', 'close']
|
|
533
533
|
})
|
|
534
534
|
@Component({
|
|
535
|
-
selector: '
|
|
535
|
+
selector: 'swirl-dialog',
|
|
536
536
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
537
537
|
template: '<ng-content></ng-content>',
|
|
538
538
|
inputs: ['hideLabel', 'intent', 'label', 'primaryActionLabel', 'secondaryActionLabel']
|
|
539
539
|
})
|
|
540
|
-
export class
|
|
540
|
+
export class SwirlDialog {
|
|
541
541
|
protected el: HTMLElement;
|
|
542
542
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
543
543
|
c.detach();
|
|
@@ -547,19 +547,19 @@ export class FlipDialog {
|
|
|
547
547
|
}
|
|
548
548
|
|
|
549
549
|
|
|
550
|
-
export declare interface
|
|
550
|
+
export declare interface SwirlEmptyState extends Components.SwirlEmptyState {}
|
|
551
551
|
|
|
552
552
|
@ProxyCmp({
|
|
553
553
|
defineCustomElementFn: undefined,
|
|
554
554
|
inputs: ['heading', 'illustration']
|
|
555
555
|
})
|
|
556
556
|
@Component({
|
|
557
|
-
selector: '
|
|
557
|
+
selector: 'swirl-empty-state',
|
|
558
558
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
559
559
|
template: '<ng-content></ng-content>',
|
|
560
560
|
inputs: ['heading', 'illustration']
|
|
561
561
|
})
|
|
562
|
-
export class
|
|
562
|
+
export class SwirlEmptyState {
|
|
563
563
|
protected el: HTMLElement;
|
|
564
564
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
565
565
|
c.detach();
|
|
@@ -568,7 +568,7 @@ export class FlipEmptyState {
|
|
|
568
568
|
}
|
|
569
569
|
|
|
570
570
|
|
|
571
|
-
export declare interface
|
|
571
|
+
export declare interface SwirlFileUploader extends Components.SwirlFileUploader {
|
|
572
572
|
/**
|
|
573
573
|
*
|
|
574
574
|
*/
|
|
@@ -582,12 +582,12 @@ export declare interface FlipFileUploader extends Components.FlipFileUploader {
|
|
|
582
582
|
methods: ['reset']
|
|
583
583
|
})
|
|
584
584
|
@Component({
|
|
585
|
-
selector: '
|
|
585
|
+
selector: 'swirl-file-uploader',
|
|
586
586
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
587
587
|
template: '<ng-content></ng-content>',
|
|
588
588
|
inputs: ['accept', 'ctaLabel', 'description', 'disabled', 'dragDropLabel', 'inputId', 'inputName', 'label', 'multiple', 'showDropzone', 'uploadButtonLabel']
|
|
589
589
|
})
|
|
590
|
-
export class
|
|
590
|
+
export class SwirlFileUploader {
|
|
591
591
|
protected el: HTMLElement;
|
|
592
592
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
593
593
|
c.detach();
|
|
@@ -597,7 +597,7 @@ export class FlipFileUploader {
|
|
|
597
597
|
}
|
|
598
598
|
|
|
599
599
|
|
|
600
|
-
export declare interface
|
|
600
|
+
export declare interface SwirlFileViewer extends Components.SwirlFileViewer {
|
|
601
601
|
/**
|
|
602
602
|
*
|
|
603
603
|
*/
|
|
@@ -611,12 +611,12 @@ export declare interface FlipFileViewer extends Components.FlipFileViewer {
|
|
|
611
611
|
methods: ['download', 'print']
|
|
612
612
|
})
|
|
613
613
|
@Component({
|
|
614
|
-
selector: '
|
|
614
|
+
selector: 'swirl-file-viewer',
|
|
615
615
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
616
616
|
template: '<ng-content></ng-content>',
|
|
617
617
|
inputs: ['active', 'autoplay', 'description', 'errorMessage', 'file', 'type', 'typeUnsupportedMessage', 'zoom']
|
|
618
618
|
})
|
|
619
|
-
export class
|
|
619
|
+
export class SwirlFileViewer {
|
|
620
620
|
protected el: HTMLElement;
|
|
621
621
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
622
622
|
c.detach();
|
|
@@ -626,7 +626,7 @@ export class FlipFileViewer {
|
|
|
626
626
|
}
|
|
627
627
|
|
|
628
628
|
|
|
629
|
-
export declare interface
|
|
629
|
+
export declare interface SwirlFileViewerAudio extends Components.SwirlFileViewerAudio {
|
|
630
630
|
/**
|
|
631
631
|
*
|
|
632
632
|
*/
|
|
@@ -639,12 +639,12 @@ export declare interface FlipFileViewerAudio extends Components.FlipFileViewerAu
|
|
|
639
639
|
inputs: ['autoplay', 'file', 'type']
|
|
640
640
|
})
|
|
641
641
|
@Component({
|
|
642
|
-
selector: '
|
|
642
|
+
selector: 'swirl-file-viewer-audio',
|
|
643
643
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
644
644
|
template: '<ng-content></ng-content>',
|
|
645
645
|
inputs: ['autoplay', 'file', 'type']
|
|
646
646
|
})
|
|
647
|
-
export class
|
|
647
|
+
export class SwirlFileViewerAudio {
|
|
648
648
|
protected el: HTMLElement;
|
|
649
649
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
650
650
|
c.detach();
|
|
@@ -654,7 +654,7 @@ export class FlipFileViewerAudio {
|
|
|
654
654
|
}
|
|
655
655
|
|
|
656
656
|
|
|
657
|
-
export declare interface
|
|
657
|
+
export declare interface SwirlFileViewerCsv extends Components.SwirlFileViewerCsv {
|
|
658
658
|
/**
|
|
659
659
|
*
|
|
660
660
|
*/
|
|
@@ -667,12 +667,12 @@ export declare interface FlipFileViewerCsv extends Components.FlipFileViewerCsv
|
|
|
667
667
|
inputs: ['errorMessage', 'file']
|
|
668
668
|
})
|
|
669
669
|
@Component({
|
|
670
|
-
selector: '
|
|
670
|
+
selector: 'swirl-file-viewer-csv',
|
|
671
671
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
672
672
|
template: '<ng-content></ng-content>',
|
|
673
673
|
inputs: ['errorMessage', 'file']
|
|
674
674
|
})
|
|
675
|
-
export class
|
|
675
|
+
export class SwirlFileViewerCsv {
|
|
676
676
|
protected el: HTMLElement;
|
|
677
677
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
678
678
|
c.detach();
|
|
@@ -682,7 +682,7 @@ export class FlipFileViewerCsv {
|
|
|
682
682
|
}
|
|
683
683
|
|
|
684
684
|
|
|
685
|
-
export declare interface
|
|
685
|
+
export declare interface SwirlFileViewerImage extends Components.SwirlFileViewerImage {
|
|
686
686
|
/**
|
|
687
687
|
*
|
|
688
688
|
*/
|
|
@@ -696,12 +696,12 @@ export declare interface FlipFileViewerImage extends Components.FlipFileViewerIm
|
|
|
696
696
|
methods: ['getZoom', 'resetZoom']
|
|
697
697
|
})
|
|
698
698
|
@Component({
|
|
699
|
-
selector: '
|
|
699
|
+
selector: 'swirl-file-viewer-image',
|
|
700
700
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
701
701
|
template: '<ng-content></ng-content>',
|
|
702
702
|
inputs: ['description', 'errorMessage', 'file', 'maxZoom']
|
|
703
703
|
})
|
|
704
|
-
export class
|
|
704
|
+
export class SwirlFileViewerImage {
|
|
705
705
|
protected el: HTMLElement;
|
|
706
706
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
707
707
|
c.detach();
|
|
@@ -711,7 +711,7 @@ export class FlipFileViewerImage {
|
|
|
711
711
|
}
|
|
712
712
|
|
|
713
713
|
|
|
714
|
-
export declare interface
|
|
714
|
+
export declare interface SwirlFileViewerPdf extends Components.SwirlFileViewerPdf {
|
|
715
715
|
/**
|
|
716
716
|
*
|
|
717
717
|
*/
|
|
@@ -725,12 +725,12 @@ export declare interface FlipFileViewerPdf extends Components.FlipFileViewerPdf
|
|
|
725
725
|
methods: ['print', 'nextPage', 'previousPage', 'setPage']
|
|
726
726
|
})
|
|
727
727
|
@Component({
|
|
728
|
-
selector: '
|
|
728
|
+
selector: 'swirl-file-viewer-pdf',
|
|
729
729
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
730
730
|
template: '<ng-content></ng-content>',
|
|
731
731
|
inputs: ['errorMessage', 'file', 'singlePageMode', 'zoom']
|
|
732
732
|
})
|
|
733
|
-
export class
|
|
733
|
+
export class SwirlFileViewerPdf {
|
|
734
734
|
protected el: HTMLElement;
|
|
735
735
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
736
736
|
c.detach();
|
|
@@ -740,7 +740,7 @@ export class FlipFileViewerPdf {
|
|
|
740
740
|
}
|
|
741
741
|
|
|
742
742
|
|
|
743
|
-
export declare interface
|
|
743
|
+
export declare interface SwirlFileViewerText extends Components.SwirlFileViewerText {
|
|
744
744
|
/**
|
|
745
745
|
*
|
|
746
746
|
*/
|
|
@@ -753,12 +753,12 @@ export declare interface FlipFileViewerText extends Components.FlipFileViewerTex
|
|
|
753
753
|
inputs: ['errorMessage', 'file']
|
|
754
754
|
})
|
|
755
755
|
@Component({
|
|
756
|
-
selector: '
|
|
756
|
+
selector: 'swirl-file-viewer-text',
|
|
757
757
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
758
758
|
template: '<ng-content></ng-content>',
|
|
759
759
|
inputs: ['errorMessage', 'file']
|
|
760
760
|
})
|
|
761
|
-
export class
|
|
761
|
+
export class SwirlFileViewerText {
|
|
762
762
|
protected el: HTMLElement;
|
|
763
763
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
764
764
|
c.detach();
|
|
@@ -768,7 +768,7 @@ export class FlipFileViewerText {
|
|
|
768
768
|
}
|
|
769
769
|
|
|
770
770
|
|
|
771
|
-
export declare interface
|
|
771
|
+
export declare interface SwirlFileViewerVideo extends Components.SwirlFileViewerVideo {
|
|
772
772
|
/**
|
|
773
773
|
*
|
|
774
774
|
*/
|
|
@@ -781,12 +781,12 @@ export declare interface FlipFileViewerVideo extends Components.FlipFileViewerVi
|
|
|
781
781
|
inputs: ['autoplay', 'file', 'type']
|
|
782
782
|
})
|
|
783
783
|
@Component({
|
|
784
|
-
selector: '
|
|
784
|
+
selector: 'swirl-file-viewer-video',
|
|
785
785
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
786
786
|
template: '<ng-content></ng-content>',
|
|
787
787
|
inputs: ['autoplay', 'file', 'type']
|
|
788
788
|
})
|
|
789
|
-
export class
|
|
789
|
+
export class SwirlFileViewerVideo {
|
|
790
790
|
protected el: HTMLElement;
|
|
791
791
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
792
792
|
c.detach();
|
|
@@ -796,19 +796,19 @@ export class FlipFileViewerVideo {
|
|
|
796
796
|
}
|
|
797
797
|
|
|
798
798
|
|
|
799
|
-
export declare interface
|
|
799
|
+
export declare interface SwirlFormControl extends Components.SwirlFormControl {}
|
|
800
800
|
|
|
801
801
|
@ProxyCmp({
|
|
802
802
|
defineCustomElementFn: undefined,
|
|
803
803
|
inputs: ['description', 'disabled', 'errorMessage', 'invalid', 'label']
|
|
804
804
|
})
|
|
805
805
|
@Component({
|
|
806
|
-
selector: '
|
|
806
|
+
selector: 'swirl-form-control',
|
|
807
807
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
808
808
|
template: '<ng-content></ng-content>',
|
|
809
809
|
inputs: ['description', 'disabled', 'errorMessage', 'invalid', 'label']
|
|
810
810
|
})
|
|
811
|
-
export class
|
|
811
|
+
export class SwirlFormControl {
|
|
812
812
|
protected el: HTMLElement;
|
|
813
813
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
814
814
|
c.detach();
|
|
@@ -817,19 +817,19 @@ export class FlipFormControl {
|
|
|
817
817
|
}
|
|
818
818
|
|
|
819
819
|
|
|
820
|
-
export declare interface
|
|
820
|
+
export declare interface SwirlFormGroup extends Components.SwirlFormGroup {}
|
|
821
821
|
|
|
822
822
|
@ProxyCmp({
|
|
823
823
|
defineCustomElementFn: undefined,
|
|
824
824
|
inputs: ['orientation']
|
|
825
825
|
})
|
|
826
826
|
@Component({
|
|
827
|
-
selector: '
|
|
827
|
+
selector: 'swirl-form-group',
|
|
828
828
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
829
829
|
template: '<ng-content></ng-content>',
|
|
830
830
|
inputs: ['orientation']
|
|
831
831
|
})
|
|
832
|
-
export class
|
|
832
|
+
export class SwirlFormGroup {
|
|
833
833
|
protected el: HTMLElement;
|
|
834
834
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
835
835
|
c.detach();
|
|
@@ -838,19 +838,19 @@ export class FlipFormGroup {
|
|
|
838
838
|
}
|
|
839
839
|
|
|
840
840
|
|
|
841
|
-
export declare interface
|
|
841
|
+
export declare interface SwirlHeading extends Components.SwirlHeading {}
|
|
842
842
|
|
|
843
843
|
@ProxyCmp({
|
|
844
844
|
defineCustomElementFn: undefined,
|
|
845
845
|
inputs: ['align', 'as', 'headingId', 'level', 'text']
|
|
846
846
|
})
|
|
847
847
|
@Component({
|
|
848
|
-
selector: '
|
|
848
|
+
selector: 'swirl-heading',
|
|
849
849
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
850
850
|
template: '<ng-content></ng-content>',
|
|
851
851
|
inputs: ['align', 'as', 'headingId', 'level', 'text']
|
|
852
852
|
})
|
|
853
|
-
export class
|
|
853
|
+
export class SwirlHeading {
|
|
854
854
|
protected el: HTMLElement;
|
|
855
855
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
856
856
|
c.detach();
|
|
@@ -859,19 +859,19 @@ export class FlipHeading {
|
|
|
859
859
|
}
|
|
860
860
|
|
|
861
861
|
|
|
862
|
-
export declare interface
|
|
862
|
+
export declare interface SwirlIconAdd extends Components.SwirlIconAdd {}
|
|
863
863
|
|
|
864
864
|
@ProxyCmp({
|
|
865
865
|
defineCustomElementFn: undefined,
|
|
866
866
|
inputs: ['size']
|
|
867
867
|
})
|
|
868
868
|
@Component({
|
|
869
|
-
selector: '
|
|
869
|
+
selector: 'swirl-icon-add',
|
|
870
870
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
871
871
|
template: '<ng-content></ng-content>',
|
|
872
872
|
inputs: ['size']
|
|
873
873
|
})
|
|
874
|
-
export class
|
|
874
|
+
export class SwirlIconAdd {
|
|
875
875
|
protected el: HTMLElement;
|
|
876
876
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
877
877
|
c.detach();
|
|
@@ -880,19 +880,19 @@ export class FlipIconAdd {
|
|
|
880
880
|
}
|
|
881
881
|
|
|
882
882
|
|
|
883
|
-
export declare interface
|
|
883
|
+
export declare interface SwirlIconAddPhoto extends Components.SwirlIconAddPhoto {}
|
|
884
884
|
|
|
885
885
|
@ProxyCmp({
|
|
886
886
|
defineCustomElementFn: undefined,
|
|
887
887
|
inputs: ['size']
|
|
888
888
|
})
|
|
889
889
|
@Component({
|
|
890
|
-
selector: '
|
|
890
|
+
selector: 'swirl-icon-add-photo',
|
|
891
891
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
892
892
|
template: '<ng-content></ng-content>',
|
|
893
893
|
inputs: ['size']
|
|
894
894
|
})
|
|
895
|
-
export class
|
|
895
|
+
export class SwirlIconAddPhoto {
|
|
896
896
|
protected el: HTMLElement;
|
|
897
897
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
898
898
|
c.detach();
|
|
@@ -901,19 +901,19 @@ export class FlipIconAddPhoto {
|
|
|
901
901
|
}
|
|
902
902
|
|
|
903
903
|
|
|
904
|
-
export declare interface
|
|
904
|
+
export declare interface SwirlIconAdminPanelSettings extends Components.SwirlIconAdminPanelSettings {}
|
|
905
905
|
|
|
906
906
|
@ProxyCmp({
|
|
907
907
|
defineCustomElementFn: undefined,
|
|
908
908
|
inputs: ['size']
|
|
909
909
|
})
|
|
910
910
|
@Component({
|
|
911
|
-
selector: '
|
|
911
|
+
selector: 'swirl-icon-admin-panel-settings',
|
|
912
912
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
913
913
|
template: '<ng-content></ng-content>',
|
|
914
914
|
inputs: ['size']
|
|
915
915
|
})
|
|
916
|
-
export class
|
|
916
|
+
export class SwirlIconAdminPanelSettings {
|
|
917
917
|
protected el: HTMLElement;
|
|
918
918
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
919
919
|
c.detach();
|
|
@@ -922,19 +922,19 @@ export class FlipIconAdminPanelSettings {
|
|
|
922
922
|
}
|
|
923
923
|
|
|
924
924
|
|
|
925
|
-
export declare interface
|
|
925
|
+
export declare interface SwirlIconArrowBack extends Components.SwirlIconArrowBack {}
|
|
926
926
|
|
|
927
927
|
@ProxyCmp({
|
|
928
928
|
defineCustomElementFn: undefined,
|
|
929
929
|
inputs: ['size']
|
|
930
930
|
})
|
|
931
931
|
@Component({
|
|
932
|
-
selector: '
|
|
932
|
+
selector: 'swirl-icon-arrow-back',
|
|
933
933
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
934
934
|
template: '<ng-content></ng-content>',
|
|
935
935
|
inputs: ['size']
|
|
936
936
|
})
|
|
937
|
-
export class
|
|
937
|
+
export class SwirlIconArrowBack {
|
|
938
938
|
protected el: HTMLElement;
|
|
939
939
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
940
940
|
c.detach();
|
|
@@ -943,19 +943,19 @@ export class FlipIconArrowBack {
|
|
|
943
943
|
}
|
|
944
944
|
|
|
945
945
|
|
|
946
|
-
export declare interface
|
|
946
|
+
export declare interface SwirlIconArrowDownward extends Components.SwirlIconArrowDownward {}
|
|
947
947
|
|
|
948
948
|
@ProxyCmp({
|
|
949
949
|
defineCustomElementFn: undefined,
|
|
950
950
|
inputs: ['size']
|
|
951
951
|
})
|
|
952
952
|
@Component({
|
|
953
|
-
selector: '
|
|
953
|
+
selector: 'swirl-icon-arrow-downward',
|
|
954
954
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
955
955
|
template: '<ng-content></ng-content>',
|
|
956
956
|
inputs: ['size']
|
|
957
957
|
})
|
|
958
|
-
export class
|
|
958
|
+
export class SwirlIconArrowDownward {
|
|
959
959
|
protected el: HTMLElement;
|
|
960
960
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
961
961
|
c.detach();
|
|
@@ -964,19 +964,19 @@ export class FlipIconArrowForward {
|
|
|
964
964
|
}
|
|
965
965
|
|
|
966
966
|
|
|
967
|
-
export declare interface
|
|
967
|
+
export declare interface SwirlIconArrowForward extends Components.SwirlIconArrowForward {}
|
|
968
968
|
|
|
969
969
|
@ProxyCmp({
|
|
970
970
|
defineCustomElementFn: undefined,
|
|
971
971
|
inputs: ['size']
|
|
972
972
|
})
|
|
973
973
|
@Component({
|
|
974
|
-
selector: '
|
|
974
|
+
selector: 'swirl-icon-arrow-forward',
|
|
975
975
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
976
976
|
template: '<ng-content></ng-content>',
|
|
977
977
|
inputs: ['size']
|
|
978
978
|
})
|
|
979
|
-
export class
|
|
979
|
+
export class SwirlIconArrowForward {
|
|
980
980
|
protected el: HTMLElement;
|
|
981
981
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
982
982
|
c.detach();
|
|
@@ -985,19 +985,19 @@ export class FlipIconArrowLeft {
|
|
|
985
985
|
}
|
|
986
986
|
|
|
987
987
|
|
|
988
|
-
export declare interface
|
|
988
|
+
export declare interface SwirlIconArrowLeft extends Components.SwirlIconArrowLeft {}
|
|
989
989
|
|
|
990
990
|
@ProxyCmp({
|
|
991
991
|
defineCustomElementFn: undefined,
|
|
992
992
|
inputs: ['size']
|
|
993
993
|
})
|
|
994
994
|
@Component({
|
|
995
|
-
selector: '
|
|
995
|
+
selector: 'swirl-icon-arrow-left',
|
|
996
996
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
997
997
|
template: '<ng-content></ng-content>',
|
|
998
998
|
inputs: ['size']
|
|
999
999
|
})
|
|
1000
|
-
export class
|
|
1000
|
+
export class SwirlIconArrowLeft {
|
|
1001
1001
|
protected el: HTMLElement;
|
|
1002
1002
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1003
1003
|
c.detach();
|
|
@@ -1006,19 +1006,19 @@ export class FlipIconArrowRight {
|
|
|
1006
1006
|
}
|
|
1007
1007
|
|
|
1008
1008
|
|
|
1009
|
-
export declare interface
|
|
1009
|
+
export declare interface SwirlIconArrowRight extends Components.SwirlIconArrowRight {}
|
|
1010
1010
|
|
|
1011
1011
|
@ProxyCmp({
|
|
1012
1012
|
defineCustomElementFn: undefined,
|
|
1013
1013
|
inputs: ['size']
|
|
1014
1014
|
})
|
|
1015
1015
|
@Component({
|
|
1016
|
-
selector: '
|
|
1016
|
+
selector: 'swirl-icon-arrow-right',
|
|
1017
1017
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1018
1018
|
template: '<ng-content></ng-content>',
|
|
1019
1019
|
inputs: ['size']
|
|
1020
1020
|
})
|
|
1021
|
-
export class
|
|
1021
|
+
export class SwirlIconArrowRight {
|
|
1022
1022
|
protected el: HTMLElement;
|
|
1023
1023
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1024
1024
|
c.detach();
|
|
@@ -1027,19 +1027,19 @@ export class FlipIconArrowRightSmall {
|
|
|
1027
1027
|
}
|
|
1028
1028
|
|
|
1029
1029
|
|
|
1030
|
-
export declare interface
|
|
1030
|
+
export declare interface SwirlIconArrowRightSmall extends Components.SwirlIconArrowRightSmall {}
|
|
1031
1031
|
|
|
1032
1032
|
@ProxyCmp({
|
|
1033
1033
|
defineCustomElementFn: undefined,
|
|
1034
1034
|
inputs: ['size']
|
|
1035
1035
|
})
|
|
1036
1036
|
@Component({
|
|
1037
|
-
selector: '
|
|
1037
|
+
selector: 'swirl-icon-arrow-right-small',
|
|
1038
1038
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1039
1039
|
template: '<ng-content></ng-content>',
|
|
1040
1040
|
inputs: ['size']
|
|
1041
1041
|
})
|
|
1042
|
-
export class
|
|
1042
|
+
export class SwirlIconArrowRightSmall {
|
|
1043
1043
|
protected el: HTMLElement;
|
|
1044
1044
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1045
1045
|
c.detach();
|
|
@@ -1048,19 +1048,19 @@ export class FlipIconAttachment {
|
|
|
1048
1048
|
}
|
|
1049
1049
|
|
|
1050
1050
|
|
|
1051
|
-
export declare interface
|
|
1051
|
+
export declare interface SwirlIconArrowUpward extends Components.SwirlIconArrowUpward {}
|
|
1052
1052
|
|
|
1053
1053
|
@ProxyCmp({
|
|
1054
1054
|
defineCustomElementFn: undefined,
|
|
1055
1055
|
inputs: ['size']
|
|
1056
1056
|
})
|
|
1057
1057
|
@Component({
|
|
1058
|
-
selector: '
|
|
1058
|
+
selector: 'swirl-icon-arrow-upward',
|
|
1059
1059
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1060
1060
|
template: '<ng-content></ng-content>',
|
|
1061
1061
|
inputs: ['size']
|
|
1062
1062
|
})
|
|
1063
|
-
export class
|
|
1063
|
+
export class SwirlIconArrowUpward {
|
|
1064
1064
|
protected el: HTMLElement;
|
|
1065
1065
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1066
1066
|
c.detach();
|
|
@@ -1069,19 +1069,19 @@ export class FlipIconBlock {
|
|
|
1069
1069
|
}
|
|
1070
1070
|
|
|
1071
1071
|
|
|
1072
|
-
export declare interface
|
|
1072
|
+
export declare interface SwirlIconAttachment extends Components.SwirlIconAttachment {}
|
|
1073
1073
|
|
|
1074
1074
|
@ProxyCmp({
|
|
1075
1075
|
defineCustomElementFn: undefined,
|
|
1076
1076
|
inputs: ['size']
|
|
1077
1077
|
})
|
|
1078
1078
|
@Component({
|
|
1079
|
-
selector: '
|
|
1079
|
+
selector: 'swirl-icon-attachment',
|
|
1080
1080
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1081
1081
|
template: '<ng-content></ng-content>',
|
|
1082
1082
|
inputs: ['size']
|
|
1083
1083
|
})
|
|
1084
|
-
export class
|
|
1084
|
+
export class SwirlIconAttachment {
|
|
1085
1085
|
protected el: HTMLElement;
|
|
1086
1086
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1087
1087
|
c.detach();
|
|
@@ -1090,19 +1090,19 @@ export class FlipIconCancel {
|
|
|
1090
1090
|
}
|
|
1091
1091
|
|
|
1092
1092
|
|
|
1093
|
-
export declare interface
|
|
1093
|
+
export declare interface SwirlIconBlock extends Components.SwirlIconBlock {}
|
|
1094
1094
|
|
|
1095
1095
|
@ProxyCmp({
|
|
1096
1096
|
defineCustomElementFn: undefined,
|
|
1097
1097
|
inputs: ['size']
|
|
1098
1098
|
})
|
|
1099
1099
|
@Component({
|
|
1100
|
-
selector: '
|
|
1100
|
+
selector: 'swirl-icon-block',
|
|
1101
1101
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1102
1102
|
template: '<ng-content></ng-content>',
|
|
1103
1103
|
inputs: ['size']
|
|
1104
1104
|
})
|
|
1105
|
-
export class
|
|
1105
|
+
export class SwirlIconBlock {
|
|
1106
1106
|
protected el: HTMLElement;
|
|
1107
1107
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1108
1108
|
c.detach();
|
|
@@ -1111,19 +1111,19 @@ export class FlipIconChatBubble {
|
|
|
1111
1111
|
}
|
|
1112
1112
|
|
|
1113
1113
|
|
|
1114
|
-
export declare interface
|
|
1114
|
+
export declare interface SwirlIconCancel extends Components.SwirlIconCancel {}
|
|
1115
1115
|
|
|
1116
1116
|
@ProxyCmp({
|
|
1117
1117
|
defineCustomElementFn: undefined,
|
|
1118
1118
|
inputs: ['size']
|
|
1119
1119
|
})
|
|
1120
1120
|
@Component({
|
|
1121
|
-
selector: '
|
|
1121
|
+
selector: 'swirl-icon-cancel',
|
|
1122
1122
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1123
1123
|
template: '<ng-content></ng-content>',
|
|
1124
1124
|
inputs: ['size']
|
|
1125
1125
|
})
|
|
1126
|
-
export class
|
|
1126
|
+
export class SwirlIconCancel {
|
|
1127
1127
|
protected el: HTMLElement;
|
|
1128
1128
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1129
1129
|
c.detach();
|
|
@@ -1132,19 +1132,19 @@ export class FlipIconCheck {
|
|
|
1132
1132
|
}
|
|
1133
1133
|
|
|
1134
1134
|
|
|
1135
|
-
export declare interface
|
|
1135
|
+
export declare interface SwirlIconChatBubble extends Components.SwirlIconChatBubble {}
|
|
1136
1136
|
|
|
1137
1137
|
@ProxyCmp({
|
|
1138
1138
|
defineCustomElementFn: undefined,
|
|
1139
1139
|
inputs: ['size']
|
|
1140
1140
|
})
|
|
1141
1141
|
@Component({
|
|
1142
|
-
selector: '
|
|
1142
|
+
selector: 'swirl-icon-chat-bubble',
|
|
1143
1143
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1144
1144
|
template: '<ng-content></ng-content>',
|
|
1145
1145
|
inputs: ['size']
|
|
1146
1146
|
})
|
|
1147
|
-
export class
|
|
1147
|
+
export class SwirlIconChatBubble {
|
|
1148
1148
|
protected el: HTMLElement;
|
|
1149
1149
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1150
1150
|
c.detach();
|
|
@@ -1153,19 +1153,19 @@ export class FlipIconCheckCircle {
|
|
|
1153
1153
|
}
|
|
1154
1154
|
|
|
1155
1155
|
|
|
1156
|
-
export declare interface
|
|
1156
|
+
export declare interface SwirlIconChatsFilled extends Components.SwirlIconChatsFilled {}
|
|
1157
1157
|
|
|
1158
1158
|
@ProxyCmp({
|
|
1159
1159
|
defineCustomElementFn: undefined,
|
|
1160
1160
|
inputs: ['size']
|
|
1161
1161
|
})
|
|
1162
1162
|
@Component({
|
|
1163
|
-
selector: '
|
|
1163
|
+
selector: 'swirl-icon-chats-filled',
|
|
1164
1164
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1165
1165
|
template: '<ng-content></ng-content>',
|
|
1166
1166
|
inputs: ['size']
|
|
1167
1167
|
})
|
|
1168
|
-
export class
|
|
1168
|
+
export class SwirlIconChatsFilled {
|
|
1169
1169
|
protected el: HTMLElement;
|
|
1170
1170
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1171
1171
|
c.detach();
|
|
@@ -1174,19 +1174,19 @@ export class FlipIconCheckSmall {
|
|
|
1174
1174
|
}
|
|
1175
1175
|
|
|
1176
1176
|
|
|
1177
|
-
export declare interface
|
|
1177
|
+
export declare interface SwirlIconChatsOutlined extends Components.SwirlIconChatsOutlined {}
|
|
1178
1178
|
|
|
1179
1179
|
@ProxyCmp({
|
|
1180
1180
|
defineCustomElementFn: undefined,
|
|
1181
1181
|
inputs: ['size']
|
|
1182
1182
|
})
|
|
1183
1183
|
@Component({
|
|
1184
|
-
selector: '
|
|
1184
|
+
selector: 'swirl-icon-chats-outlined',
|
|
1185
1185
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1186
1186
|
template: '<ng-content></ng-content>',
|
|
1187
1187
|
inputs: ['size']
|
|
1188
1188
|
})
|
|
1189
|
-
export class
|
|
1189
|
+
export class SwirlIconChatsOutlined {
|
|
1190
1190
|
protected el: HTMLElement;
|
|
1191
1191
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1192
1192
|
c.detach();
|
|
@@ -1195,19 +1195,19 @@ export class FlipIconCheckStrong {
|
|
|
1195
1195
|
}
|
|
1196
1196
|
|
|
1197
1197
|
|
|
1198
|
-
export declare interface
|
|
1198
|
+
export declare interface SwirlIconCheck extends Components.SwirlIconCheck {}
|
|
1199
1199
|
|
|
1200
1200
|
@ProxyCmp({
|
|
1201
1201
|
defineCustomElementFn: undefined,
|
|
1202
1202
|
inputs: ['size']
|
|
1203
1203
|
})
|
|
1204
1204
|
@Component({
|
|
1205
|
-
selector: '
|
|
1205
|
+
selector: 'swirl-icon-check',
|
|
1206
1206
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1207
1207
|
template: '<ng-content></ng-content>',
|
|
1208
1208
|
inputs: ['size']
|
|
1209
1209
|
})
|
|
1210
|
-
export class
|
|
1210
|
+
export class SwirlIconCheck {
|
|
1211
1211
|
protected el: HTMLElement;
|
|
1212
1212
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1213
1213
|
c.detach();
|
|
@@ -1216,19 +1216,19 @@ export class FlipIconChevronLeft {
|
|
|
1216
1216
|
}
|
|
1217
1217
|
|
|
1218
1218
|
|
|
1219
|
-
export declare interface
|
|
1219
|
+
export declare interface SwirlIconCheckCircle extends Components.SwirlIconCheckCircle {}
|
|
1220
1220
|
|
|
1221
1221
|
@ProxyCmp({
|
|
1222
1222
|
defineCustomElementFn: undefined,
|
|
1223
1223
|
inputs: ['size']
|
|
1224
1224
|
})
|
|
1225
1225
|
@Component({
|
|
1226
|
-
selector: '
|
|
1226
|
+
selector: 'swirl-icon-check-circle',
|
|
1227
1227
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1228
1228
|
template: '<ng-content></ng-content>',
|
|
1229
1229
|
inputs: ['size']
|
|
1230
1230
|
})
|
|
1231
|
-
export class
|
|
1231
|
+
export class SwirlIconCheckCircle {
|
|
1232
1232
|
protected el: HTMLElement;
|
|
1233
1233
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1234
1234
|
c.detach();
|
|
@@ -1237,19 +1237,19 @@ export class FlipIconChevronRight {
|
|
|
1237
1237
|
}
|
|
1238
1238
|
|
|
1239
1239
|
|
|
1240
|
-
export declare interface
|
|
1240
|
+
export declare interface SwirlIconCheckSmall extends Components.SwirlIconCheckSmall {}
|
|
1241
1241
|
|
|
1242
1242
|
@ProxyCmp({
|
|
1243
1243
|
defineCustomElementFn: undefined,
|
|
1244
1244
|
inputs: ['size']
|
|
1245
1245
|
})
|
|
1246
1246
|
@Component({
|
|
1247
|
-
selector: '
|
|
1247
|
+
selector: 'swirl-icon-check-small',
|
|
1248
1248
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1249
1249
|
template: '<ng-content></ng-content>',
|
|
1250
1250
|
inputs: ['size']
|
|
1251
1251
|
})
|
|
1252
|
-
export class
|
|
1252
|
+
export class SwirlIconCheckSmall {
|
|
1253
1253
|
protected el: HTMLElement;
|
|
1254
1254
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1255
1255
|
c.detach();
|
|
@@ -1258,19 +1258,19 @@ export class FlipIconClose {
|
|
|
1258
1258
|
}
|
|
1259
1259
|
|
|
1260
1260
|
|
|
1261
|
-
export declare interface
|
|
1261
|
+
export declare interface SwirlIconCheckStrong extends Components.SwirlIconCheckStrong {}
|
|
1262
1262
|
|
|
1263
1263
|
@ProxyCmp({
|
|
1264
1264
|
defineCustomElementFn: undefined,
|
|
1265
1265
|
inputs: ['size']
|
|
1266
1266
|
})
|
|
1267
1267
|
@Component({
|
|
1268
|
-
selector: '
|
|
1268
|
+
selector: 'swirl-icon-check-strong',
|
|
1269
1269
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1270
1270
|
template: '<ng-content></ng-content>',
|
|
1271
1271
|
inputs: ['size']
|
|
1272
1272
|
})
|
|
1273
|
-
export class
|
|
1273
|
+
export class SwirlIconCheckStrong {
|
|
1274
1274
|
protected el: HTMLElement;
|
|
1275
1275
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1276
1276
|
c.detach();
|
|
@@ -1279,19 +1279,19 @@ export class FlipIconCloseSmall {
|
|
|
1279
1279
|
}
|
|
1280
1280
|
|
|
1281
1281
|
|
|
1282
|
-
export declare interface
|
|
1282
|
+
export declare interface SwirlIconChevronLeft extends Components.SwirlIconChevronLeft {}
|
|
1283
1283
|
|
|
1284
1284
|
@ProxyCmp({
|
|
1285
1285
|
defineCustomElementFn: undefined,
|
|
1286
1286
|
inputs: ['size']
|
|
1287
1287
|
})
|
|
1288
1288
|
@Component({
|
|
1289
|
-
selector: '
|
|
1289
|
+
selector: 'swirl-icon-chevron-left',
|
|
1290
1290
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1291
1291
|
template: '<ng-content></ng-content>',
|
|
1292
1292
|
inputs: ['size']
|
|
1293
1293
|
})
|
|
1294
|
-
export class
|
|
1294
|
+
export class SwirlIconChevronLeft {
|
|
1295
1295
|
protected el: HTMLElement;
|
|
1296
1296
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1297
1297
|
c.detach();
|
|
@@ -1300,19 +1300,19 @@ export class FlipIconCloudUpload {
|
|
|
1300
1300
|
}
|
|
1301
1301
|
|
|
1302
1302
|
|
|
1303
|
-
export declare interface
|
|
1303
|
+
export declare interface SwirlIconChevronRight extends Components.SwirlIconChevronRight {}
|
|
1304
1304
|
|
|
1305
1305
|
@ProxyCmp({
|
|
1306
1306
|
defineCustomElementFn: undefined,
|
|
1307
1307
|
inputs: ['size']
|
|
1308
1308
|
})
|
|
1309
1309
|
@Component({
|
|
1310
|
-
selector: '
|
|
1310
|
+
selector: 'swirl-icon-chevron-right',
|
|
1311
1311
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1312
1312
|
template: '<ng-content></ng-content>',
|
|
1313
1313
|
inputs: ['size']
|
|
1314
1314
|
})
|
|
1315
|
-
export class
|
|
1315
|
+
export class SwirlIconChevronRight {
|
|
1316
1316
|
protected el: HTMLElement;
|
|
1317
1317
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1318
1318
|
c.detach();
|
|
@@ -1321,19 +1321,19 @@ export class FlipIconComment {
|
|
|
1321
1321
|
}
|
|
1322
1322
|
|
|
1323
1323
|
|
|
1324
|
-
export declare interface
|
|
1324
|
+
export declare interface SwirlIconClose extends Components.SwirlIconClose {}
|
|
1325
1325
|
|
|
1326
1326
|
@ProxyCmp({
|
|
1327
1327
|
defineCustomElementFn: undefined,
|
|
1328
1328
|
inputs: ['size']
|
|
1329
1329
|
})
|
|
1330
1330
|
@Component({
|
|
1331
|
-
selector: '
|
|
1331
|
+
selector: 'swirl-icon-close',
|
|
1332
1332
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1333
1333
|
template: '<ng-content></ng-content>',
|
|
1334
1334
|
inputs: ['size']
|
|
1335
1335
|
})
|
|
1336
|
-
export class
|
|
1336
|
+
export class SwirlIconClose {
|
|
1337
1337
|
protected el: HTMLElement;
|
|
1338
1338
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1339
1339
|
c.detach();
|
|
@@ -1342,19 +1342,19 @@ export class FlipIconCopy {
|
|
|
1342
1342
|
}
|
|
1343
1343
|
|
|
1344
1344
|
|
|
1345
|
-
export declare interface
|
|
1345
|
+
export declare interface SwirlIconCloseSmall extends Components.SwirlIconCloseSmall {}
|
|
1346
1346
|
|
|
1347
1347
|
@ProxyCmp({
|
|
1348
1348
|
defineCustomElementFn: undefined,
|
|
1349
1349
|
inputs: ['size']
|
|
1350
1350
|
})
|
|
1351
1351
|
@Component({
|
|
1352
|
-
selector: '
|
|
1352
|
+
selector: 'swirl-icon-close-small',
|
|
1353
1353
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1354
1354
|
template: '<ng-content></ng-content>',
|
|
1355
1355
|
inputs: ['size']
|
|
1356
1356
|
})
|
|
1357
|
-
export class
|
|
1357
|
+
export class SwirlIconCloseSmall {
|
|
1358
1358
|
protected el: HTMLElement;
|
|
1359
1359
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1360
1360
|
c.detach();
|
|
@@ -1363,19 +1363,19 @@ export class FlipIconDateRange {
|
|
|
1363
1363
|
}
|
|
1364
1364
|
|
|
1365
1365
|
|
|
1366
|
-
export declare interface
|
|
1366
|
+
export declare interface SwirlIconCloudUpload extends Components.SwirlIconCloudUpload {}
|
|
1367
1367
|
|
|
1368
1368
|
@ProxyCmp({
|
|
1369
1369
|
defineCustomElementFn: undefined,
|
|
1370
1370
|
inputs: ['size']
|
|
1371
1371
|
})
|
|
1372
1372
|
@Component({
|
|
1373
|
-
selector: '
|
|
1373
|
+
selector: 'swirl-icon-cloud-upload',
|
|
1374
1374
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1375
1375
|
template: '<ng-content></ng-content>',
|
|
1376
1376
|
inputs: ['size']
|
|
1377
1377
|
})
|
|
1378
|
-
export class
|
|
1378
|
+
export class SwirlIconCloudUpload {
|
|
1379
1379
|
protected el: HTMLElement;
|
|
1380
1380
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1381
1381
|
c.detach();
|
|
@@ -1384,19 +1384,19 @@ export class FlipIconDelete {
|
|
|
1384
1384
|
}
|
|
1385
1385
|
|
|
1386
1386
|
|
|
1387
|
-
export declare interface
|
|
1387
|
+
export declare interface SwirlIconColumn extends Components.SwirlIconColumn {}
|
|
1388
1388
|
|
|
1389
1389
|
@ProxyCmp({
|
|
1390
1390
|
defineCustomElementFn: undefined,
|
|
1391
1391
|
inputs: ['size']
|
|
1392
1392
|
})
|
|
1393
1393
|
@Component({
|
|
1394
|
-
selector: '
|
|
1394
|
+
selector: 'swirl-icon-column',
|
|
1395
1395
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1396
1396
|
template: '<ng-content></ng-content>',
|
|
1397
1397
|
inputs: ['size']
|
|
1398
1398
|
})
|
|
1399
|
-
export class
|
|
1399
|
+
export class SwirlIconColumn {
|
|
1400
1400
|
protected el: HTMLElement;
|
|
1401
1401
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1402
1402
|
c.detach();
|
|
@@ -1405,19 +1405,19 @@ export class FlipIconDescription {
|
|
|
1405
1405
|
}
|
|
1406
1406
|
|
|
1407
1407
|
|
|
1408
|
-
export declare interface
|
|
1408
|
+
export declare interface SwirlIconComment extends Components.SwirlIconComment {}
|
|
1409
1409
|
|
|
1410
1410
|
@ProxyCmp({
|
|
1411
1411
|
defineCustomElementFn: undefined,
|
|
1412
1412
|
inputs: ['size']
|
|
1413
1413
|
})
|
|
1414
1414
|
@Component({
|
|
1415
|
-
selector: '
|
|
1415
|
+
selector: 'swirl-icon-comment',
|
|
1416
1416
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1417
1417
|
template: '<ng-content></ng-content>',
|
|
1418
1418
|
inputs: ['size']
|
|
1419
1419
|
})
|
|
1420
|
-
export class
|
|
1420
|
+
export class SwirlIconComment {
|
|
1421
1421
|
protected el: HTMLElement;
|
|
1422
1422
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1423
1423
|
c.detach();
|
|
@@ -1426,19 +1426,19 @@ export class FlipIconDownload {
|
|
|
1426
1426
|
}
|
|
1427
1427
|
|
|
1428
1428
|
|
|
1429
|
-
export declare interface
|
|
1429
|
+
export declare interface SwirlIconCopy extends Components.SwirlIconCopy {}
|
|
1430
1430
|
|
|
1431
1431
|
@ProxyCmp({
|
|
1432
1432
|
defineCustomElementFn: undefined,
|
|
1433
1433
|
inputs: ['size']
|
|
1434
1434
|
})
|
|
1435
1435
|
@Component({
|
|
1436
|
-
selector: '
|
|
1436
|
+
selector: 'swirl-icon-copy',
|
|
1437
1437
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1438
1438
|
template: '<ng-content></ng-content>',
|
|
1439
1439
|
inputs: ['size']
|
|
1440
1440
|
})
|
|
1441
|
-
export class
|
|
1441
|
+
export class SwirlIconCopy {
|
|
1442
1442
|
protected el: HTMLElement;
|
|
1443
1443
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1444
1444
|
c.detach();
|
|
@@ -1447,19 +1447,19 @@ export class FlipIconEdit {
|
|
|
1447
1447
|
}
|
|
1448
1448
|
|
|
1449
1449
|
|
|
1450
|
-
export declare interface
|
|
1450
|
+
export declare interface SwirlIconDateRange extends Components.SwirlIconDateRange {}
|
|
1451
1451
|
|
|
1452
1452
|
@ProxyCmp({
|
|
1453
1453
|
defineCustomElementFn: undefined,
|
|
1454
1454
|
inputs: ['size']
|
|
1455
1455
|
})
|
|
1456
1456
|
@Component({
|
|
1457
|
-
selector: '
|
|
1457
|
+
selector: 'swirl-icon-date-range',
|
|
1458
1458
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1459
1459
|
template: '<ng-content></ng-content>',
|
|
1460
1460
|
inputs: ['size']
|
|
1461
1461
|
})
|
|
1462
|
-
export class
|
|
1462
|
+
export class SwirlIconDateRange {
|
|
1463
1463
|
protected el: HTMLElement;
|
|
1464
1464
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1465
1465
|
c.detach();
|
|
@@ -1468,19 +1468,19 @@ export class FlipIconEmojiMood {
|
|
|
1468
1468
|
}
|
|
1469
1469
|
|
|
1470
1470
|
|
|
1471
|
-
export declare interface
|
|
1471
|
+
export declare interface SwirlIconDelete extends Components.SwirlIconDelete {}
|
|
1472
1472
|
|
|
1473
1473
|
@ProxyCmp({
|
|
1474
1474
|
defineCustomElementFn: undefined,
|
|
1475
1475
|
inputs: ['size']
|
|
1476
1476
|
})
|
|
1477
1477
|
@Component({
|
|
1478
|
-
selector: '
|
|
1478
|
+
selector: 'swirl-icon-delete',
|
|
1479
1479
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1480
1480
|
template: '<ng-content></ng-content>',
|
|
1481
1481
|
inputs: ['size']
|
|
1482
1482
|
})
|
|
1483
|
-
export class
|
|
1483
|
+
export class SwirlIconDelete {
|
|
1484
1484
|
protected el: HTMLElement;
|
|
1485
1485
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1486
1486
|
c.detach();
|
|
@@ -1489,19 +1489,19 @@ export class FlipIconEmojiSatisfied {
|
|
|
1489
1489
|
}
|
|
1490
1490
|
|
|
1491
1491
|
|
|
1492
|
-
export declare interface
|
|
1492
|
+
export declare interface SwirlIconDescription extends Components.SwirlIconDescription {}
|
|
1493
1493
|
|
|
1494
1494
|
@ProxyCmp({
|
|
1495
1495
|
defineCustomElementFn: undefined,
|
|
1496
1496
|
inputs: ['size']
|
|
1497
1497
|
})
|
|
1498
1498
|
@Component({
|
|
1499
|
-
selector: '
|
|
1499
|
+
selector: 'swirl-icon-description',
|
|
1500
1500
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1501
1501
|
template: '<ng-content></ng-content>',
|
|
1502
1502
|
inputs: ['size']
|
|
1503
1503
|
})
|
|
1504
|
-
export class
|
|
1504
|
+
export class SwirlIconDescription {
|
|
1505
1505
|
protected el: HTMLElement;
|
|
1506
1506
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1507
1507
|
c.detach();
|
|
@@ -1510,19 +1510,19 @@ export class FlipIconError {
|
|
|
1510
1510
|
}
|
|
1511
1511
|
|
|
1512
1512
|
|
|
1513
|
-
export declare interface
|
|
1513
|
+
export declare interface SwirlIconDownload extends Components.SwirlIconDownload {}
|
|
1514
1514
|
|
|
1515
1515
|
@ProxyCmp({
|
|
1516
1516
|
defineCustomElementFn: undefined,
|
|
1517
1517
|
inputs: ['size']
|
|
1518
1518
|
})
|
|
1519
1519
|
@Component({
|
|
1520
|
-
selector: '
|
|
1520
|
+
selector: 'swirl-icon-download',
|
|
1521
1521
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1522
1522
|
template: '<ng-content></ng-content>',
|
|
1523
1523
|
inputs: ['size']
|
|
1524
1524
|
})
|
|
1525
|
-
export class
|
|
1525
|
+
export class SwirlIconDownload {
|
|
1526
1526
|
protected el: HTMLElement;
|
|
1527
1527
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1528
1528
|
c.detach();
|
|
@@ -1531,19 +1531,19 @@ export class FlipIconExpandLess {
|
|
|
1531
1531
|
}
|
|
1532
1532
|
|
|
1533
1533
|
|
|
1534
|
-
export declare interface
|
|
1534
|
+
export declare interface SwirlIconEdit extends Components.SwirlIconEdit {}
|
|
1535
1535
|
|
|
1536
1536
|
@ProxyCmp({
|
|
1537
1537
|
defineCustomElementFn: undefined,
|
|
1538
1538
|
inputs: ['size']
|
|
1539
1539
|
})
|
|
1540
1540
|
@Component({
|
|
1541
|
-
selector: '
|
|
1541
|
+
selector: 'swirl-icon-edit',
|
|
1542
1542
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1543
1543
|
template: '<ng-content></ng-content>',
|
|
1544
1544
|
inputs: ['size']
|
|
1545
1545
|
})
|
|
1546
|
-
export class
|
|
1546
|
+
export class SwirlIconEdit {
|
|
1547
1547
|
protected el: HTMLElement;
|
|
1548
1548
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1549
1549
|
c.detach();
|
|
@@ -1552,19 +1552,19 @@ export class FlipIconExpandMore {
|
|
|
1552
1552
|
}
|
|
1553
1553
|
|
|
1554
1554
|
|
|
1555
|
-
export declare interface
|
|
1555
|
+
export declare interface SwirlIconEmojiMood extends Components.SwirlIconEmojiMood {}
|
|
1556
1556
|
|
|
1557
1557
|
@ProxyCmp({
|
|
1558
1558
|
defineCustomElementFn: undefined,
|
|
1559
1559
|
inputs: ['size']
|
|
1560
1560
|
})
|
|
1561
1561
|
@Component({
|
|
1562
|
-
selector: '
|
|
1562
|
+
selector: 'swirl-icon-emoji-mood',
|
|
1563
1563
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1564
1564
|
template: '<ng-content></ng-content>',
|
|
1565
1565
|
inputs: ['size']
|
|
1566
1566
|
})
|
|
1567
|
-
export class
|
|
1567
|
+
export class SwirlIconEmojiMood {
|
|
1568
1568
|
protected el: HTMLElement;
|
|
1569
1569
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1570
1570
|
c.detach();
|
|
@@ -1573,19 +1573,19 @@ export class FlipIconFile {
|
|
|
1573
1573
|
}
|
|
1574
1574
|
|
|
1575
1575
|
|
|
1576
|
-
export declare interface
|
|
1576
|
+
export declare interface SwirlIconEmojiSatisfied extends Components.SwirlIconEmojiSatisfied {}
|
|
1577
1577
|
|
|
1578
1578
|
@ProxyCmp({
|
|
1579
1579
|
defineCustomElementFn: undefined,
|
|
1580
1580
|
inputs: ['size']
|
|
1581
1581
|
})
|
|
1582
1582
|
@Component({
|
|
1583
|
-
selector: '
|
|
1583
|
+
selector: 'swirl-icon-emoji-satisfied',
|
|
1584
1584
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1585
1585
|
template: '<ng-content></ng-content>',
|
|
1586
1586
|
inputs: ['size']
|
|
1587
1587
|
})
|
|
1588
|
-
export class
|
|
1588
|
+
export class SwirlIconEmojiSatisfied {
|
|
1589
1589
|
protected el: HTMLElement;
|
|
1590
1590
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1591
1591
|
c.detach();
|
|
@@ -1594,19 +1594,19 @@ export class FlipIconFolderShared {
|
|
|
1594
1594
|
}
|
|
1595
1595
|
|
|
1596
1596
|
|
|
1597
|
-
export declare interface
|
|
1597
|
+
export declare interface SwirlIconError extends Components.SwirlIconError {}
|
|
1598
1598
|
|
|
1599
1599
|
@ProxyCmp({
|
|
1600
1600
|
defineCustomElementFn: undefined,
|
|
1601
1601
|
inputs: ['size']
|
|
1602
1602
|
})
|
|
1603
1603
|
@Component({
|
|
1604
|
-
selector: '
|
|
1604
|
+
selector: 'swirl-icon-error',
|
|
1605
1605
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1606
1606
|
template: '<ng-content></ng-content>',
|
|
1607
1607
|
inputs: ['size']
|
|
1608
1608
|
})
|
|
1609
|
-
export class
|
|
1609
|
+
export class SwirlIconError {
|
|
1610
1610
|
protected el: HTMLElement;
|
|
1611
1611
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1612
1612
|
c.detach();
|
|
@@ -1615,19 +1615,19 @@ export class FlipIconFullscreen {
|
|
|
1615
1615
|
}
|
|
1616
1616
|
|
|
1617
1617
|
|
|
1618
|
-
export declare interface
|
|
1618
|
+
export declare interface SwirlIconExpandLess extends Components.SwirlIconExpandLess {}
|
|
1619
1619
|
|
|
1620
1620
|
@ProxyCmp({
|
|
1621
1621
|
defineCustomElementFn: undefined,
|
|
1622
1622
|
inputs: ['size']
|
|
1623
1623
|
})
|
|
1624
1624
|
@Component({
|
|
1625
|
-
selector: '
|
|
1625
|
+
selector: 'swirl-icon-expand-less',
|
|
1626
1626
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1627
1627
|
template: '<ng-content></ng-content>',
|
|
1628
1628
|
inputs: ['size']
|
|
1629
1629
|
})
|
|
1630
|
-
export class
|
|
1630
|
+
export class SwirlIconExpandLess {
|
|
1631
1631
|
protected el: HTMLElement;
|
|
1632
1632
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1633
1633
|
c.detach();
|
|
@@ -1636,19 +1636,19 @@ export class FlipIconFullscreenExit {
|
|
|
1636
1636
|
}
|
|
1637
1637
|
|
|
1638
1638
|
|
|
1639
|
-
export declare interface
|
|
1639
|
+
export declare interface SwirlIconExpandMore extends Components.SwirlIconExpandMore {}
|
|
1640
1640
|
|
|
1641
1641
|
@ProxyCmp({
|
|
1642
1642
|
defineCustomElementFn: undefined,
|
|
1643
1643
|
inputs: ['size']
|
|
1644
1644
|
})
|
|
1645
1645
|
@Component({
|
|
1646
|
-
selector: '
|
|
1646
|
+
selector: 'swirl-icon-expand-more',
|
|
1647
1647
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1648
1648
|
template: '<ng-content></ng-content>',
|
|
1649
1649
|
inputs: ['size']
|
|
1650
1650
|
})
|
|
1651
|
-
export class
|
|
1651
|
+
export class SwirlIconExpandMore {
|
|
1652
1652
|
protected el: HTMLElement;
|
|
1653
1653
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1654
1654
|
c.detach();
|
|
@@ -1657,19 +1657,19 @@ export class FlipIconGroupAssign {
|
|
|
1657
1657
|
}
|
|
1658
1658
|
|
|
1659
1659
|
|
|
1660
|
-
export declare interface
|
|
1660
|
+
export declare interface SwirlIconFile extends Components.SwirlIconFile {}
|
|
1661
1661
|
|
|
1662
1662
|
@ProxyCmp({
|
|
1663
1663
|
defineCustomElementFn: undefined,
|
|
1664
1664
|
inputs: ['size']
|
|
1665
1665
|
})
|
|
1666
1666
|
@Component({
|
|
1667
|
-
selector: '
|
|
1667
|
+
selector: 'swirl-icon-file',
|
|
1668
1668
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1669
1669
|
template: '<ng-content></ng-content>',
|
|
1670
1670
|
inputs: ['size']
|
|
1671
1671
|
})
|
|
1672
|
-
export class
|
|
1672
|
+
export class SwirlIconFile {
|
|
1673
1673
|
protected el: HTMLElement;
|
|
1674
1674
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1675
1675
|
c.detach();
|
|
@@ -1678,19 +1678,19 @@ export class FlipIconGroups {
|
|
|
1678
1678
|
}
|
|
1679
1679
|
|
|
1680
1680
|
|
|
1681
|
-
export declare interface
|
|
1681
|
+
export declare interface SwirlIconFilter extends Components.SwirlIconFilter {}
|
|
1682
1682
|
|
|
1683
1683
|
@ProxyCmp({
|
|
1684
1684
|
defineCustomElementFn: undefined,
|
|
1685
1685
|
inputs: ['size']
|
|
1686
1686
|
})
|
|
1687
1687
|
@Component({
|
|
1688
|
-
selector: '
|
|
1688
|
+
selector: 'swirl-icon-filter',
|
|
1689
1689
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1690
1690
|
template: '<ng-content></ng-content>',
|
|
1691
1691
|
inputs: ['size']
|
|
1692
1692
|
})
|
|
1693
|
-
export class
|
|
1693
|
+
export class SwirlIconFilter {
|
|
1694
1694
|
protected el: HTMLElement;
|
|
1695
1695
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1696
1696
|
c.detach();
|
|
@@ -1699,19 +1699,19 @@ export class FlipIconGroupsCustom {
|
|
|
1699
1699
|
}
|
|
1700
1700
|
|
|
1701
1701
|
|
|
1702
|
-
export declare interface
|
|
1702
|
+
export declare interface SwirlIconFolderShared extends Components.SwirlIconFolderShared {}
|
|
1703
1703
|
|
|
1704
1704
|
@ProxyCmp({
|
|
1705
1705
|
defineCustomElementFn: undefined,
|
|
1706
1706
|
inputs: ['size']
|
|
1707
1707
|
})
|
|
1708
1708
|
@Component({
|
|
1709
|
-
selector: '
|
|
1709
|
+
selector: 'swirl-icon-folder-shared',
|
|
1710
1710
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1711
1711
|
template: '<ng-content></ng-content>',
|
|
1712
1712
|
inputs: ['size']
|
|
1713
1713
|
})
|
|
1714
|
-
export class
|
|
1714
|
+
export class SwirlIconFolderShared {
|
|
1715
1715
|
protected el: HTMLElement;
|
|
1716
1716
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1717
1717
|
c.detach();
|
|
@@ -1720,19 +1720,19 @@ export class FlipIconHelp {
|
|
|
1720
1720
|
}
|
|
1721
1721
|
|
|
1722
1722
|
|
|
1723
|
-
export declare interface
|
|
1723
|
+
export declare interface SwirlIconFullscreen extends Components.SwirlIconFullscreen {}
|
|
1724
1724
|
|
|
1725
1725
|
@ProxyCmp({
|
|
1726
1726
|
defineCustomElementFn: undefined,
|
|
1727
1727
|
inputs: ['size']
|
|
1728
1728
|
})
|
|
1729
1729
|
@Component({
|
|
1730
|
-
selector: '
|
|
1730
|
+
selector: 'swirl-icon-fullscreen',
|
|
1731
1731
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1732
1732
|
template: '<ng-content></ng-content>',
|
|
1733
1733
|
inputs: ['size']
|
|
1734
1734
|
})
|
|
1735
|
-
export class
|
|
1735
|
+
export class SwirlIconFullscreen {
|
|
1736
1736
|
protected el: HTMLElement;
|
|
1737
1737
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1738
1738
|
c.detach();
|
|
@@ -1741,19 +1741,19 @@ export class FlipIconImage {
|
|
|
1741
1741
|
}
|
|
1742
1742
|
|
|
1743
1743
|
|
|
1744
|
-
export declare interface
|
|
1744
|
+
export declare interface SwirlIconFullscreenExit extends Components.SwirlIconFullscreenExit {}
|
|
1745
1745
|
|
|
1746
1746
|
@ProxyCmp({
|
|
1747
1747
|
defineCustomElementFn: undefined,
|
|
1748
1748
|
inputs: ['size']
|
|
1749
1749
|
})
|
|
1750
1750
|
@Component({
|
|
1751
|
-
selector: '
|
|
1751
|
+
selector: 'swirl-icon-fullscreen-exit',
|
|
1752
1752
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1753
1753
|
template: '<ng-content></ng-content>',
|
|
1754
1754
|
inputs: ['size']
|
|
1755
1755
|
})
|
|
1756
|
-
export class
|
|
1756
|
+
export class SwirlIconFullscreenExit {
|
|
1757
1757
|
protected el: HTMLElement;
|
|
1758
1758
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1759
1759
|
c.detach();
|
|
@@ -1762,19 +1762,19 @@ export class FlipIconInfo {
|
|
|
1762
1762
|
}
|
|
1763
1763
|
|
|
1764
1764
|
|
|
1765
|
-
export declare interface
|
|
1765
|
+
export declare interface SwirlIconGroupAssign extends Components.SwirlIconGroupAssign {}
|
|
1766
1766
|
|
|
1767
1767
|
@ProxyCmp({
|
|
1768
1768
|
defineCustomElementFn: undefined,
|
|
1769
1769
|
inputs: ['size']
|
|
1770
1770
|
})
|
|
1771
1771
|
@Component({
|
|
1772
|
-
selector: '
|
|
1772
|
+
selector: 'swirl-icon-group-assign',
|
|
1773
1773
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1774
1774
|
template: '<ng-content></ng-content>',
|
|
1775
1775
|
inputs: ['size']
|
|
1776
1776
|
})
|
|
1777
|
-
export class
|
|
1777
|
+
export class SwirlIconGroupAssign {
|
|
1778
1778
|
protected el: HTMLElement;
|
|
1779
1779
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1780
1780
|
c.detach();
|
|
@@ -1783,19 +1783,19 @@ export class FlipIconInventory {
|
|
|
1783
1783
|
}
|
|
1784
1784
|
|
|
1785
1785
|
|
|
1786
|
-
export declare interface
|
|
1786
|
+
export declare interface SwirlIconGroups extends Components.SwirlIconGroups {}
|
|
1787
1787
|
|
|
1788
1788
|
@ProxyCmp({
|
|
1789
1789
|
defineCustomElementFn: undefined,
|
|
1790
1790
|
inputs: ['size']
|
|
1791
1791
|
})
|
|
1792
1792
|
@Component({
|
|
1793
|
-
selector: '
|
|
1793
|
+
selector: 'swirl-icon-groups',
|
|
1794
1794
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1795
1795
|
template: '<ng-content></ng-content>',
|
|
1796
1796
|
inputs: ['size']
|
|
1797
1797
|
})
|
|
1798
|
-
export class
|
|
1798
|
+
export class SwirlIconGroups {
|
|
1799
1799
|
protected el: HTMLElement;
|
|
1800
1800
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1801
1801
|
c.detach();
|
|
@@ -1804,19 +1804,19 @@ export class FlipIconLike {
|
|
|
1804
1804
|
}
|
|
1805
1805
|
|
|
1806
1806
|
|
|
1807
|
-
export declare interface
|
|
1807
|
+
export declare interface SwirlIconGroupsCustom extends Components.SwirlIconGroupsCustom {}
|
|
1808
1808
|
|
|
1809
1809
|
@ProxyCmp({
|
|
1810
1810
|
defineCustomElementFn: undefined,
|
|
1811
1811
|
inputs: ['size']
|
|
1812
1812
|
})
|
|
1813
1813
|
@Component({
|
|
1814
|
-
selector: '
|
|
1814
|
+
selector: 'swirl-icon-groups-custom',
|
|
1815
1815
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1816
1816
|
template: '<ng-content></ng-content>',
|
|
1817
1817
|
inputs: ['size']
|
|
1818
1818
|
})
|
|
1819
|
-
export class
|
|
1819
|
+
export class SwirlIconGroupsCustom {
|
|
1820
1820
|
protected el: HTMLElement;
|
|
1821
1821
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1822
1822
|
c.detach();
|
|
@@ -1825,19 +1825,19 @@ export class FlipIconLink {
|
|
|
1825
1825
|
}
|
|
1826
1826
|
|
|
1827
1827
|
|
|
1828
|
-
export declare interface
|
|
1828
|
+
export declare interface SwirlIconGroupsFilled extends Components.SwirlIconGroupsFilled {}
|
|
1829
1829
|
|
|
1830
1830
|
@ProxyCmp({
|
|
1831
1831
|
defineCustomElementFn: undefined,
|
|
1832
1832
|
inputs: ['size']
|
|
1833
1833
|
})
|
|
1834
1834
|
@Component({
|
|
1835
|
-
selector: '
|
|
1835
|
+
selector: 'swirl-icon-groups-filled',
|
|
1836
1836
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1837
1837
|
template: '<ng-content></ng-content>',
|
|
1838
1838
|
inputs: ['size']
|
|
1839
1839
|
})
|
|
1840
|
-
export class
|
|
1840
|
+
export class SwirlIconGroupsFilled {
|
|
1841
1841
|
protected el: HTMLElement;
|
|
1842
1842
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1843
1843
|
c.detach();
|
|
@@ -1846,19 +1846,19 @@ export class FlipIconLock {
|
|
|
1846
1846
|
}
|
|
1847
1847
|
|
|
1848
1848
|
|
|
1849
|
-
export declare interface
|
|
1849
|
+
export declare interface SwirlIconGroupsOutlined extends Components.SwirlIconGroupsOutlined {}
|
|
1850
1850
|
|
|
1851
1851
|
@ProxyCmp({
|
|
1852
1852
|
defineCustomElementFn: undefined,
|
|
1853
1853
|
inputs: ['size']
|
|
1854
1854
|
})
|
|
1855
1855
|
@Component({
|
|
1856
|
-
selector: '
|
|
1856
|
+
selector: 'swirl-icon-groups-outlined',
|
|
1857
1857
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1858
1858
|
template: '<ng-content></ng-content>',
|
|
1859
1859
|
inputs: ['size']
|
|
1860
1860
|
})
|
|
1861
|
-
export class
|
|
1861
|
+
export class SwirlIconGroupsOutlined {
|
|
1862
1862
|
protected el: HTMLElement;
|
|
1863
1863
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1864
1864
|
c.detach();
|
|
@@ -1867,19 +1867,19 @@ export class FlipIconLogout {
|
|
|
1867
1867
|
}
|
|
1868
1868
|
|
|
1869
1869
|
|
|
1870
|
-
export declare interface
|
|
1870
|
+
export declare interface SwirlIconHelp extends Components.SwirlIconHelp {}
|
|
1871
1871
|
|
|
1872
1872
|
@ProxyCmp({
|
|
1873
1873
|
defineCustomElementFn: undefined,
|
|
1874
1874
|
inputs: ['size']
|
|
1875
1875
|
})
|
|
1876
1876
|
@Component({
|
|
1877
|
-
selector: '
|
|
1877
|
+
selector: 'swirl-icon-help',
|
|
1878
1878
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1879
1879
|
template: '<ng-content></ng-content>',
|
|
1880
1880
|
inputs: ['size']
|
|
1881
1881
|
})
|
|
1882
|
-
export class
|
|
1882
|
+
export class SwirlIconHelp {
|
|
1883
1883
|
protected el: HTMLElement;
|
|
1884
1884
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1885
1885
|
c.detach();
|
|
@@ -1888,19 +1888,19 @@ export class FlipIconMail {
|
|
|
1888
1888
|
}
|
|
1889
1889
|
|
|
1890
1890
|
|
|
1891
|
-
export declare interface
|
|
1891
|
+
export declare interface SwirlIconImage extends Components.SwirlIconImage {}
|
|
1892
1892
|
|
|
1893
1893
|
@ProxyCmp({
|
|
1894
1894
|
defineCustomElementFn: undefined,
|
|
1895
1895
|
inputs: ['size']
|
|
1896
1896
|
})
|
|
1897
1897
|
@Component({
|
|
1898
|
-
selector: '
|
|
1898
|
+
selector: 'swirl-icon-image',
|
|
1899
1899
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1900
1900
|
template: '<ng-content></ng-content>',
|
|
1901
1901
|
inputs: ['size']
|
|
1902
1902
|
})
|
|
1903
|
-
export class
|
|
1903
|
+
export class SwirlIconImage {
|
|
1904
1904
|
protected el: HTMLElement;
|
|
1905
1905
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1906
1906
|
c.detach();
|
|
@@ -1909,19 +1909,19 @@ export class FlipIconManageAccounts {
|
|
|
1909
1909
|
}
|
|
1910
1910
|
|
|
1911
1911
|
|
|
1912
|
-
export declare interface
|
|
1912
|
+
export declare interface SwirlIconInfo extends Components.SwirlIconInfo {}
|
|
1913
1913
|
|
|
1914
1914
|
@ProxyCmp({
|
|
1915
1915
|
defineCustomElementFn: undefined,
|
|
1916
1916
|
inputs: ['size']
|
|
1917
1917
|
})
|
|
1918
1918
|
@Component({
|
|
1919
|
-
selector: '
|
|
1919
|
+
selector: 'swirl-icon-info',
|
|
1920
1920
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1921
1921
|
template: '<ng-content></ng-content>',
|
|
1922
1922
|
inputs: ['size']
|
|
1923
1923
|
})
|
|
1924
|
-
export class
|
|
1924
|
+
export class SwirlIconInfo {
|
|
1925
1925
|
protected el: HTMLElement;
|
|
1926
1926
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1927
1927
|
c.detach();
|
|
@@ -1930,19 +1930,19 @@ export class FlipIconMention {
|
|
|
1930
1930
|
}
|
|
1931
1931
|
|
|
1932
1932
|
|
|
1933
|
-
export declare interface
|
|
1933
|
+
export declare interface SwirlIconInventory extends Components.SwirlIconInventory {}
|
|
1934
1934
|
|
|
1935
1935
|
@ProxyCmp({
|
|
1936
1936
|
defineCustomElementFn: undefined,
|
|
1937
1937
|
inputs: ['size']
|
|
1938
1938
|
})
|
|
1939
1939
|
@Component({
|
|
1940
|
-
selector: '
|
|
1940
|
+
selector: 'swirl-icon-inventory',
|
|
1941
1941
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1942
1942
|
template: '<ng-content></ng-content>',
|
|
1943
1943
|
inputs: ['size']
|
|
1944
1944
|
})
|
|
1945
|
-
export class
|
|
1945
|
+
export class SwirlIconInventory {
|
|
1946
1946
|
protected el: HTMLElement;
|
|
1947
1947
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1948
1948
|
c.detach();
|
|
@@ -1951,19 +1951,19 @@ export class FlipIconMenu {
|
|
|
1951
1951
|
}
|
|
1952
1952
|
|
|
1953
1953
|
|
|
1954
|
-
export declare interface
|
|
1954
|
+
export declare interface SwirlIconLike extends Components.SwirlIconLike {}
|
|
1955
1955
|
|
|
1956
1956
|
@ProxyCmp({
|
|
1957
1957
|
defineCustomElementFn: undefined,
|
|
1958
1958
|
inputs: ['size']
|
|
1959
1959
|
})
|
|
1960
1960
|
@Component({
|
|
1961
|
-
selector: '
|
|
1961
|
+
selector: 'swirl-icon-like',
|
|
1962
1962
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1963
1963
|
template: '<ng-content></ng-content>',
|
|
1964
1964
|
inputs: ['size']
|
|
1965
1965
|
})
|
|
1966
|
-
export class
|
|
1966
|
+
export class SwirlIconLike {
|
|
1967
1967
|
protected el: HTMLElement;
|
|
1968
1968
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1969
1969
|
c.detach();
|
|
@@ -1972,19 +1972,19 @@ export class FlipIconMessage {
|
|
|
1972
1972
|
}
|
|
1973
1973
|
|
|
1974
1974
|
|
|
1975
|
-
export declare interface
|
|
1975
|
+
export declare interface SwirlIconLink extends Components.SwirlIconLink {}
|
|
1976
1976
|
|
|
1977
1977
|
@ProxyCmp({
|
|
1978
1978
|
defineCustomElementFn: undefined,
|
|
1979
1979
|
inputs: ['size']
|
|
1980
1980
|
})
|
|
1981
1981
|
@Component({
|
|
1982
|
-
selector: '
|
|
1982
|
+
selector: 'swirl-icon-link',
|
|
1983
1983
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1984
1984
|
template: '<ng-content></ng-content>',
|
|
1985
1985
|
inputs: ['size']
|
|
1986
1986
|
})
|
|
1987
|
-
export class
|
|
1987
|
+
export class SwirlIconLink {
|
|
1988
1988
|
protected el: HTMLElement;
|
|
1989
1989
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1990
1990
|
c.detach();
|
|
@@ -1993,19 +1993,19 @@ export class FlipIconMoreHorizontal {
|
|
|
1993
1993
|
}
|
|
1994
1994
|
|
|
1995
1995
|
|
|
1996
|
-
export declare interface
|
|
1996
|
+
export declare interface SwirlIconLock extends Components.SwirlIconLock {}
|
|
1997
1997
|
|
|
1998
1998
|
@ProxyCmp({
|
|
1999
1999
|
defineCustomElementFn: undefined,
|
|
2000
2000
|
inputs: ['size']
|
|
2001
2001
|
})
|
|
2002
2002
|
@Component({
|
|
2003
|
-
selector: '
|
|
2003
|
+
selector: 'swirl-icon-lock',
|
|
2004
2004
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2005
2005
|
template: '<ng-content></ng-content>',
|
|
2006
2006
|
inputs: ['size']
|
|
2007
2007
|
})
|
|
2008
|
-
export class
|
|
2008
|
+
export class SwirlIconLock {
|
|
2009
2009
|
protected el: HTMLElement;
|
|
2010
2010
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2011
2011
|
c.detach();
|
|
@@ -2014,19 +2014,19 @@ export class FlipIconMoreVertikal {
|
|
|
2014
2014
|
}
|
|
2015
2015
|
|
|
2016
2016
|
|
|
2017
|
-
export declare interface
|
|
2017
|
+
export declare interface SwirlIconLogout extends Components.SwirlIconLogout {}
|
|
2018
2018
|
|
|
2019
2019
|
@ProxyCmp({
|
|
2020
2020
|
defineCustomElementFn: undefined,
|
|
2021
2021
|
inputs: ['size']
|
|
2022
2022
|
})
|
|
2023
2023
|
@Component({
|
|
2024
|
-
selector: '
|
|
2024
|
+
selector: 'swirl-icon-logout',
|
|
2025
2025
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2026
2026
|
template: '<ng-content></ng-content>',
|
|
2027
2027
|
inputs: ['size']
|
|
2028
2028
|
})
|
|
2029
|
-
export class
|
|
2029
|
+
export class SwirlIconLogout {
|
|
2030
2030
|
protected el: HTMLElement;
|
|
2031
2031
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2032
2032
|
c.detach();
|
|
@@ -2035,19 +2035,19 @@ export class FlipIconNotifications {
|
|
|
2035
2035
|
}
|
|
2036
2036
|
|
|
2037
2037
|
|
|
2038
|
-
export declare interface
|
|
2038
|
+
export declare interface SwirlIconMail extends Components.SwirlIconMail {}
|
|
2039
2039
|
|
|
2040
2040
|
@ProxyCmp({
|
|
2041
2041
|
defineCustomElementFn: undefined,
|
|
2042
2042
|
inputs: ['size']
|
|
2043
2043
|
})
|
|
2044
2044
|
@Component({
|
|
2045
|
-
selector: '
|
|
2045
|
+
selector: 'swirl-icon-mail',
|
|
2046
2046
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2047
2047
|
template: '<ng-content></ng-content>',
|
|
2048
2048
|
inputs: ['size']
|
|
2049
2049
|
})
|
|
2050
|
-
export class
|
|
2050
|
+
export class SwirlIconMail {
|
|
2051
2051
|
protected el: HTMLElement;
|
|
2052
2052
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2053
2053
|
c.detach();
|
|
@@ -2056,19 +2056,19 @@ export class FlipIconNotificationsActive {
|
|
|
2056
2056
|
}
|
|
2057
2057
|
|
|
2058
2058
|
|
|
2059
|
-
export declare interface
|
|
2059
|
+
export declare interface SwirlIconManageAccounts extends Components.SwirlIconManageAccounts {}
|
|
2060
2060
|
|
|
2061
2061
|
@ProxyCmp({
|
|
2062
2062
|
defineCustomElementFn: undefined,
|
|
2063
2063
|
inputs: ['size']
|
|
2064
2064
|
})
|
|
2065
2065
|
@Component({
|
|
2066
|
-
selector: '
|
|
2066
|
+
selector: 'swirl-icon-manage-accounts',
|
|
2067
2067
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2068
2068
|
template: '<ng-content></ng-content>',
|
|
2069
2069
|
inputs: ['size']
|
|
2070
2070
|
})
|
|
2071
|
-
export class
|
|
2071
|
+
export class SwirlIconManageAccounts {
|
|
2072
2072
|
protected el: HTMLElement;
|
|
2073
2073
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2074
2074
|
c.detach();
|
|
@@ -2077,19 +2077,19 @@ export class FlipIconNotificationsOff {
|
|
|
2077
2077
|
}
|
|
2078
2078
|
|
|
2079
2079
|
|
|
2080
|
-
export declare interface
|
|
2080
|
+
export declare interface SwirlIconMention extends Components.SwirlIconMention {}
|
|
2081
2081
|
|
|
2082
2082
|
@ProxyCmp({
|
|
2083
2083
|
defineCustomElementFn: undefined,
|
|
2084
2084
|
inputs: ['size']
|
|
2085
2085
|
})
|
|
2086
2086
|
@Component({
|
|
2087
|
-
selector: '
|
|
2087
|
+
selector: 'swirl-icon-mention',
|
|
2088
2088
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2089
2089
|
template: '<ng-content></ng-content>',
|
|
2090
2090
|
inputs: ['size']
|
|
2091
2091
|
})
|
|
2092
|
-
export class
|
|
2092
|
+
export class SwirlIconMention {
|
|
2093
2093
|
protected el: HTMLElement;
|
|
2094
2094
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2095
2095
|
c.detach();
|
|
@@ -2098,19 +2098,19 @@ export class FlipIconOpenInNew {
|
|
|
2098
2098
|
}
|
|
2099
2099
|
|
|
2100
2100
|
|
|
2101
|
-
export declare interface
|
|
2101
|
+
export declare interface SwirlIconMenu extends Components.SwirlIconMenu {}
|
|
2102
2102
|
|
|
2103
2103
|
@ProxyCmp({
|
|
2104
2104
|
defineCustomElementFn: undefined,
|
|
2105
2105
|
inputs: ['size']
|
|
2106
2106
|
})
|
|
2107
2107
|
@Component({
|
|
2108
|
-
selector: '
|
|
2108
|
+
selector: 'swirl-icon-menu',
|
|
2109
2109
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2110
2110
|
template: '<ng-content></ng-content>',
|
|
2111
2111
|
inputs: ['size']
|
|
2112
2112
|
})
|
|
2113
|
-
export class
|
|
2113
|
+
export class SwirlIconMenu {
|
|
2114
2114
|
protected el: HTMLElement;
|
|
2115
2115
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2116
2116
|
c.detach();
|
|
@@ -2119,19 +2119,19 @@ export class FlipIconPeopleAlt {
|
|
|
2119
2119
|
}
|
|
2120
2120
|
|
|
2121
2121
|
|
|
2122
|
-
export declare interface
|
|
2122
|
+
export declare interface SwirlIconMenuFilled extends Components.SwirlIconMenuFilled {}
|
|
2123
2123
|
|
|
2124
2124
|
@ProxyCmp({
|
|
2125
2125
|
defineCustomElementFn: undefined,
|
|
2126
2126
|
inputs: ['size']
|
|
2127
2127
|
})
|
|
2128
2128
|
@Component({
|
|
2129
|
-
selector: '
|
|
2129
|
+
selector: 'swirl-icon-menu-filled',
|
|
2130
2130
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2131
2131
|
template: '<ng-content></ng-content>',
|
|
2132
2132
|
inputs: ['size']
|
|
2133
2133
|
})
|
|
2134
|
-
export class
|
|
2134
|
+
export class SwirlIconMenuFilled {
|
|
2135
2135
|
protected el: HTMLElement;
|
|
2136
2136
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2137
2137
|
c.detach();
|
|
@@ -2140,19 +2140,19 @@ export class FlipIconPerson {
|
|
|
2140
2140
|
}
|
|
2141
2141
|
|
|
2142
2142
|
|
|
2143
|
-
export declare interface
|
|
2143
|
+
export declare interface SwirlIconMenuOutlined extends Components.SwirlIconMenuOutlined {}
|
|
2144
2144
|
|
|
2145
2145
|
@ProxyCmp({
|
|
2146
2146
|
defineCustomElementFn: undefined,
|
|
2147
2147
|
inputs: ['size']
|
|
2148
2148
|
})
|
|
2149
2149
|
@Component({
|
|
2150
|
-
selector: '
|
|
2150
|
+
selector: 'swirl-icon-menu-outlined',
|
|
2151
2151
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2152
2152
|
template: '<ng-content></ng-content>',
|
|
2153
2153
|
inputs: ['size']
|
|
2154
2154
|
})
|
|
2155
|
-
export class
|
|
2155
|
+
export class SwirlIconMenuOutlined {
|
|
2156
2156
|
protected el: HTMLElement;
|
|
2157
2157
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2158
2158
|
c.detach();
|
|
@@ -2161,19 +2161,19 @@ export class FlipIconPersonOff {
|
|
|
2161
2161
|
}
|
|
2162
2162
|
|
|
2163
2163
|
|
|
2164
|
-
export declare interface
|
|
2164
|
+
export declare interface SwirlIconMessage extends Components.SwirlIconMessage {}
|
|
2165
2165
|
|
|
2166
2166
|
@ProxyCmp({
|
|
2167
2167
|
defineCustomElementFn: undefined,
|
|
2168
2168
|
inputs: ['size']
|
|
2169
2169
|
})
|
|
2170
2170
|
@Component({
|
|
2171
|
-
selector: '
|
|
2171
|
+
selector: 'swirl-icon-message',
|
|
2172
2172
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2173
2173
|
template: '<ng-content></ng-content>',
|
|
2174
2174
|
inputs: ['size']
|
|
2175
2175
|
})
|
|
2176
|
-
export class
|
|
2176
|
+
export class SwirlIconMessage {
|
|
2177
2177
|
protected el: HTMLElement;
|
|
2178
2178
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2179
2179
|
c.detach();
|
|
@@ -2182,19 +2182,19 @@ export class FlipIconPhone {
|
|
|
2182
2182
|
}
|
|
2183
2183
|
|
|
2184
2184
|
|
|
2185
|
-
export declare interface
|
|
2185
|
+
export declare interface SwirlIconMoreHorizontal extends Components.SwirlIconMoreHorizontal {}
|
|
2186
2186
|
|
|
2187
2187
|
@ProxyCmp({
|
|
2188
2188
|
defineCustomElementFn: undefined,
|
|
2189
2189
|
inputs: ['size']
|
|
2190
2190
|
})
|
|
2191
2191
|
@Component({
|
|
2192
|
-
selector: '
|
|
2192
|
+
selector: 'swirl-icon-more-horizontal',
|
|
2193
2193
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2194
2194
|
template: '<ng-content></ng-content>',
|
|
2195
2195
|
inputs: ['size']
|
|
2196
2196
|
})
|
|
2197
|
-
export class
|
|
2197
|
+
export class SwirlIconMoreHorizontal {
|
|
2198
2198
|
protected el: HTMLElement;
|
|
2199
2199
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2200
2200
|
c.detach();
|
|
@@ -2203,19 +2203,19 @@ export class FlipIconPoll {
|
|
|
2203
2203
|
}
|
|
2204
2204
|
|
|
2205
2205
|
|
|
2206
|
-
export declare interface
|
|
2206
|
+
export declare interface SwirlIconMoreVertikal extends Components.SwirlIconMoreVertikal {}
|
|
2207
2207
|
|
|
2208
2208
|
@ProxyCmp({
|
|
2209
2209
|
defineCustomElementFn: undefined,
|
|
2210
2210
|
inputs: ['size']
|
|
2211
2211
|
})
|
|
2212
2212
|
@Component({
|
|
2213
|
-
selector: '
|
|
2213
|
+
selector: 'swirl-icon-more-vertikal',
|
|
2214
2214
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2215
2215
|
template: '<ng-content></ng-content>',
|
|
2216
2216
|
inputs: ['size']
|
|
2217
2217
|
})
|
|
2218
|
-
export class
|
|
2218
|
+
export class SwirlIconMoreVertikal {
|
|
2219
2219
|
protected el: HTMLElement;
|
|
2220
2220
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2221
2221
|
c.detach();
|
|
@@ -2224,19 +2224,19 @@ export class FlipIconPrint {
|
|
|
2224
2224
|
}
|
|
2225
2225
|
|
|
2226
2226
|
|
|
2227
|
-
export declare interface
|
|
2227
|
+
export declare interface SwirlIconNewsFilled extends Components.SwirlIconNewsFilled {}
|
|
2228
2228
|
|
|
2229
2229
|
@ProxyCmp({
|
|
2230
2230
|
defineCustomElementFn: undefined,
|
|
2231
2231
|
inputs: ['size']
|
|
2232
2232
|
})
|
|
2233
2233
|
@Component({
|
|
2234
|
-
selector: '
|
|
2234
|
+
selector: 'swirl-icon-news-filled',
|
|
2235
2235
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2236
2236
|
template: '<ng-content></ng-content>',
|
|
2237
2237
|
inputs: ['size']
|
|
2238
2238
|
})
|
|
2239
|
-
export class
|
|
2239
|
+
export class SwirlIconNewsFilled {
|
|
2240
2240
|
protected el: HTMLElement;
|
|
2241
2241
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2242
2242
|
c.detach();
|
|
@@ -2245,19 +2245,19 @@ export class FlipIconRecieved {
|
|
|
2245
2245
|
}
|
|
2246
2246
|
|
|
2247
2247
|
|
|
2248
|
-
export declare interface
|
|
2248
|
+
export declare interface SwirlIconNewsOutlined extends Components.SwirlIconNewsOutlined {}
|
|
2249
2249
|
|
|
2250
2250
|
@ProxyCmp({
|
|
2251
2251
|
defineCustomElementFn: undefined,
|
|
2252
2252
|
inputs: ['size']
|
|
2253
2253
|
})
|
|
2254
2254
|
@Component({
|
|
2255
|
-
selector: '
|
|
2255
|
+
selector: 'swirl-icon-news-outlined',
|
|
2256
2256
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2257
2257
|
template: '<ng-content></ng-content>',
|
|
2258
2258
|
inputs: ['size']
|
|
2259
2259
|
})
|
|
2260
|
-
export class
|
|
2260
|
+
export class SwirlIconNewsOutlined {
|
|
2261
2261
|
protected el: HTMLElement;
|
|
2262
2262
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2263
2263
|
c.detach();
|
|
@@ -2266,19 +2266,19 @@ export class FlipIconRemove {
|
|
|
2266
2266
|
}
|
|
2267
2267
|
|
|
2268
2268
|
|
|
2269
|
-
export declare interface
|
|
2269
|
+
export declare interface SwirlIconNotifications extends Components.SwirlIconNotifications {}
|
|
2270
2270
|
|
|
2271
2271
|
@ProxyCmp({
|
|
2272
2272
|
defineCustomElementFn: undefined,
|
|
2273
2273
|
inputs: ['size']
|
|
2274
2274
|
})
|
|
2275
2275
|
@Component({
|
|
2276
|
-
selector: '
|
|
2276
|
+
selector: 'swirl-icon-notifications',
|
|
2277
2277
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2278
2278
|
template: '<ng-content></ng-content>',
|
|
2279
2279
|
inputs: ['size']
|
|
2280
2280
|
})
|
|
2281
|
-
export class
|
|
2281
|
+
export class SwirlIconNotifications {
|
|
2282
2282
|
protected el: HTMLElement;
|
|
2283
2283
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2284
2284
|
c.detach();
|
|
@@ -2287,19 +2287,19 @@ export class FlipIconSearch {
|
|
|
2287
2287
|
}
|
|
2288
2288
|
|
|
2289
2289
|
|
|
2290
|
-
export declare interface
|
|
2290
|
+
export declare interface SwirlIconNotificationsActive extends Components.SwirlIconNotificationsActive {}
|
|
2291
2291
|
|
|
2292
2292
|
@ProxyCmp({
|
|
2293
2293
|
defineCustomElementFn: undefined,
|
|
2294
2294
|
inputs: ['size']
|
|
2295
2295
|
})
|
|
2296
2296
|
@Component({
|
|
2297
|
-
selector: '
|
|
2297
|
+
selector: 'swirl-icon-notifications-active',
|
|
2298
2298
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2299
2299
|
template: '<ng-content></ng-content>',
|
|
2300
2300
|
inputs: ['size']
|
|
2301
2301
|
})
|
|
2302
|
-
export class
|
|
2302
|
+
export class SwirlIconNotificationsActive {
|
|
2303
2303
|
protected el: HTMLElement;
|
|
2304
2304
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2305
2305
|
c.detach();
|
|
@@ -2308,19 +2308,19 @@ export class FlipIconSearchStrong {
|
|
|
2308
2308
|
}
|
|
2309
2309
|
|
|
2310
2310
|
|
|
2311
|
-
export declare interface
|
|
2311
|
+
export declare interface SwirlIconNotificationsOff extends Components.SwirlIconNotificationsOff {}
|
|
2312
2312
|
|
|
2313
2313
|
@ProxyCmp({
|
|
2314
2314
|
defineCustomElementFn: undefined,
|
|
2315
2315
|
inputs: ['size']
|
|
2316
2316
|
})
|
|
2317
2317
|
@Component({
|
|
2318
|
-
selector: '
|
|
2318
|
+
selector: 'swirl-icon-notifications-off',
|
|
2319
2319
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2320
2320
|
template: '<ng-content></ng-content>',
|
|
2321
2321
|
inputs: ['size']
|
|
2322
2322
|
})
|
|
2323
|
-
export class
|
|
2323
|
+
export class SwirlIconNotificationsOff {
|
|
2324
2324
|
protected el: HTMLElement;
|
|
2325
2325
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2326
2326
|
c.detach();
|
|
@@ -2329,19 +2329,19 @@ export class FlipIconSend {
|
|
|
2329
2329
|
}
|
|
2330
2330
|
|
|
2331
2331
|
|
|
2332
|
-
export declare interface
|
|
2332
|
+
export declare interface SwirlIconOpenInNew extends Components.SwirlIconOpenInNew {}
|
|
2333
2333
|
|
|
2334
2334
|
@ProxyCmp({
|
|
2335
2335
|
defineCustomElementFn: undefined,
|
|
2336
2336
|
inputs: ['size']
|
|
2337
2337
|
})
|
|
2338
2338
|
@Component({
|
|
2339
|
-
selector: '
|
|
2339
|
+
selector: 'swirl-icon-open-in-new',
|
|
2340
2340
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2341
2341
|
template: '<ng-content></ng-content>',
|
|
2342
2342
|
inputs: ['size']
|
|
2343
2343
|
})
|
|
2344
|
-
export class
|
|
2344
|
+
export class SwirlIconOpenInNew {
|
|
2345
2345
|
protected el: HTMLElement;
|
|
2346
2346
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2347
2347
|
c.detach();
|
|
@@ -2350,19 +2350,19 @@ export class FlipIconSettings {
|
|
|
2350
2350
|
}
|
|
2351
2351
|
|
|
2352
2352
|
|
|
2353
|
-
export declare interface
|
|
2353
|
+
export declare interface SwirlIconPeopleAlt extends Components.SwirlIconPeopleAlt {}
|
|
2354
2354
|
|
|
2355
2355
|
@ProxyCmp({
|
|
2356
2356
|
defineCustomElementFn: undefined,
|
|
2357
2357
|
inputs: ['size']
|
|
2358
2358
|
})
|
|
2359
2359
|
@Component({
|
|
2360
|
-
selector: '
|
|
2360
|
+
selector: 'swirl-icon-people-alt',
|
|
2361
2361
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2362
2362
|
template: '<ng-content></ng-content>',
|
|
2363
2363
|
inputs: ['size']
|
|
2364
2364
|
})
|
|
2365
|
-
export class
|
|
2365
|
+
export class SwirlIconPeopleAlt {
|
|
2366
2366
|
protected el: HTMLElement;
|
|
2367
2367
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2368
2368
|
c.detach();
|
|
@@ -2371,19 +2371,19 @@ export class FlipIconTimeFilled {
|
|
|
2371
2371
|
}
|
|
2372
2372
|
|
|
2373
2373
|
|
|
2374
|
-
export declare interface
|
|
2374
|
+
export declare interface SwirlIconPerson extends Components.SwirlIconPerson {}
|
|
2375
2375
|
|
|
2376
2376
|
@ProxyCmp({
|
|
2377
2377
|
defineCustomElementFn: undefined,
|
|
2378
2378
|
inputs: ['size']
|
|
2379
2379
|
})
|
|
2380
2380
|
@Component({
|
|
2381
|
-
selector: '
|
|
2381
|
+
selector: 'swirl-icon-person',
|
|
2382
2382
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2383
2383
|
template: '<ng-content></ng-content>',
|
|
2384
2384
|
inputs: ['size']
|
|
2385
2385
|
})
|
|
2386
|
-
export class
|
|
2386
|
+
export class SwirlIconPerson {
|
|
2387
2387
|
protected el: HTMLElement;
|
|
2388
2388
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2389
2389
|
c.detach();
|
|
@@ -2392,19 +2392,19 @@ export class FlipIconTimeOutlined {
|
|
|
2392
2392
|
}
|
|
2393
2393
|
|
|
2394
2394
|
|
|
2395
|
-
export declare interface
|
|
2395
|
+
export declare interface SwirlIconPersonOff extends Components.SwirlIconPersonOff {}
|
|
2396
2396
|
|
|
2397
2397
|
@ProxyCmp({
|
|
2398
2398
|
defineCustomElementFn: undefined,
|
|
2399
2399
|
inputs: ['size']
|
|
2400
2400
|
})
|
|
2401
2401
|
@Component({
|
|
2402
|
-
selector: '
|
|
2402
|
+
selector: 'swirl-icon-person-off',
|
|
2403
2403
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2404
2404
|
template: '<ng-content></ng-content>',
|
|
2405
2405
|
inputs: ['size']
|
|
2406
2406
|
})
|
|
2407
|
-
export class
|
|
2407
|
+
export class SwirlIconPersonOff {
|
|
2408
2408
|
protected el: HTMLElement;
|
|
2409
2409
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2410
2410
|
c.detach();
|
|
@@ -2413,19 +2413,19 @@ export class FlipIconToday {
|
|
|
2413
2413
|
}
|
|
2414
2414
|
|
|
2415
2415
|
|
|
2416
|
-
export declare interface
|
|
2416
|
+
export declare interface SwirlIconPhone extends Components.SwirlIconPhone {}
|
|
2417
2417
|
|
|
2418
2418
|
@ProxyCmp({
|
|
2419
2419
|
defineCustomElementFn: undefined,
|
|
2420
2420
|
inputs: ['size']
|
|
2421
2421
|
})
|
|
2422
2422
|
@Component({
|
|
2423
|
-
selector: '
|
|
2423
|
+
selector: 'swirl-icon-phone',
|
|
2424
2424
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2425
2425
|
template: '<ng-content></ng-content>',
|
|
2426
2426
|
inputs: ['size']
|
|
2427
2427
|
})
|
|
2428
|
-
export class
|
|
2428
|
+
export class SwirlIconPhone {
|
|
2429
2429
|
protected el: HTMLElement;
|
|
2430
2430
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2431
2431
|
c.detach();
|
|
@@ -2434,19 +2434,19 @@ export class FlipIconUserAssign {
|
|
|
2434
2434
|
}
|
|
2435
2435
|
|
|
2436
2436
|
|
|
2437
|
-
export declare interface
|
|
2437
|
+
export declare interface SwirlIconPoll extends Components.SwirlIconPoll {}
|
|
2438
2438
|
|
|
2439
2439
|
@ProxyCmp({
|
|
2440
2440
|
defineCustomElementFn: undefined,
|
|
2441
2441
|
inputs: ['size']
|
|
2442
2442
|
})
|
|
2443
2443
|
@Component({
|
|
2444
|
-
selector: '
|
|
2444
|
+
selector: 'swirl-icon-poll',
|
|
2445
2445
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2446
2446
|
template: '<ng-content></ng-content>',
|
|
2447
2447
|
inputs: ['size']
|
|
2448
2448
|
})
|
|
2449
|
-
export class
|
|
2449
|
+
export class SwirlIconPoll {
|
|
2450
2450
|
protected el: HTMLElement;
|
|
2451
2451
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2452
2452
|
c.detach();
|
|
@@ -2455,19 +2455,19 @@ export class FlipIconVideoCamera {
|
|
|
2455
2455
|
}
|
|
2456
2456
|
|
|
2457
2457
|
|
|
2458
|
-
export declare interface
|
|
2458
|
+
export declare interface SwirlIconPrint extends Components.SwirlIconPrint {}
|
|
2459
2459
|
|
|
2460
2460
|
@ProxyCmp({
|
|
2461
2461
|
defineCustomElementFn: undefined,
|
|
2462
2462
|
inputs: ['size']
|
|
2463
2463
|
})
|
|
2464
2464
|
@Component({
|
|
2465
|
-
selector: '
|
|
2465
|
+
selector: 'swirl-icon-print',
|
|
2466
2466
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2467
2467
|
template: '<ng-content></ng-content>',
|
|
2468
2468
|
inputs: ['size']
|
|
2469
2469
|
})
|
|
2470
|
-
export class
|
|
2470
|
+
export class SwirlIconPrint {
|
|
2471
2471
|
protected el: HTMLElement;
|
|
2472
2472
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2473
2473
|
c.detach();
|
|
@@ -2476,19 +2476,19 @@ export class FlipIconVisibility {
|
|
|
2476
2476
|
}
|
|
2477
2477
|
|
|
2478
2478
|
|
|
2479
|
-
export declare interface
|
|
2479
|
+
export declare interface SwirlIconRecieved extends Components.SwirlIconRecieved {}
|
|
2480
2480
|
|
|
2481
2481
|
@ProxyCmp({
|
|
2482
2482
|
defineCustomElementFn: undefined,
|
|
2483
2483
|
inputs: ['size']
|
|
2484
2484
|
})
|
|
2485
2485
|
@Component({
|
|
2486
|
-
selector: '
|
|
2486
|
+
selector: 'swirl-icon-recieved',
|
|
2487
2487
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2488
2488
|
template: '<ng-content></ng-content>',
|
|
2489
2489
|
inputs: ['size']
|
|
2490
2490
|
})
|
|
2491
|
-
export class
|
|
2491
|
+
export class SwirlIconRecieved {
|
|
2492
2492
|
protected el: HTMLElement;
|
|
2493
2493
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2494
2494
|
c.detach();
|
|
@@ -2497,19 +2497,19 @@ export class FlipIconVisibilityOff {
|
|
|
2497
2497
|
}
|
|
2498
2498
|
|
|
2499
2499
|
|
|
2500
|
-
export declare interface
|
|
2500
|
+
export declare interface SwirlIconRemove extends Components.SwirlIconRemove {}
|
|
2501
2501
|
|
|
2502
2502
|
@ProxyCmp({
|
|
2503
2503
|
defineCustomElementFn: undefined,
|
|
2504
2504
|
inputs: ['size']
|
|
2505
2505
|
})
|
|
2506
2506
|
@Component({
|
|
2507
|
-
selector: '
|
|
2507
|
+
selector: 'swirl-icon-remove',
|
|
2508
2508
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2509
2509
|
template: '<ng-content></ng-content>',
|
|
2510
2510
|
inputs: ['size']
|
|
2511
2511
|
})
|
|
2512
|
-
export class
|
|
2512
|
+
export class SwirlIconRemove {
|
|
2513
2513
|
protected el: HTMLElement;
|
|
2514
2514
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2515
2515
|
c.detach();
|
|
@@ -2518,19 +2518,334 @@ export class FlipIconWarning {
|
|
|
2518
2518
|
}
|
|
2519
2519
|
|
|
2520
2520
|
|
|
2521
|
-
export declare interface
|
|
2521
|
+
export declare interface SwirlIconSearch extends Components.SwirlIconSearch {}
|
|
2522
|
+
|
|
2523
|
+
@ProxyCmp({
|
|
2524
|
+
defineCustomElementFn: undefined,
|
|
2525
|
+
inputs: ['size']
|
|
2526
|
+
})
|
|
2527
|
+
@Component({
|
|
2528
|
+
selector: 'swirl-icon-search',
|
|
2529
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2530
|
+
template: '<ng-content></ng-content>',
|
|
2531
|
+
inputs: ['size']
|
|
2532
|
+
})
|
|
2533
|
+
export class SwirlIconSearch {
|
|
2534
|
+
protected el: HTMLElement;
|
|
2535
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2536
|
+
c.detach();
|
|
2537
|
+
this.el = r.nativeElement;
|
|
2538
|
+
}
|
|
2539
|
+
}
|
|
2540
|
+
|
|
2541
|
+
|
|
2542
|
+
export declare interface SwirlIconSearchStrong extends Components.SwirlIconSearchStrong {}
|
|
2543
|
+
|
|
2544
|
+
@ProxyCmp({
|
|
2545
|
+
defineCustomElementFn: undefined,
|
|
2546
|
+
inputs: ['size']
|
|
2547
|
+
})
|
|
2548
|
+
@Component({
|
|
2549
|
+
selector: 'swirl-icon-search-strong',
|
|
2550
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2551
|
+
template: '<ng-content></ng-content>',
|
|
2552
|
+
inputs: ['size']
|
|
2553
|
+
})
|
|
2554
|
+
export class SwirlIconSearchStrong {
|
|
2555
|
+
protected el: HTMLElement;
|
|
2556
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2557
|
+
c.detach();
|
|
2558
|
+
this.el = r.nativeElement;
|
|
2559
|
+
}
|
|
2560
|
+
}
|
|
2561
|
+
|
|
2562
|
+
|
|
2563
|
+
export declare interface SwirlIconSend extends Components.SwirlIconSend {}
|
|
2564
|
+
|
|
2565
|
+
@ProxyCmp({
|
|
2566
|
+
defineCustomElementFn: undefined,
|
|
2567
|
+
inputs: ['size']
|
|
2568
|
+
})
|
|
2569
|
+
@Component({
|
|
2570
|
+
selector: 'swirl-icon-send',
|
|
2571
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2572
|
+
template: '<ng-content></ng-content>',
|
|
2573
|
+
inputs: ['size']
|
|
2574
|
+
})
|
|
2575
|
+
export class SwirlIconSend {
|
|
2576
|
+
protected el: HTMLElement;
|
|
2577
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2578
|
+
c.detach();
|
|
2579
|
+
this.el = r.nativeElement;
|
|
2580
|
+
}
|
|
2581
|
+
}
|
|
2582
|
+
|
|
2583
|
+
|
|
2584
|
+
export declare interface SwirlIconSettings extends Components.SwirlIconSettings {}
|
|
2585
|
+
|
|
2586
|
+
@ProxyCmp({
|
|
2587
|
+
defineCustomElementFn: undefined,
|
|
2588
|
+
inputs: ['size']
|
|
2589
|
+
})
|
|
2590
|
+
@Component({
|
|
2591
|
+
selector: 'swirl-icon-settings',
|
|
2592
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2593
|
+
template: '<ng-content></ng-content>',
|
|
2594
|
+
inputs: ['size']
|
|
2595
|
+
})
|
|
2596
|
+
export class SwirlIconSettings {
|
|
2597
|
+
protected el: HTMLElement;
|
|
2598
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2599
|
+
c.detach();
|
|
2600
|
+
this.el = r.nativeElement;
|
|
2601
|
+
}
|
|
2602
|
+
}
|
|
2603
|
+
|
|
2604
|
+
|
|
2605
|
+
export declare interface SwirlIconSync extends Components.SwirlIconSync {}
|
|
2606
|
+
|
|
2607
|
+
@ProxyCmp({
|
|
2608
|
+
defineCustomElementFn: undefined,
|
|
2609
|
+
inputs: ['size']
|
|
2610
|
+
})
|
|
2611
|
+
@Component({
|
|
2612
|
+
selector: 'swirl-icon-sync',
|
|
2613
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2614
|
+
template: '<ng-content></ng-content>',
|
|
2615
|
+
inputs: ['size']
|
|
2616
|
+
})
|
|
2617
|
+
export class SwirlIconSync {
|
|
2618
|
+
protected el: HTMLElement;
|
|
2619
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2620
|
+
c.detach();
|
|
2621
|
+
this.el = r.nativeElement;
|
|
2622
|
+
}
|
|
2623
|
+
}
|
|
2624
|
+
|
|
2625
|
+
|
|
2626
|
+
export declare interface SwirlIconTasksFilled extends Components.SwirlIconTasksFilled {}
|
|
2627
|
+
|
|
2628
|
+
@ProxyCmp({
|
|
2629
|
+
defineCustomElementFn: undefined,
|
|
2630
|
+
inputs: ['size']
|
|
2631
|
+
})
|
|
2632
|
+
@Component({
|
|
2633
|
+
selector: 'swirl-icon-tasks-filled',
|
|
2634
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2635
|
+
template: '<ng-content></ng-content>',
|
|
2636
|
+
inputs: ['size']
|
|
2637
|
+
})
|
|
2638
|
+
export class SwirlIconTasksFilled {
|
|
2639
|
+
protected el: HTMLElement;
|
|
2640
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2641
|
+
c.detach();
|
|
2642
|
+
this.el = r.nativeElement;
|
|
2643
|
+
}
|
|
2644
|
+
}
|
|
2645
|
+
|
|
2646
|
+
|
|
2647
|
+
export declare interface SwirlIconTasksOutlined extends Components.SwirlIconTasksOutlined {}
|
|
2648
|
+
|
|
2649
|
+
@ProxyCmp({
|
|
2650
|
+
defineCustomElementFn: undefined,
|
|
2651
|
+
inputs: ['size']
|
|
2652
|
+
})
|
|
2653
|
+
@Component({
|
|
2654
|
+
selector: 'swirl-icon-tasks-outlined',
|
|
2655
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2656
|
+
template: '<ng-content></ng-content>',
|
|
2657
|
+
inputs: ['size']
|
|
2658
|
+
})
|
|
2659
|
+
export class SwirlIconTasksOutlined {
|
|
2660
|
+
protected el: HTMLElement;
|
|
2661
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2662
|
+
c.detach();
|
|
2663
|
+
this.el = r.nativeElement;
|
|
2664
|
+
}
|
|
2665
|
+
}
|
|
2666
|
+
|
|
2667
|
+
|
|
2668
|
+
export declare interface SwirlIconTimeFilled extends Components.SwirlIconTimeFilled {}
|
|
2669
|
+
|
|
2670
|
+
@ProxyCmp({
|
|
2671
|
+
defineCustomElementFn: undefined,
|
|
2672
|
+
inputs: ['size']
|
|
2673
|
+
})
|
|
2674
|
+
@Component({
|
|
2675
|
+
selector: 'swirl-icon-time-filled',
|
|
2676
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2677
|
+
template: '<ng-content></ng-content>',
|
|
2678
|
+
inputs: ['size']
|
|
2679
|
+
})
|
|
2680
|
+
export class SwirlIconTimeFilled {
|
|
2681
|
+
protected el: HTMLElement;
|
|
2682
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2683
|
+
c.detach();
|
|
2684
|
+
this.el = r.nativeElement;
|
|
2685
|
+
}
|
|
2686
|
+
}
|
|
2687
|
+
|
|
2688
|
+
|
|
2689
|
+
export declare interface SwirlIconTimeOutlined extends Components.SwirlIconTimeOutlined {}
|
|
2690
|
+
|
|
2691
|
+
@ProxyCmp({
|
|
2692
|
+
defineCustomElementFn: undefined,
|
|
2693
|
+
inputs: ['size']
|
|
2694
|
+
})
|
|
2695
|
+
@Component({
|
|
2696
|
+
selector: 'swirl-icon-time-outlined',
|
|
2697
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2698
|
+
template: '<ng-content></ng-content>',
|
|
2699
|
+
inputs: ['size']
|
|
2700
|
+
})
|
|
2701
|
+
export class SwirlIconTimeOutlined {
|
|
2702
|
+
protected el: HTMLElement;
|
|
2703
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2704
|
+
c.detach();
|
|
2705
|
+
this.el = r.nativeElement;
|
|
2706
|
+
}
|
|
2707
|
+
}
|
|
2708
|
+
|
|
2709
|
+
|
|
2710
|
+
export declare interface SwirlIconToday extends Components.SwirlIconToday {}
|
|
2711
|
+
|
|
2712
|
+
@ProxyCmp({
|
|
2713
|
+
defineCustomElementFn: undefined,
|
|
2714
|
+
inputs: ['size']
|
|
2715
|
+
})
|
|
2716
|
+
@Component({
|
|
2717
|
+
selector: 'swirl-icon-today',
|
|
2718
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2719
|
+
template: '<ng-content></ng-content>',
|
|
2720
|
+
inputs: ['size']
|
|
2721
|
+
})
|
|
2722
|
+
export class SwirlIconToday {
|
|
2723
|
+
protected el: HTMLElement;
|
|
2724
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2725
|
+
c.detach();
|
|
2726
|
+
this.el = r.nativeElement;
|
|
2727
|
+
}
|
|
2728
|
+
}
|
|
2729
|
+
|
|
2730
|
+
|
|
2731
|
+
export declare interface SwirlIconUserAssign extends Components.SwirlIconUserAssign {}
|
|
2732
|
+
|
|
2733
|
+
@ProxyCmp({
|
|
2734
|
+
defineCustomElementFn: undefined,
|
|
2735
|
+
inputs: ['size']
|
|
2736
|
+
})
|
|
2737
|
+
@Component({
|
|
2738
|
+
selector: 'swirl-icon-user-assign',
|
|
2739
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2740
|
+
template: '<ng-content></ng-content>',
|
|
2741
|
+
inputs: ['size']
|
|
2742
|
+
})
|
|
2743
|
+
export class SwirlIconUserAssign {
|
|
2744
|
+
protected el: HTMLElement;
|
|
2745
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2746
|
+
c.detach();
|
|
2747
|
+
this.el = r.nativeElement;
|
|
2748
|
+
}
|
|
2749
|
+
}
|
|
2750
|
+
|
|
2751
|
+
|
|
2752
|
+
export declare interface SwirlIconVideoCamera extends Components.SwirlIconVideoCamera {}
|
|
2753
|
+
|
|
2754
|
+
@ProxyCmp({
|
|
2755
|
+
defineCustomElementFn: undefined,
|
|
2756
|
+
inputs: ['size']
|
|
2757
|
+
})
|
|
2758
|
+
@Component({
|
|
2759
|
+
selector: 'swirl-icon-video-camera',
|
|
2760
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2761
|
+
template: '<ng-content></ng-content>',
|
|
2762
|
+
inputs: ['size']
|
|
2763
|
+
})
|
|
2764
|
+
export class SwirlIconVideoCamera {
|
|
2765
|
+
protected el: HTMLElement;
|
|
2766
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2767
|
+
c.detach();
|
|
2768
|
+
this.el = r.nativeElement;
|
|
2769
|
+
}
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
|
|
2773
|
+
export declare interface SwirlIconVisibility extends Components.SwirlIconVisibility {}
|
|
2774
|
+
|
|
2775
|
+
@ProxyCmp({
|
|
2776
|
+
defineCustomElementFn: undefined,
|
|
2777
|
+
inputs: ['size']
|
|
2778
|
+
})
|
|
2779
|
+
@Component({
|
|
2780
|
+
selector: 'swirl-icon-visibility',
|
|
2781
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2782
|
+
template: '<ng-content></ng-content>',
|
|
2783
|
+
inputs: ['size']
|
|
2784
|
+
})
|
|
2785
|
+
export class SwirlIconVisibility {
|
|
2786
|
+
protected el: HTMLElement;
|
|
2787
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2788
|
+
c.detach();
|
|
2789
|
+
this.el = r.nativeElement;
|
|
2790
|
+
}
|
|
2791
|
+
}
|
|
2792
|
+
|
|
2793
|
+
|
|
2794
|
+
export declare interface SwirlIconVisibilityOff extends Components.SwirlIconVisibilityOff {}
|
|
2795
|
+
|
|
2796
|
+
@ProxyCmp({
|
|
2797
|
+
defineCustomElementFn: undefined,
|
|
2798
|
+
inputs: ['size']
|
|
2799
|
+
})
|
|
2800
|
+
@Component({
|
|
2801
|
+
selector: 'swirl-icon-visibility-off',
|
|
2802
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2803
|
+
template: '<ng-content></ng-content>',
|
|
2804
|
+
inputs: ['size']
|
|
2805
|
+
})
|
|
2806
|
+
export class SwirlIconVisibilityOff {
|
|
2807
|
+
protected el: HTMLElement;
|
|
2808
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2809
|
+
c.detach();
|
|
2810
|
+
this.el = r.nativeElement;
|
|
2811
|
+
}
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
|
|
2815
|
+
export declare interface SwirlIconWarning extends Components.SwirlIconWarning {}
|
|
2816
|
+
|
|
2817
|
+
@ProxyCmp({
|
|
2818
|
+
defineCustomElementFn: undefined,
|
|
2819
|
+
inputs: ['size']
|
|
2820
|
+
})
|
|
2821
|
+
@Component({
|
|
2822
|
+
selector: 'swirl-icon-warning',
|
|
2823
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2824
|
+
template: '<ng-content></ng-content>',
|
|
2825
|
+
inputs: ['size']
|
|
2826
|
+
})
|
|
2827
|
+
export class SwirlIconWarning {
|
|
2828
|
+
protected el: HTMLElement;
|
|
2829
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2830
|
+
c.detach();
|
|
2831
|
+
this.el = r.nativeElement;
|
|
2832
|
+
}
|
|
2833
|
+
}
|
|
2834
|
+
|
|
2835
|
+
|
|
2836
|
+
export declare interface SwirlInlineError extends Components.SwirlInlineError {}
|
|
2522
2837
|
|
|
2523
2838
|
@ProxyCmp({
|
|
2524
2839
|
defineCustomElementFn: undefined,
|
|
2525
2840
|
inputs: ['message', 'size']
|
|
2526
2841
|
})
|
|
2527
2842
|
@Component({
|
|
2528
|
-
selector: '
|
|
2843
|
+
selector: 'swirl-inline-error',
|
|
2529
2844
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2530
2845
|
template: '<ng-content></ng-content>',
|
|
2531
2846
|
inputs: ['message', 'size']
|
|
2532
2847
|
})
|
|
2533
|
-
export class
|
|
2848
|
+
export class SwirlInlineError {
|
|
2534
2849
|
protected el: HTMLElement;
|
|
2535
2850
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2536
2851
|
c.detach();
|
|
@@ -2539,7 +2854,7 @@ export class FlipInlineError {
|
|
|
2539
2854
|
}
|
|
2540
2855
|
|
|
2541
2856
|
|
|
2542
|
-
export declare interface
|
|
2857
|
+
export declare interface SwirlLightbox extends Components.SwirlLightbox {}
|
|
2543
2858
|
|
|
2544
2859
|
@ProxyCmp({
|
|
2545
2860
|
defineCustomElementFn: undefined,
|
|
@@ -2547,12 +2862,12 @@ export declare interface FlipLightbox extends Components.FlipLightbox {}
|
|
|
2547
2862
|
methods: ['open', 'close', 'activateSlide']
|
|
2548
2863
|
})
|
|
2549
2864
|
@Component({
|
|
2550
|
-
selector: '
|
|
2865
|
+
selector: 'swirl-lightbox',
|
|
2551
2866
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2552
2867
|
template: '<ng-content></ng-content>',
|
|
2553
2868
|
inputs: ['closeButtonLabel', 'downloadButtonLabel', 'label', 'nextSlideButtonLabel', 'previousSlideButtonLabel']
|
|
2554
2869
|
})
|
|
2555
|
-
export class
|
|
2870
|
+
export class SwirlLightbox {
|
|
2556
2871
|
protected el: HTMLElement;
|
|
2557
2872
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2558
2873
|
c.detach();
|
|
@@ -2561,19 +2876,19 @@ export class FlipLightbox {
|
|
|
2561
2876
|
}
|
|
2562
2877
|
|
|
2563
2878
|
|
|
2564
|
-
export declare interface
|
|
2879
|
+
export declare interface SwirlLink extends Components.SwirlLink {}
|
|
2565
2880
|
|
|
2566
2881
|
@ProxyCmp({
|
|
2567
2882
|
defineCustomElementFn: undefined,
|
|
2568
2883
|
inputs: ['href', 'label', 'target']
|
|
2569
2884
|
})
|
|
2570
2885
|
@Component({
|
|
2571
|
-
selector: '
|
|
2886
|
+
selector: 'swirl-link',
|
|
2572
2887
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2573
2888
|
template: '<ng-content></ng-content>',
|
|
2574
2889
|
inputs: ['href', 'label', 'target']
|
|
2575
2890
|
})
|
|
2576
|
-
export class
|
|
2891
|
+
export class SwirlLink {
|
|
2577
2892
|
protected el: HTMLElement;
|
|
2578
2893
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2579
2894
|
c.detach();
|
|
@@ -2582,17 +2897,17 @@ export class FlipLink {
|
|
|
2582
2897
|
}
|
|
2583
2898
|
|
|
2584
2899
|
|
|
2585
|
-
export declare interface
|
|
2900
|
+
export declare interface SwirlList extends Components.SwirlList {}
|
|
2586
2901
|
|
|
2587
2902
|
@ProxyCmp({
|
|
2588
2903
|
defineCustomElementFn: undefined
|
|
2589
2904
|
})
|
|
2590
2905
|
@Component({
|
|
2591
|
-
selector: '
|
|
2906
|
+
selector: 'swirl-list',
|
|
2592
2907
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2593
2908
|
template: '<ng-content></ng-content>'
|
|
2594
2909
|
})
|
|
2595
|
-
export class
|
|
2910
|
+
export class SwirlList {
|
|
2596
2911
|
protected el: HTMLElement;
|
|
2597
2912
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2598
2913
|
c.detach();
|
|
@@ -2601,7 +2916,7 @@ export class FlipList {
|
|
|
2601
2916
|
}
|
|
2602
2917
|
|
|
2603
2918
|
|
|
2604
|
-
export declare interface
|
|
2919
|
+
export declare interface SwirlModal extends Components.SwirlModal {
|
|
2605
2920
|
/**
|
|
2606
2921
|
*
|
|
2607
2922
|
*/
|
|
@@ -2627,12 +2942,12 @@ export declare interface FlipModal extends Components.FlipModal {
|
|
|
2627
2942
|
methods: ['open', 'close']
|
|
2628
2943
|
})
|
|
2629
2944
|
@Component({
|
|
2630
|
-
selector: '
|
|
2945
|
+
selector: 'swirl-modal',
|
|
2631
2946
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2632
2947
|
template: '<ng-content></ng-content>',
|
|
2633
2948
|
inputs: ['closeButtonLabel', 'label', 'primaryActionLabel', 'secondaryActionLabel']
|
|
2634
2949
|
})
|
|
2635
|
-
export class
|
|
2950
|
+
export class SwirlModal {
|
|
2636
2951
|
protected el: HTMLElement;
|
|
2637
2952
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2638
2953
|
c.detach();
|
|
@@ -2642,7 +2957,7 @@ export class FlipModal {
|
|
|
2642
2957
|
}
|
|
2643
2958
|
|
|
2644
2959
|
|
|
2645
|
-
export declare interface
|
|
2960
|
+
export declare interface SwirlOptionList extends Components.SwirlOptionList {
|
|
2646
2961
|
/**
|
|
2647
2962
|
*
|
|
2648
2963
|
*/
|
|
@@ -2655,12 +2970,12 @@ export declare interface FlipOptionList extends Components.FlipOptionList {
|
|
|
2655
2970
|
inputs: ['disabled', 'label', 'multiSelect', 'optionListId', 'value']
|
|
2656
2971
|
})
|
|
2657
2972
|
@Component({
|
|
2658
|
-
selector: '
|
|
2973
|
+
selector: 'swirl-option-list',
|
|
2659
2974
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2660
2975
|
template: '<ng-content></ng-content>',
|
|
2661
2976
|
inputs: ['disabled', 'label', 'multiSelect', 'optionListId', 'value']
|
|
2662
2977
|
})
|
|
2663
|
-
export class
|
|
2978
|
+
export class SwirlOptionList {
|
|
2664
2979
|
protected el: HTMLElement;
|
|
2665
2980
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2666
2981
|
c.detach();
|
|
@@ -2670,19 +2985,19 @@ export class FlipOptionList {
|
|
|
2670
2985
|
}
|
|
2671
2986
|
|
|
2672
2987
|
|
|
2673
|
-
export declare interface
|
|
2988
|
+
export declare interface SwirlOptionListItem extends Components.SwirlOptionListItem {}
|
|
2674
2989
|
|
|
2675
2990
|
@ProxyCmp({
|
|
2676
2991
|
defineCustomElementFn: undefined,
|
|
2677
2992
|
inputs: ['context', 'disabled', 'icon', 'label', 'selected', 'value']
|
|
2678
2993
|
})
|
|
2679
2994
|
@Component({
|
|
2680
|
-
selector: '
|
|
2995
|
+
selector: 'swirl-option-list-item',
|
|
2681
2996
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2682
2997
|
template: '<ng-content></ng-content>',
|
|
2683
2998
|
inputs: ['context', 'disabled', 'icon', 'label', 'selected', 'value']
|
|
2684
2999
|
})
|
|
2685
|
-
export class
|
|
3000
|
+
export class SwirlOptionListItem {
|
|
2686
3001
|
protected el: HTMLElement;
|
|
2687
3002
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2688
3003
|
c.detach();
|
|
@@ -2691,19 +3006,19 @@ export class FlipOptionListItem {
|
|
|
2691
3006
|
}
|
|
2692
3007
|
|
|
2693
3008
|
|
|
2694
|
-
export declare interface
|
|
3009
|
+
export declare interface SwirlOptionListSection extends Components.SwirlOptionListSection {}
|
|
2695
3010
|
|
|
2696
3011
|
@ProxyCmp({
|
|
2697
3012
|
defineCustomElementFn: undefined,
|
|
2698
3013
|
inputs: ['label']
|
|
2699
3014
|
})
|
|
2700
3015
|
@Component({
|
|
2701
|
-
selector: '
|
|
3016
|
+
selector: 'swirl-option-list-section',
|
|
2702
3017
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2703
3018
|
template: '<ng-content></ng-content>',
|
|
2704
3019
|
inputs: ['label']
|
|
2705
3020
|
})
|
|
2706
|
-
export class
|
|
3021
|
+
export class SwirlOptionListSection {
|
|
2707
3022
|
protected el: HTMLElement;
|
|
2708
3023
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2709
3024
|
c.detach();
|
|
@@ -2712,7 +3027,7 @@ export class FlipOptionListSection {
|
|
|
2712
3027
|
}
|
|
2713
3028
|
|
|
2714
3029
|
|
|
2715
|
-
export declare interface
|
|
3030
|
+
export declare interface SwirlPagination extends Components.SwirlPagination {
|
|
2716
3031
|
/**
|
|
2717
3032
|
*
|
|
2718
3033
|
*/
|
|
@@ -2725,12 +3040,12 @@ export declare interface FlipPagination extends Components.FlipPagination {
|
|
|
2725
3040
|
inputs: ['accessibleNextButtonLabel', 'accessiblePrevButtonLabel', 'label', 'nextButtonLabel', 'page', 'pageLabel', 'pageSelectLabel', 'pages', 'prevButtonLabel', 'variant']
|
|
2726
3041
|
})
|
|
2727
3042
|
@Component({
|
|
2728
|
-
selector: '
|
|
3043
|
+
selector: 'swirl-pagination',
|
|
2729
3044
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2730
3045
|
template: '<ng-content></ng-content>',
|
|
2731
3046
|
inputs: ['accessibleNextButtonLabel', 'accessiblePrevButtonLabel', 'label', 'nextButtonLabel', 'page', 'pageLabel', 'pageSelectLabel', 'pages', 'prevButtonLabel', 'variant']
|
|
2732
3047
|
})
|
|
2733
|
-
export class
|
|
3048
|
+
export class SwirlPagination {
|
|
2734
3049
|
protected el: HTMLElement;
|
|
2735
3050
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2736
3051
|
c.detach();
|
|
@@ -2740,7 +3055,7 @@ export class FlipPagination {
|
|
|
2740
3055
|
}
|
|
2741
3056
|
|
|
2742
3057
|
|
|
2743
|
-
export declare interface
|
|
3058
|
+
export declare interface SwirlPdfReader extends Components.SwirlPdfReader {}
|
|
2744
3059
|
|
|
2745
3060
|
@ProxyCmp({
|
|
2746
3061
|
defineCustomElementFn: undefined,
|
|
@@ -2748,12 +3063,12 @@ export declare interface FlipPdfReader extends Components.FlipPdfReader {}
|
|
|
2748
3063
|
methods: ['open', 'close']
|
|
2749
3064
|
})
|
|
2750
3065
|
@Component({
|
|
2751
|
-
selector: '
|
|
3066
|
+
selector: 'swirl-pdf-reader',
|
|
2752
3067
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2753
3068
|
template: '<ng-content></ng-content>',
|
|
2754
3069
|
inputs: ['autoZoomLabel', 'closeButtonLabel', 'downloadButtonLabel', 'file', 'label', 'printButtonLabel', 'zoomInButtonLabel', 'zoomOutButtonLabel', 'zoomSelectLabel']
|
|
2755
3070
|
})
|
|
2756
|
-
export class
|
|
3071
|
+
export class SwirlPdfReader {
|
|
2757
3072
|
protected el: HTMLElement;
|
|
2758
3073
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2759
3074
|
c.detach();
|
|
@@ -2762,7 +3077,7 @@ export class FlipPdfReader {
|
|
|
2762
3077
|
}
|
|
2763
3078
|
|
|
2764
3079
|
|
|
2765
|
-
export declare interface
|
|
3080
|
+
export declare interface SwirlPopover extends Components.SwirlPopover {
|
|
2766
3081
|
/**
|
|
2767
3082
|
*
|
|
2768
3083
|
*/
|
|
@@ -2780,12 +3095,12 @@ export declare interface FlipPopover extends Components.FlipPopover {
|
|
|
2780
3095
|
methods: ['close', 'open']
|
|
2781
3096
|
})
|
|
2782
3097
|
@Component({
|
|
2783
|
-
selector: '
|
|
3098
|
+
selector: 'swirl-popover',
|
|
2784
3099
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2785
3100
|
template: '<ng-content></ng-content>',
|
|
2786
3101
|
inputs: ['animation', 'enableFlip', 'label', 'offset', 'placement', 'popoverId', 'trigger', 'useContainerWidth']
|
|
2787
3102
|
})
|
|
2788
|
-
export class
|
|
3103
|
+
export class SwirlPopover {
|
|
2789
3104
|
protected el: HTMLElement;
|
|
2790
3105
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2791
3106
|
c.detach();
|
|
@@ -2795,19 +3110,19 @@ export class FlipPopover {
|
|
|
2795
3110
|
}
|
|
2796
3111
|
|
|
2797
3112
|
|
|
2798
|
-
export declare interface
|
|
3113
|
+
export declare interface SwirlProgressIndicator extends Components.SwirlProgressIndicator {}
|
|
2799
3114
|
|
|
2800
3115
|
@ProxyCmp({
|
|
2801
3116
|
defineCustomElementFn: undefined,
|
|
2802
3117
|
inputs: ['label', 'size', 'value', 'variant']
|
|
2803
3118
|
})
|
|
2804
3119
|
@Component({
|
|
2805
|
-
selector: '
|
|
3120
|
+
selector: 'swirl-progress-indicator',
|
|
2806
3121
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2807
3122
|
template: '<ng-content></ng-content>',
|
|
2808
3123
|
inputs: ['label', 'size', 'value', 'variant']
|
|
2809
3124
|
})
|
|
2810
|
-
export class
|
|
3125
|
+
export class SwirlProgressIndicator {
|
|
2811
3126
|
protected el: HTMLElement;
|
|
2812
3127
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2813
3128
|
c.detach();
|
|
@@ -2816,7 +3131,7 @@ export class FlipProgressIndicator {
|
|
|
2816
3131
|
}
|
|
2817
3132
|
|
|
2818
3133
|
|
|
2819
|
-
export declare interface
|
|
3134
|
+
export declare interface SwirlRadio extends Components.SwirlRadio {
|
|
2820
3135
|
/**
|
|
2821
3136
|
*
|
|
2822
3137
|
*/
|
|
@@ -2829,12 +3144,12 @@ export declare interface FlipRadio extends Components.FlipRadio {
|
|
|
2829
3144
|
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'value']
|
|
2830
3145
|
})
|
|
2831
3146
|
@Component({
|
|
2832
|
-
selector: '
|
|
3147
|
+
selector: 'swirl-radio',
|
|
2833
3148
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2834
3149
|
template: '<ng-content></ng-content>',
|
|
2835
3150
|
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'value']
|
|
2836
3151
|
})
|
|
2837
|
-
export class
|
|
3152
|
+
export class SwirlRadio {
|
|
2838
3153
|
protected el: HTMLElement;
|
|
2839
3154
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2840
3155
|
c.detach();
|
|
@@ -2844,7 +3159,7 @@ export class FlipRadio {
|
|
|
2844
3159
|
}
|
|
2845
3160
|
|
|
2846
3161
|
|
|
2847
|
-
export declare interface
|
|
3162
|
+
export declare interface SwirlRadioGroup extends Components.SwirlRadioGroup {
|
|
2848
3163
|
/**
|
|
2849
3164
|
*
|
|
2850
3165
|
*/
|
|
@@ -2854,15 +3169,15 @@ export declare interface FlipRadioGroup extends Components.FlipRadioGroup {
|
|
|
2854
3169
|
|
|
2855
3170
|
@ProxyCmp({
|
|
2856
3171
|
defineCustomElementFn: undefined,
|
|
2857
|
-
inputs: ['
|
|
3172
|
+
inputs: ['swirlAriaDescribedby', 'value']
|
|
2858
3173
|
})
|
|
2859
3174
|
@Component({
|
|
2860
|
-
selector: '
|
|
3175
|
+
selector: 'swirl-radio-group',
|
|
2861
3176
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2862
3177
|
template: '<ng-content></ng-content>',
|
|
2863
|
-
inputs: ['
|
|
3178
|
+
inputs: ['swirlAriaDescribedby', 'value']
|
|
2864
3179
|
})
|
|
2865
|
-
export class
|
|
3180
|
+
export class SwirlRadioGroup {
|
|
2866
3181
|
protected el: HTMLElement;
|
|
2867
3182
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2868
3183
|
c.detach();
|
|
@@ -2872,19 +3187,19 @@ export class FlipRadioGroup {
|
|
|
2872
3187
|
}
|
|
2873
3188
|
|
|
2874
3189
|
|
|
2875
|
-
export declare interface
|
|
3190
|
+
export declare interface SwirlResourceList extends Components.SwirlResourceList {}
|
|
2876
3191
|
|
|
2877
3192
|
@ProxyCmp({
|
|
2878
3193
|
defineCustomElementFn: undefined,
|
|
2879
3194
|
inputs: ['label']
|
|
2880
3195
|
})
|
|
2881
3196
|
@Component({
|
|
2882
|
-
selector: '
|
|
3197
|
+
selector: 'swirl-resource-list',
|
|
2883
3198
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2884
3199
|
template: '<ng-content></ng-content>',
|
|
2885
3200
|
inputs: ['label']
|
|
2886
3201
|
})
|
|
2887
|
-
export class
|
|
3202
|
+
export class SwirlResourceList {
|
|
2888
3203
|
protected el: HTMLElement;
|
|
2889
3204
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2890
3205
|
c.detach();
|
|
@@ -2893,7 +3208,7 @@ export class FlipResourceList {
|
|
|
2893
3208
|
}
|
|
2894
3209
|
|
|
2895
3210
|
|
|
2896
|
-
export declare interface
|
|
3211
|
+
export declare interface SwirlResourceListFileItem extends Components.SwirlResourceListFileItem {
|
|
2897
3212
|
/**
|
|
2898
3213
|
*
|
|
2899
3214
|
*/
|
|
@@ -2906,12 +3221,12 @@ export declare interface FlipResourceListFileItem extends Components.FlipResourc
|
|
|
2906
3221
|
inputs: ['description', 'errorMessage', 'icon', 'label', 'loading', 'removable', 'removeButtonLabel']
|
|
2907
3222
|
})
|
|
2908
3223
|
@Component({
|
|
2909
|
-
selector: '
|
|
3224
|
+
selector: 'swirl-resource-list-file-item',
|
|
2910
3225
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2911
3226
|
template: '<ng-content></ng-content>',
|
|
2912
3227
|
inputs: ['description', 'errorMessage', 'icon', 'label', 'loading', 'removable', 'removeButtonLabel']
|
|
2913
3228
|
})
|
|
2914
|
-
export class
|
|
3229
|
+
export class SwirlResourceListFileItem {
|
|
2915
3230
|
protected el: HTMLElement;
|
|
2916
3231
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2917
3232
|
c.detach();
|
|
@@ -2921,7 +3236,7 @@ export class FlipResourceListFileItem {
|
|
|
2921
3236
|
}
|
|
2922
3237
|
|
|
2923
3238
|
|
|
2924
|
-
export declare interface
|
|
3239
|
+
export declare interface SwirlResourceListItem extends Components.SwirlResourceListItem {
|
|
2925
3240
|
/**
|
|
2926
3241
|
*
|
|
2927
3242
|
*/
|
|
@@ -2934,12 +3249,12 @@ export declare interface FlipResourceListItem extends Components.FlipResourceLis
|
|
|
2934
3249
|
inputs: ['checked', 'description', 'disabled', 'hideDivider', 'href', 'label', 'media', 'menuTriggerId', 'menuTriggerLabel', 'meta', 'selectable', 'value']
|
|
2935
3250
|
})
|
|
2936
3251
|
@Component({
|
|
2937
|
-
selector: '
|
|
3252
|
+
selector: 'swirl-resource-list-item',
|
|
2938
3253
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2939
3254
|
template: '<ng-content></ng-content>',
|
|
2940
3255
|
inputs: ['checked', 'description', 'disabled', 'hideDivider', 'href', 'label', 'media', 'menuTriggerId', 'menuTriggerLabel', 'meta', 'selectable', 'value']
|
|
2941
3256
|
})
|
|
2942
|
-
export class
|
|
3257
|
+
export class SwirlResourceListItem {
|
|
2943
3258
|
protected el: HTMLElement;
|
|
2944
3259
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2945
3260
|
c.detach();
|
|
@@ -2949,7 +3264,7 @@ export class FlipResourceListItem {
|
|
|
2949
3264
|
}
|
|
2950
3265
|
|
|
2951
3266
|
|
|
2952
|
-
export declare interface
|
|
3267
|
+
export declare interface SwirlSearch extends Components.SwirlSearch {
|
|
2953
3268
|
/**
|
|
2954
3269
|
*
|
|
2955
3270
|
*/
|
|
@@ -2970,12 +3285,12 @@ export declare interface FlipSearch extends Components.FlipSearch {
|
|
|
2970
3285
|
inputs: ['autoFocus', 'clearButtonLabel', 'disabled', 'inputId', 'inputName', 'label', 'placeholder', 'value']
|
|
2971
3286
|
})
|
|
2972
3287
|
@Component({
|
|
2973
|
-
selector: '
|
|
3288
|
+
selector: 'swirl-search',
|
|
2974
3289
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2975
3290
|
template: '<ng-content></ng-content>',
|
|
2976
3291
|
inputs: ['autoFocus', 'clearButtonLabel', 'disabled', 'inputId', 'inputName', 'label', 'placeholder', 'value']
|
|
2977
3292
|
})
|
|
2978
|
-
export class
|
|
3293
|
+
export class SwirlSearch {
|
|
2979
3294
|
protected el: HTMLElement;
|
|
2980
3295
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2981
3296
|
c.detach();
|
|
@@ -2985,7 +3300,7 @@ export class FlipSearch {
|
|
|
2985
3300
|
}
|
|
2986
3301
|
|
|
2987
3302
|
|
|
2988
|
-
export declare interface
|
|
3303
|
+
export declare interface SwirlSelect extends Components.SwirlSelect {
|
|
2989
3304
|
/**
|
|
2990
3305
|
*
|
|
2991
3306
|
*/
|
|
@@ -2995,15 +3310,15 @@ export declare interface FlipSelect extends Components.FlipSelect {
|
|
|
2995
3310
|
|
|
2996
3311
|
@ProxyCmp({
|
|
2997
3312
|
defineCustomElementFn: undefined,
|
|
2998
|
-
inputs: ['disabled', '
|
|
3313
|
+
inputs: ['disabled', 'invalid', 'label', 'multiSelect', 'required', 'swirlAriaDescribedby', 'value']
|
|
2999
3314
|
})
|
|
3000
3315
|
@Component({
|
|
3001
|
-
selector: '
|
|
3316
|
+
selector: 'swirl-select',
|
|
3002
3317
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3003
3318
|
template: '<ng-content></ng-content>',
|
|
3004
|
-
inputs: ['disabled', '
|
|
3319
|
+
inputs: ['disabled', 'invalid', 'label', 'multiSelect', 'required', 'swirlAriaDescribedby', 'value']
|
|
3005
3320
|
})
|
|
3006
|
-
export class
|
|
3321
|
+
export class SwirlSelect {
|
|
3007
3322
|
protected el: HTMLElement;
|
|
3008
3323
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3009
3324
|
c.detach();
|
|
@@ -3013,19 +3328,38 @@ export class FlipSelect {
|
|
|
3013
3328
|
}
|
|
3014
3329
|
|
|
3015
3330
|
|
|
3016
|
-
export declare interface
|
|
3331
|
+
export declare interface SwirlSeparator extends Components.SwirlSeparator {}
|
|
3332
|
+
|
|
3333
|
+
@ProxyCmp({
|
|
3334
|
+
defineCustomElementFn: undefined
|
|
3335
|
+
})
|
|
3336
|
+
@Component({
|
|
3337
|
+
selector: 'swirl-separator',
|
|
3338
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3339
|
+
template: '<ng-content></ng-content>'
|
|
3340
|
+
})
|
|
3341
|
+
export class SwirlSeparator {
|
|
3342
|
+
protected el: HTMLElement;
|
|
3343
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3344
|
+
c.detach();
|
|
3345
|
+
this.el = r.nativeElement;
|
|
3346
|
+
}
|
|
3347
|
+
}
|
|
3348
|
+
|
|
3349
|
+
|
|
3350
|
+
export declare interface SwirlSpinner extends Components.SwirlSpinner {}
|
|
3017
3351
|
|
|
3018
3352
|
@ProxyCmp({
|
|
3019
3353
|
defineCustomElementFn: undefined,
|
|
3020
3354
|
inputs: ['label', 'size']
|
|
3021
3355
|
})
|
|
3022
3356
|
@Component({
|
|
3023
|
-
selector: '
|
|
3357
|
+
selector: 'swirl-spinner',
|
|
3024
3358
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3025
3359
|
template: '<ng-content></ng-content>',
|
|
3026
3360
|
inputs: ['label', 'size']
|
|
3027
3361
|
})
|
|
3028
|
-
export class
|
|
3362
|
+
export class SwirlSpinner {
|
|
3029
3363
|
protected el: HTMLElement;
|
|
3030
3364
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3031
3365
|
c.detach();
|
|
@@ -3034,19 +3368,19 @@ export class FlipSpinner {
|
|
|
3034
3368
|
}
|
|
3035
3369
|
|
|
3036
3370
|
|
|
3037
|
-
export declare interface
|
|
3371
|
+
export declare interface SwirlStack extends Components.SwirlStack {}
|
|
3038
3372
|
|
|
3039
3373
|
@ProxyCmp({
|
|
3040
3374
|
defineCustomElementFn: undefined,
|
|
3041
3375
|
inputs: ['align', 'as', 'justify', 'orientation', 'spacing', 'wrap']
|
|
3042
3376
|
})
|
|
3043
3377
|
@Component({
|
|
3044
|
-
selector: '
|
|
3378
|
+
selector: 'swirl-stack',
|
|
3045
3379
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3046
3380
|
template: '<ng-content></ng-content>',
|
|
3047
3381
|
inputs: ['align', 'as', 'justify', 'orientation', 'spacing', 'wrap']
|
|
3048
3382
|
})
|
|
3049
|
-
export class
|
|
3383
|
+
export class SwirlStack {
|
|
3050
3384
|
protected el: HTMLElement;
|
|
3051
3385
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3052
3386
|
c.detach();
|
|
@@ -3055,7 +3389,7 @@ export class FlipStack {
|
|
|
3055
3389
|
}
|
|
3056
3390
|
|
|
3057
3391
|
|
|
3058
|
-
export declare interface
|
|
3392
|
+
export declare interface SwirlSwitch extends Components.SwirlSwitch {
|
|
3059
3393
|
/**
|
|
3060
3394
|
*
|
|
3061
3395
|
*/
|
|
@@ -3068,12 +3402,12 @@ export declare interface FlipSwitch extends Components.FlipSwitch {
|
|
|
3068
3402
|
inputs: ['checked', 'disabled', 'inputId', 'inputName', 'label', 'size', 'value']
|
|
3069
3403
|
})
|
|
3070
3404
|
@Component({
|
|
3071
|
-
selector: '
|
|
3405
|
+
selector: 'swirl-switch',
|
|
3072
3406
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3073
3407
|
template: '<ng-content></ng-content>',
|
|
3074
3408
|
inputs: ['checked', 'disabled', 'inputId', 'inputName', 'label', 'size', 'value']
|
|
3075
3409
|
})
|
|
3076
|
-
export class
|
|
3410
|
+
export class SwirlSwitch {
|
|
3077
3411
|
protected el: HTMLElement;
|
|
3078
3412
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3079
3413
|
c.detach();
|
|
@@ -3083,19 +3417,122 @@ export class FlipSwitch {
|
|
|
3083
3417
|
}
|
|
3084
3418
|
|
|
3085
3419
|
|
|
3086
|
-
export declare interface
|
|
3420
|
+
export declare interface SwirlTab extends Components.SwirlTab {}
|
|
3087
3421
|
|
|
3088
3422
|
@ProxyCmp({
|
|
3089
3423
|
defineCustomElementFn: undefined,
|
|
3090
3424
|
inputs: ['active', 'label', 'tabId']
|
|
3091
3425
|
})
|
|
3092
3426
|
@Component({
|
|
3093
|
-
selector: '
|
|
3427
|
+
selector: 'swirl-tab',
|
|
3094
3428
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3095
3429
|
template: '<ng-content></ng-content>',
|
|
3096
3430
|
inputs: ['active', 'label', 'tabId']
|
|
3097
3431
|
})
|
|
3098
|
-
export class
|
|
3432
|
+
export class SwirlTab {
|
|
3433
|
+
protected el: HTMLElement;
|
|
3434
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3435
|
+
c.detach();
|
|
3436
|
+
this.el = r.nativeElement;
|
|
3437
|
+
}
|
|
3438
|
+
}
|
|
3439
|
+
|
|
3440
|
+
|
|
3441
|
+
export declare interface SwirlTable extends Components.SwirlTable {}
|
|
3442
|
+
|
|
3443
|
+
@ProxyCmp({
|
|
3444
|
+
defineCustomElementFn: undefined,
|
|
3445
|
+
inputs: ['caption', 'emptyStateLabel', 'label']
|
|
3446
|
+
})
|
|
3447
|
+
@Component({
|
|
3448
|
+
selector: 'swirl-table',
|
|
3449
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3450
|
+
template: '<ng-content></ng-content>',
|
|
3451
|
+
inputs: ['caption', 'emptyStateLabel', 'label']
|
|
3452
|
+
})
|
|
3453
|
+
export class SwirlTable {
|
|
3454
|
+
protected el: HTMLElement;
|
|
3455
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3456
|
+
c.detach();
|
|
3457
|
+
this.el = r.nativeElement;
|
|
3458
|
+
}
|
|
3459
|
+
}
|
|
3460
|
+
|
|
3461
|
+
|
|
3462
|
+
export declare interface SwirlTableCell extends Components.SwirlTableCell {}
|
|
3463
|
+
|
|
3464
|
+
@ProxyCmp({
|
|
3465
|
+
defineCustomElementFn: undefined
|
|
3466
|
+
})
|
|
3467
|
+
@Component({
|
|
3468
|
+
selector: 'swirl-table-cell',
|
|
3469
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3470
|
+
template: '<ng-content></ng-content>'
|
|
3471
|
+
})
|
|
3472
|
+
export class SwirlTableCell {
|
|
3473
|
+
protected el: HTMLElement;
|
|
3474
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3475
|
+
c.detach();
|
|
3476
|
+
this.el = r.nativeElement;
|
|
3477
|
+
}
|
|
3478
|
+
}
|
|
3479
|
+
|
|
3480
|
+
|
|
3481
|
+
export declare interface SwirlTableColumn extends Components.SwirlTableColumn {}
|
|
3482
|
+
|
|
3483
|
+
@ProxyCmp({
|
|
3484
|
+
defineCustomElementFn: undefined,
|
|
3485
|
+
inputs: ['maxWidth', 'minWidth', 'sort', 'sortable', 'sticky', 'width']
|
|
3486
|
+
})
|
|
3487
|
+
@Component({
|
|
3488
|
+
selector: 'swirl-table-column',
|
|
3489
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3490
|
+
template: '<ng-content></ng-content>',
|
|
3491
|
+
inputs: ['maxWidth', 'minWidth', 'sort', 'sortable', 'sticky', 'width']
|
|
3492
|
+
})
|
|
3493
|
+
export class SwirlTableColumn {
|
|
3494
|
+
protected el: HTMLElement;
|
|
3495
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3496
|
+
c.detach();
|
|
3497
|
+
this.el = r.nativeElement;
|
|
3498
|
+
}
|
|
3499
|
+
}
|
|
3500
|
+
|
|
3501
|
+
|
|
3502
|
+
export declare interface SwirlTableRow extends Components.SwirlTableRow {}
|
|
3503
|
+
|
|
3504
|
+
@ProxyCmp({
|
|
3505
|
+
defineCustomElementFn: undefined,
|
|
3506
|
+
inputs: ['highlighted', 'index']
|
|
3507
|
+
})
|
|
3508
|
+
@Component({
|
|
3509
|
+
selector: 'swirl-table-row',
|
|
3510
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3511
|
+
template: '<ng-content></ng-content>',
|
|
3512
|
+
inputs: ['highlighted', 'index']
|
|
3513
|
+
})
|
|
3514
|
+
export class SwirlTableRow {
|
|
3515
|
+
protected el: HTMLElement;
|
|
3516
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3517
|
+
c.detach();
|
|
3518
|
+
this.el = r.nativeElement;
|
|
3519
|
+
}
|
|
3520
|
+
}
|
|
3521
|
+
|
|
3522
|
+
|
|
3523
|
+
export declare interface SwirlTableRowGroup extends Components.SwirlTableRowGroup {}
|
|
3524
|
+
|
|
3525
|
+
@ProxyCmp({
|
|
3526
|
+
defineCustomElementFn: undefined,
|
|
3527
|
+
inputs: ['label']
|
|
3528
|
+
})
|
|
3529
|
+
@Component({
|
|
3530
|
+
selector: 'swirl-table-row-group',
|
|
3531
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3532
|
+
template: '<ng-content></ng-content>',
|
|
3533
|
+
inputs: ['label']
|
|
3534
|
+
})
|
|
3535
|
+
export class SwirlTableRowGroup {
|
|
3099
3536
|
protected el: HTMLElement;
|
|
3100
3537
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3101
3538
|
c.detach();
|
|
@@ -3104,11 +3541,11 @@ export class FlipTab {
|
|
|
3104
3541
|
}
|
|
3105
3542
|
|
|
3106
3543
|
|
|
3107
|
-
export declare interface
|
|
3544
|
+
export declare interface SwirlTabs extends Components.SwirlTabs {
|
|
3108
3545
|
/**
|
|
3109
3546
|
*
|
|
3110
3547
|
*/
|
|
3111
|
-
tabActivated: EventEmitter<CustomEvent<
|
|
3548
|
+
tabActivated: EventEmitter<CustomEvent<HTMLSwirlTabElement>>;
|
|
3112
3549
|
|
|
3113
3550
|
}
|
|
3114
3551
|
|
|
@@ -3118,12 +3555,12 @@ export declare interface FlipTabs extends Components.FlipTabs {
|
|
|
3118
3555
|
methods: ['activateTab']
|
|
3119
3556
|
})
|
|
3120
3557
|
@Component({
|
|
3121
|
-
selector: '
|
|
3558
|
+
selector: 'swirl-tabs',
|
|
3122
3559
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3123
3560
|
template: '<ng-content></ng-content>',
|
|
3124
3561
|
inputs: ['initialTab', 'label']
|
|
3125
3562
|
})
|
|
3126
|
-
export class
|
|
3563
|
+
export class SwirlTabs {
|
|
3127
3564
|
protected el: HTMLElement;
|
|
3128
3565
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3129
3566
|
c.detach();
|
|
@@ -3133,7 +3570,7 @@ export class FlipTabs {
|
|
|
3133
3570
|
}
|
|
3134
3571
|
|
|
3135
3572
|
|
|
3136
|
-
export declare interface
|
|
3573
|
+
export declare interface SwirlTag extends Components.SwirlTag {
|
|
3137
3574
|
/**
|
|
3138
3575
|
*
|
|
3139
3576
|
*/
|
|
@@ -3146,12 +3583,12 @@ export declare interface FlipTag extends Components.FlipTag {
|
|
|
3146
3583
|
inputs: ['intent', 'label', 'removable', 'removalButtonLabel']
|
|
3147
3584
|
})
|
|
3148
3585
|
@Component({
|
|
3149
|
-
selector: '
|
|
3586
|
+
selector: 'swirl-tag',
|
|
3150
3587
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3151
3588
|
template: '<ng-content></ng-content>',
|
|
3152
3589
|
inputs: ['intent', 'label', 'removable', 'removalButtonLabel']
|
|
3153
3590
|
})
|
|
3154
|
-
export class
|
|
3591
|
+
export class SwirlTag {
|
|
3155
3592
|
protected el: HTMLElement;
|
|
3156
3593
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3157
3594
|
c.detach();
|
|
@@ -3161,19 +3598,19 @@ export class FlipTag {
|
|
|
3161
3598
|
}
|
|
3162
3599
|
|
|
3163
3600
|
|
|
3164
|
-
export declare interface
|
|
3601
|
+
export declare interface SwirlText extends Components.SwirlText {}
|
|
3165
3602
|
|
|
3166
3603
|
@ProxyCmp({
|
|
3167
3604
|
defineCustomElementFn: undefined,
|
|
3168
3605
|
inputs: ['align', 'as', 'color', 'fontStyle', 'size', 'truncate', 'weight']
|
|
3169
3606
|
})
|
|
3170
3607
|
@Component({
|
|
3171
|
-
selector: '
|
|
3608
|
+
selector: 'swirl-text',
|
|
3172
3609
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3173
3610
|
template: '<ng-content></ng-content>',
|
|
3174
3611
|
inputs: ['align', 'as', 'color', 'fontStyle', 'size', 'truncate', 'weight']
|
|
3175
3612
|
})
|
|
3176
|
-
export class
|
|
3613
|
+
export class SwirlText {
|
|
3177
3614
|
protected el: HTMLElement;
|
|
3178
3615
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3179
3616
|
c.detach();
|
|
@@ -3182,7 +3619,7 @@ export class FlipText {
|
|
|
3182
3619
|
}
|
|
3183
3620
|
|
|
3184
3621
|
|
|
3185
|
-
export declare interface
|
|
3622
|
+
export declare interface SwirlTextInput extends Components.SwirlTextInput {
|
|
3186
3623
|
/**
|
|
3187
3624
|
*
|
|
3188
3625
|
*/
|
|
@@ -3200,15 +3637,15 @@ export declare interface FlipTextInput extends Components.FlipTextInput {
|
|
|
3200
3637
|
|
|
3201
3638
|
@ProxyCmp({
|
|
3202
3639
|
defineCustomElementFn: undefined,
|
|
3203
|
-
inputs: ['autoComplete', 'autoFocus', 'autoSelect', 'clearButtonLabel', 'clearable', 'disableDynamicWidth', 'disabled', '
|
|
3640
|
+
inputs: ['autoComplete', 'autoFocus', 'autoSelect', 'clearButtonLabel', 'clearable', 'disableDynamicWidth', 'disabled', 'invalid', 'max', 'maxLength', 'min', 'mode', 'passwordToggleLabel', 'prefixLabel', 'required', 'rows', 'showCharacterCounter', 'spellCheck', 'step', 'suffixLabel', 'swirlAriaAutocomplete', 'swirlAriaControls', 'swirlAriaDescribedby', 'swirlAriaExpanded', 'swirlRole', 'type', 'value']
|
|
3204
3641
|
})
|
|
3205
3642
|
@Component({
|
|
3206
|
-
selector: '
|
|
3643
|
+
selector: 'swirl-text-input',
|
|
3207
3644
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3208
3645
|
template: '<ng-content></ng-content>',
|
|
3209
|
-
inputs: ['autoComplete', 'autoFocus', 'autoSelect', 'clearButtonLabel', 'clearable', 'disableDynamicWidth', 'disabled', '
|
|
3646
|
+
inputs: ['autoComplete', 'autoFocus', 'autoSelect', 'clearButtonLabel', 'clearable', 'disableDynamicWidth', 'disabled', 'invalid', 'max', 'maxLength', 'min', 'mode', 'passwordToggleLabel', 'prefixLabel', 'required', 'rows', 'showCharacterCounter', 'spellCheck', 'step', 'suffixLabel', 'swirlAriaAutocomplete', 'swirlAriaControls', 'swirlAriaDescribedby', 'swirlAriaExpanded', 'swirlRole', 'type', 'value']
|
|
3210
3647
|
})
|
|
3211
|
-
export class
|
|
3648
|
+
export class SwirlTextInput {
|
|
3212
3649
|
protected el: HTMLElement;
|
|
3213
3650
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3214
3651
|
c.detach();
|
|
@@ -3217,12 +3654,12 @@ export class FlipTextInput {
|
|
|
3217
3654
|
}
|
|
3218
3655
|
}
|
|
3219
3656
|
|
|
3220
|
-
import type {
|
|
3221
|
-
export declare interface
|
|
3657
|
+
import type { SwirlThemeChangeEventData as ISwirlThemeProviderSwirlThemeChangeEventData } from '@getflip/swirl-components';
|
|
3658
|
+
export declare interface SwirlThemeProvider extends Components.SwirlThemeProvider {
|
|
3222
3659
|
/**
|
|
3223
3660
|
*
|
|
3224
3661
|
*/
|
|
3225
|
-
themeChange: EventEmitter<CustomEvent<
|
|
3662
|
+
themeChange: EventEmitter<CustomEvent<ISwirlThemeProviderSwirlThemeChangeEventData>>;
|
|
3226
3663
|
|
|
3227
3664
|
}
|
|
3228
3665
|
|
|
@@ -3232,12 +3669,12 @@ export declare interface FlipThemeProvider extends Components.FlipThemeProvider
|
|
|
3232
3669
|
methods: ['getActiveTheme', 'getPreferredTheme', 'setPreferredTheme', 'resetPreferredTheme']
|
|
3233
3670
|
})
|
|
3234
3671
|
@Component({
|
|
3235
|
-
selector: '
|
|
3672
|
+
selector: 'swirl-theme-provider',
|
|
3236
3673
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3237
3674
|
template: '<ng-content></ng-content>',
|
|
3238
3675
|
inputs: ['config']
|
|
3239
3676
|
})
|
|
3240
|
-
export class
|
|
3677
|
+
export class SwirlThemeProvider {
|
|
3241
3678
|
protected el: HTMLElement;
|
|
3242
3679
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3243
3680
|
c.detach();
|
|
@@ -3247,19 +3684,19 @@ export class FlipThemeProvider {
|
|
|
3247
3684
|
}
|
|
3248
3685
|
|
|
3249
3686
|
|
|
3250
|
-
export declare interface
|
|
3687
|
+
export declare interface SwirlThumbnail extends Components.SwirlThumbnail {}
|
|
3251
3688
|
|
|
3252
3689
|
@ProxyCmp({
|
|
3253
3690
|
defineCustomElementFn: undefined,
|
|
3254
3691
|
inputs: ['alt', 'format', 'size', 'src']
|
|
3255
3692
|
})
|
|
3256
3693
|
@Component({
|
|
3257
|
-
selector: '
|
|
3694
|
+
selector: 'swirl-thumbnail',
|
|
3258
3695
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3259
3696
|
template: '<ng-content></ng-content>',
|
|
3260
3697
|
inputs: ['alt', 'format', 'size', 'src']
|
|
3261
3698
|
})
|
|
3262
|
-
export class
|
|
3699
|
+
export class SwirlThumbnail {
|
|
3263
3700
|
protected el: HTMLElement;
|
|
3264
3701
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3265
3702
|
c.detach();
|
|
@@ -3268,7 +3705,7 @@ export class FlipThumbnail {
|
|
|
3268
3705
|
}
|
|
3269
3706
|
|
|
3270
3707
|
|
|
3271
|
-
export declare interface
|
|
3708
|
+
export declare interface SwirlToast extends Components.SwirlToast {
|
|
3272
3709
|
/**
|
|
3273
3710
|
*
|
|
3274
3711
|
*/
|
|
@@ -3281,12 +3718,12 @@ export declare interface FlipToast extends Components.FlipToast {
|
|
|
3281
3718
|
inputs: ['accessibleDismissLabel', 'content', 'dismissLabel', 'duration', 'icon', 'intent', 'toastId']
|
|
3282
3719
|
})
|
|
3283
3720
|
@Component({
|
|
3284
|
-
selector: '
|
|
3721
|
+
selector: 'swirl-toast',
|
|
3285
3722
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3286
3723
|
template: '<ng-content></ng-content>',
|
|
3287
3724
|
inputs: ['accessibleDismissLabel', 'content', 'dismissLabel', 'duration', 'icon', 'intent', 'toastId']
|
|
3288
3725
|
})
|
|
3289
|
-
export class
|
|
3726
|
+
export class SwirlToast {
|
|
3290
3727
|
protected el: HTMLElement;
|
|
3291
3728
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3292
3729
|
c.detach();
|
|
@@ -3296,7 +3733,7 @@ export class FlipToast {
|
|
|
3296
3733
|
}
|
|
3297
3734
|
|
|
3298
3735
|
|
|
3299
|
-
export declare interface
|
|
3736
|
+
export declare interface SwirlToastProvider extends Components.SwirlToastProvider {}
|
|
3300
3737
|
|
|
3301
3738
|
@ProxyCmp({
|
|
3302
3739
|
defineCustomElementFn: undefined,
|
|
@@ -3304,12 +3741,12 @@ export declare interface FlipToastProvider extends Components.FlipToastProvider
|
|
|
3304
3741
|
methods: ['clearAll', 'dismiss', 'toast']
|
|
3305
3742
|
})
|
|
3306
3743
|
@Component({
|
|
3307
|
-
selector: '
|
|
3744
|
+
selector: 'swirl-toast-provider',
|
|
3308
3745
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3309
3746
|
template: '<ng-content></ng-content>',
|
|
3310
3747
|
inputs: ['globalDuration']
|
|
3311
3748
|
})
|
|
3312
|
-
export class
|
|
3749
|
+
export class SwirlToastProvider {
|
|
3313
3750
|
protected el: HTMLElement;
|
|
3314
3751
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3315
3752
|
c.detach();
|
|
@@ -3318,19 +3755,19 @@ export class FlipToastProvider {
|
|
|
3318
3755
|
}
|
|
3319
3756
|
|
|
3320
3757
|
|
|
3321
|
-
export declare interface
|
|
3758
|
+
export declare interface SwirlTooltip extends Components.SwirlTooltip {}
|
|
3322
3759
|
|
|
3323
3760
|
@ProxyCmp({
|
|
3324
3761
|
defineCustomElementFn: undefined,
|
|
3325
3762
|
inputs: ['content', 'delay', 'position']
|
|
3326
3763
|
})
|
|
3327
3764
|
@Component({
|
|
3328
|
-
selector: '
|
|
3765
|
+
selector: 'swirl-tooltip',
|
|
3329
3766
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3330
3767
|
template: '<ng-content></ng-content>',
|
|
3331
3768
|
inputs: ['content', 'delay', 'position']
|
|
3332
3769
|
})
|
|
3333
|
-
export class
|
|
3770
|
+
export class SwirlTooltip {
|
|
3334
3771
|
protected el: HTMLElement;
|
|
3335
3772
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3336
3773
|
c.detach();
|
|
@@ -3339,19 +3776,19 @@ export class FlipTooltip {
|
|
|
3339
3776
|
}
|
|
3340
3777
|
|
|
3341
3778
|
|
|
3342
|
-
export declare interface
|
|
3779
|
+
export declare interface SwirlTreeNavigationItem extends Components.SwirlTreeNavigationItem {}
|
|
3343
3780
|
|
|
3344
3781
|
@ProxyCmp({
|
|
3345
3782
|
defineCustomElementFn: undefined,
|
|
3346
3783
|
inputs: ['active', 'icon', 'label']
|
|
3347
3784
|
})
|
|
3348
3785
|
@Component({
|
|
3349
|
-
selector: '
|
|
3786
|
+
selector: 'swirl-tree-navigation-item',
|
|
3350
3787
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3351
3788
|
template: '<ng-content></ng-content>',
|
|
3352
3789
|
inputs: ['active', 'icon', 'label']
|
|
3353
3790
|
})
|
|
3354
|
-
export class
|
|
3791
|
+
export class SwirlTreeNavigationItem {
|
|
3355
3792
|
protected el: HTMLElement;
|
|
3356
3793
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3357
3794
|
c.detach();
|
|
@@ -3360,19 +3797,19 @@ export class FlipTreeNavigationItem {
|
|
|
3360
3797
|
}
|
|
3361
3798
|
|
|
3362
3799
|
|
|
3363
|
-
export declare interface
|
|
3800
|
+
export declare interface SwirlVideoThumbnail extends Components.SwirlVideoThumbnail {}
|
|
3364
3801
|
|
|
3365
3802
|
@ProxyCmp({
|
|
3366
3803
|
defineCustomElementFn: undefined,
|
|
3367
3804
|
inputs: ['duration', 'durationLabel', 'label', 'src']
|
|
3368
3805
|
})
|
|
3369
3806
|
@Component({
|
|
3370
|
-
selector: '
|
|
3807
|
+
selector: 'swirl-video-thumbnail',
|
|
3371
3808
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3372
3809
|
template: '<ng-content></ng-content>',
|
|
3373
3810
|
inputs: ['duration', 'durationLabel', 'label', 'src']
|
|
3374
3811
|
})
|
|
3375
|
-
export class
|
|
3812
|
+
export class SwirlVideoThumbnail {
|
|
3376
3813
|
protected el: HTMLElement;
|
|
3377
3814
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3378
3815
|
c.detach();
|
|
@@ -3381,17 +3818,17 @@ export class FlipVideoThumbnail {
|
|
|
3381
3818
|
}
|
|
3382
3819
|
|
|
3383
3820
|
|
|
3384
|
-
export declare interface
|
|
3821
|
+
export declare interface SwirlVisuallyHidden extends Components.SwirlVisuallyHidden {}
|
|
3385
3822
|
|
|
3386
3823
|
@ProxyCmp({
|
|
3387
3824
|
defineCustomElementFn: undefined
|
|
3388
3825
|
})
|
|
3389
3826
|
@Component({
|
|
3390
|
-
selector: '
|
|
3827
|
+
selector: 'swirl-visually-hidden',
|
|
3391
3828
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3392
3829
|
template: '<ng-content></ng-content>'
|
|
3393
3830
|
})
|
|
3394
|
-
export class
|
|
3831
|
+
export class SwirlVisuallyHidden {
|
|
3395
3832
|
protected el: HTMLElement;
|
|
3396
3833
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3397
3834
|
c.detach();
|