@getflip/swirl-components-angular 0.14.0 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +63 -0
- package/dist/component-library/esm2020/lib/component-library.module.mjs +3 -3
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +195 -19
- package/dist/component-library/esm2020/lib/stencil-generated/index.mjs +8 -1
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +197 -21
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +197 -21
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/component-library.module.d.ts +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +76 -5
- 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 +169 -13
- package/projects/component-library/src/lib/stencil-generated/index.ts +7 -0
|
@@ -643,15 +643,15 @@ let SwirlFileViewer = class SwirlFileViewer {
|
|
|
643
643
|
this.z = z;
|
|
644
644
|
c.detach();
|
|
645
645
|
this.el = r.nativeElement;
|
|
646
|
-
proxyOutputs(this, this.el, ['activate']);
|
|
646
|
+
proxyOutputs(this, this.el, ['activate', 'visiblePagesChange']);
|
|
647
647
|
}
|
|
648
648
|
};
|
|
649
649
|
SwirlFileViewer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlFileViewer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
650
|
-
SwirlFileViewer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlFileViewer, selector: "swirl-file-viewer", inputs: { active: "active", autoplay: "autoplay", description: "description", errorMessage: "errorMessage", file: "file", type: "type", typeUnsupportedMessage: "typeUnsupportedMessage", zoom: "zoom" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
650
|
+
SwirlFileViewer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlFileViewer, selector: "swirl-file-viewer", inputs: { active: "active", autoplay: "autoplay", description: "description", errorMessage: "errorMessage", file: "file", thumbnailUrl: "thumbnailUrl", type: "type", typeUnsupportedMessage: "typeUnsupportedMessage", viewMode: "viewMode", zoom: "zoom" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
651
651
|
SwirlFileViewer = __decorate([
|
|
652
652
|
ProxyCmp({
|
|
653
653
|
defineCustomElementFn: undefined,
|
|
654
|
-
inputs: ['active', 'autoplay', 'description', 'errorMessage', 'file', 'type', 'typeUnsupportedMessage', 'zoom'],
|
|
654
|
+
inputs: ['active', 'autoplay', 'description', 'errorMessage', 'file', 'thumbnailUrl', 'type', 'typeUnsupportedMessage', 'viewMode', 'zoom'],
|
|
655
655
|
methods: ['download', 'print']
|
|
656
656
|
})
|
|
657
657
|
], SwirlFileViewer);
|
|
@@ -661,7 +661,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
661
661
|
selector: 'swirl-file-viewer',
|
|
662
662
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
663
663
|
template: '<ng-content></ng-content>',
|
|
664
|
-
inputs: ['active', 'autoplay', 'description', 'errorMessage', 'file', 'type', 'typeUnsupportedMessage', 'zoom']
|
|
664
|
+
inputs: ['active', 'autoplay', 'description', 'errorMessage', 'file', 'thumbnailUrl', 'type', 'typeUnsupportedMessage', 'viewMode', 'zoom']
|
|
665
665
|
}]
|
|
666
666
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
667
667
|
let SwirlFileViewerAudio = class SwirlFileViewerAudio {
|
|
@@ -745,16 +745,16 @@ let SwirlFileViewerPdf = class SwirlFileViewerPdf {
|
|
|
745
745
|
this.z = z;
|
|
746
746
|
c.detach();
|
|
747
747
|
this.el = r.nativeElement;
|
|
748
|
-
proxyOutputs(this, this.el, ['activate']);
|
|
748
|
+
proxyOutputs(this, this.el, ['activate', 'visiblePagesChange']);
|
|
749
749
|
}
|
|
750
750
|
};
|
|
751
751
|
SwirlFileViewerPdf.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlFileViewerPdf, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
752
|
-
SwirlFileViewerPdf.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlFileViewerPdf, selector: "swirl-file-viewer-pdf", inputs: { errorMessage: "errorMessage", file: "file", singlePageMode: "singlePageMode", zoom: "zoom" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
752
|
+
SwirlFileViewerPdf.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlFileViewerPdf, selector: "swirl-file-viewer-pdf", inputs: { errorMessage: "errorMessage", file: "file", singlePageMode: "singlePageMode", viewMode: "viewMode", zoom: "zoom" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
753
753
|
SwirlFileViewerPdf = __decorate([
|
|
754
754
|
ProxyCmp({
|
|
755
755
|
defineCustomElementFn: undefined,
|
|
756
|
-
inputs: ['errorMessage', 'file', 'singlePageMode', 'zoom'],
|
|
757
|
-
methods: ['print', 'nextPage', 'previousPage', 'setPage']
|
|
756
|
+
inputs: ['errorMessage', 'file', 'singlePageMode', 'viewMode', 'zoom'],
|
|
757
|
+
methods: ['getThumbnails', 'print', 'nextPage', 'previousPage', 'setPage']
|
|
758
758
|
})
|
|
759
759
|
], SwirlFileViewerPdf);
|
|
760
760
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlFileViewerPdf, decorators: [{
|
|
@@ -763,7 +763,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
763
763
|
selector: 'swirl-file-viewer-pdf',
|
|
764
764
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
765
765
|
template: '<ng-content></ng-content>',
|
|
766
|
-
inputs: ['errorMessage', 'file', 'singlePageMode', 'zoom']
|
|
766
|
+
inputs: ['errorMessage', 'file', 'singlePageMode', 'viewMode', 'zoom']
|
|
767
767
|
}]
|
|
768
768
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
769
769
|
let SwirlFileViewerText = class SwirlFileViewerText {
|
|
@@ -1656,6 +1656,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
1656
1656
|
inputs: ['size']
|
|
1657
1657
|
}]
|
|
1658
1658
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1659
|
+
let SwirlIconDoubleArrowLeft = class SwirlIconDoubleArrowLeft {
|
|
1660
|
+
constructor(c, r, z) {
|
|
1661
|
+
this.z = z;
|
|
1662
|
+
c.detach();
|
|
1663
|
+
this.el = r.nativeElement;
|
|
1664
|
+
}
|
|
1665
|
+
};
|
|
1666
|
+
SwirlIconDoubleArrowLeft.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlIconDoubleArrowLeft, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1667
|
+
SwirlIconDoubleArrowLeft.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlIconDoubleArrowLeft, selector: "swirl-icon-double-arrow-left", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1668
|
+
SwirlIconDoubleArrowLeft = __decorate([
|
|
1669
|
+
ProxyCmp({
|
|
1670
|
+
defineCustomElementFn: undefined,
|
|
1671
|
+
inputs: ['size']
|
|
1672
|
+
})
|
|
1673
|
+
], SwirlIconDoubleArrowLeft);
|
|
1674
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlIconDoubleArrowLeft, decorators: [{
|
|
1675
|
+
type: Component,
|
|
1676
|
+
args: [{
|
|
1677
|
+
selector: 'swirl-icon-double-arrow-left',
|
|
1678
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1679
|
+
template: '<ng-content></ng-content>',
|
|
1680
|
+
inputs: ['size']
|
|
1681
|
+
}]
|
|
1682
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1683
|
+
let SwirlIconDoubleArrowRight = class SwirlIconDoubleArrowRight {
|
|
1684
|
+
constructor(c, r, z) {
|
|
1685
|
+
this.z = z;
|
|
1686
|
+
c.detach();
|
|
1687
|
+
this.el = r.nativeElement;
|
|
1688
|
+
}
|
|
1689
|
+
};
|
|
1690
|
+
SwirlIconDoubleArrowRight.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlIconDoubleArrowRight, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1691
|
+
SwirlIconDoubleArrowRight.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlIconDoubleArrowRight, selector: "swirl-icon-double-arrow-right", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1692
|
+
SwirlIconDoubleArrowRight = __decorate([
|
|
1693
|
+
ProxyCmp({
|
|
1694
|
+
defineCustomElementFn: undefined,
|
|
1695
|
+
inputs: ['size']
|
|
1696
|
+
})
|
|
1697
|
+
], SwirlIconDoubleArrowRight);
|
|
1698
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlIconDoubleArrowRight, decorators: [{
|
|
1699
|
+
type: Component,
|
|
1700
|
+
args: [{
|
|
1701
|
+
selector: 'swirl-icon-double-arrow-right',
|
|
1702
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1703
|
+
template: '<ng-content></ng-content>',
|
|
1704
|
+
inputs: ['size']
|
|
1705
|
+
}]
|
|
1706
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1659
1707
|
let SwirlIconDownload = class SwirlIconDownload {
|
|
1660
1708
|
constructor(c, r, z) {
|
|
1661
1709
|
this.z = z;
|
|
@@ -1872,6 +1920,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
1872
1920
|
inputs: ['size']
|
|
1873
1921
|
}]
|
|
1874
1922
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1923
|
+
let SwirlIconFileCopy = class SwirlIconFileCopy {
|
|
1924
|
+
constructor(c, r, z) {
|
|
1925
|
+
this.z = z;
|
|
1926
|
+
c.detach();
|
|
1927
|
+
this.el = r.nativeElement;
|
|
1928
|
+
}
|
|
1929
|
+
};
|
|
1930
|
+
SwirlIconFileCopy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlIconFileCopy, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1931
|
+
SwirlIconFileCopy.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlIconFileCopy, selector: "swirl-icon-file-copy", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1932
|
+
SwirlIconFileCopy = __decorate([
|
|
1933
|
+
ProxyCmp({
|
|
1934
|
+
defineCustomElementFn: undefined,
|
|
1935
|
+
inputs: ['size']
|
|
1936
|
+
})
|
|
1937
|
+
], SwirlIconFileCopy);
|
|
1938
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlIconFileCopy, decorators: [{
|
|
1939
|
+
type: Component,
|
|
1940
|
+
args: [{
|
|
1941
|
+
selector: 'swirl-icon-file-copy',
|
|
1942
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1943
|
+
template: '<ng-content></ng-content>',
|
|
1944
|
+
inputs: ['size']
|
|
1945
|
+
}]
|
|
1946
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1875
1947
|
let SwirlIconFilter = class SwirlIconFilter {
|
|
1876
1948
|
constructor(c, r, z) {
|
|
1877
1949
|
this.z = z;
|
|
@@ -1896,6 +1968,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
1896
1968
|
inputs: ['size']
|
|
1897
1969
|
}]
|
|
1898
1970
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1971
|
+
let SwirlIconFolder = class SwirlIconFolder {
|
|
1972
|
+
constructor(c, r, z) {
|
|
1973
|
+
this.z = z;
|
|
1974
|
+
c.detach();
|
|
1975
|
+
this.el = r.nativeElement;
|
|
1976
|
+
}
|
|
1977
|
+
};
|
|
1978
|
+
SwirlIconFolder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlIconFolder, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1979
|
+
SwirlIconFolder.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlIconFolder, selector: "swirl-icon-folder", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1980
|
+
SwirlIconFolder = __decorate([
|
|
1981
|
+
ProxyCmp({
|
|
1982
|
+
defineCustomElementFn: undefined,
|
|
1983
|
+
inputs: ['size']
|
|
1984
|
+
})
|
|
1985
|
+
], SwirlIconFolder);
|
|
1986
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlIconFolder, decorators: [{
|
|
1987
|
+
type: Component,
|
|
1988
|
+
args: [{
|
|
1989
|
+
selector: 'swirl-icon-folder',
|
|
1990
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1991
|
+
template: '<ng-content></ng-content>',
|
|
1992
|
+
inputs: ['size']
|
|
1993
|
+
}]
|
|
1994
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1899
1995
|
let SwirlIconFolderShared = class SwirlIconFolderShared {
|
|
1900
1996
|
constructor(c, r, z) {
|
|
1901
1997
|
this.z = z;
|
|
@@ -2376,6 +2472,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
2376
2472
|
inputs: ['size']
|
|
2377
2473
|
}]
|
|
2378
2474
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2475
|
+
let SwirlIconMenuBook = class SwirlIconMenuBook {
|
|
2476
|
+
constructor(c, r, z) {
|
|
2477
|
+
this.z = z;
|
|
2478
|
+
c.detach();
|
|
2479
|
+
this.el = r.nativeElement;
|
|
2480
|
+
}
|
|
2481
|
+
};
|
|
2482
|
+
SwirlIconMenuBook.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlIconMenuBook, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2483
|
+
SwirlIconMenuBook.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlIconMenuBook, selector: "swirl-icon-menu-book", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2484
|
+
SwirlIconMenuBook = __decorate([
|
|
2485
|
+
ProxyCmp({
|
|
2486
|
+
defineCustomElementFn: undefined,
|
|
2487
|
+
inputs: ['size']
|
|
2488
|
+
})
|
|
2489
|
+
], SwirlIconMenuBook);
|
|
2490
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlIconMenuBook, decorators: [{
|
|
2491
|
+
type: Component,
|
|
2492
|
+
args: [{
|
|
2493
|
+
selector: 'swirl-icon-menu-book',
|
|
2494
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2495
|
+
template: '<ng-content></ng-content>',
|
|
2496
|
+
inputs: ['size']
|
|
2497
|
+
}]
|
|
2498
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2379
2499
|
let SwirlIconMenuFilled = class SwirlIconMenuFilled {
|
|
2380
2500
|
constructor(c, r, z) {
|
|
2381
2501
|
this.z = z;
|
|
@@ -3224,11 +3344,11 @@ let SwirlLightbox = class SwirlLightbox {
|
|
|
3224
3344
|
}
|
|
3225
3345
|
};
|
|
3226
3346
|
SwirlLightbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlLightbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
3227
|
-
SwirlLightbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlLightbox, selector: "swirl-lightbox", inputs: { closeButtonLabel: "closeButtonLabel", downloadButtonLabel: "downloadButtonLabel", label: "label", nextSlideButtonLabel: "nextSlideButtonLabel", previousSlideButtonLabel: "previousSlideButtonLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3347
|
+
SwirlLightbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlLightbox, selector: "swirl-lightbox", inputs: { closeButtonLabel: "closeButtonLabel", downloadButtonLabel: "downloadButtonLabel", label: "label", menuLabel: "menuLabel", menuTriggerLabel: "menuTriggerLabel", nextSlideButtonLabel: "nextSlideButtonLabel", previousSlideButtonLabel: "previousSlideButtonLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3228
3348
|
SwirlLightbox = __decorate([
|
|
3229
3349
|
ProxyCmp({
|
|
3230
3350
|
defineCustomElementFn: undefined,
|
|
3231
|
-
inputs: ['closeButtonLabel', 'downloadButtonLabel', 'label', 'nextSlideButtonLabel', 'previousSlideButtonLabel'],
|
|
3351
|
+
inputs: ['closeButtonLabel', 'downloadButtonLabel', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel'],
|
|
3232
3352
|
methods: ['open', 'close', 'activateSlide']
|
|
3233
3353
|
})
|
|
3234
3354
|
], SwirlLightbox);
|
|
@@ -3238,7 +3358,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
3238
3358
|
selector: 'swirl-lightbox',
|
|
3239
3359
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3240
3360
|
template: '<ng-content></ng-content>',
|
|
3241
|
-
inputs: ['closeButtonLabel', 'downloadButtonLabel', 'label', 'nextSlideButtonLabel', 'previousSlideButtonLabel']
|
|
3361
|
+
inputs: ['closeButtonLabel', 'downloadButtonLabel', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel']
|
|
3242
3362
|
}]
|
|
3243
3363
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3244
3364
|
let SwirlLink = class SwirlLink {
|
|
@@ -3420,11 +3540,11 @@ let SwirlPdfReader = class SwirlPdfReader {
|
|
|
3420
3540
|
}
|
|
3421
3541
|
};
|
|
3422
3542
|
SwirlPdfReader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlPdfReader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
3423
|
-
SwirlPdfReader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlPdfReader, selector: "swirl-pdf-reader", inputs: { autoZoomLabel: "autoZoomLabel", closeButtonLabel: "closeButtonLabel", downloadButtonLabel: "downloadButtonLabel", file: "file", label: "label", printButtonLabel: "printButtonLabel", zoomInButtonLabel: "zoomInButtonLabel", zoomOutButtonLabel: "zoomOutButtonLabel", zoomSelectLabel: "zoomSelectLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3543
|
+
SwirlPdfReader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlPdfReader, selector: "swirl-pdf-reader", inputs: { autoZoomLabel: "autoZoomLabel", closeButtonLabel: "closeButtonLabel", downloadButtonLabel: "downloadButtonLabel", file: "file", fileTypeLabel: "fileTypeLabel", label: "label", menuLabel: "menuLabel", menuTriggerLabel: "menuTriggerLabel", printButtonLabel: "printButtonLabel", sideBySideButtonLabel: "sideBySideButtonLabel", thumbnailButtonLabel: "thumbnailButtonLabel", thumbnailsButtonLabel: "thumbnailsButtonLabel", thumbnailsLabel: "thumbnailsLabel", zoomInButtonLabel: "zoomInButtonLabel", zoomOutButtonLabel: "zoomOutButtonLabel", zoomSelectLabel: "zoomSelectLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3424
3544
|
SwirlPdfReader = __decorate([
|
|
3425
3545
|
ProxyCmp({
|
|
3426
3546
|
defineCustomElementFn: undefined,
|
|
3427
|
-
inputs: ['autoZoomLabel', 'closeButtonLabel', 'downloadButtonLabel', 'file', 'label', 'printButtonLabel', 'zoomInButtonLabel', 'zoomOutButtonLabel', 'zoomSelectLabel'],
|
|
3547
|
+
inputs: ['autoZoomLabel', 'closeButtonLabel', 'downloadButtonLabel', 'file', 'fileTypeLabel', 'label', 'menuLabel', 'menuTriggerLabel', 'printButtonLabel', 'sideBySideButtonLabel', 'thumbnailButtonLabel', 'thumbnailsButtonLabel', 'thumbnailsLabel', 'zoomInButtonLabel', 'zoomOutButtonLabel', 'zoomSelectLabel'],
|
|
3428
3548
|
methods: ['open', 'close']
|
|
3429
3549
|
})
|
|
3430
3550
|
], SwirlPdfReader);
|
|
@@ -3434,7 +3554,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
3434
3554
|
selector: 'swirl-pdf-reader',
|
|
3435
3555
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3436
3556
|
template: '<ng-content></ng-content>',
|
|
3437
|
-
inputs: ['autoZoomLabel', 'closeButtonLabel', 'downloadButtonLabel', 'file', 'label', 'printButtonLabel', 'zoomInButtonLabel', 'zoomOutButtonLabel', 'zoomSelectLabel']
|
|
3557
|
+
inputs: ['autoZoomLabel', 'closeButtonLabel', 'downloadButtonLabel', 'file', 'fileTypeLabel', 'label', 'menuLabel', 'menuTriggerLabel', 'printButtonLabel', 'sideBySideButtonLabel', 'thumbnailButtonLabel', 'thumbnailsButtonLabel', 'thumbnailsLabel', 'zoomInButtonLabel', 'zoomOutButtonLabel', 'zoomSelectLabel']
|
|
3438
3558
|
}]
|
|
3439
3559
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3440
3560
|
let SwirlPopover = class SwirlPopover {
|
|
@@ -3446,11 +3566,11 @@ let SwirlPopover = class SwirlPopover {
|
|
|
3446
3566
|
}
|
|
3447
3567
|
};
|
|
3448
3568
|
SwirlPopover.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
3449
|
-
SwirlPopover.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlPopover, selector: "swirl-popover", inputs: { animation: "animation", enableFlip: "enableFlip", label: "label", offset: "offset", placement: "placement", popoverId: "popoverId", trigger: "trigger", useContainerWidth: "useContainerWidth" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3569
|
+
SwirlPopover.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlPopover, selector: "swirl-popover", inputs: { animation: "animation", disableScrollLock: "disableScrollLock", enableFlip: "enableFlip", label: "label", offset: "offset", placement: "placement", popoverId: "popoverId", trigger: "trigger", useContainerWidth: "useContainerWidth" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3450
3570
|
SwirlPopover = __decorate([
|
|
3451
3571
|
ProxyCmp({
|
|
3452
3572
|
defineCustomElementFn: undefined,
|
|
3453
|
-
inputs: ['animation', 'enableFlip', 'label', 'offset', 'placement', 'popoverId', 'trigger', 'useContainerWidth'],
|
|
3573
|
+
inputs: ['animation', 'disableScrollLock', 'enableFlip', 'label', 'offset', 'placement', 'popoverId', 'trigger', 'useContainerWidth'],
|
|
3454
3574
|
methods: ['close', 'open']
|
|
3455
3575
|
})
|
|
3456
3576
|
], SwirlPopover);
|
|
@@ -3460,7 +3580,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
3460
3580
|
selector: 'swirl-popover',
|
|
3461
3581
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3462
3582
|
template: '<ng-content></ng-content>',
|
|
3463
|
-
inputs: ['animation', 'enableFlip', 'label', 'offset', 'placement', 'popoverId', 'trigger', 'useContainerWidth']
|
|
3583
|
+
inputs: ['animation', 'disableScrollLock', 'enableFlip', 'label', 'offset', 'placement', 'popoverId', 'trigger', 'useContainerWidth']
|
|
3464
3584
|
}]
|
|
3465
3585
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3466
3586
|
let SwirlProgressIndicator = class SwirlProgressIndicator {
|
|
@@ -3683,6 +3803,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
3683
3803
|
template: '<ng-content></ng-content>'
|
|
3684
3804
|
}]
|
|
3685
3805
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3806
|
+
let SwirlShellLayout = class SwirlShellLayout {
|
|
3807
|
+
constructor(c, r, z) {
|
|
3808
|
+
this.z = z;
|
|
3809
|
+
c.detach();
|
|
3810
|
+
this.el = r.nativeElement;
|
|
3811
|
+
}
|
|
3812
|
+
};
|
|
3813
|
+
SwirlShellLayout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlShellLayout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
3814
|
+
SwirlShellLayout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlShellLayout, selector: "swirl-shell-layout", inputs: { mainNavigationLabel: "mainNavigationLabel", sidebarToggleLabel: "sidebarToggleLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3815
|
+
SwirlShellLayout = __decorate([
|
|
3816
|
+
ProxyCmp({
|
|
3817
|
+
defineCustomElementFn: undefined,
|
|
3818
|
+
inputs: ['mainNavigationLabel', 'sidebarToggleLabel'],
|
|
3819
|
+
methods: ['collapseSidebar', 'extendSidebar']
|
|
3820
|
+
})
|
|
3821
|
+
], SwirlShellLayout);
|
|
3822
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlShellLayout, decorators: [{
|
|
3823
|
+
type: Component,
|
|
3824
|
+
args: [{
|
|
3825
|
+
selector: 'swirl-shell-layout',
|
|
3826
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3827
|
+
template: '<ng-content></ng-content>',
|
|
3828
|
+
inputs: ['mainNavigationLabel', 'sidebarToggleLabel']
|
|
3829
|
+
}]
|
|
3830
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3831
|
+
let SwirlShellNavigationItem = class SwirlShellNavigationItem {
|
|
3832
|
+
constructor(c, r, z) {
|
|
3833
|
+
this.z = z;
|
|
3834
|
+
c.detach();
|
|
3835
|
+
this.el = r.nativeElement;
|
|
3836
|
+
}
|
|
3837
|
+
};
|
|
3838
|
+
SwirlShellNavigationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlShellNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
3839
|
+
SwirlShellNavigationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlShellNavigationItem, selector: "swirl-shell-navigation-item", inputs: { active: "active", icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3840
|
+
SwirlShellNavigationItem = __decorate([
|
|
3841
|
+
ProxyCmp({
|
|
3842
|
+
defineCustomElementFn: undefined,
|
|
3843
|
+
inputs: ['active', 'icon', 'label']
|
|
3844
|
+
})
|
|
3845
|
+
], SwirlShellNavigationItem);
|
|
3846
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlShellNavigationItem, decorators: [{
|
|
3847
|
+
type: Component,
|
|
3848
|
+
args: [{
|
|
3849
|
+
selector: 'swirl-shell-navigation-item',
|
|
3850
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3851
|
+
template: '<ng-content></ng-content>',
|
|
3852
|
+
inputs: ['active', 'icon', 'label']
|
|
3853
|
+
}]
|
|
3854
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3686
3855
|
let SwirlSkeletonBox = class SwirlSkeletonBox {
|
|
3687
3856
|
constructor(c, r, z) {
|
|
3688
3857
|
this.z = z;
|
|
@@ -4442,6 +4611,8 @@ const DIRECTIVES = [
|
|
|
4442
4611
|
SwirlIconDateRange,
|
|
4443
4612
|
SwirlIconDelete,
|
|
4444
4613
|
SwirlIconDescription,
|
|
4614
|
+
SwirlIconDoubleArrowLeft,
|
|
4615
|
+
SwirlIconDoubleArrowRight,
|
|
4445
4616
|
SwirlIconDownload,
|
|
4446
4617
|
SwirlIconDragHandle,
|
|
4447
4618
|
SwirlIconEdit,
|
|
@@ -4451,7 +4622,9 @@ const DIRECTIVES = [
|
|
|
4451
4622
|
SwirlIconExpandLess,
|
|
4452
4623
|
SwirlIconExpandMore,
|
|
4453
4624
|
SwirlIconFile,
|
|
4625
|
+
SwirlIconFileCopy,
|
|
4454
4626
|
SwirlIconFilter,
|
|
4627
|
+
SwirlIconFolder,
|
|
4455
4628
|
SwirlIconFolderShared,
|
|
4456
4629
|
SwirlIconFullscreen,
|
|
4457
4630
|
SwirlIconFullscreenExit,
|
|
@@ -4472,6 +4645,7 @@ const DIRECTIVES = [
|
|
|
4472
4645
|
SwirlIconManageAccounts,
|
|
4473
4646
|
SwirlIconMention,
|
|
4474
4647
|
SwirlIconMenu,
|
|
4648
|
+
SwirlIconMenuBook,
|
|
4475
4649
|
SwirlIconMenuFilled,
|
|
4476
4650
|
SwirlIconMenuOutlined,
|
|
4477
4651
|
SwirlIconMessage,
|
|
@@ -4526,6 +4700,8 @@ const DIRECTIVES = [
|
|
|
4526
4700
|
SwirlSearch,
|
|
4527
4701
|
SwirlSelect,
|
|
4528
4702
|
SwirlSeparator,
|
|
4703
|
+
SwirlShellLayout,
|
|
4704
|
+
SwirlShellNavigationItem,
|
|
4529
4705
|
SwirlSkeletonBox,
|
|
4530
4706
|
SwirlSkeletonText,
|
|
4531
4707
|
SwirlSpinner,
|
|
@@ -4554,9 +4730,9 @@ const DIRECTIVES = [
|
|
|
4554
4730
|
class SwirlComponentsModule {
|
|
4555
4731
|
}
|
|
4556
4732
|
SwirlComponentsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4557
|
-
SwirlComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.2", ngImport: i0, type: SwirlComponentsModule, declarations: [FileManager, SwirlActionList, SwirlActionListItem, SwirlActionListSection, SwirlAppLayout, SwirlAutocomplete, SwirlAvatar, SwirlAvatarGroup, SwirlBadge, SwirlBanner, SwirlBox, SwirlButton, SwirlButtonGroup, SwirlCard, SwirlCheckbox, SwirlChip, SwirlConsoleLayout, SwirlDateInput, SwirlDatePicker, SwirlDescriptionList, SwirlDescriptionListItem, SwirlDialog, SwirlEmptyState, SwirlFileUploader, SwirlFileViewer, SwirlFileViewerAudio, SwirlFileViewerCsv, SwirlFileViewerImage, SwirlFileViewerPdf, SwirlFileViewerText, SwirlFileViewerVideo, SwirlFormControl, SwirlFormGroup, SwirlHeading, SwirlIconAdd, SwirlIconAddPhoto, SwirlIconAdminPanelSettings, SwirlIconArrowBack, SwirlIconArrowDownward, SwirlIconArrowForward, SwirlIconArrowLeft, SwirlIconArrowRight, SwirlIconArrowRightSmall, SwirlIconArrowUpward, SwirlIconAttachment, SwirlIconBlock, SwirlIconBookmark, SwirlIconCancel, SwirlIconChatBubble, SwirlIconChatsFilled, SwirlIconChatsOutlined, SwirlIconCheck, SwirlIconCheckCircle, SwirlIconCheckSmall, SwirlIconCheckStrong, SwirlIconChevronLeft, SwirlIconChevronRight, SwirlIconClose, SwirlIconCloseSmall, SwirlIconCloudUpload, SwirlIconColumn, SwirlIconComment, SwirlIconCopy, SwirlIconDateRange, SwirlIconDelete, SwirlIconDescription, SwirlIconDownload, SwirlIconDragHandle, SwirlIconEdit, SwirlIconEmojiMood, SwirlIconEmojiSatisfied, SwirlIconError, SwirlIconExpandLess, SwirlIconExpandMore, SwirlIconFile, SwirlIconFilter, SwirlIconFolderShared, SwirlIconFullscreen, SwirlIconFullscreenExit, SwirlIconGroupAssign, SwirlIconGroups, SwirlIconGroupsCustom, SwirlIconGroupsFilled, SwirlIconGroupsOutlined, SwirlIconHelp, SwirlIconImage, SwirlIconInfo, SwirlIconInventory, SwirlIconLike, SwirlIconLink, SwirlIconLock, SwirlIconLogout, SwirlIconMail, SwirlIconManageAccounts, SwirlIconMention, SwirlIconMenu, SwirlIconMenuFilled, SwirlIconMenuOutlined, SwirlIconMessage, SwirlIconMoreHorizontal, SwirlIconMoreVertikal, SwirlIconNewsFilled, SwirlIconNewsOutlined, SwirlIconNotifications, SwirlIconNotificationsActive, SwirlIconNotificationsOff, SwirlIconOpenInNew, SwirlIconPeopleAlt, SwirlIconPerson, SwirlIconPersonOff, SwirlIconPhone, SwirlIconPoll, SwirlIconPrint, SwirlIconRecieved, SwirlIconRemove, SwirlIconSearch, SwirlIconSearchStrong, SwirlIconSend, SwirlIconSettings, SwirlIconSync, SwirlIconTasksFilled, SwirlIconTasksOutlined, SwirlIconTimeFilled, SwirlIconTimeOutlined, SwirlIconToday, SwirlIconUserAssign, SwirlIconVideoCamera, SwirlIconVisibility, SwirlIconVisibilityOff, SwirlIconWarning, SwirlInlineError, SwirlLightbox, SwirlLink, SwirlList, SwirlModal, SwirlOptionList, SwirlOptionListItem, SwirlOptionListSection, SwirlPagination, SwirlPdfReader, SwirlPopover, SwirlProgressIndicator, SwirlRadio, SwirlRadioGroup, SwirlResourceList, SwirlResourceListFileItem, SwirlResourceListItem, SwirlSearch, SwirlSelect, SwirlSeparator, SwirlSkeletonBox, SwirlSkeletonText, SwirlSpinner, SwirlStack, SwirlSwitch, SwirlTab, SwirlTable, SwirlTableCell, SwirlTableColumn, SwirlTableRow, SwirlTableRowGroup, SwirlTabs, SwirlTag, SwirlText, SwirlTextInput, SwirlThemeProvider, SwirlThumbnail, SwirlToast, SwirlToastProvider, SwirlTooltip, SwirlTreeNavigationItem, SwirlVideoThumbnail, SwirlVisuallyHidden, BooleanValueAccessor,
|
|
4733
|
+
SwirlComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.2", ngImport: i0, type: SwirlComponentsModule, declarations: [FileManager, SwirlActionList, SwirlActionListItem, SwirlActionListSection, SwirlAppLayout, SwirlAutocomplete, SwirlAvatar, SwirlAvatarGroup, SwirlBadge, SwirlBanner, SwirlBox, SwirlButton, SwirlButtonGroup, SwirlCard, SwirlCheckbox, SwirlChip, SwirlConsoleLayout, SwirlDateInput, SwirlDatePicker, SwirlDescriptionList, SwirlDescriptionListItem, SwirlDialog, SwirlEmptyState, SwirlFileUploader, SwirlFileViewer, SwirlFileViewerAudio, SwirlFileViewerCsv, SwirlFileViewerImage, SwirlFileViewerPdf, SwirlFileViewerText, SwirlFileViewerVideo, SwirlFormControl, SwirlFormGroup, SwirlHeading, SwirlIconAdd, SwirlIconAddPhoto, SwirlIconAdminPanelSettings, SwirlIconArrowBack, SwirlIconArrowDownward, SwirlIconArrowForward, SwirlIconArrowLeft, SwirlIconArrowRight, SwirlIconArrowRightSmall, SwirlIconArrowUpward, SwirlIconAttachment, SwirlIconBlock, SwirlIconBookmark, SwirlIconCancel, SwirlIconChatBubble, SwirlIconChatsFilled, SwirlIconChatsOutlined, SwirlIconCheck, SwirlIconCheckCircle, SwirlIconCheckSmall, SwirlIconCheckStrong, SwirlIconChevronLeft, SwirlIconChevronRight, SwirlIconClose, SwirlIconCloseSmall, SwirlIconCloudUpload, SwirlIconColumn, SwirlIconComment, SwirlIconCopy, SwirlIconDateRange, SwirlIconDelete, SwirlIconDescription, SwirlIconDoubleArrowLeft, SwirlIconDoubleArrowRight, SwirlIconDownload, SwirlIconDragHandle, SwirlIconEdit, SwirlIconEmojiMood, SwirlIconEmojiSatisfied, SwirlIconError, SwirlIconExpandLess, SwirlIconExpandMore, SwirlIconFile, SwirlIconFileCopy, SwirlIconFilter, SwirlIconFolder, SwirlIconFolderShared, SwirlIconFullscreen, SwirlIconFullscreenExit, SwirlIconGroupAssign, SwirlIconGroups, SwirlIconGroupsCustom, SwirlIconGroupsFilled, SwirlIconGroupsOutlined, SwirlIconHelp, SwirlIconImage, SwirlIconInfo, SwirlIconInventory, SwirlIconLike, SwirlIconLink, SwirlIconLock, SwirlIconLogout, SwirlIconMail, SwirlIconManageAccounts, SwirlIconMention, SwirlIconMenu, SwirlIconMenuBook, SwirlIconMenuFilled, SwirlIconMenuOutlined, SwirlIconMessage, SwirlIconMoreHorizontal, SwirlIconMoreVertikal, SwirlIconNewsFilled, SwirlIconNewsOutlined, SwirlIconNotifications, SwirlIconNotificationsActive, SwirlIconNotificationsOff, SwirlIconOpenInNew, SwirlIconPeopleAlt, SwirlIconPerson, SwirlIconPersonOff, SwirlIconPhone, SwirlIconPoll, SwirlIconPrint, SwirlIconRecieved, SwirlIconRemove, SwirlIconSearch, SwirlIconSearchStrong, SwirlIconSend, SwirlIconSettings, SwirlIconSync, SwirlIconTasksFilled, SwirlIconTasksOutlined, SwirlIconTimeFilled, SwirlIconTimeOutlined, SwirlIconToday, SwirlIconUserAssign, SwirlIconVideoCamera, SwirlIconVisibility, SwirlIconVisibilityOff, SwirlIconWarning, SwirlInlineError, SwirlLightbox, SwirlLink, SwirlList, SwirlModal, SwirlOptionList, SwirlOptionListItem, SwirlOptionListSection, SwirlPagination, SwirlPdfReader, SwirlPopover, SwirlProgressIndicator, SwirlRadio, SwirlRadioGroup, SwirlResourceList, SwirlResourceListFileItem, SwirlResourceListItem, SwirlSearch, SwirlSelect, SwirlSeparator, SwirlShellLayout, SwirlShellNavigationItem, SwirlSkeletonBox, SwirlSkeletonText, SwirlSpinner, SwirlStack, SwirlSwitch, SwirlTab, SwirlTable, SwirlTableCell, SwirlTableColumn, SwirlTableRow, SwirlTableRowGroup, SwirlTabs, SwirlTag, SwirlText, SwirlTextInput, SwirlThemeProvider, SwirlThumbnail, SwirlToast, SwirlToastProvider, SwirlTooltip, SwirlTreeNavigationItem, SwirlVideoThumbnail, SwirlVisuallyHidden, BooleanValueAccessor,
|
|
4558
4734
|
SelectValueAccessor,
|
|
4559
|
-
TextValueAccessor], exports: [FileManager, SwirlActionList, SwirlActionListItem, SwirlActionListSection, SwirlAppLayout, SwirlAutocomplete, SwirlAvatar, SwirlAvatarGroup, SwirlBadge, SwirlBanner, SwirlBox, SwirlButton, SwirlButtonGroup, SwirlCard, SwirlCheckbox, SwirlChip, SwirlConsoleLayout, SwirlDateInput, SwirlDatePicker, SwirlDescriptionList, SwirlDescriptionListItem, SwirlDialog, SwirlEmptyState, SwirlFileUploader, SwirlFileViewer, SwirlFileViewerAudio, SwirlFileViewerCsv, SwirlFileViewerImage, SwirlFileViewerPdf, SwirlFileViewerText, SwirlFileViewerVideo, SwirlFormControl, SwirlFormGroup, SwirlHeading, SwirlIconAdd, SwirlIconAddPhoto, SwirlIconAdminPanelSettings, SwirlIconArrowBack, SwirlIconArrowDownward, SwirlIconArrowForward, SwirlIconArrowLeft, SwirlIconArrowRight, SwirlIconArrowRightSmall, SwirlIconArrowUpward, SwirlIconAttachment, SwirlIconBlock, SwirlIconBookmark, SwirlIconCancel, SwirlIconChatBubble, SwirlIconChatsFilled, SwirlIconChatsOutlined, SwirlIconCheck, SwirlIconCheckCircle, SwirlIconCheckSmall, SwirlIconCheckStrong, SwirlIconChevronLeft, SwirlIconChevronRight, SwirlIconClose, SwirlIconCloseSmall, SwirlIconCloudUpload, SwirlIconColumn, SwirlIconComment, SwirlIconCopy, SwirlIconDateRange, SwirlIconDelete, SwirlIconDescription, SwirlIconDownload, SwirlIconDragHandle, SwirlIconEdit, SwirlIconEmojiMood, SwirlIconEmojiSatisfied, SwirlIconError, SwirlIconExpandLess, SwirlIconExpandMore, SwirlIconFile, SwirlIconFilter, SwirlIconFolderShared, SwirlIconFullscreen, SwirlIconFullscreenExit, SwirlIconGroupAssign, SwirlIconGroups, SwirlIconGroupsCustom, SwirlIconGroupsFilled, SwirlIconGroupsOutlined, SwirlIconHelp, SwirlIconImage, SwirlIconInfo, SwirlIconInventory, SwirlIconLike, SwirlIconLink, SwirlIconLock, SwirlIconLogout, SwirlIconMail, SwirlIconManageAccounts, SwirlIconMention, SwirlIconMenu, SwirlIconMenuFilled, SwirlIconMenuOutlined, SwirlIconMessage, SwirlIconMoreHorizontal, SwirlIconMoreVertikal, SwirlIconNewsFilled, SwirlIconNewsOutlined, SwirlIconNotifications, SwirlIconNotificationsActive, SwirlIconNotificationsOff, SwirlIconOpenInNew, SwirlIconPeopleAlt, SwirlIconPerson, SwirlIconPersonOff, SwirlIconPhone, SwirlIconPoll, SwirlIconPrint, SwirlIconRecieved, SwirlIconRemove, SwirlIconSearch, SwirlIconSearchStrong, SwirlIconSend, SwirlIconSettings, SwirlIconSync, SwirlIconTasksFilled, SwirlIconTasksOutlined, SwirlIconTimeFilled, SwirlIconTimeOutlined, SwirlIconToday, SwirlIconUserAssign, SwirlIconVideoCamera, SwirlIconVisibility, SwirlIconVisibilityOff, SwirlIconWarning, SwirlInlineError, SwirlLightbox, SwirlLink, SwirlList, SwirlModal, SwirlOptionList, SwirlOptionListItem, SwirlOptionListSection, SwirlPagination, SwirlPdfReader, SwirlPopover, SwirlProgressIndicator, SwirlRadio, SwirlRadioGroup, SwirlResourceList, SwirlResourceListFileItem, SwirlResourceListItem, SwirlSearch, SwirlSelect, SwirlSeparator, SwirlSkeletonBox, SwirlSkeletonText, SwirlSpinner, SwirlStack, SwirlSwitch, SwirlTab, SwirlTable, SwirlTableCell, SwirlTableColumn, SwirlTableRow, SwirlTableRowGroup, SwirlTabs, SwirlTag, SwirlText, SwirlTextInput, SwirlThemeProvider, SwirlThumbnail, SwirlToast, SwirlToastProvider, SwirlTooltip, SwirlTreeNavigationItem, SwirlVideoThumbnail, SwirlVisuallyHidden, BooleanValueAccessor,
|
|
4735
|
+
TextValueAccessor], exports: [FileManager, SwirlActionList, SwirlActionListItem, SwirlActionListSection, SwirlAppLayout, SwirlAutocomplete, SwirlAvatar, SwirlAvatarGroup, SwirlBadge, SwirlBanner, SwirlBox, SwirlButton, SwirlButtonGroup, SwirlCard, SwirlCheckbox, SwirlChip, SwirlConsoleLayout, SwirlDateInput, SwirlDatePicker, SwirlDescriptionList, SwirlDescriptionListItem, SwirlDialog, SwirlEmptyState, SwirlFileUploader, SwirlFileViewer, SwirlFileViewerAudio, SwirlFileViewerCsv, SwirlFileViewerImage, SwirlFileViewerPdf, SwirlFileViewerText, SwirlFileViewerVideo, SwirlFormControl, SwirlFormGroup, SwirlHeading, SwirlIconAdd, SwirlIconAddPhoto, SwirlIconAdminPanelSettings, SwirlIconArrowBack, SwirlIconArrowDownward, SwirlIconArrowForward, SwirlIconArrowLeft, SwirlIconArrowRight, SwirlIconArrowRightSmall, SwirlIconArrowUpward, SwirlIconAttachment, SwirlIconBlock, SwirlIconBookmark, SwirlIconCancel, SwirlIconChatBubble, SwirlIconChatsFilled, SwirlIconChatsOutlined, SwirlIconCheck, SwirlIconCheckCircle, SwirlIconCheckSmall, SwirlIconCheckStrong, SwirlIconChevronLeft, SwirlIconChevronRight, SwirlIconClose, SwirlIconCloseSmall, SwirlIconCloudUpload, SwirlIconColumn, SwirlIconComment, SwirlIconCopy, SwirlIconDateRange, SwirlIconDelete, SwirlIconDescription, SwirlIconDoubleArrowLeft, SwirlIconDoubleArrowRight, SwirlIconDownload, SwirlIconDragHandle, SwirlIconEdit, SwirlIconEmojiMood, SwirlIconEmojiSatisfied, SwirlIconError, SwirlIconExpandLess, SwirlIconExpandMore, SwirlIconFile, SwirlIconFileCopy, SwirlIconFilter, SwirlIconFolder, SwirlIconFolderShared, SwirlIconFullscreen, SwirlIconFullscreenExit, SwirlIconGroupAssign, SwirlIconGroups, SwirlIconGroupsCustom, SwirlIconGroupsFilled, SwirlIconGroupsOutlined, SwirlIconHelp, SwirlIconImage, SwirlIconInfo, SwirlIconInventory, SwirlIconLike, SwirlIconLink, SwirlIconLock, SwirlIconLogout, SwirlIconMail, SwirlIconManageAccounts, SwirlIconMention, SwirlIconMenu, SwirlIconMenuBook, SwirlIconMenuFilled, SwirlIconMenuOutlined, SwirlIconMessage, SwirlIconMoreHorizontal, SwirlIconMoreVertikal, SwirlIconNewsFilled, SwirlIconNewsOutlined, SwirlIconNotifications, SwirlIconNotificationsActive, SwirlIconNotificationsOff, SwirlIconOpenInNew, SwirlIconPeopleAlt, SwirlIconPerson, SwirlIconPersonOff, SwirlIconPhone, SwirlIconPoll, SwirlIconPrint, SwirlIconRecieved, SwirlIconRemove, SwirlIconSearch, SwirlIconSearchStrong, SwirlIconSend, SwirlIconSettings, SwirlIconSync, SwirlIconTasksFilled, SwirlIconTasksOutlined, SwirlIconTimeFilled, SwirlIconTimeOutlined, SwirlIconToday, SwirlIconUserAssign, SwirlIconVideoCamera, SwirlIconVisibility, SwirlIconVisibilityOff, SwirlIconWarning, SwirlInlineError, SwirlLightbox, SwirlLink, SwirlList, SwirlModal, SwirlOptionList, SwirlOptionListItem, SwirlOptionListSection, SwirlPagination, SwirlPdfReader, SwirlPopover, SwirlProgressIndicator, SwirlRadio, SwirlRadioGroup, SwirlResourceList, SwirlResourceListFileItem, SwirlResourceListItem, SwirlSearch, SwirlSelect, SwirlSeparator, SwirlShellLayout, SwirlShellNavigationItem, SwirlSkeletonBox, SwirlSkeletonText, SwirlSpinner, SwirlStack, SwirlSwitch, SwirlTab, SwirlTable, SwirlTableCell, SwirlTableColumn, SwirlTableRow, SwirlTableRowGroup, SwirlTabs, SwirlTag, SwirlText, SwirlTextInput, SwirlThemeProvider, SwirlThumbnail, SwirlToast, SwirlToastProvider, SwirlTooltip, SwirlTreeNavigationItem, SwirlVideoThumbnail, SwirlVisuallyHidden, BooleanValueAccessor,
|
|
4560
4736
|
SelectValueAccessor,
|
|
4561
4737
|
TextValueAccessor] });
|
|
4562
4738
|
SwirlComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlComponentsModule });
|
|
@@ -4587,5 +4763,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
4587
4763
|
* Generated bundle index. Do not edit.
|
|
4588
4764
|
*/
|
|
4589
4765
|
|
|
4590
|
-
export { BooleanValueAccessor, FileManager, SelectValueAccessor, SwirlActionList, SwirlActionListItem, SwirlActionListSection, SwirlAppLayout, SwirlAutocomplete, SwirlAvatar, SwirlAvatarGroup, SwirlBadge, SwirlBanner, SwirlBox, SwirlButton, SwirlButtonGroup, SwirlCard, SwirlCheckbox, SwirlChip, SwirlComponentsModule, SwirlConsoleLayout, SwirlDateInput, SwirlDatePicker, SwirlDescriptionList, SwirlDescriptionListItem, SwirlDialog, SwirlEmptyState, SwirlFileUploader, SwirlFileViewer, SwirlFileViewerAudio, SwirlFileViewerCsv, SwirlFileViewerImage, SwirlFileViewerPdf, SwirlFileViewerText, SwirlFileViewerVideo, SwirlFormControl, SwirlFormGroup, SwirlHeading, SwirlIconAdd, SwirlIconAddPhoto, SwirlIconAdminPanelSettings, SwirlIconArrowBack, SwirlIconArrowDownward, SwirlIconArrowForward, SwirlIconArrowLeft, SwirlIconArrowRight, SwirlIconArrowRightSmall, SwirlIconArrowUpward, SwirlIconAttachment, SwirlIconBlock, SwirlIconBookmark, SwirlIconCancel, SwirlIconChatBubble, SwirlIconChatsFilled, SwirlIconChatsOutlined, SwirlIconCheck, SwirlIconCheckCircle, SwirlIconCheckSmall, SwirlIconCheckStrong, SwirlIconChevronLeft, SwirlIconChevronRight, SwirlIconClose, SwirlIconCloseSmall, SwirlIconCloudUpload, SwirlIconColumn, SwirlIconComment, SwirlIconCopy, SwirlIconDateRange, SwirlIconDelete, SwirlIconDescription, SwirlIconDownload, SwirlIconDragHandle, SwirlIconEdit, SwirlIconEmojiMood, SwirlIconEmojiSatisfied, SwirlIconError, SwirlIconExpandLess, SwirlIconExpandMore, SwirlIconFile, SwirlIconFilter, SwirlIconFolderShared, SwirlIconFullscreen, SwirlIconFullscreenExit, SwirlIconGroupAssign, SwirlIconGroups, SwirlIconGroupsCustom, SwirlIconGroupsFilled, SwirlIconGroupsOutlined, SwirlIconHelp, SwirlIconImage, SwirlIconInfo, SwirlIconInventory, SwirlIconLike, SwirlIconLink, SwirlIconLock, SwirlIconLogout, SwirlIconMail, SwirlIconManageAccounts, SwirlIconMention, SwirlIconMenu, SwirlIconMenuFilled, SwirlIconMenuOutlined, SwirlIconMessage, SwirlIconMoreHorizontal, SwirlIconMoreVertikal, SwirlIconNewsFilled, SwirlIconNewsOutlined, SwirlIconNotifications, SwirlIconNotificationsActive, SwirlIconNotificationsOff, SwirlIconOpenInNew, SwirlIconPeopleAlt, SwirlIconPerson, SwirlIconPersonOff, SwirlIconPhone, SwirlIconPoll, SwirlIconPrint, SwirlIconRecieved, SwirlIconRemove, SwirlIconSearch, SwirlIconSearchStrong, SwirlIconSend, SwirlIconSettings, SwirlIconSync, SwirlIconTasksFilled, SwirlIconTasksOutlined, SwirlIconTimeFilled, SwirlIconTimeOutlined, SwirlIconToday, SwirlIconUserAssign, SwirlIconVideoCamera, SwirlIconVisibility, SwirlIconVisibilityOff, SwirlIconWarning, SwirlInlineError, SwirlLightbox, SwirlLink, SwirlList, SwirlModal, SwirlOptionList, SwirlOptionListItem, SwirlOptionListSection, SwirlPagination, SwirlPdfReader, SwirlPopover, SwirlProgressIndicator, SwirlRadio, SwirlRadioGroup, SwirlResourceList, SwirlResourceListFileItem, SwirlResourceListItem, SwirlSearch, SwirlSelect, SwirlSeparator, SwirlSkeletonBox, SwirlSkeletonText, SwirlSpinner, SwirlStack, SwirlSwitch, SwirlTab, SwirlTable, SwirlTableCell, SwirlTableColumn, SwirlTableRow, SwirlTableRowGroup, SwirlTabs, SwirlTag, SwirlText, SwirlTextInput, SwirlThemeProvider, SwirlThumbnail, SwirlToast, SwirlToastProvider, SwirlTooltip, SwirlTreeNavigationItem, SwirlVideoThumbnail, SwirlVisuallyHidden, TextValueAccessor };
|
|
4766
|
+
export { BooleanValueAccessor, FileManager, SelectValueAccessor, SwirlActionList, SwirlActionListItem, SwirlActionListSection, SwirlAppLayout, SwirlAutocomplete, SwirlAvatar, SwirlAvatarGroup, SwirlBadge, SwirlBanner, SwirlBox, SwirlButton, SwirlButtonGroup, SwirlCard, SwirlCheckbox, SwirlChip, SwirlComponentsModule, SwirlConsoleLayout, SwirlDateInput, SwirlDatePicker, SwirlDescriptionList, SwirlDescriptionListItem, SwirlDialog, SwirlEmptyState, SwirlFileUploader, SwirlFileViewer, SwirlFileViewerAudio, SwirlFileViewerCsv, SwirlFileViewerImage, SwirlFileViewerPdf, SwirlFileViewerText, SwirlFileViewerVideo, SwirlFormControl, SwirlFormGroup, SwirlHeading, SwirlIconAdd, SwirlIconAddPhoto, SwirlIconAdminPanelSettings, SwirlIconArrowBack, SwirlIconArrowDownward, SwirlIconArrowForward, SwirlIconArrowLeft, SwirlIconArrowRight, SwirlIconArrowRightSmall, SwirlIconArrowUpward, SwirlIconAttachment, SwirlIconBlock, SwirlIconBookmark, SwirlIconCancel, SwirlIconChatBubble, SwirlIconChatsFilled, SwirlIconChatsOutlined, SwirlIconCheck, SwirlIconCheckCircle, SwirlIconCheckSmall, SwirlIconCheckStrong, SwirlIconChevronLeft, SwirlIconChevronRight, SwirlIconClose, SwirlIconCloseSmall, SwirlIconCloudUpload, SwirlIconColumn, SwirlIconComment, SwirlIconCopy, SwirlIconDateRange, SwirlIconDelete, SwirlIconDescription, SwirlIconDoubleArrowLeft, SwirlIconDoubleArrowRight, SwirlIconDownload, SwirlIconDragHandle, SwirlIconEdit, SwirlIconEmojiMood, SwirlIconEmojiSatisfied, SwirlIconError, SwirlIconExpandLess, SwirlIconExpandMore, SwirlIconFile, SwirlIconFileCopy, SwirlIconFilter, SwirlIconFolder, SwirlIconFolderShared, SwirlIconFullscreen, SwirlIconFullscreenExit, SwirlIconGroupAssign, SwirlIconGroups, SwirlIconGroupsCustom, SwirlIconGroupsFilled, SwirlIconGroupsOutlined, SwirlIconHelp, SwirlIconImage, SwirlIconInfo, SwirlIconInventory, SwirlIconLike, SwirlIconLink, SwirlIconLock, SwirlIconLogout, SwirlIconMail, SwirlIconManageAccounts, SwirlIconMention, SwirlIconMenu, SwirlIconMenuBook, SwirlIconMenuFilled, SwirlIconMenuOutlined, SwirlIconMessage, SwirlIconMoreHorizontal, SwirlIconMoreVertikal, SwirlIconNewsFilled, SwirlIconNewsOutlined, SwirlIconNotifications, SwirlIconNotificationsActive, SwirlIconNotificationsOff, SwirlIconOpenInNew, SwirlIconPeopleAlt, SwirlIconPerson, SwirlIconPersonOff, SwirlIconPhone, SwirlIconPoll, SwirlIconPrint, SwirlIconRecieved, SwirlIconRemove, SwirlIconSearch, SwirlIconSearchStrong, SwirlIconSend, SwirlIconSettings, SwirlIconSync, SwirlIconTasksFilled, SwirlIconTasksOutlined, SwirlIconTimeFilled, SwirlIconTimeOutlined, SwirlIconToday, SwirlIconUserAssign, SwirlIconVideoCamera, SwirlIconVisibility, SwirlIconVisibilityOff, SwirlIconWarning, SwirlInlineError, SwirlLightbox, SwirlLink, SwirlList, SwirlModal, SwirlOptionList, SwirlOptionListItem, SwirlOptionListSection, SwirlPagination, SwirlPdfReader, SwirlPopover, SwirlProgressIndicator, SwirlRadio, SwirlRadioGroup, SwirlResourceList, SwirlResourceListFileItem, SwirlResourceListItem, SwirlSearch, SwirlSelect, SwirlSeparator, SwirlShellLayout, SwirlShellNavigationItem, SwirlSkeletonBox, SwirlSkeletonText, SwirlSpinner, SwirlStack, SwirlSwitch, SwirlTab, SwirlTable, SwirlTableCell, SwirlTableColumn, SwirlTableRow, SwirlTableRowGroup, SwirlTabs, SwirlTag, SwirlText, SwirlTextInput, SwirlThemeProvider, SwirlThumbnail, SwirlToast, SwirlToastProvider, SwirlTooltip, SwirlTreeNavigationItem, SwirlVideoThumbnail, SwirlVisuallyHidden, TextValueAccessor };
|
|
4591
4767
|
//# sourceMappingURL=getflip-swirl-components-angular.mjs.map
|