@getflip/swirl-components-angular 0.468.0 → 0.469.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 +1 -1
- package/CHANGELOG.md +27 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +311 -3
- package/dist/component-library/fesm2022/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/components.d.ts +99 -0
- package/dist/component-library/lib/stencil-generated/index.d.ts +1 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +253 -0
- package/projects/component-library/src/lib/stencil-generated/index.ts +11 -0
|
@@ -1424,6 +1424,29 @@ export class SwirlIconAdd {
|
|
|
1424
1424
|
export declare interface SwirlIconAdd extends Components.SwirlIconAdd {}
|
|
1425
1425
|
|
|
1426
1426
|
|
|
1427
|
+
@ProxyCmp({
|
|
1428
|
+
inputs: ['color', 'size']
|
|
1429
|
+
})
|
|
1430
|
+
@Component({
|
|
1431
|
+
selector: 'swirl-icon-add-box',
|
|
1432
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1433
|
+
template: '<ng-content></ng-content>',
|
|
1434
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1435
|
+
inputs: ['color', 'size'],
|
|
1436
|
+
standalone: false
|
|
1437
|
+
})
|
|
1438
|
+
export class SwirlIconAddBox {
|
|
1439
|
+
protected el: HTMLSwirlIconAddBoxElement;
|
|
1440
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1441
|
+
c.detach();
|
|
1442
|
+
this.el = r.nativeElement;
|
|
1443
|
+
}
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
|
|
1447
|
+
export declare interface SwirlIconAddBox extends Components.SwirlIconAddBox {}
|
|
1448
|
+
|
|
1449
|
+
|
|
1427
1450
|
@ProxyCmp({
|
|
1428
1451
|
inputs: ['color', 'size']
|
|
1429
1452
|
})
|
|
@@ -1562,6 +1585,29 @@ export class SwirlIconAiFilled {
|
|
|
1562
1585
|
export declare interface SwirlIconAiFilled extends Components.SwirlIconAiFilled {}
|
|
1563
1586
|
|
|
1564
1587
|
|
|
1588
|
+
@ProxyCmp({
|
|
1589
|
+
inputs: ['color', 'size']
|
|
1590
|
+
})
|
|
1591
|
+
@Component({
|
|
1592
|
+
selector: 'swirl-icon-apparel',
|
|
1593
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1594
|
+
template: '<ng-content></ng-content>',
|
|
1595
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1596
|
+
inputs: ['color', 'size'],
|
|
1597
|
+
standalone: false
|
|
1598
|
+
})
|
|
1599
|
+
export class SwirlIconApparel {
|
|
1600
|
+
protected el: HTMLSwirlIconApparelElement;
|
|
1601
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1602
|
+
c.detach();
|
|
1603
|
+
this.el = r.nativeElement;
|
|
1604
|
+
}
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
|
|
1608
|
+
export declare interface SwirlIconApparel extends Components.SwirlIconApparel {}
|
|
1609
|
+
|
|
1610
|
+
|
|
1565
1611
|
@ProxyCmp({
|
|
1566
1612
|
inputs: ['color', 'size']
|
|
1567
1613
|
})
|
|
@@ -2505,6 +2551,29 @@ export class SwirlIconCloudUpload {
|
|
|
2505
2551
|
export declare interface SwirlIconCloudUpload extends Components.SwirlIconCloudUpload {}
|
|
2506
2552
|
|
|
2507
2553
|
|
|
2554
|
+
@ProxyCmp({
|
|
2555
|
+
inputs: ['color', 'size']
|
|
2556
|
+
})
|
|
2557
|
+
@Component({
|
|
2558
|
+
selector: 'swirl-icon-co-present',
|
|
2559
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2560
|
+
template: '<ng-content></ng-content>',
|
|
2561
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2562
|
+
inputs: ['color', 'size'],
|
|
2563
|
+
standalone: false
|
|
2564
|
+
})
|
|
2565
|
+
export class SwirlIconCoPresent {
|
|
2566
|
+
protected el: HTMLSwirlIconCoPresentElement;
|
|
2567
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2568
|
+
c.detach();
|
|
2569
|
+
this.el = r.nativeElement;
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
|
|
2574
|
+
export declare interface SwirlIconCoPresent extends Components.SwirlIconCoPresent {}
|
|
2575
|
+
|
|
2576
|
+
|
|
2508
2577
|
@ProxyCmp({
|
|
2509
2578
|
inputs: ['color', 'size']
|
|
2510
2579
|
})
|
|
@@ -2551,6 +2620,29 @@ export class SwirlIconComment {
|
|
|
2551
2620
|
export declare interface SwirlIconComment extends Components.SwirlIconComment {}
|
|
2552
2621
|
|
|
2553
2622
|
|
|
2623
|
+
@ProxyCmp({
|
|
2624
|
+
inputs: ['color', 'size']
|
|
2625
|
+
})
|
|
2626
|
+
@Component({
|
|
2627
|
+
selector: 'swirl-icon-contract-edit',
|
|
2628
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2629
|
+
template: '<ng-content></ng-content>',
|
|
2630
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2631
|
+
inputs: ['color', 'size'],
|
|
2632
|
+
standalone: false
|
|
2633
|
+
})
|
|
2634
|
+
export class SwirlIconContractEdit {
|
|
2635
|
+
protected el: HTMLSwirlIconContractEditElement;
|
|
2636
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2637
|
+
c.detach();
|
|
2638
|
+
this.el = r.nativeElement;
|
|
2639
|
+
}
|
|
2640
|
+
}
|
|
2641
|
+
|
|
2642
|
+
|
|
2643
|
+
export declare interface SwirlIconContractEdit extends Components.SwirlIconContractEdit {}
|
|
2644
|
+
|
|
2645
|
+
|
|
2554
2646
|
@ProxyCmp({
|
|
2555
2647
|
inputs: ['color', 'size']
|
|
2556
2648
|
})
|
|
@@ -2758,6 +2850,29 @@ export class SwirlIconDesktop {
|
|
|
2758
2850
|
export declare interface SwirlIconDesktop extends Components.SwirlIconDesktop {}
|
|
2759
2851
|
|
|
2760
2852
|
|
|
2853
|
+
@ProxyCmp({
|
|
2854
|
+
inputs: ['color', 'size']
|
|
2855
|
+
})
|
|
2856
|
+
@Component({
|
|
2857
|
+
selector: 'swirl-icon-destruction',
|
|
2858
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2859
|
+
template: '<ng-content></ng-content>',
|
|
2860
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2861
|
+
inputs: ['color', 'size'],
|
|
2862
|
+
standalone: false
|
|
2863
|
+
})
|
|
2864
|
+
export class SwirlIconDestruction {
|
|
2865
|
+
protected el: HTMLSwirlIconDestructionElement;
|
|
2866
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2867
|
+
c.detach();
|
|
2868
|
+
this.el = r.nativeElement;
|
|
2869
|
+
}
|
|
2870
|
+
}
|
|
2871
|
+
|
|
2872
|
+
|
|
2873
|
+
export declare interface SwirlIconDestruction extends Components.SwirlIconDestruction {}
|
|
2874
|
+
|
|
2875
|
+
|
|
2761
2876
|
@ProxyCmp({
|
|
2762
2877
|
inputs: ['color', 'size']
|
|
2763
2878
|
})
|
|
@@ -4161,6 +4276,29 @@ export class SwirlIconLink {
|
|
|
4161
4276
|
export declare interface SwirlIconLink extends Components.SwirlIconLink {}
|
|
4162
4277
|
|
|
4163
4278
|
|
|
4279
|
+
@ProxyCmp({
|
|
4280
|
+
inputs: ['color', 'size']
|
|
4281
|
+
})
|
|
4282
|
+
@Component({
|
|
4283
|
+
selector: 'swirl-icon-list-alt-check',
|
|
4284
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4285
|
+
template: '<ng-content></ng-content>',
|
|
4286
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4287
|
+
inputs: ['color', 'size'],
|
|
4288
|
+
standalone: false
|
|
4289
|
+
})
|
|
4290
|
+
export class SwirlIconListAltCheck {
|
|
4291
|
+
protected el: HTMLSwirlIconListAltCheckElement;
|
|
4292
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
4293
|
+
c.detach();
|
|
4294
|
+
this.el = r.nativeElement;
|
|
4295
|
+
}
|
|
4296
|
+
}
|
|
4297
|
+
|
|
4298
|
+
|
|
4299
|
+
export declare interface SwirlIconListAltCheck extends Components.SwirlIconListAltCheck {}
|
|
4300
|
+
|
|
4301
|
+
|
|
4164
4302
|
@ProxyCmp({
|
|
4165
4303
|
inputs: ['color', 'size']
|
|
4166
4304
|
})
|
|
@@ -4644,6 +4782,29 @@ export class SwirlIconMicOff {
|
|
|
4644
4782
|
export declare interface SwirlIconMicOff extends Components.SwirlIconMicOff {}
|
|
4645
4783
|
|
|
4646
4784
|
|
|
4785
|
+
@ProxyCmp({
|
|
4786
|
+
inputs: ['color', 'size']
|
|
4787
|
+
})
|
|
4788
|
+
@Component({
|
|
4789
|
+
selector: 'swirl-icon-mobile-theft',
|
|
4790
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4791
|
+
template: '<ng-content></ng-content>',
|
|
4792
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4793
|
+
inputs: ['color', 'size'],
|
|
4794
|
+
standalone: false
|
|
4795
|
+
})
|
|
4796
|
+
export class SwirlIconMobileTheft {
|
|
4797
|
+
protected el: HTMLSwirlIconMobileTheftElement;
|
|
4798
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
4799
|
+
c.detach();
|
|
4800
|
+
this.el = r.nativeElement;
|
|
4801
|
+
}
|
|
4802
|
+
}
|
|
4803
|
+
|
|
4804
|
+
|
|
4805
|
+
export declare interface SwirlIconMobileTheft extends Components.SwirlIconMobileTheft {}
|
|
4806
|
+
|
|
4807
|
+
|
|
4647
4808
|
@ProxyCmp({
|
|
4648
4809
|
inputs: ['color', 'size']
|
|
4649
4810
|
})
|
|
@@ -5127,6 +5288,29 @@ export class SwirlIconPersonOff {
|
|
|
5127
5288
|
export declare interface SwirlIconPersonOff extends Components.SwirlIconPersonOff {}
|
|
5128
5289
|
|
|
5129
5290
|
|
|
5291
|
+
@ProxyCmp({
|
|
5292
|
+
inputs: ['color', 'size']
|
|
5293
|
+
})
|
|
5294
|
+
@Component({
|
|
5295
|
+
selector: 'swirl-icon-person-raised-hand',
|
|
5296
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5297
|
+
template: '<ng-content></ng-content>',
|
|
5298
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
5299
|
+
inputs: ['color', 'size'],
|
|
5300
|
+
standalone: false
|
|
5301
|
+
})
|
|
5302
|
+
export class SwirlIconPersonRaisedHand {
|
|
5303
|
+
protected el: HTMLSwirlIconPersonRaisedHandElement;
|
|
5304
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
5305
|
+
c.detach();
|
|
5306
|
+
this.el = r.nativeElement;
|
|
5307
|
+
}
|
|
5308
|
+
}
|
|
5309
|
+
|
|
5310
|
+
|
|
5311
|
+
export declare interface SwirlIconPersonRaisedHand extends Components.SwirlIconPersonRaisedHand {}
|
|
5312
|
+
|
|
5313
|
+
|
|
5130
5314
|
@ProxyCmp({
|
|
5131
5315
|
inputs: ['color', 'size']
|
|
5132
5316
|
})
|
|
@@ -5886,6 +6070,29 @@ export class SwirlIconRotateRight {
|
|
|
5886
6070
|
export declare interface SwirlIconRotateRight extends Components.SwirlIconRotateRight {}
|
|
5887
6071
|
|
|
5888
6072
|
|
|
6073
|
+
@ProxyCmp({
|
|
6074
|
+
inputs: ['color', 'size']
|
|
6075
|
+
})
|
|
6076
|
+
@Component({
|
|
6077
|
+
selector: 'swirl-icon-school',
|
|
6078
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6079
|
+
template: '<ng-content></ng-content>',
|
|
6080
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
6081
|
+
inputs: ['color', 'size'],
|
|
6082
|
+
standalone: false
|
|
6083
|
+
})
|
|
6084
|
+
export class SwirlIconSchool {
|
|
6085
|
+
protected el: HTMLSwirlIconSchoolElement;
|
|
6086
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
6087
|
+
c.detach();
|
|
6088
|
+
this.el = r.nativeElement;
|
|
6089
|
+
}
|
|
6090
|
+
}
|
|
6091
|
+
|
|
6092
|
+
|
|
6093
|
+
export declare interface SwirlIconSchool extends Components.SwirlIconSchool {}
|
|
6094
|
+
|
|
6095
|
+
|
|
5889
6096
|
@ProxyCmp({
|
|
5890
6097
|
inputs: ['color', 'size']
|
|
5891
6098
|
})
|
|
@@ -6875,6 +7082,29 @@ export class SwirlIconWarning {
|
|
|
6875
7082
|
export declare interface SwirlIconWarning extends Components.SwirlIconWarning {}
|
|
6876
7083
|
|
|
6877
7084
|
|
|
7085
|
+
@ProxyCmp({
|
|
7086
|
+
inputs: ['color', 'size']
|
|
7087
|
+
})
|
|
7088
|
+
@Component({
|
|
7089
|
+
selector: 'swirl-icon-waving-hand',
|
|
7090
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7091
|
+
template: '<ng-content></ng-content>',
|
|
7092
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7093
|
+
inputs: ['color', 'size'],
|
|
7094
|
+
standalone: false
|
|
7095
|
+
})
|
|
7096
|
+
export class SwirlIconWavingHand {
|
|
7097
|
+
protected el: HTMLSwirlIconWavingHandElement;
|
|
7098
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7099
|
+
c.detach();
|
|
7100
|
+
this.el = r.nativeElement;
|
|
7101
|
+
}
|
|
7102
|
+
}
|
|
7103
|
+
|
|
7104
|
+
|
|
7105
|
+
export declare interface SwirlIconWavingHand extends Components.SwirlIconWavingHand {}
|
|
7106
|
+
|
|
7107
|
+
|
|
6878
7108
|
@ProxyCmp({
|
|
6879
7109
|
inputs: ['color', 'size']
|
|
6880
7110
|
})
|
|
@@ -6944,6 +7174,29 @@ export class SwirlIconWork {
|
|
|
6944
7174
|
export declare interface SwirlIconWork extends Components.SwirlIconWork {}
|
|
6945
7175
|
|
|
6946
7176
|
|
|
7177
|
+
@ProxyCmp({
|
|
7178
|
+
inputs: ['color', 'size']
|
|
7179
|
+
})
|
|
7180
|
+
@Component({
|
|
7181
|
+
selector: 'swirl-icon-workspace-premium',
|
|
7182
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7183
|
+
template: '<ng-content></ng-content>',
|
|
7184
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7185
|
+
inputs: ['color', 'size'],
|
|
7186
|
+
standalone: false
|
|
7187
|
+
})
|
|
7188
|
+
export class SwirlIconWorkspacePremium {
|
|
7189
|
+
protected el: HTMLSwirlIconWorkspacePremiumElement;
|
|
7190
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7191
|
+
c.detach();
|
|
7192
|
+
this.el = r.nativeElement;
|
|
7193
|
+
}
|
|
7194
|
+
}
|
|
7195
|
+
|
|
7196
|
+
|
|
7197
|
+
export declare interface SwirlIconWorkspacePremium extends Components.SwirlIconWorkspacePremium {}
|
|
7198
|
+
|
|
7199
|
+
|
|
6947
7200
|
@ProxyCmp({
|
|
6948
7201
|
inputs: ['aspectRatio', 'borderRadius', 'label']
|
|
6949
7202
|
})
|
|
@@ -56,12 +56,14 @@ export const DIRECTIVES = [
|
|
|
56
56
|
d.SwirlHeading,
|
|
57
57
|
d.SwirlIcon,
|
|
58
58
|
d.SwirlIconAdd,
|
|
59
|
+
d.SwirlIconAddBox,
|
|
59
60
|
d.SwirlIconAddModerator,
|
|
60
61
|
d.SwirlIconAddPhoto,
|
|
61
62
|
d.SwirlIconAddReaction,
|
|
62
63
|
d.SwirlIconAdminPanelSettings,
|
|
63
64
|
d.SwirlIconAi,
|
|
64
65
|
d.SwirlIconAiFilled,
|
|
66
|
+
d.SwirlIconApparel,
|
|
65
67
|
d.SwirlIconApps,
|
|
66
68
|
d.SwirlIconArrowBack,
|
|
67
69
|
d.SwirlIconArrowDownward,
|
|
@@ -103,8 +105,10 @@ export const DIRECTIVES = [
|
|
|
103
105
|
d.SwirlIconCloseFullscreen,
|
|
104
106
|
d.SwirlIconCloseSmall,
|
|
105
107
|
d.SwirlIconCloudUpload,
|
|
108
|
+
d.SwirlIconCoPresent,
|
|
106
109
|
d.SwirlIconColumn,
|
|
107
110
|
d.SwirlIconComment,
|
|
111
|
+
d.SwirlIconContractEdit,
|
|
108
112
|
d.SwirlIconContrast,
|
|
109
113
|
d.SwirlIconCopy,
|
|
110
114
|
d.SwirlIconCrop,
|
|
@@ -114,6 +118,7 @@ export const DIRECTIVES = [
|
|
|
114
118
|
d.SwirlIconDeployedCode,
|
|
115
119
|
d.SwirlIconDescription,
|
|
116
120
|
d.SwirlIconDesktop,
|
|
121
|
+
d.SwirlIconDestruction,
|
|
117
122
|
d.SwirlIconDirectory,
|
|
118
123
|
d.SwirlIconDirectoryFilled,
|
|
119
124
|
d.SwirlIconDiscover,
|
|
@@ -175,6 +180,7 @@ export const DIRECTIVES = [
|
|
|
175
180
|
d.SwirlIconLightMode,
|
|
176
181
|
d.SwirlIconLike,
|
|
177
182
|
d.SwirlIconLink,
|
|
183
|
+
d.SwirlIconListAltCheck,
|
|
178
184
|
d.SwirlIconLive,
|
|
179
185
|
d.SwirlIconLoad,
|
|
180
186
|
d.SwirlIconLocationOn,
|
|
@@ -196,6 +202,7 @@ export const DIRECTIVES = [
|
|
|
196
202
|
d.SwirlIconMessage,
|
|
197
203
|
d.SwirlIconMic,
|
|
198
204
|
d.SwirlIconMicOff,
|
|
205
|
+
d.SwirlIconMobileTheft,
|
|
199
206
|
d.SwirlIconMoreHorizontal,
|
|
200
207
|
d.SwirlIconMoreVertikal,
|
|
201
208
|
d.SwirlIconNews,
|
|
@@ -217,6 +224,7 @@ export const DIRECTIVES = [
|
|
|
217
224
|
d.SwirlIconPerson,
|
|
218
225
|
d.SwirlIconPersonCheck,
|
|
219
226
|
d.SwirlIconPersonOff,
|
|
227
|
+
d.SwirlIconPersonRaisedHand,
|
|
220
228
|
d.SwirlIconPhone,
|
|
221
229
|
d.SwirlIconPhotoCamera,
|
|
222
230
|
d.SwirlIconPictureAsPdf,
|
|
@@ -250,6 +258,7 @@ export const DIRECTIVES = [
|
|
|
250
258
|
d.SwirlIconRoadmap,
|
|
251
259
|
d.SwirlIconRotateLeft,
|
|
252
260
|
d.SwirlIconRotateRight,
|
|
261
|
+
d.SwirlIconSchool,
|
|
253
262
|
d.SwirlIconScreenshare,
|
|
254
263
|
d.SwirlIconScreenshareOff,
|
|
255
264
|
d.SwirlIconSearch,
|
|
@@ -293,9 +302,11 @@ export const DIRECTIVES = [
|
|
|
293
302
|
d.SwirlIconVoice,
|
|
294
303
|
d.SwirlIconVolumeUp,
|
|
295
304
|
d.SwirlIconWarning,
|
|
305
|
+
d.SwirlIconWavingHand,
|
|
296
306
|
d.SwirlIconWebAsset,
|
|
297
307
|
d.SwirlIconWebAssetOff,
|
|
298
308
|
d.SwirlIconWork,
|
|
309
|
+
d.SwirlIconWorkspacePremium,
|
|
299
310
|
d.SwirlImageGrid,
|
|
300
311
|
d.SwirlImageGridItem,
|
|
301
312
|
d.SwirlInlineError,
|