devexpress-reporting-angular 23.2.5 → 24.1.1-alpha-2485-0223
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/dx-report-viewer/components/reporting/templates.component.d.ts +2 -2
- package/dx-report-viewer/dx-report-parameters-panel.component.d.ts +16 -0
- package/dx-report-viewer/dx-report-viewer-base.component.d.ts +36 -0
- package/dx-report-viewer/dx-report-viewer.component.d.ts +7 -25
- package/dx-report-viewer/dx-report-viewer.module.d.ts +6 -3
- package/dx-report-viewer/dxrpp-callbacks.d.ts +6 -0
- package/dx-report-viewer/dxrpp-request-options.d.ts +6 -0
- package/dx-report-viewer/dxrv-callbacks-base.d.ts +16 -0
- package/dx-report-viewer/dxrv-callbacks.d.ts +3 -11
- package/dx-report-viewer/dxrv-request-options-base.d.ts +8 -0
- package/dx-report-viewer/dxrv-request-options.d.ts +3 -5
- package/dx-report-viewer/index.d.ts +3 -0
- package/esm2020/dx-report-viewer/components/analytics/properties/popover/popover.component.mjs +1 -1
- package/esm2020/dx-report-viewer/components/reporting/editing/export/export-tool.component.mjs +1 -1
- package/esm2020/dx-report-viewer/components/reporting/editing/popup-image-field/popup-image-editing-field.component.mjs +1 -1
- package/esm2020/dx-report-viewer/components/reporting/mobile/actions/mobile.actions.export.component.mjs +1 -1
- package/esm2020/dx-report-viewer/components/reporting/mobile/parameters/mobile.parameters.popup.component.mjs +1 -1
- package/esm2020/dx-report-viewer/components/reporting/parameterspanel/date-range/calendar/calendar.component.mjs +3 -3
- package/esm2020/dx-report-viewer/components/reporting/parameterspanel/date-range/date-range.component.mjs +4 -1
- package/esm2020/dx-report-viewer/components/reporting/parameterspanel/date-range/popup-container/popup-container.component.mjs +1 -1
- package/esm2020/dx-report-viewer/components/reporting/parameterspanel/multi-value/multi-value.component.mjs +3 -3
- package/esm2020/dx-report-viewer/components/reporting/parameterspanel/parameterspanel.component.mjs +3 -3
- package/esm2020/dx-report-viewer/components/reporting/templates.component.mjs +1 -1
- package/esm2020/dx-report-viewer/components/reporting/widgets/picture-editor/picture-editing-brush-options.component.mjs +3 -3
- package/esm2020/dx-report-viewer/components/reporting/widgets/picture-editor/picture-editor-toolbar-popup.component.mjs +1 -1
- package/esm2020/dx-report-viewer/components/reporting/widgets/picture-editor/picture-editor.component.mjs +1 -1
- package/esm2020/dx-report-viewer/dx-report-parameters-panel.component.mjs +39 -0
- package/esm2020/dx-report-viewer/dx-report-viewer-base.component.mjs +92 -0
- package/esm2020/dx-report-viewer/dx-report-viewer.component.mjs +10 -72
- package/esm2020/dx-report-viewer/dx-report-viewer.module.mjs +20 -5
- package/esm2020/dx-report-viewer/dxrpp-callbacks.mjs +15 -0
- package/esm2020/dx-report-viewer/dxrpp-request-options.mjs +15 -0
- package/esm2020/dx-report-viewer/dxrv-callbacks-base.mjs +42 -0
- package/esm2020/dx-report-viewer/dxrv-callbacks.mjs +6 -31
- package/esm2020/dx-report-viewer/dxrv-request-options-base.mjs +22 -0
- package/esm2020/dx-report-viewer/dxrv-request-options.mjs +7 -15
- package/esm2020/dx-report-viewer/index.mjs +4 -1
- package/esm2020/index.mjs +2 -2
- package/fesm2015/devexpress-reporting-angular-dx-report-viewer.mjs +237 -135
- package/fesm2015/devexpress-reporting-angular-dx-report-viewer.mjs.map +1 -1
- package/fesm2015/devexpress-reporting-angular.mjs +1 -1
- package/fesm2015/devexpress-reporting-angular.mjs.map +1 -1
- package/fesm2020/devexpress-reporting-angular-dx-report-viewer.mjs +237 -123
- package/fesm2020/devexpress-reporting-angular-dx-report-viewer.mjs.map +1 -1
- package/fesm2020/devexpress-reporting-angular.mjs +1 -1
- package/fesm2020/devexpress-reporting-angular.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +3 -3
@@ -3,7 +3,7 @@ import { ISelectBoxActionViewModel } from '@devexpress/analytics-core/widgets/ut
|
|
3
3
|
import { TemplateEngine } from '../../utils/templateEngine';
|
4
4
|
import { IObjectPropertiesViewModel } from '@devexpress/analytics-core/property-grid/propertygrid';
|
5
5
|
import { ReportPreview } from 'devexpress-reporting/viewer/reportPreview';
|
6
|
-
import {
|
6
|
+
import { IParametersPanelViewModel } from 'devexpress-reporting/viewer/parameters/previewParametersViewModel.viewmodel';
|
7
7
|
import { IExportActionViewModel } from 'devexpress-reporting/viewer/exportOptions/exportOptionsModel';
|
8
8
|
import { IEditorViewModel } from '@devexpress/analytics-core/property-grid/widgets/editor';
|
9
9
|
import { IMultiValueEditorViewModel } from 'devexpress-reporting/viewer/widgets/_multiValueEditor';
|
@@ -50,7 +50,7 @@ export declare class ViewerTemplatesComponent implements AfterViewInit {
|
|
50
50
|
data: ISelectBoxActionViewModel;
|
51
51
|
}>;
|
52
52
|
parameters: TemplateRef<{
|
53
|
-
data:
|
53
|
+
data: IParametersPanelViewModel;
|
54
54
|
}>;
|
55
55
|
editor: TemplateRef<{
|
56
56
|
data: IEditorViewModel;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { IReportViewerOptions } from 'devexpress-reporting/viewer/binding/jsReportViewerBindingBase';
|
2
|
+
import { JSReportViewerBase } from 'devexpress-reporting/viewer/binding/jsReportViewerBase';
|
3
|
+
import { JSReportParametersPanelBinding } from 'devexpress-reporting/viewer/binding/jsReportParametersPanelBinding';
|
4
|
+
import { DxReportViewerBaseComponent } from './dx-report-viewer-base.component';
|
5
|
+
import { DxReportParametersPanelCallbacksComponent } from './dxrpp-callbacks';
|
6
|
+
import { DxReportParametersPanelRequestOptionsComponent } from './dxrpp-request-options';
|
7
|
+
import * as i0 from "@angular/core";
|
8
|
+
export declare class DxReportParametersPanelComponent extends DxReportViewerBaseComponent<JSReportParametersPanelBinding> {
|
9
|
+
requestOptionsComponent: DxReportParametersPanelRequestOptionsComponent;
|
10
|
+
callbacksComponent: DxReportParametersPanelCallbacksComponent;
|
11
|
+
getKoBinding(options: IReportViewerOptions<JSReportViewerBase>): JSReportParametersPanelBinding;
|
12
|
+
getCallbacks(): DxReportParametersPanelCallbacksComponent;
|
13
|
+
getControlOptions(): IReportViewerOptions;
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportParametersPanelComponent, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportParametersPanelComponent, "dx-report-parameters-panel", never, {}, {}, ["requestOptionsComponent", "callbacksComponent"], never, false, never>;
|
16
|
+
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, Renderer2 } from '@angular/core';
|
2
|
+
import { DxReportingComponent } from 'devexpress-reporting-angular/core';
|
3
|
+
import '@devexpress/analytics-core/dx-analytics-core-svg-templates';
|
4
|
+
import 'devexpress-reporting/dx-reporting-svg-templates';
|
5
|
+
import { AccessibilitySettings } from './utils/accessibility-settings';
|
6
|
+
import { IReportViewerOptions, JSReportViewerBindingBase } from 'devexpress-reporting/viewer/binding/jsReportViewerBindingBase';
|
7
|
+
import { IPreviewDisposableViewModelBase } from 'devexpress-reporting/scopes/reporting-viewer-internal';
|
8
|
+
import { DxReportViewerCallbacksBaseComponent } from './dxrv-callbacks-base';
|
9
|
+
import * as i0 from "@angular/core";
|
10
|
+
export declare abstract class DxReportViewerBaseComponent<T extends JSReportViewerBindingBase> extends DxReportingComponent {
|
11
|
+
private _viewer;
|
12
|
+
private _cd;
|
13
|
+
private _accessibilitySettings;
|
14
|
+
private _reportUrl;
|
15
|
+
private _disposableCallback;
|
16
|
+
private _disposeViewModelChangedSubscription;
|
17
|
+
viewModel: IPreviewDisposableViewModelBase;
|
18
|
+
model: T['sender'];
|
19
|
+
protected _binding: JSReportViewerBindingBase;
|
20
|
+
bindingSender: T['sender'];
|
21
|
+
constructor(renderer: Renderer2, platformId: Object, _viewer: ElementRef, _cd: ChangeDetectorRef, _accessibilitySettings: AccessibilitySettings);
|
22
|
+
abstract getCallbacks(): DxReportViewerCallbacksBaseComponent;
|
23
|
+
abstract getKoBinding(options: IReportViewerOptions): JSReportViewerBindingBase;
|
24
|
+
getControlOptions(): IReportViewerOptions;
|
25
|
+
ngAfterViewInit(): void;
|
26
|
+
ngOnDestroy(): void;
|
27
|
+
private _subscribeToViewModelChanged;
|
28
|
+
get accessibilityCompliant(): boolean;
|
29
|
+
set accessibilityCompliant(value: boolean);
|
30
|
+
keepReportOnComponentDisposal: boolean;
|
31
|
+
rtl: boolean;
|
32
|
+
get reportUrl(): string;
|
33
|
+
set reportUrl(reportUrl: string);
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerBaseComponent<any>, never>;
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerBaseComponent<any>, "ng-component", never, { "accessibilityCompliant": "accessibilityCompliant"; "keepReportOnComponentDisposal": "keepReportOnComponentDisposal"; "rtl": "rtl"; "reportUrl": "reportUrl"; }, {}, never, never, false, never>;
|
36
|
+
}
|
@@ -1,5 +1,4 @@
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, Renderer2 } from '@angular/core';
|
2
|
-
import { DxReportingComponent } from 'devexpress-reporting-angular/core';
|
3
2
|
import { DxReportViewerCallbacksComponent } from './dxrv-callbacks';
|
4
3
|
import { DxReportViewerRequestOptionsComponent } from './dxrv-request-options';
|
5
4
|
import { DxReportViewerExportSettingsComponent } from './dxrv-export-settings.component';
|
@@ -10,22 +9,14 @@ import { DxReportViewerTabPanelSettingsComponent } from './dxrv-tabpanel-setting
|
|
10
9
|
import { DxReportViewerSearchSettingsComponent } from './dxrv-search-settings.component';
|
11
10
|
import '@devexpress/analytics-core/dx-analytics-core-svg-templates';
|
12
11
|
import 'devexpress-reporting/dx-reporting-svg-templates';
|
13
|
-
import {
|
12
|
+
import { JSReportViewerBinding } from 'devexpress-reporting/viewer/binding/jsReportViewerBinding';
|
14
13
|
import { IPreviewViewModel, PreviewDisposableModel } from 'devexpress-reporting/viewer/internal/_previewModel';
|
15
|
-
import { JSReportViewer } from 'devexpress-reporting/viewer/binding/jsReportViewer';
|
16
14
|
import { AccessibilitySettings } from './utils/accessibility-settings';
|
15
|
+
import { IReportViewerOptions, JSReportViewerBindingBase } from 'devexpress-reporting/viewer/binding/jsReportViewerBindingBase';
|
16
|
+
import { DxReportViewerBaseComponent } from './dx-report-viewer-base.component';
|
17
17
|
import * as i0 from "@angular/core";
|
18
|
-
export declare class DxReportViewerComponent extends
|
19
|
-
private _viewer;
|
20
|
-
private _cd;
|
21
|
-
private _accessibilitySettings;
|
22
|
-
private _reportUrl;
|
23
|
-
private _disposableCallback;
|
24
|
-
private _disposeViewModelChangedSubscription;
|
18
|
+
export declare class DxReportViewerComponent extends DxReportViewerBaseComponent<JSReportViewerBinding> {
|
25
19
|
viewModel: IPreviewViewModel;
|
26
|
-
model: JSReportViewer;
|
27
|
-
protected _binding: JSReportViewerBinding;
|
28
|
-
bindingSender: JSReportViewer;
|
29
20
|
requestOptionsComponent: DxReportViewerRequestOptionsComponent;
|
30
21
|
callbacksComponent: DxReportViewerCallbacksComponent;
|
31
22
|
mobileModeSettingsComponent: DxReportViewerMobileModeSettingsComponent;
|
@@ -34,21 +25,12 @@ export declare class DxReportViewerComponent extends DxReportingComponent {
|
|
34
25
|
progressBarSettingsComponent: DxReportViewerProgressBarSettingsComponent;
|
35
26
|
exportSettingsComponent: DxReportViewerExportSettingsComponent;
|
36
27
|
searchSettingsComponent: DxReportViewerSearchSettingsComponent;
|
37
|
-
constructor(renderer: Renderer2, platformId: Object,
|
38
|
-
getKoBinding(options: IReportViewerOptions):
|
28
|
+
constructor(renderer: Renderer2, platformId: Object, viewer: ElementRef, cd: ChangeDetectorRef, accessibilitySettings: AccessibilitySettings);
|
29
|
+
getKoBinding(options: IReportViewerOptions): JSReportViewerBindingBase;
|
39
30
|
getCallbacks(): DxReportViewerCallbacksComponent;
|
40
31
|
getControlOptions(): IReportViewerOptions;
|
41
32
|
GetPreviewModel(): PreviewDisposableModel;
|
42
|
-
ngAfterViewInit(): void;
|
43
|
-
ngOnDestroy(): void;
|
44
|
-
private _subscribeToViewModelChanged;
|
45
33
|
isMobile: boolean;
|
46
|
-
get accessibilityCompliant(): boolean;
|
47
|
-
set accessibilityCompliant(value: boolean);
|
48
|
-
keepReportOnComponentDisposal: boolean;
|
49
|
-
rtl: boolean;
|
50
|
-
get reportUrl(): string;
|
51
|
-
set reportUrl(reportUrl: string);
|
52
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerComponent, never>;
|
53
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerComponent, "dx-report-viewer", never, { "isMobile": "isMobile";
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerComponent, "dx-report-viewer", never, { "isMobile": "isMobile"; }, {}, ["requestOptionsComponent", "callbacksComponent", "mobileModeSettingsComponent", "remoteSettingsComponent", "tabPanelSettingsComponent", "progressBarSettingsComponent", "exportSettingsComponent", "searchSettingsComponent"], never, false, never>;
|
54
36
|
}
|
@@ -108,10 +108,13 @@ import * as i106 from "./components/reporting/mobile/directives/mobile.autofit.d
|
|
108
108
|
import * as i107 from "./components/reporting/mobile/pages/pages/mobile.pages.component";
|
109
109
|
import * as i108 from "./components/analytics/directives/key-down-actions.directive";
|
110
110
|
import * as i109 from "./components/reporting/reportpreview/breadcrumbs/breadcrumbs.component";
|
111
|
-
import * as i110 from "
|
112
|
-
import * as i111 from "
|
111
|
+
import * as i110 from "./dx-report-parameters-panel.component";
|
112
|
+
import * as i111 from "./dxrpp-callbacks";
|
113
|
+
import * as i112 from "./dxrpp-request-options";
|
114
|
+
import * as i113 from "@angular/common";
|
115
|
+
import * as i114 from "devextreme-angular";
|
113
116
|
export declare class DxReportViewerModule {
|
114
117
|
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerModule, never>;
|
115
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DxReportViewerModule, [typeof i1.DxReportViewerComponent, typeof i2.DxReportViewerCallbacksComponent, typeof i3.DxReportViewerMobileModeSettingsComponent, typeof i4.DxReportViewerRemoteSettingsComponent, typeof i5.DxReportViewerRequestOptionsComponent, typeof i6.DxReportViewerProgressBarSettingsComponent, typeof i7.DxReportViewerExportSettingsComponent, typeof i8.DxReportViewerTabPanelSettingsComponent, typeof i9.DxReportViewerSearchSettingsComponent, typeof i10.TabpanelComponent, typeof i11.PopoverComponent, typeof i12.PropertygridComponent, typeof i13.TreelistComponent, typeof i14.TreeListGroupComponent, typeof i15.TreeListItemComponent, typeof i16.TreeListHeaderItemComponent, typeof i17.TreeListItemTextComponent, typeof i18.TreeListHeaderItemCaptionContentComponent, typeof i19.DateEditorComponent, typeof i20.CollectionEditorComponent, typeof i21.ParameterspanelComponent, typeof i22.TemplatesComponent, typeof i23.ActionsComponent, typeof i24.ImageTemplateComponent, typeof i25.TemplateComponent, typeof i26.PagerComponent, typeof i27.ZoomComponent, typeof i28.EditorComponentBase, typeof i29.ExportComponent, typeof i30.ViewerTemplatesComponent, typeof i31.ToolbarContentComponent, typeof i32.EditorComponent, typeof i33.MultiValueComponent, typeof i34.TextBoxEditorComponent, typeof i35.SelectBoxComponent, typeof i36.BoolSelectComponent, typeof i37.ExportOptionsComponent, typeof i38.ObjectEditorComponent, typeof i39.BooleanEditorComponent, typeof i40.LocalizedSelectBoxComponent, typeof i41.NumericEditorComponent, typeof i42.ColorPickerComponent, typeof i43.DxActionDirective, typeof i44.MultiValueEditableComponent, typeof i45.DesignerComponent, typeof i46.DateRangeComponent, typeof i47.PopupContainerComponent, typeof i48.CalendarComponent, typeof i49.SurfaceComponent, typeof i50.PageComponent, typeof i51.LazyImagesDirective, typeof i52.EditorContentComponent, typeof i53.GroupEditorComponent, typeof i54.SearchComponent, typeof i55.DocumentMapComponent, typeof i56.TextEditingFieldComponent, typeof i57.TextEditingFieldMaskComponent, typeof i58.TextEditingFieldNumberComponent, typeof i59.TextEditingFieldDateBoxComponent, typeof i60.TextEditingFieldContainerComponent, typeof i61.CharacterCombEditingFieldComponent, typeof i62.CheckEditingFieldComponent, typeof i63.RadioEditingFieldComponent, typeof i64.ImageEditingFieldComponent, typeof i65.ImageEditingFieldEditorComponent, typeof i66.PopupImageEditingFieldComponent, typeof i67.ProgressBarComponent, typeof i68.PictureEditorComponent, typeof i69.PictureEditorToolBarPopupComponent, typeof i70.PictureEditorBrushOptionsComponent, typeof i71.PictureEditorSizeOptionsComponent, typeof i72.PictureEditorImagespickerComponent, typeof i73.PictureEditorImagespickerWithFilterComponent, typeof i74.PainterComponent, typeof i75.SignatureEditorComponent, typeof i76.BrickComponent, typeof i77.BrickClickableComponent, typeof i78.ExportToolComponent, typeof i79.AutoFitDirective, typeof i80.ToViewDirective, typeof i81.BrickSelectionDirective, typeof i82.ResizableDirective, typeof i83.ZoomDirective, typeof i84.ChildStyleDirective, typeof i85.SearchHighlightingDirective, typeof i86.AccordionDirective, typeof i87.EllipsisEditorDirective, typeof i88.ButtonWithTemplateDirective, typeof i89.EditingFieldCheckboxGlyphComponent, typeof i90.DxMutationObserverDirective, typeof i91.MobileSearchBarDirective, typeof i92.MobilePaginatorDirective, typeof i93.LazyTemplateComponent, typeof i94.MobileSurfaceComponent, typeof i95.MobileSlideDirective, typeof i96.MobileZoomDirective, typeof i97.MobileGalleryComponent, typeof i98.MobilePageComponent, typeof i99.MobileActionsComponent, typeof i100.MobileParametersPopupComponent, typeof i101.MobileParametersComponent, typeof i102.MobileParametersDateRangeComponent, typeof i103.MobileActionsExportComponent, typeof i104.MobileSearchComponent, typeof i105.DateRangeMobileComponent, typeof i106.MobileAutofitDirective, typeof i107.MobilePaginatorComponent, typeof i108.KeyDownActionsDirective, typeof i109.BreadcrumbsComponent], [typeof
|
118
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DxReportViewerModule, [typeof i1.DxReportViewerComponent, typeof i2.DxReportViewerCallbacksComponent, typeof i3.DxReportViewerMobileModeSettingsComponent, typeof i4.DxReportViewerRemoteSettingsComponent, typeof i5.DxReportViewerRequestOptionsComponent, typeof i6.DxReportViewerProgressBarSettingsComponent, typeof i7.DxReportViewerExportSettingsComponent, typeof i8.DxReportViewerTabPanelSettingsComponent, typeof i9.DxReportViewerSearchSettingsComponent, typeof i10.TabpanelComponent, typeof i11.PopoverComponent, typeof i12.PropertygridComponent, typeof i13.TreelistComponent, typeof i14.TreeListGroupComponent, typeof i15.TreeListItemComponent, typeof i16.TreeListHeaderItemComponent, typeof i17.TreeListItemTextComponent, typeof i18.TreeListHeaderItemCaptionContentComponent, typeof i19.DateEditorComponent, typeof i20.CollectionEditorComponent, typeof i21.ParameterspanelComponent, typeof i22.TemplatesComponent, typeof i23.ActionsComponent, typeof i24.ImageTemplateComponent, typeof i25.TemplateComponent, typeof i26.PagerComponent, typeof i27.ZoomComponent, typeof i28.EditorComponentBase, typeof i29.ExportComponent, typeof i30.ViewerTemplatesComponent, typeof i31.ToolbarContentComponent, typeof i32.EditorComponent, typeof i33.MultiValueComponent, typeof i34.TextBoxEditorComponent, typeof i35.SelectBoxComponent, typeof i36.BoolSelectComponent, typeof i37.ExportOptionsComponent, typeof i38.ObjectEditorComponent, typeof i39.BooleanEditorComponent, typeof i40.LocalizedSelectBoxComponent, typeof i41.NumericEditorComponent, typeof i42.ColorPickerComponent, typeof i43.DxActionDirective, typeof i44.MultiValueEditableComponent, typeof i45.DesignerComponent, typeof i46.DateRangeComponent, typeof i47.PopupContainerComponent, typeof i48.CalendarComponent, typeof i49.SurfaceComponent, typeof i50.PageComponent, typeof i51.LazyImagesDirective, typeof i52.EditorContentComponent, typeof i53.GroupEditorComponent, typeof i54.SearchComponent, typeof i55.DocumentMapComponent, typeof i56.TextEditingFieldComponent, typeof i57.TextEditingFieldMaskComponent, typeof i58.TextEditingFieldNumberComponent, typeof i59.TextEditingFieldDateBoxComponent, typeof i60.TextEditingFieldContainerComponent, typeof i61.CharacterCombEditingFieldComponent, typeof i62.CheckEditingFieldComponent, typeof i63.RadioEditingFieldComponent, typeof i64.ImageEditingFieldComponent, typeof i65.ImageEditingFieldEditorComponent, typeof i66.PopupImageEditingFieldComponent, typeof i67.ProgressBarComponent, typeof i68.PictureEditorComponent, typeof i69.PictureEditorToolBarPopupComponent, typeof i70.PictureEditorBrushOptionsComponent, typeof i71.PictureEditorSizeOptionsComponent, typeof i72.PictureEditorImagespickerComponent, typeof i73.PictureEditorImagespickerWithFilterComponent, typeof i74.PainterComponent, typeof i75.SignatureEditorComponent, typeof i76.BrickComponent, typeof i77.BrickClickableComponent, typeof i78.ExportToolComponent, typeof i79.AutoFitDirective, typeof i80.ToViewDirective, typeof i81.BrickSelectionDirective, typeof i82.ResizableDirective, typeof i83.ZoomDirective, typeof i84.ChildStyleDirective, typeof i85.SearchHighlightingDirective, typeof i86.AccordionDirective, typeof i87.EllipsisEditorDirective, typeof i88.ButtonWithTemplateDirective, typeof i89.EditingFieldCheckboxGlyphComponent, typeof i90.DxMutationObserverDirective, typeof i91.MobileSearchBarDirective, typeof i92.MobilePaginatorDirective, typeof i93.LazyTemplateComponent, typeof i94.MobileSurfaceComponent, typeof i95.MobileSlideDirective, typeof i96.MobileZoomDirective, typeof i97.MobileGalleryComponent, typeof i98.MobilePageComponent, typeof i99.MobileActionsComponent, typeof i100.MobileParametersPopupComponent, typeof i101.MobileParametersComponent, typeof i102.MobileParametersDateRangeComponent, typeof i103.MobileActionsExportComponent, typeof i104.MobileSearchComponent, typeof i105.DateRangeMobileComponent, typeof i106.MobileAutofitDirective, typeof i107.MobilePaginatorComponent, typeof i108.KeyDownActionsDirective, typeof i109.BreadcrumbsComponent, typeof i110.DxReportParametersPanelComponent, typeof i111.DxReportParametersPanelCallbacksComponent, typeof i112.DxReportParametersPanelRequestOptionsComponent], [typeof i113.CommonModule, typeof i114.DxButtonModule, typeof i114.DxLoadIndicatorModule, typeof i114.DxScrollViewModule, typeof i114.DxSelectBoxModule, typeof i114.DxMenuModule, typeof i114.DxTagBoxModule, typeof i114.DxTextBoxModule, typeof i114.DxValidatorModule, typeof i114.DxDateBoxModule, typeof i114.DxCheckBoxModule, typeof i114.DxNumberBoxModule, typeof i114.DxColorBoxModule, typeof i114.DxPopupModule, typeof i114.DxPopoverModule, typeof i114.DxSliderModule, typeof i114.DxCalendarModule, typeof i114.DxListModule, typeof i114.DxGalleryModule], [typeof i1.DxReportViewerComponent, typeof i2.DxReportViewerCallbacksComponent, typeof i3.DxReportViewerMobileModeSettingsComponent, typeof i4.DxReportViewerRemoteSettingsComponent, typeof i5.DxReportViewerRequestOptionsComponent, typeof i6.DxReportViewerProgressBarSettingsComponent, typeof i7.DxReportViewerExportSettingsComponent, typeof i8.DxReportViewerTabPanelSettingsComponent, typeof i9.DxReportViewerSearchSettingsComponent, typeof i110.DxReportParametersPanelComponent, typeof i111.DxReportParametersPanelCallbacksComponent, typeof i112.DxReportParametersPanelRequestOptionsComponent]>;
|
116
119
|
static ɵinj: i0.ɵɵInjectorDeclaration<DxReportViewerModule>;
|
117
120
|
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import { DxReportViewerCallbacksBaseComponent } from './dxrv-callbacks-base';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class DxReportParametersPanelCallbacksComponent extends DxReportViewerCallbacksBaseComponent {
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportParametersPanelCallbacksComponent, never>;
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportParametersPanelCallbacksComponent, "dxrpp-callbacks", never, {}, {}, never, never, false, never>;
|
6
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import { DxRequestOptionsBaseComponent } from './dxrv-request-options-base';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class DxReportParametersPanelRequestOptionsComponent extends DxRequestOptionsBaseComponent {
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportParametersPanelRequestOptionsComponent, never>;
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportParametersPanelRequestOptionsComponent, "dxrpp-request-options", never, {}, {}, never, never, false, never>;
|
6
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare abstract class DxReportViewerCallbacksBaseComponent {
|
4
|
+
[key: string]: EventEmitter<any>;
|
5
|
+
CustomizeParameterEditors: EventEmitter<any>;
|
6
|
+
CustomizeParameterLookUpSource: EventEmitter<any>;
|
7
|
+
ParametersReset: EventEmitter<any>;
|
8
|
+
ParametersSubmitted: EventEmitter<any>;
|
9
|
+
ParametersInitialized: EventEmitter<any>;
|
10
|
+
CustomizeLocalization: EventEmitter<any>;
|
11
|
+
OnInitializing: EventEmitter<any>;
|
12
|
+
BeforeRender: EventEmitter<any>;
|
13
|
+
OnServerError: EventEmitter<any>;
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerCallbacksBaseComponent, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerCallbacksBaseComponent, "ng-component", never, {}, { "CustomizeParameterEditors": "CustomizeParameterEditors"; "CustomizeParameterLookUpSource": "CustomizeParameterLookUpSource"; "ParametersReset": "ParametersReset"; "ParametersSubmitted": "ParametersSubmitted"; "ParametersInitialized": "ParametersInitialized"; "CustomizeLocalization": "CustomizeLocalization"; "OnInitializing": "OnInitializing"; "BeforeRender": "BeforeRender"; "OnServerError": "OnServerError"; }, never, never, false, never>;
|
16
|
+
}
|
@@ -1,23 +1,15 @@
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
2
|
+
import { DxReportViewerCallbacksBaseComponent } from './dxrv-callbacks-base';
|
2
3
|
import * as i0 from "@angular/core";
|
3
|
-
export declare class DxReportViewerCallbacksComponent {
|
4
|
+
export declare class DxReportViewerCallbacksComponent extends DxReportViewerCallbacksBaseComponent {
|
4
5
|
[key: string]: EventEmitter<any>;
|
5
6
|
CustomizeElements: EventEmitter<any>;
|
6
7
|
PreviewClick: EventEmitter<any>;
|
7
8
|
EditingFieldChanged: EventEmitter<any>;
|
8
9
|
DocumentReady: EventEmitter<any>;
|
9
10
|
CustomizeExportOptions: EventEmitter<any>;
|
10
|
-
CustomizeParameterEditors: EventEmitter<any>;
|
11
|
-
CustomizeParameterLookUpSource: EventEmitter<any>;
|
12
|
-
ParametersReset: EventEmitter<any>;
|
13
|
-
ParametersSubmitted: EventEmitter<any>;
|
14
|
-
ParametersInitialized: EventEmitter<any>;
|
15
11
|
CustomizeMenuActions: EventEmitter<any>;
|
16
|
-
CustomizeLocalization: EventEmitter<any>;
|
17
|
-
OnInitializing: EventEmitter<any>;
|
18
|
-
BeforeRender: EventEmitter<any>;
|
19
|
-
OnServerError: EventEmitter<any>;
|
20
12
|
OnExport: EventEmitter<any>;
|
21
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerCallbacksComponent, never>;
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerCallbacksComponent, "dxrv-callbacks", never, {}, { "CustomizeElements": "CustomizeElements"; "PreviewClick": "PreviewClick"; "EditingFieldChanged": "EditingFieldChanged"; "DocumentReady": "DocumentReady"; "CustomizeExportOptions": "CustomizeExportOptions"; "
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerCallbacksComponent, "dxrv-callbacks", never, {}, { "CustomizeElements": "CustomizeElements"; "PreviewClick": "PreviewClick"; "EditingFieldChanged": "EditingFieldChanged"; "DocumentReady": "DocumentReady"; "CustomizeExportOptions": "CustomizeExportOptions"; "CustomizeMenuActions": "CustomizeMenuActions"; "OnExport": "OnExport"; }, never, never, false, never>;
|
23
15
|
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class DxRequestOptionsBaseComponent {
|
3
|
+
invokeAction: string;
|
4
|
+
getLocalizationAction?: string;
|
5
|
+
host: string;
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxRequestOptionsBaseComponent, never>;
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxRequestOptionsBaseComponent, "ng-component", never, { "invokeAction": "invokeAction"; "getLocalizationAction": "getLocalizationAction"; "host": "host"; }, {}, never, never, false, never>;
|
8
|
+
}
|
@@ -1,8 +1,6 @@
|
|
1
|
+
import { DxRequestOptionsBaseComponent } from './dxrv-request-options-base';
|
1
2
|
import * as i0 from "@angular/core";
|
2
|
-
export declare class DxReportViewerRequestOptionsComponent {
|
3
|
-
invokeAction: string;
|
4
|
-
getLocalizationAction?: string;
|
5
|
-
host: string;
|
3
|
+
export declare class DxReportViewerRequestOptionsComponent extends DxRequestOptionsBaseComponent {
|
6
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<DxReportViewerRequestOptionsComponent, never>;
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerRequestOptionsComponent, "dxrv-request-options", never, {
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxReportViewerRequestOptionsComponent, "dxrv-request-options", never, {}, {}, never, never, false, never>;
|
8
6
|
}
|
@@ -1,4 +1,7 @@
|
|
1
1
|
export * from './dx-report-viewer.module';
|
2
|
+
export * from './dx-report-parameters-panel.component';
|
3
|
+
export * from './dxrpp-callbacks';
|
4
|
+
export * from './dxrpp-request-options';
|
2
5
|
export * from './dxrv-callbacks';
|
3
6
|
export * from './dxrv-mobile-mode-settings.component';
|
4
7
|
export * from './dxrv-progressbar-settings.component';
|
package/esm2020/dx-report-viewer/components/analytics/properties/popover/popover.component.mjs
CHANGED
@@ -13,7 +13,7 @@ export class PopoverComponent {
|
|
13
13
|
}
|
14
14
|
}
|
15
15
|
PopoverComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PopoverComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
16
|
-
PopoverComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PopoverComponent, selector: "dxa-propertygrid-popoverservice", inputs: { popover: ["data", "popover"] }, ngImport: i0, template: "<dx-popover\n [container]=\"container\"\n [target]=\"popover.target\"\n position=\"bottom\"\n [showCloseButton]=\"false\"\n (onHiding)=\"popover.onHiding()\"\n [hideOnOutsideClick]=\"true\"\n [hideOnParentScroll]=\"true\"\n [width]=\"350\"\n [(visible)]=\"popover.visible\"\n>\n<div class=\"propertygrid-editor-description-popover-content\">\n <span>{{popover.data}}</span>\n</div>\n</dx-popover>", dependencies: [{ kind: "component", type: i1.DxPopoverComponent, selector: "dx-popover", inputs: ["animation", "closeOnOutsideClick", "container", "contentTemplate", "
|
16
|
+
PopoverComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PopoverComponent, selector: "dxa-propertygrid-popoverservice", inputs: { popover: ["data", "popover"] }, ngImport: i0, template: "<dx-popover\n [container]=\"container\"\n [target]=\"popover.target\"\n position=\"bottom\"\n [showCloseButton]=\"false\"\n (onHiding)=\"popover.onHiding()\"\n [hideOnOutsideClick]=\"true\"\n [hideOnParentScroll]=\"true\"\n [width]=\"350\"\n [(visible)]=\"popover.visible\"\n>\n<div class=\"propertygrid-editor-description-popover-content\">\n <span>{{popover.data}}</span>\n</div>\n</dx-popover>", dependencies: [{ kind: "component", type: i1.DxPopoverComponent, selector: "dx-popover", inputs: ["animation", "closeOnOutsideClick", "container", "contentTemplate", "deferRendering", "disabled", "enableBodyScroll", "height", "hideEvent", "hideOnOutsideClick", "hideOnParentScroll", "hint", "hoverStateEnabled", "maxHeight", "maxWidth", "minHeight", "minWidth", "position", "rtlEnabled", "shading", "shadingColor", "showCloseButton", "showEvent", "showTitle", "target", "title", "titleTemplate", "toolbarItems", "visible", "width", "wrapperAttr"], outputs: ["onContentReady", "onDisposing", "onHidden", "onHiding", "onInitialized", "onOptionChanged", "onShowing", "onShown", "onTitleRendered", "animationChange", "closeOnOutsideClickChange", "containerChange", "contentTemplateChange", "deferRenderingChange", "disabledChange", "enableBodyScrollChange", "heightChange", "hideEventChange", "hideOnOutsideClickChange", "hideOnParentScrollChange", "hintChange", "hoverStateEnabledChange", "maxHeightChange", "maxWidthChange", "minHeightChange", "minWidthChange", "positionChange", "rtlEnabledChange", "shadingChange", "shadingColorChange", "showCloseButtonChange", "showEventChange", "showTitleChange", "targetChange", "titleChange", "titleTemplateChange", "toolbarItemsChange", "visibleChange", "widthChange", "wrapperAttrChange"] }] });
|
17
17
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PopoverComponent, decorators: [{
|
18
18
|
type: Component,
|
19
19
|
args: [{ selector: 'dxa-propertygrid-popoverservice', template: "<dx-popover\n [container]=\"container\"\n [target]=\"popover.target\"\n position=\"bottom\"\n [showCloseButton]=\"false\"\n (onHiding)=\"popover.onHiding()\"\n [hideOnOutsideClick]=\"true\"\n [hideOnParentScroll]=\"true\"\n [width]=\"350\"\n [(visible)]=\"popover.visible\"\n>\n<div class=\"propertygrid-editor-description-popover-content\">\n <span>{{popover.data}}</span>\n</div>\n</dx-popover>" }]
|
package/esm2020/dx-report-viewer/components/reporting/editing/export/export-tool.component.mjs
CHANGED
@@ -20,7 +20,7 @@ export class ExportToolComponent {
|
|
20
20
|
}
|
21
21
|
}
|
22
22
|
ExportToolComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ExportToolComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
23
|
-
ExportToolComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ExportToolComponent, selector: "dxv-export-tool", inputs: { data: "data" }, ngImport: i0, template: "<div class=\"dxrd-visually-hidden\">\n <form [attr.action]=\"data.exportActionUri\" method=\"post\">\n <input *ngFor=\"let input of data.exportFormData\" [attr.name]=\"input.name\" [attr.value]=\"input.value\"/>\n </form>\n</div>\n<dx-popup\n [width]=\"data.popupOptions.width\"\n [height]=\"data.popupOptions.height\"\n [title]=\"data.popupOptions.title\"\n [visible]=\"data.popupOptions.visible\"\n [showCloseButton]=\"true\"\n (onHidden)=\"data.popupOptions.onHidden()\"\n [toolbarItems]=\"data.popupOptions.toolbarItems\"\n [wrapperAttr]=\"data.popupOptions.wrapperAttr\"\n [container]=\"popupOptions?.container\"\n [position]=\"popupOptions?.position\">\n <div class=\"dxrd-print-dialog-content\">\n <div>{{data.printingTexts.caption}}</div>\n <p></p>\n <div *ngIf=\"!!data.printingTexts.prefix\" class=\"dxrdp-print-text-prefix\">{{data.printingTexts.prefix}}\n </div> <a href=\"\" class=\"dxrd-preview-printing-link\" (click)=\"data.printingLinkCallback(data, $event)\">{{data.printingTexts.link}}</a>\n <div *ngIf=\"!!data.printingTexts.postfix\" class=\"dxrdp-print-text-postfix\">{{data.printingTexts.postfix}}</div>\n </div>\n</dx-popup>", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.DxPopupComponent, selector: "dx-popup", inputs: ["accessKey", "animation", "closeOnOutsideClick", "container", "contentTemplate", "
|
23
|
+
ExportToolComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ExportToolComponent, selector: "dxv-export-tool", inputs: { data: "data" }, ngImport: i0, template: "<div class=\"dxrd-visually-hidden\">\n <form [attr.action]=\"data.exportActionUri\" method=\"post\">\n <input *ngFor=\"let input of data.exportFormData\" [attr.name]=\"input.name\" [attr.value]=\"input.value\"/>\n </form>\n</div>\n<dx-popup\n [width]=\"data.popupOptions.width\"\n [height]=\"data.popupOptions.height\"\n [title]=\"data.popupOptions.title\"\n [visible]=\"data.popupOptions.visible\"\n [showCloseButton]=\"true\"\n (onHidden)=\"data.popupOptions.onHidden()\"\n [toolbarItems]=\"data.popupOptions.toolbarItems\"\n [wrapperAttr]=\"data.popupOptions.wrapperAttr\"\n [container]=\"popupOptions?.container\"\n [position]=\"popupOptions?.position\">\n <div class=\"dxrd-print-dialog-content\">\n <div>{{data.printingTexts.caption}}</div>\n <p></p>\n <div *ngIf=\"!!data.printingTexts.prefix\" class=\"dxrdp-print-text-prefix\">{{data.printingTexts.prefix}}\n </div> <a href=\"\" class=\"dxrd-preview-printing-link\" (click)=\"data.printingLinkCallback(data, $event)\">{{data.printingTexts.link}}</a>\n <div *ngIf=\"!!data.printingTexts.postfix\" class=\"dxrdp-print-text-postfix\">{{data.printingTexts.postfix}}</div>\n </div>\n</dx-popup>", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.DxPopupComponent, selector: "dx-popup", inputs: ["accessKey", "animation", "closeOnOutsideClick", "container", "contentTemplate", "deferRendering", "disabled", "dragAndResizeArea", "dragEnabled", "dragOutsideBoundary", "enableBodyScroll", "focusStateEnabled", "fullScreen", "height", "hideOnOutsideClick", "hideOnParentScroll", "hint", "hoverStateEnabled", "maxHeight", "maxWidth", "minHeight", "minWidth", "position", "resizeEnabled", "restorePosition", "rtlEnabled", "shading", "shadingColor", "showCloseButton", "showTitle", "tabIndex", "title", "titleTemplate", "toolbarItems", "visible", "width", "wrapperAttr"], outputs: ["onContentReady", "onDisposing", "onHidden", "onHiding", "onInitialized", "onOptionChanged", "onResize", "onResizeEnd", "onResizeStart", "onShowing", "onShown", "onTitleRendered", "accessKeyChange", "animationChange", "closeOnOutsideClickChange", "containerChange", "contentTemplateChange", "deferRenderingChange", "disabledChange", "dragAndResizeAreaChange", "dragEnabledChange", "dragOutsideBoundaryChange", "enableBodyScrollChange", "focusStateEnabledChange", "fullScreenChange", "heightChange", "hideOnOutsideClickChange", "hideOnParentScrollChange", "hintChange", "hoverStateEnabledChange", "maxHeightChange", "maxWidthChange", "minHeightChange", "minWidthChange", "positionChange", "resizeEnabledChange", "restorePositionChange", "rtlEnabledChange", "shadingChange", "shadingColorChange", "showCloseButtonChange", "showTitleChange", "tabIndexChange", "titleChange", "titleTemplateChange", "toolbarItemsChange", "visibleChange", "widthChange", "wrapperAttrChange"] }] });
|
24
24
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ExportToolComponent, decorators: [{
|
25
25
|
type: Component,
|
26
26
|
args: [{ selector: 'dxv-export-tool', template: "<div class=\"dxrd-visually-hidden\">\n <form [attr.action]=\"data.exportActionUri\" method=\"post\">\n <input *ngFor=\"let input of data.exportFormData\" [attr.name]=\"input.name\" [attr.value]=\"input.value\"/>\n </form>\n</div>\n<dx-popup\n [width]=\"data.popupOptions.width\"\n [height]=\"data.popupOptions.height\"\n [title]=\"data.popupOptions.title\"\n [visible]=\"data.popupOptions.visible\"\n [showCloseButton]=\"true\"\n (onHidden)=\"data.popupOptions.onHidden()\"\n [toolbarItems]=\"data.popupOptions.toolbarItems\"\n [wrapperAttr]=\"data.popupOptions.wrapperAttr\"\n [container]=\"popupOptions?.container\"\n [position]=\"popupOptions?.position\">\n <div class=\"dxrd-print-dialog-content\">\n <div>{{data.printingTexts.caption}}</div>\n <p></p>\n <div *ngIf=\"!!data.printingTexts.prefix\" class=\"dxrdp-print-text-prefix\">{{data.printingTexts.prefix}}\n </div> <a href=\"\" class=\"dxrd-preview-printing-link\" (click)=\"data.printingLinkCallback(data, $event)\">{{data.printingTexts.link}}</a>\n <div *ngIf=\"!!data.printingTexts.postfix\" class=\"dxrdp-print-text-postfix\">{{data.printingTexts.postfix}}</div>\n </div>\n</dx-popup>" }]
|
@@ -24,7 +24,7 @@ export class PopupImageEditingFieldComponent {
|
|
24
24
|
}
|
25
25
|
}
|
26
26
|
PopupImageEditingFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PopupImageEditingFieldComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
27
|
-
PopupImageEditingFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PopupImageEditingFieldComponent, selector: "dxv-popup-image-editing-field", inputs: { data: "data" }, viewQueries: [{ propertyName: "popupContainer", first: true, predicate: ["popupContainer"], descendants: true }], ngImport: i0, template: "<div class=\"dxrp-editing-field-container\" [style]=\"data.containerStyle\">\n <div #popupContainer [class]=\"'dx-picture-edit-popup-content dx-picture-edit-popup-content-fullscreen ' + data.parentPopupClass\" (click)=\"data.activateEditor(data, $event)\">\n <dxv-painter class=\"dxrp-editing-field-popup-container-cloned\" [options]=\"data.getPainterOptions()\"></dxv-painter>\n <dx-popup *ngIf=\"!!popupOptions\" class=\"dx-picture-edit-popup-content dx-picture-edit-popup-content-fullscreen\"\n [width]=\"data.containerStyle.width\"\n [height]=\"data.containerStyle.height\"\n [position]=\"popupOptions.position\"\n [container]=\"popupOptions.container\"\n [showTitle]=\"false\"\n [deferRendering]=\"false\"\n [hideOnOutsideClick]=\"true\"\n [showCloseButton]=\"false\"\n (onContentReady)=\"data.popupData.onContentReady($event)\"\n (onHiding)=\"data.popupData.onHiding($event)\"\n (onShown)=\"data.popupData.onShown($event)\"\n [shading]=\"data.popupData.shading\"\n [wrapperAttr]=\"{ class: 'dx-picture-edit-popup-content dx-picture-edit-popup-content-fullscreen' }\"\n [animation]=\"{ \n show: { type: 'slide', duration: 0, to: { opacity: 1 }, from: { opacity: 0 } },\n hide: { type: 'fade', duration: 100, to: { opacity: 0 }, from: { opacity: 1 } }\n }\"\n [visible]=\"data.popupData.visible\"\n >\n <dxa-template *ngIf=\"data.popupData.showContent\" [template]=\"data.popupData.contentTemplate\" [data]=\"data\"></dxa-template>\n </dx-popup>\n </div>\n</div>", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.DxPopupComponent, selector: "dx-popup", inputs: ["accessKey", "animation", "closeOnOutsideClick", "container", "contentTemplate", "
|
27
|
+
PopupImageEditingFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PopupImageEditingFieldComponent, selector: "dxv-popup-image-editing-field", inputs: { data: "data" }, viewQueries: [{ propertyName: "popupContainer", first: true, predicate: ["popupContainer"], descendants: true }], ngImport: i0, template: "<div class=\"dxrp-editing-field-container\" [style]=\"data.containerStyle\">\n <div #popupContainer [class]=\"'dx-picture-edit-popup-content dx-picture-edit-popup-content-fullscreen ' + data.parentPopupClass\" (click)=\"data.activateEditor(data, $event)\">\n <dxv-painter class=\"dxrp-editing-field-popup-container-cloned\" [options]=\"data.getPainterOptions()\"></dxv-painter>\n <dx-popup *ngIf=\"!!popupOptions\" class=\"dx-picture-edit-popup-content dx-picture-edit-popup-content-fullscreen\"\n [width]=\"data.containerStyle.width\"\n [height]=\"data.containerStyle.height\"\n [position]=\"popupOptions.position\"\n [container]=\"popupOptions.container\"\n [showTitle]=\"false\"\n [deferRendering]=\"false\"\n [hideOnOutsideClick]=\"true\"\n [showCloseButton]=\"false\"\n (onContentReady)=\"data.popupData.onContentReady($event)\"\n (onHiding)=\"data.popupData.onHiding($event)\"\n (onShown)=\"data.popupData.onShown($event)\"\n [shading]=\"data.popupData.shading\"\n [wrapperAttr]=\"{ class: 'dx-picture-edit-popup-content dx-picture-edit-popup-content-fullscreen' }\"\n [animation]=\"{ \n show: { type: 'slide', duration: 0, to: { opacity: 1 }, from: { opacity: 0 } },\n hide: { type: 'fade', duration: 100, to: { opacity: 0 }, from: { opacity: 1 } }\n }\"\n [visible]=\"data.popupData.visible\"\n >\n <dxa-template *ngIf=\"data.popupData.showContent\" [template]=\"data.popupData.contentTemplate\" [data]=\"data\"></dxa-template>\n </dx-popup>\n </div>\n</div>", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.DxPopupComponent, selector: "dx-popup", inputs: ["accessKey", "animation", "closeOnOutsideClick", "container", "contentTemplate", "deferRendering", "disabled", "dragAndResizeArea", "dragEnabled", "dragOutsideBoundary", "enableBodyScroll", "focusStateEnabled", "fullScreen", "height", "hideOnOutsideClick", "hideOnParentScroll", "hint", "hoverStateEnabled", "maxHeight", "maxWidth", "minHeight", "minWidth", "position", "resizeEnabled", "restorePosition", "rtlEnabled", "shading", "shadingColor", "showCloseButton", "showTitle", "tabIndex", "title", "titleTemplate", "toolbarItems", "visible", "width", "wrapperAttr"], outputs: ["onContentReady", "onDisposing", "onHidden", "onHiding", "onInitialized", "onOptionChanged", "onResize", "onResizeEnd", "onResizeStart", "onShowing", "onShown", "onTitleRendered", "accessKeyChange", "animationChange", "closeOnOutsideClickChange", "containerChange", "contentTemplateChange", "deferRenderingChange", "disabledChange", "dragAndResizeAreaChange", "dragEnabledChange", "dragOutsideBoundaryChange", "enableBodyScrollChange", "focusStateEnabledChange", "fullScreenChange", "heightChange", "hideOnOutsideClickChange", "hideOnParentScrollChange", "hintChange", "hoverStateEnabledChange", "maxHeightChange", "maxWidthChange", "minHeightChange", "minWidthChange", "positionChange", "resizeEnabledChange", "restorePositionChange", "rtlEnabledChange", "shadingChange", "shadingColorChange", "showCloseButtonChange", "showTitleChange", "tabIndexChange", "titleChange", "titleTemplateChange", "toolbarItemsChange", "visibleChange", "widthChange", "wrapperAttrChange"] }, { kind: "component", type: i3.TemplateComponent, selector: "dxa-template", inputs: ["data", "template"] }, { kind: "component", type: i4.PainterComponent, selector: "dxv-painter", inputs: ["options"] }] });
|
28
28
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PopupImageEditingFieldComponent, decorators: [{
|
29
29
|
type: Component,
|
30
30
|
args: [{ selector: 'dxv-popup-image-editing-field', template: "<div class=\"dxrp-editing-field-container\" [style]=\"data.containerStyle\">\n <div #popupContainer [class]=\"'dx-picture-edit-popup-content dx-picture-edit-popup-content-fullscreen ' + data.parentPopupClass\" (click)=\"data.activateEditor(data, $event)\">\n <dxv-painter class=\"dxrp-editing-field-popup-container-cloned\" [options]=\"data.getPainterOptions()\"></dxv-painter>\n <dx-popup *ngIf=\"!!popupOptions\" class=\"dx-picture-edit-popup-content dx-picture-edit-popup-content-fullscreen\"\n [width]=\"data.containerStyle.width\"\n [height]=\"data.containerStyle.height\"\n [position]=\"popupOptions.position\"\n [container]=\"popupOptions.container\"\n [showTitle]=\"false\"\n [deferRendering]=\"false\"\n [hideOnOutsideClick]=\"true\"\n [showCloseButton]=\"false\"\n (onContentReady)=\"data.popupData.onContentReady($event)\"\n (onHiding)=\"data.popupData.onHiding($event)\"\n (onShown)=\"data.popupData.onShown($event)\"\n [shading]=\"data.popupData.shading\"\n [wrapperAttr]=\"{ class: 'dx-picture-edit-popup-content dx-picture-edit-popup-content-fullscreen' }\"\n [animation]=\"{ \n show: { type: 'slide', duration: 0, to: { opacity: 1 }, from: { opacity: 0 } },\n hide: { type: 'fade', duration: 100, to: { opacity: 0 }, from: { opacity: 1 } }\n }\"\n [visible]=\"data.popupData.visible\"\n >\n <dxa-template *ngIf=\"data.popupData.showContent\" [template]=\"data.popupData.contentTemplate\" [data]=\"data\"></dxa-template>\n </dx-popup>\n </div>\n</div>" }]
|
@@ -7,7 +7,7 @@ import * as i3 from "devextreme-angular";
|
|
7
7
|
export class MobileActionsExportComponent extends ComponentWithParentContainer {
|
8
8
|
}
|
9
9
|
MobileActionsExportComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MobileActionsExportComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
10
|
-
MobileActionsExportComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: MobileActionsExportComponent, selector: "dxv-mobile-actions-export", inputs: { data: "data" }, usesInheritance: true, ngImport: i0, template: "<dx-popover class=\"dxrd-menu-export-popover\"\n [wrapperAttr]=\"{ class: 'dxrd-menu-export-popover' }\"\n width=\"266px\"\n height=\"266px\"\n [visible]=\"data.visible\"\n target=\".dxrdp-mobile-action.dxrd-image-export-to\"\n [container]=\"parentContainer\">\n <div *dxTemplate=\"let contentData of 'content'\">\n <div *ngFor=\"let item of data.items\" class=\"dxrd-menu-export-item\" (click)=\"item.action()\">{{item.text}}</div>\n </div>\n</dx-popover>", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.DxTemplateDirective, selector: "[dxTemplate]", inputs: ["dxTemplateOf"] }, { kind: "component", type: i3.DxPopoverComponent, selector: "dx-popover", inputs: ["animation", "closeOnOutsideClick", "container", "contentTemplate", "
|
10
|
+
MobileActionsExportComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: MobileActionsExportComponent, selector: "dxv-mobile-actions-export", inputs: { data: "data" }, usesInheritance: true, ngImport: i0, template: "<dx-popover class=\"dxrd-menu-export-popover\"\n [wrapperAttr]=\"{ class: 'dxrd-menu-export-popover' }\"\n width=\"266px\"\n height=\"266px\"\n [visible]=\"data.visible\"\n target=\".dxrdp-mobile-action.dxrd-image-export-to\"\n [container]=\"parentContainer\">\n <div *dxTemplate=\"let contentData of 'content'\">\n <div *ngFor=\"let item of data.items\" class=\"dxrd-menu-export-item\" (click)=\"item.action()\">{{item.text}}</div>\n </div>\n</dx-popover>", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.DxTemplateDirective, selector: "[dxTemplate]", inputs: ["dxTemplateOf"] }, { kind: "component", type: i3.DxPopoverComponent, selector: "dx-popover", inputs: ["animation", "closeOnOutsideClick", "container", "contentTemplate", "deferRendering", "disabled", "enableBodyScroll", "height", "hideEvent", "hideOnOutsideClick", "hideOnParentScroll", "hint", "hoverStateEnabled", "maxHeight", "maxWidth", "minHeight", "minWidth", "position", "rtlEnabled", "shading", "shadingColor", "showCloseButton", "showEvent", "showTitle", "target", "title", "titleTemplate", "toolbarItems", "visible", "width", "wrapperAttr"], outputs: ["onContentReady", "onDisposing", "onHidden", "onHiding", "onInitialized", "onOptionChanged", "onShowing", "onShown", "onTitleRendered", "animationChange", "closeOnOutsideClickChange", "containerChange", "contentTemplateChange", "deferRenderingChange", "disabledChange", "enableBodyScrollChange", "heightChange", "hideEventChange", "hideOnOutsideClickChange", "hideOnParentScrollChange", "hintChange", "hoverStateEnabledChange", "maxHeightChange", "maxWidthChange", "minHeightChange", "minWidthChange", "positionChange", "rtlEnabledChange", "shadingChange", "shadingColorChange", "showCloseButtonChange", "showEventChange", "showTitleChange", "targetChange", "titleChange", "titleTemplateChange", "toolbarItemsChange", "visibleChange", "widthChange", "wrapperAttrChange"] }] });
|
11
11
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MobileActionsExportComponent, decorators: [{
|
12
12
|
type: Component,
|
13
13
|
args: [{ selector: 'dxv-mobile-actions-export', template: "<dx-popover class=\"dxrd-menu-export-popover\"\n [wrapperAttr]=\"{ class: 'dxrd-menu-export-popover' }\"\n width=\"266px\"\n height=\"266px\"\n [visible]=\"data.visible\"\n target=\".dxrdp-mobile-action.dxrd-image-export-to\"\n [container]=\"parentContainer\">\n <div *dxTemplate=\"let contentData of 'content'\">\n <div *ngFor=\"let item of data.items\" class=\"dxrd-menu-export-item\" (click)=\"item.action()\">{{item.text}}</div>\n </div>\n</dx-popover>" }]
|
@@ -7,7 +7,7 @@ import * as i3 from "../../../analytics/template/template.component";
|
|
7
7
|
export class MobileParametersPopupComponent extends ComponentWithParentContainer {
|
8
8
|
}
|
9
9
|
MobileParametersPopupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MobileParametersPopupComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
10
|
-
MobileParametersPopupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: MobileParametersPopupComponent, selector: "dxv-mobile-parameters-popup", inputs: { data: "data" }, usesInheritance: true, ngImport: i0, template: "<dx-popup [wrapperAttr]=\"{ class: 'dxrd-menu-parameters-popup' }\" [showTitle]=\"false\" (onHidden)=\"data.onHidden($event)\" width=\"100vw\" height=\"100vh\" [visible]=\"data.visible\" [container]=\"parentContainer\">\n <dxa-template *ngIf=\"data.visible\" template=\"dxrv-preview-parameters-mobile\" [data]=\"data\"></dxa-template>\n</dx-popup>", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.DxPopupComponent, selector: "dx-popup", inputs: ["accessKey", "animation", "closeOnOutsideClick", "container", "contentTemplate", "
|
10
|
+
MobileParametersPopupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: MobileParametersPopupComponent, selector: "dxv-mobile-parameters-popup", inputs: { data: "data" }, usesInheritance: true, ngImport: i0, template: "<dx-popup [wrapperAttr]=\"{ class: 'dxrd-menu-parameters-popup' }\" [showTitle]=\"false\" (onHidden)=\"data.onHidden($event)\" width=\"100vw\" height=\"100vh\" [visible]=\"data.visible\" [container]=\"parentContainer\">\n <dxa-template *ngIf=\"data.visible\" template=\"dxrv-preview-parameters-mobile\" [data]=\"data\"></dxa-template>\n</dx-popup>", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.DxPopupComponent, selector: "dx-popup", inputs: ["accessKey", "animation", "closeOnOutsideClick", "container", "contentTemplate", "deferRendering", "disabled", "dragAndResizeArea", "dragEnabled", "dragOutsideBoundary", "enableBodyScroll", "focusStateEnabled", "fullScreen", "height", "hideOnOutsideClick", "hideOnParentScroll", "hint", "hoverStateEnabled", "maxHeight", "maxWidth", "minHeight", "minWidth", "position", "resizeEnabled", "restorePosition", "rtlEnabled", "shading", "shadingColor", "showCloseButton", "showTitle", "tabIndex", "title", "titleTemplate", "toolbarItems", "visible", "width", "wrapperAttr"], outputs: ["onContentReady", "onDisposing", "onHidden", "onHiding", "onInitialized", "onOptionChanged", "onResize", "onResizeEnd", "onResizeStart", "onShowing", "onShown", "onTitleRendered", "accessKeyChange", "animationChange", "closeOnOutsideClickChange", "containerChange", "contentTemplateChange", "deferRenderingChange", "disabledChange", "dragAndResizeAreaChange", "dragEnabledChange", "dragOutsideBoundaryChange", "enableBodyScrollChange", "focusStateEnabledChange", "fullScreenChange", "heightChange", "hideOnOutsideClickChange", "hideOnParentScrollChange", "hintChange", "hoverStateEnabledChange", "maxHeightChange", "maxWidthChange", "minHeightChange", "minWidthChange", "positionChange", "resizeEnabledChange", "restorePositionChange", "rtlEnabledChange", "shadingChange", "shadingColorChange", "showCloseButtonChange", "showTitleChange", "tabIndexChange", "titleChange", "titleTemplateChange", "toolbarItemsChange", "visibleChange", "widthChange", "wrapperAttrChange"] }, { kind: "component", type: i3.TemplateComponent, selector: "dxa-template", inputs: ["data", "template"] }] });
|
11
11
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MobileParametersPopupComponent, decorators: [{
|
12
12
|
type: Component,
|
13
13
|
args: [{ selector: 'dxv-mobile-parameters-popup', template: "<dx-popup [wrapperAttr]=\"{ class: 'dxrd-menu-parameters-popup' }\" [showTitle]=\"false\" (onHidden)=\"data.onHidden($event)\" width=\"100vw\" height=\"100vh\" [visible]=\"data.visible\" [container]=\"parentContainer\">\n <dxa-template *ngIf=\"data.visible\" template=\"dxrv-preview-parameters-mobile\" [data]=\"data\"></dxa-template>\n</dx-popup>" }]
|
@@ -5,12 +5,12 @@ import * as i2 from "devextreme-angular";
|
|
5
5
|
export class CalendarComponent {
|
6
6
|
}
|
7
7
|
CalendarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
8
|
-
CalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CalendarComponent, selector: "dxv-daterange-calendar", inputs: { data: "data" }, ngImport: i0, template: "<dx-calendar
|
8
|
+
CalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CalendarComponent, selector: "dxv-daterange-calendar", inputs: { data: "data" }, ngImport: i0, template: "<dx-calendar tabindex=\"0\" class=\"dx-accessibility-calendar-item dx-accessibility-daterange-item\"\n [min]=\"data.min\"\n [value]=\"data.value\"\n cellTemplate=\"select_cell\" \n [height]=\"data.height\"\n (onValueChanged)=\"data.onValueChanged($event)\"\n>\n <div *dxTemplate=\"let item of 'select_cell'\" class=\"dxrv-daterange-cell\">\n <div class=\"dxrv-daterange-cell-text\">{{item.text}}</div>\n <div [class.dxd-back-accented]=\"data.inRange(item.date)\"></div>\n </div>\n</dx-calendar>", dependencies: [{ kind: "directive", type: i1.DxTemplateDirective, selector: "[dxTemplate]", inputs: ["dxTemplateOf"] }, { kind: "component", type: i2.DxCalendarComponent, selector: "dx-calendar", inputs: ["accessKey", "activeStateEnabled", "cellTemplate", "dateSerializationFormat", "disabled", "disabledDates", "elementAttr", "firstDayOfWeek", "focusStateEnabled", "height", "hint", "hoverStateEnabled", "isDirty", "isValid", "max", "maxZoomLevel", "min", "minZoomLevel", "name", "readOnly", "rtlEnabled", "selectionMode", "selectWeekOnClick", "showTodayButton", "showWeekNumbers", "tabIndex", "validationError", "validationErrors", "validationMessageMode", "validationMessagePosition", "validationStatus", "value", "visible", "weekNumberRule", "width", "zoomLevel"], outputs: ["onDisposing", "onInitialized", "onOptionChanged", "onValueChanged", "accessKeyChange", "activeStateEnabledChange", "cellTemplateChange", "dateSerializationFormatChange", "disabledChange", "disabledDatesChange", "elementAttrChange", "firstDayOfWeekChange", "focusStateEnabledChange", "heightChange", "hintChange", "hoverStateEnabledChange", "isDirtyChange", "isValidChange", "maxChange", "maxZoomLevelChange", "minChange", "minZoomLevelChange", "nameChange", "readOnlyChange", "rtlEnabledChange", "selectionModeChange", "selectWeekOnClickChange", "showTodayButtonChange", "showWeekNumbersChange", "tabIndexChange", "validationErrorChange", "validationErrorsChange", "validationMessageModeChange", "validationMessagePositionChange", "validationStatusChange", "valueChange", "visibleChange", "weekNumberRuleChange", "widthChange", "zoomLevelChange", "onBlur"] }] });
|
9
9
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarComponent, decorators: [{
|
10
10
|
type: Component,
|
11
|
-
args: [{ selector: 'dxv-daterange-calendar', template: "<dx-calendar
|
11
|
+
args: [{ selector: 'dxv-daterange-calendar', template: "<dx-calendar tabindex=\"0\" class=\"dx-accessibility-calendar-item dx-accessibility-daterange-item\"\n [min]=\"data.min\"\n [value]=\"data.value\"\n cellTemplate=\"select_cell\" \n [height]=\"data.height\"\n (onValueChanged)=\"data.onValueChanged($event)\"\n>\n <div *dxTemplate=\"let item of 'select_cell'\" class=\"dxrv-daterange-cell\">\n <div class=\"dxrv-daterange-cell-text\">{{item.text}}</div>\n <div [class.dxd-back-accented]=\"data.inRange(item.date)\"></div>\n </div>\n</dx-calendar>" }]
|
12
12
|
}], propDecorators: { data: [{
|
13
13
|
type: Input,
|
14
14
|
args: ['data']
|
15
15
|
}] } });
|
16
|
-
//# sourceMappingURL=data:application/json;base64,
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vZHgtcmVwb3J0LXZpZXdlci9jb21wb25lbnRzL3JlcG9ydGluZy9wYXJhbWV0ZXJzcGFuZWwvZGF0ZS1yYW5nZS9jYWxlbmRhci9jYWxlbmRhci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9keC1yZXBvcnQtdmlld2VyL2NvbXBvbmVudHMvcmVwb3J0aW5nL3BhcmFtZXRlcnNwYW5lbC9kYXRlLXJhbmdlL2NhbGVuZGFyL2NhbGVuZGFyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7O0FBUWpELE1BQU0sT0FBTyxpQkFBaUI7OytHQUFqQixpQkFBaUI7bUdBQWpCLGlCQUFpQix3RkNSOUIsbWhCQVdjOzRGREhELGlCQUFpQjtrQkFKN0IsU0FBUzsrQkFDSSx3QkFBd0I7OEJBSXJCLElBQUk7c0JBQWxCLEtBQUs7dUJBQUMsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IElEYXRlUmFuZ2VDYWxlbmRhclZpZXdNb2RlbCB9IGZyb20gJ2RldmV4cHJlc3MtcmVwb3J0aW5nL3ZpZXdlci93aWRnZXRzL2RhdGVSYW5nZS9kYXRlUmFuZ2VFZGl0b3Iudmlld21vZGVsJztcbmltcG9ydCB7IFZhbHVlQ2hhbmdlZEV2ZW50IH0gZnJvbSAnZGV2ZXh0cmVtZS91aS9jYWxlbmRhcic7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnZHh2LWRhdGVyYW5nZS1jYWxlbmRhcicsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2NhbGVuZGFyLmNvbXBvbmVudC5odG1sJ1xufSlcbmV4cG9ydCBjbGFzcyBDYWxlbmRhckNvbXBvbmVudCB7XG4gIEBJbnB1dCgnZGF0YScpIGRhdGEhOiBJRGF0ZVJhbmdlQ2FsZW5kYXJWaWV3TW9kZWw7XG59XG4iLCI8ZHgtY2FsZW5kYXIgdGFiaW5kZXg9XCIwXCIgY2xhc3M9XCJkeC1hY2Nlc3NpYmlsaXR5LWNhbGVuZGFyLWl0ZW0gZHgtYWNjZXNzaWJpbGl0eS1kYXRlcmFuZ2UtaXRlbVwiXG4gICAgW21pbl09XCJkYXRhLm1pblwiXG4gICAgW3ZhbHVlXT1cImRhdGEudmFsdWVcIlxuICAgIGNlbGxUZW1wbGF0ZT1cInNlbGVjdF9jZWxsXCIgXG4gICAgW2hlaWdodF09XCJkYXRhLmhlaWdodFwiXG4gICAgKG9uVmFsdWVDaGFuZ2VkKT1cImRhdGEub25WYWx1ZUNoYW5nZWQoJGV2ZW50KVwiXG4+XG4gICAgPGRpdiAqZHhUZW1wbGF0ZT1cImxldCBpdGVtIG9mICdzZWxlY3RfY2VsbCdcIiBjbGFzcz1cImR4cnYtZGF0ZXJhbmdlLWNlbGxcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImR4cnYtZGF0ZXJhbmdlLWNlbGwtdGV4dFwiPnt7aXRlbS50ZXh0fX08L2Rpdj5cbiAgICAgICAgPGRpdiBbY2xhc3MuZHhkLWJhY2stYWNjZW50ZWRdPVwiZGF0YS5pblJhbmdlKGl0ZW0uZGF0ZSlcIj48L2Rpdj5cbiAgICA8L2Rpdj5cbjwvZHgtY2FsZW5kYXI+Il19
|
@@ -14,6 +14,9 @@ export class DateRangeComponent {
|
|
14
14
|
this._editor.dispose();
|
15
15
|
}
|
16
16
|
ngOnInit() {
|
17
|
+
this.options.visibilityChanged = (newValue) => {
|
18
|
+
this._changeDetectorRef.markForCheck();
|
19
|
+
};
|
17
20
|
this._editor = createDateRangeEditor(this.options, this._currentElement.nativeElement, this.options);
|
18
21
|
this.data = this._editor.getViewModel();
|
19
22
|
this._vmSubscription = this.data._viewModelEvents.on(ViewModelChangedEvent, () => {
|
@@ -35,4 +38,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
35
38
|
type: Input,
|
36
39
|
args: ['data']
|
37
40
|
}] } });
|
38
|
-
//# sourceMappingURL=data:application/json;base64,
|
41
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS1yYW5nZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9keC1yZXBvcnQtdmlld2VyL2NvbXBvbmVudHMvcmVwb3J0aW5nL3BhcmFtZXRlcnNwYW5lbC9kYXRlLXJhbmdlL2RhdGUtcmFuZ2UuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vZHgtcmVwb3J0LXZpZXdlci9jb21wb25lbnRzL3JlcG9ydGluZy9wYXJhbWV0ZXJzcGFuZWwvZGF0ZS1yYW5nZS9kYXRlLXJhbmdlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBcUIsU0FBUyxFQUFjLEtBQUssRUFBcUIsTUFBTSxlQUFlLENBQUM7QUFDbkcsT0FBTyxFQUFFLHFCQUFxQixFQUE0QyxNQUFNLCtEQUErRCxDQUFDO0FBR2hKLE9BQU8sRUFBc0IscUJBQXFCLEVBQUUsTUFBTSw0RUFBNEUsQ0FBQzs7OztBQU12SSxNQUFNLE9BQU8sa0JBQWtCO0lBTTNCLFlBQW9CLGVBQWdDLEVBQVUsa0JBQXFDO1FBQS9FLG9CQUFlLEdBQWYsZUFBZSxDQUFpQjtRQUFVLHVCQUFrQixHQUFsQixrQkFBa0IsQ0FBbUI7SUFBRyxDQUFDO0lBQ3ZHLFdBQVc7UUFDUCxJQUFJLENBQUMsZUFBZSxJQUFJLElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQztRQUMvQyxJQUFJLENBQUMsT0FBTyxDQUFDLE9BQU8sRUFBRSxDQUFDO0lBQzNCLENBQUM7SUFDRCxRQUFRO1FBQ0gsSUFBSSxDQUFDLE9BQTRCLENBQUMsaUJBQWlCLEdBQUcsQ0FBQyxRQUFpQixFQUFFLEVBQUU7WUFDekUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLFlBQVksRUFBRSxDQUFDO1FBQzNDLENBQUMsQ0FBQztRQUNGLElBQUksQ0FBQyxPQUFPLEdBQUcscUJBQXFCLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxJQUFJLENBQUMsZUFBZSxDQUFDLGFBQWEsRUFBRSxJQUFJLENBQUMsT0FBMkIsQ0FBQyxDQUFDO1FBQ3pILElBQUksQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQyxZQUFZLEVBQUUsQ0FBQztRQUN4QyxJQUFJLENBQUMsZUFBZSxHQUFJLElBQUksQ0FBQyxJQUFzRCxDQUFDLGdCQUFnQixDQUFDLEVBQUUsQ0FBQyxxQkFBcUIsRUFBRSxHQUFHLEVBQUU7WUFDaEksSUFBSSxDQUFDLGtCQUFrQixDQUFDLFlBQVksRUFBRSxDQUFDO1FBQzNDLENBQUMsQ0FBQyxDQUFDO1FBQ0gsSUFBSSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxhQUFhLENBQUMsQ0FBQztRQUUzRCxJQUFJLENBQUMsaUJBQWlCLEdBQUcsR0FBRyxFQUFFO1lBQzFCLElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxFQUFFLENBQUM7WUFDdEIsSUFBSSxDQUFDLGtCQUFrQixDQUFDLFlBQVksRUFBRSxDQUFDO1FBQzNDLENBQUMsQ0FBQztJQUNOLENBQUM7O2dIQTFCUSxrQkFBa0I7b0dBQWxCLGtCQUFrQixnR0NWL0IsK1lBU007NEZEQ08sa0JBQWtCO2tCQUo5QixTQUFTOytCQUNJLGdCQUFnQjtpSUFJWCxPQUFPO3NCQUFyQixLQUFLO3VCQUFDLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3RvclJlZiwgQ29tcG9uZW50LCBFbGVtZW50UmVmLCBJbnB1dCwgT25Jbml0LCBPbkRlc3Ryb3kgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IGNyZWF0ZURhdGVSYW5nZUVkaXRvciwgRGF0ZVJhbmdlRWRpdG9yLCBJRGF0ZVJhbmdlRWRpdG9yT3B0aW9ucyB9IGZyb20gJ2RldmV4cHJlc3MtcmVwb3J0aW5nL3ZpZXdlci93aWRnZXRzL2RhdGVSYW5nZS9kYXRlUmFuZ2VFZGl0b3InO1xuaW1wb3J0IHsgSURhdGVSYW5nZUVkaXRvclZpZXdNb2RlbCB9IGZyb20gJ2RldmV4cHJlc3MtcmVwb3J0aW5nL3ZpZXdlci93aWRnZXRzL2RhdGVSYW5nZS9kYXRlUmFuZ2VFZGl0b3Iudmlld21vZGVsJztcbmltcG9ydCB7IElFZGl0b3JWaWV3TW9kZWwgfSBmcm9tICdAZGV2ZXhwcmVzcy9hbmFseXRpY3MtY29yZS9hbmFseXRpY3Mtd2lkZ2V0cy1uYXRpdmUnO1xuaW1wb3J0IHsgRXZlbnRNYW5hZ2VySG9sZGVyLCBWaWV3TW9kZWxDaGFuZ2VkRXZlbnQgfSBmcm9tICdAZGV2ZXhwcmVzcy9hbmFseXRpY3MtY29yZS9zZXJpYWxpemVyL25hdGl2ZS92aWV3TW9kZWxzL3ZpZXdNb2RlbEdlbmVyYXRvcic7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnZHh2LWRhdGUtcmFuZ2UnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9kYXRlLXJhbmdlLmNvbXBvbmVudC5odG1sJ1xufSlcbmV4cG9ydCBjbGFzcyBEYXRlUmFuZ2VDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIE9uRGVzdHJveSB7XG4gICAgQElucHV0KCdkYXRhJykgb3B0aW9uczogSURhdGVSYW5nZUVkaXRvck9wdGlvbnM7XG4gICAgcHJpdmF0ZSBfZWRpdG9yOiBEYXRlUmFuZ2VFZGl0b3I7XG4gICAgZGF0YTogSURhdGVSYW5nZUVkaXRvclZpZXdNb2RlbDtcbiAgICBwcml2YXRlIF92bVN1YnNjcmlwdGlvbjogKCkgPT4gdm9pZDtcbiAgICBwcm9jZXNzQ2xpY2tFdmVudDogKCkgPT4gdm9pZDtcbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIF9jdXJyZW50RWxlbWVudDogRWxlbWVudFJlZjxhbnk+LCBwcml2YXRlIF9jaGFuZ2VEZXRlY3RvclJlZjogQ2hhbmdlRGV0ZWN0b3JSZWYpIHt9XG4gICAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XG4gICAgICAgIHRoaXMuX3ZtU3Vic2NyaXB0aW9uICYmIHRoaXMuX3ZtU3Vic2NyaXB0aW9uKCk7XG4gICAgICAgIHRoaXMuX2VkaXRvci5kaXNwb3NlKCk7XG4gICAgfVxuICAgIG5nT25Jbml0KCk6IHZvaWQge1xuICAgICAgICAodGhpcy5vcHRpb25zIGFzIElFZGl0b3JWaWV3TW9kZWwpLnZpc2liaWxpdHlDaGFuZ2VkID0gKG5ld1ZhbHVlOiBib29sZWFuKSA9PiB7XG4gICAgICAgICAgICB0aGlzLl9jaGFuZ2VEZXRlY3RvclJlZi5tYXJrRm9yQ2hlY2soKTtcbiAgICAgICAgfTtcbiAgICAgICAgdGhpcy5fZWRpdG9yID0gY3JlYXRlRGF0ZVJhbmdlRWRpdG9yKHRoaXMub3B0aW9ucywgdGhpcy5fY3VycmVudEVsZW1lbnQubmF0aXZlRWxlbWVudCwgdGhpcy5vcHRpb25zIGFzIElFZGl0b3JWaWV3TW9kZWwpO1xuICAgICAgICB0aGlzLmRhdGEgPSB0aGlzLl9lZGl0b3IuZ2V0Vmlld01vZGVsKCk7XG4gICAgICAgIHRoaXMuX3ZtU3Vic2NyaXB0aW9uID0gKHRoaXMuZGF0YSBhcyBFdmVudE1hbmFnZXJIb2xkZXI8SURhdGVSYW5nZUVkaXRvclZpZXdNb2RlbD4pLl92aWV3TW9kZWxFdmVudHMub24oVmlld01vZGVsQ2hhbmdlZEV2ZW50LCAoKSA9PiB7XG4gICAgICAgICAgICB0aGlzLl9jaGFuZ2VEZXRlY3RvclJlZi5tYXJrRm9yQ2hlY2soKTtcbiAgICAgICAgfSk7XG4gICAgICAgIHRoaXMuZGF0YS5jYWNoZUVsZW1lbnQodGhpcy5fY3VycmVudEVsZW1lbnQubmF0aXZlRWxlbWVudCk7XG5cbiAgICAgICAgdGhpcy5wcm9jZXNzQ2xpY2tFdmVudCA9ICgpID0+IHtcbiAgICAgICAgICAgIHRoaXMuZGF0YS5zaG93UG9wdXAoKTtcbiAgICAgICAgICAgIHRoaXMuX2NoYW5nZURldGVjdG9yUmVmLm1hcmtGb3JDaGVjaygpO1xuICAgICAgICB9O1xuICAgIH1cbn0iLCI8ZGl2IGNsYXNzPVwiZHhydi1kYXRlcmFuZ2UtZWRpdG9yXCI+XG4gICAgPGRpdiBbZHhhRWxsaXBzaXNFZGl0b3JdPVwie1xuICAgICAgYnV0dG9uQWN0aW9uOiBwcm9jZXNzQ2xpY2tFdmVudCxcbiAgICAgIHZhbHVlOiBkYXRhLmRpc3BsYXlWYWx1ZSxcbiAgICAgIHJlYWRPbmx5OiB0cnVlLFxuICAgICAgb3Blbk9uRmllbGRDbGljazogdHJ1ZSxcbiAgICAgIGlucHV0QXR0cjogeyAnYXJpYS1sYWJlbCc6IGRhdGEuX2Rpc3BsYXlOYW1lLCBpZDogZGF0YS5fZWRpdG9ySW5wdXRJZCB9XG4gICAgfVwiPjwvZGl2PlxuICAgIDxkeGEtdGVtcGxhdGUgW3RlbXBsYXRlXT1cImRhdGEucG9wdXBUZW1wbGF0ZVwiIFtkYXRhXT1cImRhdGEucG9wdXBNb2RlbFwiPjwvZHhhLXRlbXBsYXRlPlxuPC9kaXY+Il19
|
@@ -13,7 +13,7 @@ export class PopupContainerComponent {
|
|
13
13
|
}
|
14
14
|
}
|
15
15
|
PopupContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PopupContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
16
|
-
PopupContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PopupContainerComponent, selector: "dxv-daterange-popup", inputs: { data: "data" }, ngImport: i0, template: "<dx-popup role=\"dialog\" aria-modal=\"true\" \n[width]=\"popupOptions.width\"\n[height]=\"popupOptions.height\"\n[wrapperAttr]=\"popupOptions.wrapperAttr\"\n[position]=\"popupOptions.position\"\n[container]=\"popupOptions.container\"\n[showTitle]=\"popupOptions.showTitle\"\n[showCloseButton]=\"popupOptions.showCloseButton\"\n[hideOnOutsideClick]=\"popupOptions.hideOnOutsideClick\"\n(onHidden)=\"popupOptions.onHidden($event)\"\n[animation]=\"popupOptions.animation\"\n[shading]=\"popupOptions.shading\"\n[visible]=\"popupOptions.visible\"\n>\n <dx-scroll-view \n [showScrollbar]=\"data.scrollViewOptions.showScrollbar\"\n [direction]=\"data.scrollViewOptions.direction\"\n [useNative]=\"data.scrollViewOptions.useNative\"\n (onInitialized)=\"data.scrollViewOptions.onInitialized($event)\"\n >\n <div class=\"dxrv-daterange-editor-popup-container\" [dxMutationObserver]=\"data.dialogKeyboardHelper\">\n <dx-scroll-view role=\"listbox\" class=\"dxrv-daterange-editor-list dxrv-daterange-editor-item dxd-border-primary dx-accessibility-daterange-item\" \n [showScrollbar]=\"data.predefinedRanges.scrollViewOptions.showScrollbar\"\n [scrollByContent]=\"data.predefinedRanges.scrollViewOptions.scrollByContent\"\n [bounceEnabled]=\"data.predefinedRanges.scrollViewOptions.bounceEnabled\"\n [useNative]=\"data.predefinedRanges.scrollViewOptions.useNative\"\n [scrollByThumb]=\"data.predefinedRanges.scrollViewOptions.scrollByThumb\"\n (onInitialized)=\"data.predefinedRanges.scrollViewOptions.onInitialized($event)\"\n [dxMutationObserver]=\"data.predefinedRanges.accessibilityKeyboardHelper\"\n >\n <div class=\"dx-accessibility-container-background dxd-back-accented\"></div>\n <div *ngFor=\"let item of data.predefinedRanges.items\" role=\"option\" class=\"dxrv-daterange-editor-list-item dxd-state-normal dxd-back-highlighted dx-accessibility-list-item dx-accessibility-focus-border-accented\"\n [attr.aria-selected]=\"item.selected\"\n [class.dxd-state-selected]=\"item.selected\" [dxAction]=\"item.click\">\n <div class=\"dx-accessibility-field-background dxd-back-accented\"></div>\n {{item.displayName}}\n </div>\n </dx-scroll-view>\n <div class=\"dxrv-daterange-editor-item\">\n <div class=\"dx-accessibility-container-background dxd-back-accented\"></div>\n <dxa-template template=\"dxrv-daterange-calendar\" [data]=\"data.startRange\"></dxa-template>\n </div>\n <div class=\"dxrv-daterange-editor-item\">\n <div class=\"dx-accessibility-container-background dxd-back-accented\"></div>\n <dxa-template template=\"dxrv-daterange-calendar\" [data]=\"data.endRange\"></dxa-template>\n </div>\n </div>\n </dx-scroll-view>\n</dx-popup>", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: i2.DxScrollViewComponent, selector: "dx-scroll-view", inputs: ["bounceEnabled", "direction", "disabled", "elementAttr", "height", "pulledDownText", "pullingDownText", "reachBottomText", "refreshingText", "rtlEnabled", "scrollByContent", "scrollByThumb", "showScrollbar", "useNative", "width"], outputs: ["onDisposing", "onInitialized", "onOptionChanged", "onPullDown", "onReachBottom", "onScroll", "onUpdated", "bounceEnabledChange", "directionChange", "disabledChange", "elementAttrChange", "heightChange", "pulledDownTextChange", "pullingDownTextChange", "reachBottomTextChange", "refreshingTextChange", "rtlEnabledChange", "scrollByContentChange", "scrollByThumbChange", "showScrollbarChange", "useNativeChange", "widthChange"] }, { kind: "component", type: i2.DxPopupComponent, selector: "dx-popup", inputs: ["accessKey", "animation", "closeOnOutsideClick", "container", "contentTemplate", "
|
16
|
+
PopupContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PopupContainerComponent, selector: "dxv-daterange-popup", inputs: { data: "data" }, ngImport: i0, template: "<dx-popup role=\"dialog\" aria-modal=\"true\" \n[width]=\"popupOptions.width\"\n[height]=\"popupOptions.height\"\n[wrapperAttr]=\"popupOptions.wrapperAttr\"\n[position]=\"popupOptions.position\"\n[container]=\"popupOptions.container\"\n[showTitle]=\"popupOptions.showTitle\"\n[showCloseButton]=\"popupOptions.showCloseButton\"\n[hideOnOutsideClick]=\"popupOptions.hideOnOutsideClick\"\n(onHidden)=\"popupOptions.onHidden($event)\"\n[animation]=\"popupOptions.animation\"\n[shading]=\"popupOptions.shading\"\n[visible]=\"popupOptions.visible\"\n>\n <dx-scroll-view \n [showScrollbar]=\"data.scrollViewOptions.showScrollbar\"\n [direction]=\"data.scrollViewOptions.direction\"\n [useNative]=\"data.scrollViewOptions.useNative\"\n (onInitialized)=\"data.scrollViewOptions.onInitialized($event)\"\n >\n <div class=\"dxrv-daterange-editor-popup-container\" [dxMutationObserver]=\"data.dialogKeyboardHelper\">\n <dx-scroll-view role=\"listbox\" class=\"dxrv-daterange-editor-list dxrv-daterange-editor-item dxd-border-primary dx-accessibility-daterange-item\" \n [showScrollbar]=\"data.predefinedRanges.scrollViewOptions.showScrollbar\"\n [scrollByContent]=\"data.predefinedRanges.scrollViewOptions.scrollByContent\"\n [bounceEnabled]=\"data.predefinedRanges.scrollViewOptions.bounceEnabled\"\n [useNative]=\"data.predefinedRanges.scrollViewOptions.useNative\"\n [scrollByThumb]=\"data.predefinedRanges.scrollViewOptions.scrollByThumb\"\n (onInitialized)=\"data.predefinedRanges.scrollViewOptions.onInitialized($event)\"\n [dxMutationObserver]=\"data.predefinedRanges.accessibilityKeyboardHelper\"\n >\n <div class=\"dx-accessibility-container-background dxd-back-accented\"></div>\n <div *ngFor=\"let item of data.predefinedRanges.items\" role=\"option\" class=\"dxrv-daterange-editor-list-item dxd-state-normal dxd-back-highlighted dx-accessibility-list-item dx-accessibility-focus-border-accented\"\n [attr.aria-selected]=\"item.selected\"\n [class.dxd-state-selected]=\"item.selected\" [dxAction]=\"item.click\">\n <div class=\"dx-accessibility-field-background dxd-back-accented\"></div>\n {{item.displayName}}\n </div>\n </dx-scroll-view>\n <div class=\"dxrv-daterange-editor-item\">\n <div class=\"dx-accessibility-container-background dxd-back-accented\"></div>\n <dxa-template template=\"dxrv-daterange-calendar\" [data]=\"data.startRange\"></dxa-template>\n </div>\n <div class=\"dxrv-daterange-editor-item\">\n <div class=\"dx-accessibility-container-background dxd-back-accented\"></div>\n <dxa-template template=\"dxrv-daterange-calendar\" [data]=\"data.endRange\"></dxa-template>\n </div>\n </div>\n </dx-scroll-view>\n</dx-popup>", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: i2.DxScrollViewComponent, selector: "dx-scroll-view", inputs: ["bounceEnabled", "direction", "disabled", "elementAttr", "height", "pulledDownText", "pullingDownText", "reachBottomText", "refreshingText", "rtlEnabled", "scrollByContent", "scrollByThumb", "showScrollbar", "useNative", "width"], outputs: ["onDisposing", "onInitialized", "onOptionChanged", "onPullDown", "onReachBottom", "onScroll", "onUpdated", "bounceEnabledChange", "directionChange", "disabledChange", "elementAttrChange", "heightChange", "pulledDownTextChange", "pullingDownTextChange", "reachBottomTextChange", "refreshingTextChange", "rtlEnabledChange", "scrollByContentChange", "scrollByThumbChange", "showScrollbarChange", "useNativeChange", "widthChange"] }, { kind: "component", type: i2.DxPopupComponent, selector: "dx-popup", inputs: ["accessKey", "animation", "closeOnOutsideClick", "container", "contentTemplate", "deferRendering", "disabled", "dragAndResizeArea", "dragEnabled", "dragOutsideBoundary", "enableBodyScroll", "focusStateEnabled", "fullScreen", "height", "hideOnOutsideClick", "hideOnParentScroll", "hint", "hoverStateEnabled", "maxHeight", "maxWidth", "minHeight", "minWidth", "position", "resizeEnabled", "restorePosition", "rtlEnabled", "shading", "shadingColor", "showCloseButton", "showTitle", "tabIndex", "title", "titleTemplate", "toolbarItems", "visible", "width", "wrapperAttr"], outputs: ["onContentReady", "onDisposing", "onHidden", "onHiding", "onInitialized", "onOptionChanged", "onResize", "onResizeEnd", "onResizeStart", "onShowing", "onShown", "onTitleRendered", "accessKeyChange", "animationChange", "closeOnOutsideClickChange", "containerChange", "contentTemplateChange", "deferRenderingChange", "disabledChange", "dragAndResizeAreaChange", "dragEnabledChange", "dragOutsideBoundaryChange", "enableBodyScrollChange", "focusStateEnabledChange", "fullScreenChange", "heightChange", "hideOnOutsideClickChange", "hideOnParentScrollChange", "hintChange", "hoverStateEnabledChange", "maxHeightChange", "maxWidthChange", "minHeightChange", "minWidthChange", "positionChange", "resizeEnabledChange", "restorePositionChange", "rtlEnabledChange", "shadingChange", "shadingColorChange", "showCloseButtonChange", "showTitleChange", "tabIndexChange", "titleChange", "titleTemplateChange", "toolbarItemsChange", "visibleChange", "widthChange", "wrapperAttrChange"] }, { kind: "component", type: i3.TemplateComponent, selector: "dxa-template", inputs: ["data", "template"] }, { kind: "directive", type: i4.DxActionDirective, selector: "[dxAction]", inputs: ["dxActionModel", "dxAction"] }, { kind: "directive", type: i5.DxMutationObserverDirective, selector: "[dxMutationObserver]", inputs: ["dxMutationObserver"] }] });
|
17
17
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PopupContainerComponent, decorators: [{
|
18
18
|
type: Component,
|
19
19
|
args: [{ selector: 'dxv-daterange-popup', template: "<dx-popup role=\"dialog\" aria-modal=\"true\" \n[width]=\"popupOptions.width\"\n[height]=\"popupOptions.height\"\n[wrapperAttr]=\"popupOptions.wrapperAttr\"\n[position]=\"popupOptions.position\"\n[container]=\"popupOptions.container\"\n[showTitle]=\"popupOptions.showTitle\"\n[showCloseButton]=\"popupOptions.showCloseButton\"\n[hideOnOutsideClick]=\"popupOptions.hideOnOutsideClick\"\n(onHidden)=\"popupOptions.onHidden($event)\"\n[animation]=\"popupOptions.animation\"\n[shading]=\"popupOptions.shading\"\n[visible]=\"popupOptions.visible\"\n>\n <dx-scroll-view \n [showScrollbar]=\"data.scrollViewOptions.showScrollbar\"\n [direction]=\"data.scrollViewOptions.direction\"\n [useNative]=\"data.scrollViewOptions.useNative\"\n (onInitialized)=\"data.scrollViewOptions.onInitialized($event)\"\n >\n <div class=\"dxrv-daterange-editor-popup-container\" [dxMutationObserver]=\"data.dialogKeyboardHelper\">\n <dx-scroll-view role=\"listbox\" class=\"dxrv-daterange-editor-list dxrv-daterange-editor-item dxd-border-primary dx-accessibility-daterange-item\" \n [showScrollbar]=\"data.predefinedRanges.scrollViewOptions.showScrollbar\"\n [scrollByContent]=\"data.predefinedRanges.scrollViewOptions.scrollByContent\"\n [bounceEnabled]=\"data.predefinedRanges.scrollViewOptions.bounceEnabled\"\n [useNative]=\"data.predefinedRanges.scrollViewOptions.useNative\"\n [scrollByThumb]=\"data.predefinedRanges.scrollViewOptions.scrollByThumb\"\n (onInitialized)=\"data.predefinedRanges.scrollViewOptions.onInitialized($event)\"\n [dxMutationObserver]=\"data.predefinedRanges.accessibilityKeyboardHelper\"\n >\n <div class=\"dx-accessibility-container-background dxd-back-accented\"></div>\n <div *ngFor=\"let item of data.predefinedRanges.items\" role=\"option\" class=\"dxrv-daterange-editor-list-item dxd-state-normal dxd-back-highlighted dx-accessibility-list-item dx-accessibility-focus-border-accented\"\n [attr.aria-selected]=\"item.selected\"\n [class.dxd-state-selected]=\"item.selected\" [dxAction]=\"item.click\">\n <div class=\"dx-accessibility-field-background dxd-back-accented\"></div>\n {{item.displayName}}\n </div>\n </dx-scroll-view>\n <div class=\"dxrv-daterange-editor-item\">\n <div class=\"dx-accessibility-container-background dxd-back-accented\"></div>\n <dxa-template template=\"dxrv-daterange-calendar\" [data]=\"data.startRange\"></dxa-template>\n </div>\n <div class=\"dxrv-daterange-editor-item\">\n <div class=\"dx-accessibility-container-background dxd-back-accented\"></div>\n <dxa-template template=\"dxrv-daterange-calendar\" [data]=\"data.endRange\"></dxa-template>\n </div>\n </div>\n </dx-scroll-view>\n</dx-popup>" }]
|