igniteui-webcomponents-inputs 7.1.0-alpha.1 → 7.1.0-alpha.2

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.
Files changed (64) hide show
  1. package/bundles/igniteui-webcomponents-inputs.umd.js +636 -467
  2. package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonView_combined.js +21 -21
  4. package/esm2015/lib/CalendarView_combined.js +3 -3
  5. package/esm2015/lib/CheckboxView_combined.js +23 -23
  6. package/esm2015/lib/IconView_combined.js +163 -163
  7. package/esm2015/lib/InputGroupView_combined.js +31 -31
  8. package/esm2015/lib/MultiSliderBridge.js +14 -14
  9. package/esm2015/lib/MultiSliderView_combined.js +10 -10
  10. package/esm2015/lib/NativeUIXInputsFactory_combined.js +38 -38
  11. package/esm2015/lib/RippleView_combined.js +1 -1
  12. package/esm2015/lib/XButtonBridge.js +18 -18
  13. package/esm2015/lib/XButtonGroupBridge.js +6 -6
  14. package/esm2015/lib/XCheckboxBridge.js +8 -8
  15. package/esm2015/lib/XComponentBridge.js +4 -3
  16. package/esm2015/lib/XIconBridge.js +23 -23
  17. package/esm2015/lib/XIconButtonBridge.js +5 -5
  18. package/esm2015/lib/XInputBridge.js +18 -18
  19. package/esm2015/lib/XPopupBridge.js +23 -23
  20. package/esm2015/lib/igc-multi-slider-thumb-collection.js +7 -7
  21. package/esm2015/lib/igc-multi-slider-thumb-component.js +271 -0
  22. package/esm2015/lib/igc-multi-slider-thumb-module.js +16 -0
  23. package/esm2015/lib/igc-multi-slider-thumb-value-changing-event-args.js +3 -8
  24. package/esm2015/lib/igc-multi-slider-track-thumb-range.js +5 -15
  25. package/esm2015/lib/igc-x-icon-component.js +10 -10
  26. package/esm2015/public_api.js +2 -1
  27. package/esm5/lib/ButtonView_combined.js +21 -21
  28. package/esm5/lib/CalendarView_combined.js +3 -3
  29. package/esm5/lib/CheckboxView_combined.js +23 -23
  30. package/esm5/lib/IconView_combined.js +158 -158
  31. package/esm5/lib/InputGroupView_combined.js +31 -31
  32. package/esm5/lib/MultiSliderBridge.js +14 -14
  33. package/esm5/lib/MultiSliderView_combined.js +10 -10
  34. package/esm5/lib/NativeUIXInputsFactory_combined.js +38 -38
  35. package/esm5/lib/RippleView_combined.js +1 -1
  36. package/esm5/lib/XButtonBridge.js +18 -18
  37. package/esm5/lib/XButtonGroupBridge.js +6 -6
  38. package/esm5/lib/XCheckboxBridge.js +8 -8
  39. package/esm5/lib/XComponentBridge.js +4 -3
  40. package/esm5/lib/XIconBridge.js +23 -23
  41. package/esm5/lib/XIconButtonBridge.js +5 -5
  42. package/esm5/lib/XInputBridge.js +18 -18
  43. package/esm5/lib/XPopupBridge.js +23 -23
  44. package/esm5/lib/igc-multi-slider-thumb-collection.js +7 -7
  45. package/esm5/lib/igc-multi-slider-thumb-component.js +300 -0
  46. package/esm5/lib/igc-multi-slider-thumb-module.js +20 -0
  47. package/esm5/lib/igc-multi-slider-thumb-value-changing-event-args.js +3 -8
  48. package/esm5/lib/igc-multi-slider-track-thumb-range.js +5 -15
  49. package/esm5/lib/igc-x-icon-component.js +10 -10
  50. package/esm5/public_api.js +2 -1
  51. package/fesm2015/igniteui-webcomponents-inputs.js +692 -534
  52. package/fesm5/igniteui-webcomponents-inputs.js +635 -467
  53. package/lib/IconView_combined.d.ts +33 -34
  54. package/lib/MultiSliderView_combined.d.ts +1 -1
  55. package/lib/igc-multi-slider-thumb-collection.d.ts +4 -4
  56. package/lib/igc-multi-slider-thumb-component.d.ts +53 -0
  57. package/lib/igc-multi-slider-thumb-module.d.ts +3 -0
  58. package/lib/igc-multi-slider-thumb-value-changing-event-args.d.ts +3 -3
  59. package/lib/igc-multi-slider-track-thumb-range.d.ts +5 -5
  60. package/package.json +2 -2
  61. package/public_api.d.ts +2 -1
  62. package/esm2015/lib/igc-multi-slider-thumb.js +0 -109
  63. package/esm5/lib/igc-multi-slider-thumb.js +0 -132
  64. package/lib/igc-multi-slider-thumb.d.ts +0 -27
