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,36 @@
|
|
|
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 * as i0 from "@angular/core";
|
|
13
|
+
export let IgxMultiSliderModule = /*@__PURE__*/ (() => {
|
|
14
|
+
class IgxMultiSliderModule {
|
|
15
|
+
constructor() {
|
|
16
|
+
TypeRegistrar.registerCons('IgxMultiSliderComponent', IgxMultiSliderComponent);
|
|
17
|
+
TypeRegistrar.register('MultiSlider', MultiSlider.$type);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
IgxMultiSliderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
21
|
+
IgxMultiSliderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderModule, declarations: [IgxMultiSliderComponent], imports: [CommonModule], exports: [IgxMultiSliderComponent] });
|
|
22
|
+
IgxMultiSliderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderModule, imports: [[CommonModule,
|
|
23
|
+
]] });
|
|
24
|
+
return IgxMultiSliderModule;
|
|
25
|
+
})();
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderModule, decorators: [{
|
|
27
|
+
type: NgModule,
|
|
28
|
+
args: [{
|
|
29
|
+
declarations: [IgxMultiSliderComponent],
|
|
30
|
+
exports: [IgxMultiSliderComponent
|
|
31
|
+
],
|
|
32
|
+
imports: [CommonModule,
|
|
33
|
+
],
|
|
34
|
+
entryComponents: []
|
|
35
|
+
}]
|
|
36
|
+
}], ctorParameters: function () { return []; } });
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MultiSliderResolvingToolTipValueEventArgs as MultiSliderResolvingToolTipValueEventArgs_internal } from "./MultiSliderResolvingToolTipValueEventArgs";
|
|
2
|
+
export class IgxMultiSliderResolvingToolTipValueEventArgs {
|
|
3
|
+
constructor() {
|
|
4
|
+
this._implementation = this.createImplementation();
|
|
5
|
+
this._implementation.externalObject = this;
|
|
6
|
+
this.onImplementationCreated();
|
|
7
|
+
if (this._initializeAdapters) {
|
|
8
|
+
this._initializeAdapters();
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
createImplementation() {
|
|
12
|
+
return new MultiSliderResolvingToolTipValueEventArgs_internal();
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @hidden
|
|
16
|
+
*/
|
|
17
|
+
get i() {
|
|
18
|
+
return this._implementation;
|
|
19
|
+
}
|
|
20
|
+
onImplementationCreated() {
|
|
21
|
+
}
|
|
22
|
+
_provideImplementation(i) {
|
|
23
|
+
this._implementation = i;
|
|
24
|
+
this._implementation.externalObject = this;
|
|
25
|
+
this.onImplementationCreated();
|
|
26
|
+
}
|
|
27
|
+
get position() {
|
|
28
|
+
return this.i.position;
|
|
29
|
+
}
|
|
30
|
+
set position(v) {
|
|
31
|
+
this.i.position = +v;
|
|
32
|
+
}
|
|
33
|
+
get value() {
|
|
34
|
+
return this.i.value;
|
|
35
|
+
}
|
|
36
|
+
set value(v) {
|
|
37
|
+
this.i.value = v;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { IgCollection } from "igniteui-angular-core";
|
|
2
|
+
import { markType } from "igniteui-angular-core";
|
|
3
|
+
import { SyncableObservableCollection$2 } from "igniteui-angular-core";
|
|
4
|
+
import { MultiSliderThumb as MultiSliderThumb_internal } from './MultiSliderThumb';
|
|
5
|
+
import { IgxMultiSliderThumb as IgxMultiSliderThumb } from './igx-multi-slider-thumb';
|
|
6
|
+
export class IgxMultiSliderThumbCollection extends IgCollection {
|
|
7
|
+
constructor(list) {
|
|
8
|
+
super();
|
|
9
|
+
if (!IgxMultiSliderThumb.$type) {
|
|
10
|
+
IgxMultiSliderThumb.$type = markType(IgxMultiSliderThumb, "IgxMultiSliderThumb");
|
|
11
|
+
}
|
|
12
|
+
if (list) {
|
|
13
|
+
for (let i = 0; i < list.length; i++) {
|
|
14
|
+
this.add(list[i]);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
_createInnerColl() {
|
|
19
|
+
if (!IgxMultiSliderThumb.$type) {
|
|
20
|
+
IgxMultiSliderThumb.$type = markType(IgxMultiSliderThumb, "IgxMultiSliderThumb");
|
|
21
|
+
}
|
|
22
|
+
let coll = new SyncableObservableCollection$2(IgxMultiSliderThumb.$type, MultiSliderThumb_internal.$type, 0);
|
|
23
|
+
coll.compare = (ext, int) => {
|
|
24
|
+
let comp = ext;
|
|
25
|
+
if (comp._implementation) {
|
|
26
|
+
comp = comp._implementation;
|
|
27
|
+
}
|
|
28
|
+
if (comp.equals) {
|
|
29
|
+
return comp.equals(int);
|
|
30
|
+
}
|
|
31
|
+
return comp === int;
|
|
32
|
+
};
|
|
33
|
+
coll.createTo = (ext) => {
|
|
34
|
+
return ext._implementation;
|
|
35
|
+
};
|
|
36
|
+
coll.createFrom = (int) => {
|
|
37
|
+
let ext = int.externalObject;
|
|
38
|
+
if (!ext) {
|
|
39
|
+
ext = new IgxMultiSliderThumb();
|
|
40
|
+
if (ext) {
|
|
41
|
+
if (!int.$type && ext._implementation.setNativeElement) {
|
|
42
|
+
ext._implementation.setNativeElement(int);
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
ext._implementation = int;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
return ext;
|
|
50
|
+
};
|
|
51
|
+
return coll;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { IgxMultiSliderThumb } from "./igx-multi-slider-thumb";
|
|
2
|
+
import { MultiSliderThumbValueChangingEventArgs as MultiSliderThumbValueChangingEventArgs_internal } from "./MultiSliderThumbValueChangingEventArgs";
|
|
3
|
+
export class IgxMultiSliderThumbValueChangingEventArgs {
|
|
4
|
+
constructor() {
|
|
5
|
+
this._implementation = this.createImplementation();
|
|
6
|
+
this._implementation.externalObject = this;
|
|
7
|
+
this.onImplementationCreated();
|
|
8
|
+
if (this._initializeAdapters) {
|
|
9
|
+
this._initializeAdapters();
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
createImplementation() {
|
|
13
|
+
return new MultiSliderThumbValueChangingEventArgs_internal();
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @hidden
|
|
17
|
+
*/
|
|
18
|
+
get i() {
|
|
19
|
+
return this._implementation;
|
|
20
|
+
}
|
|
21
|
+
onImplementationCreated() {
|
|
22
|
+
}
|
|
23
|
+
_provideImplementation(i) {
|
|
24
|
+
this._implementation = i;
|
|
25
|
+
this._implementation.externalObject = this;
|
|
26
|
+
this.onImplementationCreated();
|
|
27
|
+
}
|
|
28
|
+
get value() {
|
|
29
|
+
return this.i.b;
|
|
30
|
+
}
|
|
31
|
+
set value(v) {
|
|
32
|
+
this.i.b = +v;
|
|
33
|
+
}
|
|
34
|
+
get thumb() {
|
|
35
|
+
const r = this.i.a;
|
|
36
|
+
if (r == null) {
|
|
37
|
+
return null;
|
|
38
|
+
}
|
|
39
|
+
if (!r.externalObject) {
|
|
40
|
+
let e = new IgxMultiSliderThumb();
|
|
41
|
+
if (r.$type) {
|
|
42
|
+
e._implementation = r;
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
if (e.i.setNativeElement) {
|
|
46
|
+
e.i.setNativeElement(r);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
r.externalObject = e;
|
|
50
|
+
}
|
|
51
|
+
return r.externalObject;
|
|
52
|
+
}
|
|
53
|
+
set thumb(v) {
|
|
54
|
+
v == null ? this.i.a = null : this.i.a = v.i;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { delegateCombine } from "igniteui-angular-core";
|
|
3
|
+
import { MultiSliderThumbRangePosition_$type } from "./MultiSliderThumbRangePosition";
|
|
4
|
+
import { IgxMultiSliderTrackThumbRange } from "./igx-multi-slider-track-thumb-range";
|
|
5
|
+
import { IgxPropertyUpdatedEventArgs } from "igniteui-angular-core";
|
|
6
|
+
import { MultiSliderThumb as MultiSliderThumb_internal } from "./MultiSliderThumb";
|
|
7
|
+
import { ensureEnum } from "igniteui-angular-core";
|
|
8
|
+
export class IgxMultiSliderThumb {
|
|
9
|
+
constructor() {
|
|
10
|
+
this._propertyUpdated = null;
|
|
11
|
+
this._zoneRunner = null;
|
|
12
|
+
this._implementation = this.createImplementation();
|
|
13
|
+
this._implementation.externalObject = this;
|
|
14
|
+
this.onImplementationCreated();
|
|
15
|
+
if (this._initializeAdapters) {
|
|
16
|
+
this._initializeAdapters();
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
createImplementation() {
|
|
20
|
+
return new MultiSliderThumb_internal();
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* @hidden
|
|
24
|
+
*/
|
|
25
|
+
get i() {
|
|
26
|
+
return this._implementation;
|
|
27
|
+
}
|
|
28
|
+
onImplementationCreated() {
|
|
29
|
+
}
|
|
30
|
+
_provideImplementation(i) {
|
|
31
|
+
this._implementation = i;
|
|
32
|
+
this._implementation.externalObject = this;
|
|
33
|
+
this.onImplementationCreated();
|
|
34
|
+
}
|
|
35
|
+
get value() {
|
|
36
|
+
return this.i.s;
|
|
37
|
+
}
|
|
38
|
+
set value(v) {
|
|
39
|
+
this.i.s = +v;
|
|
40
|
+
}
|
|
41
|
+
get rangePosition() {
|
|
42
|
+
return this.i.g;
|
|
43
|
+
}
|
|
44
|
+
set rangePosition(v) {
|
|
45
|
+
this.i.g = ensureEnum(MultiSliderThumbRangePosition_$type, v);
|
|
46
|
+
}
|
|
47
|
+
get range() {
|
|
48
|
+
const r = this.i.i;
|
|
49
|
+
if (r == null) {
|
|
50
|
+
return null;
|
|
51
|
+
}
|
|
52
|
+
if (!r.externalObject) {
|
|
53
|
+
let e = new IgxMultiSliderTrackThumbRange();
|
|
54
|
+
if (r.$type) {
|
|
55
|
+
e._implementation = r;
|
|
56
|
+
}
|
|
57
|
+
else {
|
|
58
|
+
if (e.i.setNativeElement) {
|
|
59
|
+
e.i.setNativeElement(r);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
r.externalObject = e;
|
|
63
|
+
}
|
|
64
|
+
return r.externalObject;
|
|
65
|
+
}
|
|
66
|
+
set range(v) {
|
|
67
|
+
v == null ? this.i.i = null : this.i.i = v.i;
|
|
68
|
+
}
|
|
69
|
+
findByName(name) {
|
|
70
|
+
if (this.findEphemera) {
|
|
71
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
72
|
+
return this.findEphemera(name);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
if (this.range && this.range.name && this.range.name == name) {
|
|
76
|
+
return this.range;
|
|
77
|
+
}
|
|
78
|
+
return null;
|
|
79
|
+
}
|
|
80
|
+
push(amount) {
|
|
81
|
+
let iv = this.i.r(amount);
|
|
82
|
+
return (iv);
|
|
83
|
+
}
|
|
84
|
+
get propertyUpdated() {
|
|
85
|
+
if (this._propertyUpdated == null) {
|
|
86
|
+
this._propertyUpdated = new EventEmitter();
|
|
87
|
+
this.i.propertyUpdated = delegateCombine(this.i.propertyUpdated, (o, e) => {
|
|
88
|
+
this._runInZone(() => {
|
|
89
|
+
let outerArgs = new IgxPropertyUpdatedEventArgs();
|
|
90
|
+
outerArgs._provideImplementation(e);
|
|
91
|
+
if (this.beforePropertyUpdated) {
|
|
92
|
+
this.beforePropertyUpdated(this, outerArgs);
|
|
93
|
+
}
|
|
94
|
+
this._propertyUpdated.emit({
|
|
95
|
+
sender: this,
|
|
96
|
+
args: outerArgs
|
|
97
|
+
});
|
|
98
|
+
});
|
|
99
|
+
});
|
|
100
|
+
}
|
|
101
|
+
return this._propertyUpdated;
|
|
102
|
+
}
|
|
103
|
+
_runInZone(act) {
|
|
104
|
+
if (this._zoneRunner != null) {
|
|
105
|
+
this._zoneRunner(act);
|
|
106
|
+
}
|
|
107
|
+
else {
|
|
108
|
+
act();
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { IgxMultiSliderThumb } from "./igx-multi-slider-thumb";
|
|
2
|
+
import { MultiSliderTrackThumbRange as MultiSliderTrackThumbRange_internal } from "./MultiSliderTrackThumbRange";
|
|
3
|
+
export class IgxMultiSliderTrackThumbRange {
|
|
4
|
+
constructor() {
|
|
5
|
+
this._zoneRunner = null;
|
|
6
|
+
this._implementation = this.createImplementation();
|
|
7
|
+
this._implementation.externalObject = this;
|
|
8
|
+
this.onImplementationCreated();
|
|
9
|
+
if (this._initializeAdapters) {
|
|
10
|
+
this._initializeAdapters();
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
createImplementation() {
|
|
14
|
+
return new MultiSliderTrackThumbRange_internal();
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
get i() {
|
|
20
|
+
return this._implementation;
|
|
21
|
+
}
|
|
22
|
+
onImplementationCreated() {
|
|
23
|
+
}
|
|
24
|
+
_provideImplementation(i) {
|
|
25
|
+
this._implementation = i;
|
|
26
|
+
this._implementation.externalObject = this;
|
|
27
|
+
this.onImplementationCreated();
|
|
28
|
+
}
|
|
29
|
+
get position() {
|
|
30
|
+
return this.i.n;
|
|
31
|
+
}
|
|
32
|
+
set position(v) {
|
|
33
|
+
this.i.n = +v;
|
|
34
|
+
}
|
|
35
|
+
get width() {
|
|
36
|
+
return this.i.r;
|
|
37
|
+
}
|
|
38
|
+
set width(v) {
|
|
39
|
+
this.i.r = +v;
|
|
40
|
+
}
|
|
41
|
+
get minWidth() {
|
|
42
|
+
return this.i.m;
|
|
43
|
+
}
|
|
44
|
+
set minWidth(v) {
|
|
45
|
+
this.i.m = +v;
|
|
46
|
+
}
|
|
47
|
+
get maxWidth() {
|
|
48
|
+
return this.i.l;
|
|
49
|
+
}
|
|
50
|
+
set maxWidth(v) {
|
|
51
|
+
this.i.l = +v;
|
|
52
|
+
}
|
|
53
|
+
get lowerThumb() {
|
|
54
|
+
const r = this.i.f;
|
|
55
|
+
if (r == null) {
|
|
56
|
+
return null;
|
|
57
|
+
}
|
|
58
|
+
if (!r.externalObject) {
|
|
59
|
+
let e = new IgxMultiSliderThumb();
|
|
60
|
+
if (r.$type) {
|
|
61
|
+
e._implementation = r;
|
|
62
|
+
}
|
|
63
|
+
else {
|
|
64
|
+
if (e.i.setNativeElement) {
|
|
65
|
+
e.i.setNativeElement(r);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
r.externalObject = e;
|
|
69
|
+
}
|
|
70
|
+
return r.externalObject;
|
|
71
|
+
}
|
|
72
|
+
set lowerThumb(v) {
|
|
73
|
+
v == null ? this.i.f = null : this.i.f = v.i;
|
|
74
|
+
}
|
|
75
|
+
get higherThumb() {
|
|
76
|
+
const r = this.i.e;
|
|
77
|
+
if (r == null) {
|
|
78
|
+
return null;
|
|
79
|
+
}
|
|
80
|
+
if (!r.externalObject) {
|
|
81
|
+
let e = new IgxMultiSliderThumb();
|
|
82
|
+
if (r.$type) {
|
|
83
|
+
e._implementation = r;
|
|
84
|
+
}
|
|
85
|
+
else {
|
|
86
|
+
if (e.i.setNativeElement) {
|
|
87
|
+
e.i.setNativeElement(r);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
r.externalObject = e;
|
|
91
|
+
}
|
|
92
|
+
return r.externalObject;
|
|
93
|
+
}
|
|
94
|
+
set higherThumb(v) {
|
|
95
|
+
v == null ? this.i.e = null : this.i.e = v.i;
|
|
96
|
+
}
|
|
97
|
+
findByName(name) {
|
|
98
|
+
if (this.findEphemera) {
|
|
99
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
100
|
+
return this.findEphemera(name);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
if (this.lowerThumb && this.lowerThumb.name && this.lowerThumb.name == name) {
|
|
104
|
+
return this.lowerThumb;
|
|
105
|
+
}
|
|
106
|
+
if (this.higherThumb && this.higherThumb.name && this.higherThumb.name == name) {
|
|
107
|
+
return this.higherThumb;
|
|
108
|
+
}
|
|
109
|
+
return null;
|
|
110
|
+
}
|
|
111
|
+
_runInZone(act) {
|
|
112
|
+
if (this._zoneRunner != null) {
|
|
113
|
+
this._zoneRunner(act);
|
|
114
|
+
}
|
|
115
|
+
else {
|
|
116
|
+
act();
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { MultiSliderYValueChangingEventArgs as MultiSliderYValueChangingEventArgs_internal } from "./MultiSliderYValueChangingEventArgs";
|
|
2
|
+
export class IgxMultiSliderYValueChangingEventArgs {
|
|
3
|
+
constructor() {
|
|
4
|
+
this._implementation = this.createImplementation();
|
|
5
|
+
this._implementation.externalObject = this;
|
|
6
|
+
this.onImplementationCreated();
|
|
7
|
+
if (this._initializeAdapters) {
|
|
8
|
+
this._initializeAdapters();
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
createImplementation() {
|
|
12
|
+
return new MultiSliderYValueChangingEventArgs_internal();
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @hidden
|
|
16
|
+
*/
|
|
17
|
+
get i() {
|
|
18
|
+
return this._implementation;
|
|
19
|
+
}
|
|
20
|
+
onImplementationCreated() {
|
|
21
|
+
}
|
|
22
|
+
_provideImplementation(i) {
|
|
23
|
+
this._implementation = i;
|
|
24
|
+
this._implementation.externalObject = this;
|
|
25
|
+
this.onImplementationCreated();
|
|
26
|
+
}
|
|
27
|
+
get value() {
|
|
28
|
+
return this.i.a;
|
|
29
|
+
}
|
|
30
|
+
set value(v) {
|
|
31
|
+
this.i.a = +v;
|
|
32
|
+
}
|
|
33
|
+
}
|