cty-mui-angular 1.0.15 → 1.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cty-mui-module.d.ts +1 -1
- package/directives/proxies-list.d.ts +1 -1
- package/directives/proxies.d.ts +64 -3
- package/esm2022/cty-mui-module.mjs +2 -2
- package/esm2022/directives/proxies-list.mjs +6 -1
- package/esm2022/directives/proxies.mjs +151 -10
- package/esm2022/index.mjs +1 -1
- package/esm2022/standalone/directives/cascader-view.mjs +60 -0
- package/esm2022/standalone/directives/index.mjs +4 -1
- package/esm2022/standalone/directives/proxies.mjs +73 -10
- package/esm2022/standalone/directives/segment-slides.mjs +2 -2
- package/esm2022/standalone/directives/selector.mjs +60 -0
- package/esm2022/standalone/directives/side-panel.mjs +60 -0
- package/esm2022/standalone/index.mjs +2 -2
- package/fesm2022/cty-mui-angular-standalone.mjs +362 -142
- package/fesm2022/cty-mui-angular-standalone.mjs.map +1 -1
- package/fesm2022/cty-mui-angular.mjs +152 -11
- package/fesm2022/cty-mui-angular.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +2 -2
- package/standalone/directives/cascader-view.d.ts +19 -0
- package/standalone/directives/index.d.ts +3 -0
- package/standalone/directives/proxies.d.ts +23 -3
- package/standalone/directives/selector.d.ts +19 -0
- package/standalone/directives/side-panel.d.ts +19 -0
- package/standalone/index.d.ts +2 -2
|
@@ -400,6 +400,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
400
400
|
inputs: ['animated', 'backdropDismiss', 'cancelText', 'cascade', 'childrenKey', 'columns', 'columnsCount', 'confirmText', 'cssClass', 'defaultValues', 'enterAnimation', 'leaveAnimation', 'optionCount', 'optionHeight', 'root', 'textKey', 'title', 'trigger', 'type', 'valueKey'],
|
|
401
401
|
}]
|
|
402
402
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
403
|
+
let CtyCascaderView = class CtyCascaderView {
|
|
404
|
+
z;
|
|
405
|
+
el;
|
|
406
|
+
constructor(c, r, z) {
|
|
407
|
+
this.z = z;
|
|
408
|
+
c.detach();
|
|
409
|
+
this.el = r.nativeElement;
|
|
410
|
+
proxyOutputs(this, this.el, ['ctyChange', 'ctyValueChange', 'ctyTabsChange']);
|
|
411
|
+
}
|
|
412
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCascaderView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
413
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyCascaderView, selector: "cty-cascader-view", inputs: { activeIcon: "activeIcon", loading: "loading", options: "options", placeholder: "placeholder", props: "props", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
414
|
+
};
|
|
415
|
+
CtyCascaderView = __decorate([
|
|
416
|
+
ProxyCmp({
|
|
417
|
+
inputs: ['activeIcon', 'loading', 'options', 'placeholder', 'props', 'value']
|
|
418
|
+
})
|
|
419
|
+
], CtyCascaderView);
|
|
420
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyCascaderView, decorators: [{
|
|
421
|
+
type: Component,
|
|
422
|
+
args: [{
|
|
423
|
+
selector: 'cty-cascader-view',
|
|
424
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
425
|
+
template: '<ng-content></ng-content>',
|
|
426
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
427
|
+
inputs: ['activeIcon', 'loading', 'options', 'placeholder', 'props', 'value'],
|
|
428
|
+
}]
|
|
429
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
403
430
|
let CtyCircle = class CtyCircle {
|
|
404
431
|
z;
|
|
405
432
|
el;
|
|
@@ -508,6 +535,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
508
535
|
inputs: ['placement', 'vertical'],
|
|
509
536
|
}]
|
|
510
537
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
538
|
+
let CtyDropdown = class CtyDropdown {
|
|
539
|
+
z;
|
|
540
|
+
el;
|
|
541
|
+
constructor(c, r, z) {
|
|
542
|
+
this.z = z;
|
|
543
|
+
c.detach();
|
|
544
|
+
this.el = r.nativeElement;
|
|
545
|
+
proxyOutputs(this, this.el, ['ctyChange']);
|
|
546
|
+
}
|
|
547
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
548
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyDropdown, selector: "cty-dropdown", inputs: { arrowIcon: "arrowIcon", backdropDismiss: "backdropDismiss", defaultValue: "defaultValue", isDynamicsLabel: "isDynamicsLabel", options: "options", outsideDismiss: "outsideDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
549
|
+
};
|
|
550
|
+
CtyDropdown = __decorate([
|
|
551
|
+
ProxyCmp({
|
|
552
|
+
inputs: ['arrowIcon', 'backdropDismiss', 'defaultValue', 'isDynamicsLabel', 'options', 'outsideDismiss'],
|
|
553
|
+
methods: ['close', 'toggleNavPop']
|
|
554
|
+
})
|
|
555
|
+
], CtyDropdown);
|
|
556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyDropdown, decorators: [{
|
|
557
|
+
type: Component,
|
|
558
|
+
args: [{
|
|
559
|
+
selector: 'cty-dropdown',
|
|
560
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
561
|
+
template: '<ng-content></ng-content>',
|
|
562
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
563
|
+
inputs: ['arrowIcon', 'backdropDismiss', 'defaultValue', 'isDynamicsLabel', 'options', 'outsideDismiss'],
|
|
564
|
+
}]
|
|
565
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
511
566
|
let CtyEmpty = class CtyEmpty {
|
|
512
567
|
z;
|
|
513
568
|
el;
|
|
@@ -787,11 +842,11 @@ let CtyNavBar = class CtyNavBar {
|
|
|
787
842
|
proxyOutputs(this, this.el, ['ctyDismiss']);
|
|
788
843
|
}
|
|
789
844
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyNavBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
790
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyNavBar, selector: "cty-nav-bar", inputs: { arrow: "arrow", end: "end", start: "start", title: "title", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
845
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyNavBar, selector: "cty-nav-bar", inputs: { arrow: "arrow", arrowIcon: "arrowIcon", end: "end", start: "start", title: "title", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
791
846
|
};
|
|
792
847
|
CtyNavBar = __decorate([
|
|
793
848
|
ProxyCmp({
|
|
794
|
-
inputs: ['arrow', 'end', 'start', 'title', 'type']
|
|
849
|
+
inputs: ['arrow', 'arrowIcon', 'end', 'start', 'title', 'type']
|
|
795
850
|
})
|
|
796
851
|
], CtyNavBar);
|
|
797
852
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyNavBar, decorators: [{
|
|
@@ -801,7 +856,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
801
856
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
802
857
|
template: '<ng-content></ng-content>',
|
|
803
858
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
804
|
-
inputs: ['arrow', 'end', 'start', 'title', 'type'],
|
|
859
|
+
inputs: ['arrow', 'arrowIcon', 'end', 'start', 'title', 'type'],
|
|
805
860
|
}]
|
|
806
861
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
807
862
|
let CtyNoticeBar = class CtyNoticeBar {
|
|
@@ -949,11 +1004,11 @@ let CtyQuickAccess = class CtyQuickAccess {
|
|
|
949
1004
|
proxyOutputs(this, this.el, ['ctyTap', 'ctySlide', 'ctySlideEnd', 'ctyInit']);
|
|
950
1005
|
}
|
|
951
1006
|
/** @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 });
|
|
952
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyQuickAccess, selector: "cty-quick-access", inputs: { col: "col", options: "options", paper: "paper", props: "props", quickThreshold: "quickThreshold", row: "row", slideThreshold: "slideThreshold"
|
|
1007
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyQuickAccess, selector: "cty-quick-access", inputs: { col: "col", duration: "duration", options: "options", paper: "paper", props: "props", quickThreshold: "quickThreshold", row: "row", slideThreshold: "slideThreshold" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
953
1008
|
};
|
|
954
1009
|
CtyQuickAccess = __decorate([
|
|
955
1010
|
ProxyCmp({
|
|
956
|
-
inputs: ['col', 'options', 'paper', 'props', 'quickThreshold', 'row', 'slideThreshold'
|
|
1011
|
+
inputs: ['col', 'duration', 'options', 'paper', 'props', 'quickThreshold', 'row', 'slideThreshold'],
|
|
957
1012
|
methods: ['getCurrentPage']
|
|
958
1013
|
})
|
|
959
1014
|
], CtyQuickAccess);
|
|
@@ -964,7 +1019,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
964
1019
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
965
1020
|
template: '<ng-content></ng-content>',
|
|
966
1021
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
967
|
-
inputs: ['col', 'options', 'paper', 'props', 'quickThreshold', 'row', 'slideThreshold'
|
|
1022
|
+
inputs: ['col', 'duration', 'options', 'paper', 'props', 'quickThreshold', 'row', 'slideThreshold'],
|
|
968
1023
|
}]
|
|
969
1024
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
970
1025
|
let CtyRate = class CtyRate {
|
|
@@ -1050,6 +1105,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1050
1105
|
inputs: ['autoHeight', 'layout', 'observer', 'observerParents', 'segmentProps', 'segments', 'top'],
|
|
1051
1106
|
}]
|
|
1052
1107
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1108
|
+
let CtySelector = class CtySelector {
|
|
1109
|
+
z;
|
|
1110
|
+
el;
|
|
1111
|
+
constructor(c, r, z) {
|
|
1112
|
+
this.z = z;
|
|
1113
|
+
c.detach();
|
|
1114
|
+
this.el = r.nativeElement;
|
|
1115
|
+
proxyOutputs(this, this.el, ['ctyChange', 'ctyValueChange']);
|
|
1116
|
+
}
|
|
1117
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySelector, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1118
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtySelector, selector: "cty-selector", inputs: { atleastOneSelected: "atleastOneSelected", checkMark: "checkMark", checkMarkIcon: "checkMarkIcon", columns: "columns", disabled: "disabled", multiple: "multiple", options: "options", props: "props", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1119
|
+
};
|
|
1120
|
+
CtySelector = __decorate([
|
|
1121
|
+
ProxyCmp({
|
|
1122
|
+
inputs: ['atleastOneSelected', 'checkMark', 'checkMarkIcon', 'columns', 'disabled', 'multiple', 'options', 'props', 'value']
|
|
1123
|
+
})
|
|
1124
|
+
], CtySelector);
|
|
1125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySelector, decorators: [{
|
|
1126
|
+
type: Component,
|
|
1127
|
+
args: [{
|
|
1128
|
+
selector: 'cty-selector',
|
|
1129
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1130
|
+
template: '<ng-content></ng-content>',
|
|
1131
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1132
|
+
inputs: ['atleastOneSelected', 'checkMark', 'checkMarkIcon', 'columns', 'disabled', 'multiple', 'options', 'props', 'value'],
|
|
1133
|
+
}]
|
|
1134
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1053
1135
|
let CtyShareSheet = class CtyShareSheet {
|
|
1054
1136
|
z;
|
|
1055
1137
|
el;
|
|
@@ -1078,6 +1160,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1078
1160
|
inputs: ['animated', 'backdropDismiss', 'cancelText', 'cssClass', 'description', 'enterAnimation', 'guide', 'guideImg', 'hiddenSheet', 'leaveAnimation', 'legacyCopy', 'options', 'permissionDescription', 'permissionPurpose', 'root', 'shareOption', 'title', 'trigger'],
|
|
1079
1161
|
}]
|
|
1080
1162
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1163
|
+
let CtySidePanel = class CtySidePanel {
|
|
1164
|
+
z;
|
|
1165
|
+
el;
|
|
1166
|
+
constructor(c, r, z) {
|
|
1167
|
+
this.z = z;
|
|
1168
|
+
c.detach();
|
|
1169
|
+
this.el = r.nativeElement;
|
|
1170
|
+
proxyOutputs(this, this.el, ['ctyChange']);
|
|
1171
|
+
}
|
|
1172
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySidePanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1173
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtySidePanel, selector: "cty-side-panel", inputs: { beforeChange: "beforeChange", sideBars: "sideBars", singleContent: "singleContent", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1174
|
+
};
|
|
1175
|
+
CtySidePanel = __decorate([
|
|
1176
|
+
ProxyCmp({
|
|
1177
|
+
inputs: ['beforeChange', 'sideBars', 'singleContent', 'value']
|
|
1178
|
+
})
|
|
1179
|
+
], CtySidePanel);
|
|
1180
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtySidePanel, decorators: [{
|
|
1181
|
+
type: Component,
|
|
1182
|
+
args: [{
|
|
1183
|
+
selector: 'cty-side-panel',
|
|
1184
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1185
|
+
template: '<ng-content></ng-content>',
|
|
1186
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1187
|
+
inputs: ['beforeChange', 'sideBars', 'singleContent', 'value'],
|
|
1188
|
+
}]
|
|
1189
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1081
1190
|
let CtyStep = class CtyStep {
|
|
1082
1191
|
z;
|
|
1083
1192
|
el;
|
|
@@ -1267,6 +1376,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1267
1376
|
inputs: ['collapseText', 'content', 'dots', 'expandText', 'position', 'rows'],
|
|
1268
1377
|
}]
|
|
1269
1378
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1379
|
+
let CtyTitleBar = class CtyTitleBar {
|
|
1380
|
+
z;
|
|
1381
|
+
el;
|
|
1382
|
+
constructor(c, r, z) {
|
|
1383
|
+
this.z = z;
|
|
1384
|
+
c.detach();
|
|
1385
|
+
this.el = r.nativeElement;
|
|
1386
|
+
proxyOutputs(this, this.el, ['ctyClickEnd']);
|
|
1387
|
+
}
|
|
1388
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyTitleBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1389
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyTitleBar, selector: "cty-title-bar", inputs: { endIcon: "endIcon", endText: "endText", startIcon: "startIcon", title: "title" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1390
|
+
};
|
|
1391
|
+
CtyTitleBar = __decorate([
|
|
1392
|
+
ProxyCmp({
|
|
1393
|
+
inputs: ['endIcon', 'endText', 'startIcon', 'title']
|
|
1394
|
+
})
|
|
1395
|
+
], CtyTitleBar);
|
|
1396
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyTitleBar, decorators: [{
|
|
1397
|
+
type: Component,
|
|
1398
|
+
args: [{
|
|
1399
|
+
selector: 'cty-title-bar',
|
|
1400
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1401
|
+
template: '<ng-content></ng-content>',
|
|
1402
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1403
|
+
inputs: ['endIcon', 'endText', 'startIcon', 'title'],
|
|
1404
|
+
}]
|
|
1405
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1270
1406
|
let CtyTour = class CtyTour {
|
|
1271
1407
|
z;
|
|
1272
1408
|
el;
|
|
@@ -1333,11 +1469,11 @@ let CtyVideo = class CtyVideo {
|
|
|
1333
1469
|
proxyOutputs(this, this.el, ['ctyDismiss', 'ctyVideoCanplay', 'ctyVideoTimeupdate', 'ctyVideoPlaying', 'ctyVideoPlay', 'ctyVideoPause', 'ctyVideoStalled', 'ctyVideoWaiting', 'ctyVideoEnded', 'ctyVideoError', 'ctyVideoChangeVolume', 'ctyVideoProgress', 'ctyVideoScreenChange', 'ctyVideoIAEnter', 'ctyVideoIAAction', 'ctyVideoCtrlChange', 'ctyVideoRateChange']);
|
|
1334
1470
|
}
|
|
1335
1471
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyVideo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1336
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyVideo, selector: "cty-video", inputs: { allowBackward: "allowBackward", allowForward: "allowForward", autoplay: "autoplay", controls: "controls", defaultFullscreen: "defaultFullscreen", directRate: "directRate", direction: "direction", errorMsg: "errorMsg", exitFullscreenIcon: "exitFullscreenIcon", footerCtrl: "footerCtrl", fullscreenIcon: "fullscreenIcon", fullscreenOnly: "fullscreenOnly", headerCtrl: "headerCtrl", interactiveActions: "interactiveActions", landscapeEnterTimer: "landscapeEnterTimer", landscapeLeaveTimer: "landscapeLeaveTimer", largeScreenIsPortrait: "largeScreenIsPortrait", loading: "loading", loadingImg: "loadingImg", markers: "markers", orientation: "orientation", player: "player", poster: "poster", preload: "preload", progressPosition: "progressPosition", rate: "rate", rates: "rates", startTime: "startTime", title: "title", togglePlayTimer: "togglePlayTimer", trafficAutoplay: "trafficAutoplay", trafficMsg: "trafficMsg", unAllowForwardMsg: "unAllowForwardMsg", unAllowRateMsg: "unAllowRateMsg", updateNow: "updateNow", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1472
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CtyVideo, selector: "cty-video", inputs: { allowBackgroundForward: "allowBackgroundForward", allowBackward: "allowBackward", allowForward: "allowForward", autoplay: "autoplay", controls: "controls", defaultFullscreen: "defaultFullscreen", directRate: "directRate", direction: "direction", errorMsg: "errorMsg", exitFullscreenIcon: "exitFullscreenIcon", footerCtrl: "footerCtrl", fullscreenIcon: "fullscreenIcon", fullscreenOnly: "fullscreenOnly", headerCtrl: "headerCtrl", interactiveActions: "interactiveActions", landscapeEnterTimer: "landscapeEnterTimer", landscapeLeaveTimer: "landscapeLeaveTimer", largeScreenIsPortrait: "largeScreenIsPortrait", loading: "loading", loadingImg: "loadingImg", markers: "markers", orientation: "orientation", player: "player", poster: "poster", preload: "preload", progressPosition: "progressPosition", rate: "rate", rates: "rates", startTime: "startTime", title: "title", togglePlayTimer: "togglePlayTimer", trafficAutoplay: "trafficAutoplay", trafficMsg: "trafficMsg", unAllowForwardMsg: "unAllowForwardMsg", unAllowRateMsg: "unAllowRateMsg", updateNow: "updateNow", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1337
1473
|
};
|
|
1338
1474
|
CtyVideo = __decorate([
|
|
1339
1475
|
ProxyCmp({
|
|
1340
|
-
inputs: ['allowBackward', 'allowForward', 'autoplay', 'controls', 'defaultFullscreen', 'directRate', 'direction', 'errorMsg', 'exitFullscreenIcon', 'footerCtrl', 'fullscreenIcon', 'fullscreenOnly', 'headerCtrl', 'interactiveActions', 'landscapeEnterTimer', 'landscapeLeaveTimer', 'largeScreenIsPortrait', 'loading', 'loadingImg', 'markers', 'orientation', 'player', 'poster', 'preload', 'progressPosition', 'rate', 'rates', 'startTime', 'title', 'togglePlayTimer', 'trafficAutoplay', 'trafficMsg', 'unAllowForwardMsg', 'unAllowRateMsg', 'updateNow', 'url'],
|
|
1476
|
+
inputs: ['allowBackgroundForward', 'allowBackward', 'allowForward', 'autoplay', 'controls', 'defaultFullscreen', 'directRate', 'direction', 'errorMsg', 'exitFullscreenIcon', 'footerCtrl', 'fullscreenIcon', 'fullscreenOnly', 'headerCtrl', 'interactiveActions', 'landscapeEnterTimer', 'landscapeLeaveTimer', 'largeScreenIsPortrait', 'loading', 'loadingImg', 'markers', 'orientation', 'player', 'poster', 'preload', 'progressPosition', 'rate', 'rates', 'startTime', 'title', 'togglePlayTimer', 'trafficAutoplay', 'trafficMsg', 'unAllowForwardMsg', 'unAllowRateMsg', 'updateNow', 'url'],
|
|
1341
1477
|
methods: ['play', 'setCtrlShow', 'pause', 'setVideoCurrentTime', 'clearCtrlTimeout', 'setWarningMsg', 'toggleVideo', 'toggleVolume', 'setPlayRate', 'getVideoElement', 'getVideoState']
|
|
1342
1478
|
})
|
|
1343
1479
|
], CtyVideo);
|
|
@@ -1348,7 +1484,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1348
1484
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1349
1485
|
template: '<ng-content></ng-content>',
|
|
1350
1486
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1351
|
-
inputs: ['allowBackward', 'allowForward', 'autoplay', 'controls', 'defaultFullscreen', 'directRate', 'direction', 'errorMsg', 'exitFullscreenIcon', 'footerCtrl', 'fullscreenIcon', 'fullscreenOnly', 'headerCtrl', 'interactiveActions', 'landscapeEnterTimer', 'landscapeLeaveTimer', 'largeScreenIsPortrait', 'loading', 'loadingImg', 'markers', 'orientation', 'player', 'poster', 'preload', 'progressPosition', 'rate', 'rates', 'startTime', 'title', 'togglePlayTimer', 'trafficAutoplay', 'trafficMsg', 'unAllowForwardMsg', 'unAllowRateMsg', 'updateNow', 'url'],
|
|
1487
|
+
inputs: ['allowBackgroundForward', 'allowBackward', 'allowForward', 'autoplay', 'controls', 'defaultFullscreen', 'directRate', 'direction', 'errorMsg', 'exitFullscreenIcon', 'footerCtrl', 'fullscreenIcon', 'fullscreenOnly', 'headerCtrl', 'interactiveActions', 'landscapeEnterTimer', 'landscapeLeaveTimer', 'largeScreenIsPortrait', 'loading', 'loadingImg', 'markers', 'orientation', 'player', 'poster', 'preload', 'progressPosition', 'rate', 'rates', 'startTime', 'title', 'togglePlayTimer', 'trafficAutoplay', 'trafficMsg', 'unAllowForwardMsg', 'unAllowRateMsg', 'updateNow', 'url'],
|
|
1352
1488
|
}]
|
|
1353
1489
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1354
1490
|
let CtyVirtualList = class CtyVirtualList {
|
|
@@ -1602,10 +1738,12 @@ const DIRECTIVES = [
|
|
|
1602
1738
|
CtyCanvasBoard,
|
|
1603
1739
|
CtyCanvasVideo,
|
|
1604
1740
|
CtyCascader,
|
|
1741
|
+
CtyCascaderView,
|
|
1605
1742
|
CtyCircle,
|
|
1606
1743
|
CtyCountDown,
|
|
1607
1744
|
CtyCropImage,
|
|
1608
1745
|
CtyDivider,
|
|
1746
|
+
CtyDropdown,
|
|
1609
1747
|
CtyEmpty,
|
|
1610
1748
|
CtyFloatingBubble,
|
|
1611
1749
|
CtyFloatingPanel,
|
|
@@ -1626,7 +1764,9 @@ const DIRECTIVES = [
|
|
|
1626
1764
|
CtyRate,
|
|
1627
1765
|
CtyRecord,
|
|
1628
1766
|
CtySegmentSlides,
|
|
1767
|
+
CtySelector,
|
|
1629
1768
|
CtyShareSheet,
|
|
1769
|
+
CtySidePanel,
|
|
1630
1770
|
CtyStep,
|
|
1631
1771
|
CtyStepper,
|
|
1632
1772
|
CtySteps,
|
|
@@ -1634,6 +1774,7 @@ const DIRECTIVES = [
|
|
|
1634
1774
|
CtySwipeItem,
|
|
1635
1775
|
CtySwiper,
|
|
1636
1776
|
CtyTextEllipsis,
|
|
1777
|
+
CtyTitleBar,
|
|
1637
1778
|
CtyTour,
|
|
1638
1779
|
CtyTutorial,
|
|
1639
1780
|
CtyVideo,
|
|
@@ -1662,7 +1803,7 @@ class CtyMUIModule {
|
|
|
1662
1803
|
};
|
|
1663
1804
|
}
|
|
1664
1805
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1665
|
-
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, declarations: [CtyActionSheet, CtyAgree, CtyAlert, CtyAnswerSheet, CtyArticleCard, CtyAudio, CtyBackdrop, CtyBanner, CtyCameraPhoto, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCircle, CtyCountDown, CtyCropImage, CtyDivider, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtySegmentSlides, CtyShareSheet, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTour, CtyTutorial, CtyVideo, CtyVirtualList], imports: [CommonModule], exports: [CtyActionSheet, CtyAgree, CtyAlert, CtyAnswerSheet, CtyArticleCard, CtyAudio, CtyBackdrop, CtyBanner, CtyCameraPhoto, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCircle, CtyCountDown, CtyCropImage, CtyDivider, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtySegmentSlides, CtyShareSheet, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTour, CtyTutorial, CtyVideo, CtyVirtualList] });
|
|
1806
|
+
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, declarations: [CtyActionSheet, CtyAgree, CtyAlert, CtyAnswerSheet, CtyArticleCard, CtyAudio, CtyBackdrop, CtyBanner, CtyCameraPhoto, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCascaderView, CtyCircle, CtyCountDown, CtyCropImage, CtyDivider, CtyDropdown, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtySegmentSlides, CtySelector, CtyShareSheet, CtySidePanel, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTitleBar, CtyTour, CtyTutorial, CtyVideo, CtyVirtualList], imports: [CommonModule], exports: [CtyActionSheet, CtyAgree, CtyAlert, CtyAnswerSheet, CtyArticleCard, CtyAudio, CtyBackdrop, CtyBanner, CtyCameraPhoto, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCascaderView, CtyCircle, CtyCountDown, CtyCropImage, CtyDivider, CtyDropdown, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtySegmentSlides, CtySelector, CtyShareSheet, CtySidePanel, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTitleBar, CtyTour, CtyTutorial, CtyVideo, CtyVirtualList] });
|
|
1666
1807
|
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, imports: [CommonModule] });
|
|
1667
1808
|
}
|
|
1668
1809
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CtyMUIModule, decorators: [{
|
|
@@ -1695,5 +1836,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1695
1836
|
* Generated bundle index. Do not edit.
|
|
1696
1837
|
*/
|
|
1697
1838
|
|
|
1698
|
-
export { CtyActionSheet, CtyActionSheetController, CtyAgree, CtyAlert, CtyAlertController, CtyAnswerSheet, CtyArticleCard, CtyAudio, CtyBackdrop, CtyBanner, CtyCameraPhoto, CtyCameraPhotoController, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCascaderController, CtyCircle, CtyController, CtyCountDown, CtyCropImage, CtyDivider, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyLoadingController, CtyMUIModule, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyOverlayController, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtyRecordController, CtySegmentSlides, CtyShareSheet, CtyShareSheetController, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTour, CtyTutorial, CtyTutorialController, CtyVideo, CtyVirtualList, DirectiveModule };
|
|
1839
|
+
export { CtyActionSheet, CtyActionSheetController, CtyAgree, CtyAlert, CtyAlertController, CtyAnswerSheet, CtyArticleCard, CtyAudio, CtyBackdrop, CtyBanner, CtyCameraPhoto, CtyCameraPhotoController, CtyCanvasBoard, CtyCanvasVideo, CtyCascader, CtyCascaderController, CtyCascaderView, CtyCircle, CtyController, CtyCountDown, CtyCropImage, CtyDivider, CtyDropdown, CtyEmpty, CtyFloatingBubble, CtyFloatingPanel, CtyIcon, CtyImageUpload, CtyImageViewer, CtyIndexBar, CtyKeyboard, CtyLoading, CtyLoadingController, CtyMUIModule, CtyMediaCapture, CtyNavBar, CtyNoticeBar, CtyOverlay, CtyOverlayController, CtyPdfViewer, CtyPermissionPurpose, CtyProgress, CtyQuickAccess, CtyRate, CtyRecord, CtyRecordController, CtySegmentSlides, CtySelector, CtyShareSheet, CtyShareSheetController, CtySidePanel, CtyStep, CtyStepper, CtySteps, CtySwipe, CtySwipeItem, CtySwiper, CtyTextEllipsis, CtyTitleBar, CtyTour, CtyTutorial, CtyTutorialController, CtyVideo, CtyVirtualList, DirectiveModule };
|
|
1699
1840
|
//# sourceMappingURL=cty-mui-angular.mjs.map
|