@ng-nest/ui 15.0.8 → 15.0.9
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/base-form/base-form.property.d.ts +2 -2
- package/core/config/config.d.ts +4 -0
- package/date-picker/date-picker.component.d.ts +5 -1
- package/date-picker/date-picker.module.d.ts +6 -5
- package/date-picker/date-picker.property.d.ts +139 -9
- package/date-picker/date-range-portal.component.d.ts +20 -13
- package/date-picker/date-range.component.d.ts +14 -4
- package/date-picker/picker-month.component.d.ts +15 -4
- package/date-picker/picker-year.component.d.ts +15 -5
- package/esm2020/base-form/base-form.property.mjs +1 -1
- package/esm2020/core/config/config.mjs +1 -1
- package/esm2020/date-picker/date-picker-portal.component.mjs +8 -7
- package/esm2020/date-picker/date-picker.component.mjs +32 -10
- package/esm2020/date-picker/date-picker.module.mjs +5 -1
- package/esm2020/date-picker/date-picker.property.mjs +178 -15
- package/esm2020/date-picker/date-range-portal.component.mjs +123 -52
- package/esm2020/date-picker/date-range.component.mjs +99 -34
- package/esm2020/date-picker/picker-date.component.mjs +4 -4
- package/esm2020/date-picker/picker-month.component.mjs +151 -11
- package/esm2020/date-picker/picker-year.component.mjs +151 -13
- package/esm2020/i18n/i18n.property.mjs +1 -1
- package/esm2020/i18n/languages/en_GB.mjs +11 -2
- package/esm2020/i18n/languages/en_US.mjs +11 -2
- package/esm2020/i18n/languages/zh_CN.mjs +11 -2
- package/esm2020/i18n/languages/zh_TW.mjs +11 -2
- package/esm2020/link/link.component.mjs +19 -5
- package/esm2020/link/link.property.mjs +10 -4
- package/esm2020/slider/slider.component.mjs +3 -3
- package/esm2020/time-picker/time-picker-frame.component.mjs +28 -11
- package/esm2020/time-picker/time-picker-portal.component.mjs +2 -2
- package/fesm2015/ng-nest-ui-base-form.mjs +0 -1
- package/fesm2015/ng-nest-ui-base-form.mjs.map +1 -1
- package/fesm2015/ng-nest-ui-core.mjs.map +1 -1
- package/fesm2015/ng-nest-ui-date-picker.mjs +726 -124
- package/fesm2015/ng-nest-ui-date-picker.mjs.map +1 -1
- package/fesm2015/ng-nest-ui-i18n.mjs +40 -5
- package/fesm2015/ng-nest-ui-i18n.mjs.map +1 -1
- package/fesm2015/ng-nest-ui-link.mjs +28 -9
- package/fesm2015/ng-nest-ui-link.mjs.map +1 -1
- package/fesm2015/ng-nest-ui-slider.mjs +2 -3
- package/fesm2015/ng-nest-ui-slider.mjs.map +1 -1
- package/fesm2015/ng-nest-ui-switch.mjs +1 -0
- package/fesm2015/ng-nest-ui-table.mjs +1 -0
- package/fesm2015/ng-nest-ui-time-picker.mjs +28 -12
- package/fesm2015/ng-nest-ui-time-picker.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-base-form.mjs +0 -1
- package/fesm2020/ng-nest-ui-base-form.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-core.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-date-picker.mjs +722 -124
- package/fesm2020/ng-nest-ui-date-picker.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-i18n.mjs +40 -5
- package/fesm2020/ng-nest-ui-i18n.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-link.mjs +27 -9
- package/fesm2020/ng-nest-ui-link.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-slider.mjs +2 -3
- package/fesm2020/ng-nest-ui-slider.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-switch.mjs +1 -0
- package/fesm2020/ng-nest-ui-table.mjs +1 -0
- package/fesm2020/ng-nest-ui-time-picker.mjs +28 -12
- package/fesm2020/ng-nest-ui-time-picker.mjs.map +1 -1
- package/i18n/i18n.property.d.ts +9 -0
- package/i18n/languages/en_GB.d.ts +9 -0
- package/i18n/languages/en_US.d.ts +9 -0
- package/i18n/languages/zh_CN.d.ts +9 -0
- package/i18n/languages/zh_TW.d.ts +9 -0
- package/link/link.component.d.ts +5 -2
- package/link/link.property.d.ts +6 -1
- package/package.json +1 -1
- package/time-picker/time-picker-frame.component.d.ts +8 -6
|
@@ -36,7 +36,7 @@ export declare class XFormProp extends XProperty {
|
|
|
36
36
|
/**
|
|
37
37
|
* 输入提示信息
|
|
38
38
|
*/
|
|
39
|
-
placeholder?: string;
|
|
39
|
+
placeholder?: string | string[];
|
|
40
40
|
/**
|
|
41
41
|
* 禁用
|
|
42
42
|
*/
|
|
@@ -128,7 +128,7 @@ export interface XFormOption {
|
|
|
128
128
|
/**
|
|
129
129
|
* 输入提示信息
|
|
130
130
|
*/
|
|
131
|
-
placeholder?: string;
|
|
131
|
+
placeholder?: string | string[];
|
|
132
132
|
/**
|
|
133
133
|
* 禁用
|
|
134
134
|
*/
|
package/core/config/config.d.ts
CHANGED
|
@@ -213,6 +213,8 @@ export interface XDateRangeConfig {
|
|
|
213
213
|
format?: string;
|
|
214
214
|
clearable?: XBoolean;
|
|
215
215
|
placement?: XCorner;
|
|
216
|
+
size?: XSize;
|
|
217
|
+
bordered?: XBoolean;
|
|
216
218
|
}
|
|
217
219
|
export interface XDialogConfig {
|
|
218
220
|
placement?: XPlace;
|
|
@@ -310,6 +312,7 @@ export interface XRippleConfig {
|
|
|
310
312
|
export interface XLinkConfig {
|
|
311
313
|
underline?: XBoolean;
|
|
312
314
|
iconRight?: XBoolean;
|
|
315
|
+
preventDefault?: XBoolean;
|
|
313
316
|
}
|
|
314
317
|
export interface XListConfig {
|
|
315
318
|
selectAllText?: string;
|
|
@@ -477,6 +480,7 @@ export interface XTimePickerConfig {
|
|
|
477
480
|
size?: XSize;
|
|
478
481
|
bordered?: XBoolean;
|
|
479
482
|
use12Hours?: XBoolean;
|
|
483
|
+
defaultNow?: XBoolean;
|
|
480
484
|
}
|
|
481
485
|
export interface XTimeRangeConfig {
|
|
482
486
|
}
|
|
@@ -7,6 +7,7 @@ import { XConfigService } from '@ng-nest/ui/core';
|
|
|
7
7
|
import { XInputComponent } from '@ng-nest/ui/input';
|
|
8
8
|
import { DatePipe } from '@angular/common';
|
|
9
9
|
import { Overlay, OverlayConfig } from '@angular/cdk/overlay';
|
|
10
|
+
import { XI18nDatePicker, XI18nService } from '@ng-nest/ui/i18n';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class XDatePickerComponent extends XDatePickerProperty implements OnInit, OnChanges {
|
|
12
13
|
renderer: Renderer2;
|
|
@@ -15,6 +16,7 @@ export declare class XDatePickerComponent extends XDatePickerProperty implements
|
|
|
15
16
|
private portalService;
|
|
16
17
|
private viewContainerRef;
|
|
17
18
|
private datePipe;
|
|
19
|
+
private i18n;
|
|
18
20
|
private overlay;
|
|
19
21
|
datePicker: ElementRef<HTMLElement>;
|
|
20
22
|
inputCom: XInputComponent;
|
|
@@ -36,8 +38,10 @@ export declare class XDatePickerComponent extends XDatePickerProperty implements
|
|
|
36
38
|
dataChange: Subject<any>;
|
|
37
39
|
positionChange: Subject<any>;
|
|
38
40
|
closeSubject: Subject<void>;
|
|
41
|
+
locale: XI18nDatePicker;
|
|
39
42
|
private _unSubject;
|
|
40
|
-
|
|
43
|
+
get getPlaceholder(): string | string[] | undefined;
|
|
44
|
+
constructor(renderer: Renderer2, configService: XConfigService, cdr: ChangeDetectorRef, portalService: XPortalService, viewContainerRef: ViewContainerRef, datePipe: DatePipe, i18n: XI18nService, overlay: Overlay);
|
|
41
45
|
ngOnInit(): void;
|
|
42
46
|
ngAfterViewInit(): void;
|
|
43
47
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -12,12 +12,13 @@ import * as i10 from "@angular/forms";
|
|
|
12
12
|
import * as i11 from "@ng-nest/ui/portal";
|
|
13
13
|
import * as i12 from "@ng-nest/ui/time-picker";
|
|
14
14
|
import * as i13 from "@ng-nest/ui/input";
|
|
15
|
-
import * as i14 from "@ng-nest/ui/
|
|
16
|
-
import * as i15 from "@ng-nest/ui/
|
|
17
|
-
import * as i16 from "@ng-nest/ui/
|
|
18
|
-
import * as i17 from "@ng-nest/ui/
|
|
15
|
+
import * as i14 from "@ng-nest/ui/link";
|
|
16
|
+
import * as i15 from "@ng-nest/ui/button";
|
|
17
|
+
import * as i16 from "@ng-nest/ui/icon";
|
|
18
|
+
import * as i17 from "@ng-nest/ui/i18n";
|
|
19
|
+
import * as i18 from "@ng-nest/ui/base-form";
|
|
19
20
|
export declare class XDatePickerModule {
|
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<XDatePickerModule, never>;
|
|
21
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<XDatePickerModule, [typeof i1.XDatePickerComponent, typeof i2.XDatePickerPortalComponent, typeof i3.XPickerDateComponent, typeof i4.XPickerMonthComponent, typeof i5.XPickerYearComponent, typeof i6.XDatePickerProperty, typeof i6.XPickerDateProperty, typeof i6.XPickerMonthProperty, typeof i6.XPickerYearProperty, typeof i7.XDateRangeComponent, typeof i8.XDateRangePortalComponent, typeof i6.XDateRangeProperty], [typeof i9.CommonModule, typeof i10.FormsModule, typeof i10.ReactiveFormsModule, typeof i11.XPortalModule, typeof i12.XTimePickerModule, typeof i13.XInputModule, typeof i14.
|
|
22
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<XDatePickerModule, [typeof i1.XDatePickerComponent, typeof i2.XDatePickerPortalComponent, typeof i3.XPickerDateComponent, typeof i4.XPickerMonthComponent, typeof i5.XPickerYearComponent, typeof i6.XDatePickerProperty, typeof i6.XPickerDateProperty, typeof i6.XPickerMonthProperty, typeof i6.XPickerYearProperty, typeof i7.XDateRangeComponent, typeof i8.XDateRangePortalComponent, typeof i6.XDateRangeProperty], [typeof i9.CommonModule, typeof i10.FormsModule, typeof i10.ReactiveFormsModule, typeof i11.XPortalModule, typeof i12.XTimePickerModule, typeof i13.XInputModule, typeof i14.XLinkModule, typeof i15.XButtonModule, typeof i16.XIconModule, typeof i17.XI18nModule, typeof i18.XBaseFormModule], [typeof i1.XDatePickerComponent, typeof i7.XDateRangeComponent, typeof i2.XDatePickerPortalComponent, typeof i3.XPickerDateComponent, typeof i4.XPickerMonthComponent, typeof i5.XPickerYearComponent]>;
|
|
22
23
|
static ɵinj: i0.ɵɵInjectorDeclaration<XDatePickerModule>;
|
|
23
24
|
}
|
|
@@ -147,17 +147,17 @@ export declare class XDateRangeProperty extends XControlValueAccessor<any> imple
|
|
|
147
147
|
*/
|
|
148
148
|
bordered: XBoolean;
|
|
149
149
|
/**
|
|
150
|
-
* @zh_CN
|
|
151
|
-
* @en_US
|
|
150
|
+
* @zh_CN 日期提示信息
|
|
151
|
+
* @en_US Placeholder of date input
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
placeholder?: string[];
|
|
154
154
|
/**
|
|
155
155
|
* @zh_CN 节点点击的事件
|
|
156
156
|
* @en_US Node click event
|
|
157
157
|
*/
|
|
158
158
|
nodeEmit: EventEmitter<number[]>;
|
|
159
159
|
static ɵfac: i0.ɵɵFactoryDeclaration<XDateRangeProperty, never>;
|
|
160
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<XDateRangeProperty, "ng-component", never, { "type": "type"; "format": "format"; "clearable": "clearable"; "placement": "placement"; "size": "size"; "bordered": "bordered"; "
|
|
160
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<XDateRangeProperty, "ng-component", never, { "type": "type"; "format": "format"; "clearable": "clearable"; "placement": "placement"; "size": "size"; "bordered": "bordered"; "placeholder": "placeholder"; }, { "nodeEmit": "nodeEmit"; }, never, never, false, never>;
|
|
161
161
|
}
|
|
162
162
|
/**
|
|
163
163
|
* DateRange Option
|
|
@@ -169,6 +169,11 @@ export interface XDateRangeOption extends XFormOption {
|
|
|
169
169
|
* @en_US Tab key control order
|
|
170
170
|
*/
|
|
171
171
|
tabindex?: number;
|
|
172
|
+
/**
|
|
173
|
+
* @zh_CN 日期提示信息
|
|
174
|
+
* @en_US Placeholder of date input
|
|
175
|
+
*/
|
|
176
|
+
placeholder?: string[];
|
|
172
177
|
}
|
|
173
178
|
/**
|
|
174
179
|
* @zh_CN 快捷选择按钮
|
|
@@ -263,6 +268,11 @@ export declare class XPickerDateProperty extends XProperty {
|
|
|
263
268
|
* @en_US Next month
|
|
264
269
|
*/
|
|
265
270
|
nextMonthBtn: XBoolean;
|
|
271
|
+
/**
|
|
272
|
+
* @zh_CN 范围 hover 效果
|
|
273
|
+
* @en_US Range hover style
|
|
274
|
+
*/
|
|
275
|
+
rangeHover: XBoolean;
|
|
266
276
|
/**
|
|
267
277
|
* @zh_CN 范围日期
|
|
268
278
|
* @en_US Range date
|
|
@@ -319,7 +329,7 @@ export declare class XPickerDateProperty extends XProperty {
|
|
|
319
329
|
*/
|
|
320
330
|
rangeDateClick: EventEmitter<XDateCell>;
|
|
321
331
|
static ɵfac: i0.ɵɵFactoryDeclaration<XPickerDateProperty, never>;
|
|
322
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<XPickerDateProperty, "ng-component", never, { "type": "type"; "display": "display"; "model": "model"; "dateTemp": "dateTemp"; "showHeader": "showHeader"; "rangePicker": "rangePicker"; "lastYearBtn": "lastYearBtn"; "lastMonthBtn": "lastMonthBtn"; "nextYearBtn": "nextYearBtn"; "nextMonthBtn": "nextMonthBtn"; "rangeValue": "rangeValue"; "rangeType": "rangeType"; }, { "typeChange": "typeChange"; "modelChange": "modelChange"; "rangeChange": "rangeChange"; "yearChange": "yearChange"; "monthChange": "monthChange"; "displayChange": "displayChange"; "rangeTdMouseenter": "rangeTdMouseenter"; "rangeTdMouseleave": "rangeTdMouseleave"; "rangeDateClick": "rangeDateClick"; }, never, never, false, never>;
|
|
332
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<XPickerDateProperty, "ng-component", never, { "type": "type"; "display": "display"; "model": "model"; "dateTemp": "dateTemp"; "showHeader": "showHeader"; "rangePicker": "rangePicker"; "lastYearBtn": "lastYearBtn"; "lastMonthBtn": "lastMonthBtn"; "nextYearBtn": "nextYearBtn"; "nextMonthBtn": "nextMonthBtn"; "rangeHover": "rangeHover"; "rangeValue": "rangeValue"; "rangeType": "rangeType"; }, { "typeChange": "typeChange"; "modelChange": "modelChange"; "rangeChange": "rangeChange"; "yearChange": "yearChange"; "monthChange": "monthChange"; "displayChange": "displayChange"; "rangeTdMouseenter": "rangeTdMouseenter"; "rangeTdMouseleave": "rangeTdMouseleave"; "rangeDateClick": "rangeDateClick"; }, never, never, false, never>;
|
|
323
333
|
}
|
|
324
334
|
/**
|
|
325
335
|
* @zh_CN 单个日期数据对象
|
|
@@ -461,7 +471,7 @@ export declare class XPickerMonthProperty extends XProperty {
|
|
|
461
471
|
* @zh_CN 选中的日期
|
|
462
472
|
* @en_US Selected date
|
|
463
473
|
*/
|
|
464
|
-
model?: Date;
|
|
474
|
+
model?: Date | null;
|
|
465
475
|
/**
|
|
466
476
|
* @zh_CN 月份显示模板
|
|
467
477
|
* @en_US Month display template
|
|
@@ -472,6 +482,31 @@ export declare class XPickerMonthProperty extends XProperty {
|
|
|
472
482
|
* @en_US Display switch button
|
|
473
483
|
*/
|
|
474
484
|
showHeader: XBoolean;
|
|
485
|
+
/**
|
|
486
|
+
* @zh_CN 范围选择
|
|
487
|
+
* @en_US Range picker
|
|
488
|
+
*/
|
|
489
|
+
rangePicker?: XBoolean;
|
|
490
|
+
/**
|
|
491
|
+
* @zh_CN 上一年
|
|
492
|
+
* @en_US Last year
|
|
493
|
+
*/
|
|
494
|
+
lastYearBtn: XBoolean;
|
|
495
|
+
/**
|
|
496
|
+
* @zh_CN 下一年
|
|
497
|
+
* @en_US Next year
|
|
498
|
+
*/
|
|
499
|
+
nextYearBtn: XBoolean;
|
|
500
|
+
/**
|
|
501
|
+
* @zh_CN 范围月份
|
|
502
|
+
* @en_US Range date
|
|
503
|
+
*/
|
|
504
|
+
rangeValue: (number | null)[];
|
|
505
|
+
/**
|
|
506
|
+
* @zh_CN 当前选择的是开始/结束日期
|
|
507
|
+
* @en_US The current choice is the start / end date
|
|
508
|
+
*/
|
|
509
|
+
rangeType: XDatePickerRangType;
|
|
475
510
|
/**
|
|
476
511
|
* @zh_CN 选中的事件
|
|
477
512
|
* @en_US Selected event
|
|
@@ -487,8 +522,38 @@ export declare class XPickerMonthProperty extends XProperty {
|
|
|
487
522
|
* @en_US Scope change event
|
|
488
523
|
*/
|
|
489
524
|
rangeChange: EventEmitter<Date[]>;
|
|
525
|
+
/**
|
|
526
|
+
* @zh_CN 选年的事件
|
|
527
|
+
* @en_US Year change event
|
|
528
|
+
*/
|
|
529
|
+
yearChange: EventEmitter<number>;
|
|
530
|
+
/**
|
|
531
|
+
* @zh_CN 选月的事件
|
|
532
|
+
* @en_US Month change event
|
|
533
|
+
*/
|
|
534
|
+
monthChange: EventEmitter<number>;
|
|
535
|
+
/**
|
|
536
|
+
* @zh_CN 显示月份事件
|
|
537
|
+
* @en_US display date event
|
|
538
|
+
*/
|
|
539
|
+
displayChange: EventEmitter<Date>;
|
|
540
|
+
/**
|
|
541
|
+
* @zh_CN 范围月份 mouseenter 事件
|
|
542
|
+
* @en_US Date mouseenter event
|
|
543
|
+
*/
|
|
544
|
+
rangeTdMouseenter: EventEmitter<XDateCell>;
|
|
545
|
+
/**
|
|
546
|
+
* @zh_CN 范围月份 mouseleave 事件
|
|
547
|
+
* @en_US Date mouseleave event
|
|
548
|
+
*/
|
|
549
|
+
rangeTdMouseleave: EventEmitter<XDateCell>;
|
|
550
|
+
/**
|
|
551
|
+
* @zh_CN 范围中的月份点击事件
|
|
552
|
+
* @en_US Range date click event
|
|
553
|
+
*/
|
|
554
|
+
rangeDateClick: EventEmitter<XDateCell>;
|
|
490
555
|
static ɵfac: i0.ɵɵFactoryDeclaration<XPickerMonthProperty, never>;
|
|
491
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<XPickerMonthProperty, "ng-component", never, { "type": "type"; "display": "display"; "model": "model"; "monthTemp": "monthTemp"; "showHeader": "showHeader"; }, { "modelChange": "modelChange"; "typeChange": "typeChange"; "rangeChange": "rangeChange"; }, never, never, false, never>;
|
|
556
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<XPickerMonthProperty, "ng-component", never, { "type": "type"; "display": "display"; "model": "model"; "monthTemp": "monthTemp"; "showHeader": "showHeader"; "rangePicker": "rangePicker"; "lastYearBtn": "lastYearBtn"; "nextYearBtn": "nextYearBtn"; "rangeValue": "rangeValue"; "rangeType": "rangeType"; }, { "modelChange": "modelChange"; "typeChange": "typeChange"; "rangeChange": "rangeChange"; "yearChange": "yearChange"; "monthChange": "monthChange"; "displayChange": "displayChange"; "rangeTdMouseenter": "rangeTdMouseenter"; "rangeTdMouseleave": "rangeTdMouseleave"; "rangeDateClick": "rangeDateClick"; }, never, never, false, never>;
|
|
492
557
|
}
|
|
493
558
|
/**
|
|
494
559
|
* PickerYear
|
|
@@ -514,12 +579,42 @@ export declare class XPickerYearProperty extends XProperty {
|
|
|
514
579
|
* @zh_CN 选中的日期
|
|
515
580
|
* @en_US Selected date
|
|
516
581
|
*/
|
|
517
|
-
model?: Date;
|
|
582
|
+
model?: Date | null;
|
|
583
|
+
/**
|
|
584
|
+
* @zh_CN 年份显示模板
|
|
585
|
+
* @en_US Month display template
|
|
586
|
+
*/
|
|
587
|
+
yearTemp?: TemplateRef<any>;
|
|
518
588
|
/**
|
|
519
589
|
* @zh_CN 显示切换按钮
|
|
520
590
|
* @en_US Display switch button
|
|
521
591
|
*/
|
|
522
592
|
showHeader: XBoolean;
|
|
593
|
+
/**
|
|
594
|
+
* @zh_CN 范围选择
|
|
595
|
+
* @en_US Range picker
|
|
596
|
+
*/
|
|
597
|
+
rangePicker?: XBoolean;
|
|
598
|
+
/**
|
|
599
|
+
* @zh_CN 上一年
|
|
600
|
+
* @en_US Last year
|
|
601
|
+
*/
|
|
602
|
+
lastYearBtn: XBoolean;
|
|
603
|
+
/**
|
|
604
|
+
* @zh_CN 下一年
|
|
605
|
+
* @en_US Next year
|
|
606
|
+
*/
|
|
607
|
+
nextYearBtn: XBoolean;
|
|
608
|
+
/**
|
|
609
|
+
* @zh_CN 范围年份
|
|
610
|
+
* @en_US Range date
|
|
611
|
+
*/
|
|
612
|
+
rangeValue: (number | null)[];
|
|
613
|
+
/**
|
|
614
|
+
* @zh_CN 当前选择的是开始/结束日期
|
|
615
|
+
* @en_US The current choice is the start / end date
|
|
616
|
+
*/
|
|
617
|
+
rangeType: XDatePickerRangType;
|
|
523
618
|
/**
|
|
524
619
|
* @zh_CN 选中的事件
|
|
525
620
|
* @en_US Selected event
|
|
@@ -535,6 +630,41 @@ export declare class XPickerYearProperty extends XProperty {
|
|
|
535
630
|
* @en_US Start year change event
|
|
536
631
|
*/
|
|
537
632
|
startChange: EventEmitter<number>;
|
|
633
|
+
/**
|
|
634
|
+
* @zh_CN 范围变化的事件
|
|
635
|
+
* @en_US Scope change event
|
|
636
|
+
*/
|
|
637
|
+
rangeChange: EventEmitter<Date[]>;
|
|
638
|
+
/**
|
|
639
|
+
* @zh_CN 选年的事件
|
|
640
|
+
* @en_US Year change event
|
|
641
|
+
*/
|
|
642
|
+
yearChange: EventEmitter<number>;
|
|
643
|
+
/**
|
|
644
|
+
* @zh_CN 选月的事件
|
|
645
|
+
* @en_US Month change event
|
|
646
|
+
*/
|
|
647
|
+
monthChange: EventEmitter<number>;
|
|
648
|
+
/**
|
|
649
|
+
* @zh_CN 显示月份事件
|
|
650
|
+
* @en_US display date event
|
|
651
|
+
*/
|
|
652
|
+
displayChange: EventEmitter<Date>;
|
|
653
|
+
/**
|
|
654
|
+
* @zh_CN 范围月份 mouseenter 事件
|
|
655
|
+
* @en_US Date mouseenter event
|
|
656
|
+
*/
|
|
657
|
+
rangeTdMouseenter: EventEmitter<XDateCell>;
|
|
658
|
+
/**
|
|
659
|
+
* @zh_CN 范围月份 mouseleave 事件
|
|
660
|
+
* @en_US Date mouseleave event
|
|
661
|
+
*/
|
|
662
|
+
rangeTdMouseleave: EventEmitter<XDateCell>;
|
|
663
|
+
/**
|
|
664
|
+
* @zh_CN 范围中的月份点击事件
|
|
665
|
+
* @en_US Range date click event
|
|
666
|
+
*/
|
|
667
|
+
rangeDateClick: EventEmitter<XDateCell>;
|
|
538
668
|
static ɵfac: i0.ɵɵFactoryDeclaration<XPickerYearProperty, never>;
|
|
539
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<XPickerYearProperty, "ng-component", never, { "type": "type"; "display": "display"; "model": "model"; "showHeader": "showHeader"; }, { "modelChange": "modelChange"; "typeChange": "typeChange"; "startChange": "startChange"; }, never, never, false, never>;
|
|
669
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<XPickerYearProperty, "ng-component", never, { "type": "type"; "display": "display"; "model": "model"; "yearTemp": "yearTemp"; "showHeader": "showHeader"; "rangePicker": "rangePicker"; "lastYearBtn": "lastYearBtn"; "nextYearBtn": "nextYearBtn"; "rangeValue": "rangeValue"; "rangeType": "rangeType"; }, { "modelChange": "modelChange"; "typeChange": "typeChange"; "startChange": "startChange"; "rangeChange": "rangeChange"; "yearChange": "yearChange"; "monthChange": "monthChange"; "displayChange": "displayChange"; "rangeTdMouseenter": "rangeTdMouseenter"; "rangeTdMouseleave": "rangeTdMouseleave"; "rangeDateClick": "rangeDateClick"; }, never, never, false, never>;
|
|
540
670
|
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnInit, OnDestroy, AfterViewInit } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { XDatePickerType, XDateCell } from './date-picker.property';
|
|
3
3
|
import { XPositionTopBottom } from '@ng-nest/ui/core';
|
|
4
4
|
import { Subject } from 'rxjs';
|
|
5
5
|
import { DatePipe, LowerCasePipe } from '@angular/common';
|
|
6
6
|
import { XI18nService, XI18nDatePicker } from '@ng-nest/ui/i18n';
|
|
7
|
+
import { XPickerMonthComponent } from './picker-month.component';
|
|
8
|
+
import { XPickerYearComponent } from './picker-year.component';
|
|
9
|
+
import { XPickerDateComponent } from './picker-date.component';
|
|
7
10
|
import * as i0 from "@angular/core";
|
|
8
11
|
export declare class XDateRangePortalComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
9
12
|
datePipe: DatePipe;
|
|
@@ -15,6 +18,8 @@ export declare class XDateRangePortalComponent implements OnInit, OnDestroy, Aft
|
|
|
15
18
|
toState: any;
|
|
16
19
|
}): void;
|
|
17
20
|
start(): void;
|
|
21
|
+
startPicker: XPickerDateComponent | XPickerMonthComponent | XPickerYearComponent;
|
|
22
|
+
endPicker: XPickerDateComponent | XPickerMonthComponent | XPickerYearComponent;
|
|
18
23
|
type: XDatePickerType;
|
|
19
24
|
display: Date;
|
|
20
25
|
model: Date;
|
|
@@ -32,37 +37,39 @@ export declare class XDateRangePortalComponent implements OnInit, OnDestroy, Aft
|
|
|
32
37
|
closePortal: Function;
|
|
33
38
|
destroyPortal: Function;
|
|
34
39
|
nodeEmit: (date: Date[], close?: boolean) => void;
|
|
35
|
-
startNodeEmit: (date: Date | null, close?: boolean) => void;
|
|
36
|
-
endNodeEmit: (date: Date | null, close?: boolean) => void;
|
|
40
|
+
startNodeEmit: (date: Date | null, close?: boolean, isDatePicker?: boolean) => void;
|
|
41
|
+
endNodeEmit: (date: Date | null, close?: boolean, isDatePicker?: boolean) => void;
|
|
37
42
|
locale: XI18nDatePicker;
|
|
38
|
-
time: number;
|
|
39
|
-
|
|
43
|
+
time: number | null;
|
|
44
|
+
timeDisplay: Date;
|
|
45
|
+
timeModel: Date | null;
|
|
46
|
+
timeHover: boolean;
|
|
40
47
|
nodeClickCount: number;
|
|
41
|
-
private _type;
|
|
42
48
|
private _unSubject;
|
|
49
|
+
get timeSureDisabled(): boolean;
|
|
50
|
+
get isDatePicker(): boolean;
|
|
43
51
|
constructor(datePipe: DatePipe, lowerCasePipe: LowerCasePipe, cdr: ChangeDetectorRef, i18n: XI18nService);
|
|
44
52
|
ngOnInit(): void;
|
|
45
53
|
ngAfterViewInit(): void;
|
|
46
54
|
ngOnDestroy(): void;
|
|
47
55
|
init(): void;
|
|
48
56
|
stopPropagation(event: Event): void;
|
|
57
|
+
setModelByType(byModel: Date, num?: number): Date;
|
|
58
|
+
setDatesState(cell: XDateCell): void;
|
|
49
59
|
setDefault(): void;
|
|
50
60
|
setDisplay(date: Date): void;
|
|
51
61
|
dateChange(date: Date): void;
|
|
62
|
+
setDateChangeTime(date: Date): number;
|
|
52
63
|
typeChange(type: XDatePickerType): void;
|
|
53
|
-
monthChange(date: Date): void;
|
|
54
|
-
yearChange(date: Date): void;
|
|
55
64
|
yearStartChange(number: number): void;
|
|
56
65
|
nextMonth(num: number): void;
|
|
57
66
|
nextYear(num: number): void;
|
|
58
67
|
nextYears(num: number): void;
|
|
59
68
|
getLocaleMonth(date: Date): any;
|
|
60
69
|
selectTime(time: Date): void;
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
startMonthChange(num: number): void;
|
|
65
|
-
endMonthChange(num: number): void;
|
|
70
|
+
sureTime(): void;
|
|
71
|
+
yearChange(num: number, type?: 'start' | 'end'): void;
|
|
72
|
+
monthChange(num: number, type?: 'start' | 'end'): void;
|
|
66
73
|
static ɵfac: i0.ɵɵFactoryDeclaration<XDateRangePortalComponent, never>;
|
|
67
74
|
static ɵcmp: i0.ɵɵComponentDeclaration<XDateRangePortalComponent, "x-date-range-portal", never, {}, {}, never, never, false, never>;
|
|
68
75
|
}
|
|
@@ -7,15 +7,18 @@ import { XInputComponent, XInputGroupComponent } from '@ng-nest/ui/input';
|
|
|
7
7
|
import { DatePipe } from '@angular/common';
|
|
8
8
|
import { Overlay, OverlayConfig } from '@angular/cdk/overlay';
|
|
9
9
|
import { XDateRangePortalComponent } from './date-range-portal.component';
|
|
10
|
+
import { XI18nDatePicker, XI18nService } from '@ng-nest/ui/i18n';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class XDateRangeComponent extends XDateRangeProperty implements OnInit, OnChanges {
|
|
12
13
|
renderer: Renderer2;
|
|
14
|
+
elementRef: ElementRef;
|
|
13
15
|
configService: XConfigService;
|
|
14
16
|
cdr: ChangeDetectorRef;
|
|
15
17
|
private portalService;
|
|
16
18
|
private viewContainerRef;
|
|
17
19
|
private datePipe;
|
|
18
20
|
private overlay;
|
|
21
|
+
private i18n;
|
|
19
22
|
dateRange: ElementRef<HTMLElement>;
|
|
20
23
|
inputGroup: XInputGroupComponent;
|
|
21
24
|
inputStartCom: XInputComponent;
|
|
@@ -24,7 +27,9 @@ export declare class XDateRangeComponent extends XDateRangeProperty implements O
|
|
|
24
27
|
numberValue: (number | null)[];
|
|
25
28
|
isInput: boolean;
|
|
26
29
|
showClearable: boolean;
|
|
27
|
-
get
|
|
30
|
+
get getStartPlaceholder(): string | undefined;
|
|
31
|
+
get getEndPlaceholder(): string | undefined;
|
|
32
|
+
get requiredIsEmpty(): boolean | "";
|
|
28
33
|
writeValue(value: any): void;
|
|
29
34
|
enter: boolean;
|
|
30
35
|
inputClearable: boolean;
|
|
@@ -44,13 +49,17 @@ export declare class XDateRangeComponent extends XDateRangeProperty implements O
|
|
|
44
49
|
startDisplay: string | number;
|
|
45
50
|
endDisplay: string | number;
|
|
46
51
|
activeType?: 'start' | 'end';
|
|
52
|
+
flexClass: string[];
|
|
53
|
+
locale: XI18nDatePicker;
|
|
47
54
|
private _unSubject;
|
|
48
|
-
constructor(renderer: Renderer2, configService: XConfigService, cdr: ChangeDetectorRef, portalService: XPortalService, viewContainerRef: ViewContainerRef, datePipe: DatePipe, overlay: Overlay);
|
|
55
|
+
constructor(renderer: Renderer2, elementRef: ElementRef, configService: XConfigService, cdr: ChangeDetectorRef, portalService: XPortalService, viewContainerRef: ViewContainerRef, datePipe: DatePipe, overlay: Overlay, i18n: XI18nService);
|
|
49
56
|
ngOnInit(): void;
|
|
50
57
|
ngAfterViewInit(): void;
|
|
51
58
|
ngOnChanges(changes: SimpleChanges): void;
|
|
52
59
|
ngOnDestroy(): void;
|
|
53
60
|
setSubject(): void;
|
|
61
|
+
setFlexClass(): void;
|
|
62
|
+
setHostTypeClass(): void;
|
|
54
63
|
setFormat(): void;
|
|
55
64
|
menter(): void;
|
|
56
65
|
mleave(): void;
|
|
@@ -61,12 +70,13 @@ export declare class XDateRangeComponent extends XDateRangeProperty implements O
|
|
|
61
70
|
getNumberValue(): any;
|
|
62
71
|
portalAttached(): boolean | undefined;
|
|
63
72
|
closePortal(): boolean;
|
|
73
|
+
closeReduction(): void;
|
|
64
74
|
destroyPortal(): void;
|
|
65
75
|
showPortal($event: Event, type?: 'start' | 'end'): void;
|
|
66
76
|
setPosition(config: OverlayConfig): void;
|
|
67
77
|
setInstance(): void;
|
|
68
|
-
startNodeClick(node?: Date, close?: boolean): void;
|
|
69
|
-
endNodeClick(node?: Date, close?: boolean): void;
|
|
78
|
+
startNodeClick(node?: Date, close?: boolean, isDatePicker?: boolean): void;
|
|
79
|
+
endNodeClick(node?: Date, close?: boolean, isDatePicker?: boolean): void;
|
|
70
80
|
onNodeClick(dates: Date[], close?: boolean): void;
|
|
71
81
|
onInput(): void;
|
|
72
82
|
onFocus(type: 'start' | 'end'): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef, Renderer2, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { XConfigService } from '@ng-nest/ui/core';
|
|
3
|
-
import { XDatePickerType, XPickerMonthProperty } from './date-picker.property';
|
|
3
|
+
import { XDateCell, XDatePickerType, XPickerMonthProperty } from './date-picker.property';
|
|
4
4
|
import { DatePipe, LowerCasePipe } from '@angular/common';
|
|
5
5
|
import { XI18nDatePicker, XI18nService } from '@ng-nest/ui/i18n';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
@@ -12,20 +12,31 @@ export declare class XPickerMonthComponent extends XPickerMonthProperty implemen
|
|
|
12
12
|
configService: XConfigService;
|
|
13
13
|
i18n: XI18nService;
|
|
14
14
|
now: Date;
|
|
15
|
-
dates:
|
|
15
|
+
dates: XDateCell[];
|
|
16
|
+
chunkDates: XDateCell[][];
|
|
16
17
|
locale: XI18nDatePicker;
|
|
17
18
|
private _unSubject;
|
|
19
|
+
get rangeStart(): number | "" | null;
|
|
20
|
+
get rangeEnd(): number | "" | null;
|
|
18
21
|
constructor(renderer: Renderer2, datePipe: DatePipe, lowerCasePipe: LowerCasePipe, cdr: ChangeDetectorRef, configService: XConfigService, i18n: XI18nService);
|
|
19
22
|
ngOnInit(): void;
|
|
20
23
|
ngOnChanges(simples: SimpleChanges): void;
|
|
21
24
|
init(): void;
|
|
25
|
+
isStartMonth(date: Date): boolean | undefined;
|
|
26
|
+
isEndMonth(date: Date): boolean | undefined;
|
|
27
|
+
setDatesState(cell: XDateCell): void;
|
|
28
|
+
onTdMouseenter(cell: XDateCell, isEmit?: boolean): void;
|
|
29
|
+
onTdMouseleave(cell: XDateCell, isEmit?: boolean): void;
|
|
30
|
+
clearState(...cells: XDateCell[]): void;
|
|
22
31
|
setMonths(date: Date): void;
|
|
23
|
-
|
|
32
|
+
setDayState(cell: XDateCell): XDateCell;
|
|
33
|
+
monthClick(cell: XDateCell): void;
|
|
24
34
|
getLocaleMonth(date: Date): any;
|
|
35
|
+
rangeDisabled(date: Date): boolean;
|
|
25
36
|
setDisplay(date: Date): void;
|
|
26
37
|
nextYear(num: number): void;
|
|
27
38
|
typeOnChange(type: XDatePickerType): void;
|
|
28
|
-
trackByMonth(_index: number, item: Date): Date;
|
|
39
|
+
trackByMonth(_index: number, item: string | Date | XDateCell): string | Date | XDateCell;
|
|
29
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<XPickerMonthComponent, never>;
|
|
30
41
|
static ɵcmp: i0.ɵɵComponentDeclaration<XPickerMonthComponent, "x-picker-month", never, {}, {}, never, never, false, never>;
|
|
31
42
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef, Renderer2, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { XConfigService } from '@ng-nest/ui/core';
|
|
3
|
-
import { XPickerYearProperty } from './date-picker.property';
|
|
3
|
+
import { XDateCell, XPickerYearProperty } from './date-picker.property';
|
|
4
4
|
import { DatePipe } from '@angular/common';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class XPickerYearComponent extends XPickerYearProperty implements OnChanges {
|
|
@@ -9,19 +9,29 @@ export declare class XPickerYearComponent extends XPickerYearProperty implements
|
|
|
9
9
|
datePipe: DatePipe;
|
|
10
10
|
configService: XConfigService;
|
|
11
11
|
now: Date;
|
|
12
|
-
dates:
|
|
12
|
+
dates: XDateCell[];
|
|
13
|
+
chunkDates: XDateCell[][];
|
|
13
14
|
start: number;
|
|
14
15
|
end: number;
|
|
16
|
+
get rangeStart(): number | "" | null;
|
|
17
|
+
get rangeEnd(): number | "" | null;
|
|
15
18
|
constructor(renderer: Renderer2, cdr: ChangeDetectorRef, datePipe: DatePipe, configService: XConfigService);
|
|
16
19
|
ngOnChanges(simples: SimpleChanges): void;
|
|
17
20
|
init(): void;
|
|
21
|
+
isStartYear(date: Date): boolean | undefined;
|
|
22
|
+
isEndYear(date: Date): boolean | undefined;
|
|
23
|
+
setDatesState(cell: XDateCell): void;
|
|
24
|
+
onTdMouseenter(cell: XDateCell, isEmit?: boolean): void;
|
|
25
|
+
onTdMouseleave(cell: XDateCell, isEmit?: boolean): void;
|
|
26
|
+
clearState(...cells: XDateCell[]): void;
|
|
18
27
|
setYears(date: Date): void;
|
|
19
|
-
|
|
28
|
+
setDayState(cell: XDateCell): XDateCell;
|
|
29
|
+
yearClick(cell: XDateCell): void;
|
|
20
30
|
lastOrNext(year: Date): boolean;
|
|
31
|
+
rangeDisabled(date: Date): boolean;
|
|
21
32
|
setDisplay(date: Date): void;
|
|
22
33
|
nextYears(num: number): void;
|
|
23
|
-
|
|
24
|
-
trackByYear(_index: number, item: Date): Date;
|
|
34
|
+
trackByYear(_index: number, item: string | Date | XDateCell): string | Date | XDateCell;
|
|
25
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<XPickerYearComponent, never>;
|
|
26
36
|
static ɵcmp: i0.ɵɵComponentDeclaration<XPickerYearComponent, "x-picker-year", never, {}, {}, never, never, false, never>;
|
|
27
37
|
}
|
|
@@ -129,4 +129,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImpor
|
|
|
129
129
|
}], activeChange: [{
|
|
130
130
|
type: Output
|
|
131
131
|
}] } });
|
|
132
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
132
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFzZS1mb3JtLnByb3BlcnR5LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGliL25nLW5lc3QvdWkvYmFzZS1mb3JtL2Jhc2UtZm9ybS5wcm9wZXJ0eS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBZSxNQUFNLGVBQWUsQ0FBQztBQUNwRixPQUFPLEVBQWdDLGFBQWEsRUFBWSxTQUFTLEVBQW9CLE1BQU0sa0JBQWtCLENBQUM7O0FBRXRIOztHQUVHO0FBRUgsTUFBTSxPQUFPLFNBQVUsU0FBUSxTQUFTO0lBRHhDOztRQUVFOztXQUVHO1FBQ00sVUFBSyxHQUFZLEVBQUUsQ0FBQztRQUM3Qjs7V0FFRztRQUNNLGVBQVUsR0FBWSxFQUFFLENBQUM7UUFDbEM7O1dBRUc7UUFDTSxlQUFVLEdBQVksT0FBTyxDQUFDO1FBQ3ZDOztXQUVHO1FBQ00sWUFBTyxHQUFjLE9BQU8sQ0FBQztRQUN0Qzs7V0FFRztRQUNNLFVBQUssR0FBWSxPQUFPLENBQUM7UUFDbEM7O1dBRUc7UUFDTSxjQUFTLEdBQWdCLFFBQVEsQ0FBQztRQUMzQzs7V0FFRztRQUNNLFNBQUksR0FBVyxRQUFRLENBQUM7UUFDakM7O1dBRUc7UUFDTSxnQkFBVyxHQUF1QixFQUFFLENBQUM7UUFDOUM7O1dBRUc7UUFDdUIsYUFBUSxHQUFhLEtBQUssQ0FBQztRQUNyRDs7V0FFRztRQUN1QixhQUFRLEdBQWEsS0FBSyxDQUFDO1FBQ3JEOztXQUVHO1FBQ3VCLGFBQVEsR0FBYSxLQUFLLENBQUM7UUE2QnJEOztXQUVHO1FBQ3VCLFdBQU0sR0FBYSxLQUFLLENBQUM7UUFDbkQ7O1dBRUc7UUFDdUIsWUFBTyxHQUFhLEtBQUssQ0FBQztRQUtwRDs7V0FFRztRQUNPLGlCQUFZLEdBQUcsSUFBSSxZQUFZLEVBQVksQ0FBQztLQUN2RDs7eUhBekZZLFNBQVM7NkdBQVQsU0FBUywwakJBREMsRUFBRTtBQXFDRztJQUFoQixhQUFhLEVBQUU7MkNBQTRCO0FBSTNCO0lBQWhCLGFBQWEsRUFBRTsyQ0FBNEI7QUFJM0I7SUFBaEIsYUFBYSxFQUFFOzJDQUE0QjtBQWdDM0I7SUFBaEIsYUFBYSxFQUFFO3lDQUEwQjtBQUl6QjtJQUFoQixhQUFhLEVBQUU7MENBQTJCOzJGQWhGekMsU0FBUztrQkFEckIsU0FBUzttQkFBQyxFQUFFLFFBQVEsRUFBRSxFQUFFLEVBQUU7OEJBS2hCLEtBQUs7c0JBQWIsS0FBSztnQkFJRyxVQUFVO3NCQUFsQixLQUFLO2dCQUlHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBSUcsT0FBTztzQkFBZixLQUFLO2dCQUlHLEtBQUs7c0JBQWIsS0FBSztnQkFJRyxTQUFTO3NCQUFqQixLQUFLO2dCQUlHLElBQUk7c0JBQVosS0FBSztnQkFJRyxXQUFXO3NCQUFuQixLQUFLO2dCQUlvQixRQUFRO3NCQUFqQyxLQUFLO2dCQUlvQixRQUFRO3NCQUFqQyxLQUFLO2dCQUlvQixRQUFRO3NCQUFqQyxLQUFLO2dCQUtHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBS0csZUFBZTtzQkFBdkIsS0FBSztnQkFLRyxNQUFNO3NCQUFkLEtBQUs7Z0JBS0csS0FBSztzQkFBYixLQUFLO2dCQUlHLE9BQU87c0JBQWYsS0FBSztnQkFJRyxPQUFPO3NCQUFmLEtBQUs7Z0JBSW9CLE1BQU07c0JBQS9CLEtBQUs7Z0JBSW9CLE9BQU87c0JBQWhDLEtBQUs7Z0JBSUcsY0FBYztzQkFBdEIsS0FBSztnQkFJSSxZQUFZO3NCQUFyQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPdXRwdXQsIFRlbXBsYXRlUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFhBbGlnbiwgWEJvb2xlYW4sIFhEaXJlY3Rpb24sIFhJbnB1dEJvb2xlYW4sIFhKdXN0aWZ5LCBYUHJvcGVydHksIFhTaXplLCBYVGVtcGxhdGUgfSBmcm9tICdAbmctbmVzdC91aS9jb3JlJztcclxuXHJcbi8qKlxyXG4gKiDooajljZXlr7nosaHlhbHmnInnmoTlj4LmlbBcclxuICovXHJcbkBDb21wb25lbnQoeyB0ZW1wbGF0ZTogJycgfSlcclxuZXhwb3J0IGNsYXNzIFhGb3JtUHJvcCBleHRlbmRzIFhQcm9wZXJ0eSB7XHJcbiAgLyoqXHJcbiAgICog5qCH562+XHJcbiAgICovXHJcbiAgQElucHV0KCkgbGFiZWw/OiBzdHJpbmcgPSAnJztcclxuICAvKipcclxuICAgKiDmoIfnrb7lrr3luqZcclxuICAgKi9cclxuICBASW5wdXQoKSBsYWJlbFdpZHRoPzogc3RyaW5nID0gJyc7XHJcbiAgLyoqXHJcbiAgICog5qCH562+5paH5a2X5a+56b2Q5pa55byPXHJcbiAgICovXHJcbiAgQElucHV0KCkgbGFiZWxBbGlnbj86IFhBbGlnbiA9ICdzdGFydCc7XHJcbiAgLyoqXHJcbiAgICogZmxleCDluIPlsYDkuIvnmoTlrZDlhYPntKDmsLTlubPmjpLliJfmlrnlvI9cclxuICAgKi9cclxuICBASW5wdXQoKSBqdXN0aWZ5PzogWEp1c3RpZnkgPSAnc3RhcnQnO1xyXG4gIC8qKlxyXG4gICAqIGZsZXgg5biD5bGA5LiL55qE5a2Q5YWD57Sg5Z6C55u05o6S5YiX5pa55byPXHJcbiAgICovXHJcbiAgQElucHV0KCkgYWxpZ24/OiBYQWxpZ24gPSAnc3RhcnQnO1xyXG4gIC8qKlxyXG4gICAqIGZsZXgg5biD5bGA5LiL55qE5a2Q5YWD57Sg5o6S5YiX5pa55ZCRXHJcbiAgICovXHJcbiAgQElucHV0KCkgZGlyZWN0aW9uPzogWERpcmVjdGlvbiA9ICdjb2x1bW4nO1xyXG4gIC8qKlxyXG4gICAqIOWwuuWvuFxyXG4gICAqL1xyXG4gIEBJbnB1dCgpIHNpemU/OiBYU2l6ZSA9ICdtZWRpdW0nO1xyXG4gIC8qKlxyXG4gICAqIOi+k+WFpeaPkOekuuS/oeaBr1xyXG4gICAqL1xyXG4gIEBJbnB1dCgpIHBsYWNlaG9sZGVyPzogc3RyaW5nIHwgc3RyaW5nW10gPSAnJztcclxuICAvKipcclxuICAgKiDnpoHnlKhcclxuICAgKi9cclxuICBASW5wdXQoKSBAWElucHV0Qm9vbGVhbigpIGRpc2FibGVkOiBYQm9vbGVhbiA9IGZhbHNlO1xyXG4gIC8qKlxyXG4gICAqIOW/heWhq1xyXG4gICAqL1xyXG4gIEBJbnB1dCgpIEBYSW5wdXRCb29sZWFuKCkgcmVxdWlyZWQ6IFhCb29sZWFuID0gZmFsc2U7XHJcbiAgLyoqXHJcbiAgICog5Y+q6K+7XHJcbiAgICovXHJcbiAgQElucHV0KCkgQFhJbnB1dEJvb2xlYW4oKSByZWFkb25seTogWEJvb2xlYW4gPSBmYWxzZTtcclxuICAvKipcclxuICAgKiBAemhfQ04g5YC85qih5p2/XHJcbiAgICogQGVuX1VTIE5vZGUgdGVtcGxhdGVcclxuICAgKi9cclxuICBASW5wdXQoKSB2YWx1ZVRwbD86IFRlbXBsYXRlUmVmPGFueT47XHJcbiAgLyoqXHJcbiAgICogQHpoX0NOIOWAvOaooeadv+WPguaVsFxyXG4gICAqIEBlbl9VUyBOb2RlIHRlbXBsYXRlXHJcbiAgICovXHJcbiAgQElucHV0KCkgdmFsdWVUcGxDb250ZXh0OiBhbnk7XHJcbiAgLyoqXHJcbiAgICogQHpoX0NOIOWJjee9ruagh+etvlxyXG4gICAqIEBlbl9VUyBCZWZvcmUgbGFiZWxcclxuICAgKi9cclxuICBASW5wdXQoKSBiZWZvcmUhOiBYVGVtcGxhdGU7XHJcbiAgLyoqXHJcbiAgICogQHpoX0NOIOWQjue9ruagh+etvlxyXG4gICAqIEBlbl9VUyBBZnRlciBsYWJlbFxyXG4gICAqL1xyXG4gIEBJbnB1dCgpIGFmdGVyITogWFRlbXBsYXRlO1xyXG4gIC8qKlxyXG4gICAqIOato+WImemqjOivgeinhOWImVxyXG4gICAqL1xyXG4gIEBJbnB1dCgpIHBhdHRlcm4/OiBhbnk7XHJcbiAgLyoqXHJcbiAgICog6aqM6K+B5LiN6YCa6L+H5o+Q56S65paH5a2XXHJcbiAgICovXHJcbiAgQElucHV0KCkgbWVzc2FnZT86IHN0cmluZyB8IHN0cmluZ1tdO1xyXG4gIC8qKlxyXG4gICAqIOa/gOa0u+eKtuaAgVxyXG4gICAqL1xyXG4gIEBJbnB1dCgpIEBYSW5wdXRCb29sZWFuKCkgYWN0aXZlOiBYQm9vbGVhbiA9IGZhbHNlO1xyXG4gIC8qKlxyXG4gICAqIOi+k+WFpeahhueCueWHu+agt+W8j1xyXG4gICAqL1xyXG4gIEBJbnB1dCgpIEBYSW5wdXRCb29sZWFuKCkgcG9pbnRlcjogWEJvb2xlYW4gPSBmYWxzZTtcclxuICAvKipcclxuICAgKiDovpPlhaXpqozor4Hlh73mlbBcclxuICAgKi9cclxuICBASW5wdXQoKSBpbnB1dFZhbGlkYXRvciE6ICh2YWx1ZTogYW55KSA9PiBib29sZWFuO1xyXG4gIC8qKlxyXG4gICAqIOa/gOa0u+eKtuaAgVxyXG4gICAqL1xyXG4gIEBPdXRwdXQoKSBhY3RpdmVDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPFhCb29sZWFuPigpO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFhGb3JtT3B0aW9uIHtcclxuICAvKipcclxuICAgKiDmoIfnrb5cclxuICAgKi9cclxuICBsYWJlbD86IGFueTtcclxuICAvKipcclxuICAgKiDmoIfnrb7lrr3luqZcclxuICAgKi9cclxuICBsYWJlbFdpZHRoPzogc3RyaW5nO1xyXG4gIC8qKlxyXG4gICAqIOagh+etvuaWh+Wtl+Wvuem9kOaWueW8j1xyXG4gICAqL1xyXG4gIGxhYmVsQWxpZ24/OiBYQWxpZ247XHJcbiAgLyoqXHJcbiAgICogZmxleCDluIPlsYDkuIvnmoTlrZDlhYPntKDmsLTlubPmjpLliJfmlrnlvI9cclxuICAgKi9cclxuICBqdXN0aWZ5PzogWEp1c3RpZnk7XHJcbiAgLyoqXHJcbiAgICogZmxleCDluIPlsYDkuIvnmoTlrZDlhYPntKDlnoLnm7TmjpLliJfmlrnlvI9cclxuICAgKi9cclxuICBhbGlnbj86IFhBbGlnbjtcclxuICAvKipcclxuICAgKiBmbGV4IOW4g+WxgOS4i+eahOWtkOWFg+e0oOaOkuWIl+aWueWQkVxyXG4gICAqL1xyXG4gIGRpcmVjdGlvbj86IFhEaXJlY3Rpb247XHJcbiAgLyoqXHJcbiAgICog5bC65a+4XHJcbiAgICovXHJcbiAgc2l6ZT86IFhTaXplO1xyXG4gIC8qKlxyXG4gICAqIOi+k+WFpeaPkOekuuS/oeaBr1xyXG4gICAqL1xyXG4gIHBsYWNlaG9sZGVyPzogc3RyaW5nIHwgc3RyaW5nW107XHJcbiAgLyoqXHJcbiAgICog56aB55SoXHJcbiAgICovXHJcbiAgZGlzYWJsZWQ/OiBYQm9vbGVhbjtcclxuICAvKipcclxuICAgKiDlv4XloatcclxuICAgKi9cclxuICByZXF1aXJlZD86IFhCb29sZWFuO1xyXG4gIC8qKlxyXG4gICAqIOato+WImemqjOivgeinhOWImVxyXG4gICAqL1xyXG4gIHBhdHRlcm4/OiBSZWdFeHAgfCBSZWdFeHBbXTtcclxuICAvKipcclxuICAgKiDpqozor4HkuI3pgJrov4fmj5DnpLrmloflrZdcclxuICAgKi9cclxuICBtZXNzYWdlPzogc3RyaW5nIHwgc3RyaW5nW107XHJcbiAgLyoqXHJcbiAgICog5r+A5rS754q25oCBXHJcbiAgICovXHJcbiAgYWN0aXZlPzogWEJvb2xlYW47XHJcbiAgLyoqXHJcbiAgICog6L6T5YWl5qGG54K55Ye75qC35byPXHJcbiAgICovXHJcbiAgcG9pbnRlcj86IFhCb29sZWFuO1xyXG4gIC8qKlxyXG4gICAqIOi+k+WFpemqjOivgeWHveaVsFxyXG4gICAqL1xyXG4gIGlucHV0VmFsaWRhdG9yPzogKHZhbHVlOiBhbnkpID0+IGJvb2xlYW47XHJcbn1cclxuIl19
|