@@ -0,0 +1,20 @@
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 { IgcMultiSliderThumbComponent } from './igc-multi-slider-thumb-component';
8
+ import { MultiSliderThumb } from './MultiSliderThumb';
9
+ import { TypeRegistrar } from "igniteui-webcomponents-core";
10
+ var IgcMultiSliderThumbModule = /** @class */ /*@__PURE__*/ (function () {
11
+ function IgcMultiSliderThumbModule() {
12
+ }
13
+ IgcMultiSliderThumbModule.register = function () {
14
+ IgcMultiSliderThumbComponent.register();
15
+ TypeRegistrar.registerCons("IgcMultiSliderThumbComponent", IgcMultiSliderThumbComponent);
16
+ TypeRegistrar.register("MultiSliderThumb", MultiSliderThumb.$type);
17
+ };
18
+ return IgcMultiSliderThumbModule;
19
+ }());
20
+ export { IgcMultiSliderThumbModule };
@@ -1,4 +1,4 @@
1
- import { IgcMultiSliderThumb } from "./igc-multi-slider-thumb";
1
+ import { IgcMultiSliderThumbComponent } from "./igc-multi-slider-thumb-component";
2
2
  import { MultiSliderThumbValueChangingEventArgs as MultiSliderThumbValueChangingEventArgs_internal } from "./MultiSliderThumbValueChangingEventArgs";
