cty-mui-angular 1.0.24 → 1.0.26
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/common/index.d.ts +2 -0
- package/common/providers/camera-preview.d.ts +7 -0
- package/common/providers/speech-transcriber.d.ts +7 -0
- package/cty-mui-module.d.ts +1 -1
- package/directives/proxies-list.d.ts +1 -1
- package/directives/proxies.d.ts +17 -2
- package/esm2022/common/index.mjs +3 -1
- package/esm2022/common/providers/camera-preview.mjs +17 -0
- package/esm2022/common/providers/speech-transcriber.mjs +17 -0
- package/esm2022/cty-mui-module.mjs +2 -2
- package/esm2022/directives/proxies-list.mjs +2 -1
- package/esm2022/directives/proxies.mjs +37 -8
- package/esm2022/index.mjs +3 -2
- package/esm2022/providers/image-viewer-controller.mjs +18 -0
- package/esm2022/standalone/directives/proxies.mjs +40 -8
- package/esm2022/standalone/index.mjs +3 -3
- package/fesm2022/cty-mui-angular-common.mjs +30 -2
- package/fesm2022/cty-mui-angular-common.mjs.map +1 -1
- package/fesm2022/cty-mui-angular-standalone.mjs +130 -99
- package/fesm2022/cty-mui-angular-standalone.mjs.map +1 -1
- package/fesm2022/cty-mui-angular.mjs +54 -10
- package/fesm2022/cty-mui-angular.mjs.map +1 -1
- package/index.d.ts +3 -2
- package/package.json +2 -2
- package/providers/image-viewer-controller.d.ts +8 -0
- package/standalone/directives/proxies.d.ts +17 -2
- package/standalone/index.d.ts +2 -2
|
@@ -4,9 +4,10 @@ import { Component, ChangeDetectionStrategy, Injectable, APP_INITIALIZER, NgZone
|
|
|
4
4
|
import { fromEvent } from 'rxjs';
|
|
5
5
|
import * as i1 from 'cty-mui-angular/common';
|
|
6
6
|
import { OverlayBaseController, ConfigToken, TemplateRefDirective } from 'cty-mui-angular/common';
|
|
7
|
-
export { AudioRecorderService, Config, DeviceInfoService, ImagePickerService, KeyboardService, MediaDownloaderService, NetworkService, PaymentService, ScreenOrientationService, ShareService, StatusBarService, UtilsService, VideoCaptureService, VolumeControlService, WechatService } from 'cty-mui-angular/common';
|
|
7
|
+
export { AudioRecorderService, CameraPreviewService, Config, DeviceInfoService, ImagePickerService, KeyboardService, MediaDownloaderService, NetworkService, PaymentService, ScreenOrientationService, ShareService, SpeechTranscriberService, StatusBarService, UtilsService, VideoCaptureService, VolumeControlService, WechatService } from 'cty-mui-angular/common';
|
|
8
8
|
import { alertController, actionSheetController, loadingController, cameraPhotoController, cascaderController, recordController, shareSheetController, tutorialController, overlayController, setupConfig } from 'cty-mui-core';
|
|
9
9
|
export { CTYCityData, DownloadMediaType, Easing, ImagePickerType, MediaSourceType, ModalFade, ModalRotate, ModalSlide, ModalZoom, ShareContentType, SharePlatformType, SlidePosition, UploadProgressTip, WechatMiniProgramType, WechatShareScene, addDays, addHours, addMinutes, addMonths, addSeconds, addYears, camelToKebab, checkScrollEnd, clamp, clipboard, closest, convertDate, convertNumber, convertTimeZone, deepClone, diff, fileSize, formatDate, formatDateTime, fromBase64, getElementRect, getEventClientCoords, getEventPageCoords, getFormatForDatePicker, getFormatForDateTimePicker, getTimeZone, getUTCDate, getUTCDateTime, getValueByKey, identityCodeValid, isDef, isEmail, isEmptyArray, isEmptyObject, isHttp, isJSONObject, isMobileNo, isPrimitive, isPromise, isRealNameForm, isValidDate, kebabToCamel, localDelete, localGet, localSave, mergeObj, numberToChinese, numberToLetter, numericName, pad, parseArray, parseJson, percent, price, randomNum, scrollElementBottom, scrollElementTop, scrollToPoint, secondsToVehicle, sessionDelete, sessionGet, sessionSave, toBase64 } from 'cty-mui-core';
|
|
10
|
+
import { imageViewerController } from 'cty-mui-core/components';
|
|
10
11
|
import { actionSheetController as actionSheetController$1, alertController as alertController$1, loadingController as loadingController$1, pickerController, toastController } from '@ionic/core';
|
|
11
12
|
import { DOCUMENT, CommonModule } from '@angular/common';
|
|
12
13
|
import { applyPolyfills, defineCustomElements } from 'cty-mui-core/loader';
|
|
@@ -288,6 +289,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
288
289
|
inputs: ['autoplay', 'banners', 'duration', 'indicator', 'initialIndex', 'loop', 'props', 'touchable', 'vertical'],
|
|
289
290
|
}]
|
|
290
291
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
292
|
+
let CtyCamera = class CtyCamera {
|
|
293
|
+
z;
|
|
294
|
+
el;
|
|
295
|
+
constructor(c, r, z) {
|
|
296
|
+
this.z = z;
|
|
297
|
+
c.detach();
|
|
298
|
+
this.el = r.nativeElement;
|
|
299
|
+
proxyOutputs(this, this.el, ['ctyDismiss', 'ctyTakePhoto', 'ctyConfirm']);
|
|
300
|
+
}
|
|
301
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCamera, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
302
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyCamera, selector: "cty-camera", inputs: { closeIcon: "closeIcon", confirmIcon: "confirmIcon", confirmText: "confirmText", file: "file", flashText: "flashText", flipText: "flipText", height: "height", max: "max", options: "options", quality: "quality", ratioText: "ratioText", ratios: "ratios", safeArea: "safeArea", title: "title", width: "width", zooms: "zooms" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
303
|
+
};
|
|
304
|
+
CtyCamera = __decorate([
|
|
305
|
+
ProxyCmp({
|
|
306
|
+
inputs: ['closeIcon', 'confirmIcon', 'confirmText', 'file', 'flashText', 'flipText', 'height', 'max', 'options', 'quality', 'ratioText', 'ratios', 'safeArea', 'title', 'width', 'zooms'],
|
|
307
|
+
methods: ['flipCamera', 'toggleFlash', 'flashOff', 'flashOn', 'ratioChange', 'setZoom', 'takePhoto']
|
|
308
|
+
})
|
|
309
|
+
], CtyCamera);
|
|
310
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCamera, decorators: [{
|
|
311
|
+
type: Component,
|
|
312
|
+
args: [{
|
|
313
|
+
selector: 'cty-camera',
|
|
314
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
315
|
+
template: '<ng-content></ng-content>',
|
|
316
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
317
|
+
inputs: ['closeIcon', 'confirmIcon', 'confirmText', 'file', 'flashText', 'flipText', 'height', 'max', 'options', 'quality', 'ratioText', 'ratios', 'safeArea', 'title', 'width', 'zooms'],
|
|
318
|
+
}]
|
|
319
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
291
320
|
let CtyCameraPhoto = class CtyCameraPhoto {
|
|
292
321
|
z;
|
|
293
322
|
el;
|
|
@@ -298,11 +327,11 @@ let CtyCameraPhoto = class CtyCameraPhoto {
|
|
|
298
327
|
proxyOutputs(this, this.el, ['ctyTapStart', 'ctyTap', 'ctyDismiss', 'ctyDidPresent', 'ctyWillPresent', 'ctyWillDismiss', 'ctyDidDismiss']);
|
|
299
328
|
}
|
|
300
329
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCameraPhoto, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
301
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyCameraPhoto, selector: "cty-camera-photo", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cancelText: "cancelText", clipCancelText: "clipCancelText", clipCconfirmText: "clipCconfirmText", clipImageBg: "clipImageBg", clipImageQuality: "clipImageQuality", clipImageSuffix: "clipImageSuffix", clipImageWidth: "clipImageWidth", clipMaxScale: "clipMaxScale", clipMinScale: "clipMinScale", clipPt: "clipPt", closeIcon: "closeIcon", closeable: "closeable", count: "count", cssClass: "cssClass", enterAnimation: "enterAnimation", file: "file", leaveAnimation: "leaveAnimation", options: "options", overlay: "overlay", permissionPurpose: "permissionPurpose", photoOption: "photoOption", root: "root", title: "title", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
330
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyCameraPhoto, selector: "cty-camera-photo", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cameraProps: "cameraProps", cancelText: "cancelText", clipCancelText: "clipCancelText", clipCconfirmText: "clipCconfirmText", clipImageBg: "clipImageBg", clipImageQuality: "clipImageQuality", clipImageSuffix: "clipImageSuffix", clipImageWidth: "clipImageWidth", clipMaxScale: "clipMaxScale", clipMinScale: "clipMinScale", clipPt: "clipPt", closeIcon: "closeIcon", closeable: "closeable", continuous: "continuous", count: "count", cssClass: "cssClass", enterAnimation: "enterAnimation", file: "file", leaveAnimation: "leaveAnimation", options: "options", overlay: "overlay", permissionPurpose: "permissionPurpose", photoOption: "photoOption", root: "root", title: "title", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
302
331
|
};
|
|
303
332
|
CtyCameraPhoto = __decorate([
|
|
304
333
|
ProxyCmp({
|
|
305
|
-
inputs: ['animated', 'backdropDismiss', 'cancelText', 'clipCancelText', 'clipCconfirmText', 'clipImageBg', 'clipImageQuality', 'clipImageSuffix', 'clipImageWidth', 'clipMaxScale', 'clipMinScale', 'clipPt', 'closeIcon', 'closeable', 'count', 'cssClass', 'enterAnimation', 'file', 'leaveAnimation', 'options', 'overlay', 'permissionPurpose', 'photoOption', 'root', 'title', 'trigger'],
|
|
334
|
+
inputs: ['animated', 'backdropDismiss', 'cameraProps', 'cancelText', 'clipCancelText', 'clipCconfirmText', 'clipImageBg', 'clipImageQuality', 'clipImageSuffix', 'clipImageWidth', 'clipMaxScale', 'clipMinScale', 'clipPt', 'closeIcon', 'closeable', 'continuous', 'count', 'cssClass', 'enterAnimation', 'file', 'leaveAnimation', 'options', 'overlay', 'permissionPurpose', 'photoOption', 'root', 'title', 'trigger'],
|
|
306
335
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
307
336
|
})
|
|
308
337
|
], CtyCameraPhoto);
|
|
@@ -313,7 +342,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
313
342
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
314
343
|
template: '<ng-content></ng-content>',
|
|
315
344
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
316
|
-
inputs: ['animated', 'backdropDismiss', 'cancelText', 'clipCancelText', 'clipCconfirmText', 'clipImageBg', 'clipImageQuality', 'clipImageSuffix', 'clipImageWidth', 'clipMaxScale', 'clipMinScale', 'clipPt', 'closeIcon', 'closeable', 'count', 'cssClass', 'enterAnimation', 'file', 'leaveAnimation', 'options', 'overlay', 'permissionPurpose', 'photoOption', 'root', 'title', 'trigger'],
|
|
345
|
+
inputs: ['animated', 'backdropDismiss', 'cameraProps', 'cancelText', 'clipCancelText', 'clipCconfirmText', 'clipImageBg', 'clipImageQuality', 'clipImageSuffix', 'clipImageWidth', 'clipMaxScale', 'clipMinScale', 'clipPt', 'closeIcon', 'closeable', 'continuous', 'count', 'cssClass', 'enterAnimation', 'file', 'leaveAnimation', 'options', 'overlay', 'permissionPurpose', 'photoOption', 'root', 'title', 'trigger'],
|
|
317
346
|
}]
|
|
318
347
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
319
348
|
let CtyCanvasBoard = class CtyCanvasBoard {
|
|
@@ -542,14 +571,14 @@ let CtyDropdown = class CtyDropdown {
|
|
|
542
571
|
this.z = z;
|
|
543
572
|
c.detach();
|
|
544
573
|
this.el = r.nativeElement;
|
|
545
|
-
proxyOutputs(this, this.el, ['ctyChange']);
|
|
574
|
+
proxyOutputs(this, this.el, ['ctyChange', 'ctyOpened', 'ctyClosed']);
|
|
546
575
|
}
|
|
547
576
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
548
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyDropdown, selector: "cty-dropdown", inputs: { arrowIcon: "arrowIcon", backdropDismiss: "backdropDismiss", defaultValue: "defaultValue",
|
|
577
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyDropdown, selector: "cty-dropdown", inputs: { arrowIcon: "arrowIcon", autoCollapse: "autoCollapse", backdropDismiss: "backdropDismiss", defaultValue: "defaultValue", direction: "direction", fixedLabel: "fixedLabel", options: "options", outsideDismiss: "outsideDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
549
578
|
};
|
|
550
579
|
CtyDropdown = __decorate([
|
|
551
580
|
ProxyCmp({
|
|
552
|
-
inputs: ['arrowIcon', 'backdropDismiss', 'defaultValue', '
|
|
581
|
+
inputs: ['arrowIcon', 'autoCollapse', 'backdropDismiss', 'defaultValue', 'direction', 'fixedLabel', 'options', 'outsideDismiss'],
|
|
553
582
|
methods: ['close', 'toggleNavPop']
|
|
554
583
|
})
|
|
555
584
|
], CtyDropdown);
|
|
@@ -560,7 +589,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
560
589
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
561
590
|
template: '<ng-content></ng-content>',
|
|
562
591
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
563
|
-
inputs: ['arrowIcon', 'backdropDismiss', 'defaultValue', '
|
|
592
|
+
inputs: ['arrowIcon', 'autoCollapse', 'backdropDismiss', 'defaultValue', 'direction', 'fixedLabel', 'options', 'outsideDismiss'],
|
|
564
593
|
}]
|
|
565
594
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
566
595
|
let CtyEmpty = class CtyEmpty {
|
|
@@ -1557,6 +1586,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1557
1586
|
}]
|
|
1558
1587
|
}], ctorParameters: function () { return []; } });
|
|
1559
1588
|
|
|
1589
|
+
class CtyImageViewerController extends OverlayBaseController {
|
|
1590
|
+
constructor() {
|
|
1591
|
+
super(imageViewerController);
|
|
1592
|
+
}
|
|
1593
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyImageViewerController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1594
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyImageViewerController, providedIn: 'root' });
|
|
1595
|
+
}
|
|
1596
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyImageViewerController, decorators: [{
|
|
1597
|
+
type: Injectable,
|
|
1598
|
+
args: [{
|
|
1599
|
+
providedIn: 'root',
|
|
1600
|
+
}]
|
|
1601
|
+
}], ctorParameters: function () { return []; } });
|
|
1602
|
+
|
|
1560
1603
|
class CtyCameraPhotoController extends OverlayBaseController {
|
|
1561
1604
|
constructor() {
|
|
1562
1605
|
super(cameraPhotoController);
|
|
@@ -1734,6 +1777,7 @@ const DIRECTIVES = [
|
|
|
1734
1777
|
CtyAudio,
|
|
1735
1778
|
CtyBackdrop,
|
|
1736
1779
|
CtyBanner,
|
|
1780
|
+
CtyCamera,
|
|
1737
1781
|
CtyCameraPhoto,
|
|
1738
1782
|
CtyCanvasBoard,
|
|
1739
1783
|
CtyCanvasVideo,
|
|
@@ -1803,7 +1847,7 @@ class CtyMUIModule {
|
|
|
1803
1847
|
};
|
|
1804
1848
|
}
|
|
1805
1849
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1806
|
-
/** @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, CtyCascaderView, CtyCircle, CtyCountDown, CtyCropImage, CtyDivider, CtyDropdown, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtySegmentSlides, CtySelector, 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, CtyCascaderView, CtyCircle, CtyCountDown, CtyCropImage, CtyDivider, CtyDropdown, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtySegmentSlides, CtySelector, CtyShareSheet, CtySidePanel, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTitleBar, CtyTour, CtyTutorial, CtyVideo, CtyVirtualList] });
|
|
1850
|
+
/** @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, CtyCamera, CtyCameraPhoto, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCascaderView, CtyCircle, CtyCountDown, CtyCropImage, CtyDivider, CtyDropdown, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtySegmentSlides, CtySelector, 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, CtyCamera, CtyCameraPhoto, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCascaderView, CtyCircle, CtyCountDown, CtyCropImage, CtyDivider, CtyDropdown, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtySegmentSlides, CtySelector, CtyShareSheet, CtySidePanel, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTitleBar, CtyTour, CtyTutorial, CtyVideo, CtyVirtualList] });
|
|
1807
1851
|
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, imports: [CommonModule] });
|
|
1808
1852
|
}
|
|
1809
1853
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, decorators: [{
|
|
@@ -1836,5 +1880,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1836
1880
|
* Generated bundle index. Do not edit.
|
|
1837
1881
|
*/
|
|
1838
1882
|
|
|
1839
|
-
export { CtyActionSheet, CtyActionSheetController, CtyAgree, CtyAlert, CtyAlertController, CtyAnswerSheet, CtyArticleCard, CtyAudio, CtyBackdrop, CtyBanner, CtyCameraPhoto, CtyCameraPhotoController, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCascaderController, CtyCascaderView, CtyCircle, CtyController, CtyCountDown, CtyCropImage, CtyDivider, CtyDropdown, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyLoadingController, CtyMUIModule, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyOverlayController, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtyRecordController, CtySegmentSlides, CtySelector, CtyShareSheet, CtyShareSheetController, CtySidePanel, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTitleBar, CtyTour, CtyTutorial, CtyTutorialController, CtyVideo, CtyVirtualList, DirectiveModule };
|
|
1883
|
+
export { CtyActionSheet, CtyActionSheetController, CtyAgree, CtyAlert, CtyAlertController, CtyAnswerSheet, CtyArticleCard, CtyAudio, CtyBackdrop, CtyBanner, CtyCamera, CtyCameraPhoto, CtyCameraPhotoController, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCascaderController, CtyCascaderView, CtyCircle, CtyController, CtyCountDown, CtyCropImage, CtyDivider, CtyDropdown, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyImageViewerController, CtyIndexBar, CtyKeyboard, CtyLoading, CtyLoadingController, CtyMUIModule, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyOverlayController, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtyRecordController, CtySegmentSlides, CtySelector, CtyShareSheet, CtyShareSheetController, CtySidePanel, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTitleBar, CtyTour, CtyTutorial, CtyTutorialController, CtyVideo, CtyVirtualList, DirectiveModule };
|
|
1840
1884
|
//# sourceMappingURL=cty-mui-angular.mjs.map
|