cty-mui-angular 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +59 -0
- package/app-initialize.d.ts +3 -0
- package/common/directives/control-value-accessors/index.d.ts +1 -0
- package/common/directives/control-value-accessors/value-accessor.d.ts +36 -0
- package/common/index.d.ts +19 -0
- package/common/providers/audio-recorder.d.ts +7 -0
- package/common/providers/config.d.ts +9 -0
- package/common/providers/device-info.d.ts +7 -0
- package/common/providers/image-picker.d.ts +7 -0
- package/common/providers/keyboard.d.ts +7 -0
- package/common/providers/media-downloader.d.ts +7 -0
- package/common/providers/network.d.ts +7 -0
- package/common/providers/payment.d.ts +7 -0
- package/common/providers/screen-orientation.d.ts +7 -0
- package/common/providers/share.d.ts +7 -0
- package/common/providers/status-bar.d.ts +7 -0
- package/common/providers/utils.d.ts +10 -0
- package/common/providers/video-capture.d.ts +7 -0
- package/common/providers/volume-control.d.ts +7 -0
- package/common/providers/wechat.d.ts +7 -0
- package/common/types/interfaces.d.ts +6 -0
- package/common/utils/overlay.d.ts +21 -0
- package/common/utils/util.d.ts +1 -0
- package/css/core.css +1 -0
- package/css/core.css.map +1 -0
- package/css/cty-mui.bundle.css +1 -0
- package/css/cty-mui.bundle.css.map +1 -0
- package/css/normalize.css +1 -0
- package/css/normalize.css.map +1 -0
- package/css/variables.css +1 -0
- package/css/variables.css.map +1 -0
- package/css/variables.font.css +1 -0
- package/css/variables.font.css.map +1 -0
- package/cty-mui-module.d.ts +11 -0
- package/directives/angular-component-lib/utils.d.ts +9 -0
- package/directives/proxies-list.d.ts +2 -0
- package/directives/proxies.d.ts +612 -0
- package/esm2022/app-initialize.mjs +26 -0
- package/esm2022/common/cty-mui-angular-common.mjs +5 -0
- package/esm2022/common/directives/control-value-accessors/index.mjs +2 -0
- package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +133 -0
- package/esm2022/common/index.mjs +19 -0
- package/esm2022/common/providers/audio-recorder.mjs +17 -0
- package/esm2022/common/providers/config.mjs +30 -0
- package/esm2022/common/providers/device-info.mjs +17 -0
- package/esm2022/common/providers/image-picker.mjs +17 -0
- package/esm2022/common/providers/keyboard.mjs +17 -0
- package/esm2022/common/providers/media-downloader.mjs +17 -0
- package/esm2022/common/providers/network.mjs +17 -0
- package/esm2022/common/providers/payment.mjs +17 -0
- package/esm2022/common/providers/screen-orientation.mjs +17 -0
- package/esm2022/common/providers/share.mjs +17 -0
- package/esm2022/common/providers/status-bar.mjs +17 -0
- package/esm2022/common/providers/utils.mjs +24 -0
- package/esm2022/common/providers/video-capture.mjs +17 -0
- package/esm2022/common/providers/volume-control.mjs +17 -0
- package/esm2022/common/providers/wechat.mjs +17 -0
- package/esm2022/common/types/interfaces.mjs +2 -0
- package/esm2022/common/utils/overlay.mjs +25 -0
- package/esm2022/common/utils/util.mjs +10 -0
- package/esm2022/cty-mui-angular.mjs +5 -0
- package/esm2022/cty-mui-module.mjs +41 -0
- package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/directives/proxies-list.mjs +51 -0
- package/esm2022/directives/proxies.mjs +1336 -0
- package/esm2022/index.mjs +19 -0
- package/esm2022/providers/action-sheet-controller.mjs +18 -0
- package/esm2022/providers/alert-controller.mjs +18 -0
- package/esm2022/providers/camera-photo-controller.mjs +18 -0
- package/esm2022/providers/cascader-controller.mjs +18 -0
- package/esm2022/providers/ionic-controller.mjs +81 -0
- package/esm2022/providers/loading-controller.mjs +18 -0
- package/esm2022/providers/overlay-controller.mjs +18 -0
- package/esm2022/providers/record-controller.mjs +18 -0
- package/esm2022/providers/share-sheet-controller.mjs +18 -0
- package/esm2022/providers/tutorial-controller.mjs +18 -0
- package/esm2022/standalone/cty-mui-angular-standalone.mjs +5 -0
- package/esm2022/standalone/directives/agree.mjs +60 -0
- package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/standalone/directives/index.mjs +6 -0
- package/esm2022/standalone/directives/proxies.mjs +1321 -0
- package/esm2022/standalone/directives/rate.mjs +60 -0
- package/esm2022/standalone/directives/segment-slides.mjs +41 -0
- package/esm2022/standalone/directives/stepper.mjs +61 -0
- package/esm2022/standalone/directives/swiper.mjs +41 -0
- package/esm2022/standalone/index.mjs +21 -0
- package/esm2022/standalone/providers/action-sheet-controller.mjs +20 -0
- package/esm2022/standalone/providers/alert-controller.mjs +20 -0
- package/esm2022/standalone/providers/camera-photo-controller.mjs +20 -0
- package/esm2022/standalone/providers/cascader-controller.mjs +20 -0
- package/esm2022/standalone/providers/cty-mui-angular.mjs +23 -0
- package/esm2022/standalone/providers/image-viewer-controller.mjs +20 -0
- package/esm2022/standalone/providers/ionic-controller.mjs +81 -0
- package/esm2022/standalone/providers/loading-controller.mjs +20 -0
- package/esm2022/standalone/providers/overlay-controller.mjs +20 -0
- package/esm2022/standalone/providers/record-controller.mjs +20 -0
- package/esm2022/standalone/providers/share-sheet-controller.mjs +20 -0
- package/esm2022/standalone/providers/tutorial-controller.mjs +20 -0
- package/fesm2022/cty-mui-angular-common.mjs +406 -0
- package/fesm2022/cty-mui-angular-common.mjs.map +1 -0
- package/fesm2022/cty-mui-angular-standalone.mjs +1834 -0
- package/fesm2022/cty-mui-angular-standalone.mjs.map +1 -0
- package/fesm2022/cty-mui-angular.mjs +1671 -0
- package/fesm2022/cty-mui-angular.mjs.map +1 -0
- package/index.d.ts +14 -0
- package/package.json +48 -0
- package/providers/action-sheet-controller.d.ts +8 -0
- package/providers/alert-controller.d.ts +8 -0
- package/providers/camera-photo-controller.d.ts +8 -0
- package/providers/cascader-controller.d.ts +8 -0
- package/providers/ionic-controller.d.ts +16 -0
- package/providers/loading-controller.d.ts +8 -0
- package/providers/overlay-controller.d.ts +8 -0
- package/providers/record-controller.d.ts +8 -0
- package/providers/share-sheet-controller.d.ts +8 -0
- package/providers/tutorial-controller.d.ts +8 -0
- package/standalone/directives/agree.d.ts +19 -0
- package/standalone/directives/angular-component-lib/utils.d.ts +9 -0
- package/standalone/directives/index.d.ts +5 -0
- package/standalone/directives/proxies.d.ts +550 -0
- package/standalone/directives/rate.d.ts +19 -0
- package/standalone/directives/segment-slides.d.ts +17 -0
- package/standalone/directives/stepper.d.ts +29 -0
- package/standalone/directives/swiper.d.ts +18 -0
- package/standalone/index.d.ts +16 -0
- package/standalone/providers/action-sheet-controller.d.ts +8 -0
- package/standalone/providers/alert-controller.d.ts +8 -0
- package/standalone/providers/camera-photo-controller.d.ts +8 -0
- package/standalone/providers/cascader-controller.d.ts +8 -0
- package/standalone/providers/cty-mui-angular.d.ts +3 -0
- package/standalone/providers/image-viewer-controller.d.ts +8 -0
- package/standalone/providers/ionic-controller.d.ts +16 -0
- package/standalone/providers/loading-controller.d.ts +8 -0
- package/standalone/providers/overlay-controller.d.ts +8 -0
- package/standalone/providers/record-controller.d.ts +8 -0
- package/standalone/providers/share-sheet-controller.d.ts +8 -0
- package/standalone/providers/tutorial-controller.d.ts +8 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
+
import type { Components } from 'cty-mui-core/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CtySegmentSlides {
|
|
5
|
+
protected z: NgZone;
|
|
6
|
+
protected el: HTMLCtySegmentSlidesElement;
|
|
7
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtySegmentSlides, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CtySegmentSlides, "cty-segment-slides", never, { "segments": { "alias": "segments"; "required": false; }; "autoHeight": { "alias": "autoHeight"; "required": false; }; "top": { "alias": "top"; "required": false; }; "segmentProps": { "alias": "segmentProps"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "observer": { "alias": "observer"; "required": false; }; "observerParents": { "alias": "observerParents"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
10
|
+
}
|
|
11
|
+
export declare interface CtySegmentSlides extends Components.CtySegmentSlides {
|
|
12
|
+
/**
|
|
13
|
+
* Emitted when the value property has changed and any
|
|
14
|
+
dragging pointer has been released from `ion-segment`.
|
|
15
|
+
*/
|
|
16
|
+
ctyChange: EventEmitter<CustomEvent<number>>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core';
|
|
2
|
+
import { ValueAccessor } from 'cty-mui-angular/common';
|
|
3
|
+
import type { Components } from 'cty-mui-core/components';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CtyStepper extends ValueAccessor {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLCtyStepperElement;
|
|
8
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector);
|
|
9
|
+
handleIonChange(el: HTMLCtyStepperElement): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtyStepper, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CtyStepper, "cty-stepper", never, { "disabled": { "alias": "disabled"; "required": false; }; "disableInput": { "alias": "disableInput"; "required": false; }; "disableMinus": { "alias": "disableMinus"; "required": false; }; "disablePlus": { "alias": "disablePlus"; "required": false; }; "integer": { "alias": "integer"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "minusText": { "alias": "minusText"; "required": false; }; "plusText": { "alias": "plusText"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "showInput": { "alias": "showInput"; "required": false; }; "showMinus": { "alias": "showMinus"; "required": false; }; "showPlus": { "alias": "showPlus"; "required": false; }; "step": { "alias": "step"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
12
|
+
}
|
|
13
|
+
export declare interface CtyStepper extends Components.CtyStepper {
|
|
14
|
+
/**
|
|
15
|
+
* Emitted when the value property has changed and any
|
|
16
|
+
dragging pointer has been released from `ion-segment`.
|
|
17
|
+
*/
|
|
18
|
+
ctyBlur: EventEmitter<CustomEvent<{
|
|
19
|
+
value: number | string;
|
|
20
|
+
event: FocusEvent;
|
|
21
|
+
}>>;
|
|
22
|
+
ctyChange: EventEmitter<CustomEvent<number | string>>;
|
|
23
|
+
ctyFocus: EventEmitter<CustomEvent<{
|
|
24
|
+
value: number | string;
|
|
25
|
+
event: FocusEvent;
|
|
26
|
+
}>>;
|
|
27
|
+
ctyMinus: EventEmitter<CustomEvent<number | string>>;
|
|
28
|
+
ctyPlus: EventEmitter<CustomEvent<number | string>>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
+
import type { Components, SwiperResult } from 'cty-mui-core/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CtySwiper {
|
|
5
|
+
protected z: NgZone;
|
|
6
|
+
protected el: HTMLCtySwiperElement;
|
|
7
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtySwiper, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CtySwiper, "cty-swiper", never, { "swipers": { "alias": "swipers"; "required": false; }; "props": { "alias": "props"; "required": false; }; "autoplay": { "alias": "autoplay"; "required": false; }; "loop": { "alias": "loop"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "pagination": { "alias": "pagination"; "required": false; }; "observer": { "alias": "observer"; "required": false; }; "observerParents": { "alias": "observerParents"; "required": false; }; "swiperModules": { "alias": "swiperModules"; "required": false; }; "attrs": { "alias": "attrs"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
10
|
+
}
|
|
11
|
+
export declare interface CtySwiper extends Components.CtySwiper {
|
|
12
|
+
/**
|
|
13
|
+
* Emitted when the value property has changed and any
|
|
14
|
+
dragging pointer has been released from `ion-segment`.
|
|
15
|
+
*/
|
|
16
|
+
ctySlideChange: EventEmitter<CustomEvent<SwiperResult>>;
|
|
17
|
+
ctySlideClick: EventEmitter<CustomEvent<SwiperResult>>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export { Config, AudioRecorderService, DeviceInfoService, ImagePickerService, KeyboardService, MediaDownloaderService, NetworkService, PaymentService, ScreenOrientationService, ShareService, StatusBarService, UtilsService, VideoCaptureService, VolumeControlService, WechatService } from 'cty-mui-angular/common';
|
|
2
|
+
export { CtyAgree, CtyRate, CtySegmentSlides, CtyStepper, CtySwiper } from './directives';
|
|
3
|
+
export * from './directives/proxies';
|
|
4
|
+
export { provideCtyMUIAngular } from './providers/cty-mui-angular';
|
|
5
|
+
export { CtyAlertController } from './providers/alert-controller';
|
|
6
|
+
export { CtyActionSheetController } from './providers/action-sheet-controller';
|
|
7
|
+
export { CtyCameraPhotoController } from './providers/camera-photo-controller';
|
|
8
|
+
export { CtyCascaderController } from './providers/cascader-controller';
|
|
9
|
+
export { CtyLoadingController } from './providers/loading-controller';
|
|
10
|
+
export { CtyImageViewerController } from './providers/image-viewer-controller';
|
|
11
|
+
export { CtyOverlayController } from './providers/overlay-controller';
|
|
12
|
+
export { CtyRecordController } from './providers/record-controller';
|
|
13
|
+
export { CtyShareSheetController } from './providers/share-sheet-controller';
|
|
14
|
+
export { CtyTutorialController } from './providers/tutorial-controller';
|
|
15
|
+
export { CtyController } from './providers/ionic-controller';
|
|
16
|
+
export { ModalFade, ModalRotate, ModalSlide, ModalZoom, CTYCityData, toBase64, fromBase64, getUTCDateTime, getUTCDate, getTimeZone, convertTimeZone, formatDateTime, formatDate, getFormatForDatePicker, getFormatForDateTimePicker, diff, addDays, addHours, addMinutes, addSeconds, addMonths, addYears, secondsToVehicle, isValidDate, convertDate, getElementRect, getEventClientCoords, getEventPageCoords, scrollElementTop, scrollElementBottom, scrollToPoint, checkScrollEnd, fileSize, numberToChinese, randomNum, pad, percent, price, convertNumber, numberToLetter, parseJson, parseArray, camelToKebab, kebabToCamel, clamp, localDelete, localGet, localSave, sessionDelete, sessionGet, sessionSave, closest, numericName, deepClone, getValueByKey, mergeObj, clipboard, isMobileNo, isEmail, isRealNameForm, identityCodeValid, isJSONObject, isEmptyArray, isEmptyObject, isPrimitive, isDef, isPromise, isHttp, ActionSheetOption, ActionSheetOptions, ActionSheetTapEventDetail, AgreeSpinner, AgreeTriggerArea, AlertOptions, AlertButton, AlertTapEventDetail, ResultCategory, AnswerEntry, QuestionCategory, ResultPlacement, ArticleCardLayout, BannerItem, BannerItemProps, CameraPhotoOption, CameraPhotoOptions, lineCapType, VideoItem, VideoItemProps, VideoCustomEventDetail, VideoCommonCustomEventDetail, VideoStateDetail, CascaderOption, CascaderOptions, CascaderTypes, DateFormat, DateFormatUnit, ContentPlacement, AxisType, FloatingBubbleOffset, FloatingBubbleGap, ImageOption, ImageViewerOptions, IndexListItem, SpinnerTypes, LoadingOptions, OverlayOptions, PositionType, QuickAccessOption, QuickAccessProps, RecordOptions, SegmentLayoutType, SegmentOption, SegmentProps, Option, ShareOption, ShareSheetOptions, ShareSheetEventDetail, ShareSheetFailEventDetail, StepsDirection, SwiperItem, SwiperItemProps, SwiperAutoplay, SwiperResult, TextEllipsisPosition, TourPlacement, TourStep, TutorialOptions, VideoOrientation, VideoPreload, VideoProgressBarPosition, VideoMarker, VirtualDirection, Easing, AnimationOptions, SlidePosition, UploadProgressTip, AudioRecordOptions, AudioFileInfo, LocalId, ServerId, ResourceResult, MediaSourceType, DocumentOptions, CameraOptions, CameraPopoverOptions, ImagePickerOptions, ImagePickerType, PictureOptions, DownloadMediaType, DownloadOptions, LibraryMediaItem, ThumbnailOptions, WXPaymentOptions, AuthorizationOptions, SharePlatformType, WechatShareScene, ShareContentType, WechatMiniProgramType, ShareOptions, } from 'cty-mui-core/components';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OverlayBaseController } from 'cty-mui-angular/common';
|
|
2
|
+
import type { ActionSheetOptions } from 'cty-mui-core/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CtyActionSheetController extends OverlayBaseController<ActionSheetOptions, HTMLCtyActionSheetElement> {
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtyActionSheetController, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CtyActionSheetController>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OverlayBaseController } from 'cty-mui-angular/common';
|
|
2
|
+
import type { AlertOptions } from 'cty-mui-core/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CtyAlertController extends OverlayBaseController<AlertOptions, HTMLCtyAlertElement> {
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtyAlertController, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CtyAlertController>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OverlayBaseController } from 'cty-mui-angular/common';
|
|
2
|
+
import type { CameraPhotoOptions } from 'cty-mui-core/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CtyCameraPhotoController extends OverlayBaseController<CameraPhotoOptions, HTMLCtyCameraPhotoElement> {
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtyCameraPhotoController, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CtyCameraPhotoController>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OverlayBaseController } from 'cty-mui-angular/common';
|
|
2
|
+
import type { CascaderOptions } from 'cty-mui-core/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CtyCascaderController extends OverlayBaseController<CascaderOptions, HTMLCtyCascaderElement> {
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtyCascaderController, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CtyCascaderController>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OverlayBaseController } from 'cty-mui-angular/common';
|
|
2
|
+
import type { ImageViewerOptions } from 'cty-mui-core/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CtyImageViewerController extends OverlayBaseController<ImageViewerOptions, HTMLCtyImageViewerElement> {
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtyImageViewerController, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CtyImageViewerController>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { ActionSheetOptions, AlertOptions, ModalOptions, LoadingOptions, PopoverOptions, PickerOptions, ToastOptions } from '@ionic/core/components';
|
|
2
|
+
import { Config } from 'cty-mui-angular/common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CtyController {
|
|
5
|
+
private config;
|
|
6
|
+
constructor(config: Config);
|
|
7
|
+
ActionSheet(opt: ActionSheetOptions): Promise<HTMLIonActionSheetElement>;
|
|
8
|
+
Alert(opt: AlertOptions | string): Promise<HTMLIonAlertElement>;
|
|
9
|
+
Loading(opt: LoadingOptions): Promise<HTMLIonLoadingElement>;
|
|
10
|
+
Modal(opt: ModalOptions): Promise<HTMLIonModalElement>;
|
|
11
|
+
Picker(opt: PickerOptions): Promise<HTMLIonPickerLegacyElement>;
|
|
12
|
+
Popover(e: Event, opt: PopoverOptions): Promise<HTMLIonPopoverElement>;
|
|
13
|
+
Toast(opt: ToastOptions | string): Promise<HTMLIonToastElement>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtyController, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CtyController>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OverlayBaseController } from 'cty-mui-angular/common';
|
|
2
|
+
import type { LoadingOptions } from 'cty-mui-core/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CtyLoadingController extends OverlayBaseController<LoadingOptions, HTMLCtyLoadingElement> {
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtyLoadingController, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CtyLoadingController>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OverlayBaseController } from 'cty-mui-angular/common';
|
|
2
|
+
import type { OverlayOptions } from 'cty-mui-core/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CtyOverlayController extends OverlayBaseController<OverlayOptions, HTMLCtyOverlayElement> {
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtyOverlayController, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CtyOverlayController>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OverlayBaseController } from 'cty-mui-angular/common';
|
|
2
|
+
import type { RecordOptions } from 'cty-mui-core/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CtyRecordController extends OverlayBaseController<RecordOptions, HTMLCtyRecordElement> {
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtyRecordController, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CtyRecordController>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OverlayBaseController } from 'cty-mui-angular/common';
|
|
2
|
+
import type { ShareSheetOptions } from 'cty-mui-core/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CtyShareSheetController extends OverlayBaseController<ShareSheetOptions, HTMLCtyShareSheetElement> {
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtyShareSheetController, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CtyShareSheetController>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OverlayBaseController } from 'cty-mui-angular/common';
|
|
2
|
+
import type { TutorialOptions } from 'cty-mui-core/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CtyTutorialController extends OverlayBaseController<TutorialOptions, HTMLCtyTutorialElement> {
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CtyTutorialController, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CtyTutorialController>;
|
|
8
|
+
}
|