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