3
3
  var IgcMultiSliderThumbValueChangingEventArgs = /** @class */ /*@__PURE__*/ (function () {
4
4
  function IgcMultiSliderThumbValueChangingEventArgs() {
@@ -49,15 +49,10 @@ var IgcMultiSliderThumbValueChangingEventArgs = /** @class */ /*@__PURE__*/ (fun
49
49
  return null;
50
50
  }
51
51
  if (!r.externalObject) {
52
- var e = new IgcMultiSliderThumb();
53
- if (r.$type) {
52
+ var e = IgcMultiSliderThumbComponent._createFromInternal(r);
53
+ if (e) {
54
54
  e._implementation = r;
55
55
  }
56
- else {
57
- if (e.i.setNativeElement) {
58
- e.i.setNativeElement(r);
59
- }
60
- }
61
56
  r.externalObject = e;
62
57
  }
63
58
  return r.externalObject;
@@ -1,4 +1,4 @@
1
- import { IgcMultiSliderThumb } from "./igc-multi-slider-thumb";
1
+ import { IgcMultiSliderThumbComponent } from "./igc-multi-slider-thumb-component";
2
2
  import { MultiSliderTrackThumbRange as MultiSliderTrackThumbRange_internal } from "./MultiSliderTrackThumbRange";
3
3
  var IgcMultiSliderTrackThumbRange = /** @class */ /*@__PURE__*/ (function () {
4
4
  function IgcMultiSliderTrackThumbRange() {
@@ -79,15 +79,10 @@ var IgcMultiSliderTrackThumbRange = /** @class */ /*@__PURE__*/ (function () {
79
79
  return null;
80
80
  }
81
81
  if (!r.externalObject) {
82
- var e = new IgcMultiSliderThumb();
83
- if (r.$type) {
82
+ var e = IgcMultiSliderThumbComponent._createFromInternal(r);
83
+ if (e) {
84
84
  e._implementation = r;
85
85
  }
86
- else {
87
- if (e.i.setNativeElement) {
88
- e.i.setNativeElement(r);
89
- }
90
- }
91
86
  r.externalObject = e;
92
87
  }
93
88
  return r.externalObject;
@@ -105,15 +100,10 @@ var IgcMultiSliderTrackThumbRange = /** @class */ /*@__PURE__*/ (function () {
105
100
  return null;
106
101
  }
107
102
  if (!r.externalObject) {
108
- var e = new IgcMultiSliderThumb();
109
- if (r.$type) {
103
+ var e = IgcMultiSliderThumbComponent._createFromInternal(r);
104
+ if (e) {
110
105
  e._implementation = r;
111
106
  }
112
- else {
113
- if (e.i.setNativeElement) {
114
- e.i.setNativeElement(r);
115
- }
116
- }
117
107
  r.externalObject = e;
118
108
  }
119
109
  return r.externalObject;
@@ -502,10 +502,10 @@ export var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
502
502
  * Gets or sets the image source for the icon. Used if none of the other icon types are not used.
503
503
  */
504
504
  get: function () {
505
- return this.i.bh;
505
+ return this.i.bj;
506
506
  },
507
507
  set: function (v) {
508
- this.i.bh = v;
508
+ this.i.bj = v;
509
509
  },
510
510
  enumerable: false,
511
511
  configurable: true
@@ -515,10 +515,10 @@ export var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
515
515
  * Gets or sets data url for the icon to use.
516
516
  */
517
517
  get: function () {
518
- return this.i.b0;
518
+ return this.i.b2;
519
519
  },
520
520
  set: function (v) {
521
- this.i.b0 = v;
521
+ this.i.b2 = v;
522
522
  },
523
523
  enumerable: false,
524
524
  configurable: true
@@ -590,10 +590,10 @@ export var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
590
590
  * Gets or sets the id to use for the checkbox.
591
591
  */
592
592
  get: function () {
593
- return this.i.ca;
593
+ return this.i.cc;
594
594
  },
595
595
  set: function (v) {
596
- this.i.ca = v;
596
+ this.i.cc = v;
597
597
  },
598
598
  enumerable: false,
599
599
  configurable: true
@@ -617,10 +617,10 @@ export var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
617
617
  * Gets or sets the value of the aria-label attribute.
618
618
  */
619
619
  get: function () {
620
- return this.i.bv;
620
+ return this.i.bx;
621
621
  },
622
622
  set: function (v) {
623
- this.i.bv = v;
623
+ this.i.bx = v;
624
624
  },
625
625
  enumerable: false,
626
626
  configurable: true
@@ -880,7 +880,7 @@ export var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
880
880
 
881
881
  */
882
882
  IgcXIconComponent.prototype.exportVisualModel = function () {
883
- var iv = this.i.bg();
883
+ var iv = this.i.bi();
884
884
  return (iv);
885
885
  };
886
886
  /**
@@ -888,7 +888,7 @@ export var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
888
888
 
889
889
  */
890
890
  IgcXIconComponent.prototype.exportSerializedVisualModel = function () {
891
- var iv = this.i.b2();
891
+ var iv = this.i.b4();
892
892
  return (iv);
893
893
  };
894
894
  IgcXIconComponent._observedAttributesIgcXIconComponent = null;
@@ -106,7 +106,8 @@ export * from './lib/IMultiSliderTrackShadeVisual';
106
106
  export * from './lib/MultiSliderTrackShadeOrientation';
107
107
  export * from './lib/DefaultMultiTrackShadeVisual';
108
108
  export * from './lib/MultiSliderThumb';
109
- export * from './lib/igc-multi-slider-thumb';
109
+ export * from './lib/igc-multi-slider-thumb-component';
110
+ export * from './lib/igc-multi-slider-thumb-module';
110
111
  export * from './lib/MultiSliderThumbRangePosition';
111
112
  export * from './lib/IMultiSliderTrackThumbCalloutVisual';
112
113
  export * from './lib/DefaultMultiSliderTrackThumbCalloutVisual';