cty-mui-angular 1.0.15 → 1.0.16
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/cty-mui-module.d.ts +1 -1
- package/directives/proxies-list.d.ts +1 -1
- package/directives/proxies.d.ts +22 -2
- package/esm2022/cty-mui-module.mjs +2 -2
- package/esm2022/directives/proxies-list.mjs +3 -1
- package/esm2022/directives/proxies.mjs +63 -7
- package/esm2022/index.mjs +1 -1
- package/esm2022/standalone/directives/index.mjs +2 -1
- package/esm2022/standalone/directives/proxies.mjs +38 -7
- package/esm2022/standalone/directives/segment-slides.mjs +2 -2
- package/esm2022/standalone/directives/side-panel.mjs +60 -0
- package/esm2022/standalone/index.mjs +2 -2
- package/fesm2022/cty-mui-angular-standalone.mjs +213 -130
- package/fesm2022/cty-mui-angular-standalone.mjs.map +1 -1
- package/fesm2022/cty-mui-angular.mjs +64 -8
- package/fesm2022/cty-mui-angular.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +2 -2
- package/standalone/directives/index.d.ts +1 -0
- package/standalone/directives/proxies.d.ts +12 -2
- package/standalone/directives/side-panel.d.ts +19 -0
- package/standalone/index.d.ts +2 -2
|
@@ -787,11 +787,11 @@ let CtyNavBar = class CtyNavBar {
|
|
|
787
787
|
proxyOutputs(this, this.el, ['ctyDismiss']);
|
|
788
788
|
}
|
|
789
789
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyNavBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
790
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyNavBar, selector: "cty-nav-bar", inputs: { arrow: "arrow", end: "end", start: "start", title: "title", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
790
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyNavBar, selector: "cty-nav-bar", inputs: { arrow: "arrow", arrowIcon: "arrowIcon", end: "end", start: "start", title: "title", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
791
791
|
};
|
|
792
792
|
CtyNavBar = __decorate([
|
|
793
793
|
ProxyCmp({
|
|
794
|
-
inputs: ['arrow', 'end', 'start', 'title', 'type']
|
|
794
|
+
inputs: ['arrow', 'arrowIcon', 'end', 'start', 'title', 'type']
|
|
795
795
|
})
|
|
796
796
|
], CtyNavBar);
|
|
797
797
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyNavBar, decorators: [{
|
|
@@ -801,7 +801,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
801
801
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
802
802
|
template: '<ng-content></ng-content>',
|
|
803
803
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
804
|
-
inputs: ['arrow', 'end', 'start', 'title', 'type'],
|
|
804
|
+
inputs: ['arrow', 'arrowIcon', 'end', 'start', 'title', 'type'],
|
|
805
805
|
}]
|
|
806
806
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
807
807
|
let CtyNoticeBar = class CtyNoticeBar {
|
|
@@ -1078,6 +1078,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1078
1078
|
inputs: ['animated', 'backdropDismiss', 'cancelText', 'cssClass', 'description', 'enterAnimation', 'guide', 'guideImg', 'hiddenSheet', 'leaveAnimation', 'legacyCopy', 'options', 'permissionDescription', 'permissionPurpose', 'root', 'shareOption', 'title', 'trigger'],
|
|
1079
1079
|
}]
|
|
1080
1080
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1081
|
+
let CtySidePanel = class CtySidePanel {
|
|
1082
|
+
z;
|
|
1083
|
+
el;
|
|
1084
|
+
constructor(c, r, z) {
|
|
1085
|
+
this.z = z;
|
|
1086
|
+
c.detach();
|
|
1087
|
+
this.el = r.nativeElement;
|
|
1088
|
+
proxyOutputs(this, this.el, ['ctyChange']);
|
|
1089
|
+
}
|
|
1090
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySidePanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1091
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtySidePanel, selector: "cty-side-panel", inputs: { beforeChange: "beforeChange", sideBars: "sideBars", singleContent: "singleContent", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1092
|
+
};
|
|
1093
|
+
CtySidePanel = __decorate([
|
|
1094
|
+
ProxyCmp({
|
|
1095
|
+
inputs: ['beforeChange', 'sideBars', 'singleContent', 'value']
|
|
1096
|
+
})
|
|
1097
|
+
], CtySidePanel);
|
|
1098
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySidePanel, decorators: [{
|
|
1099
|
+
type: Component,
|
|
1100
|
+
args: [{
|
|
1101
|
+
selector: 'cty-side-panel',
|
|
1102
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1103
|
+
template: '<ng-content></ng-content>',
|
|
1104
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1105
|
+
inputs: ['beforeChange', 'sideBars', 'singleContent', 'value'],
|
|
1106
|
+
}]
|
|
1107
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1081
1108
|
let CtyStep = class CtyStep {
|
|
1082
1109
|
z;
|
|
1083
1110
|
el;
|
|
@@ -1267,6 +1294,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1267
1294
|
inputs: ['collapseText', 'content', 'dots', 'expandText', 'position', 'rows'],
|
|
1268
1295
|
}]
|
|
1269
1296
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1297
|
+
let CtyTitleBar = class CtyTitleBar {
|
|
1298
|
+
z;
|
|
1299
|
+
el;
|
|
1300
|
+
constructor(c, r, z) {
|
|
1301
|
+
this.z = z;
|
|
1302
|
+
c.detach();
|
|
1303
|
+
this.el = r.nativeElement;
|
|
1304
|
+
proxyOutputs(this, this.el, ['ctyClickEnd']);
|
|
1305
|
+
}
|
|
1306
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyTitleBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1307
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyTitleBar, selector: "cty-title-bar", inputs: { endIcon: "endIcon", endText: "endText", startIcon: "startIcon", title: "title" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1308
|
+
};
|
|
1309
|
+
CtyTitleBar = __decorate([
|
|
1310
|
+
ProxyCmp({
|
|
1311
|
+
inputs: ['endIcon', 'endText', 'startIcon', 'title']
|
|
1312
|
+
})
|
|
1313
|
+
], CtyTitleBar);
|
|
1314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyTitleBar, decorators: [{
|
|
1315
|
+
type: Component,
|
|
1316
|
+
args: [{
|
|
1317
|
+
selector: 'cty-title-bar',
|
|
1318
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1319
|
+
template: '<ng-content></ng-content>',
|
|
1320
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1321
|
+
inputs: ['endIcon', 'endText', 'startIcon', 'title'],
|
|
1322
|
+
}]
|
|
1323
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1270
1324
|
let CtyTour = class CtyTour {
|
|
1271
1325
|
z;
|
|
1272
1326
|
el;
|
|
@@ -1333,11 +1387,11 @@ let CtyVideo = class CtyVideo {
|
|
|
1333
1387
|
proxyOutputs(this, this.el, ['ctyDismiss', 'ctyVideoCanplay', 'ctyVideoTimeupdate', 'ctyVideoPlaying', 'ctyVideoPlay', 'ctyVideoPause', 'ctyVideoStalled', 'ctyVideoWaiting', 'ctyVideoEnded', 'ctyVideoError', 'ctyVideoChangeVolume', 'ctyVideoProgress', 'ctyVideoScreenChange', 'ctyVideoIAEnter', 'ctyVideoIAAction', 'ctyVideoCtrlChange', 'ctyVideoRateChange']);
|
|
1334
1388
|
}
|
|
1335
1389
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyVideo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1336
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyVideo, selector: "cty-video", inputs: { allowBackward: "allowBackward", allowForward: "allowForward", autoplay: "autoplay", controls: "controls", defaultFullscreen: "defaultFullscreen", directRate: "directRate", direction: "direction", errorMsg: "errorMsg", exitFullscreenIcon: "exitFullscreenIcon", footerCtrl: "footerCtrl", fullscreenIcon: "fullscreenIcon", fullscreenOnly: "fullscreenOnly", headerCtrl: "headerCtrl", interactiveActions: "interactiveActions", landscapeEnterTimer: "landscapeEnterTimer", landscapeLeaveTimer: "landscapeLeaveTimer", largeScreenIsPortrait: "largeScreenIsPortrait", loading: "loading", loadingImg: "loadingImg", markers: "markers", orientation: "orientation", player: "player", poster: "poster", preload: "preload", progressPosition: "progressPosition", rate: "rate", rates: "rates", startTime: "startTime", title: "title", togglePlayTimer: "togglePlayTimer", trafficAutoplay: "trafficAutoplay", trafficMsg: "trafficMsg", unAllowForwardMsg: "unAllowForwardMsg", unAllowRateMsg: "unAllowRateMsg", updateNow: "updateNow", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1390
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyVideo, selector: "cty-video", inputs: { allowBackgroundForward: "allowBackgroundForward", allowBackward: "allowBackward", allowForward: "allowForward", autoplay: "autoplay", controls: "controls", defaultFullscreen: "defaultFullscreen", directRate: "directRate", direction: "direction", errorMsg: "errorMsg", exitFullscreenIcon: "exitFullscreenIcon", footerCtrl: "footerCtrl", fullscreenIcon: "fullscreenIcon", fullscreenOnly: "fullscreenOnly", headerCtrl: "headerCtrl", interactiveActions: "interactiveActions", landscapeEnterTimer: "landscapeEnterTimer", landscapeLeaveTimer: "landscapeLeaveTimer", largeScreenIsPortrait: "largeScreenIsPortrait", loading: "loading", loadingImg: "loadingImg", markers: "markers", orientation: "orientation", player: "player", poster: "poster", preload: "preload", progressPosition: "progressPosition", rate: "rate", rates: "rates", startTime: "startTime", title: "title", togglePlayTimer: "togglePlayTimer", trafficAutoplay: "trafficAutoplay", trafficMsg: "trafficMsg", unAllowForwardMsg: "unAllowForwardMsg", unAllowRateMsg: "unAllowRateMsg", updateNow: "updateNow", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1337
1391
|
};
|
|
1338
1392
|
CtyVideo = __decorate([
|
|
1339
1393
|
ProxyCmp({
|
|
1340
|
-
inputs: ['allowBackward', 'allowForward', 'autoplay', 'controls', 'defaultFullscreen', 'directRate', 'direction', 'errorMsg', 'exitFullscreenIcon', 'footerCtrl', 'fullscreenIcon', 'fullscreenOnly', 'headerCtrl', 'interactiveActions', 'landscapeEnterTimer', 'landscapeLeaveTimer', 'largeScreenIsPortrait', 'loading', 'loadingImg', 'markers', 'orientation', 'player', 'poster', 'preload', 'progressPosition', 'rate', 'rates', 'startTime', 'title', 'togglePlayTimer', 'trafficAutoplay', 'trafficMsg', 'unAllowForwardMsg', 'unAllowRateMsg', 'updateNow', 'url'],
|
|
1394
|
+
inputs: ['allowBackgroundForward', 'allowBackward', 'allowForward', 'autoplay', 'controls', 'defaultFullscreen', 'directRate', 'direction', 'errorMsg', 'exitFullscreenIcon', 'footerCtrl', 'fullscreenIcon', 'fullscreenOnly', 'headerCtrl', 'interactiveActions', 'landscapeEnterTimer', 'landscapeLeaveTimer', 'largeScreenIsPortrait', 'loading', 'loadingImg', 'markers', 'orientation', 'player', 'poster', 'preload', 'progressPosition', 'rate', 'rates', 'startTime', 'title', 'togglePlayTimer', 'trafficAutoplay', 'trafficMsg', 'unAllowForwardMsg', 'unAllowRateMsg', 'updateNow', 'url'],
|
|
1341
1395
|
methods: ['play', 'setCtrlShow', 'pause', 'setVideoCurrentTime', 'clearCtrlTimeout', 'setWarningMsg', 'toggleVideo', 'toggleVolume', 'setPlayRate', 'getVideoElement', 'getVideoState']
|
|
1342
1396
|
})
|
|
1343
1397
|
], CtyVideo);
|
|
@@ -1348,7 +1402,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1348
1402
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1349
1403
|
template: '<ng-content></ng-content>',
|
|
1350
1404
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1351
|
-
inputs: ['allowBackward', 'allowForward', 'autoplay', 'controls', 'defaultFullscreen', 'directRate', 'direction', 'errorMsg', 'exitFullscreenIcon', 'footerCtrl', 'fullscreenIcon', 'fullscreenOnly', 'headerCtrl', 'interactiveActions', 'landscapeEnterTimer', 'landscapeLeaveTimer', 'largeScreenIsPortrait', 'loading', 'loadingImg', 'markers', 'orientation', 'player', 'poster', 'preload', 'progressPosition', 'rate', 'rates', 'startTime', 'title', 'togglePlayTimer', 'trafficAutoplay', 'trafficMsg', 'unAllowForwardMsg', 'unAllowRateMsg', 'updateNow', 'url'],
|
|
1405
|
+
inputs: ['allowBackgroundForward', 'allowBackward', 'allowForward', 'autoplay', 'controls', 'defaultFullscreen', 'directRate', 'direction', 'errorMsg', 'exitFullscreenIcon', 'footerCtrl', 'fullscreenIcon', 'fullscreenOnly', 'headerCtrl', 'interactiveActions', 'landscapeEnterTimer', 'landscapeLeaveTimer', 'largeScreenIsPortrait', 'loading', 'loadingImg', 'markers', 'orientation', 'player', 'poster', 'preload', 'progressPosition', 'rate', 'rates', 'startTime', 'title', 'togglePlayTimer', 'trafficAutoplay', 'trafficMsg', 'unAllowForwardMsg', 'unAllowRateMsg', 'updateNow', 'url'],
|
|
1352
1406
|
}]
|
|
1353
1407
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1354
1408
|
let CtyVirtualList = class CtyVirtualList {
|
|
@@ -1627,6 +1681,7 @@ const DIRECTIVES = [
|
|
|
1627
1681
|
CtyRecord,
|
|
1628
1682
|
CtySegmentSlides,
|
|
1629
1683
|
CtyShareSheet,
|
|
1684
|
+
CtySidePanel,
|
|
1630
1685
|
CtyStep,
|
|
1631
1686
|
CtyStepper,
|
|
1632
1687
|
CtySteps,
|
|
@@ -1634,6 +1689,7 @@ const DIRECTIVES = [
|
|
|
1634
1689
|
CtySwipeItem,
|
|
1635
1690
|
CtySwiper,
|
|
1636
1691
|
CtyTextEllipsis,
|
|
1692
|
+
CtyTitleBar,
|
|
1637
1693
|
CtyTour,
|
|
1638
1694
|
CtyTutorial,
|
|
1639
1695
|
CtyVideo,
|
|
@@ -1662,7 +1718,7 @@ class CtyMUIModule {
|
|
|
1662
1718
|
};
|
|
1663
1719
|
}
|
|
1664
1720
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1665
|
-
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, declarations: [CtyActionSheet, CtyAgree, CtyAlert, CtyAnswerSheet, CtyArticleCard, CtyAudio, CtyBackdrop, CtyBanner, CtyCameraPhoto, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCircle, CtyCountDown, CtyCropImage, CtyDivider, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtySegmentSlides, CtyShareSheet, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTour, CtyTutorial, CtyVideo, CtyVirtualList], imports: [CommonModule], exports: [CtyActionSheet, CtyAgree, CtyAlert, CtyAnswerSheet, CtyArticleCard, CtyAudio, CtyBackdrop, CtyBanner, CtyCameraPhoto, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCircle, CtyCountDown, CtyCropImage, CtyDivider, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtySegmentSlides, CtyShareSheet, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTour, CtyTutorial, CtyVideo, CtyVirtualList] });
|
|
1721
|
+
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, declarations: [CtyActionSheet, CtyAgree, CtyAlert, CtyAnswerSheet, CtyArticleCard, CtyAudio, CtyBackdrop, CtyBanner, CtyCameraPhoto, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCircle, CtyCountDown, CtyCropImage, CtyDivider, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtySegmentSlides, CtyShareSheet, CtySidePanel, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTitleBar, CtyTour, CtyTutorial, CtyVideo, CtyVirtualList], imports: [CommonModule], exports: [CtyActionSheet, CtyAgree, CtyAlert, CtyAnswerSheet, CtyArticleCard, CtyAudio, CtyBackdrop, CtyBanner, CtyCameraPhoto, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCircle, CtyCountDown, CtyCropImage, CtyDivider, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtySegmentSlides, CtyShareSheet, CtySidePanel, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTitleBar, CtyTour, CtyTutorial, CtyVideo, CtyVirtualList] });
|
|
1666
1722
|
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, imports: [CommonModule] });
|
|
1667
1723
|
}
|
|
1668
1724
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, decorators: [{
|
|
@@ -1695,5 +1751,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1695
1751
|
* Generated bundle index. Do not edit.
|
|
1696
1752
|
*/
|
|
1697
1753
|
|
|
1698
|
-
export { CtyActionSheet, CtyActionSheetController, CtyAgree, CtyAlert, CtyAlertController, CtyAnswerSheet, CtyArticleCard, CtyAudio, CtyBackdrop, CtyBanner, CtyCameraPhoto, CtyCameraPhotoController, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCascaderController, CtyCircle, CtyController, CtyCountDown, CtyCropImage, CtyDivider, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyLoadingController, CtyMUIModule, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyOverlayController, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtyRecordController, CtySegmentSlides, CtyShareSheet, CtyShareSheetController, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTour, CtyTutorial, CtyTutorialController, CtyVideo, CtyVirtualList, DirectiveModule };
|
|
1754
|
+
export { CtyActionSheet, CtyActionSheetController, CtyAgree, CtyAlert, CtyAlertController, CtyAnswerSheet, CtyArticleCard, CtyAudio, CtyBackdrop, CtyBanner, CtyCameraPhoto, CtyCameraPhotoController, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCascaderController, CtyCircle, CtyController, CtyCountDown, CtyCropImage, CtyDivider, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyLoadingController, CtyMUIModule, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyOverlayController, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtyRecordController, CtySegmentSlides, CtyShareSheet, CtyShareSheetController, CtySidePanel, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTitleBar, CtyTour, CtyTutorial, CtyTutorialController, CtyVideo, CtyVirtualList, DirectiveModule };
|
|
1699
1755
|
//# sourceMappingURL=cty-mui-angular.mjs.map
|