cty-mui-angular 1.0.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/README.md +59 -0
- package/app-initialize.d.ts +3 -0
- package/common/directives/control-value-accessors/index.d.ts +1 -0
- package/common/directives/control-value-accessors/value-accessor.d.ts +36 -0
- package/common/index.d.ts +19 -0
- package/common/providers/audio-recorder.d.ts +7 -0
- package/common/providers/config.d.ts +9 -0
- package/common/providers/device-info.d.ts +7 -0
- package/common/providers/image-picker.d.ts +7 -0
- package/common/providers/keyboard.d.ts +7 -0
- package/common/providers/media-downloader.d.ts +7 -0
- package/common/providers/network.d.ts +7 -0
- package/common/providers/payment.d.ts +7 -0
- package/common/providers/screen-orientation.d.ts +7 -0
- package/common/providers/share.d.ts +7 -0
- package/common/providers/status-bar.d.ts +7 -0
- package/common/providers/utils.d.ts +10 -0
- package/common/providers/video-capture.d.ts +7 -0
- package/common/providers/volume-control.d.ts +7 -0
- package/common/providers/wechat.d.ts +7 -0
- package/common/types/interfaces.d.ts +6 -0
- package/common/utils/overlay.d.ts +21 -0
- package/common/utils/util.d.ts +1 -0
- package/css/core.css +1 -0
- package/css/core.css.map +1 -0
- package/css/cty-mui.bundle.css +1 -0
- package/css/cty-mui.bundle.css.map +1 -0
- package/css/normalize.css +1 -0
- package/css/normalize.css.map +1 -0
- package/css/variables.css +1 -0
- package/css/variables.css.map +1 -0
- package/css/variables.font.css +1 -0
- package/css/variables.font.css.map +1 -0
- package/cty-mui-module.d.ts +11 -0
- package/directives/angular-component-lib/utils.d.ts +9 -0
- package/directives/proxies-list.d.ts +2 -0
- package/directives/proxies.d.ts +612 -0
- package/esm2022/app-initialize.mjs +26 -0
- package/esm2022/common/cty-mui-angular-common.mjs +5 -0
- package/esm2022/common/directives/control-value-accessors/index.mjs +2 -0
- package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +133 -0
- package/esm2022/common/index.mjs +19 -0
- package/esm2022/common/providers/audio-recorder.mjs +17 -0
- package/esm2022/common/providers/config.mjs +30 -0
- package/esm2022/common/providers/device-info.mjs +17 -0
- package/esm2022/common/providers/image-picker.mjs +17 -0
- package/esm2022/common/providers/keyboard.mjs +17 -0
- package/esm2022/common/providers/media-downloader.mjs +17 -0
- package/esm2022/common/providers/network.mjs +17 -0
- package/esm2022/common/providers/payment.mjs +17 -0
- package/esm2022/common/providers/screen-orientation.mjs +17 -0
- package/esm2022/common/providers/share.mjs +17 -0
- package/esm2022/common/providers/status-bar.mjs +17 -0
- package/esm2022/common/providers/utils.mjs +24 -0
- package/esm2022/common/providers/video-capture.mjs +17 -0
- package/esm2022/common/providers/volume-control.mjs +17 -0
- package/esm2022/common/providers/wechat.mjs +17 -0
- package/esm2022/common/types/interfaces.mjs +2 -0
- package/esm2022/common/utils/overlay.mjs +25 -0
- package/esm2022/common/utils/util.mjs +10 -0
- package/esm2022/cty-mui-angular.mjs +5 -0
- package/esm2022/cty-mui-module.mjs +41 -0
- package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/directives/proxies-list.mjs +51 -0
- package/esm2022/directives/proxies.mjs +1336 -0
- package/esm2022/index.mjs +19 -0
- package/esm2022/providers/action-sheet-controller.mjs +18 -0
- package/esm2022/providers/alert-controller.mjs +18 -0
- package/esm2022/providers/camera-photo-controller.mjs +18 -0
- package/esm2022/providers/cascader-controller.mjs +18 -0
- package/esm2022/providers/ionic-controller.mjs +81 -0
- package/esm2022/providers/loading-controller.mjs +18 -0
- package/esm2022/providers/overlay-controller.mjs +18 -0
- package/esm2022/providers/record-controller.mjs +18 -0
- package/esm2022/providers/share-sheet-controller.mjs +18 -0
- package/esm2022/providers/tutorial-controller.mjs +18 -0
- package/esm2022/standalone/cty-mui-angular-standalone.mjs +5 -0
- package/esm2022/standalone/directives/agree.mjs +60 -0
- package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/standalone/directives/index.mjs +6 -0
- package/esm2022/standalone/directives/proxies.mjs +1321 -0
- package/esm2022/standalone/directives/rate.mjs +60 -0
- package/esm2022/standalone/directives/segment-slides.mjs +41 -0
- package/esm2022/standalone/directives/stepper.mjs +61 -0
- package/esm2022/standalone/directives/swiper.mjs +41 -0
- package/esm2022/standalone/index.mjs +21 -0
- package/esm2022/standalone/providers/action-sheet-controller.mjs +20 -0
- package/esm2022/standalone/providers/alert-controller.mjs +20 -0
- package/esm2022/standalone/providers/camera-photo-controller.mjs +20 -0
- package/esm2022/standalone/providers/cascader-controller.mjs +20 -0
- package/esm2022/standalone/providers/cty-mui-angular.mjs +23 -0
- package/esm2022/standalone/providers/image-viewer-controller.mjs +20 -0
- package/esm2022/standalone/providers/ionic-controller.mjs +81 -0
- package/esm2022/standalone/providers/loading-controller.mjs +20 -0
- package/esm2022/standalone/providers/overlay-controller.mjs +20 -0
- package/esm2022/standalone/providers/record-controller.mjs +20 -0
- package/esm2022/standalone/providers/share-sheet-controller.mjs +20 -0
- package/esm2022/standalone/providers/tutorial-controller.mjs +20 -0
- package/fesm2022/cty-mui-angular-common.mjs +406 -0
- package/fesm2022/cty-mui-angular-common.mjs.map +1 -0
- package/fesm2022/cty-mui-angular-standalone.mjs +1834 -0
- package/fesm2022/cty-mui-angular-standalone.mjs.map +1 -0
- package/fesm2022/cty-mui-angular.mjs +1671 -0
- package/fesm2022/cty-mui-angular.mjs.map +1 -0
- package/index.d.ts +14 -0
- package/package.json +48 -0
- package/providers/action-sheet-controller.d.ts +8 -0
- package/providers/alert-controller.d.ts +8 -0
- package/providers/camera-photo-controller.d.ts +8 -0
- package/providers/cascader-controller.d.ts +8 -0
- package/providers/ionic-controller.d.ts +16 -0
- package/providers/loading-controller.d.ts +8 -0
- package/providers/overlay-controller.d.ts +8 -0
- package/providers/record-controller.d.ts +8 -0
- package/providers/share-sheet-controller.d.ts +8 -0
- package/providers/tutorial-controller.d.ts +8 -0
- package/standalone/directives/agree.d.ts +19 -0
- package/standalone/directives/angular-component-lib/utils.d.ts +9 -0
- package/standalone/directives/index.d.ts +5 -0
- package/standalone/directives/proxies.d.ts +550 -0
- package/standalone/directives/rate.d.ts +19 -0
- package/standalone/directives/segment-slides.d.ts +17 -0
- package/standalone/directives/stepper.d.ts +29 -0
- package/standalone/directives/swiper.d.ts +18 -0
- package/standalone/index.d.ts +16 -0
- package/standalone/providers/action-sheet-controller.d.ts +8 -0
- package/standalone/providers/alert-controller.d.ts +8 -0
- package/standalone/providers/camera-photo-controller.d.ts +8 -0
- package/standalone/providers/cascader-controller.d.ts +8 -0
- package/standalone/providers/cty-mui-angular.d.ts +3 -0
- package/standalone/providers/image-viewer-controller.d.ts +8 -0
- package/standalone/providers/ionic-controller.d.ts +16 -0
- package/standalone/providers/loading-controller.d.ts +8 -0
- package/standalone/providers/overlay-controller.d.ts +8 -0
- package/standalone/providers/record-controller.d.ts +8 -0
- package/standalone/providers/share-sheet-controller.d.ts +8 -0
- package/standalone/providers/tutorial-controller.d.ts +8 -0
|
@@ -0,0 +1,1671 @@
|
|
|
1
|
+
import { __decorate } from 'tslib';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { Component, ChangeDetectionStrategy, Injectable, APP_INITIALIZER, NgZone, NgModule } from '@angular/core';
|
|
4
|
+
import { fromEvent } from 'rxjs';
|
|
5
|
+
import * as i1 from 'cty-mui-angular/common';
|
|
6
|
+
import { OverlayBaseController, ConfigToken } 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';
|
|
8
|
+
import { alertController, actionSheetController, loadingController, cameraPhotoController, cascaderController, recordController, shareSheetController, tutorialController, overlayController, setupConfig } from 'cty-mui-core';
|
|
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 { actionSheetController as actionSheetController$1, alertController as alertController$1, loadingController as loadingController$1, modalController, pickerController, popoverController, toastController } from '@ionic/core';
|
|
11
|
+
import { DOCUMENT, CommonModule } from '@angular/common';
|
|
12
|
+
import { applyPolyfills, defineCustomElements } from 'cty-mui-core/loader';
|
|
13
|
+
|
|
14
|
+
/* eslint-disable */
|
|
15
|
+
/* tslint:disable */
|
|
16
|
+
const proxyInputs = (Cmp, inputs) => {
|
|
17
|
+
const Prototype = Cmp.prototype;
|
|
18
|
+
inputs.forEach((item) => {
|
|
19
|
+
Object.defineProperty(Prototype, item, {
|
|
20
|
+
get() {
|
|
21
|
+
return this.el[item];
|
|
22
|
+
},
|
|
23
|
+
set(val) {
|
|
24
|
+
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
25
|
+
},
|
|
26
|
+
/**
|
|
27
|
+
* In the event that proxyInputs is called
|
|
28
|
+
* multiple times re-defining these inputs
|
|
29
|
+
* will cause an error to be thrown. As a result
|
|
30
|
+
* we set configurable: true to indicate these
|
|
31
|
+
* properties can be changed.
|
|
32
|
+
*/
|
|
33
|
+
configurable: true,
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
};
|
|
37
|
+
const proxyMethods = (Cmp, methods) => {
|
|
38
|
+
const Prototype = Cmp.prototype;
|
|
39
|
+
methods.forEach((methodName) => {
|
|
40
|
+
Prototype[methodName] = function () {
|
|
41
|
+
const args = arguments;
|
|
42
|
+
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
43
|
+
};
|
|
44
|
+
});
|
|
45
|
+
};
|
|
46
|
+
const proxyOutputs = (instance, el, events) => {
|
|
47
|
+
events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
|
|
48
|
+
};
|
|
49
|
+
const defineCustomElement = (tagName, customElement) => {
|
|
50
|
+
if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
|
|
51
|
+
customElements.define(tagName, customElement);
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
// tslint:disable-next-line: only-arrow-functions
|
|
55
|
+
function ProxyCmp(opts) {
|
|
56
|
+
const decorator = function (cls) {
|
|
57
|
+
const { defineCustomElementFn, inputs, methods } = opts;
|
|
58
|
+
if (defineCustomElementFn !== undefined) {
|
|
59
|
+
defineCustomElementFn();
|
|
60
|
+
}
|
|
61
|
+
if (inputs) {
|
|
62
|
+
proxyInputs(cls, inputs);
|
|
63
|
+
}
|
|
64
|
+
if (methods) {
|
|
65
|
+
proxyMethods(cls, methods);
|
|
66
|
+
}
|
|
67
|
+
return cls;
|
|
68
|
+
};
|
|
69
|
+
return decorator;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
let CtyActionSheet = class CtyActionSheet {
|
|
73
|
+
z;
|
|
74
|
+
el;
|
|
75
|
+
constructor(c, r, z) {
|
|
76
|
+
this.z = z;
|
|
77
|
+
c.detach();
|
|
78
|
+
this.el = r.nativeElement;
|
|
79
|
+
proxyOutputs(this, this.el, ['ctyDismiss', 'ctyTap', 'ctyDidPresent', 'ctyWillPresent', 'ctyWillDismiss', 'ctyDidDismiss']);
|
|
80
|
+
}
|
|
81
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyActionSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
82
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyActionSheet, selector: "cty-action-sheet", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cancelText: "cancelText", closeIcon: "closeIcon", closeable: "closeable", cssClass: "cssClass", enterAnimation: "enterAnimation", leaveAnimation: "leaveAnimation", options: "options", root: "root", subtitle: "subtitle", title: "title", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
83
|
+
};
|
|
84
|
+
CtyActionSheet = __decorate([
|
|
85
|
+
ProxyCmp({
|
|
86
|
+
inputs: ['animated', 'backdropDismiss', 'cancelText', 'closeIcon', 'closeable', 'cssClass', 'enterAnimation', 'leaveAnimation', 'options', 'root', 'subtitle', 'title', 'trigger'],
|
|
87
|
+
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
88
|
+
})
|
|
89
|
+
], CtyActionSheet);
|
|
90
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyActionSheet, decorators: [{
|
|
91
|
+
type: Component,
|
|
92
|
+
args: [{
|
|
93
|
+
selector: 'cty-action-sheet',
|
|
94
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
95
|
+
template: '<ng-content></ng-content>',
|
|
96
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
97
|
+
inputs: ['animated', 'backdropDismiss', 'cancelText', 'closeIcon', 'closeable', 'cssClass', 'enterAnimation', 'leaveAnimation', 'options', 'root', 'subtitle', 'title', 'trigger'],
|
|
98
|
+
}]
|
|
99
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
100
|
+
let CtyAgree = class CtyAgree {
|
|
101
|
+
z;
|
|
102
|
+
el;
|
|
103
|
+
constructor(c, r, z) {
|
|
104
|
+
this.z = z;
|
|
105
|
+
c.detach();
|
|
106
|
+
this.el = r.nativeElement;
|
|
107
|
+
proxyOutputs(this, this.el, ['ctyChange']);
|
|
108
|
+
}
|
|
109
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyAgree, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
110
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyAgree, selector: "cty-agree", inputs: { disabled: "disabled", spinner: "spinner", triggerArea: "triggerArea", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
111
|
+
};
|
|
112
|
+
CtyAgree = __decorate([
|
|
113
|
+
ProxyCmp({
|
|
114
|
+
inputs: ['disabled', 'spinner', 'triggerArea', 'value']
|
|
115
|
+
})
|
|
116
|
+
], CtyAgree);
|
|
117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyAgree, decorators: [{
|
|
118
|
+
type: Component,
|
|
119
|
+
args: [{
|
|
120
|
+
selector: 'cty-agree',
|
|
121
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
122
|
+
template: '<ng-content></ng-content>',
|
|
123
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
124
|
+
inputs: ['disabled', 'spinner', 'triggerArea', 'value'],
|
|
125
|
+
}]
|
|
126
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
127
|
+
let CtyAlert = class CtyAlert {
|
|
128
|
+
z;
|
|
129
|
+
el;
|
|
130
|
+
constructor(c, r, z) {
|
|
131
|
+
this.z = z;
|
|
132
|
+
c.detach();
|
|
133
|
+
this.el = r.nativeElement;
|
|
134
|
+
proxyOutputs(this, this.el, ['ctyDismiss', 'ctyTap', 'ctyDidPresent', 'ctyWillPresent', 'ctyWillDismiss', 'ctyDidDismiss']);
|
|
135
|
+
}
|
|
136
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
137
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyAlert, selector: "cty-alert", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", closeable: "closeable", content: "content", cssClass: "cssClass", enterAnimation: "enterAnimation", img: "img", leaveAnimation: "leaveAnimation", root: "root", title: "title", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
138
|
+
};
|
|
139
|
+
CtyAlert = __decorate([
|
|
140
|
+
ProxyCmp({
|
|
141
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'closeable', 'content', 'cssClass', 'enterAnimation', 'img', 'leaveAnimation', 'root', 'title', 'trigger'],
|
|
142
|
+
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
143
|
+
})
|
|
144
|
+
], CtyAlert);
|
|
145
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyAlert, decorators: [{
|
|
146
|
+
type: Component,
|
|
147
|
+
args: [{
|
|
148
|
+
selector: 'cty-alert',
|
|
149
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
150
|
+
template: '<ng-content></ng-content>',
|
|
151
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
152
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'closeable', 'content', 'cssClass', 'enterAnimation', 'img', 'leaveAnimation', 'root', 'title', 'trigger'],
|
|
153
|
+
}]
|
|
154
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
155
|
+
let CtyAnswerSheet = class CtyAnswerSheet {
|
|
156
|
+
z;
|
|
157
|
+
el;
|
|
158
|
+
constructor(c, r, z) {
|
|
159
|
+
this.z = z;
|
|
160
|
+
c.detach();
|
|
161
|
+
this.el = r.nativeElement;
|
|
162
|
+
proxyOutputs(this, this.el, ['ctyTap']);
|
|
163
|
+
}
|
|
164
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyAnswerSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
165
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyAnswerSheet, selector: "cty-answer-sheet", inputs: { answers: "answers", categories: "categories", displayTotal: "displayTotal", distinguish: "distinguish", placement: "placement", props: "props", results: "results", totalText: "totalText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
166
|
+
};
|
|
167
|
+
CtyAnswerSheet = __decorate([
|
|
168
|
+
ProxyCmp({
|
|
169
|
+
inputs: ['answers', 'categories', 'displayTotal', 'distinguish', 'placement', 'props', 'results', 'totalText']
|
|
170
|
+
})
|
|
171
|
+
], CtyAnswerSheet);
|
|
172
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyAnswerSheet, decorators: [{
|
|
173
|
+
type: Component,
|
|
174
|
+
args: [{
|
|
175
|
+
selector: 'cty-answer-sheet',
|
|
176
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
177
|
+
template: '<ng-content></ng-content>',
|
|
178
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
179
|
+
inputs: ['answers', 'categories', 'displayTotal', 'distinguish', 'placement', 'props', 'results', 'totalText'],
|
|
180
|
+
}]
|
|
181
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
182
|
+
let CtyArticleCard = class CtyArticleCard {
|
|
183
|
+
z;
|
|
184
|
+
el;
|
|
185
|
+
constructor(c, r, z) {
|
|
186
|
+
this.z = z;
|
|
187
|
+
c.detach();
|
|
188
|
+
this.el = r.nativeElement;
|
|
189
|
+
}
|
|
190
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyArticleCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
191
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyArticleCard, selector: "cty-article-card", inputs: { layout: "layout", thumbnails: "thumbnails", title: "title" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
192
|
+
};
|
|
193
|
+
CtyArticleCard = __decorate([
|
|
194
|
+
ProxyCmp({
|
|
195
|
+
inputs: ['layout', 'thumbnails', 'title']
|
|
196
|
+
})
|
|
197
|
+
], CtyArticleCard);
|
|
198
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyArticleCard, decorators: [{
|
|
199
|
+
type: Component,
|
|
200
|
+
args: [{
|
|
201
|
+
selector: 'cty-article-card',
|
|
202
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
203
|
+
template: '<ng-content></ng-content>',
|
|
204
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
205
|
+
inputs: ['layout', 'thumbnails', 'title'],
|
|
206
|
+
}]
|
|
207
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
208
|
+
let CtyAudio = class CtyAudio {
|
|
209
|
+
z;
|
|
210
|
+
el;
|
|
211
|
+
constructor(c, r, z) {
|
|
212
|
+
this.z = z;
|
|
213
|
+
c.detach();
|
|
214
|
+
this.el = r.nativeElement;
|
|
215
|
+
proxyOutputs(this, this.el, ['ctyEnd', 'ctyTimeupdate', 'ctyProgress', 'ctyCanplay', 'ctyPlay', 'ctyPause', 'ctyError']);
|
|
216
|
+
}
|
|
217
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyAudio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
218
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyAudio, selector: "cty-audio", inputs: { allowBackward: "allowBackward", allowForward: "allowForward", autoplay: "autoplay", cycleRate: "cycleRate", initialTime: "initialTime", playCtrl: "playCtrl", rate: "rate", rateVisible: "rateVisible", rates: "rates", trafficMsg: "trafficMsg", unAllowForwardMsg: "unAllowForwardMsg", unAllowRateMsg: "unAllowRateMsg", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
219
|
+
};
|
|
220
|
+
CtyAudio = __decorate([
|
|
221
|
+
ProxyCmp({
|
|
222
|
+
inputs: ['allowBackward', 'allowForward', 'autoplay', 'cycleRate', 'initialTime', 'playCtrl', 'rate', 'rateVisible', 'rates', 'trafficMsg', 'unAllowForwardMsg', 'unAllowRateMsg', 'url'],
|
|
223
|
+
methods: ['switchAudio', 'play', 'pause', 'setPlayRate', 'getAudioElement']
|
|
224
|
+
})
|
|
225
|
+
], CtyAudio);
|
|
226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyAudio, decorators: [{
|
|
227
|
+
type: Component,
|
|
228
|
+
args: [{
|
|
229
|
+
selector: 'cty-audio',
|
|
230
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
231
|
+
template: '<ng-content></ng-content>',
|
|
232
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
233
|
+
inputs: ['allowBackward', 'allowForward', 'autoplay', 'cycleRate', 'initialTime', 'playCtrl', 'rate', 'rateVisible', 'rates', 'trafficMsg', 'unAllowForwardMsg', 'unAllowRateMsg', 'url'],
|
|
234
|
+
}]
|
|
235
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
236
|
+
let CtyBanner = class CtyBanner {
|
|
237
|
+
z;
|
|
238
|
+
el;
|
|
239
|
+
constructor(c, r, z) {
|
|
240
|
+
this.z = z;
|
|
241
|
+
c.detach();
|
|
242
|
+
this.el = r.nativeElement;
|
|
243
|
+
proxyOutputs(this, this.el, ['ctySwipeChange', 'ctySwipeTap']);
|
|
244
|
+
}
|
|
245
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
246
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyBanner, selector: "cty-banner", inputs: { autoplay: "autoplay", banners: "banners", duration: "duration", indicator: "indicator", initialIndex: "initialIndex", loop: "loop", props: "props", touchable: "touchable", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
247
|
+
};
|
|
248
|
+
CtyBanner = __decorate([
|
|
249
|
+
ProxyCmp({
|
|
250
|
+
inputs: ['autoplay', 'banners', 'duration', 'indicator', 'initialIndex', 'loop', 'props', 'touchable', 'vertical'],
|
|
251
|
+
methods: ['swipeNext', 'swipePrev', 'swipeTo']
|
|
252
|
+
})
|
|
253
|
+
], CtyBanner);
|
|
254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyBanner, decorators: [{
|
|
255
|
+
type: Component,
|
|
256
|
+
args: [{
|
|
257
|
+
selector: 'cty-banner',
|
|
258
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
259
|
+
template: '<ng-content></ng-content>',
|
|
260
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
261
|
+
inputs: ['autoplay', 'banners', 'duration', 'indicator', 'initialIndex', 'loop', 'props', 'touchable', 'vertical'],
|
|
262
|
+
}]
|
|
263
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
264
|
+
let CtyCameraPhoto = class CtyCameraPhoto {
|
|
265
|
+
z;
|
|
266
|
+
el;
|
|
267
|
+
constructor(c, r, z) {
|
|
268
|
+
this.z = z;
|
|
269
|
+
c.detach();
|
|
270
|
+
this.el = r.nativeElement;
|
|
271
|
+
proxyOutputs(this, this.el, ['ctyTapStart', 'ctyTap', 'ctyDismiss', 'ctyDidPresent', 'ctyWillPresent', 'ctyWillDismiss', 'ctyDidDismiss']);
|
|
272
|
+
}
|
|
273
|
+
/** @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 });
|
|
274
|
+
/** @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 });
|
|
275
|
+
};
|
|
276
|
+
CtyCameraPhoto = __decorate([
|
|
277
|
+
ProxyCmp({
|
|
278
|
+
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'],
|
|
279
|
+
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
280
|
+
})
|
|
281
|
+
], CtyCameraPhoto);
|
|
282
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCameraPhoto, decorators: [{
|
|
283
|
+
type: Component,
|
|
284
|
+
args: [{
|
|
285
|
+
selector: 'cty-camera-photo',
|
|
286
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
287
|
+
template: '<ng-content></ng-content>',
|
|
288
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
289
|
+
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'],
|
|
290
|
+
}]
|
|
291
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
292
|
+
let CtyCanvasBoard = class CtyCanvasBoard {
|
|
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, ['ctyClear', 'ctyStart', 'ctyMove', 'ctyEnd', 'ctyConfirm']);
|
|
300
|
+
}
|
|
301
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCanvasBoard, 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: CtyCanvasBoard, selector: "cty-canvas-board", inputs: { bgColor: "bgColor", bgIcon: "bgIcon", clearIcon: "clearIcon", clearLabel: "clearLabel", confirmLabel: "confirmLabel", dpr: "dpr", eraserIcon: "eraserIcon", footerOpn: "footerOpn", headerOpn: "headerOpn", lineCap: "lineCap", lineWidths: "lineWidths", pencilIcon: "pencilIcon", quality: "quality", redoIcon: "redoIcon", showButtons: "showButtons", strokeColor: "strokeColor", strokeWidth: "strokeWidth", suffix: "suffix", undoIcon: "undoIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
303
|
+
};
|
|
304
|
+
CtyCanvasBoard = __decorate([
|
|
305
|
+
ProxyCmp({
|
|
306
|
+
inputs: ['bgColor', 'bgIcon', 'clearIcon', 'clearLabel', 'confirmLabel', 'dpr', 'eraserIcon', 'footerOpn', 'headerOpn', 'lineCap', 'lineWidths', 'pencilIcon', 'quality', 'redoIcon', 'showButtons', 'strokeColor', 'strokeWidth', 'suffix', 'undoIcon'],
|
|
307
|
+
methods: ['undo', 'redo', 'clear', 'getDataURL']
|
|
308
|
+
})
|
|
309
|
+
], CtyCanvasBoard);
|
|
310
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCanvasBoard, decorators: [{
|
|
311
|
+
type: Component,
|
|
312
|
+
args: [{
|
|
313
|
+
selector: 'cty-canvas-board',
|
|
314
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
315
|
+
template: '<ng-content></ng-content>',
|
|
316
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
317
|
+
inputs: ['bgColor', 'bgIcon', 'clearIcon', 'clearLabel', 'confirmLabel', 'dpr', 'eraserIcon', 'footerOpn', 'headerOpn', 'lineCap', 'lineWidths', 'pencilIcon', 'quality', 'redoIcon', 'showButtons', 'strokeColor', 'strokeWidth', 'suffix', 'undoIcon'],
|
|
318
|
+
}]
|
|
319
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
320
|
+
let CtyCanvasVideo = class CtyCanvasVideo {
|
|
321
|
+
z;
|
|
322
|
+
el;
|
|
323
|
+
constructor(c, r, z) {
|
|
324
|
+
this.z = z;
|
|
325
|
+
c.detach();
|
|
326
|
+
this.el = r.nativeElement;
|
|
327
|
+
proxyOutputs(this, this.el, ['ctySlideChange', 'ctySlidePrev', 'ctySlideNext', 'ctyLongPress', 'ctyVideoUpdate', 'ctyVideoEnd', 'ctyTapName', 'ctyTapAvatar', 'ctyTapLike', 'ctyTapCollect', 'ctyTapShare']);
|
|
328
|
+
}
|
|
329
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCanvasVideo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
330
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyCanvasVideo, selector: "cty-canvas-video", inputs: { autoplay: "autoplay", avatarButton: "avatarButton", next: "next", preload: "preload", props: "props", slice: "slice", videos: "videos" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
331
|
+
};
|
|
332
|
+
CtyCanvasVideo = __decorate([
|
|
333
|
+
ProxyCmp({
|
|
334
|
+
inputs: ['autoplay', 'avatarButton', 'next', 'preload', 'props', 'slice', 'videos'],
|
|
335
|
+
methods: ['slideToPrev', 'slideToNext']
|
|
336
|
+
})
|
|
337
|
+
], CtyCanvasVideo);
|
|
338
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCanvasVideo, decorators: [{
|
|
339
|
+
type: Component,
|
|
340
|
+
args: [{
|
|
341
|
+
selector: 'cty-canvas-video',
|
|
342
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
343
|
+
template: '<ng-content></ng-content>',
|
|
344
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
345
|
+
inputs: ['autoplay', 'avatarButton', 'next', 'preload', 'props', 'slice', 'videos'],
|
|
346
|
+
}]
|
|
347
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
348
|
+
let CtyCascader = class CtyCascader {
|
|
349
|
+
z;
|
|
350
|
+
el;
|
|
351
|
+
constructor(c, r, z) {
|
|
352
|
+
this.z = z;
|
|
353
|
+
c.detach();
|
|
354
|
+
this.el = r.nativeElement;
|
|
355
|
+
proxyOutputs(this, this.el, ['ctyDismiss', 'ctyChange', 'ctyComfirm', 'ctyDidPresent', 'ctyWillPresent', 'ctyWillDismiss', 'ctyDidDismiss']);
|
|
356
|
+
}
|
|
357
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCascader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
358
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyCascader, selector: "cty-cascader", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cancelText: "cancelText", cascade: "cascade", childrenKey: "childrenKey", columns: "columns", columnsCount: "columnsCount", confirmText: "confirmText", cssClass: "cssClass", defaultValues: "defaultValues", enterAnimation: "enterAnimation", leaveAnimation: "leaveAnimation", optionCount: "optionCount", optionHeight: "optionHeight", root: "root", textKey: "textKey", title: "title", trigger: "trigger", type: "type", valueKey: "valueKey" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
359
|
+
};
|
|
360
|
+
CtyCascader = __decorate([
|
|
361
|
+
ProxyCmp({
|
|
362
|
+
inputs: ['animated', 'backdropDismiss', 'cancelText', 'cascade', 'childrenKey', 'columns', 'columnsCount', 'confirmText', 'cssClass', 'defaultValues', 'enterAnimation', 'leaveAnimation', 'optionCount', 'optionHeight', 'root', 'textKey', 'title', 'trigger', 'type', 'valueKey'],
|
|
363
|
+
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
364
|
+
})
|
|
365
|
+
], CtyCascader);
|
|
366
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCascader, decorators: [{
|
|
367
|
+
type: Component,
|
|
368
|
+
args: [{
|
|
369
|
+
selector: 'cty-cascader',
|
|
370
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
371
|
+
template: '<ng-content></ng-content>',
|
|
372
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
373
|
+
inputs: ['animated', 'backdropDismiss', 'cancelText', 'cascade', 'childrenKey', 'columns', 'columnsCount', 'confirmText', 'cssClass', 'defaultValues', 'enterAnimation', 'leaveAnimation', 'optionCount', 'optionHeight', 'root', 'textKey', 'title', 'trigger', 'type', 'valueKey'],
|
|
374
|
+
}]
|
|
375
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
376
|
+
let CtyCircle = class CtyCircle {
|
|
377
|
+
z;
|
|
378
|
+
el;
|
|
379
|
+
constructor(c, r, z) {
|
|
380
|
+
this.z = z;
|
|
381
|
+
c.detach();
|
|
382
|
+
this.el = r.nativeElement;
|
|
383
|
+
}
|
|
384
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCircle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
385
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyCircle, selector: "cty-circle", inputs: { clockwise: "clockwise", color: "color", rad: "rad", rate: "rate", text: "text", width: "width", zeroTransparent: "zeroTransparent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
386
|
+
};
|
|
387
|
+
CtyCircle = __decorate([
|
|
388
|
+
ProxyCmp({
|
|
389
|
+
inputs: ['clockwise', 'color', 'rad', 'rate', 'text', 'width', 'zeroTransparent']
|
|
390
|
+
})
|
|
391
|
+
], CtyCircle);
|
|
392
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCircle, decorators: [{
|
|
393
|
+
type: Component,
|
|
394
|
+
args: [{
|
|
395
|
+
selector: 'cty-circle',
|
|
396
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
397
|
+
template: '<ng-content></ng-content>',
|
|
398
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
399
|
+
inputs: ['clockwise', 'color', 'rad', 'rate', 'text', 'width', 'zeroTransparent'],
|
|
400
|
+
}]
|
|
401
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
402
|
+
let CtyCountDown = class CtyCountDown {
|
|
403
|
+
z;
|
|
404
|
+
el;
|
|
405
|
+
constructor(c, r, z) {
|
|
406
|
+
this.z = z;
|
|
407
|
+
c.detach();
|
|
408
|
+
this.el = r.nativeElement;
|
|
409
|
+
proxyOutputs(this, this.el, ['ctyChange', 'ctyFinish']);
|
|
410
|
+
}
|
|
411
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCountDown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
412
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyCountDown, selector: "cty-count-down", inputs: { autoStart: "autoStart", dateFormatUnit: "dateFormatUnit", format: "format", millisecond: "millisecond", time: "time", unit: "unit" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
413
|
+
};
|
|
414
|
+
CtyCountDown = __decorate([
|
|
415
|
+
ProxyCmp({
|
|
416
|
+
inputs: ['autoStart', 'dateFormatUnit', 'format', 'millisecond', 'time', 'unit'],
|
|
417
|
+
methods: ['start', 'reset', 'pause']
|
|
418
|
+
})
|
|
419
|
+
], CtyCountDown);
|
|
420
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCountDown, decorators: [{
|
|
421
|
+
type: Component,
|
|
422
|
+
args: [{
|
|
423
|
+
selector: 'cty-count-down',
|
|
424
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
425
|
+
template: '<ng-content></ng-content>',
|
|
426
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
427
|
+
inputs: ['autoStart', 'dateFormatUnit', 'format', 'millisecond', 'time', 'unit'],
|
|
428
|
+
}]
|
|
429
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
430
|
+
let CtyCropImage = class CtyCropImage {
|
|
431
|
+
z;
|
|
432
|
+
el;
|
|
433
|
+
constructor(c, r, z) {
|
|
434
|
+
this.z = z;
|
|
435
|
+
c.detach();
|
|
436
|
+
this.el = r.nativeElement;
|
|
437
|
+
proxyOutputs(this, this.el, ['ctyCancel', 'ctyConfirm']);
|
|
438
|
+
}
|
|
439
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCropImage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
440
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyCropImage, selector: "cty-crop-image", inputs: { cancelText: "cancelText", confirmText: "confirmText", imageBackground: "imageBackground", imageWidth: "imageWidth", maxScale: "maxScale", minScale: "minScale", quality: "quality", suffix: "suffix", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
441
|
+
};
|
|
442
|
+
CtyCropImage = __decorate([
|
|
443
|
+
ProxyCmp({
|
|
444
|
+
inputs: ['cancelText', 'confirmText', 'imageBackground', 'imageWidth', 'maxScale', 'minScale', 'quality', 'suffix', 'url'],
|
|
445
|
+
methods: ['getCanvasImg']
|
|
446
|
+
})
|
|
447
|
+
], CtyCropImage);
|
|
448
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCropImage, decorators: [{
|
|
449
|
+
type: Component,
|
|
450
|
+
args: [{
|
|
451
|
+
selector: 'cty-crop-image',
|
|
452
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
453
|
+
template: '<ng-content></ng-content>',
|
|
454
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
455
|
+
inputs: ['cancelText', 'confirmText', 'imageBackground', 'imageWidth', 'maxScale', 'minScale', 'quality', 'suffix', 'url'],
|
|
456
|
+
}]
|
|
457
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
458
|
+
let CtyDivider = class CtyDivider {
|
|
459
|
+
z;
|
|
460
|
+
el;
|
|
461
|
+
constructor(c, r, z) {
|
|
462
|
+
this.z = z;
|
|
463
|
+
c.detach();
|
|
464
|
+
this.el = r.nativeElement;
|
|
465
|
+
}
|
|
466
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
467
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyDivider, selector: "cty-divider", inputs: { placement: "placement", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
468
|
+
};
|
|
469
|
+
CtyDivider = __decorate([
|
|
470
|
+
ProxyCmp({
|
|
471
|
+
inputs: ['placement', 'vertical']
|
|
472
|
+
})
|
|
473
|
+
], CtyDivider);
|
|
474
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyDivider, decorators: [{
|
|
475
|
+
type: Component,
|
|
476
|
+
args: [{
|
|
477
|
+
selector: 'cty-divider',
|
|
478
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
479
|
+
template: '<ng-content></ng-content>',
|
|
480
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
481
|
+
inputs: ['placement', 'vertical'],
|
|
482
|
+
}]
|
|
483
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
484
|
+
let CtyEmpty = class CtyEmpty {
|
|
485
|
+
z;
|
|
486
|
+
el;
|
|
487
|
+
constructor(c, r, z) {
|
|
488
|
+
this.z = z;
|
|
489
|
+
c.detach();
|
|
490
|
+
this.el = r.nativeElement;
|
|
491
|
+
}
|
|
492
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyEmpty, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
493
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyEmpty, selector: "cty-empty", inputs: { description: "description", image: "image" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
494
|
+
};
|
|
495
|
+
CtyEmpty = __decorate([
|
|
496
|
+
ProxyCmp({
|
|
497
|
+
inputs: ['description', 'image']
|
|
498
|
+
})
|
|
499
|
+
], CtyEmpty);
|
|
500
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyEmpty, decorators: [{
|
|
501
|
+
type: Component,
|
|
502
|
+
args: [{
|
|
503
|
+
selector: 'cty-empty',
|
|
504
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
505
|
+
template: '<ng-content></ng-content>',
|
|
506
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
507
|
+
inputs: ['description', 'image'],
|
|
508
|
+
}]
|
|
509
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
510
|
+
let CtyFloatingBubble = class CtyFloatingBubble {
|
|
511
|
+
z;
|
|
512
|
+
el;
|
|
513
|
+
constructor(c, r, z) {
|
|
514
|
+
this.z = z;
|
|
515
|
+
c.detach();
|
|
516
|
+
this.el = r.nativeElement;
|
|
517
|
+
proxyOutputs(this, this.el, ['ctyMoveStart', 'ctyMove', 'ctyMoveEnd', 'ctyClick']);
|
|
518
|
+
}
|
|
519
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyFloatingBubble, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
520
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyFloatingBubble, selector: "cty-floating-bubble", inputs: { axis: "axis", gap: "gap", icon: "icon", magnetic: "magnetic", offset: "offset" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
521
|
+
};
|
|
522
|
+
CtyFloatingBubble = __decorate([
|
|
523
|
+
ProxyCmp({
|
|
524
|
+
inputs: ['axis', 'gap', 'icon', 'magnetic', 'offset']
|
|
525
|
+
})
|
|
526
|
+
], CtyFloatingBubble);
|
|
527
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyFloatingBubble, decorators: [{
|
|
528
|
+
type: Component,
|
|
529
|
+
args: [{
|
|
530
|
+
selector: 'cty-floating-bubble',
|
|
531
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
532
|
+
template: '<ng-content></ng-content>',
|
|
533
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
534
|
+
inputs: ['axis', 'gap', 'icon', 'magnetic', 'offset'],
|
|
535
|
+
}]
|
|
536
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
537
|
+
let CtyFloatingPanel = class CtyFloatingPanel {
|
|
538
|
+
z;
|
|
539
|
+
el;
|
|
540
|
+
constructor(c, r, z) {
|
|
541
|
+
this.z = z;
|
|
542
|
+
c.detach();
|
|
543
|
+
this.el = r.nativeElement;
|
|
544
|
+
proxyOutputs(this, this.el, ['ctyHeightChange']);
|
|
545
|
+
}
|
|
546
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyFloatingPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
547
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyFloatingPanel, selector: "cty-floating-panel", inputs: { anchors: "anchors", contentDraggable: "contentDraggable", damp: "damp", endAnchor: "endAnchor", icon: "icon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
548
|
+
};
|
|
549
|
+
CtyFloatingPanel = __decorate([
|
|
550
|
+
ProxyCmp({
|
|
551
|
+
inputs: ['anchors', 'contentDraggable', 'damp', 'endAnchor', 'icon']
|
|
552
|
+
})
|
|
553
|
+
], CtyFloatingPanel);
|
|
554
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyFloatingPanel, decorators: [{
|
|
555
|
+
type: Component,
|
|
556
|
+
args: [{
|
|
557
|
+
selector: 'cty-floating-panel',
|
|
558
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
559
|
+
template: '<ng-content></ng-content>',
|
|
560
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
561
|
+
inputs: ['anchors', 'contentDraggable', 'damp', 'endAnchor', 'icon'],
|
|
562
|
+
}]
|
|
563
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
564
|
+
let CtyIcon = class CtyIcon {
|
|
565
|
+
z;
|
|
566
|
+
el;
|
|
567
|
+
constructor(c, r, z) {
|
|
568
|
+
this.z = z;
|
|
569
|
+
c.detach();
|
|
570
|
+
this.el = r.nativeElement;
|
|
571
|
+
}
|
|
572
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
573
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyIcon, selector: "cty-icon", inputs: { color: "color", flipRtl: "flipRtl", lazy: "lazy", name: "name", sanitize: "sanitize", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
574
|
+
};
|
|
575
|
+
CtyIcon = __decorate([
|
|
576
|
+
ProxyCmp({
|
|
577
|
+
inputs: ['color', 'flipRtl', 'lazy', 'name', 'sanitize', 'size']
|
|
578
|
+
})
|
|
579
|
+
], CtyIcon);
|
|
580
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyIcon, decorators: [{
|
|
581
|
+
type: Component,
|
|
582
|
+
args: [{
|
|
583
|
+
selector: 'cty-icon',
|
|
584
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
585
|
+
template: '<ng-content></ng-content>',
|
|
586
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
587
|
+
inputs: ['color', 'flipRtl', 'lazy', 'name', 'sanitize', 'size'],
|
|
588
|
+
}]
|
|
589
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
590
|
+
let CtyImageUpload = class CtyImageUpload {
|
|
591
|
+
z;
|
|
592
|
+
el;
|
|
593
|
+
constructor(c, r, z) {
|
|
594
|
+
this.z = z;
|
|
595
|
+
c.detach();
|
|
596
|
+
this.el = r.nativeElement;
|
|
597
|
+
proxyOutputs(this, this.el, ['ctyImagePicker', 'ctyAddImageTap', 'ctyImageTap', 'ctyDeleteImage', 'ctImageViewerDismiss']);
|
|
598
|
+
}
|
|
599
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyImageUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
600
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyImageUpload, selector: "cty-image-upload", inputs: { addIcon: "addIcon", addImage: "addImage", cameraPhotoOptions: "cameraPhotoOptions", count: "count", deleteable: "deleteable", imageViewer: "imageViewer", imageViewerOptions: "imageViewerOptions", images: "images" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
601
|
+
};
|
|
602
|
+
CtyImageUpload = __decorate([
|
|
603
|
+
ProxyCmp({
|
|
604
|
+
inputs: ['addIcon', 'addImage', 'cameraPhotoOptions', 'count', 'deleteable', 'imageViewer', 'imageViewerOptions', 'images']
|
|
605
|
+
})
|
|
606
|
+
], CtyImageUpload);
|
|
607
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyImageUpload, decorators: [{
|
|
608
|
+
type: Component,
|
|
609
|
+
args: [{
|
|
610
|
+
selector: 'cty-image-upload',
|
|
611
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
612
|
+
template: '<ng-content></ng-content>',
|
|
613
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
614
|
+
inputs: ['addIcon', 'addImage', 'cameraPhotoOptions', 'count', 'deleteable', 'imageViewer', 'imageViewerOptions', 'images'],
|
|
615
|
+
}]
|
|
616
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
617
|
+
let CtyImageViewer = class CtyImageViewer {
|
|
618
|
+
z;
|
|
619
|
+
el;
|
|
620
|
+
constructor(c, r, z) {
|
|
621
|
+
this.z = z;
|
|
622
|
+
c.detach();
|
|
623
|
+
this.el = r.nativeElement;
|
|
624
|
+
proxyOutputs(this, this.el, ['ctyDismiss', 'ctySlideChange', 'ctyDidPresent', 'ctyWillPresent', 'ctyWillDismiss', 'ctyDidDismiss']);
|
|
625
|
+
}
|
|
626
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyImageViewer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
627
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyImageViewer, selector: "cty-image-viewer", inputs: { animated: "animated", attrs: "attrs", backdropDismiss: "backdropDismiss", closeable: "closeable", cssClass: "cssClass", enterAnimation: "enterAnimation", images: "images", initialSlide: "initialSlide", leaveAnimation: "leaveAnimation", loop: "loop", pager: "pager", root: "root", speed: "speed", trigger: "trigger", zoom: "zoom" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
628
|
+
};
|
|
629
|
+
CtyImageViewer = __decorate([
|
|
630
|
+
ProxyCmp({
|
|
631
|
+
inputs: ['animated', 'attrs', 'backdropDismiss', 'closeable', 'cssClass', 'enterAnimation', 'images', 'initialSlide', 'leaveAnimation', 'loop', 'pager', 'root', 'speed', 'trigger', 'zoom'],
|
|
632
|
+
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss', 'slideTo']
|
|
633
|
+
})
|
|
634
|
+
], CtyImageViewer);
|
|
635
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyImageViewer, decorators: [{
|
|
636
|
+
type: Component,
|
|
637
|
+
args: [{
|
|
638
|
+
selector: 'cty-image-viewer',
|
|
639
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
640
|
+
template: '<ng-content></ng-content>',
|
|
641
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
642
|
+
inputs: ['animated', 'attrs', 'backdropDismiss', 'closeable', 'cssClass', 'enterAnimation', 'images', 'initialSlide', 'leaveAnimation', 'loop', 'pager', 'root', 'speed', 'trigger', 'zoom'],
|
|
643
|
+
}]
|
|
644
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
645
|
+
let CtyIndexBar = class CtyIndexBar {
|
|
646
|
+
z;
|
|
647
|
+
el;
|
|
648
|
+
constructor(c, r, z) {
|
|
649
|
+
this.z = z;
|
|
650
|
+
c.detach();
|
|
651
|
+
this.el = r.nativeElement;
|
|
652
|
+
proxyOutputs(this, this.el, ['ctyScrollToPoint']);
|
|
653
|
+
}
|
|
654
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyIndexBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
655
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyIndexBar, selector: "cty-index-bar", inputs: { alphabet: "alphabet", alphabets: "alphabets", duration: "duration", indexList: "indexList", offsetDiff: "offsetDiff", sticky: "sticky", stickyTop: "stickyTop", sum: "sum" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
656
|
+
};
|
|
657
|
+
CtyIndexBar = __decorate([
|
|
658
|
+
ProxyCmp({
|
|
659
|
+
inputs: ['alphabet', 'alphabets', 'duration', 'indexList', 'offsetDiff', 'sticky', 'stickyTop', 'sum'],
|
|
660
|
+
methods: ['scrollToIndex']
|
|
661
|
+
})
|
|
662
|
+
], CtyIndexBar);
|
|
663
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyIndexBar, decorators: [{
|
|
664
|
+
type: Component,
|
|
665
|
+
args: [{
|
|
666
|
+
selector: 'cty-index-bar',
|
|
667
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
668
|
+
template: '<ng-content></ng-content>',
|
|
669
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
670
|
+
inputs: ['alphabet', 'alphabets', 'duration', 'indexList', 'offsetDiff', 'sticky', 'stickyTop', 'sum'],
|
|
671
|
+
}]
|
|
672
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
673
|
+
let CtyKeyboard = class CtyKeyboard {
|
|
674
|
+
z;
|
|
675
|
+
el;
|
|
676
|
+
constructor(c, r, z) {
|
|
677
|
+
this.z = z;
|
|
678
|
+
c.detach();
|
|
679
|
+
this.el = r.nativeElement;
|
|
680
|
+
}
|
|
681
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyKeyboard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
682
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyKeyboard, selector: "cty-keyboard", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
683
|
+
};
|
|
684
|
+
CtyKeyboard = __decorate([
|
|
685
|
+
ProxyCmp({})
|
|
686
|
+
], CtyKeyboard);
|
|
687
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyKeyboard, decorators: [{
|
|
688
|
+
type: Component,
|
|
689
|
+
args: [{
|
|
690
|
+
selector: 'cty-keyboard',
|
|
691
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
692
|
+
template: '<ng-content></ng-content>',
|
|
693
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
694
|
+
inputs: [],
|
|
695
|
+
}]
|
|
696
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
697
|
+
let CtyLoading = class CtyLoading {
|
|
698
|
+
z;
|
|
699
|
+
el;
|
|
700
|
+
constructor(c, r, z) {
|
|
701
|
+
this.z = z;
|
|
702
|
+
c.detach();
|
|
703
|
+
this.el = r.nativeElement;
|
|
704
|
+
proxyOutputs(this, this.el, ['ctyDismiss', 'ctyDidPresent', 'ctyWillPresent', 'ctyWillDismiss', 'ctyDidDismiss']);
|
|
705
|
+
}
|
|
706
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyLoading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
707
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyLoading, selector: "cty-loading", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cssClass: "cssClass", enterAnimation: "enterAnimation", img: "img", leaveAnimation: "leaveAnimation", root: "root", spinner: "spinner", trigger: "trigger", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
708
|
+
};
|
|
709
|
+
CtyLoading = __decorate([
|
|
710
|
+
ProxyCmp({
|
|
711
|
+
inputs: ['animated', 'backdropDismiss', 'cssClass', 'enterAnimation', 'img', 'leaveAnimation', 'root', 'spinner', 'trigger', 'vertical'],
|
|
712
|
+
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
713
|
+
})
|
|
714
|
+
], CtyLoading);
|
|
715
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyLoading, decorators: [{
|
|
716
|
+
type: Component,
|
|
717
|
+
args: [{
|
|
718
|
+
selector: 'cty-loading',
|
|
719
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
720
|
+
template: '<ng-content></ng-content>',
|
|
721
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
722
|
+
inputs: ['animated', 'backdropDismiss', 'cssClass', 'enterAnimation', 'img', 'leaveAnimation', 'root', 'spinner', 'trigger', 'vertical'],
|
|
723
|
+
}]
|
|
724
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
725
|
+
let CtyMediaCapture = class CtyMediaCapture {
|
|
726
|
+
z;
|
|
727
|
+
el;
|
|
728
|
+
constructor(c, r, z) {
|
|
729
|
+
this.z = z;
|
|
730
|
+
c.detach();
|
|
731
|
+
this.el = r.nativeElement;
|
|
732
|
+
proxyOutputs(this, this.el, ['ctyDismiss', 'ctyComplete', 'ctyStart', 'ctyStop']);
|
|
733
|
+
}
|
|
734
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyMediaCapture, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
735
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyMediaCapture, selector: "cty-media-capture", inputs: { autoplay: "autoplay", captureTime: "captureTime", closeIcon: "closeIcon", confirmText: "confirmText", controls: "controls", loop: "loop", options: "options", poster: "poster", revocationIcon: "revocationIcon", timeLimit: "timeLimit" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
736
|
+
};
|
|
737
|
+
CtyMediaCapture = __decorate([
|
|
738
|
+
ProxyCmp({
|
|
739
|
+
inputs: ['autoplay', 'captureTime', 'closeIcon', 'confirmText', 'controls', 'loop', 'options', 'poster', 'revocationIcon', 'timeLimit'],
|
|
740
|
+
methods: ['startVideoCapture', 'stopVideoCapture']
|
|
741
|
+
})
|
|
742
|
+
], CtyMediaCapture);
|
|
743
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyMediaCapture, decorators: [{
|
|
744
|
+
type: Component,
|
|
745
|
+
args: [{
|
|
746
|
+
selector: 'cty-media-capture',
|
|
747
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
748
|
+
template: '<ng-content></ng-content>',
|
|
749
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
750
|
+
inputs: ['autoplay', 'captureTime', 'closeIcon', 'confirmText', 'controls', 'loop', 'options', 'poster', 'revocationIcon', 'timeLimit'],
|
|
751
|
+
}]
|
|
752
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
753
|
+
let CtyNavBar = class CtyNavBar {
|
|
754
|
+
z;
|
|
755
|
+
el;
|
|
756
|
+
constructor(c, r, z) {
|
|
757
|
+
this.z = z;
|
|
758
|
+
c.detach();
|
|
759
|
+
this.el = r.nativeElement;
|
|
760
|
+
proxyOutputs(this, this.el, ['ctyDismiss']);
|
|
761
|
+
}
|
|
762
|
+
/** @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 });
|
|
763
|
+
/** @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 });
|
|
764
|
+
};
|
|
765
|
+
CtyNavBar = __decorate([
|
|
766
|
+
ProxyCmp({
|
|
767
|
+
inputs: ['arrow', 'end', 'start', 'title', 'type']
|
|
768
|
+
})
|
|
769
|
+
], CtyNavBar);
|
|
770
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyNavBar, decorators: [{
|
|
771
|
+
type: Component,
|
|
772
|
+
args: [{
|
|
773
|
+
selector: 'cty-nav-bar',
|
|
774
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
775
|
+
template: '<ng-content></ng-content>',
|
|
776
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
777
|
+
inputs: ['arrow', 'end', 'start', 'title', 'type'],
|
|
778
|
+
}]
|
|
779
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
780
|
+
let CtyNoticeBar = class CtyNoticeBar {
|
|
781
|
+
z;
|
|
782
|
+
el;
|
|
783
|
+
constructor(c, r, z) {
|
|
784
|
+
this.z = z;
|
|
785
|
+
c.detach();
|
|
786
|
+
this.el = r.nativeElement;
|
|
787
|
+
proxyOutputs(this, this.el, ['ctyIconTap']);
|
|
788
|
+
}
|
|
789
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyNoticeBar, 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: CtyNoticeBar, selector: "cty-notice-bar", inputs: { endIcon: "endIcon", scrollable: "scrollable", speed: "speed", startIcon: "startIcon", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
791
|
+
};
|
|
792
|
+
CtyNoticeBar = __decorate([
|
|
793
|
+
ProxyCmp({
|
|
794
|
+
inputs: ['endIcon', 'scrollable', 'speed', 'startIcon', 'text']
|
|
795
|
+
})
|
|
796
|
+
], CtyNoticeBar);
|
|
797
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyNoticeBar, decorators: [{
|
|
798
|
+
type: Component,
|
|
799
|
+
args: [{
|
|
800
|
+
selector: 'cty-notice-bar',
|
|
801
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
802
|
+
template: '<ng-content></ng-content>',
|
|
803
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
804
|
+
inputs: ['endIcon', 'scrollable', 'speed', 'startIcon', 'text'],
|
|
805
|
+
}]
|
|
806
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
807
|
+
let CtyOverlay = class CtyOverlay {
|
|
808
|
+
z;
|
|
809
|
+
el;
|
|
810
|
+
constructor(c, r, z) {
|
|
811
|
+
this.z = z;
|
|
812
|
+
c.detach();
|
|
813
|
+
this.el = r.nativeElement;
|
|
814
|
+
proxyOutputs(this, this.el, ['ctyDismiss', 'ctyDidPresent', 'ctyWillPresent', 'ctyWillDismiss', 'ctyDidDismiss']);
|
|
815
|
+
}
|
|
816
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyOverlay, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
817
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyOverlay, selector: "cty-overlay", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cssClass: "cssClass", enterAnimation: "enterAnimation", html: "html", leaveAnimation: "leaveAnimation", position: "position", root: "root", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
818
|
+
};
|
|
819
|
+
CtyOverlay = __decorate([
|
|
820
|
+
ProxyCmp({
|
|
821
|
+
inputs: ['animated', 'backdropDismiss', 'cssClass', 'enterAnimation', 'html', 'leaveAnimation', 'position', 'root', 'trigger'],
|
|
822
|
+
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
823
|
+
})
|
|
824
|
+
], CtyOverlay);
|
|
825
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyOverlay, decorators: [{
|
|
826
|
+
type: Component,
|
|
827
|
+
args: [{
|
|
828
|
+
selector: 'cty-overlay',
|
|
829
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
830
|
+
template: '<ng-content></ng-content>',
|
|
831
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
832
|
+
inputs: ['animated', 'backdropDismiss', 'cssClass', 'enterAnimation', 'html', 'leaveAnimation', 'position', 'root', 'trigger'],
|
|
833
|
+
}]
|
|
834
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
835
|
+
let CtyPdfViewer = class CtyPdfViewer {
|
|
836
|
+
z;
|
|
837
|
+
el;
|
|
838
|
+
constructor(c, r, z) {
|
|
839
|
+
this.z = z;
|
|
840
|
+
c.detach();
|
|
841
|
+
this.el = r.nativeElement;
|
|
842
|
+
proxyOutputs(this, this.el, ['ctyInit', 'ctyEnd']);
|
|
843
|
+
}
|
|
844
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyPdfViewer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
845
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyPdfViewer, selector: "cty-pdf-viewer", inputs: { url: "url", viewerUrl: "viewerUrl" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
846
|
+
};
|
|
847
|
+
CtyPdfViewer = __decorate([
|
|
848
|
+
ProxyCmp({
|
|
849
|
+
inputs: ['url', 'viewerUrl']
|
|
850
|
+
})
|
|
851
|
+
], CtyPdfViewer);
|
|
852
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyPdfViewer, decorators: [{
|
|
853
|
+
type: Component,
|
|
854
|
+
args: [{
|
|
855
|
+
selector: 'cty-pdf-viewer',
|
|
856
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
857
|
+
template: '<ng-content></ng-content>',
|
|
858
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
859
|
+
inputs: ['url', 'viewerUrl'],
|
|
860
|
+
}]
|
|
861
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
862
|
+
let CtyPermissionPurpose = class CtyPermissionPurpose {
|
|
863
|
+
z;
|
|
864
|
+
el;
|
|
865
|
+
constructor(c, r, z) {
|
|
866
|
+
this.z = z;
|
|
867
|
+
c.detach();
|
|
868
|
+
this.el = r.nativeElement;
|
|
869
|
+
proxyOutputs(this, this.el, ['ctyDismiss']);
|
|
870
|
+
}
|
|
871
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyPermissionPurpose, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
872
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyPermissionPurpose, selector: "cty-permission-purpose", inputs: { backdropDismiss: "backdropDismiss", description: "description" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
873
|
+
};
|
|
874
|
+
CtyPermissionPurpose = __decorate([
|
|
875
|
+
ProxyCmp({
|
|
876
|
+
inputs: ['backdropDismiss', 'description']
|
|
877
|
+
})
|
|
878
|
+
], CtyPermissionPurpose);
|
|
879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyPermissionPurpose, decorators: [{
|
|
880
|
+
type: Component,
|
|
881
|
+
args: [{
|
|
882
|
+
selector: 'cty-permission-purpose',
|
|
883
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
884
|
+
template: '<ng-content></ng-content>',
|
|
885
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
886
|
+
inputs: ['backdropDismiss', 'description'],
|
|
887
|
+
}]
|
|
888
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
889
|
+
let CtyProgress = class CtyProgress {
|
|
890
|
+
z;
|
|
891
|
+
el;
|
|
892
|
+
constructor(c, r, z) {
|
|
893
|
+
this.z = z;
|
|
894
|
+
c.detach();
|
|
895
|
+
this.el = r.nativeElement;
|
|
896
|
+
}
|
|
897
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
898
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyProgress, selector: "cty-progress", inputs: { percentage: "percentage", pivot: "pivot", pivotText: "pivotText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
899
|
+
};
|
|
900
|
+
CtyProgress = __decorate([
|
|
901
|
+
ProxyCmp({
|
|
902
|
+
inputs: ['percentage', 'pivot', 'pivotText']
|
|
903
|
+
})
|
|
904
|
+
], CtyProgress);
|
|
905
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyProgress, decorators: [{
|
|
906
|
+
type: Component,
|
|
907
|
+
args: [{
|
|
908
|
+
selector: 'cty-progress',
|
|
909
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
910
|
+
template: '<ng-content></ng-content>',
|
|
911
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
912
|
+
inputs: ['percentage', 'pivot', 'pivotText'],
|
|
913
|
+
}]
|
|
914
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
915
|
+
let CtyQuickAccess = class CtyQuickAccess {
|
|
916
|
+
z;
|
|
917
|
+
el;
|
|
918
|
+
constructor(c, r, z) {
|
|
919
|
+
this.z = z;
|
|
920
|
+
c.detach();
|
|
921
|
+
this.el = r.nativeElement;
|
|
922
|
+
proxyOutputs(this, this.el, ['ctyTap', 'ctySlide', 'ctySlideEnd', 'ctyInit']);
|
|
923
|
+
}
|
|
924
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyQuickAccess, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
925
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyQuickAccess, selector: "cty-quick-access", inputs: { col: "col", options: "options", paper: "paper", props: "props", quickThreshold: "quickThreshold", row: "row", slideThreshold: "slideThreshold", transition: "transition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
926
|
+
};
|
|
927
|
+
CtyQuickAccess = __decorate([
|
|
928
|
+
ProxyCmp({
|
|
929
|
+
inputs: ['col', 'options', 'paper', 'props', 'quickThreshold', 'row', 'slideThreshold', 'transition'],
|
|
930
|
+
methods: ['getCurrentPage']
|
|
931
|
+
})
|
|
932
|
+
], CtyQuickAccess);
|
|
933
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyQuickAccess, decorators: [{
|
|
934
|
+
type: Component,
|
|
935
|
+
args: [{
|
|
936
|
+
selector: 'cty-quick-access',
|
|
937
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
938
|
+
template: '<ng-content></ng-content>',
|
|
939
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
940
|
+
inputs: ['col', 'options', 'paper', 'props', 'quickThreshold', 'row', 'slideThreshold', 'transition'],
|
|
941
|
+
}]
|
|
942
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
943
|
+
let CtyRate = class CtyRate {
|
|
944
|
+
z;
|
|
945
|
+
el;
|
|
946
|
+
constructor(c, r, z) {
|
|
947
|
+
this.z = z;
|
|
948
|
+
c.detach();
|
|
949
|
+
this.el = r.nativeElement;
|
|
950
|
+
proxyOutputs(this, this.el, ['ctyChange']);
|
|
951
|
+
}
|
|
952
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyRate, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
953
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyRate, selector: "cty-rate", inputs: { clearable: "clearable", count: "count", disabled: "disabled", half: "half", icon: "icon", readonly: "readonly", touchable: "touchable", value: "value", voidIcon: "voidIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
954
|
+
};
|
|
955
|
+
CtyRate = __decorate([
|
|
956
|
+
ProxyCmp({
|
|
957
|
+
inputs: ['clearable', 'count', 'disabled', 'half', 'icon', 'readonly', 'touchable', 'value', 'voidIcon']
|
|
958
|
+
})
|
|
959
|
+
], CtyRate);
|
|
960
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyRate, decorators: [{
|
|
961
|
+
type: Component,
|
|
962
|
+
args: [{
|
|
963
|
+
selector: 'cty-rate',
|
|
964
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
965
|
+
template: '<ng-content></ng-content>',
|
|
966
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
967
|
+
inputs: ['clearable', 'count', 'disabled', 'half', 'icon', 'readonly', 'touchable', 'value', 'voidIcon'],
|
|
968
|
+
}]
|
|
969
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
970
|
+
let CtyRecord = class CtyRecord {
|
|
971
|
+
z;
|
|
972
|
+
el;
|
|
973
|
+
constructor(c, r, z) {
|
|
974
|
+
this.z = z;
|
|
975
|
+
c.detach();
|
|
976
|
+
this.el = r.nativeElement;
|
|
977
|
+
proxyOutputs(this, this.el, ['ctyRecordStart', 'ctyRecording', 'ctyRecordEnd', 'ctyRecordComplete', 'ctyDismiss', 'ctyDidPresent', 'ctyWillPresent', 'ctyWillDismiss', 'ctyDidDismiss']);
|
|
978
|
+
}
|
|
979
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyRecord, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
980
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyRecord, selector: "cty-record", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", circleColor: "circleColor", circleWidth: "circleWidth", closeable: "closeable", cssClass: "cssClass", enterAnimation: "enterAnimation", leaveAnimation: "leaveAnimation", maxSeconds: "maxSeconds", minSeconds: "minSeconds", root: "root", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
981
|
+
};
|
|
982
|
+
CtyRecord = __decorate([
|
|
983
|
+
ProxyCmp({
|
|
984
|
+
inputs: ['animated', 'backdropDismiss', 'circleColor', 'circleWidth', 'closeable', 'cssClass', 'enterAnimation', 'leaveAnimation', 'maxSeconds', 'minSeconds', 'root', 'trigger'],
|
|
985
|
+
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss', 'resetRecordState', 'startRecord', 'stopRecording']
|
|
986
|
+
})
|
|
987
|
+
], CtyRecord);
|
|
988
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyRecord, decorators: [{
|
|
989
|
+
type: Component,
|
|
990
|
+
args: [{
|
|
991
|
+
selector: 'cty-record',
|
|
992
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
993
|
+
template: '<ng-content></ng-content>',
|
|
994
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
995
|
+
inputs: ['animated', 'backdropDismiss', 'circleColor', 'circleWidth', 'closeable', 'cssClass', 'enterAnimation', 'leaveAnimation', 'maxSeconds', 'minSeconds', 'root', 'trigger'],
|
|
996
|
+
}]
|
|
997
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
998
|
+
let CtySegmentSlides = class CtySegmentSlides {
|
|
999
|
+
z;
|
|
1000
|
+
el;
|
|
1001
|
+
constructor(c, r, z) {
|
|
1002
|
+
this.z = z;
|
|
1003
|
+
c.detach();
|
|
1004
|
+
this.el = r.nativeElement;
|
|
1005
|
+
proxyOutputs(this, this.el, ['ctySlideChange']);
|
|
1006
|
+
}
|
|
1007
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySegmentSlides, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1008
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtySegmentSlides, selector: "cty-segment-slides", inputs: { autoHeight: "autoHeight", layout: "layout", observer: "observer", observerParents: "observerParents", segmentProps: "segmentProps", segments: "segments", top: "top" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1009
|
+
};
|
|
1010
|
+
CtySegmentSlides = __decorate([
|
|
1011
|
+
ProxyCmp({
|
|
1012
|
+
inputs: ['autoHeight', 'layout', 'observer', 'observerParents', 'segmentProps', 'segments', 'top'],
|
|
1013
|
+
methods: ['doSlideTo', 'getActiveIndex']
|
|
1014
|
+
})
|
|
1015
|
+
], CtySegmentSlides);
|
|
1016
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySegmentSlides, decorators: [{
|
|
1017
|
+
type: Component,
|
|
1018
|
+
args: [{
|
|
1019
|
+
selector: 'cty-segment-slides',
|
|
1020
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1021
|
+
template: '<ng-content></ng-content>',
|
|
1022
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1023
|
+
inputs: ['autoHeight', 'layout', 'observer', 'observerParents', 'segmentProps', 'segments', 'top'],
|
|
1024
|
+
}]
|
|
1025
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1026
|
+
let CtyShareSheet = class CtyShareSheet {
|
|
1027
|
+
z;
|
|
1028
|
+
el;
|
|
1029
|
+
constructor(c, r, z) {
|
|
1030
|
+
this.z = z;
|
|
1031
|
+
c.detach();
|
|
1032
|
+
this.el = r.nativeElement;
|
|
1033
|
+
proxyOutputs(this, this.el, ['ctyDismiss', 'ctyTap', 'ctyShareSuccess', 'ctyShareFail', 'ctyGuide', 'ctyDidPresent', 'ctyWillPresent', 'ctyWillDismiss', 'ctyDidDismiss']);
|
|
1034
|
+
}
|
|
1035
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyShareSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1036
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyShareSheet, selector: "cty-share-sheet", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cancelText: "cancelText", cssClass: "cssClass", description: "description", enterAnimation: "enterAnimation", guide: "guide", guideImg: "guideImg", hiddenSheet: "hiddenSheet", leaveAnimation: "leaveAnimation", legacyCopy: "legacyCopy", options: "options", permissionDescription: "permissionDescription", permissionPurpose: "permissionPurpose", root: "root", shareOption: "shareOption", title: "title", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1037
|
+
};
|
|
1038
|
+
CtyShareSheet = __decorate([
|
|
1039
|
+
ProxyCmp({
|
|
1040
|
+
inputs: ['animated', 'backdropDismiss', 'cancelText', 'cssClass', 'description', 'enterAnimation', 'guide', 'guideImg', 'hiddenSheet', 'leaveAnimation', 'legacyCopy', 'options', 'permissionDescription', 'permissionPurpose', 'root', 'shareOption', 'title', 'trigger'],
|
|
1041
|
+
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
1042
|
+
})
|
|
1043
|
+
], CtyShareSheet);
|
|
1044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyShareSheet, decorators: [{
|
|
1045
|
+
type: Component,
|
|
1046
|
+
args: [{
|
|
1047
|
+
selector: 'cty-share-sheet',
|
|
1048
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1049
|
+
template: '<ng-content></ng-content>',
|
|
1050
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1051
|
+
inputs: ['animated', 'backdropDismiss', 'cancelText', 'cssClass', 'description', 'enterAnimation', 'guide', 'guideImg', 'hiddenSheet', 'leaveAnimation', 'legacyCopy', 'options', 'permissionDescription', 'permissionPurpose', 'root', 'shareOption', 'title', 'trigger'],
|
|
1052
|
+
}]
|
|
1053
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1054
|
+
let CtyStep = class CtyStep {
|
|
1055
|
+
z;
|
|
1056
|
+
el;
|
|
1057
|
+
constructor(c, r, z) {
|
|
1058
|
+
this.z = z;
|
|
1059
|
+
c.detach();
|
|
1060
|
+
this.el = r.nativeElement;
|
|
1061
|
+
}
|
|
1062
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyStep, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1063
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyStep, selector: "cty-step", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1064
|
+
};
|
|
1065
|
+
CtyStep = __decorate([
|
|
1066
|
+
ProxyCmp({})
|
|
1067
|
+
], CtyStep);
|
|
1068
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyStep, decorators: [{
|
|
1069
|
+
type: Component,
|
|
1070
|
+
args: [{
|
|
1071
|
+
selector: 'cty-step',
|
|
1072
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1073
|
+
template: '<ng-content></ng-content>',
|
|
1074
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1075
|
+
inputs: [],
|
|
1076
|
+
}]
|
|
1077
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1078
|
+
let CtyStepper = class CtyStepper {
|
|
1079
|
+
z;
|
|
1080
|
+
el;
|
|
1081
|
+
constructor(c, r, z) {
|
|
1082
|
+
this.z = z;
|
|
1083
|
+
c.detach();
|
|
1084
|
+
this.el = r.nativeElement;
|
|
1085
|
+
proxyOutputs(this, this.el, ['ctyMinus', 'ctyPlus', 'ctyBlur', 'ctyChange', 'ctyFocus']);
|
|
1086
|
+
}
|
|
1087
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1088
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyStepper, selector: "cty-stepper", inputs: { disableInput: "disableInput", disableMinus: "disableMinus", disablePlus: "disablePlus", disabled: "disabled", integer: "integer", max: "max", min: "min", minusText: "minusText", plusText: "plusText", readonly: "readonly", showInput: "showInput", showMinus: "showMinus", showPlus: "showPlus", step: "step", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1089
|
+
};
|
|
1090
|
+
CtyStepper = __decorate([
|
|
1091
|
+
ProxyCmp({
|
|
1092
|
+
inputs: ['disableInput', 'disableMinus', 'disablePlus', 'disabled', 'integer', 'max', 'min', 'minusText', 'plusText', 'readonly', 'showInput', 'showMinus', 'showPlus', 'step', 'value'],
|
|
1093
|
+
methods: ['handleMinus', 'handlePlus']
|
|
1094
|
+
})
|
|
1095
|
+
], CtyStepper);
|
|
1096
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyStepper, decorators: [{
|
|
1097
|
+
type: Component,
|
|
1098
|
+
args: [{
|
|
1099
|
+
selector: 'cty-stepper',
|
|
1100
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1101
|
+
template: '<ng-content></ng-content>',
|
|
1102
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1103
|
+
inputs: ['disableInput', 'disableMinus', 'disablePlus', 'disabled', 'integer', 'max', 'min', 'minusText', 'plusText', 'readonly', 'showInput', 'showMinus', 'showPlus', 'step', 'value'],
|
|
1104
|
+
}]
|
|
1105
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1106
|
+
let CtySteps = class CtySteps {
|
|
1107
|
+
z;
|
|
1108
|
+
el;
|
|
1109
|
+
constructor(c, r, z) {
|
|
1110
|
+
this.z = z;
|
|
1111
|
+
c.detach();
|
|
1112
|
+
this.el = r.nativeElement;
|
|
1113
|
+
proxyOutputs(this, this.el, ['ctyStepTap', 'ctyChange']);
|
|
1114
|
+
}
|
|
1115
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1116
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtySteps, selector: "cty-steps", inputs: { active: "active", activeIcon: "activeIcon", direction: "direction", finishIcon: "finishIcon", inactiveIcon: "inactiveIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1117
|
+
};
|
|
1118
|
+
CtySteps = __decorate([
|
|
1119
|
+
ProxyCmp({
|
|
1120
|
+
inputs: ['active', 'activeIcon', 'direction', 'finishIcon', 'inactiveIcon'],
|
|
1121
|
+
methods: ['onClickStep']
|
|
1122
|
+
})
|
|
1123
|
+
], CtySteps);
|
|
1124
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySteps, decorators: [{
|
|
1125
|
+
type: Component,
|
|
1126
|
+
args: [{
|
|
1127
|
+
selector: 'cty-steps',
|
|
1128
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1129
|
+
template: '<ng-content></ng-content>',
|
|
1130
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1131
|
+
inputs: ['active', 'activeIcon', 'direction', 'finishIcon', 'inactiveIcon'],
|
|
1132
|
+
}]
|
|
1133
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1134
|
+
let CtySwipe = class CtySwipe {
|
|
1135
|
+
z;
|
|
1136
|
+
el;
|
|
1137
|
+
constructor(c, r, z) {
|
|
1138
|
+
this.z = z;
|
|
1139
|
+
c.detach();
|
|
1140
|
+
this.el = r.nativeElement;
|
|
1141
|
+
proxyOutputs(this, this.el, ['ctyChange', 'ctyDragStart', 'ctyDragEnd']);
|
|
1142
|
+
}
|
|
1143
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySwipe, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1144
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtySwipe, selector: "cty-swipe", inputs: { autoplay: "autoplay", duration: "duration", indicator: "indicator", initialSwipe: "initialSwipe", loop: "loop", touchable: "touchable", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1145
|
+
};
|
|
1146
|
+
CtySwipe = __decorate([
|
|
1147
|
+
ProxyCmp({
|
|
1148
|
+
inputs: ['autoplay', 'duration', 'indicator', 'initialSwipe', 'loop', 'touchable', 'vertical'],
|
|
1149
|
+
methods: ['prev', 'next', 'swipeTo']
|
|
1150
|
+
})
|
|
1151
|
+
], CtySwipe);
|
|
1152
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySwipe, decorators: [{
|
|
1153
|
+
type: Component,
|
|
1154
|
+
args: [{
|
|
1155
|
+
selector: 'cty-swipe',
|
|
1156
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1157
|
+
template: '<ng-content></ng-content>',
|
|
1158
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1159
|
+
inputs: ['autoplay', 'duration', 'indicator', 'initialSwipe', 'loop', 'touchable', 'vertical'],
|
|
1160
|
+
}]
|
|
1161
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1162
|
+
let CtySwipeItem = class CtySwipeItem {
|
|
1163
|
+
z;
|
|
1164
|
+
el;
|
|
1165
|
+
constructor(c, r, z) {
|
|
1166
|
+
this.z = z;
|
|
1167
|
+
c.detach();
|
|
1168
|
+
this.el = r.nativeElement;
|
|
1169
|
+
}
|
|
1170
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySwipeItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1171
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtySwipeItem, selector: "cty-swipe-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1172
|
+
};
|
|
1173
|
+
CtySwipeItem = __decorate([
|
|
1174
|
+
ProxyCmp({
|
|
1175
|
+
methods: ['setOffset']
|
|
1176
|
+
})
|
|
1177
|
+
], CtySwipeItem);
|
|
1178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySwipeItem, decorators: [{
|
|
1179
|
+
type: Component,
|
|
1180
|
+
args: [{
|
|
1181
|
+
selector: 'cty-swipe-item',
|
|
1182
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1183
|
+
template: '<ng-content></ng-content>',
|
|
1184
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1185
|
+
inputs: [],
|
|
1186
|
+
}]
|
|
1187
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1188
|
+
let CtySwiper = class CtySwiper {
|
|
1189
|
+
z;
|
|
1190
|
+
el;
|
|
1191
|
+
constructor(c, r, z) {
|
|
1192
|
+
this.z = z;
|
|
1193
|
+
c.detach();
|
|
1194
|
+
this.el = r.nativeElement;
|
|
1195
|
+
proxyOutputs(this, this.el, ['ctySlideChange', 'ctySlideClick']);
|
|
1196
|
+
}
|
|
1197
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySwiper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1198
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtySwiper, selector: "cty-swiper", inputs: { attrs: "attrs", autoplay: "autoplay", direction: "direction", loop: "loop", observer: "observer", observerParents: "observerParents", pagination: "pagination", props: "props", swiperModules: "swiperModules", swipers: "swipers" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1199
|
+
};
|
|
1200
|
+
CtySwiper = __decorate([
|
|
1201
|
+
ProxyCmp({
|
|
1202
|
+
inputs: ['attrs', 'autoplay', 'direction', 'loop', 'observer', 'observerParents', 'pagination', 'props', 'swiperModules', 'swipers'],
|
|
1203
|
+
methods: ['refreshSwiper', 'next', 'prev', 'slideTo', 'getSwiper']
|
|
1204
|
+
})
|
|
1205
|
+
], CtySwiper);
|
|
1206
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySwiper, decorators: [{
|
|
1207
|
+
type: Component,
|
|
1208
|
+
args: [{
|
|
1209
|
+
selector: 'cty-swiper',
|
|
1210
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1211
|
+
template: '<ng-content></ng-content>',
|
|
1212
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1213
|
+
inputs: ['attrs', 'autoplay', 'direction', 'loop', 'observer', 'observerParents', 'pagination', 'props', 'swiperModules', 'swipers'],
|
|
1214
|
+
}]
|
|
1215
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1216
|
+
let CtyTextEllipsis = class CtyTextEllipsis {
|
|
1217
|
+
z;
|
|
1218
|
+
el;
|
|
1219
|
+
constructor(c, r, z) {
|
|
1220
|
+
this.z = z;
|
|
1221
|
+
c.detach();
|
|
1222
|
+
this.el = r.nativeElement;
|
|
1223
|
+
proxyOutputs(this, this.el, ['ctyExpandChange']);
|
|
1224
|
+
}
|
|
1225
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyTextEllipsis, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1226
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyTextEllipsis, selector: "cty-text-ellipsis", inputs: { collapseText: "collapseText", content: "content", dots: "dots", expandText: "expandText", position: "position", rows: "rows" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1227
|
+
};
|
|
1228
|
+
CtyTextEllipsis = __decorate([
|
|
1229
|
+
ProxyCmp({
|
|
1230
|
+
inputs: ['collapseText', 'content', 'dots', 'expandText', 'position', 'rows']
|
|
1231
|
+
})
|
|
1232
|
+
], CtyTextEllipsis);
|
|
1233
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyTextEllipsis, decorators: [{
|
|
1234
|
+
type: Component,
|
|
1235
|
+
args: [{
|
|
1236
|
+
selector: 'cty-text-ellipsis',
|
|
1237
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1238
|
+
template: '<ng-content></ng-content>',
|
|
1239
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1240
|
+
inputs: ['collapseText', 'content', 'dots', 'expandText', 'position', 'rows'],
|
|
1241
|
+
}]
|
|
1242
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1243
|
+
let CtyTour = class CtyTour {
|
|
1244
|
+
z;
|
|
1245
|
+
el;
|
|
1246
|
+
constructor(c, r, z) {
|
|
1247
|
+
this.z = z;
|
|
1248
|
+
c.detach();
|
|
1249
|
+
this.el = r.nativeElement;
|
|
1250
|
+
proxyOutputs(this, this.el, ['ctyChange', 'ctyDismiss']);
|
|
1251
|
+
}
|
|
1252
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyTour, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1253
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyTour, selector: "cty-tour", inputs: { arrow: "arrow", backdropDismiss: "backdropDismiss", closeable: "closeable", completeText: "completeText", cssClass: "cssClass", initialIndex: "initialIndex", nextText: "nextText", placement: "placement", popoverAttrs: "popoverAttrs", prevText: "prevText", showPrev: "showPrev", steps: "steps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1254
|
+
};
|
|
1255
|
+
CtyTour = __decorate([
|
|
1256
|
+
ProxyCmp({
|
|
1257
|
+
inputs: ['arrow', 'backdropDismiss', 'closeable', 'completeText', 'cssClass', 'initialIndex', 'nextText', 'placement', 'popoverAttrs', 'prevText', 'showPrev', 'steps'],
|
|
1258
|
+
methods: ['present', 'dismiss', 'prevStep', 'nextStep', 'complete']
|
|
1259
|
+
})
|
|
1260
|
+
], CtyTour);
|
|
1261
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyTour, decorators: [{
|
|
1262
|
+
type: Component,
|
|
1263
|
+
args: [{
|
|
1264
|
+
selector: 'cty-tour',
|
|
1265
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1266
|
+
template: '<ng-content></ng-content>',
|
|
1267
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1268
|
+
inputs: ['arrow', 'backdropDismiss', 'closeable', 'completeText', 'cssClass', 'initialIndex', 'nextText', 'placement', 'popoverAttrs', 'prevText', 'showPrev', 'steps'],
|
|
1269
|
+
}]
|
|
1270
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1271
|
+
let CtyTutorial = class CtyTutorial {
|
|
1272
|
+
z;
|
|
1273
|
+
el;
|
|
1274
|
+
constructor(c, r, z) {
|
|
1275
|
+
this.z = z;
|
|
1276
|
+
c.detach();
|
|
1277
|
+
this.el = r.nativeElement;
|
|
1278
|
+
proxyOutputs(this, this.el, ['ctyDismiss', 'ctySlideChange', 'ctySlideTap', 'ctyDidPresent', 'ctyWillPresent', 'ctyWillDismiss', 'ctyDidDismiss']);
|
|
1279
|
+
}
|
|
1280
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyTutorial, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1281
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyTutorial, selector: "cty-tutorial", inputs: { animated: "animated", autoplay: "autoplay", backdropDismiss: "backdropDismiss", banners: "banners", closeable: "closeable", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", indicator: "indicator", initialIndex: "initialIndex", leaveAnimation: "leaveAnimation", loop: "loop", props: "props", root: "root", touchable: "touchable", trigger: "trigger", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1282
|
+
};
|
|
1283
|
+
CtyTutorial = __decorate([
|
|
1284
|
+
ProxyCmp({
|
|
1285
|
+
inputs: ['animated', 'autoplay', 'backdropDismiss', 'banners', 'closeable', 'cssClass', 'duration', 'enterAnimation', 'indicator', 'initialIndex', 'leaveAnimation', 'loop', 'props', 'root', 'touchable', 'trigger', 'vertical'],
|
|
1286
|
+
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
1287
|
+
})
|
|
1288
|
+
], CtyTutorial);
|
|
1289
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyTutorial, decorators: [{
|
|
1290
|
+
type: Component,
|
|
1291
|
+
args: [{
|
|
1292
|
+
selector: 'cty-tutorial',
|
|
1293
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1294
|
+
template: '<ng-content></ng-content>',
|
|
1295
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1296
|
+
inputs: ['animated', 'autoplay', 'backdropDismiss', 'banners', 'closeable', 'cssClass', 'duration', 'enterAnimation', 'indicator', 'initialIndex', 'leaveAnimation', 'loop', 'props', 'root', 'touchable', 'trigger', 'vertical'],
|
|
1297
|
+
}]
|
|
1298
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1299
|
+
let CtyVideo = class CtyVideo {
|
|
1300
|
+
z;
|
|
1301
|
+
el;
|
|
1302
|
+
constructor(c, r, z) {
|
|
1303
|
+
this.z = z;
|
|
1304
|
+
c.detach();
|
|
1305
|
+
this.el = r.nativeElement;
|
|
1306
|
+
proxyOutputs(this, this.el, ['ctyDismiss', 'ctyVideoCanplay', 'ctyVideoTimeupdate', 'ctyVideoPlaying', 'ctyVideoPlay', 'ctyVideoPause', 'ctyVideoStalled', 'ctyVideoWaiting', 'ctyVideoEnded', 'ctyVideoError', 'ctyVideoChangeVolume', 'ctyVideoProgress', 'ctyVideoScreenChange', 'ctyVideoIAEnter', 'ctyVideoIAAction', 'ctyVideoCtrlChange', 'ctyVideoRateChange']);
|
|
1307
|
+
}
|
|
1308
|
+
/** @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 });
|
|
1309
|
+
/** @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", 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 });
|
|
1310
|
+
};
|
|
1311
|
+
CtyVideo = __decorate([
|
|
1312
|
+
ProxyCmp({
|
|
1313
|
+
inputs: ['allowBackward', 'allowForward', 'autoplay', 'controls', 'defaultFullscreen', 'directRate', 'direction', 'errorMsg', 'exitFullscreenIcon', 'footerCtrl', 'fullscreenIcon', 'fullscreenOnly', 'headerCtrl', 'interactiveActions', 'landscapeEnterTimer', 'landscapeLeaveTimer', 'loading', 'loadingImg', 'markers', 'orientation', 'player', 'poster', 'preload', 'progressPosition', 'rate', 'rates', 'startTime', 'title', 'togglePlayTimer', 'trafficAutoplay', 'trafficMsg', 'unAllowForwardMsg', 'unAllowRateMsg', 'updateNow', 'url'],
|
|
1314
|
+
methods: ['play', 'setCtrlShow', 'pause', 'setVideoCurrentTime', 'toggleVideo', 'toggleVolume', 'setPlayRate', 'getVideoElement']
|
|
1315
|
+
})
|
|
1316
|
+
], CtyVideo);
|
|
1317
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyVideo, decorators: [{
|
|
1318
|
+
type: Component,
|
|
1319
|
+
args: [{
|
|
1320
|
+
selector: 'cty-video',
|
|
1321
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1322
|
+
template: '<ng-content></ng-content>',
|
|
1323
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1324
|
+
inputs: ['allowBackward', 'allowForward', 'autoplay', 'controls', 'defaultFullscreen', 'directRate', 'direction', 'errorMsg', 'exitFullscreenIcon', 'footerCtrl', 'fullscreenIcon', 'fullscreenOnly', 'headerCtrl', 'interactiveActions', 'landscapeEnterTimer', 'landscapeLeaveTimer', 'loading', 'loadingImg', 'markers', 'orientation', 'player', 'poster', 'preload', 'progressPosition', 'rate', 'rates', 'startTime', 'title', 'togglePlayTimer', 'trafficAutoplay', 'trafficMsg', 'unAllowForwardMsg', 'unAllowRateMsg', 'updateNow', 'url'],
|
|
1325
|
+
}]
|
|
1326
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1327
|
+
let CtyVirtualList = class CtyVirtualList {
|
|
1328
|
+
z;
|
|
1329
|
+
el;
|
|
1330
|
+
constructor(c, r, z) {
|
|
1331
|
+
this.z = z;
|
|
1332
|
+
c.detach();
|
|
1333
|
+
this.el = r.nativeElement;
|
|
1334
|
+
proxyOutputs(this, this.el, ['ctyScroll']);
|
|
1335
|
+
}
|
|
1336
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyVirtualList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1337
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyVirtualList, selector: "cty-virtual-list", inputs: { containerHeight: "containerHeight", direction: "direction", itemKey: "itemKey", itemRender: "itemRender", items: "items", preloadItemCount: "preloadItemCount" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1338
|
+
};
|
|
1339
|
+
CtyVirtualList = __decorate([
|
|
1340
|
+
ProxyCmp({
|
|
1341
|
+
inputs: ['containerHeight', 'direction', 'itemKey', 'itemRender', 'items', 'preloadItemCount']
|
|
1342
|
+
})
|
|
1343
|
+
], CtyVirtualList);
|
|
1344
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyVirtualList, decorators: [{
|
|
1345
|
+
type: Component,
|
|
1346
|
+
args: [{
|
|
1347
|
+
selector: 'cty-virtual-list',
|
|
1348
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1349
|
+
template: '<ng-content></ng-content>',
|
|
1350
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1351
|
+
inputs: ['containerHeight', 'direction', 'itemKey', 'itemRender', 'items', 'preloadItemCount'],
|
|
1352
|
+
}]
|
|
1353
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1354
|
+
|
|
1355
|
+
class CtyAlertController extends OverlayBaseController {
|
|
1356
|
+
constructor() {
|
|
1357
|
+
super(alertController);
|
|
1358
|
+
}
|
|
1359
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyAlertController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1360
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyAlertController, providedIn: 'root' });
|
|
1361
|
+
}
|
|
1362
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyAlertController, decorators: [{
|
|
1363
|
+
type: Injectable,
|
|
1364
|
+
args: [{
|
|
1365
|
+
providedIn: 'root',
|
|
1366
|
+
}]
|
|
1367
|
+
}], ctorParameters: function () { return []; } });
|
|
1368
|
+
|
|
1369
|
+
class CtyActionSheetController extends OverlayBaseController {
|
|
1370
|
+
constructor() {
|
|
1371
|
+
super(actionSheetController);
|
|
1372
|
+
}
|
|
1373
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyActionSheetController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1374
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyActionSheetController, providedIn: 'root' });
|
|
1375
|
+
}
|
|
1376
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyActionSheetController, decorators: [{
|
|
1377
|
+
type: Injectable,
|
|
1378
|
+
args: [{
|
|
1379
|
+
providedIn: 'root',
|
|
1380
|
+
}]
|
|
1381
|
+
}], ctorParameters: function () { return []; } });
|
|
1382
|
+
|
|
1383
|
+
class CtyLoadingController extends OverlayBaseController {
|
|
1384
|
+
constructor() {
|
|
1385
|
+
super(loadingController);
|
|
1386
|
+
}
|
|
1387
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyLoadingController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1388
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyLoadingController, providedIn: 'root' });
|
|
1389
|
+
}
|
|
1390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyLoadingController, decorators: [{
|
|
1391
|
+
type: Injectable,
|
|
1392
|
+
args: [{
|
|
1393
|
+
providedIn: 'root',
|
|
1394
|
+
}]
|
|
1395
|
+
}], ctorParameters: function () { return []; } });
|
|
1396
|
+
|
|
1397
|
+
class CtyCameraPhotoController extends OverlayBaseController {
|
|
1398
|
+
constructor() {
|
|
1399
|
+
super(cameraPhotoController);
|
|
1400
|
+
}
|
|
1401
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCameraPhotoController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1402
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCameraPhotoController, providedIn: 'root' });
|
|
1403
|
+
}
|
|
1404
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCameraPhotoController, decorators: [{
|
|
1405
|
+
type: Injectable,
|
|
1406
|
+
args: [{
|
|
1407
|
+
providedIn: 'root',
|
|
1408
|
+
}]
|
|
1409
|
+
}], ctorParameters: function () { return []; } });
|
|
1410
|
+
|
|
1411
|
+
class CtyCascaderController extends OverlayBaseController {
|
|
1412
|
+
constructor() {
|
|
1413
|
+
super(cascaderController);
|
|
1414
|
+
}
|
|
1415
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCascaderController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1416
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCascaderController, providedIn: 'root' });
|
|
1417
|
+
}
|
|
1418
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCascaderController, decorators: [{
|
|
1419
|
+
type: Injectable,
|
|
1420
|
+
args: [{
|
|
1421
|
+
providedIn: 'root',
|
|
1422
|
+
}]
|
|
1423
|
+
}], ctorParameters: function () { return []; } });
|
|
1424
|
+
|
|
1425
|
+
class CtyRecordController extends OverlayBaseController {
|
|
1426
|
+
constructor() {
|
|
1427
|
+
super(recordController);
|
|
1428
|
+
}
|
|
1429
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyRecordController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1430
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyRecordController, providedIn: 'root' });
|
|
1431
|
+
}
|
|
1432
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyRecordController, decorators: [{
|
|
1433
|
+
type: Injectable,
|
|
1434
|
+
args: [{
|
|
1435
|
+
providedIn: 'root',
|
|
1436
|
+
}]
|
|
1437
|
+
}], ctorParameters: function () { return []; } });
|
|
1438
|
+
|
|
1439
|
+
class CtyShareSheetController extends OverlayBaseController {
|
|
1440
|
+
constructor() {
|
|
1441
|
+
super(shareSheetController);
|
|
1442
|
+
}
|
|
1443
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyShareSheetController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1444
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyShareSheetController, providedIn: 'root' });
|
|
1445
|
+
}
|
|
1446
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyShareSheetController, decorators: [{
|
|
1447
|
+
type: Injectable,
|
|
1448
|
+
args: [{
|
|
1449
|
+
providedIn: 'root',
|
|
1450
|
+
}]
|
|
1451
|
+
}], ctorParameters: function () { return []; } });
|
|
1452
|
+
|
|
1453
|
+
class CtyTutorialController extends OverlayBaseController {
|
|
1454
|
+
constructor() {
|
|
1455
|
+
super(tutorialController);
|
|
1456
|
+
}
|
|
1457
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyTutorialController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1458
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyTutorialController, providedIn: 'root' });
|
|
1459
|
+
}
|
|
1460
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyTutorialController, decorators: [{
|
|
1461
|
+
type: Injectable,
|
|
1462
|
+
args: [{
|
|
1463
|
+
providedIn: 'root',
|
|
1464
|
+
}]
|
|
1465
|
+
}], ctorParameters: function () { return []; } });
|
|
1466
|
+
|
|
1467
|
+
class CtyOverlayController extends OverlayBaseController {
|
|
1468
|
+
constructor() {
|
|
1469
|
+
super(overlayController);
|
|
1470
|
+
}
|
|
1471
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyOverlayController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1472
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyOverlayController, providedIn: 'root' });
|
|
1473
|
+
}
|
|
1474
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyOverlayController, decorators: [{
|
|
1475
|
+
type: Injectable,
|
|
1476
|
+
args: [{
|
|
1477
|
+
providedIn: 'root',
|
|
1478
|
+
}]
|
|
1479
|
+
}], ctorParameters: function () { return []; } });
|
|
1480
|
+
|
|
1481
|
+
class CtyController {
|
|
1482
|
+
config;
|
|
1483
|
+
constructor(config) {
|
|
1484
|
+
this.config = config;
|
|
1485
|
+
}
|
|
1486
|
+
async ActionSheet(opt) {
|
|
1487
|
+
const actionSheet = await actionSheetController$1.create({ ...opt });
|
|
1488
|
+
await actionSheet.present();
|
|
1489
|
+
return actionSheet;
|
|
1490
|
+
}
|
|
1491
|
+
async Alert(opt) {
|
|
1492
|
+
const options = {
|
|
1493
|
+
...this.config.get('alertCfg', {})
|
|
1494
|
+
};
|
|
1495
|
+
if (typeof opt === 'string') {
|
|
1496
|
+
options.message = opt;
|
|
1497
|
+
}
|
|
1498
|
+
else {
|
|
1499
|
+
Object.assign(options, opt);
|
|
1500
|
+
}
|
|
1501
|
+
;
|
|
1502
|
+
const alert = await alertController$1.create(options);
|
|
1503
|
+
await alert.present();
|
|
1504
|
+
return alert;
|
|
1505
|
+
}
|
|
1506
|
+
async Loading(opt) {
|
|
1507
|
+
const loading = await loadingController$1.create(opt);
|
|
1508
|
+
await loading.present();
|
|
1509
|
+
return loading;
|
|
1510
|
+
}
|
|
1511
|
+
async Modal(opt) {
|
|
1512
|
+
const modal = await modalController.create({
|
|
1513
|
+
showBackdrop: false,
|
|
1514
|
+
keyboardClose: false,
|
|
1515
|
+
...opt
|
|
1516
|
+
});
|
|
1517
|
+
await modal.present();
|
|
1518
|
+
return modal;
|
|
1519
|
+
}
|
|
1520
|
+
async Picker(opt) {
|
|
1521
|
+
const picker = await pickerController.create(opt);
|
|
1522
|
+
await picker.present();
|
|
1523
|
+
return picker;
|
|
1524
|
+
}
|
|
1525
|
+
async Popover(e, opt) {
|
|
1526
|
+
const popover = await popoverController.create({
|
|
1527
|
+
event: e,
|
|
1528
|
+
...opt
|
|
1529
|
+
});
|
|
1530
|
+
await popover.present();
|
|
1531
|
+
return popover;
|
|
1532
|
+
}
|
|
1533
|
+
async Toast(opt) {
|
|
1534
|
+
const options = {
|
|
1535
|
+
...this.config.get('toastCfg', {})
|
|
1536
|
+
};
|
|
1537
|
+
if (typeof opt === 'string') {
|
|
1538
|
+
options.message = opt;
|
|
1539
|
+
}
|
|
1540
|
+
else {
|
|
1541
|
+
Object.assign(options, opt);
|
|
1542
|
+
}
|
|
1543
|
+
;
|
|
1544
|
+
const toast = await toastController.create(options);
|
|
1545
|
+
await toast.present();
|
|
1546
|
+
return toast;
|
|
1547
|
+
}
|
|
1548
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyController, deps: [{ token: i1.Config }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1549
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyController, providedIn: 'root' });
|
|
1550
|
+
}
|
|
1551
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyController, decorators: [{
|
|
1552
|
+
type: Injectable,
|
|
1553
|
+
args: [{
|
|
1554
|
+
providedIn: 'root',
|
|
1555
|
+
}]
|
|
1556
|
+
}], ctorParameters: function () { return [{ type: i1.Config }]; } });
|
|
1557
|
+
|
|
1558
|
+
const appInitialize = (config, doc, zone) => {
|
|
1559
|
+
return () => {
|
|
1560
|
+
const win = doc.defaultView;
|
|
1561
|
+
if (win && typeof window !== 'undefined') {
|
|
1562
|
+
setupConfig({
|
|
1563
|
+
...config
|
|
1564
|
+
});
|
|
1565
|
+
const aelFn = '__zone_symbol__addEventListener' in doc.body ? '__zone_symbol__addEventListener' : 'addEventListener';
|
|
1566
|
+
return applyPolyfills().then(() => {
|
|
1567
|
+
return defineCustomElements(win, {
|
|
1568
|
+
syncQueue: true,
|
|
1569
|
+
jmp: (h) => zone.runOutsideAngular(h),
|
|
1570
|
+
ael(elm, eventName, cb, opts) {
|
|
1571
|
+
elm[aelFn](eventName, cb, opts);
|
|
1572
|
+
},
|
|
1573
|
+
rel(elm, eventName, cb, opts) {
|
|
1574
|
+
elm.removeEventListener(eventName, cb, opts);
|
|
1575
|
+
},
|
|
1576
|
+
});
|
|
1577
|
+
});
|
|
1578
|
+
}
|
|
1579
|
+
};
|
|
1580
|
+
};
|
|
1581
|
+
|
|
1582
|
+
const DIRECTIVES = [
|
|
1583
|
+
CtyActionSheet,
|
|
1584
|
+
CtyAgree,
|
|
1585
|
+
CtyAlert,
|
|
1586
|
+
CtyAnswerSheet,
|
|
1587
|
+
CtyArticleCard,
|
|
1588
|
+
CtyAudio,
|
|
1589
|
+
CtyBanner,
|
|
1590
|
+
CtyCameraPhoto,
|
|
1591
|
+
CtyCanvasBoard,
|
|
1592
|
+
CtyCanvasVideo,
|
|
1593
|
+
CtyCascader,
|
|
1594
|
+
CtyCircle,
|
|
1595
|
+
CtyCountDown,
|
|
1596
|
+
CtyCropImage,
|
|
1597
|
+
CtyDivider,
|
|
1598
|
+
CtyEmpty,
|
|
1599
|
+
CtyFloatingBubble,
|
|
1600
|
+
CtyFloatingPanel,
|
|
1601
|
+
CtyIcon,
|
|
1602
|
+
CtyImageUpload,
|
|
1603
|
+
CtyImageViewer,
|
|
1604
|
+
CtyIndexBar,
|
|
1605
|
+
CtyKeyboard,
|
|
1606
|
+
CtyLoading,
|
|
1607
|
+
CtyMediaCapture,
|
|
1608
|
+
CtyNavBar,
|
|
1609
|
+
CtyNoticeBar,
|
|
1610
|
+
CtyOverlay,
|
|
1611
|
+
CtyPdfViewer,
|
|
1612
|
+
CtyPermissionPurpose,
|
|
1613
|
+
CtyProgress,
|
|
1614
|
+
CtyQuickAccess,
|
|
1615
|
+
CtyRate,
|
|
1616
|
+
CtyRecord,
|
|
1617
|
+
CtySegmentSlides,
|
|
1618
|
+
CtyShareSheet,
|
|
1619
|
+
CtyStep,
|
|
1620
|
+
CtyStepper,
|
|
1621
|
+
CtySteps,
|
|
1622
|
+
CtySwipe,
|
|
1623
|
+
CtySwipeItem,
|
|
1624
|
+
CtySwiper,
|
|
1625
|
+
CtyTextEllipsis,
|
|
1626
|
+
CtyTour,
|
|
1627
|
+
CtyTutorial,
|
|
1628
|
+
CtyVideo,
|
|
1629
|
+
CtyVirtualList
|
|
1630
|
+
];
|
|
1631
|
+
|
|
1632
|
+
const DECLARATIONS = [
|
|
1633
|
+
...DIRECTIVES
|
|
1634
|
+
];
|
|
1635
|
+
class CtyMUIModule {
|
|
1636
|
+
static forRoot(config) {
|
|
1637
|
+
return {
|
|
1638
|
+
ngModule: CtyMUIModule,
|
|
1639
|
+
providers: [
|
|
1640
|
+
{
|
|
1641
|
+
provide: ConfigToken,
|
|
1642
|
+
useValue: config,
|
|
1643
|
+
},
|
|
1644
|
+
{
|
|
1645
|
+
provide: APP_INITIALIZER,
|
|
1646
|
+
useFactory: appInitialize,
|
|
1647
|
+
multi: true,
|
|
1648
|
+
deps: [ConfigToken, DOCUMENT, NgZone],
|
|
1649
|
+
}
|
|
1650
|
+
]
|
|
1651
|
+
};
|
|
1652
|
+
}
|
|
1653
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1654
|
+
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, declarations: [CtyActionSheet, CtyAgree, CtyAlert, CtyAnswerSheet, CtyArticleCard, CtyAudio, 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, 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] });
|
|
1655
|
+
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, imports: [CommonModule] });
|
|
1656
|
+
}
|
|
1657
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, decorators: [{
|
|
1658
|
+
type: NgModule,
|
|
1659
|
+
args: [{
|
|
1660
|
+
declarations: DECLARATIONS,
|
|
1661
|
+
exports: DECLARATIONS,
|
|
1662
|
+
imports: [CommonModule],
|
|
1663
|
+
}]
|
|
1664
|
+
}] });
|
|
1665
|
+
|
|
1666
|
+
/**
|
|
1667
|
+
* Generated bundle index. Do not edit.
|
|
1668
|
+
*/
|
|
1669
|
+
|
|
1670
|
+
export { CtyActionSheet, CtyActionSheetController, CtyAgree, CtyAlert, CtyAlertController, CtyAnswerSheet, CtyArticleCard, CtyAudio, 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 };
|
|
1671
|
+
//# sourceMappingURL=cty-mui-angular.mjs.map
|