@getflip/swirl-components-angular 0.383.0 → 0.385.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 +30 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +1998 -346
- 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 +531 -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 +1525 -168
- package/projects/component-library/src/lib/stencil-generated/index.ts +59 -0
|
@@ -7678,6 +7678,29 @@ export class SwirlSymbol {
|
|
|
7678
7678
|
export declare interface SwirlSymbol extends Components.SwirlSymbol {}
|
|
7679
7679
|
|
|
7680
7680
|
|
|
7681
|
+
@ProxyCmp({
|
|
7682
|
+
inputs: ['size']
|
|
7683
|
+
})
|
|
7684
|
+
@Component({
|
|
7685
|
+
selector: 'swirl-symbol-ac-unit',
|
|
7686
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7687
|
+
template: '<ng-content></ng-content>',
|
|
7688
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7689
|
+
inputs: ['size'],
|
|
7690
|
+
standalone: false
|
|
7691
|
+
})
|
|
7692
|
+
export class SwirlSymbolAcUnit {
|
|
7693
|
+
protected el: HTMLSwirlSymbolAcUnitElement;
|
|
7694
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7695
|
+
c.detach();
|
|
7696
|
+
this.el = r.nativeElement;
|
|
7697
|
+
}
|
|
7698
|
+
}
|
|
7699
|
+
|
|
7700
|
+
|
|
7701
|
+
export declare interface SwirlSymbolAcUnit extends Components.SwirlSymbolAcUnit {}
|
|
7702
|
+
|
|
7703
|
+
|
|
7681
7704
|
@ProxyCmp({
|
|
7682
7705
|
inputs: ['size']
|
|
7683
7706
|
})
|
|
@@ -7770,6 +7793,29 @@ export class SwirlSymbolAnnouncement {
|
|
|
7770
7793
|
export declare interface SwirlSymbolAnnouncement extends Components.SwirlSymbolAnnouncement {}
|
|
7771
7794
|
|
|
7772
7795
|
|
|
7796
|
+
@ProxyCmp({
|
|
7797
|
+
inputs: ['size']
|
|
7798
|
+
})
|
|
7799
|
+
@Component({
|
|
7800
|
+
selector: 'swirl-symbol-autorenew',
|
|
7801
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7802
|
+
template: '<ng-content></ng-content>',
|
|
7803
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7804
|
+
inputs: ['size'],
|
|
7805
|
+
standalone: false
|
|
7806
|
+
})
|
|
7807
|
+
export class SwirlSymbolAutorenew {
|
|
7808
|
+
protected el: HTMLSwirlSymbolAutorenewElement;
|
|
7809
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7810
|
+
c.detach();
|
|
7811
|
+
this.el = r.nativeElement;
|
|
7812
|
+
}
|
|
7813
|
+
}
|
|
7814
|
+
|
|
7815
|
+
|
|
7816
|
+
export declare interface SwirlSymbolAutorenew extends Components.SwirlSymbolAutorenew {}
|
|
7817
|
+
|
|
7818
|
+
|
|
7773
7819
|
@ProxyCmp({
|
|
7774
7820
|
inputs: ['size']
|
|
7775
7821
|
})
|
|
@@ -7793,6 +7839,98 @@ export class SwirlSymbolBackup {
|
|
|
7793
7839
|
export declare interface SwirlSymbolBackup extends Components.SwirlSymbolBackup {}
|
|
7794
7840
|
|
|
7795
7841
|
|
|
7842
|
+
@ProxyCmp({
|
|
7843
|
+
inputs: ['size']
|
|
7844
|
+
})
|
|
7845
|
+
@Component({
|
|
7846
|
+
selector: 'swirl-symbol-badge',
|
|
7847
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7848
|
+
template: '<ng-content></ng-content>',
|
|
7849
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7850
|
+
inputs: ['size'],
|
|
7851
|
+
standalone: false
|
|
7852
|
+
})
|
|
7853
|
+
export class SwirlSymbolBadge {
|
|
7854
|
+
protected el: HTMLSwirlSymbolBadgeElement;
|
|
7855
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7856
|
+
c.detach();
|
|
7857
|
+
this.el = r.nativeElement;
|
|
7858
|
+
}
|
|
7859
|
+
}
|
|
7860
|
+
|
|
7861
|
+
|
|
7862
|
+
export declare interface SwirlSymbolBadge extends Components.SwirlSymbolBadge {}
|
|
7863
|
+
|
|
7864
|
+
|
|
7865
|
+
@ProxyCmp({
|
|
7866
|
+
inputs: ['size']
|
|
7867
|
+
})
|
|
7868
|
+
@Component({
|
|
7869
|
+
selector: 'swirl-symbol-barcode-reader',
|
|
7870
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7871
|
+
template: '<ng-content></ng-content>',
|
|
7872
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7873
|
+
inputs: ['size'],
|
|
7874
|
+
standalone: false
|
|
7875
|
+
})
|
|
7876
|
+
export class SwirlSymbolBarcodeReader {
|
|
7877
|
+
protected el: HTMLSwirlSymbolBarcodeReaderElement;
|
|
7878
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7879
|
+
c.detach();
|
|
7880
|
+
this.el = r.nativeElement;
|
|
7881
|
+
}
|
|
7882
|
+
}
|
|
7883
|
+
|
|
7884
|
+
|
|
7885
|
+
export declare interface SwirlSymbolBarcodeReader extends Components.SwirlSymbolBarcodeReader {}
|
|
7886
|
+
|
|
7887
|
+
|
|
7888
|
+
@ProxyCmp({
|
|
7889
|
+
inputs: ['size']
|
|
7890
|
+
})
|
|
7891
|
+
@Component({
|
|
7892
|
+
selector: 'swirl-symbol-barcode-scanner',
|
|
7893
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7894
|
+
template: '<ng-content></ng-content>',
|
|
7895
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7896
|
+
inputs: ['size'],
|
|
7897
|
+
standalone: false
|
|
7898
|
+
})
|
|
7899
|
+
export class SwirlSymbolBarcodeScanner {
|
|
7900
|
+
protected el: HTMLSwirlSymbolBarcodeScannerElement;
|
|
7901
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7902
|
+
c.detach();
|
|
7903
|
+
this.el = r.nativeElement;
|
|
7904
|
+
}
|
|
7905
|
+
}
|
|
7906
|
+
|
|
7907
|
+
|
|
7908
|
+
export declare interface SwirlSymbolBarcodeScanner extends Components.SwirlSymbolBarcodeScanner {}
|
|
7909
|
+
|
|
7910
|
+
|
|
7911
|
+
@ProxyCmp({
|
|
7912
|
+
inputs: ['size']
|
|
7913
|
+
})
|
|
7914
|
+
@Component({
|
|
7915
|
+
selector: 'swirl-symbol-battery-horiz',
|
|
7916
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7917
|
+
template: '<ng-content></ng-content>',
|
|
7918
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7919
|
+
inputs: ['size'],
|
|
7920
|
+
standalone: false
|
|
7921
|
+
})
|
|
7922
|
+
export class SwirlSymbolBatteryHoriz {
|
|
7923
|
+
protected el: HTMLSwirlSymbolBatteryHorizElement;
|
|
7924
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7925
|
+
c.detach();
|
|
7926
|
+
this.el = r.nativeElement;
|
|
7927
|
+
}
|
|
7928
|
+
}
|
|
7929
|
+
|
|
7930
|
+
|
|
7931
|
+
export declare interface SwirlSymbolBatteryHoriz extends Components.SwirlSymbolBatteryHoriz {}
|
|
7932
|
+
|
|
7933
|
+
|
|
7796
7934
|
@ProxyCmp({
|
|
7797
7935
|
inputs: ['size']
|
|
7798
7936
|
})
|
|
@@ -7816,6 +7954,29 @@ export class SwirlSymbolBeachAccess {
|
|
|
7816
7954
|
export declare interface SwirlSymbolBeachAccess extends Components.SwirlSymbolBeachAccess {}
|
|
7817
7955
|
|
|
7818
7956
|
|
|
7957
|
+
@ProxyCmp({
|
|
7958
|
+
inputs: ['size']
|
|
7959
|
+
})
|
|
7960
|
+
@Component({
|
|
7961
|
+
selector: 'swirl-symbol-bolt',
|
|
7962
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7963
|
+
template: '<ng-content></ng-content>',
|
|
7964
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7965
|
+
inputs: ['size'],
|
|
7966
|
+
standalone: false
|
|
7967
|
+
})
|
|
7968
|
+
export class SwirlSymbolBolt {
|
|
7969
|
+
protected el: HTMLSwirlSymbolBoltElement;
|
|
7970
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7971
|
+
c.detach();
|
|
7972
|
+
this.el = r.nativeElement;
|
|
7973
|
+
}
|
|
7974
|
+
}
|
|
7975
|
+
|
|
7976
|
+
|
|
7977
|
+
export declare interface SwirlSymbolBolt extends Components.SwirlSymbolBolt {}
|
|
7978
|
+
|
|
7979
|
+
|
|
7819
7980
|
@ProxyCmp({
|
|
7820
7981
|
inputs: ['size']
|
|
7821
7982
|
})
|
|
@@ -7839,6 +8000,75 @@ export class SwirlSymbolBookmark {
|
|
|
7839
8000
|
export declare interface SwirlSymbolBookmark extends Components.SwirlSymbolBookmark {}
|
|
7840
8001
|
|
|
7841
8002
|
|
|
8003
|
+
@ProxyCmp({
|
|
8004
|
+
inputs: ['size']
|
|
8005
|
+
})
|
|
8006
|
+
@Component({
|
|
8007
|
+
selector: 'swirl-symbol-calendar',
|
|
8008
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8009
|
+
template: '<ng-content></ng-content>',
|
|
8010
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8011
|
+
inputs: ['size'],
|
|
8012
|
+
standalone: false
|
|
8013
|
+
})
|
|
8014
|
+
export class SwirlSymbolCalendar {
|
|
8015
|
+
protected el: HTMLSwirlSymbolCalendarElement;
|
|
8016
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8017
|
+
c.detach();
|
|
8018
|
+
this.el = r.nativeElement;
|
|
8019
|
+
}
|
|
8020
|
+
}
|
|
8021
|
+
|
|
8022
|
+
|
|
8023
|
+
export declare interface SwirlSymbolCalendar extends Components.SwirlSymbolCalendar {}
|
|
8024
|
+
|
|
8025
|
+
|
|
8026
|
+
@ProxyCmp({
|
|
8027
|
+
inputs: ['size']
|
|
8028
|
+
})
|
|
8029
|
+
@Component({
|
|
8030
|
+
selector: 'swirl-symbol-campaign',
|
|
8031
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8032
|
+
template: '<ng-content></ng-content>',
|
|
8033
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8034
|
+
inputs: ['size'],
|
|
8035
|
+
standalone: false
|
|
8036
|
+
})
|
|
8037
|
+
export class SwirlSymbolCampaign {
|
|
8038
|
+
protected el: HTMLSwirlSymbolCampaignElement;
|
|
8039
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8040
|
+
c.detach();
|
|
8041
|
+
this.el = r.nativeElement;
|
|
8042
|
+
}
|
|
8043
|
+
}
|
|
8044
|
+
|
|
8045
|
+
|
|
8046
|
+
export declare interface SwirlSymbolCampaign extends Components.SwirlSymbolCampaign {}
|
|
8047
|
+
|
|
8048
|
+
|
|
8049
|
+
@ProxyCmp({
|
|
8050
|
+
inputs: ['size']
|
|
8051
|
+
})
|
|
8052
|
+
@Component({
|
|
8053
|
+
selector: 'swirl-symbol-cards-star',
|
|
8054
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8055
|
+
template: '<ng-content></ng-content>',
|
|
8056
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8057
|
+
inputs: ['size'],
|
|
8058
|
+
standalone: false
|
|
8059
|
+
})
|
|
8060
|
+
export class SwirlSymbolCardsStar {
|
|
8061
|
+
protected el: HTMLSwirlSymbolCardsStarElement;
|
|
8062
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8063
|
+
c.detach();
|
|
8064
|
+
this.el = r.nativeElement;
|
|
8065
|
+
}
|
|
8066
|
+
}
|
|
8067
|
+
|
|
8068
|
+
|
|
8069
|
+
export declare interface SwirlSymbolCardsStar extends Components.SwirlSymbolCardsStar {}
|
|
8070
|
+
|
|
8071
|
+
|
|
7842
8072
|
@ProxyCmp({
|
|
7843
8073
|
inputs: ['size']
|
|
7844
8074
|
})
|
|
@@ -7862,6 +8092,52 @@ export class SwirlSymbolCloud {
|
|
|
7862
8092
|
export declare interface SwirlSymbolCloud extends Components.SwirlSymbolCloud {}
|
|
7863
8093
|
|
|
7864
8094
|
|
|
8095
|
+
@ProxyCmp({
|
|
8096
|
+
inputs: ['size']
|
|
8097
|
+
})
|
|
8098
|
+
@Component({
|
|
8099
|
+
selector: 'swirl-symbol-construction',
|
|
8100
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8101
|
+
template: '<ng-content></ng-content>',
|
|
8102
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8103
|
+
inputs: ['size'],
|
|
8104
|
+
standalone: false
|
|
8105
|
+
})
|
|
8106
|
+
export class SwirlSymbolConstruction {
|
|
8107
|
+
protected el: HTMLSwirlSymbolConstructionElement;
|
|
8108
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8109
|
+
c.detach();
|
|
8110
|
+
this.el = r.nativeElement;
|
|
8111
|
+
}
|
|
8112
|
+
}
|
|
8113
|
+
|
|
8114
|
+
|
|
8115
|
+
export declare interface SwirlSymbolConstruction extends Components.SwirlSymbolConstruction {}
|
|
8116
|
+
|
|
8117
|
+
|
|
8118
|
+
@ProxyCmp({
|
|
8119
|
+
inputs: ['size']
|
|
8120
|
+
})
|
|
8121
|
+
@Component({
|
|
8122
|
+
selector: 'swirl-symbol-contacts',
|
|
8123
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8124
|
+
template: '<ng-content></ng-content>',
|
|
8125
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8126
|
+
inputs: ['size'],
|
|
8127
|
+
standalone: false
|
|
8128
|
+
})
|
|
8129
|
+
export class SwirlSymbolContacts {
|
|
8130
|
+
protected el: HTMLSwirlSymbolContactsElement;
|
|
8131
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8132
|
+
c.detach();
|
|
8133
|
+
this.el = r.nativeElement;
|
|
8134
|
+
}
|
|
8135
|
+
}
|
|
8136
|
+
|
|
8137
|
+
|
|
8138
|
+
export declare interface SwirlSymbolContacts extends Components.SwirlSymbolContacts {}
|
|
8139
|
+
|
|
8140
|
+
|
|
7865
8141
|
@ProxyCmp({
|
|
7866
8142
|
inputs: ['size']
|
|
7867
8143
|
})
|
|
@@ -7885,6 +8161,29 @@ export class SwirlSymbolCoronavirus {
|
|
|
7885
8161
|
export declare interface SwirlSymbolCoronavirus extends Components.SwirlSymbolCoronavirus {}
|
|
7886
8162
|
|
|
7887
8163
|
|
|
8164
|
+
@ProxyCmp({
|
|
8165
|
+
inputs: ['size']
|
|
8166
|
+
})
|
|
8167
|
+
@Component({
|
|
8168
|
+
selector: 'swirl-symbol-design-services',
|
|
8169
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8170
|
+
template: '<ng-content></ng-content>',
|
|
8171
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8172
|
+
inputs: ['size'],
|
|
8173
|
+
standalone: false
|
|
8174
|
+
})
|
|
8175
|
+
export class SwirlSymbolDesignServices {
|
|
8176
|
+
protected el: HTMLSwirlSymbolDesignServicesElement;
|
|
8177
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8178
|
+
c.detach();
|
|
8179
|
+
this.el = r.nativeElement;
|
|
8180
|
+
}
|
|
8181
|
+
}
|
|
8182
|
+
|
|
8183
|
+
|
|
8184
|
+
export declare interface SwirlSymbolDesignServices extends Components.SwirlSymbolDesignServices {}
|
|
8185
|
+
|
|
8186
|
+
|
|
7888
8187
|
@ProxyCmp({
|
|
7889
8188
|
inputs: ['size']
|
|
7890
8189
|
})
|
|
@@ -7935,15 +8234,1050 @@ export declare interface SwirlSymbolDirectionsCarFilled extends Components.Swirl
|
|
|
7935
8234
|
inputs: ['size']
|
|
7936
8235
|
})
|
|
7937
8236
|
@Component({
|
|
7938
|
-
selector: 'swirl-symbol-
|
|
8237
|
+
selector: 'swirl-symbol-diversity',
|
|
8238
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8239
|
+
template: '<ng-content></ng-content>',
|
|
8240
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8241
|
+
inputs: ['size'],
|
|
8242
|
+
standalone: false
|
|
8243
|
+
})
|
|
8244
|
+
export class SwirlSymbolDiversity {
|
|
8245
|
+
protected el: HTMLSwirlSymbolDiversityElement;
|
|
8246
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8247
|
+
c.detach();
|
|
8248
|
+
this.el = r.nativeElement;
|
|
8249
|
+
}
|
|
8250
|
+
}
|
|
8251
|
+
|
|
8252
|
+
|
|
8253
|
+
export declare interface SwirlSymbolDiversity extends Components.SwirlSymbolDiversity {}
|
|
8254
|
+
|
|
8255
|
+
|
|
8256
|
+
@ProxyCmp({
|
|
8257
|
+
inputs: ['size']
|
|
8258
|
+
})
|
|
8259
|
+
@Component({
|
|
8260
|
+
selector: 'swirl-symbol-draw',
|
|
8261
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8262
|
+
template: '<ng-content></ng-content>',
|
|
8263
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8264
|
+
inputs: ['size'],
|
|
8265
|
+
standalone: false
|
|
8266
|
+
})
|
|
8267
|
+
export class SwirlSymbolDraw {
|
|
8268
|
+
protected el: HTMLSwirlSymbolDrawElement;
|
|
8269
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8270
|
+
c.detach();
|
|
8271
|
+
this.el = r.nativeElement;
|
|
8272
|
+
}
|
|
8273
|
+
}
|
|
8274
|
+
|
|
8275
|
+
|
|
8276
|
+
export declare interface SwirlSymbolDraw extends Components.SwirlSymbolDraw {}
|
|
8277
|
+
|
|
8278
|
+
|
|
8279
|
+
@ProxyCmp({
|
|
8280
|
+
inputs: ['size']
|
|
8281
|
+
})
|
|
8282
|
+
@Component({
|
|
8283
|
+
selector: 'swirl-symbol-edit-calendar',
|
|
8284
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8285
|
+
template: '<ng-content></ng-content>',
|
|
8286
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8287
|
+
inputs: ['size'],
|
|
8288
|
+
standalone: false
|
|
8289
|
+
})
|
|
8290
|
+
export class SwirlSymbolEditCalendar {
|
|
8291
|
+
protected el: HTMLSwirlSymbolEditCalendarElement;
|
|
8292
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8293
|
+
c.detach();
|
|
8294
|
+
this.el = r.nativeElement;
|
|
8295
|
+
}
|
|
8296
|
+
}
|
|
8297
|
+
|
|
8298
|
+
|
|
8299
|
+
export declare interface SwirlSymbolEditCalendar extends Components.SwirlSymbolEditCalendar {}
|
|
8300
|
+
|
|
8301
|
+
|
|
8302
|
+
@ProxyCmp({
|
|
8303
|
+
inputs: ['size']
|
|
8304
|
+
})
|
|
8305
|
+
@Component({
|
|
8306
|
+
selector: 'swirl-symbol-email',
|
|
8307
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8308
|
+
template: '<ng-content></ng-content>',
|
|
8309
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8310
|
+
inputs: ['size'],
|
|
8311
|
+
standalone: false
|
|
8312
|
+
})
|
|
8313
|
+
export class SwirlSymbolEmail {
|
|
8314
|
+
protected el: HTMLSwirlSymbolEmailElement;
|
|
8315
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8316
|
+
c.detach();
|
|
8317
|
+
this.el = r.nativeElement;
|
|
8318
|
+
}
|
|
8319
|
+
}
|
|
8320
|
+
|
|
8321
|
+
|
|
8322
|
+
export declare interface SwirlSymbolEmail extends Components.SwirlSymbolEmail {}
|
|
8323
|
+
|
|
8324
|
+
|
|
8325
|
+
@ProxyCmp({
|
|
8326
|
+
inputs: ['size']
|
|
8327
|
+
})
|
|
8328
|
+
@Component({
|
|
8329
|
+
selector: 'swirl-symbol-emergency',
|
|
8330
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8331
|
+
template: '<ng-content></ng-content>',
|
|
8332
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8333
|
+
inputs: ['size'],
|
|
8334
|
+
standalone: false
|
|
8335
|
+
})
|
|
8336
|
+
export class SwirlSymbolEmergency {
|
|
8337
|
+
protected el: HTMLSwirlSymbolEmergencyElement;
|
|
8338
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8339
|
+
c.detach();
|
|
8340
|
+
this.el = r.nativeElement;
|
|
8341
|
+
}
|
|
8342
|
+
}
|
|
8343
|
+
|
|
8344
|
+
|
|
8345
|
+
export declare interface SwirlSymbolEmergency extends Components.SwirlSymbolEmergency {}
|
|
8346
|
+
|
|
8347
|
+
|
|
8348
|
+
@ProxyCmp({
|
|
8349
|
+
inputs: ['size']
|
|
8350
|
+
})
|
|
8351
|
+
@Component({
|
|
8352
|
+
selector: 'swirl-symbol-emoji-food-beverage',
|
|
8353
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8354
|
+
template: '<ng-content></ng-content>',
|
|
8355
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8356
|
+
inputs: ['size'],
|
|
8357
|
+
standalone: false
|
|
8358
|
+
})
|
|
8359
|
+
export class SwirlSymbolEmojiFoodBeverage {
|
|
8360
|
+
protected el: HTMLSwirlSymbolEmojiFoodBeverageElement;
|
|
8361
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8362
|
+
c.detach();
|
|
8363
|
+
this.el = r.nativeElement;
|
|
8364
|
+
}
|
|
8365
|
+
}
|
|
8366
|
+
|
|
8367
|
+
|
|
8368
|
+
export declare interface SwirlSymbolEmojiFoodBeverage extends Components.SwirlSymbolEmojiFoodBeverage {}
|
|
8369
|
+
|
|
8370
|
+
|
|
8371
|
+
@ProxyCmp({
|
|
8372
|
+
inputs: ['size']
|
|
8373
|
+
})
|
|
8374
|
+
@Component({
|
|
8375
|
+
selector: 'swirl-symbol-engineering',
|
|
8376
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8377
|
+
template: '<ng-content></ng-content>',
|
|
8378
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8379
|
+
inputs: ['size'],
|
|
8380
|
+
standalone: false
|
|
8381
|
+
})
|
|
8382
|
+
export class SwirlSymbolEngineering {
|
|
8383
|
+
protected el: HTMLSwirlSymbolEngineeringElement;
|
|
8384
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8385
|
+
c.detach();
|
|
8386
|
+
this.el = r.nativeElement;
|
|
8387
|
+
}
|
|
8388
|
+
}
|
|
8389
|
+
|
|
8390
|
+
|
|
8391
|
+
export declare interface SwirlSymbolEngineering extends Components.SwirlSymbolEngineering {}
|
|
8392
|
+
|
|
8393
|
+
|
|
8394
|
+
@ProxyCmp({
|
|
8395
|
+
inputs: ['size']
|
|
8396
|
+
})
|
|
8397
|
+
@Component({
|
|
8398
|
+
selector: 'swirl-symbol-event-menu',
|
|
8399
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8400
|
+
template: '<ng-content></ng-content>',
|
|
8401
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8402
|
+
inputs: ['size'],
|
|
8403
|
+
standalone: false
|
|
8404
|
+
})
|
|
8405
|
+
export class SwirlSymbolEventMenu {
|
|
8406
|
+
protected el: HTMLSwirlSymbolEventMenuElement;
|
|
8407
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8408
|
+
c.detach();
|
|
8409
|
+
this.el = r.nativeElement;
|
|
8410
|
+
}
|
|
8411
|
+
}
|
|
8412
|
+
|
|
8413
|
+
|
|
8414
|
+
export declare interface SwirlSymbolEventMenu extends Components.SwirlSymbolEventMenu {}
|
|
8415
|
+
|
|
8416
|
+
|
|
8417
|
+
@ProxyCmp({
|
|
8418
|
+
inputs: ['size']
|
|
8419
|
+
})
|
|
8420
|
+
@Component({
|
|
8421
|
+
selector: 'swirl-symbol-explore',
|
|
8422
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8423
|
+
template: '<ng-content></ng-content>',
|
|
8424
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8425
|
+
inputs: ['size'],
|
|
8426
|
+
standalone: false
|
|
8427
|
+
})
|
|
8428
|
+
export class SwirlSymbolExplore {
|
|
8429
|
+
protected el: HTMLSwirlSymbolExploreElement;
|
|
8430
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8431
|
+
c.detach();
|
|
8432
|
+
this.el = r.nativeElement;
|
|
8433
|
+
}
|
|
8434
|
+
}
|
|
8435
|
+
|
|
8436
|
+
|
|
8437
|
+
export declare interface SwirlSymbolExplore extends Components.SwirlSymbolExplore {}
|
|
8438
|
+
|
|
8439
|
+
|
|
8440
|
+
@ProxyCmp({
|
|
8441
|
+
inputs: ['size']
|
|
8442
|
+
})
|
|
8443
|
+
@Component({
|
|
8444
|
+
selector: 'swirl-symbol-extension',
|
|
8445
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8446
|
+
template: '<ng-content></ng-content>',
|
|
8447
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8448
|
+
inputs: ['size'],
|
|
8449
|
+
standalone: false
|
|
8450
|
+
})
|
|
8451
|
+
export class SwirlSymbolExtension {
|
|
8452
|
+
protected el: HTMLSwirlSymbolExtensionElement;
|
|
8453
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8454
|
+
c.detach();
|
|
8455
|
+
this.el = r.nativeElement;
|
|
8456
|
+
}
|
|
8457
|
+
}
|
|
8458
|
+
|
|
8459
|
+
|
|
8460
|
+
export declare interface SwirlSymbolExtension extends Components.SwirlSymbolExtension {}
|
|
8461
|
+
|
|
8462
|
+
|
|
8463
|
+
@ProxyCmp({
|
|
8464
|
+
inputs: ['size']
|
|
8465
|
+
})
|
|
8466
|
+
@Component({
|
|
8467
|
+
selector: 'swirl-symbol-facebook',
|
|
8468
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8469
|
+
template: '<ng-content></ng-content>',
|
|
8470
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8471
|
+
inputs: ['size'],
|
|
8472
|
+
standalone: false
|
|
8473
|
+
})
|
|
8474
|
+
export class SwirlSymbolFacebook {
|
|
8475
|
+
protected el: HTMLSwirlSymbolFacebookElement;
|
|
8476
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8477
|
+
c.detach();
|
|
8478
|
+
this.el = r.nativeElement;
|
|
8479
|
+
}
|
|
8480
|
+
}
|
|
8481
|
+
|
|
8482
|
+
|
|
8483
|
+
export declare interface SwirlSymbolFacebook extends Components.SwirlSymbolFacebook {}
|
|
8484
|
+
|
|
8485
|
+
|
|
8486
|
+
@ProxyCmp({
|
|
8487
|
+
inputs: ['size']
|
|
8488
|
+
})
|
|
8489
|
+
@Component({
|
|
8490
|
+
selector: 'swirl-symbol-favorite',
|
|
8491
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8492
|
+
template: '<ng-content></ng-content>',
|
|
8493
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8494
|
+
inputs: ['size'],
|
|
8495
|
+
standalone: false
|
|
8496
|
+
})
|
|
8497
|
+
export class SwirlSymbolFavorite {
|
|
8498
|
+
protected el: HTMLSwirlSymbolFavoriteElement;
|
|
8499
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8500
|
+
c.detach();
|
|
8501
|
+
this.el = r.nativeElement;
|
|
8502
|
+
}
|
|
8503
|
+
}
|
|
8504
|
+
|
|
8505
|
+
|
|
8506
|
+
export declare interface SwirlSymbolFavorite extends Components.SwirlSymbolFavorite {}
|
|
8507
|
+
|
|
8508
|
+
|
|
8509
|
+
@ProxyCmp({
|
|
8510
|
+
inputs: ['size']
|
|
8511
|
+
})
|
|
8512
|
+
@Component({
|
|
8513
|
+
selector: 'swirl-symbol-fitness-center',
|
|
8514
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8515
|
+
template: '<ng-content></ng-content>',
|
|
8516
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8517
|
+
inputs: ['size'],
|
|
8518
|
+
standalone: false
|
|
8519
|
+
})
|
|
8520
|
+
export class SwirlSymbolFitnessCenter {
|
|
8521
|
+
protected el: HTMLSwirlSymbolFitnessCenterElement;
|
|
8522
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8523
|
+
c.detach();
|
|
8524
|
+
this.el = r.nativeElement;
|
|
8525
|
+
}
|
|
8526
|
+
}
|
|
8527
|
+
|
|
8528
|
+
|
|
8529
|
+
export declare interface SwirlSymbolFitnessCenter extends Components.SwirlSymbolFitnessCenter {}
|
|
8530
|
+
|
|
8531
|
+
|
|
8532
|
+
@ProxyCmp({
|
|
8533
|
+
inputs: ['size']
|
|
8534
|
+
})
|
|
8535
|
+
@Component({
|
|
8536
|
+
selector: 'swirl-symbol-flag',
|
|
8537
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8538
|
+
template: '<ng-content></ng-content>',
|
|
8539
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8540
|
+
inputs: ['size'],
|
|
8541
|
+
standalone: false
|
|
8542
|
+
})
|
|
8543
|
+
export class SwirlSymbolFlag {
|
|
8544
|
+
protected el: HTMLSwirlSymbolFlagElement;
|
|
8545
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8546
|
+
c.detach();
|
|
8547
|
+
this.el = r.nativeElement;
|
|
8548
|
+
}
|
|
8549
|
+
}
|
|
8550
|
+
|
|
8551
|
+
|
|
8552
|
+
export declare interface SwirlSymbolFlag extends Components.SwirlSymbolFlag {}
|
|
8553
|
+
|
|
8554
|
+
|
|
8555
|
+
@ProxyCmp({
|
|
8556
|
+
inputs: ['size']
|
|
8557
|
+
})
|
|
8558
|
+
@Component({
|
|
8559
|
+
selector: 'swirl-symbol-flight',
|
|
8560
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8561
|
+
template: '<ng-content></ng-content>',
|
|
8562
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8563
|
+
inputs: ['size'],
|
|
8564
|
+
standalone: false
|
|
8565
|
+
})
|
|
8566
|
+
export class SwirlSymbolFlight {
|
|
8567
|
+
protected el: HTMLSwirlSymbolFlightElement;
|
|
8568
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8569
|
+
c.detach();
|
|
8570
|
+
this.el = r.nativeElement;
|
|
8571
|
+
}
|
|
8572
|
+
}
|
|
8573
|
+
|
|
8574
|
+
|
|
8575
|
+
export declare interface SwirlSymbolFlight extends Components.SwirlSymbolFlight {}
|
|
8576
|
+
|
|
8577
|
+
|
|
8578
|
+
@ProxyCmp({
|
|
8579
|
+
inputs: ['size']
|
|
8580
|
+
})
|
|
8581
|
+
@Component({
|
|
8582
|
+
selector: 'swirl-symbol-folder',
|
|
8583
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8584
|
+
template: '<ng-content></ng-content>',
|
|
8585
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8586
|
+
inputs: ['size'],
|
|
8587
|
+
standalone: false
|
|
8588
|
+
})
|
|
8589
|
+
export class SwirlSymbolFolder {
|
|
8590
|
+
protected el: HTMLSwirlSymbolFolderElement;
|
|
8591
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8592
|
+
c.detach();
|
|
8593
|
+
this.el = r.nativeElement;
|
|
8594
|
+
}
|
|
8595
|
+
}
|
|
8596
|
+
|
|
8597
|
+
|
|
8598
|
+
export declare interface SwirlSymbolFolder extends Components.SwirlSymbolFolder {}
|
|
8599
|
+
|
|
8600
|
+
|
|
8601
|
+
@ProxyCmp({
|
|
8602
|
+
inputs: ['size']
|
|
8603
|
+
})
|
|
8604
|
+
@Component({
|
|
8605
|
+
selector: 'swirl-symbol-globe',
|
|
8606
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8607
|
+
template: '<ng-content></ng-content>',
|
|
8608
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8609
|
+
inputs: ['size'],
|
|
8610
|
+
standalone: false
|
|
8611
|
+
})
|
|
8612
|
+
export class SwirlSymbolGlobe {
|
|
8613
|
+
protected el: HTMLSwirlSymbolGlobeElement;
|
|
8614
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8615
|
+
c.detach();
|
|
8616
|
+
this.el = r.nativeElement;
|
|
8617
|
+
}
|
|
8618
|
+
}
|
|
8619
|
+
|
|
8620
|
+
|
|
8621
|
+
export declare interface SwirlSymbolGlobe extends Components.SwirlSymbolGlobe {}
|
|
8622
|
+
|
|
8623
|
+
|
|
8624
|
+
@ProxyCmp({
|
|
8625
|
+
inputs: ['size']
|
|
8626
|
+
})
|
|
8627
|
+
@Component({
|
|
8628
|
+
selector: 'swirl-symbol-groups',
|
|
8629
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8630
|
+
template: '<ng-content></ng-content>',
|
|
8631
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8632
|
+
inputs: ['size'],
|
|
8633
|
+
standalone: false
|
|
8634
|
+
})
|
|
8635
|
+
export class SwirlSymbolGroups {
|
|
8636
|
+
protected el: HTMLSwirlSymbolGroupsElement;
|
|
8637
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8638
|
+
c.detach();
|
|
8639
|
+
this.el = r.nativeElement;
|
|
8640
|
+
}
|
|
8641
|
+
}
|
|
8642
|
+
|
|
8643
|
+
|
|
8644
|
+
export declare interface SwirlSymbolGroups extends Components.SwirlSymbolGroups {}
|
|
8645
|
+
|
|
8646
|
+
|
|
8647
|
+
@ProxyCmp({
|
|
8648
|
+
inputs: ['size']
|
|
8649
|
+
})
|
|
8650
|
+
@Component({
|
|
8651
|
+
selector: 'swirl-symbol-healing',
|
|
8652
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8653
|
+
template: '<ng-content></ng-content>',
|
|
8654
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8655
|
+
inputs: ['size'],
|
|
8656
|
+
standalone: false
|
|
8657
|
+
})
|
|
8658
|
+
export class SwirlSymbolHealing {
|
|
8659
|
+
protected el: HTMLSwirlSymbolHealingElement;
|
|
8660
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8661
|
+
c.detach();
|
|
8662
|
+
this.el = r.nativeElement;
|
|
8663
|
+
}
|
|
8664
|
+
}
|
|
8665
|
+
|
|
8666
|
+
|
|
8667
|
+
export declare interface SwirlSymbolHealing extends Components.SwirlSymbolHealing {}
|
|
8668
|
+
|
|
8669
|
+
|
|
8670
|
+
@ProxyCmp({
|
|
8671
|
+
inputs: ['size']
|
|
8672
|
+
})
|
|
8673
|
+
@Component({
|
|
8674
|
+
selector: 'swirl-symbol-health-and-safety',
|
|
8675
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8676
|
+
template: '<ng-content></ng-content>',
|
|
8677
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8678
|
+
inputs: ['size'],
|
|
8679
|
+
standalone: false
|
|
8680
|
+
})
|
|
8681
|
+
export class SwirlSymbolHealthAndSafety {
|
|
8682
|
+
protected el: HTMLSwirlSymbolHealthAndSafetyElement;
|
|
8683
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8684
|
+
c.detach();
|
|
8685
|
+
this.el = r.nativeElement;
|
|
8686
|
+
}
|
|
8687
|
+
}
|
|
8688
|
+
|
|
8689
|
+
|
|
8690
|
+
export declare interface SwirlSymbolHealthAndSafety extends Components.SwirlSymbolHealthAndSafety {}
|
|
8691
|
+
|
|
8692
|
+
|
|
8693
|
+
@ProxyCmp({
|
|
8694
|
+
inputs: ['size']
|
|
8695
|
+
})
|
|
8696
|
+
@Component({
|
|
8697
|
+
selector: 'swirl-symbol-help',
|
|
8698
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8699
|
+
template: '<ng-content></ng-content>',
|
|
8700
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8701
|
+
inputs: ['size'],
|
|
8702
|
+
standalone: false
|
|
8703
|
+
})
|
|
8704
|
+
export class SwirlSymbolHelp {
|
|
8705
|
+
protected el: HTMLSwirlSymbolHelpElement;
|
|
8706
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8707
|
+
c.detach();
|
|
8708
|
+
this.el = r.nativeElement;
|
|
8709
|
+
}
|
|
8710
|
+
}
|
|
8711
|
+
|
|
8712
|
+
|
|
8713
|
+
export declare interface SwirlSymbolHelp extends Components.SwirlSymbolHelp {}
|
|
8714
|
+
|
|
8715
|
+
|
|
8716
|
+
@ProxyCmp({
|
|
8717
|
+
inputs: ['size']
|
|
8718
|
+
})
|
|
8719
|
+
@Component({
|
|
8720
|
+
selector: 'swirl-symbol-home-repair-service',
|
|
8721
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8722
|
+
template: '<ng-content></ng-content>',
|
|
8723
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8724
|
+
inputs: ['size'],
|
|
8725
|
+
standalone: false
|
|
8726
|
+
})
|
|
8727
|
+
export class SwirlSymbolHomeRepairService {
|
|
8728
|
+
protected el: HTMLSwirlSymbolHomeRepairServiceElement;
|
|
8729
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8730
|
+
c.detach();
|
|
8731
|
+
this.el = r.nativeElement;
|
|
8732
|
+
}
|
|
8733
|
+
}
|
|
8734
|
+
|
|
8735
|
+
|
|
8736
|
+
export declare interface SwirlSymbolHomeRepairService extends Components.SwirlSymbolHomeRepairService {}
|
|
8737
|
+
|
|
8738
|
+
|
|
8739
|
+
@ProxyCmp({
|
|
8740
|
+
inputs: ['size']
|
|
8741
|
+
})
|
|
8742
|
+
@Component({
|
|
8743
|
+
selector: 'swirl-symbol-home-storage',
|
|
8744
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8745
|
+
template: '<ng-content></ng-content>',
|
|
8746
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8747
|
+
inputs: ['size'],
|
|
8748
|
+
standalone: false
|
|
8749
|
+
})
|
|
8750
|
+
export class SwirlSymbolHomeStorage {
|
|
8751
|
+
protected el: HTMLSwirlSymbolHomeStorageElement;
|
|
8752
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8753
|
+
c.detach();
|
|
8754
|
+
this.el = r.nativeElement;
|
|
8755
|
+
}
|
|
8756
|
+
}
|
|
8757
|
+
|
|
8758
|
+
|
|
8759
|
+
export declare interface SwirlSymbolHomeStorage extends Components.SwirlSymbolHomeStorage {}
|
|
8760
|
+
|
|
8761
|
+
|
|
8762
|
+
@ProxyCmp({
|
|
8763
|
+
inputs: ['size']
|
|
8764
|
+
})
|
|
8765
|
+
@Component({
|
|
8766
|
+
selector: 'swirl-symbol-id-card',
|
|
8767
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8768
|
+
template: '<ng-content></ng-content>',
|
|
8769
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8770
|
+
inputs: ['size'],
|
|
8771
|
+
standalone: false
|
|
8772
|
+
})
|
|
8773
|
+
export class SwirlSymbolIdCard {
|
|
8774
|
+
protected el: HTMLSwirlSymbolIdCardElement;
|
|
8775
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8776
|
+
c.detach();
|
|
8777
|
+
this.el = r.nativeElement;
|
|
8778
|
+
}
|
|
8779
|
+
}
|
|
8780
|
+
|
|
8781
|
+
|
|
8782
|
+
export declare interface SwirlSymbolIdCard extends Components.SwirlSymbolIdCard {}
|
|
8783
|
+
|
|
8784
|
+
|
|
8785
|
+
@ProxyCmp({
|
|
8786
|
+
inputs: ['size']
|
|
8787
|
+
})
|
|
8788
|
+
@Component({
|
|
8789
|
+
selector: 'swirl-symbol-image',
|
|
8790
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8791
|
+
template: '<ng-content></ng-content>',
|
|
8792
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8793
|
+
inputs: ['size'],
|
|
8794
|
+
standalone: false
|
|
8795
|
+
})
|
|
8796
|
+
export class SwirlSymbolImage {
|
|
8797
|
+
protected el: HTMLSwirlSymbolImageElement;
|
|
8798
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8799
|
+
c.detach();
|
|
8800
|
+
this.el = r.nativeElement;
|
|
8801
|
+
}
|
|
8802
|
+
}
|
|
8803
|
+
|
|
8804
|
+
|
|
8805
|
+
export declare interface SwirlSymbolImage extends Components.SwirlSymbolImage {}
|
|
8806
|
+
|
|
8807
|
+
|
|
8808
|
+
@ProxyCmp({
|
|
8809
|
+
inputs: ['size']
|
|
8810
|
+
})
|
|
8811
|
+
@Component({
|
|
8812
|
+
selector: 'swirl-symbol-info-menu',
|
|
8813
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8814
|
+
template: '<ng-content></ng-content>',
|
|
8815
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8816
|
+
inputs: ['size'],
|
|
8817
|
+
standalone: false
|
|
8818
|
+
})
|
|
8819
|
+
export class SwirlSymbolInfoMenu {
|
|
8820
|
+
protected el: HTMLSwirlSymbolInfoMenuElement;
|
|
8821
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8822
|
+
c.detach();
|
|
8823
|
+
this.el = r.nativeElement;
|
|
8824
|
+
}
|
|
8825
|
+
}
|
|
8826
|
+
|
|
8827
|
+
|
|
8828
|
+
export declare interface SwirlSymbolInfoMenu extends Components.SwirlSymbolInfoMenu {}
|
|
8829
|
+
|
|
8830
|
+
|
|
8831
|
+
@ProxyCmp({
|
|
8832
|
+
inputs: ['size']
|
|
8833
|
+
})
|
|
8834
|
+
@Component({
|
|
8835
|
+
selector: 'swirl-symbol-instagram',
|
|
8836
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8837
|
+
template: '<ng-content></ng-content>',
|
|
8838
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8839
|
+
inputs: ['size'],
|
|
8840
|
+
standalone: false
|
|
8841
|
+
})
|
|
8842
|
+
export class SwirlSymbolInstagram {
|
|
8843
|
+
protected el: HTMLSwirlSymbolInstagramElement;
|
|
8844
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8845
|
+
c.detach();
|
|
8846
|
+
this.el = r.nativeElement;
|
|
8847
|
+
}
|
|
8848
|
+
}
|
|
8849
|
+
|
|
8850
|
+
|
|
8851
|
+
export declare interface SwirlSymbolInstagram extends Components.SwirlSymbolInstagram {}
|
|
8852
|
+
|
|
8853
|
+
|
|
8854
|
+
@ProxyCmp({
|
|
8855
|
+
inputs: ['size']
|
|
8856
|
+
})
|
|
8857
|
+
@Component({
|
|
8858
|
+
selector: 'swirl-symbol-inventory',
|
|
8859
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8860
|
+
template: '<ng-content></ng-content>',
|
|
8861
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8862
|
+
inputs: ['size'],
|
|
8863
|
+
standalone: false
|
|
8864
|
+
})
|
|
8865
|
+
export class SwirlSymbolInventory {
|
|
8866
|
+
protected el: HTMLSwirlSymbolInventoryElement;
|
|
8867
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8868
|
+
c.detach();
|
|
8869
|
+
this.el = r.nativeElement;
|
|
8870
|
+
}
|
|
8871
|
+
}
|
|
8872
|
+
|
|
8873
|
+
|
|
8874
|
+
export declare interface SwirlSymbolInventory extends Components.SwirlSymbolInventory {}
|
|
8875
|
+
|
|
8876
|
+
|
|
8877
|
+
@ProxyCmp({
|
|
8878
|
+
inputs: ['size']
|
|
8879
|
+
})
|
|
8880
|
+
@Component({
|
|
8881
|
+
selector: 'swirl-symbol-inventory-2',
|
|
8882
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8883
|
+
template: '<ng-content></ng-content>',
|
|
8884
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8885
|
+
inputs: ['size'],
|
|
8886
|
+
standalone: false
|
|
8887
|
+
})
|
|
8888
|
+
export class SwirlSymbolInventory2 {
|
|
8889
|
+
protected el: HTMLSwirlSymbolInventory2Element;
|
|
8890
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8891
|
+
c.detach();
|
|
8892
|
+
this.el = r.nativeElement;
|
|
8893
|
+
}
|
|
8894
|
+
}
|
|
8895
|
+
|
|
8896
|
+
|
|
8897
|
+
export declare interface SwirlSymbolInventory2 extends Components.SwirlSymbolInventory2 {}
|
|
8898
|
+
|
|
8899
|
+
|
|
8900
|
+
@ProxyCmp({
|
|
8901
|
+
inputs: ['size']
|
|
8902
|
+
})
|
|
8903
|
+
@Component({
|
|
8904
|
+
selector: 'swirl-symbol-ios',
|
|
8905
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8906
|
+
template: '<ng-content></ng-content>',
|
|
8907
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8908
|
+
inputs: ['size'],
|
|
8909
|
+
standalone: false
|
|
8910
|
+
})
|
|
8911
|
+
export class SwirlSymbolIos {
|
|
8912
|
+
protected el: HTMLSwirlSymbolIosElement;
|
|
8913
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8914
|
+
c.detach();
|
|
8915
|
+
this.el = r.nativeElement;
|
|
8916
|
+
}
|
|
8917
|
+
}
|
|
8918
|
+
|
|
8919
|
+
|
|
8920
|
+
export declare interface SwirlSymbolIos extends Components.SwirlSymbolIos {}
|
|
8921
|
+
|
|
8922
|
+
|
|
8923
|
+
@ProxyCmp({
|
|
8924
|
+
inputs: ['size']
|
|
8925
|
+
})
|
|
8926
|
+
@Component({
|
|
8927
|
+
selector: 'swirl-symbol-key',
|
|
8928
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8929
|
+
template: '<ng-content></ng-content>',
|
|
8930
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8931
|
+
inputs: ['size'],
|
|
8932
|
+
standalone: false
|
|
8933
|
+
})
|
|
8934
|
+
export class SwirlSymbolKey {
|
|
8935
|
+
protected el: HTMLSwirlSymbolKeyElement;
|
|
8936
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8937
|
+
c.detach();
|
|
8938
|
+
this.el = r.nativeElement;
|
|
8939
|
+
}
|
|
8940
|
+
}
|
|
8941
|
+
|
|
8942
|
+
|
|
8943
|
+
export declare interface SwirlSymbolKey extends Components.SwirlSymbolKey {}
|
|
8944
|
+
|
|
8945
|
+
|
|
8946
|
+
@ProxyCmp({
|
|
8947
|
+
inputs: ['size']
|
|
8948
|
+
})
|
|
8949
|
+
@Component({
|
|
8950
|
+
selector: 'swirl-symbol-language',
|
|
8951
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8952
|
+
template: '<ng-content></ng-content>',
|
|
8953
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8954
|
+
inputs: ['size'],
|
|
8955
|
+
standalone: false
|
|
8956
|
+
})
|
|
8957
|
+
export class SwirlSymbolLanguage {
|
|
8958
|
+
protected el: HTMLSwirlSymbolLanguageElement;
|
|
8959
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8960
|
+
c.detach();
|
|
8961
|
+
this.el = r.nativeElement;
|
|
8962
|
+
}
|
|
8963
|
+
}
|
|
8964
|
+
|
|
8965
|
+
|
|
8966
|
+
export declare interface SwirlSymbolLanguage extends Components.SwirlSymbolLanguage {}
|
|
8967
|
+
|
|
8968
|
+
|
|
8969
|
+
@ProxyCmp({
|
|
8970
|
+
inputs: ['size']
|
|
8971
|
+
})
|
|
8972
|
+
@Component({
|
|
8973
|
+
selector: 'swirl-symbol-leaderboard',
|
|
8974
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8975
|
+
template: '<ng-content></ng-content>',
|
|
8976
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8977
|
+
inputs: ['size'],
|
|
8978
|
+
standalone: false
|
|
8979
|
+
})
|
|
8980
|
+
export class SwirlSymbolLeaderboard {
|
|
8981
|
+
protected el: HTMLSwirlSymbolLeaderboardElement;
|
|
8982
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8983
|
+
c.detach();
|
|
8984
|
+
this.el = r.nativeElement;
|
|
8985
|
+
}
|
|
8986
|
+
}
|
|
8987
|
+
|
|
8988
|
+
|
|
8989
|
+
export declare interface SwirlSymbolLeaderboard extends Components.SwirlSymbolLeaderboard {}
|
|
8990
|
+
|
|
8991
|
+
|
|
8992
|
+
@ProxyCmp({
|
|
8993
|
+
inputs: ['size']
|
|
8994
|
+
})
|
|
8995
|
+
@Component({
|
|
8996
|
+
selector: 'swirl-symbol-lightbulb',
|
|
8997
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8998
|
+
template: '<ng-content></ng-content>',
|
|
8999
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
9000
|
+
inputs: ['size'],
|
|
9001
|
+
standalone: false
|
|
9002
|
+
})
|
|
9003
|
+
export class SwirlSymbolLightbulb {
|
|
9004
|
+
protected el: HTMLSwirlSymbolLightbulbElement;
|
|
9005
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
9006
|
+
c.detach();
|
|
9007
|
+
this.el = r.nativeElement;
|
|
9008
|
+
}
|
|
9009
|
+
}
|
|
9010
|
+
|
|
9011
|
+
|
|
9012
|
+
export declare interface SwirlSymbolLightbulb extends Components.SwirlSymbolLightbulb {}
|
|
9013
|
+
|
|
9014
|
+
|
|
9015
|
+
@ProxyCmp({
|
|
9016
|
+
inputs: ['size']
|
|
9017
|
+
})
|
|
9018
|
+
@Component({
|
|
9019
|
+
selector: 'swirl-symbol-linkedin',
|
|
9020
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9021
|
+
template: '<ng-content></ng-content>',
|
|
9022
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
9023
|
+
inputs: ['size'],
|
|
9024
|
+
standalone: false
|
|
9025
|
+
})
|
|
9026
|
+
export class SwirlSymbolLinkedin {
|
|
9027
|
+
protected el: HTMLSwirlSymbolLinkedinElement;
|
|
9028
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
9029
|
+
c.detach();
|
|
9030
|
+
this.el = r.nativeElement;
|
|
9031
|
+
}
|
|
9032
|
+
}
|
|
9033
|
+
|
|
9034
|
+
|
|
9035
|
+
export declare interface SwirlSymbolLinkedin extends Components.SwirlSymbolLinkedin {}
|
|
9036
|
+
|
|
9037
|
+
|
|
9038
|
+
@ProxyCmp({
|
|
9039
|
+
inputs: ['size']
|
|
9040
|
+
})
|
|
9041
|
+
@Component({
|
|
9042
|
+
selector: 'swirl-symbol-local-shipping',
|
|
9043
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9044
|
+
template: '<ng-content></ng-content>',
|
|
9045
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
9046
|
+
inputs: ['size'],
|
|
9047
|
+
standalone: false
|
|
9048
|
+
})
|
|
9049
|
+
export class SwirlSymbolLocalShipping {
|
|
9050
|
+
protected el: HTMLSwirlSymbolLocalShippingElement;
|
|
9051
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
9052
|
+
c.detach();
|
|
9053
|
+
this.el = r.nativeElement;
|
|
9054
|
+
}
|
|
9055
|
+
}
|
|
9056
|
+
|
|
9057
|
+
|
|
9058
|
+
export declare interface SwirlSymbolLocalShipping extends Components.SwirlSymbolLocalShipping {}
|
|
9059
|
+
|
|
9060
|
+
|
|
9061
|
+
@ProxyCmp({
|
|
9062
|
+
inputs: ['size']
|
|
9063
|
+
})
|
|
9064
|
+
@Component({
|
|
9065
|
+
selector: 'swirl-symbol-location-on',
|
|
9066
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9067
|
+
template: '<ng-content></ng-content>',
|
|
9068
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
9069
|
+
inputs: ['size'],
|
|
9070
|
+
standalone: false
|
|
9071
|
+
})
|
|
9072
|
+
export class SwirlSymbolLocationOn {
|
|
9073
|
+
protected el: HTMLSwirlSymbolLocationOnElement;
|
|
9074
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
9075
|
+
c.detach();
|
|
9076
|
+
this.el = r.nativeElement;
|
|
9077
|
+
}
|
|
9078
|
+
}
|
|
9079
|
+
|
|
9080
|
+
|
|
9081
|
+
export declare interface SwirlSymbolLocationOn extends Components.SwirlSymbolLocationOn {}
|
|
9082
|
+
|
|
9083
|
+
|
|
9084
|
+
@ProxyCmp({
|
|
9085
|
+
inputs: ['size']
|
|
9086
|
+
})
|
|
9087
|
+
@Component({
|
|
9088
|
+
selector: 'swirl-symbol-loyalty',
|
|
9089
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9090
|
+
template: '<ng-content></ng-content>',
|
|
9091
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
9092
|
+
inputs: ['size'],
|
|
9093
|
+
standalone: false
|
|
9094
|
+
})
|
|
9095
|
+
export class SwirlSymbolLoyalty {
|
|
9096
|
+
protected el: HTMLSwirlSymbolLoyaltyElement;
|
|
9097
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
9098
|
+
c.detach();
|
|
9099
|
+
this.el = r.nativeElement;
|
|
9100
|
+
}
|
|
9101
|
+
}
|
|
9102
|
+
|
|
9103
|
+
|
|
9104
|
+
export declare interface SwirlSymbolLoyalty extends Components.SwirlSymbolLoyalty {}
|
|
9105
|
+
|
|
9106
|
+
|
|
9107
|
+
@ProxyCmp({
|
|
9108
|
+
inputs: ['size']
|
|
9109
|
+
})
|
|
9110
|
+
@Component({
|
|
9111
|
+
selector: 'swirl-symbol-map',
|
|
9112
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9113
|
+
template: '<ng-content></ng-content>',
|
|
9114
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
9115
|
+
inputs: ['size'],
|
|
9116
|
+
standalone: false
|
|
9117
|
+
})
|
|
9118
|
+
export class SwirlSymbolMap {
|
|
9119
|
+
protected el: HTMLSwirlSymbolMapElement;
|
|
9120
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
9121
|
+
c.detach();
|
|
9122
|
+
this.el = r.nativeElement;
|
|
9123
|
+
}
|
|
9124
|
+
}
|
|
9125
|
+
|
|
9126
|
+
|
|
9127
|
+
export declare interface SwirlSymbolMap extends Components.SwirlSymbolMap {}
|
|
9128
|
+
|
|
9129
|
+
|
|
9130
|
+
@ProxyCmp({
|
|
9131
|
+
inputs: ['size']
|
|
9132
|
+
})
|
|
9133
|
+
@Component({
|
|
9134
|
+
selector: 'swirl-symbol-maps-home-work',
|
|
9135
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9136
|
+
template: '<ng-content></ng-content>',
|
|
9137
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
9138
|
+
inputs: ['size'],
|
|
9139
|
+
standalone: false
|
|
9140
|
+
})
|
|
9141
|
+
export class SwirlSymbolMapsHomeWork {
|
|
9142
|
+
protected el: HTMLSwirlSymbolMapsHomeWorkElement;
|
|
9143
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
9144
|
+
c.detach();
|
|
9145
|
+
this.el = r.nativeElement;
|
|
9146
|
+
}
|
|
9147
|
+
}
|
|
9148
|
+
|
|
9149
|
+
|
|
9150
|
+
export declare interface SwirlSymbolMapsHomeWork extends Components.SwirlSymbolMapsHomeWork {}
|
|
9151
|
+
|
|
9152
|
+
|
|
9153
|
+
@ProxyCmp({
|
|
9154
|
+
inputs: ['size']
|
|
9155
|
+
})
|
|
9156
|
+
@Component({
|
|
9157
|
+
selector: 'swirl-symbol-menu-book',
|
|
9158
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9159
|
+
template: '<ng-content></ng-content>',
|
|
9160
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
9161
|
+
inputs: ['size'],
|
|
9162
|
+
standalone: false
|
|
9163
|
+
})
|
|
9164
|
+
export class SwirlSymbolMenuBook {
|
|
9165
|
+
protected el: HTMLSwirlSymbolMenuBookElement;
|
|
9166
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
9167
|
+
c.detach();
|
|
9168
|
+
this.el = r.nativeElement;
|
|
9169
|
+
}
|
|
9170
|
+
}
|
|
9171
|
+
|
|
9172
|
+
|
|
9173
|
+
export declare interface SwirlSymbolMenuBook extends Components.SwirlSymbolMenuBook {}
|
|
9174
|
+
|
|
9175
|
+
|
|
9176
|
+
@ProxyCmp({
|
|
9177
|
+
inputs: ['size']
|
|
9178
|
+
})
|
|
9179
|
+
@Component({
|
|
9180
|
+
selector: 'swirl-symbol-mop',
|
|
9181
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9182
|
+
template: '<ng-content></ng-content>',
|
|
9183
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
9184
|
+
inputs: ['size'],
|
|
9185
|
+
standalone: false
|
|
9186
|
+
})
|
|
9187
|
+
export class SwirlSymbolMop {
|
|
9188
|
+
protected el: HTMLSwirlSymbolMopElement;
|
|
9189
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
9190
|
+
c.detach();
|
|
9191
|
+
this.el = r.nativeElement;
|
|
9192
|
+
}
|
|
9193
|
+
}
|
|
9194
|
+
|
|
9195
|
+
|
|
9196
|
+
export declare interface SwirlSymbolMop extends Components.SwirlSymbolMop {}
|
|
9197
|
+
|
|
9198
|
+
|
|
9199
|
+
@ProxyCmp({
|
|
9200
|
+
inputs: ['size']
|
|
9201
|
+
})
|
|
9202
|
+
@Component({
|
|
9203
|
+
selector: 'swirl-symbol-nest-eco-leaf',
|
|
9204
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9205
|
+
template: '<ng-content></ng-content>',
|
|
9206
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
9207
|
+
inputs: ['size'],
|
|
9208
|
+
standalone: false
|
|
9209
|
+
})
|
|
9210
|
+
export class SwirlSymbolNestEcoLeaf {
|
|
9211
|
+
protected el: HTMLSwirlSymbolNestEcoLeafElement;
|
|
9212
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
9213
|
+
c.detach();
|
|
9214
|
+
this.el = r.nativeElement;
|
|
9215
|
+
}
|
|
9216
|
+
}
|
|
9217
|
+
|
|
9218
|
+
|
|
9219
|
+
export declare interface SwirlSymbolNestEcoLeaf extends Components.SwirlSymbolNestEcoLeaf {}
|
|
9220
|
+
|
|
9221
|
+
|
|
9222
|
+
@ProxyCmp({
|
|
9223
|
+
inputs: ['size']
|
|
9224
|
+
})
|
|
9225
|
+
@Component({
|
|
9226
|
+
selector: 'swirl-symbol-notifications',
|
|
9227
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9228
|
+
template: '<ng-content></ng-content>',
|
|
9229
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
9230
|
+
inputs: ['size'],
|
|
9231
|
+
standalone: false
|
|
9232
|
+
})
|
|
9233
|
+
export class SwirlSymbolNotifications {
|
|
9234
|
+
protected el: HTMLSwirlSymbolNotificationsElement;
|
|
9235
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
9236
|
+
c.detach();
|
|
9237
|
+
this.el = r.nativeElement;
|
|
9238
|
+
}
|
|
9239
|
+
}
|
|
9240
|
+
|
|
9241
|
+
|
|
9242
|
+
export declare interface SwirlSymbolNotifications extends Components.SwirlSymbolNotifications {}
|
|
9243
|
+
|
|
9244
|
+
|
|
9245
|
+
@ProxyCmp({
|
|
9246
|
+
inputs: ['size']
|
|
9247
|
+
})
|
|
9248
|
+
@Component({
|
|
9249
|
+
selector: 'swirl-symbol-open-in-new',
|
|
9250
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9251
|
+
template: '<ng-content></ng-content>',
|
|
9252
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
9253
|
+
inputs: ['size'],
|
|
9254
|
+
standalone: false
|
|
9255
|
+
})
|
|
9256
|
+
export class SwirlSymbolOpenInNew {
|
|
9257
|
+
protected el: HTMLSwirlSymbolOpenInNewElement;
|
|
9258
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
9259
|
+
c.detach();
|
|
9260
|
+
this.el = r.nativeElement;
|
|
9261
|
+
}
|
|
9262
|
+
}
|
|
9263
|
+
|
|
9264
|
+
|
|
9265
|
+
export declare interface SwirlSymbolOpenInNew extends Components.SwirlSymbolOpenInNew {}
|
|
9266
|
+
|
|
9267
|
+
|
|
9268
|
+
@ProxyCmp({
|
|
9269
|
+
inputs: ['size']
|
|
9270
|
+
})
|
|
9271
|
+
@Component({
|
|
9272
|
+
selector: 'swirl-symbol-orders',
|
|
7939
9273
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7940
9274
|
template: '<ng-content></ng-content>',
|
|
7941
9275
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7942
9276
|
inputs: ['size'],
|
|
7943
9277
|
standalone: false
|
|
7944
9278
|
})
|
|
7945
|
-
export class
|
|
7946
|
-
protected el:
|
|
9279
|
+
export class SwirlSymbolOrders {
|
|
9280
|
+
protected el: HTMLSwirlSymbolOrdersElement;
|
|
7947
9281
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7948
9282
|
c.detach();
|
|
7949
9283
|
this.el = r.nativeElement;
|
|
@@ -7951,22 +9285,22 @@ export class SwirlSymbolEditCalendar {
|
|
|
7951
9285
|
}
|
|
7952
9286
|
|
|
7953
9287
|
|
|
7954
|
-
export declare interface
|
|
9288
|
+
export declare interface SwirlSymbolOrders extends Components.SwirlSymbolOrders {}
|
|
7955
9289
|
|
|
7956
9290
|
|
|
7957
9291
|
@ProxyCmp({
|
|
7958
9292
|
inputs: ['size']
|
|
7959
9293
|
})
|
|
7960
9294
|
@Component({
|
|
7961
|
-
selector: 'swirl-symbol-
|
|
9295
|
+
selector: 'swirl-symbol-package',
|
|
7962
9296
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7963
9297
|
template: '<ng-content></ng-content>',
|
|
7964
9298
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7965
9299
|
inputs: ['size'],
|
|
7966
9300
|
standalone: false
|
|
7967
9301
|
})
|
|
7968
|
-
export class
|
|
7969
|
-
protected el:
|
|
9302
|
+
export class SwirlSymbolPackage {
|
|
9303
|
+
protected el: HTMLSwirlSymbolPackageElement;
|
|
7970
9304
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7971
9305
|
c.detach();
|
|
7972
9306
|
this.el = r.nativeElement;
|
|
@@ -7974,22 +9308,22 @@ export class SwirlSymbolEmail {
|
|
|
7974
9308
|
}
|
|
7975
9309
|
|
|
7976
9310
|
|
|
7977
|
-
export declare interface
|
|
9311
|
+
export declare interface SwirlSymbolPackage extends Components.SwirlSymbolPackage {}
|
|
7978
9312
|
|
|
7979
9313
|
|
|
7980
9314
|
@ProxyCmp({
|
|
7981
9315
|
inputs: ['size']
|
|
7982
9316
|
})
|
|
7983
9317
|
@Component({
|
|
7984
|
-
selector: 'swirl-symbol-
|
|
9318
|
+
selector: 'swirl-symbol-palette',
|
|
7985
9319
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7986
9320
|
template: '<ng-content></ng-content>',
|
|
7987
9321
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7988
9322
|
inputs: ['size'],
|
|
7989
9323
|
standalone: false
|
|
7990
9324
|
})
|
|
7991
|
-
export class
|
|
7992
|
-
protected el:
|
|
9325
|
+
export class SwirlSymbolPalette {
|
|
9326
|
+
protected el: HTMLSwirlSymbolPaletteElement;
|
|
7993
9327
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7994
9328
|
c.detach();
|
|
7995
9329
|
this.el = r.nativeElement;
|
|
@@ -7997,22 +9331,22 @@ export class SwirlSymbolEmojiFoodBeverage {
|
|
|
7997
9331
|
}
|
|
7998
9332
|
|
|
7999
9333
|
|
|
8000
|
-
export declare interface
|
|
9334
|
+
export declare interface SwirlSymbolPalette extends Components.SwirlSymbolPalette {}
|
|
8001
9335
|
|
|
8002
9336
|
|
|
8003
9337
|
@ProxyCmp({
|
|
8004
9338
|
inputs: ['size']
|
|
8005
9339
|
})
|
|
8006
9340
|
@Component({
|
|
8007
|
-
selector: 'swirl-symbol-
|
|
9341
|
+
selector: 'swirl-symbol-partly-cloudy-day',
|
|
8008
9342
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8009
9343
|
template: '<ng-content></ng-content>',
|
|
8010
9344
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8011
9345
|
inputs: ['size'],
|
|
8012
9346
|
standalone: false
|
|
8013
9347
|
})
|
|
8014
|
-
export class
|
|
8015
|
-
protected el:
|
|
9348
|
+
export class SwirlSymbolPartlyCloudyDay {
|
|
9349
|
+
protected el: HTMLSwirlSymbolPartlyCloudyDayElement;
|
|
8016
9350
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8017
9351
|
c.detach();
|
|
8018
9352
|
this.el = r.nativeElement;
|
|
@@ -8020,22 +9354,22 @@ export class SwirlSymbolEventMenu {
|
|
|
8020
9354
|
}
|
|
8021
9355
|
|
|
8022
9356
|
|
|
8023
|
-
export declare interface
|
|
9357
|
+
export declare interface SwirlSymbolPartlyCloudyDay extends Components.SwirlSymbolPartlyCloudyDay {}
|
|
8024
9358
|
|
|
8025
9359
|
|
|
8026
9360
|
@ProxyCmp({
|
|
8027
9361
|
inputs: ['size']
|
|
8028
9362
|
})
|
|
8029
9363
|
@Component({
|
|
8030
|
-
selector: 'swirl-symbol-
|
|
9364
|
+
selector: 'swirl-symbol-pedal-bike',
|
|
8031
9365
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8032
9366
|
template: '<ng-content></ng-content>',
|
|
8033
9367
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8034
9368
|
inputs: ['size'],
|
|
8035
9369
|
standalone: false
|
|
8036
9370
|
})
|
|
8037
|
-
export class
|
|
8038
|
-
protected el:
|
|
9371
|
+
export class SwirlSymbolPedalBike {
|
|
9372
|
+
protected el: HTMLSwirlSymbolPedalBikeElement;
|
|
8039
9373
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8040
9374
|
c.detach();
|
|
8041
9375
|
this.el = r.nativeElement;
|
|
@@ -8043,22 +9377,22 @@ export class SwirlSymbolFacebook {
|
|
|
8043
9377
|
}
|
|
8044
9378
|
|
|
8045
9379
|
|
|
8046
|
-
export declare interface
|
|
9380
|
+
export declare interface SwirlSymbolPedalBike extends Components.SwirlSymbolPedalBike {}
|
|
8047
9381
|
|
|
8048
9382
|
|
|
8049
9383
|
@ProxyCmp({
|
|
8050
9384
|
inputs: ['size']
|
|
8051
9385
|
})
|
|
8052
9386
|
@Component({
|
|
8053
|
-
selector: 'swirl-symbol-
|
|
9387
|
+
selector: 'swirl-symbol-percent-discount',
|
|
8054
9388
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8055
9389
|
template: '<ng-content></ng-content>',
|
|
8056
9390
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8057
9391
|
inputs: ['size'],
|
|
8058
9392
|
standalone: false
|
|
8059
9393
|
})
|
|
8060
|
-
export class
|
|
8061
|
-
protected el:
|
|
9394
|
+
export class SwirlSymbolPercentDiscount {
|
|
9395
|
+
protected el: HTMLSwirlSymbolPercentDiscountElement;
|
|
8062
9396
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8063
9397
|
c.detach();
|
|
8064
9398
|
this.el = r.nativeElement;
|
|
@@ -8066,22 +9400,22 @@ export class SwirlSymbolFavorite {
|
|
|
8066
9400
|
}
|
|
8067
9401
|
|
|
8068
9402
|
|
|
8069
|
-
export declare interface
|
|
9403
|
+
export declare interface SwirlSymbolPercentDiscount extends Components.SwirlSymbolPercentDiscount {}
|
|
8070
9404
|
|
|
8071
9405
|
|
|
8072
9406
|
@ProxyCmp({
|
|
8073
9407
|
inputs: ['size']
|
|
8074
9408
|
})
|
|
8075
9409
|
@Component({
|
|
8076
|
-
selector: 'swirl-symbol-
|
|
9410
|
+
selector: 'swirl-symbol-pets',
|
|
8077
9411
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8078
9412
|
template: '<ng-content></ng-content>',
|
|
8079
9413
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8080
9414
|
inputs: ['size'],
|
|
8081
9415
|
standalone: false
|
|
8082
9416
|
})
|
|
8083
|
-
export class
|
|
8084
|
-
protected el:
|
|
9417
|
+
export class SwirlSymbolPets {
|
|
9418
|
+
protected el: HTMLSwirlSymbolPetsElement;
|
|
8085
9419
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8086
9420
|
c.detach();
|
|
8087
9421
|
this.el = r.nativeElement;
|
|
@@ -8089,22 +9423,22 @@ export class SwirlSymbolFitnessCenter {
|
|
|
8089
9423
|
}
|
|
8090
9424
|
|
|
8091
9425
|
|
|
8092
|
-
export declare interface
|
|
9426
|
+
export declare interface SwirlSymbolPets extends Components.SwirlSymbolPets {}
|
|
8093
9427
|
|
|
8094
9428
|
|
|
8095
9429
|
@ProxyCmp({
|
|
8096
9430
|
inputs: ['size']
|
|
8097
9431
|
})
|
|
8098
9432
|
@Component({
|
|
8099
|
-
selector: 'swirl-symbol-
|
|
9433
|
+
selector: 'swirl-symbol-pinterest',
|
|
8100
9434
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8101
9435
|
template: '<ng-content></ng-content>',
|
|
8102
9436
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8103
9437
|
inputs: ['size'],
|
|
8104
9438
|
standalone: false
|
|
8105
9439
|
})
|
|
8106
|
-
export class
|
|
8107
|
-
protected el:
|
|
9440
|
+
export class SwirlSymbolPinterest {
|
|
9441
|
+
protected el: HTMLSwirlSymbolPinterestElement;
|
|
8108
9442
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8109
9443
|
c.detach();
|
|
8110
9444
|
this.el = r.nativeElement;
|
|
@@ -8112,22 +9446,22 @@ export class SwirlSymbolFlag {
|
|
|
8112
9446
|
}
|
|
8113
9447
|
|
|
8114
9448
|
|
|
8115
|
-
export declare interface
|
|
9449
|
+
export declare interface SwirlSymbolPinterest extends Components.SwirlSymbolPinterest {}
|
|
8116
9450
|
|
|
8117
9451
|
|
|
8118
9452
|
@ProxyCmp({
|
|
8119
9453
|
inputs: ['size']
|
|
8120
9454
|
})
|
|
8121
9455
|
@Component({
|
|
8122
|
-
selector: 'swirl-symbol-
|
|
9456
|
+
selector: 'swirl-symbol-point-of-sale',
|
|
8123
9457
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8124
9458
|
template: '<ng-content></ng-content>',
|
|
8125
9459
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8126
9460
|
inputs: ['size'],
|
|
8127
9461
|
standalone: false
|
|
8128
9462
|
})
|
|
8129
|
-
export class
|
|
8130
|
-
protected el:
|
|
9463
|
+
export class SwirlSymbolPointOfSale {
|
|
9464
|
+
protected el: HTMLSwirlSymbolPointOfSaleElement;
|
|
8131
9465
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8132
9466
|
c.detach();
|
|
8133
9467
|
this.el = r.nativeElement;
|
|
@@ -8135,22 +9469,22 @@ export class SwirlSymbolFolder {
|
|
|
8135
9469
|
}
|
|
8136
9470
|
|
|
8137
9471
|
|
|
8138
|
-
export declare interface
|
|
9472
|
+
export declare interface SwirlSymbolPointOfSale extends Components.SwirlSymbolPointOfSale {}
|
|
8139
9473
|
|
|
8140
9474
|
|
|
8141
9475
|
@ProxyCmp({
|
|
8142
9476
|
inputs: ['size']
|
|
8143
9477
|
})
|
|
8144
9478
|
@Component({
|
|
8145
|
-
selector: 'swirl-symbol-
|
|
9479
|
+
selector: 'swirl-symbol-policy',
|
|
8146
9480
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8147
9481
|
template: '<ng-content></ng-content>',
|
|
8148
9482
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8149
9483
|
inputs: ['size'],
|
|
8150
9484
|
standalone: false
|
|
8151
9485
|
})
|
|
8152
|
-
export class
|
|
8153
|
-
protected el:
|
|
9486
|
+
export class SwirlSymbolPolicy {
|
|
9487
|
+
protected el: HTMLSwirlSymbolPolicyElement;
|
|
8154
9488
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8155
9489
|
c.detach();
|
|
8156
9490
|
this.el = r.nativeElement;
|
|
@@ -8158,22 +9492,22 @@ export class SwirlSymbolGlobe {
|
|
|
8158
9492
|
}
|
|
8159
9493
|
|
|
8160
9494
|
|
|
8161
|
-
export declare interface
|
|
9495
|
+
export declare interface SwirlSymbolPolicy extends Components.SwirlSymbolPolicy {}
|
|
8162
9496
|
|
|
8163
9497
|
|
|
8164
9498
|
@ProxyCmp({
|
|
8165
9499
|
inputs: ['size']
|
|
8166
9500
|
})
|
|
8167
9501
|
@Component({
|
|
8168
|
-
selector: 'swirl-symbol-
|
|
9502
|
+
selector: 'swirl-symbol-precision-manufacturing',
|
|
8169
9503
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8170
9504
|
template: '<ng-content></ng-content>',
|
|
8171
9505
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8172
9506
|
inputs: ['size'],
|
|
8173
9507
|
standalone: false
|
|
8174
9508
|
})
|
|
8175
|
-
export class
|
|
8176
|
-
protected el:
|
|
9509
|
+
export class SwirlSymbolPrecisionManufacturing {
|
|
9510
|
+
protected el: HTMLSwirlSymbolPrecisionManufacturingElement;
|
|
8177
9511
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8178
9512
|
c.detach();
|
|
8179
9513
|
this.el = r.nativeElement;
|
|
@@ -8181,22 +9515,22 @@ export class SwirlSymbolGroups {
|
|
|
8181
9515
|
}
|
|
8182
9516
|
|
|
8183
9517
|
|
|
8184
|
-
export declare interface
|
|
9518
|
+
export declare interface SwirlSymbolPrecisionManufacturing extends Components.SwirlSymbolPrecisionManufacturing {}
|
|
8185
9519
|
|
|
8186
9520
|
|
|
8187
9521
|
@ProxyCmp({
|
|
8188
9522
|
inputs: ['size']
|
|
8189
9523
|
})
|
|
8190
9524
|
@Component({
|
|
8191
|
-
selector: 'swirl-symbol-
|
|
9525
|
+
selector: 'swirl-symbol-print',
|
|
8192
9526
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8193
9527
|
template: '<ng-content></ng-content>',
|
|
8194
9528
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8195
9529
|
inputs: ['size'],
|
|
8196
9530
|
standalone: false
|
|
8197
9531
|
})
|
|
8198
|
-
export class
|
|
8199
|
-
protected el:
|
|
9532
|
+
export class SwirlSymbolPrint {
|
|
9533
|
+
protected el: HTMLSwirlSymbolPrintElement;
|
|
8200
9534
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8201
9535
|
c.detach();
|
|
8202
9536
|
this.el = r.nativeElement;
|
|
@@ -8204,22 +9538,22 @@ export class SwirlSymbolHelp {
|
|
|
8204
9538
|
}
|
|
8205
9539
|
|
|
8206
9540
|
|
|
8207
|
-
export declare interface
|
|
9541
|
+
export declare interface SwirlSymbolPrint extends Components.SwirlSymbolPrint {}
|
|
8208
9542
|
|
|
8209
9543
|
|
|
8210
9544
|
@ProxyCmp({
|
|
8211
9545
|
inputs: ['size']
|
|
8212
9546
|
})
|
|
8213
9547
|
@Component({
|
|
8214
|
-
selector: 'swirl-symbol-
|
|
9548
|
+
selector: 'swirl-symbol-push-pin',
|
|
8215
9549
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8216
9550
|
template: '<ng-content></ng-content>',
|
|
8217
9551
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8218
9552
|
inputs: ['size'],
|
|
8219
9553
|
standalone: false
|
|
8220
9554
|
})
|
|
8221
|
-
export class
|
|
8222
|
-
protected el:
|
|
9555
|
+
export class SwirlSymbolPushPin {
|
|
9556
|
+
protected el: HTMLSwirlSymbolPushPinElement;
|
|
8223
9557
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8224
9558
|
c.detach();
|
|
8225
9559
|
this.el = r.nativeElement;
|
|
@@ -8227,22 +9561,22 @@ export class SwirlSymbolImage {
|
|
|
8227
9561
|
}
|
|
8228
9562
|
|
|
8229
9563
|
|
|
8230
|
-
export declare interface
|
|
9564
|
+
export declare interface SwirlSymbolPushPin extends Components.SwirlSymbolPushPin {}
|
|
8231
9565
|
|
|
8232
9566
|
|
|
8233
9567
|
@ProxyCmp({
|
|
8234
9568
|
inputs: ['size']
|
|
8235
9569
|
})
|
|
8236
9570
|
@Component({
|
|
8237
|
-
selector: 'swirl-symbol-
|
|
9571
|
+
selector: 'swirl-symbol-recycling',
|
|
8238
9572
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8239
9573
|
template: '<ng-content></ng-content>',
|
|
8240
9574
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8241
9575
|
inputs: ['size'],
|
|
8242
9576
|
standalone: false
|
|
8243
9577
|
})
|
|
8244
|
-
export class
|
|
8245
|
-
protected el:
|
|
9578
|
+
export class SwirlSymbolRecycling {
|
|
9579
|
+
protected el: HTMLSwirlSymbolRecyclingElement;
|
|
8246
9580
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8247
9581
|
c.detach();
|
|
8248
9582
|
this.el = r.nativeElement;
|
|
@@ -8250,22 +9584,22 @@ export class SwirlSymbolInfoMenu {
|
|
|
8250
9584
|
}
|
|
8251
9585
|
|
|
8252
9586
|
|
|
8253
|
-
export declare interface
|
|
9587
|
+
export declare interface SwirlSymbolRecycling extends Components.SwirlSymbolRecycling {}
|
|
8254
9588
|
|
|
8255
9589
|
|
|
8256
9590
|
@ProxyCmp({
|
|
8257
9591
|
inputs: ['size']
|
|
8258
9592
|
})
|
|
8259
9593
|
@Component({
|
|
8260
|
-
selector: 'swirl-symbol-
|
|
9594
|
+
selector: 'swirl-symbol-redeem',
|
|
8261
9595
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8262
9596
|
template: '<ng-content></ng-content>',
|
|
8263
9597
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8264
9598
|
inputs: ['size'],
|
|
8265
9599
|
standalone: false
|
|
8266
9600
|
})
|
|
8267
|
-
export class
|
|
8268
|
-
protected el:
|
|
9601
|
+
export class SwirlSymbolRedeem {
|
|
9602
|
+
protected el: HTMLSwirlSymbolRedeemElement;
|
|
8269
9603
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8270
9604
|
c.detach();
|
|
8271
9605
|
this.el = r.nativeElement;
|
|
@@ -8273,22 +9607,22 @@ export class SwirlSymbolInstagram {
|
|
|
8273
9607
|
}
|
|
8274
9608
|
|
|
8275
9609
|
|
|
8276
|
-
export declare interface
|
|
9610
|
+
export declare interface SwirlSymbolRedeem extends Components.SwirlSymbolRedeem {}
|
|
8277
9611
|
|
|
8278
9612
|
|
|
8279
9613
|
@ProxyCmp({
|
|
8280
9614
|
inputs: ['size']
|
|
8281
9615
|
})
|
|
8282
9616
|
@Component({
|
|
8283
|
-
selector: 'swirl-symbol-
|
|
9617
|
+
selector: 'swirl-symbol-report-problem',
|
|
8284
9618
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8285
9619
|
template: '<ng-content></ng-content>',
|
|
8286
9620
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8287
9621
|
inputs: ['size'],
|
|
8288
9622
|
standalone: false
|
|
8289
9623
|
})
|
|
8290
|
-
export class
|
|
8291
|
-
protected el:
|
|
9624
|
+
export class SwirlSymbolReportProblem {
|
|
9625
|
+
protected el: HTMLSwirlSymbolReportProblemElement;
|
|
8292
9626
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8293
9627
|
c.detach();
|
|
8294
9628
|
this.el = r.nativeElement;
|
|
@@ -8296,22 +9630,22 @@ export class SwirlSymbolIos {
|
|
|
8296
9630
|
}
|
|
8297
9631
|
|
|
8298
9632
|
|
|
8299
|
-
export declare interface
|
|
9633
|
+
export declare interface SwirlSymbolReportProblem extends Components.SwirlSymbolReportProblem {}
|
|
8300
9634
|
|
|
8301
9635
|
|
|
8302
9636
|
@ProxyCmp({
|
|
8303
9637
|
inputs: ['size']
|
|
8304
9638
|
})
|
|
8305
9639
|
@Component({
|
|
8306
|
-
selector: 'swirl-symbol-
|
|
9640
|
+
selector: 'swirl-symbol-restaurant',
|
|
8307
9641
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8308
9642
|
template: '<ng-content></ng-content>',
|
|
8309
9643
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8310
9644
|
inputs: ['size'],
|
|
8311
9645
|
standalone: false
|
|
8312
9646
|
})
|
|
8313
|
-
export class
|
|
8314
|
-
protected el:
|
|
9647
|
+
export class SwirlSymbolRestaurant {
|
|
9648
|
+
protected el: HTMLSwirlSymbolRestaurantElement;
|
|
8315
9649
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8316
9650
|
c.detach();
|
|
8317
9651
|
this.el = r.nativeElement;
|
|
@@ -8319,22 +9653,22 @@ export class SwirlSymbolLanguage {
|
|
|
8319
9653
|
}
|
|
8320
9654
|
|
|
8321
9655
|
|
|
8322
|
-
export declare interface
|
|
9656
|
+
export declare interface SwirlSymbolRestaurant extends Components.SwirlSymbolRestaurant {}
|
|
8323
9657
|
|
|
8324
9658
|
|
|
8325
9659
|
@ProxyCmp({
|
|
8326
9660
|
inputs: ['size']
|
|
8327
9661
|
})
|
|
8328
9662
|
@Component({
|
|
8329
|
-
selector: 'swirl-symbol-
|
|
9663
|
+
selector: 'swirl-symbol-roadmap',
|
|
8330
9664
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8331
9665
|
template: '<ng-content></ng-content>',
|
|
8332
9666
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8333
9667
|
inputs: ['size'],
|
|
8334
9668
|
standalone: false
|
|
8335
9669
|
})
|
|
8336
|
-
export class
|
|
8337
|
-
protected el:
|
|
9670
|
+
export class SwirlSymbolRoadmap {
|
|
9671
|
+
protected el: HTMLSwirlSymbolRoadmapElement;
|
|
8338
9672
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8339
9673
|
c.detach();
|
|
8340
9674
|
this.el = r.nativeElement;
|
|
@@ -8342,22 +9676,22 @@ export class SwirlSymbolLeaderboard {
|
|
|
8342
9676
|
}
|
|
8343
9677
|
|
|
8344
9678
|
|
|
8345
|
-
export declare interface
|
|
9679
|
+
export declare interface SwirlSymbolRoadmap extends Components.SwirlSymbolRoadmap {}
|
|
8346
9680
|
|
|
8347
9681
|
|
|
8348
9682
|
@ProxyCmp({
|
|
8349
9683
|
inputs: ['size']
|
|
8350
9684
|
})
|
|
8351
9685
|
@Component({
|
|
8352
|
-
selector: 'swirl-symbol-
|
|
9686
|
+
selector: 'swirl-symbol-rocket-launch',
|
|
8353
9687
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8354
9688
|
template: '<ng-content></ng-content>',
|
|
8355
9689
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8356
9690
|
inputs: ['size'],
|
|
8357
9691
|
standalone: false
|
|
8358
9692
|
})
|
|
8359
|
-
export class
|
|
8360
|
-
protected el:
|
|
9693
|
+
export class SwirlSymbolRocketLaunch {
|
|
9694
|
+
protected el: HTMLSwirlSymbolRocketLaunchElement;
|
|
8361
9695
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8362
9696
|
c.detach();
|
|
8363
9697
|
this.el = r.nativeElement;
|
|
@@ -8365,22 +9699,22 @@ export class SwirlSymbolLightbulb {
|
|
|
8365
9699
|
}
|
|
8366
9700
|
|
|
8367
9701
|
|
|
8368
|
-
export declare interface
|
|
9702
|
+
export declare interface SwirlSymbolRocketLaunch extends Components.SwirlSymbolRocketLaunch {}
|
|
8369
9703
|
|
|
8370
9704
|
|
|
8371
9705
|
@ProxyCmp({
|
|
8372
9706
|
inputs: ['size']
|
|
8373
9707
|
})
|
|
8374
9708
|
@Component({
|
|
8375
|
-
selector: 'swirl-symbol-
|
|
9709
|
+
selector: 'swirl-symbol-room',
|
|
8376
9710
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8377
9711
|
template: '<ng-content></ng-content>',
|
|
8378
9712
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8379
9713
|
inputs: ['size'],
|
|
8380
9714
|
standalone: false
|
|
8381
9715
|
})
|
|
8382
|
-
export class
|
|
8383
|
-
protected el:
|
|
9716
|
+
export class SwirlSymbolRoom {
|
|
9717
|
+
protected el: HTMLSwirlSymbolRoomElement;
|
|
8384
9718
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8385
9719
|
c.detach();
|
|
8386
9720
|
this.el = r.nativeElement;
|
|
@@ -8388,22 +9722,22 @@ export class SwirlSymbolLinkedin {
|
|
|
8388
9722
|
}
|
|
8389
9723
|
|
|
8390
9724
|
|
|
8391
|
-
export declare interface
|
|
9725
|
+
export declare interface SwirlSymbolRoom extends Components.SwirlSymbolRoom {}
|
|
8392
9726
|
|
|
8393
9727
|
|
|
8394
9728
|
@ProxyCmp({
|
|
8395
9729
|
inputs: ['size']
|
|
8396
9730
|
})
|
|
8397
9731
|
@Component({
|
|
8398
|
-
selector: 'swirl-symbol-
|
|
9732
|
+
selector: 'swirl-symbol-savings',
|
|
8399
9733
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8400
9734
|
template: '<ng-content></ng-content>',
|
|
8401
9735
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8402
9736
|
inputs: ['size'],
|
|
8403
9737
|
standalone: false
|
|
8404
9738
|
})
|
|
8405
|
-
export class
|
|
8406
|
-
protected el:
|
|
9739
|
+
export class SwirlSymbolSavings {
|
|
9740
|
+
protected el: HTMLSwirlSymbolSavingsElement;
|
|
8407
9741
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8408
9742
|
c.detach();
|
|
8409
9743
|
this.el = r.nativeElement;
|
|
@@ -8411,22 +9745,22 @@ export class SwirlSymbolLocationOn {
|
|
|
8411
9745
|
}
|
|
8412
9746
|
|
|
8413
9747
|
|
|
8414
|
-
export declare interface
|
|
9748
|
+
export declare interface SwirlSymbolSavings extends Components.SwirlSymbolSavings {}
|
|
8415
9749
|
|
|
8416
9750
|
|
|
8417
9751
|
@ProxyCmp({
|
|
8418
9752
|
inputs: ['size']
|
|
8419
9753
|
})
|
|
8420
9754
|
@Component({
|
|
8421
|
-
selector: 'swirl-symbol-
|
|
9755
|
+
selector: 'swirl-symbol-school',
|
|
8422
9756
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8423
9757
|
template: '<ng-content></ng-content>',
|
|
8424
9758
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8425
9759
|
inputs: ['size'],
|
|
8426
9760
|
standalone: false
|
|
8427
9761
|
})
|
|
8428
|
-
export class
|
|
8429
|
-
protected el:
|
|
9762
|
+
export class SwirlSymbolSchool {
|
|
9763
|
+
protected el: HTMLSwirlSymbolSchoolElement;
|
|
8430
9764
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8431
9765
|
c.detach();
|
|
8432
9766
|
this.el = r.nativeElement;
|
|
@@ -8434,22 +9768,22 @@ export class SwirlSymbolLoyalty {
|
|
|
8434
9768
|
}
|
|
8435
9769
|
|
|
8436
9770
|
|
|
8437
|
-
export declare interface
|
|
9771
|
+
export declare interface SwirlSymbolSchool extends Components.SwirlSymbolSchool {}
|
|
8438
9772
|
|
|
8439
9773
|
|
|
8440
9774
|
@ProxyCmp({
|
|
8441
9775
|
inputs: ['size']
|
|
8442
9776
|
})
|
|
8443
9777
|
@Component({
|
|
8444
|
-
selector: 'swirl-symbol-
|
|
9778
|
+
selector: 'swirl-symbol-sell',
|
|
8445
9779
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8446
9780
|
template: '<ng-content></ng-content>',
|
|
8447
9781
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8448
9782
|
inputs: ['size'],
|
|
8449
9783
|
standalone: false
|
|
8450
9784
|
})
|
|
8451
|
-
export class
|
|
8452
|
-
protected el:
|
|
9785
|
+
export class SwirlSymbolSell {
|
|
9786
|
+
protected el: HTMLSwirlSymbolSellElement;
|
|
8453
9787
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8454
9788
|
c.detach();
|
|
8455
9789
|
this.el = r.nativeElement;
|
|
@@ -8457,22 +9791,22 @@ export class SwirlSymbolMapsHomeWork {
|
|
|
8457
9791
|
}
|
|
8458
9792
|
|
|
8459
9793
|
|
|
8460
|
-
export declare interface
|
|
9794
|
+
export declare interface SwirlSymbolSell extends Components.SwirlSymbolSell {}
|
|
8461
9795
|
|
|
8462
9796
|
|
|
8463
9797
|
@ProxyCmp({
|
|
8464
9798
|
inputs: ['size']
|
|
8465
9799
|
})
|
|
8466
9800
|
@Component({
|
|
8467
|
-
selector: 'swirl-symbol-
|
|
9801
|
+
selector: 'swirl-symbol-settings-voice',
|
|
8468
9802
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8469
9803
|
template: '<ng-content></ng-content>',
|
|
8470
9804
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8471
9805
|
inputs: ['size'],
|
|
8472
9806
|
standalone: false
|
|
8473
9807
|
})
|
|
8474
|
-
export class
|
|
8475
|
-
protected el:
|
|
9808
|
+
export class SwirlSymbolSettingsVoice {
|
|
9809
|
+
protected el: HTMLSwirlSymbolSettingsVoiceElement;
|
|
8476
9810
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8477
9811
|
c.detach();
|
|
8478
9812
|
this.el = r.nativeElement;
|
|
@@ -8480,22 +9814,22 @@ export class SwirlSymbolNotifications {
|
|
|
8480
9814
|
}
|
|
8481
9815
|
|
|
8482
9816
|
|
|
8483
|
-
export declare interface
|
|
9817
|
+
export declare interface SwirlSymbolSettingsVoice extends Components.SwirlSymbolSettingsVoice {}
|
|
8484
9818
|
|
|
8485
9819
|
|
|
8486
9820
|
@ProxyCmp({
|
|
8487
9821
|
inputs: ['size']
|
|
8488
9822
|
})
|
|
8489
9823
|
@Component({
|
|
8490
|
-
selector: 'swirl-symbol-
|
|
9824
|
+
selector: 'swirl-symbol-shopping-bag',
|
|
8491
9825
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8492
9826
|
template: '<ng-content></ng-content>',
|
|
8493
9827
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8494
9828
|
inputs: ['size'],
|
|
8495
9829
|
standalone: false
|
|
8496
9830
|
})
|
|
8497
|
-
export class
|
|
8498
|
-
protected el:
|
|
9831
|
+
export class SwirlSymbolShoppingBag {
|
|
9832
|
+
protected el: HTMLSwirlSymbolShoppingBagElement;
|
|
8499
9833
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8500
9834
|
c.detach();
|
|
8501
9835
|
this.el = r.nativeElement;
|
|
@@ -8503,22 +9837,22 @@ export class SwirlSymbolOpenInNew {
|
|
|
8503
9837
|
}
|
|
8504
9838
|
|
|
8505
9839
|
|
|
8506
|
-
export declare interface
|
|
9840
|
+
export declare interface SwirlSymbolShoppingBag extends Components.SwirlSymbolShoppingBag {}
|
|
8507
9841
|
|
|
8508
9842
|
|
|
8509
9843
|
@ProxyCmp({
|
|
8510
9844
|
inputs: ['size']
|
|
8511
9845
|
})
|
|
8512
9846
|
@Component({
|
|
8513
|
-
selector: 'swirl-symbol-
|
|
9847
|
+
selector: 'swirl-symbol-shopping-cart',
|
|
8514
9848
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8515
9849
|
template: '<ng-content></ng-content>',
|
|
8516
9850
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8517
9851
|
inputs: ['size'],
|
|
8518
9852
|
standalone: false
|
|
8519
9853
|
})
|
|
8520
|
-
export class
|
|
8521
|
-
protected el:
|
|
9854
|
+
export class SwirlSymbolShoppingCart {
|
|
9855
|
+
protected el: HTMLSwirlSymbolShoppingCartElement;
|
|
8522
9856
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8523
9857
|
c.detach();
|
|
8524
9858
|
this.el = r.nativeElement;
|
|
@@ -8526,22 +9860,22 @@ export class SwirlSymbolPedalBike {
|
|
|
8526
9860
|
}
|
|
8527
9861
|
|
|
8528
9862
|
|
|
8529
|
-
export declare interface
|
|
9863
|
+
export declare interface SwirlSymbolShoppingCart extends Components.SwirlSymbolShoppingCart {}
|
|
8530
9864
|
|
|
8531
9865
|
|
|
8532
9866
|
@ProxyCmp({
|
|
8533
9867
|
inputs: ['size']
|
|
8534
9868
|
})
|
|
8535
9869
|
@Component({
|
|
8536
|
-
selector: 'swirl-symbol-
|
|
9870
|
+
selector: 'swirl-symbol-smartphone',
|
|
8537
9871
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8538
9872
|
template: '<ng-content></ng-content>',
|
|
8539
9873
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8540
9874
|
inputs: ['size'],
|
|
8541
9875
|
standalone: false
|
|
8542
9876
|
})
|
|
8543
|
-
export class
|
|
8544
|
-
protected el:
|
|
9877
|
+
export class SwirlSymbolSmartphone {
|
|
9878
|
+
protected el: HTMLSwirlSymbolSmartphoneElement;
|
|
8545
9879
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8546
9880
|
c.detach();
|
|
8547
9881
|
this.el = r.nativeElement;
|
|
@@ -8549,22 +9883,22 @@ export class SwirlSymbolPinterest {
|
|
|
8549
9883
|
}
|
|
8550
9884
|
|
|
8551
9885
|
|
|
8552
|
-
export declare interface
|
|
9886
|
+
export declare interface SwirlSymbolSmartphone extends Components.SwirlSymbolSmartphone {}
|
|
8553
9887
|
|
|
8554
9888
|
|
|
8555
9889
|
@ProxyCmp({
|
|
8556
9890
|
inputs: ['size']
|
|
8557
9891
|
})
|
|
8558
9892
|
@Component({
|
|
8559
|
-
selector: 'swirl-symbol-
|
|
9893
|
+
selector: 'swirl-symbol-spa',
|
|
8560
9894
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8561
9895
|
template: '<ng-content></ng-content>',
|
|
8562
9896
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8563
9897
|
inputs: ['size'],
|
|
8564
9898
|
standalone: false
|
|
8565
9899
|
})
|
|
8566
|
-
export class
|
|
8567
|
-
protected el:
|
|
9900
|
+
export class SwirlSymbolSpa {
|
|
9901
|
+
protected el: HTMLSwirlSymbolSpaElement;
|
|
8568
9902
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8569
9903
|
c.detach();
|
|
8570
9904
|
this.el = r.nativeElement;
|
|
@@ -8572,22 +9906,22 @@ export class SwirlSymbolPolicy {
|
|
|
8572
9906
|
}
|
|
8573
9907
|
|
|
8574
9908
|
|
|
8575
|
-
export declare interface
|
|
9909
|
+
export declare interface SwirlSymbolSpa extends Components.SwirlSymbolSpa {}
|
|
8576
9910
|
|
|
8577
9911
|
|
|
8578
9912
|
@ProxyCmp({
|
|
8579
9913
|
inputs: ['size']
|
|
8580
9914
|
})
|
|
8581
9915
|
@Component({
|
|
8582
|
-
selector: 'swirl-symbol-
|
|
9916
|
+
selector: 'swirl-symbol-sports-soccer',
|
|
8583
9917
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8584
9918
|
template: '<ng-content></ng-content>',
|
|
8585
9919
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8586
9920
|
inputs: ['size'],
|
|
8587
9921
|
standalone: false
|
|
8588
9922
|
})
|
|
8589
|
-
export class
|
|
8590
|
-
protected el:
|
|
9923
|
+
export class SwirlSymbolSportsSoccer {
|
|
9924
|
+
protected el: HTMLSwirlSymbolSportsSoccerElement;
|
|
8591
9925
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8592
9926
|
c.detach();
|
|
8593
9927
|
this.el = r.nativeElement;
|
|
@@ -8595,22 +9929,22 @@ export class SwirlSymbolPushPin {
|
|
|
8595
9929
|
}
|
|
8596
9930
|
|
|
8597
9931
|
|
|
8598
|
-
export declare interface
|
|
9932
|
+
export declare interface SwirlSymbolSportsSoccer extends Components.SwirlSymbolSportsSoccer {}
|
|
8599
9933
|
|
|
8600
9934
|
|
|
8601
9935
|
@ProxyCmp({
|
|
8602
9936
|
inputs: ['size']
|
|
8603
9937
|
})
|
|
8604
9938
|
@Component({
|
|
8605
|
-
selector: 'swirl-symbol-
|
|
9939
|
+
selector: 'swirl-symbol-star',
|
|
8606
9940
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8607
9941
|
template: '<ng-content></ng-content>',
|
|
8608
9942
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8609
9943
|
inputs: ['size'],
|
|
8610
9944
|
standalone: false
|
|
8611
9945
|
})
|
|
8612
|
-
export class
|
|
8613
|
-
protected el:
|
|
9946
|
+
export class SwirlSymbolStar {
|
|
9947
|
+
protected el: HTMLSwirlSymbolStarElement;
|
|
8614
9948
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8615
9949
|
c.detach();
|
|
8616
9950
|
this.el = r.nativeElement;
|
|
@@ -8618,22 +9952,22 @@ export class SwirlSymbolRedeem {
|
|
|
8618
9952
|
}
|
|
8619
9953
|
|
|
8620
9954
|
|
|
8621
|
-
export declare interface
|
|
9955
|
+
export declare interface SwirlSymbolStar extends Components.SwirlSymbolStar {}
|
|
8622
9956
|
|
|
8623
9957
|
|
|
8624
9958
|
@ProxyCmp({
|
|
8625
9959
|
inputs: ['size']
|
|
8626
9960
|
})
|
|
8627
9961
|
@Component({
|
|
8628
|
-
selector: 'swirl-symbol-
|
|
9962
|
+
selector: 'swirl-symbol-supervisor-account',
|
|
8629
9963
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8630
9964
|
template: '<ng-content></ng-content>',
|
|
8631
9965
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8632
9966
|
inputs: ['size'],
|
|
8633
9967
|
standalone: false
|
|
8634
9968
|
})
|
|
8635
|
-
export class
|
|
8636
|
-
protected el:
|
|
9969
|
+
export class SwirlSymbolSupervisorAccount {
|
|
9970
|
+
protected el: HTMLSwirlSymbolSupervisorAccountElement;
|
|
8637
9971
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8638
9972
|
c.detach();
|
|
8639
9973
|
this.el = r.nativeElement;
|
|
@@ -8641,22 +9975,22 @@ export class SwirlSymbolReportProblem {
|
|
|
8641
9975
|
}
|
|
8642
9976
|
|
|
8643
9977
|
|
|
8644
|
-
export declare interface
|
|
9978
|
+
export declare interface SwirlSymbolSupervisorAccount extends Components.SwirlSymbolSupervisorAccount {}
|
|
8645
9979
|
|
|
8646
9980
|
|
|
8647
9981
|
@ProxyCmp({
|
|
8648
9982
|
inputs: ['size']
|
|
8649
9983
|
})
|
|
8650
9984
|
@Component({
|
|
8651
|
-
selector: 'swirl-symbol-
|
|
9985
|
+
selector: 'swirl-symbol-task',
|
|
8652
9986
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8653
9987
|
template: '<ng-content></ng-content>',
|
|
8654
9988
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8655
9989
|
inputs: ['size'],
|
|
8656
9990
|
standalone: false
|
|
8657
9991
|
})
|
|
8658
|
-
export class
|
|
8659
|
-
protected el:
|
|
9992
|
+
export class SwirlSymbolTask {
|
|
9993
|
+
protected el: HTMLSwirlSymbolTaskElement;
|
|
8660
9994
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8661
9995
|
c.detach();
|
|
8662
9996
|
this.el = r.nativeElement;
|
|
@@ -8664,22 +9998,22 @@ export class SwirlSymbolRestaurant {
|
|
|
8664
9998
|
}
|
|
8665
9999
|
|
|
8666
10000
|
|
|
8667
|
-
export declare interface
|
|
10001
|
+
export declare interface SwirlSymbolTask extends Components.SwirlSymbolTask {}
|
|
8668
10002
|
|
|
8669
10003
|
|
|
8670
10004
|
@ProxyCmp({
|
|
8671
10005
|
inputs: ['size']
|
|
8672
10006
|
})
|
|
8673
10007
|
@Component({
|
|
8674
|
-
selector: 'swirl-symbol-
|
|
10008
|
+
selector: 'swirl-symbol-tasks',
|
|
8675
10009
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8676
10010
|
template: '<ng-content></ng-content>',
|
|
8677
10011
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8678
10012
|
inputs: ['size'],
|
|
8679
10013
|
standalone: false
|
|
8680
10014
|
})
|
|
8681
|
-
export class
|
|
8682
|
-
protected el:
|
|
10015
|
+
export class SwirlSymbolTasks {
|
|
10016
|
+
protected el: HTMLSwirlSymbolTasksElement;
|
|
8683
10017
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8684
10018
|
c.detach();
|
|
8685
10019
|
this.el = r.nativeElement;
|
|
@@ -8687,22 +10021,22 @@ export class SwirlSymbolRoadmap {
|
|
|
8687
10021
|
}
|
|
8688
10022
|
|
|
8689
10023
|
|
|
8690
|
-
export declare interface
|
|
10024
|
+
export declare interface SwirlSymbolTasks extends Components.SwirlSymbolTasks {}
|
|
8691
10025
|
|
|
8692
10026
|
|
|
8693
10027
|
@ProxyCmp({
|
|
8694
10028
|
inputs: ['size']
|
|
8695
10029
|
})
|
|
8696
10030
|
@Component({
|
|
8697
|
-
selector: 'swirl-symbol-
|
|
10031
|
+
selector: 'swirl-symbol-thumbs-up-down',
|
|
8698
10032
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8699
10033
|
template: '<ng-content></ng-content>',
|
|
8700
10034
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8701
10035
|
inputs: ['size'],
|
|
8702
10036
|
standalone: false
|
|
8703
10037
|
})
|
|
8704
|
-
export class
|
|
8705
|
-
protected el:
|
|
10038
|
+
export class SwirlSymbolThumbsUpDown {
|
|
10039
|
+
protected el: HTMLSwirlSymbolThumbsUpDownElement;
|
|
8706
10040
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8707
10041
|
c.detach();
|
|
8708
10042
|
this.el = r.nativeElement;
|
|
@@ -8710,22 +10044,22 @@ export class SwirlSymbolRoom {
|
|
|
8710
10044
|
}
|
|
8711
10045
|
|
|
8712
10046
|
|
|
8713
|
-
export declare interface
|
|
10047
|
+
export declare interface SwirlSymbolThumbsUpDown extends Components.SwirlSymbolThumbsUpDown {}
|
|
8714
10048
|
|
|
8715
10049
|
|
|
8716
10050
|
@ProxyCmp({
|
|
8717
10051
|
inputs: ['size']
|
|
8718
10052
|
})
|
|
8719
10053
|
@Component({
|
|
8720
|
-
selector: 'swirl-symbol-
|
|
10054
|
+
selector: 'swirl-symbol-timer',
|
|
8721
10055
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8722
10056
|
template: '<ng-content></ng-content>',
|
|
8723
10057
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8724
10058
|
inputs: ['size'],
|
|
8725
10059
|
standalone: false
|
|
8726
10060
|
})
|
|
8727
|
-
export class
|
|
8728
|
-
protected el:
|
|
10061
|
+
export class SwirlSymbolTimer {
|
|
10062
|
+
protected el: HTMLSwirlSymbolTimerElement;
|
|
8729
10063
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8730
10064
|
c.detach();
|
|
8731
10065
|
this.el = r.nativeElement;
|
|
@@ -8733,22 +10067,22 @@ export class SwirlSymbolSavings {
|
|
|
8733
10067
|
}
|
|
8734
10068
|
|
|
8735
10069
|
|
|
8736
|
-
export declare interface
|
|
10070
|
+
export declare interface SwirlSymbolTimer extends Components.SwirlSymbolTimer {}
|
|
8737
10071
|
|
|
8738
10072
|
|
|
8739
10073
|
@ProxyCmp({
|
|
8740
10074
|
inputs: ['size']
|
|
8741
10075
|
})
|
|
8742
10076
|
@Component({
|
|
8743
|
-
selector: 'swirl-symbol-
|
|
10077
|
+
selector: 'swirl-symbol-tools-power-drill',
|
|
8744
10078
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8745
10079
|
template: '<ng-content></ng-content>',
|
|
8746
10080
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8747
10081
|
inputs: ['size'],
|
|
8748
10082
|
standalone: false
|
|
8749
10083
|
})
|
|
8750
|
-
export class
|
|
8751
|
-
protected el:
|
|
10084
|
+
export class SwirlSymbolToolsPowerDrill {
|
|
10085
|
+
protected el: HTMLSwirlSymbolToolsPowerDrillElement;
|
|
8752
10086
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8753
10087
|
c.detach();
|
|
8754
10088
|
this.el = r.nativeElement;
|
|
@@ -8756,22 +10090,22 @@ export class SwirlSymbolSettingsVoice {
|
|
|
8756
10090
|
}
|
|
8757
10091
|
|
|
8758
10092
|
|
|
8759
|
-
export declare interface
|
|
10093
|
+
export declare interface SwirlSymbolToolsPowerDrill extends Components.SwirlSymbolToolsPowerDrill {}
|
|
8760
10094
|
|
|
8761
10095
|
|
|
8762
10096
|
@ProxyCmp({
|
|
8763
10097
|
inputs: ['size']
|
|
8764
10098
|
})
|
|
8765
10099
|
@Component({
|
|
8766
|
-
selector: 'swirl-symbol-
|
|
10100
|
+
selector: 'swirl-symbol-train',
|
|
8767
10101
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8768
10102
|
template: '<ng-content></ng-content>',
|
|
8769
10103
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8770
10104
|
inputs: ['size'],
|
|
8771
10105
|
standalone: false
|
|
8772
10106
|
})
|
|
8773
|
-
export class
|
|
8774
|
-
protected el:
|
|
10107
|
+
export class SwirlSymbolTrain {
|
|
10108
|
+
protected el: HTMLSwirlSymbolTrainElement;
|
|
8775
10109
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8776
10110
|
c.detach();
|
|
8777
10111
|
this.el = r.nativeElement;
|
|
@@ -8779,22 +10113,22 @@ export class SwirlSymbolShoppingCart {
|
|
|
8779
10113
|
}
|
|
8780
10114
|
|
|
8781
10115
|
|
|
8782
|
-
export declare interface
|
|
10116
|
+
export declare interface SwirlSymbolTrain extends Components.SwirlSymbolTrain {}
|
|
8783
10117
|
|
|
8784
10118
|
|
|
8785
10119
|
@ProxyCmp({
|
|
8786
10120
|
inputs: ['size']
|
|
8787
10121
|
})
|
|
8788
10122
|
@Component({
|
|
8789
|
-
selector: 'swirl-symbol-
|
|
10123
|
+
selector: 'swirl-symbol-trophy',
|
|
8790
10124
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8791
10125
|
template: '<ng-content></ng-content>',
|
|
8792
10126
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8793
10127
|
inputs: ['size'],
|
|
8794
10128
|
standalone: false
|
|
8795
10129
|
})
|
|
8796
|
-
export class
|
|
8797
|
-
protected el:
|
|
10130
|
+
export class SwirlSymbolTrophy {
|
|
10131
|
+
protected el: HTMLSwirlSymbolTrophyElement;
|
|
8798
10132
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8799
10133
|
c.detach();
|
|
8800
10134
|
this.el = r.nativeElement;
|
|
@@ -8802,22 +10136,22 @@ export class SwirlSymbolSmartphone {
|
|
|
8802
10136
|
}
|
|
8803
10137
|
|
|
8804
10138
|
|
|
8805
|
-
export declare interface
|
|
10139
|
+
export declare interface SwirlSymbolTrophy extends Components.SwirlSymbolTrophy {}
|
|
8806
10140
|
|
|
8807
10141
|
|
|
8808
10142
|
@ProxyCmp({
|
|
8809
10143
|
inputs: ['size']
|
|
8810
10144
|
})
|
|
8811
10145
|
@Component({
|
|
8812
|
-
selector: 'swirl-symbol-
|
|
10146
|
+
selector: 'swirl-symbol-twitter',
|
|
8813
10147
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8814
10148
|
template: '<ng-content></ng-content>',
|
|
8815
10149
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8816
10150
|
inputs: ['size'],
|
|
8817
10151
|
standalone: false
|
|
8818
10152
|
})
|
|
8819
|
-
export class
|
|
8820
|
-
protected el:
|
|
10153
|
+
export class SwirlSymbolTwitter {
|
|
10154
|
+
protected el: HTMLSwirlSymbolTwitterElement;
|
|
8821
10155
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8822
10156
|
c.detach();
|
|
8823
10157
|
this.el = r.nativeElement;
|
|
@@ -8825,22 +10159,22 @@ export class SwirlSymbolStar {
|
|
|
8825
10159
|
}
|
|
8826
10160
|
|
|
8827
10161
|
|
|
8828
|
-
export declare interface
|
|
10162
|
+
export declare interface SwirlSymbolTwitter extends Components.SwirlSymbolTwitter {}
|
|
8829
10163
|
|
|
8830
10164
|
|
|
8831
10165
|
@ProxyCmp({
|
|
8832
10166
|
inputs: ['size']
|
|
8833
10167
|
})
|
|
8834
10168
|
@Component({
|
|
8835
|
-
selector: 'swirl-symbol-
|
|
10169
|
+
selector: 'swirl-symbol-video',
|
|
8836
10170
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8837
10171
|
template: '<ng-content></ng-content>',
|
|
8838
10172
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8839
10173
|
inputs: ['size'],
|
|
8840
10174
|
standalone: false
|
|
8841
10175
|
})
|
|
8842
|
-
export class
|
|
8843
|
-
protected el:
|
|
10176
|
+
export class SwirlSymbolVideo {
|
|
10177
|
+
protected el: HTMLSwirlSymbolVideoElement;
|
|
8844
10178
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8845
10179
|
c.detach();
|
|
8846
10180
|
this.el = r.nativeElement;
|
|
@@ -8848,22 +10182,22 @@ export class SwirlSymbolSupervisorAccount {
|
|
|
8848
10182
|
}
|
|
8849
10183
|
|
|
8850
10184
|
|
|
8851
|
-
export declare interface
|
|
10185
|
+
export declare interface SwirlSymbolVideo extends Components.SwirlSymbolVideo {}
|
|
8852
10186
|
|
|
8853
10187
|
|
|
8854
10188
|
@ProxyCmp({
|
|
8855
10189
|
inputs: ['size']
|
|
8856
10190
|
})
|
|
8857
10191
|
@Component({
|
|
8858
|
-
selector: 'swirl-symbol-
|
|
10192
|
+
selector: 'swirl-symbol-warehouse',
|
|
8859
10193
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8860
10194
|
template: '<ng-content></ng-content>',
|
|
8861
10195
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8862
10196
|
inputs: ['size'],
|
|
8863
10197
|
standalone: false
|
|
8864
10198
|
})
|
|
8865
|
-
export class
|
|
8866
|
-
protected el:
|
|
10199
|
+
export class SwirlSymbolWarehouse {
|
|
10200
|
+
protected el: HTMLSwirlSymbolWarehouseElement;
|
|
8867
10201
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8868
10202
|
c.detach();
|
|
8869
10203
|
this.el = r.nativeElement;
|
|
@@ -8871,22 +10205,22 @@ export class SwirlSymbolThumbsUpDown {
|
|
|
8871
10205
|
}
|
|
8872
10206
|
|
|
8873
10207
|
|
|
8874
|
-
export declare interface
|
|
10208
|
+
export declare interface SwirlSymbolWarehouse extends Components.SwirlSymbolWarehouse {}
|
|
8875
10209
|
|
|
8876
10210
|
|
|
8877
10211
|
@ProxyCmp({
|
|
8878
10212
|
inputs: ['size']
|
|
8879
10213
|
})
|
|
8880
10214
|
@Component({
|
|
8881
|
-
selector: 'swirl-symbol-
|
|
10215
|
+
selector: 'swirl-symbol-water-drop',
|
|
8882
10216
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8883
10217
|
template: '<ng-content></ng-content>',
|
|
8884
10218
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8885
10219
|
inputs: ['size'],
|
|
8886
10220
|
standalone: false
|
|
8887
10221
|
})
|
|
8888
|
-
export class
|
|
8889
|
-
protected el:
|
|
10222
|
+
export class SwirlSymbolWaterDrop {
|
|
10223
|
+
protected el: HTMLSwirlSymbolWaterDropElement;
|
|
8890
10224
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
8891
10225
|
c.detach();
|
|
8892
10226
|
this.el = r.nativeElement;
|
|
@@ -8894,7 +10228,7 @@ export class SwirlSymbolTwitter {
|
|
|
8894
10228
|
}
|
|
8895
10229
|
|
|
8896
10230
|
|
|
8897
|
-
export declare interface
|
|
10231
|
+
export declare interface SwirlSymbolWaterDrop extends Components.SwirlSymbolWaterDrop {}
|
|
8898
10232
|
|
|
8899
10233
|
|
|
8900
10234
|
@ProxyCmp({
|
|
@@ -8966,6 +10300,29 @@ export class SwirlSymbolWeibo {
|
|
|
8966
10300
|
export declare interface SwirlSymbolWeibo extends Components.SwirlSymbolWeibo {}
|
|
8967
10301
|
|
|
8968
10302
|
|
|
10303
|
+
@ProxyCmp({
|
|
10304
|
+
inputs: ['size']
|
|
10305
|
+
})
|
|
10306
|
+
@Component({
|
|
10307
|
+
selector: 'swirl-symbol-wifi',
|
|
10308
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
10309
|
+
template: '<ng-content></ng-content>',
|
|
10310
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
10311
|
+
inputs: ['size'],
|
|
10312
|
+
standalone: false
|
|
10313
|
+
})
|
|
10314
|
+
export class SwirlSymbolWifi {
|
|
10315
|
+
protected el: HTMLSwirlSymbolWifiElement;
|
|
10316
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
10317
|
+
c.detach();
|
|
10318
|
+
this.el = r.nativeElement;
|
|
10319
|
+
}
|
|
10320
|
+
}
|
|
10321
|
+
|
|
10322
|
+
|
|
10323
|
+
export declare interface SwirlSymbolWifi extends Components.SwirlSymbolWifi {}
|
|
10324
|
+
|
|
10325
|
+
|
|
8969
10326
|
@ProxyCmp({
|
|
8970
10327
|
inputs: ['size']
|
|
8971
10328
|
})
|