igniteui-angular-inputs 18.1.1 → 18.2.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-angular-inputs.umd.js +16857 -7563
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +19 -19
- package/esm2015/lib/ButtonView_combined.js +820 -790
- package/esm2015/lib/CalendarView_combined.js +82 -82
- package/esm2015/lib/ColorEditor.js +7 -0
- package/esm2015/lib/ColorEditorBridge.js +7 -0
- package/esm2015/lib/ColorEditorGotFocusEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorLostFocusEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorPanel.js +7 -0
- package/esm2015/lib/ColorEditorPanelClosedEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +33 -0
- package/esm2015/lib/ColorEditorPanelView.js +7 -0
- package/esm2015/lib/ColorEditorView.js +7 -0
- package/esm2015/lib/DatePickerView_combined.js +18 -18
- package/esm2015/lib/DefaultMultiSliderTrackBarVisual.js +113 -0
- package/esm2015/lib/DefaultMultiSliderTrackRangeVisual.js +208 -0
- package/esm2015/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +170 -0
- package/esm2015/lib/DefaultMultiSliderTrackThumbVisual.js +193 -0
- package/esm2015/lib/DefaultMultiTrackShadeVisual.js +172 -0
- package/esm2015/lib/IMultiSliderTrackBarVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackRangeVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackShadeVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackThumbVisual.js +11 -0
- package/esm2015/lib/ISliderTrackOwner.js +11 -0
- package/esm2015/lib/IconClickedEventArgs.js +10 -0
- package/esm2015/lib/IconView_combined.js +345 -314
- package/esm2015/lib/InputGroupView_combined.js +456 -355
- package/esm2015/lib/MultiSlider.js +7 -0
- package/esm2015/lib/MultiSliderBridge.js +165 -0
- package/esm2015/lib/MultiSliderCursor.js +11 -0
- package/esm2015/lib/MultiSliderHitInfo.js +22 -0
- package/esm2015/lib/MultiSliderOrientation.js +17 -0
- package/esm2015/lib/MultiSliderResolvingToolTipValueEventArgs.js +33 -0
- package/esm2015/lib/MultiSliderThumb.js +7 -0
- package/esm2015/lib/MultiSliderThumbCollection.js +21 -0
- package/esm2015/lib/MultiSliderThumbRangePosition.js +16 -0
- package/esm2015/lib/MultiSliderThumbValueChangingEventArgs.js +21 -0
- package/esm2015/lib/MultiSliderThumb_combined.js +297 -0
- package/esm2015/lib/MultiSliderTrackShadeOrientation.js +11 -0
- package/esm2015/lib/MultiSliderTrackThumbRange.js +7 -0
- package/esm2015/lib/MultiSliderView.js +7 -0
- package/esm2015/lib/MultiSliderView_combined.js +1785 -0
- package/esm2015/lib/MultiSliderVisualArea.js +11 -0
- package/esm2015/lib/MultiSliderYValueChangingEventArgs.js +20 -0
- package/esm2015/lib/NativeUIXInputsFactory.js +1 -179
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +2113 -0
- package/esm2015/lib/XButtonBridge.js +25 -20
- package/esm2015/lib/XButtonGroupBridge.js +177 -0
- package/esm2015/lib/XComponentBridge.js +3 -0
- package/esm2015/lib/XIconBridge.js +20 -16
- package/esm2015/lib/XInputBridge.js +274 -26
- package/esm2015/lib/XPopupBridge.js +117 -98
- package/esm2015/lib/igx-color-editor-component.js +470 -0
- package/esm2015/lib/igx-color-editor-dynamic-module.js +45 -0
- package/esm2015/lib/igx-color-editor-got-focus-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-lost-focus-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-module.js +39 -0
- package/esm2015/lib/igx-color-editor-panel-closed-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-panel-component.js +376 -0
- package/esm2015/lib/igx-color-editor-panel-dynamic-module.js +66 -0
- package/esm2015/lib/igx-color-editor-panel-module.js +60 -0
- package/esm2015/lib/igx-color-editor-panel-selected-value-changed-event-args.js +40 -0
- package/esm2015/lib/igx-multi-slider-component.js +642 -0
- package/esm2015/lib/igx-multi-slider-dynamic-module.js +38 -0
- package/esm2015/lib/igx-multi-slider-module.js +36 -0
- package/esm2015/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +39 -0
- package/esm2015/lib/igx-multi-slider-thumb-collection.js +53 -0
- package/esm2015/lib/igx-multi-slider-thumb-value-changing-event-args.js +56 -0
- package/esm2015/lib/igx-multi-slider-thumb.js +111 -0
- package/esm2015/lib/igx-multi-slider-track-thumb-range.js +119 -0
- package/esm2015/lib/igx-multi-slider-y-value-changing-event-args.js +33 -0
- package/esm2015/lib/igx-x-button-component.js +262 -262
- package/esm2015/lib/igx-x-icon-component.js +66 -55
- package/esm2015/lib/igx-x-input-group-component.js +48 -48
- package/esm2015/lib/igx-x-label-component.js +41 -40
- package/esm2015/public_api.js +55 -0
- package/esm5/lib/ButtonGroupView_combined.js +19 -19
- package/esm5/lib/ButtonView_combined.js +765 -735
- package/esm5/lib/CalendarView_combined.js +82 -82
- package/esm5/lib/ColorEditor.js +7 -0
- package/esm5/lib/ColorEditorBridge.js +7 -0
- package/esm5/lib/ColorEditorGotFocusEventArgs.js +20 -0
- package/esm5/lib/ColorEditorLostFocusEventArgs.js +20 -0
- package/esm5/lib/ColorEditorPanel.js +7 -0
- package/esm5/lib/ColorEditorPanelClosedEventArgs.js +20 -0
- package/esm5/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +43 -0
- package/esm5/lib/ColorEditorPanelView.js +7 -0
- package/esm5/lib/ColorEditorView.js +7 -0
- package/esm5/lib/DatePickerView_combined.js +18 -18
- package/esm5/lib/DefaultMultiSliderTrackBarVisual.js +139 -0
- package/esm5/lib/DefaultMultiSliderTrackRangeVisual.js +242 -0
- package/esm5/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +212 -0
- package/esm5/lib/DefaultMultiSliderTrackThumbVisual.js +227 -0
- package/esm5/lib/DefaultMultiTrackShadeVisual.js +206 -0
- package/esm5/lib/IMultiSliderTrackBarVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackRangeVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackShadeVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackThumbVisual.js +11 -0
- package/esm5/lib/ISliderTrackOwner.js +11 -0
- package/esm5/lib/IconClickedEventArgs.js +13 -1
- package/esm5/lib/IconView_combined.js +336 -301
- package/esm5/lib/InputGroupView_combined.js +444 -343
- package/esm5/lib/MultiSlider.js +7 -0
- package/esm5/lib/MultiSliderBridge.js +167 -0
- package/esm5/lib/MultiSliderCursor.js +11 -0
- package/esm5/lib/MultiSliderHitInfo.js +24 -0
- package/esm5/lib/MultiSliderOrientation.js +17 -0
- package/esm5/lib/MultiSliderResolvingToolTipValueEventArgs.js +43 -0
- package/esm5/lib/MultiSliderThumb.js +7 -0
- package/esm5/lib/MultiSliderThumbCollection.js +22 -0
- package/esm5/lib/MultiSliderThumbRangePosition.js +16 -0
- package/esm5/lib/MultiSliderThumbValueChangingEventArgs.js +23 -0
- package/esm5/lib/MultiSliderThumb_combined.js +352 -0
- package/esm5/lib/MultiSliderTrackShadeOrientation.js +11 -0
- package/esm5/lib/MultiSliderTrackThumbRange.js +7 -0
- package/esm5/lib/MultiSliderView.js +7 -0
- package/esm5/lib/MultiSliderView_combined.js +2006 -0
- package/esm5/lib/MultiSliderVisualArea.js +11 -0
- package/esm5/lib/MultiSliderYValueChangingEventArgs.js +22 -0
- package/esm5/lib/NativeUIXInputsFactory.js +1 -189
- package/esm5/lib/NativeUIXInputsFactory_combined.js +2298 -0
- package/esm5/lib/XButtonBridge.js +25 -20
- package/esm5/lib/XButtonGroupBridge.js +179 -0
- package/esm5/lib/XComponentBridge.js +3 -0
- package/esm5/lib/XIconBridge.js +20 -16
- package/esm5/lib/XInputBridge.js +274 -26
- package/esm5/lib/XPopupBridge.js +117 -98
- package/esm5/lib/igx-color-editor-component.js +555 -0
- package/esm5/lib/igx-color-editor-dynamic-module.js +44 -0
- package/esm5/lib/igx-color-editor-got-focus-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-lost-focus-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-module.js +38 -0
- package/esm5/lib/igx-color-editor-panel-closed-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-panel-component.js +435 -0
- package/esm5/lib/igx-color-editor-panel-dynamic-module.js +65 -0
- package/esm5/lib/igx-color-editor-panel-module.js +59 -0
- package/esm5/lib/igx-color-editor-panel-selected-value-changed-event-args.js +54 -0
- package/esm5/lib/igx-multi-slider-component.js +842 -0
- package/esm5/lib/igx-multi-slider-dynamic-module.js +37 -0
- package/esm5/lib/igx-multi-slider-module.js +35 -0
- package/esm5/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +53 -0
- package/esm5/lib/igx-multi-slider-thumb-collection.js +58 -0
- package/esm5/lib/igx-multi-slider-thumb-value-changing-event-args.js +70 -0
- package/esm5/lib/igx-multi-slider-thumb.js +134 -0
- package/esm5/lib/igx-multi-slider-track-thumb-range.js +149 -0
- package/esm5/lib/igx-multi-slider-y-value-changing-event-args.js +43 -0
- package/esm5/lib/igx-x-button-component.js +262 -262
- package/esm5/lib/igx-x-icon-component.js +70 -55
- package/esm5/lib/igx-x-input-group-component.js +48 -48
- package/esm5/lib/igx-x-label-component.js +41 -40
- package/esm5/public_api.js +55 -0
- package/fesm2015/igniteui-angular-inputs.js +15626 -7466
- package/fesm5/igniteui-angular-inputs.js +16802 -7565
- package/lib/ButtonView_combined.d.ts +243 -241
- package/lib/ColorEditor.d.ts +1 -0
- package/lib/ColorEditorBridge.d.ts +1 -0
- package/lib/ColorEditorGotFocusEventArgs.d.ts +7 -0
- package/lib/ColorEditorLostFocusEventArgs.d.ts +7 -0
- package/lib/ColorEditorPanel.d.ts +1 -0
- package/lib/ColorEditorPanelClosedEventArgs.d.ts +7 -0
- package/lib/ColorEditorPanelSelectedValueChangedEventArgs.d.ts +14 -0
- package/lib/ColorEditorPanelView.d.ts +1 -0
- package/lib/ColorEditorView.d.ts +1 -0
- package/lib/DefaultMultiSliderTrackBarVisual.d.ts +34 -0
- package/lib/DefaultMultiSliderTrackRangeVisual.d.ts +43 -0
- package/lib/DefaultMultiSliderTrackThumbCalloutVisual.d.ts +49 -0
- package/lib/DefaultMultiSliderTrackThumbVisual.d.ts +45 -0
- package/lib/DefaultMultiTrackShadeVisual.d.ts +42 -0
- package/lib/IMultiSliderTrackBarVisual.d.ts +21 -0
- package/lib/IMultiSliderTrackRangeVisual.d.ts +25 -0
- package/lib/IMultiSliderTrackShadeVisual.d.ts +24 -0
- package/lib/IMultiSliderTrackThumbCalloutVisual.d.ts +27 -0
- package/lib/IMultiSliderTrackThumbVisual.d.ts +27 -0
- package/lib/ISliderTrackOwner.d.ts +15 -0
- package/lib/IconClickedEventArgs.d.ts +3 -0
- package/lib/IconView_combined.d.ts +88 -84
- package/lib/InputGroupView_combined.d.ts +120 -113
- package/lib/MultiSlider.d.ts +1 -0
- package/lib/MultiSliderBridge.d.ts +24 -0
- package/lib/MultiSliderCursor.d.ts +15 -0
- package/lib/MultiSliderHitInfo.d.ts +13 -0
- package/lib/MultiSliderOrientation.d.ts +10 -0
- package/lib/MultiSliderResolvingToolTipValueEventArgs.d.ts +13 -0
- package/lib/MultiSliderThumb.d.ts +1 -0
- package/lib/MultiSliderThumbCollection.d.ts +10 -0
- package/lib/MultiSliderThumbRangePosition.d.ts +9 -0
- package/lib/MultiSliderThumbValueChangingEventArgs.d.ts +10 -0
- package/lib/MultiSliderThumb_combined.d.ts +76 -0
- package/lib/MultiSliderTrackShadeOrientation.d.ts +14 -0
- package/lib/MultiSliderTrackThumbRange.d.ts +1 -0
- package/lib/MultiSliderView.d.ts +1 -0
- package/lib/MultiSliderView_combined.d.ts +298 -0
- package/lib/MultiSliderVisualArea.d.ts +14 -0
- package/lib/MultiSliderYValueChangingEventArgs.d.ts +8 -0
- package/lib/NativeUIXInputsFactory.d.ts +1 -24
- package/lib/NativeUIXInputsFactory_combined.d.ts +393 -0
- package/lib/XButtonGroupBridge.d.ts +29 -0
- package/lib/XInputBridge.d.ts +29 -5
- package/lib/XPopupBridge.d.ts +12 -9
- package/lib/igx-color-editor-component.d.ts +161 -0
- package/lib/igx-color-editor-dynamic-module.d.ts +10 -0
- package/lib/igx-color-editor-got-focus-event-args.d.ts +12 -0
- package/lib/igx-color-editor-lost-focus-event-args.d.ts +12 -0
- package/lib/igx-color-editor-module.d.ts +10 -0
- package/lib/igx-color-editor-panel-closed-event-args.d.ts +12 -0
- package/lib/igx-color-editor-panel-component.d.ts +125 -0
- package/lib/igx-color-editor-panel-dynamic-module.d.ts +13 -0
- package/lib/igx-color-editor-panel-module.d.ts +13 -0
- package/lib/igx-color-editor-panel-selected-value-changed-event-args.d.ts +16 -0
- package/lib/igx-multi-slider-component.d.ts +200 -0
- package/lib/igx-multi-slider-dynamic-module.d.ts +9 -0
- package/lib/igx-multi-slider-module.d.ts +9 -0
- package/lib/igx-multi-slider-resolving-tool-tip-value-event-args.d.ts +17 -0
- package/lib/igx-multi-slider-thumb-collection.d.ts +8 -0
- package/lib/igx-multi-slider-thumb-value-changing-event-args.d.ts +18 -0
- package/lib/igx-multi-slider-thumb.d.ts +33 -0
- package/lib/igx-multi-slider-track-thumb-range.d.ts +32 -0
- package/lib/igx-multi-slider-y-value-changing-event-args.d.ts +15 -0
- package/lib/igx-x-icon-component.d.ts +6 -1
- package/package.json +2 -2
- package/public_api.d.ts +55 -0
|
@@ -0,0 +1,642 @@
|
|
|
1
|
+
import { EventEmitter, Output, Component, Input, ChangeDetectionStrategy } from '@angular/core';
|
|
2
|
+
import { delegateCombine } from "igniteui-angular-core";
|
|
3
|
+
import { IgxMultiSliderThumbCollection } from "./igx-multi-slider-thumb-collection";
|
|
4
|
+
import { MultiSliderOrientation_$type } from "./MultiSliderOrientation";
|
|
5
|
+
import { IgxMultiSliderResolvingToolTipValueEventArgs } from "./igx-multi-slider-resolving-tool-tip-value-event-args";
|
|
6
|
+
import { IgxMultiSliderThumbValueChangingEventArgs } from "./igx-multi-slider-thumb-value-changing-event-args";
|
|
7
|
+
import { IgxMultiSliderYValueChangingEventArgs } from "./igx-multi-slider-y-value-changing-event-args";
|
|
8
|
+
import { MultiSlider } from "./MultiSlider";
|
|
9
|
+
import { TypeRegistrar } from "igniteui-angular-core";
|
|
10
|
+
import { NamePatcher, fromRect, toRect, ensureEnum, brushToString, stringToBrush, ensureBool, toSpinal, initializePropertiesFromCss } from "igniteui-angular-core";
|
|
11
|
+
import { MultiSliderThumbCollection as MultiSliderThumbCollection_internal } from "./MultiSliderThumbCollection";
|
|
12
|
+
import { MultiSliderThumb } from "./MultiSliderThumb";
|
|
13
|
+
import { SyncableObservableCollection$1 } from "igniteui-angular-core";
|
|
14
|
+
import { FontInfo } from "igniteui-angular-core";
|
|
15
|
+
import * as i0 from "@angular/core";
|
|
16
|
+
export let IgxMultiSliderComponent = /*@__PURE__*/ (() => {
|
|
17
|
+
class IgxMultiSliderComponent {
|
|
18
|
+
constructor() {
|
|
19
|
+
this._thumbs = null;
|
|
20
|
+
this.__p = null;
|
|
21
|
+
this._hasUserValues = new Set();
|
|
22
|
+
this._stylingContainer = null;
|
|
23
|
+
this._stylingParent = null;
|
|
24
|
+
this._inStyling = false;
|
|
25
|
+
this._resolvingToolTipValue = null;
|
|
26
|
+
this._thumbValueChanging = null;
|
|
27
|
+
this._thumbValueChanged = null;
|
|
28
|
+
this._yValueChanging = null;
|
|
29
|
+
this._yValueChanged = null;
|
|
30
|
+
this._zoneRunner = null;
|
|
31
|
+
if (this._styling) {
|
|
32
|
+
NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
|
|
33
|
+
}
|
|
34
|
+
this._implementation = this.createImplementation();
|
|
35
|
+
this._implementation.externalObject = this;
|
|
36
|
+
this.onImplementationCreated();
|
|
37
|
+
if (this._initializeAdapters) {
|
|
38
|
+
this._initializeAdapters();
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
createImplementation() {
|
|
42
|
+
return new MultiSlider();
|
|
43
|
+
}
|
|
44
|
+
ngOnInit() {
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* @hidden
|
|
48
|
+
*/
|
|
49
|
+
get i() {
|
|
50
|
+
return this._implementation;
|
|
51
|
+
} /**
|
|
52
|
+
* @hidden
|
|
53
|
+
*/
|
|
54
|
+
static _createFromInternal(internal) {
|
|
55
|
+
if (!internal) {
|
|
56
|
+
return null;
|
|
57
|
+
}
|
|
58
|
+
if (!internal.$type) {
|
|
59
|
+
return null;
|
|
60
|
+
}
|
|
61
|
+
let name = internal.$type.name;
|
|
62
|
+
let externalName = "Igx" + name + "Component";
|
|
63
|
+
if (!TypeRegistrar.isRegistered(externalName)) {
|
|
64
|
+
return null;
|
|
65
|
+
}
|
|
66
|
+
return TypeRegistrar.create(externalName);
|
|
67
|
+
}
|
|
68
|
+
onImplementationCreated() {
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Gets the column definitions that are assigned to the grid. This collection can be modified to add or remove columns in the grid.
|
|
72
|
+
*/
|
|
73
|
+
get thumbs() {
|
|
74
|
+
if (this._thumbs === null) {
|
|
75
|
+
let coll = new IgxMultiSliderThumbCollection();
|
|
76
|
+
let innerColl = this.i.thumbs;
|
|
77
|
+
if (!innerColl) {
|
|
78
|
+
innerColl = new MultiSliderThumbCollection_internal();
|
|
79
|
+
}
|
|
80
|
+
this._thumbs = coll._fromInner(innerColl);
|
|
81
|
+
}
|
|
82
|
+
return this._thumbs;
|
|
83
|
+
}
|
|
84
|
+
set thumbs(v) {
|
|
85
|
+
if (this._thumbs !== null) {
|
|
86
|
+
this._thumbs._setSyncTarget(null);
|
|
87
|
+
this._thumbs = null;
|
|
88
|
+
}
|
|
89
|
+
let coll = new IgxMultiSliderThumbCollection();
|
|
90
|
+
this._thumbs = coll._fromOuter(v);
|
|
91
|
+
let syncColl = new SyncableObservableCollection$1(MultiSliderThumb.$type);
|
|
92
|
+
let innerColl = this.i.thumbs;
|
|
93
|
+
if (!innerColl) {
|
|
94
|
+
innerColl = new MultiSliderThumbCollection_internal();
|
|
95
|
+
}
|
|
96
|
+
syncColl._inner = innerColl;
|
|
97
|
+
syncColl.clear();
|
|
98
|
+
this._thumbs._setSyncTarget(syncColl);
|
|
99
|
+
}
|
|
100
|
+
get min() {
|
|
101
|
+
return this.i.bg;
|
|
102
|
+
}
|
|
103
|
+
set min(v) {
|
|
104
|
+
this.i.bg = +v;
|
|
105
|
+
}
|
|
106
|
+
get max() {
|
|
107
|
+
return this.i.bf;
|
|
108
|
+
}
|
|
109
|
+
set max(v) {
|
|
110
|
+
this.i.bf = +v;
|
|
111
|
+
}
|
|
112
|
+
get step() {
|
|
113
|
+
return this.i.bl;
|
|
114
|
+
}
|
|
115
|
+
set step(v) {
|
|
116
|
+
this.i.bl = +v;
|
|
117
|
+
}
|
|
118
|
+
get yMax() {
|
|
119
|
+
return this.i.bu;
|
|
120
|
+
}
|
|
121
|
+
set yMax(v) {
|
|
122
|
+
this.i.bu = +v;
|
|
123
|
+
}
|
|
124
|
+
get yMin() {
|
|
125
|
+
return this.i.bv;
|
|
126
|
+
}
|
|
127
|
+
set yMin(v) {
|
|
128
|
+
this.i.bv = +v;
|
|
129
|
+
}
|
|
130
|
+
get yStep() {
|
|
131
|
+
return this.i.bx;
|
|
132
|
+
}
|
|
133
|
+
set yStep(v) {
|
|
134
|
+
this.i.bx = +v;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* Gets or sets the scaling value used to affect the pixel density of the control.
|
|
138
|
+
* A higher scaling ratio will produce crisper visuals at the expense of memory. Lower values will cause the control
|
|
139
|
+
* to appear blurry.
|
|
140
|
+
*/
|
|
141
|
+
get pixelScalingRatio() {
|
|
142
|
+
return this.i.bh;
|
|
143
|
+
}
|
|
144
|
+
set pixelScalingRatio(v) {
|
|
145
|
+
this.i.bh = +v;
|
|
146
|
+
}
|
|
147
|
+
get actualPixelScalingRatio() {
|
|
148
|
+
return this.i.a9;
|
|
149
|
+
}
|
|
150
|
+
set actualPixelScalingRatio(v) {
|
|
151
|
+
this.i.a9 = +v;
|
|
152
|
+
}
|
|
153
|
+
get windowRect() {
|
|
154
|
+
return fromRect(this.i.e1);
|
|
155
|
+
}
|
|
156
|
+
set windowRect(v) {
|
|
157
|
+
this.i.e1 = toRect(v);
|
|
158
|
+
}
|
|
159
|
+
get yValue() {
|
|
160
|
+
return this.i.b0;
|
|
161
|
+
}
|
|
162
|
+
set yValue(v) {
|
|
163
|
+
this.i.b0 = +v;
|
|
164
|
+
}
|
|
165
|
+
get startInset() {
|
|
166
|
+
return this.i.bk;
|
|
167
|
+
}
|
|
168
|
+
set startInset(v) {
|
|
169
|
+
this.i.bk = +v;
|
|
170
|
+
}
|
|
171
|
+
get endInset() {
|
|
172
|
+
return this.i.be;
|
|
173
|
+
}
|
|
174
|
+
set endInset(v) {
|
|
175
|
+
this.i.be = +v;
|
|
176
|
+
}
|
|
177
|
+
get trackStartInset() {
|
|
178
|
+
return this.i.bq;
|
|
179
|
+
}
|
|
180
|
+
set trackStartInset(v) {
|
|
181
|
+
this.i.bq = +v;
|
|
182
|
+
}
|
|
183
|
+
get trackEndInset() {
|
|
184
|
+
return this.i.bp;
|
|
185
|
+
}
|
|
186
|
+
set trackEndInset(v) {
|
|
187
|
+
this.i.bp = +v;
|
|
188
|
+
}
|
|
189
|
+
get yTrackStartInset() {
|
|
190
|
+
return this.i.bz;
|
|
191
|
+
}
|
|
192
|
+
set yTrackStartInset(v) {
|
|
193
|
+
this.i.bz = +v;
|
|
194
|
+
}
|
|
195
|
+
get yTrackEndInset() {
|
|
196
|
+
return this.i.by;
|
|
197
|
+
}
|
|
198
|
+
set yTrackEndInset(v) {
|
|
199
|
+
this.i.by = +v;
|
|
200
|
+
}
|
|
201
|
+
get barExtent() {
|
|
202
|
+
return this.i.bb;
|
|
203
|
+
}
|
|
204
|
+
set barExtent(v) {
|
|
205
|
+
this.i.bb = +v;
|
|
206
|
+
}
|
|
207
|
+
get orientation() {
|
|
208
|
+
return this.i.e;
|
|
209
|
+
}
|
|
210
|
+
set orientation(v) {
|
|
211
|
+
this.i.e = ensureEnum(MultiSliderOrientation_$type, v);
|
|
212
|
+
}
|
|
213
|
+
get thumbBrush() {
|
|
214
|
+
return brushToString(this.i.es);
|
|
215
|
+
}
|
|
216
|
+
set thumbBrush(v) {
|
|
217
|
+
this.i.es = stringToBrush(v);
|
|
218
|
+
}
|
|
219
|
+
get thumbStrokeThickness() {
|
|
220
|
+
return this.i.bn;
|
|
221
|
+
}
|
|
222
|
+
set thumbStrokeThickness(v) {
|
|
223
|
+
this.i.bn = +v;
|
|
224
|
+
}
|
|
225
|
+
get thumbOutline() {
|
|
226
|
+
return brushToString(this.i.et);
|
|
227
|
+
}
|
|
228
|
+
set thumbOutline(v) {
|
|
229
|
+
this.i.et = stringToBrush(v);
|
|
230
|
+
}
|
|
231
|
+
get thumbWidth() {
|
|
232
|
+
return this.i.bo;
|
|
233
|
+
}
|
|
234
|
+
set thumbWidth(v) {
|
|
235
|
+
this.i.bo = +v;
|
|
236
|
+
}
|
|
237
|
+
get thumbHeight() {
|
|
238
|
+
return this.i.bm;
|
|
239
|
+
}
|
|
240
|
+
set thumbHeight(v) {
|
|
241
|
+
this.i.bm = +v;
|
|
242
|
+
}
|
|
243
|
+
get barBrush() {
|
|
244
|
+
return brushToString(this.i.ek);
|
|
245
|
+
}
|
|
246
|
+
set barBrush(v) {
|
|
247
|
+
this.i.ek = stringToBrush(v);
|
|
248
|
+
}
|
|
249
|
+
get barOutline() {
|
|
250
|
+
return brushToString(this.i.el);
|
|
251
|
+
}
|
|
252
|
+
set barOutline(v) {
|
|
253
|
+
this.i.el = stringToBrush(v);
|
|
254
|
+
}
|
|
255
|
+
get barStrokeThickness() {
|
|
256
|
+
return this.i.bc;
|
|
257
|
+
}
|
|
258
|
+
set barStrokeThickness(v) {
|
|
259
|
+
this.i.bc = +v;
|
|
260
|
+
}
|
|
261
|
+
get rangeThumbBrush() {
|
|
262
|
+
return brushToString(this.i.ep);
|
|
263
|
+
}
|
|
264
|
+
set rangeThumbBrush(v) {
|
|
265
|
+
this.i.ep = stringToBrush(v);
|
|
266
|
+
}
|
|
267
|
+
get rangeThumbOutline() {
|
|
268
|
+
return brushToString(this.i.eq);
|
|
269
|
+
}
|
|
270
|
+
set rangeThumbOutline(v) {
|
|
271
|
+
this.i.eq = stringToBrush(v);
|
|
272
|
+
}
|
|
273
|
+
get rangeThumbStrokeThickness() {
|
|
274
|
+
return this.i.bj;
|
|
275
|
+
}
|
|
276
|
+
set rangeThumbStrokeThickness(v) {
|
|
277
|
+
this.i.bj = +v;
|
|
278
|
+
}
|
|
279
|
+
get rangeThumbRidgesBrush() {
|
|
280
|
+
return brushToString(this.i.er);
|
|
281
|
+
}
|
|
282
|
+
set rangeThumbRidgesBrush(v) {
|
|
283
|
+
this.i.er = stringToBrush(v);
|
|
284
|
+
}
|
|
285
|
+
get thumbRidgesBrush() {
|
|
286
|
+
return brushToString(this.i.eu);
|
|
287
|
+
}
|
|
288
|
+
set thumbRidgesBrush(v) {
|
|
289
|
+
this.i.eu = stringToBrush(v);
|
|
290
|
+
}
|
|
291
|
+
get calloutBrush() {
|
|
292
|
+
return brushToString(this.i.em);
|
|
293
|
+
}
|
|
294
|
+
set calloutBrush(v) {
|
|
295
|
+
this.i.em = stringToBrush(v);
|
|
296
|
+
}
|
|
297
|
+
get calloutTextColor() {
|
|
298
|
+
return brushToString(this.i.eo);
|
|
299
|
+
}
|
|
300
|
+
set calloutTextColor(v) {
|
|
301
|
+
this.i.eo = stringToBrush(v);
|
|
302
|
+
}
|
|
303
|
+
get calloutOutline() {
|
|
304
|
+
return brushToString(this.i.en);
|
|
305
|
+
}
|
|
306
|
+
set calloutOutline(v) {
|
|
307
|
+
this.i.en = stringToBrush(v);
|
|
308
|
+
}
|
|
309
|
+
get calloutStrokeThickness() {
|
|
310
|
+
return this.i.bd;
|
|
311
|
+
}
|
|
312
|
+
set calloutStrokeThickness(v) {
|
|
313
|
+
this.i.bd = +v;
|
|
314
|
+
}
|
|
315
|
+
get isCustomThumbProvided() {
|
|
316
|
+
return this.i.ac;
|
|
317
|
+
}
|
|
318
|
+
get isCustomRangeThumbProvided() {
|
|
319
|
+
return this.i.aa;
|
|
320
|
+
}
|
|
321
|
+
get isCustomBarProvided() {
|
|
322
|
+
return this.i.z;
|
|
323
|
+
}
|
|
324
|
+
get isCustomShadeProvided() {
|
|
325
|
+
return this.i.ab;
|
|
326
|
+
}
|
|
327
|
+
get areThumbCalloutsEnabled() {
|
|
328
|
+
return this.i.t;
|
|
329
|
+
}
|
|
330
|
+
set areThumbCalloutsEnabled(v) {
|
|
331
|
+
this.i.t = ensureBool(v);
|
|
332
|
+
}
|
|
333
|
+
get thumbCalloutTextStyle() {
|
|
334
|
+
if (this.i.p == null) {
|
|
335
|
+
return null;
|
|
336
|
+
}
|
|
337
|
+
return this.i.p.fontString;
|
|
338
|
+
}
|
|
339
|
+
set thumbCalloutTextStyle(v) {
|
|
340
|
+
let fi = new FontInfo();
|
|
341
|
+
fi.fontString = v;
|
|
342
|
+
this.i.p = fi;
|
|
343
|
+
}
|
|
344
|
+
findByName(name) {
|
|
345
|
+
if (this.findEphemera) {
|
|
346
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
347
|
+
return this.findEphemera(name);
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
if (this.thumbs != null && this.thumbs.findByName && this.thumbs.findByName(name)) {
|
|
351
|
+
return this.thumbs.findByName(name);
|
|
352
|
+
}
|
|
353
|
+
return null;
|
|
354
|
+
}
|
|
355
|
+
get hasUserValues() {
|
|
356
|
+
return this._hasUserValues;
|
|
357
|
+
}
|
|
358
|
+
__m(propertyName) {
|
|
359
|
+
if (!this._inStyling) {
|
|
360
|
+
this._hasUserValues.add(propertyName);
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
_styling(container, component, parent) {
|
|
364
|
+
if (this._inStyling) {
|
|
365
|
+
return;
|
|
366
|
+
}
|
|
367
|
+
this._inStyling = true;
|
|
368
|
+
this._stylingContainer = container;
|
|
369
|
+
this._stylingParent = component;
|
|
370
|
+
let genericPrefix = "";
|
|
371
|
+
let typeName = this.i.$type.name;
|
|
372
|
+
if (typeName.indexOf("Xam") === 0) {
|
|
373
|
+
typeName = typeName.substring(3);
|
|
374
|
+
}
|
|
375
|
+
genericPrefix = toSpinal("MultiSliderComponent");
|
|
376
|
+
let additionalPrefixes = [];
|
|
377
|
+
let prefix = toSpinal(typeName);
|
|
378
|
+
additionalPrefixes.push(prefix + "-");
|
|
379
|
+
let b = this.i.$type.baseType;
|
|
380
|
+
while (b && b.name != "Object" &&
|
|
381
|
+
b.name != "Base" &&
|
|
382
|
+
b.name != "Control" &&
|
|
383
|
+
b.Name != "DependencyObject" &&
|
|
384
|
+
b.Name != "FrameworkElement") {
|
|
385
|
+
typeName = b.name;
|
|
386
|
+
if (typeName.indexOf("Xam") === 0) {
|
|
387
|
+
typeName = typeName.substring(3);
|
|
388
|
+
}
|
|
389
|
+
let basePrefix = toSpinal(typeName);
|
|
390
|
+
additionalPrefixes.push(basePrefix + "-");
|
|
391
|
+
b = b.baseType;
|
|
392
|
+
}
|
|
393
|
+
if (parent) {
|
|
394
|
+
let parentTypeName = parent.i.$type.name;
|
|
395
|
+
if (parentTypeName.indexOf("Xam") === 0) {
|
|
396
|
+
parentTypeName = parentTypeName.substring(3);
|
|
397
|
+
}
|
|
398
|
+
let parentPrefix = toSpinal(parentTypeName);
|
|
399
|
+
additionalPrefixes.push(parentPrefix + "-" + genericPrefix + "-");
|
|
400
|
+
additionalPrefixes.push(parentPrefix + "-" + prefix + "-");
|
|
401
|
+
}
|
|
402
|
+
initializePropertiesFromCss(container, this, genericPrefix + "-", this.hasUserValues, false, additionalPrefixes);
|
|
403
|
+
if (this._otherStyling) {
|
|
404
|
+
this._otherStyling(container, component, parent);
|
|
405
|
+
}
|
|
406
|
+
this._inStyling = false;
|
|
407
|
+
}
|
|
408
|
+
onDetachedFromUI() {
|
|
409
|
+
this.i.onDetachedFromUI();
|
|
410
|
+
}
|
|
411
|
+
onAttachedToUI() {
|
|
412
|
+
this.i.onAttachedToUI();
|
|
413
|
+
}
|
|
414
|
+
/**
|
|
415
|
+
* Called by the UI framework to provide a UI container for rendering this control.
|
|
416
|
+
|
|
417
|
+
* @param container * The UI container element.
|
|
418
|
+
*/
|
|
419
|
+
provideContainer(container) {
|
|
420
|
+
this.i.provideContainer(container);
|
|
421
|
+
}
|
|
422
|
+
flush() {
|
|
423
|
+
this.i.c7();
|
|
424
|
+
}
|
|
425
|
+
trackDirty() {
|
|
426
|
+
this.i.trackDirty();
|
|
427
|
+
}
|
|
428
|
+
/**
|
|
429
|
+
* Shows the ZoomSlider.
|
|
430
|
+
|
|
431
|
+
*/
|
|
432
|
+
show() {
|
|
433
|
+
this.i.dw();
|
|
434
|
+
}
|
|
435
|
+
/**
|
|
436
|
+
* Hides the ZoomSlider.
|
|
437
|
+
|
|
438
|
+
*/
|
|
439
|
+
hide() {
|
|
440
|
+
this.i.c8();
|
|
441
|
+
}
|
|
442
|
+
get resolvingToolTipValue() {
|
|
443
|
+
if (this._resolvingToolTipValue == null) {
|
|
444
|
+
this._resolvingToolTipValue = new EventEmitter();
|
|
445
|
+
this.i.resolvingToolTipValue = delegateCombine(this.i.resolvingToolTipValue, (o, e) => {
|
|
446
|
+
let outerArgs = new IgxMultiSliderResolvingToolTipValueEventArgs();
|
|
447
|
+
outerArgs._provideImplementation(e);
|
|
448
|
+
if (this.beforeResolvingToolTipValue) {
|
|
449
|
+
this.beforeResolvingToolTipValue(this, outerArgs);
|
|
450
|
+
}
|
|
451
|
+
this._resolvingToolTipValue.emit({
|
|
452
|
+
sender: this,
|
|
453
|
+
args: outerArgs
|
|
454
|
+
});
|
|
455
|
+
});
|
|
456
|
+
}
|
|
457
|
+
return this._resolvingToolTipValue;
|
|
458
|
+
}
|
|
459
|
+
get thumbValueChanging() {
|
|
460
|
+
if (this._thumbValueChanging == null) {
|
|
461
|
+
this._thumbValueChanging = new EventEmitter();
|
|
462
|
+
this.i.thumbValueChanging = delegateCombine(this.i.thumbValueChanging, (o, e) => {
|
|
463
|
+
this._runInZone(() => {
|
|
464
|
+
let outerArgs = new IgxMultiSliderThumbValueChangingEventArgs();
|
|
465
|
+
outerArgs._provideImplementation(e);
|
|
466
|
+
if (this.beforeThumbValueChanging) {
|
|
467
|
+
this.beforeThumbValueChanging(this, outerArgs);
|
|
468
|
+
}
|
|
469
|
+
this._thumbValueChanging.emit({
|
|
470
|
+
sender: this,
|
|
471
|
+
args: outerArgs
|
|
472
|
+
});
|
|
473
|
+
});
|
|
474
|
+
});
|
|
475
|
+
}
|
|
476
|
+
return this._thumbValueChanging;
|
|
477
|
+
}
|
|
478
|
+
get thumbValueChanged() {
|
|
479
|
+
if (this._thumbValueChanged == null) {
|
|
480
|
+
this._thumbValueChanged = new EventEmitter();
|
|
481
|
+
this.i.thumbValueChanged = delegateCombine(this.i.thumbValueChanged, (o, e) => {
|
|
482
|
+
this._runInZone(() => {
|
|
483
|
+
let outerArgs = new IgxMultiSliderThumbValueChangingEventArgs();
|
|
484
|
+
outerArgs._provideImplementation(e);
|
|
485
|
+
if (this.beforeThumbValueChanged) {
|
|
486
|
+
this.beforeThumbValueChanged(this, outerArgs);
|
|
487
|
+
}
|
|
488
|
+
this._thumbValueChanged.emit({
|
|
489
|
+
sender: this,
|
|
490
|
+
args: outerArgs
|
|
491
|
+
});
|
|
492
|
+
});
|
|
493
|
+
});
|
|
494
|
+
}
|
|
495
|
+
return this._thumbValueChanged;
|
|
496
|
+
}
|
|
497
|
+
get yValueChanging() {
|
|
498
|
+
if (this._yValueChanging == null) {
|
|
499
|
+
this._yValueChanging = new EventEmitter();
|
|
500
|
+
this.i.yValueChanging = delegateCombine(this.i.yValueChanging, (o, e) => {
|
|
501
|
+
this._runInZone(() => {
|
|
502
|
+
let outerArgs = new IgxMultiSliderYValueChangingEventArgs();
|
|
503
|
+
outerArgs._provideImplementation(e);
|
|
504
|
+
if (this.beforeYValueChanging) {
|
|
505
|
+
this.beforeYValueChanging(this, outerArgs);
|
|
506
|
+
}
|
|
507
|
+
this._yValueChanging.emit({
|
|
508
|
+
sender: this,
|
|
509
|
+
args: outerArgs
|
|
510
|
+
});
|
|
511
|
+
});
|
|
512
|
+
});
|
|
513
|
+
}
|
|
514
|
+
return this._yValueChanging;
|
|
515
|
+
}
|
|
516
|
+
get yValueChanged() {
|
|
517
|
+
if (this._yValueChanged == null) {
|
|
518
|
+
this._yValueChanged = new EventEmitter();
|
|
519
|
+
this.i.yValueChanged = delegateCombine(this.i.yValueChanged, (o, e) => {
|
|
520
|
+
this._runInZone(() => {
|
|
521
|
+
let outerArgs = new IgxMultiSliderYValueChangingEventArgs();
|
|
522
|
+
outerArgs._provideImplementation(e);
|
|
523
|
+
if (this.beforeYValueChanged) {
|
|
524
|
+
this.beforeYValueChanged(this, outerArgs);
|
|
525
|
+
}
|
|
526
|
+
this._yValueChanged.emit({
|
|
527
|
+
sender: this,
|
|
528
|
+
args: outerArgs
|
|
529
|
+
});
|
|
530
|
+
});
|
|
531
|
+
});
|
|
532
|
+
}
|
|
533
|
+
return this._yValueChanged;
|
|
534
|
+
}
|
|
535
|
+
_runInZone(act) {
|
|
536
|
+
if (this._zoneRunner != null) {
|
|
537
|
+
this._zoneRunner(act);
|
|
538
|
+
}
|
|
539
|
+
else {
|
|
540
|
+
act();
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
IgxMultiSliderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
545
|
+
IgxMultiSliderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxMultiSliderComponent, selector: "igx-multi-slider", inputs: { thumbs: "thumbs", min: "min", max: "max", step: "step", yMax: "yMax", yMin: "yMin", yStep: "yStep", pixelScalingRatio: "pixelScalingRatio", actualPixelScalingRatio: "actualPixelScalingRatio", windowRect: "windowRect", yValue: "yValue", startInset: "startInset", endInset: "endInset", trackStartInset: "trackStartInset", trackEndInset: "trackEndInset", yTrackStartInset: "yTrackStartInset", yTrackEndInset: "yTrackEndInset", barExtent: "barExtent", orientation: "orientation", thumbBrush: "thumbBrush", thumbStrokeThickness: "thumbStrokeThickness", thumbOutline: "thumbOutline", thumbWidth: "thumbWidth", thumbHeight: "thumbHeight", barBrush: "barBrush", barOutline: "barOutline", barStrokeThickness: "barStrokeThickness", rangeThumbBrush: "rangeThumbBrush", rangeThumbOutline: "rangeThumbOutline", rangeThumbStrokeThickness: "rangeThumbStrokeThickness", rangeThumbRidgesBrush: "rangeThumbRidgesBrush", thumbRidgesBrush: "thumbRidgesBrush", calloutBrush: "calloutBrush", calloutTextColor: "calloutTextColor", calloutOutline: "calloutOutline", calloutStrokeThickness: "calloutStrokeThickness", areThumbCalloutsEnabled: "areThumbCalloutsEnabled", thumbCalloutTextStyle: "thumbCalloutTextStyle" }, outputs: { resolvingToolTipValue: "resolvingToolTipValue", thumbValueChanging: "thumbValueChanging", thumbValueChanged: "thumbValueChanged", yValueChanging: "yValueChanging", yValueChanged: "yValueChanged" }, providers: [], ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
546
|
+
return IgxMultiSliderComponent;
|
|
547
|
+
})();
|
|
548
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderComponent, decorators: [{
|
|
549
|
+
type: Component,
|
|
550
|
+
args: [{
|
|
551
|
+
selector: 'igx-multi-slider',
|
|
552
|
+
template: ``,
|
|
553
|
+
providers: [],
|
|
554
|
+
changeDetection: ChangeDetectionStrategy.OnPush
|
|
555
|
+
}]
|
|
556
|
+
}], ctorParameters: function () { return []; }, propDecorators: { thumbs: [{
|
|
557
|
+
type: Input
|
|
558
|
+
}], min: [{
|
|
559
|
+
type: Input
|
|
560
|
+
}], max: [{
|
|
561
|
+
type: Input
|
|
562
|
+
}], step: [{
|
|
563
|
+
type: Input
|
|
564
|
+
}], yMax: [{
|
|
565
|
+
type: Input
|
|
566
|
+
}], yMin: [{
|
|
567
|
+
type: Input
|
|
568
|
+
}], yStep: [{
|
|
569
|
+
type: Input
|
|
570
|
+
}], pixelScalingRatio: [{
|
|
571
|
+
type: Input
|
|
572
|
+
}], actualPixelScalingRatio: [{
|
|
573
|
+
type: Input
|
|
574
|
+
}], windowRect: [{
|
|
575
|
+
type: Input
|
|
576
|
+
}], yValue: [{
|
|
577
|
+
type: Input
|
|
578
|
+
}], startInset: [{
|
|
579
|
+
type: Input
|
|
580
|
+
}], endInset: [{
|
|
581
|
+
type: Input
|
|
582
|
+
}], trackStartInset: [{
|
|
583
|
+
type: Input
|
|
584
|
+
}], trackEndInset: [{
|
|
585
|
+
type: Input
|
|
586
|
+
}], yTrackStartInset: [{
|
|
587
|
+
type: Input
|
|
588
|
+
}], yTrackEndInset: [{
|
|
589
|
+
type: Input
|
|
590
|
+
}], barExtent: [{
|
|
591
|
+
type: Input
|
|
592
|
+
}], orientation: [{
|
|
593
|
+
type: Input
|
|
594
|
+
}], thumbBrush: [{
|
|
595
|
+
type: Input
|
|
596
|
+
}], thumbStrokeThickness: [{
|
|
597
|
+
type: Input
|
|
598
|
+
}], thumbOutline: [{
|
|
599
|
+
type: Input
|
|
600
|
+
}], thumbWidth: [{
|
|
601
|
+
type: Input
|
|
602
|
+
}], thumbHeight: [{
|
|
603
|
+
type: Input
|
|
604
|
+
}], barBrush: [{
|
|
605
|
+
type: Input
|
|
606
|
+
}], barOutline: [{
|
|
607
|
+
type: Input
|
|
608
|
+
}], barStrokeThickness: [{
|
|
609
|
+
type: Input
|
|
610
|
+
}], rangeThumbBrush: [{
|
|
611
|
+
type: Input
|
|
612
|
+
}], rangeThumbOutline: [{
|
|
613
|
+
type: Input
|
|
614
|
+
}], rangeThumbStrokeThickness: [{
|
|
615
|
+
type: Input
|
|
616
|
+
}], rangeThumbRidgesBrush: [{
|
|
617
|
+
type: Input
|
|
618
|
+
}], thumbRidgesBrush: [{
|
|
619
|
+
type: Input
|
|
620
|
+
}], calloutBrush: [{
|
|
621
|
+
type: Input
|
|
622
|
+
}], calloutTextColor: [{
|
|
623
|
+
type: Input
|
|
624
|
+
}], calloutOutline: [{
|
|
625
|
+
type: Input
|
|
626
|
+
}], calloutStrokeThickness: [{
|
|
627
|
+
type: Input
|
|
628
|
+
}], areThumbCalloutsEnabled: [{
|
|
629
|
+
type: Input
|
|
630
|
+
}], thumbCalloutTextStyle: [{
|
|
631
|
+
type: Input
|
|
632
|
+
}], resolvingToolTipValue: [{
|
|
633
|
+
type: Output
|
|
634
|
+
}], thumbValueChanging: [{
|
|
635
|
+
type: Output
|
|
636
|
+
}], thumbValueChanged: [{
|
|
637
|
+
type: Output
|
|
638
|
+
}], yValueChanging: [{
|
|
639
|
+
type: Output
|
|
640
|
+
}], yValueChanged: [{
|
|
641
|
+
type: Output
|
|
642
|
+
}] } });
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { NgModule } from '@angular/core';
|
|
8
|
+
import { CommonModule } from '@angular/common';
|
|
9
|
+
import { IgxMultiSliderComponent } from './igx-multi-slider-component';
|
|
10
|
+
import { MultiSlider } from './MultiSlider';
|
|
11
|
+
import { TypeRegistrar } from "igniteui-angular-core";
|
|
12
|
+
import { IgxMultiSliderModule } from './igx-multi-slider-module';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
14
|
+
export let IgxMultiSliderDynamicModule = /*@__PURE__*/ (() => {
|
|
15
|
+
class IgxMultiSliderDynamicModule {
|
|
16
|
+
constructor() {
|
|
17
|
+
TypeRegistrar.registerCons('MultiSlider', MultiSlider);
|
|
18
|
+
TypeRegistrar.registerCons('IgxMultiSliderComponent', IgxMultiSliderComponent);
|
|
19
|
+
TypeRegistrar.register('MultiSlider', MultiSlider.$type);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
IgxMultiSliderDynamicModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderDynamicModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
23
|
+
IgxMultiSliderDynamicModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderDynamicModule, imports: [CommonModule, IgxMultiSliderModule], exports: [IgxMultiSliderModule] });
|
|
24
|
+
IgxMultiSliderDynamicModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderDynamicModule, imports: [[CommonModule, IgxMultiSliderModule
|
|
25
|
+
], IgxMultiSliderModule] });
|
|
26
|
+
return IgxMultiSliderDynamicModule;
|
|
27
|
+
})();
|
|
28
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderDynamicModule, decorators: [{
|
|
29
|
+
type: NgModule,
|
|
30
|
+
args: [{
|
|
31
|
+
declarations: [],
|
|
32
|
+
exports: [IgxMultiSliderModule
|
|
33
|
+
],
|
|
34
|
+
imports: [CommonModule, IgxMultiSliderModule
|
|
35
|
+
],
|
|
36
|
+
entryComponents: [IgxMultiSliderComponent]
|
|
37
|
+
}]
|
|
38
|
+
}], ctorParameters: function () { return []; } });
|