@getflip/swirl-components-angular 0.468.1 → 0.470.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 +22 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +339 -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 +108 -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 +276 -0
- package/projects/component-library/src/lib/stencil-generated/index.ts +12 -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
|
})
|
|
@@ -5495,6 +5679,29 @@ export class SwirlIconPublishedWithChanges {
|
|
|
5495
5679
|
export declare interface SwirlIconPublishedWithChanges extends Components.SwirlIconPublishedWithChanges {}
|
|
5496
5680
|
|
|
5497
5681
|
|
|
5682
|
+
@ProxyCmp({
|
|
5683
|
+
inputs: ['color', 'size']
|
|
5684
|
+
})
|
|
5685
|
+
@Component({
|
|
5686
|
+
selector: 'swirl-icon-qr-code-scanner',
|
|
5687
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5688
|
+
template: '<ng-content></ng-content>',
|
|
5689
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
5690
|
+
inputs: ['color', 'size'],
|
|
5691
|
+
standalone: false
|
|
5692
|
+
})
|
|
5693
|
+
export class SwirlIconQrCodeScanner {
|
|
5694
|
+
protected el: HTMLSwirlIconQrCodeScannerElement;
|
|
5695
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
5696
|
+
c.detach();
|
|
5697
|
+
this.el = r.nativeElement;
|
|
5698
|
+
}
|
|
5699
|
+
}
|
|
5700
|
+
|
|
5701
|
+
|
|
5702
|
+
export declare interface SwirlIconQrCodeScanner extends Components.SwirlIconQrCodeScanner {}
|
|
5703
|
+
|
|
5704
|
+
|
|
5498
5705
|
@ProxyCmp({
|
|
5499
5706
|
inputs: ['color', 'size']
|
|
5500
5707
|
})
|
|
@@ -5886,6 +6093,29 @@ export class SwirlIconRotateRight {
|
|
|
5886
6093
|
export declare interface SwirlIconRotateRight extends Components.SwirlIconRotateRight {}
|
|
5887
6094
|
|
|
5888
6095
|
|
|
6096
|
+
@ProxyCmp({
|
|
6097
|
+
inputs: ['color', 'size']
|
|
6098
|
+
})
|
|
6099
|
+
@Component({
|
|
6100
|
+
selector: 'swirl-icon-school',
|
|
6101
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6102
|
+
template: '<ng-content></ng-content>',
|
|
6103
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
6104
|
+
inputs: ['color', 'size'],
|
|
6105
|
+
standalone: false
|
|
6106
|
+
})
|
|
6107
|
+
export class SwirlIconSchool {
|
|
6108
|
+
protected el: HTMLSwirlIconSchoolElement;
|
|
6109
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
6110
|
+
c.detach();
|
|
6111
|
+
this.el = r.nativeElement;
|
|
6112
|
+
}
|
|
6113
|
+
}
|
|
6114
|
+
|
|
6115
|
+
|
|
6116
|
+
export declare interface SwirlIconSchool extends Components.SwirlIconSchool {}
|
|
6117
|
+
|
|
6118
|
+
|
|
5889
6119
|
@ProxyCmp({
|
|
5890
6120
|
inputs: ['color', 'size']
|
|
5891
6121
|
})
|
|
@@ -6875,6 +7105,29 @@ export class SwirlIconWarning {
|
|
|
6875
7105
|
export declare interface SwirlIconWarning extends Components.SwirlIconWarning {}
|
|
6876
7106
|
|
|
6877
7107
|
|
|
7108
|
+
@ProxyCmp({
|
|
7109
|
+
inputs: ['color', 'size']
|
|
7110
|
+
})
|
|
7111
|
+
@Component({
|
|
7112
|
+
selector: 'swirl-icon-waving-hand',
|
|
7113
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7114
|
+
template: '<ng-content></ng-content>',
|
|
7115
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7116
|
+
inputs: ['color', 'size'],
|
|
7117
|
+
standalone: false
|
|
7118
|
+
})
|
|
7119
|
+
export class SwirlIconWavingHand {
|
|
7120
|
+
protected el: HTMLSwirlIconWavingHandElement;
|
|
7121
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7122
|
+
c.detach();
|
|
7123
|
+
this.el = r.nativeElement;
|
|
7124
|
+
}
|
|
7125
|
+
}
|
|
7126
|
+
|
|
7127
|
+
|
|
7128
|
+
export declare interface SwirlIconWavingHand extends Components.SwirlIconWavingHand {}
|
|
7129
|
+
|
|
7130
|
+
|
|
6878
7131
|
@ProxyCmp({
|
|
6879
7132
|
inputs: ['color', 'size']
|
|
6880
7133
|
})
|
|
@@ -6944,6 +7197,29 @@ export class SwirlIconWork {
|
|
|
6944
7197
|
export declare interface SwirlIconWork extends Components.SwirlIconWork {}
|
|
6945
7198
|
|
|
6946
7199
|
|
|
7200
|
+
@ProxyCmp({
|
|
7201
|
+
inputs: ['color', 'size']
|
|
7202
|
+
})
|
|
7203
|
+
@Component({
|
|
7204
|
+
selector: 'swirl-icon-workspace-premium',
|
|
7205
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7206
|
+
template: '<ng-content></ng-content>',
|
|
7207
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7208
|
+
inputs: ['color', 'size'],
|
|
7209
|
+
standalone: false
|
|
7210
|
+
})
|
|
7211
|
+
export class SwirlIconWorkspacePremium {
|
|
7212
|
+
protected el: HTMLSwirlIconWorkspacePremiumElement;
|
|
7213
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7214
|
+
c.detach();
|
|
7215
|
+
this.el = r.nativeElement;
|
|
7216
|
+
}
|
|
7217
|
+
}
|
|
7218
|
+
|
|
7219
|
+
|
|
7220
|
+
export declare interface SwirlIconWorkspacePremium extends Components.SwirlIconWorkspacePremium {}
|
|
7221
|
+
|
|
7222
|
+
|
|
6947
7223
|
@ProxyCmp({
|
|
6948
7224
|
inputs: ['aspectRatio', 'borderRadius', 'label']
|
|
6949
7225
|
})
|
|
@@ -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,
|
|
@@ -233,6 +241,7 @@ export const DIRECTIVES = [
|
|
|
233
241
|
d.SwirlIconPublic,
|
|
234
242
|
d.SwirlIconPublicOff,
|
|
235
243
|
d.SwirlIconPublishedWithChanges,
|
|
244
|
+
d.SwirlIconQrCodeScanner,
|
|
236
245
|
d.SwirlIconRatioFourToThree,
|
|
237
246
|
d.SwirlIconRatioFreeform,
|
|
238
247
|
d.SwirlIconRatioSixteenToNine,
|
|
@@ -250,6 +259,7 @@ export const DIRECTIVES = [
|
|
|
250
259
|
d.SwirlIconRoadmap,
|
|
251
260
|
d.SwirlIconRotateLeft,
|
|
252
261
|
d.SwirlIconRotateRight,
|
|
262
|
+
d.SwirlIconSchool,
|
|
253
263
|
d.SwirlIconScreenshare,
|
|
254
264
|
d.SwirlIconScreenshareOff,
|
|
255
265
|
d.SwirlIconSearch,
|
|
@@ -293,9 +303,11 @@ export const DIRECTIVES = [
|
|
|
293
303
|
d.SwirlIconVoice,
|
|
294
304
|
d.SwirlIconVolumeUp,
|
|
295
305
|
d.SwirlIconWarning,
|
|
306
|
+
d.SwirlIconWavingHand,
|
|
296
307
|
d.SwirlIconWebAsset,
|
|
297
308
|
d.SwirlIconWebAssetOff,
|
|
298
309
|
d.SwirlIconWork,
|
|
310
|
+
d.SwirlIconWorkspacePremium,
|
|
299
311
|
d.SwirlImageGrid,
|
|
300
312
|
d.SwirlImageGridItem,
|
|
301
313
|
d.SwirlInlineError,
|