igniteui-webcomponents-inputs 4.2.2 → 4.2.4-alpha
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-webcomponents-inputs.umd.js +1 -1
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/igc-date-picker-component.js +2 -1
- package/esm5/lib/igc-date-picker-component.js +2 -1
- package/fesm2015/igniteui-webcomponents-inputs.js +1 -1
- package/fesm5/igniteui-webcomponents-inputs.js +1 -1
- package/lib/igc-date-picker-component.d.ts +2 -1
- package/package.json +2 -2
|
@@ -15,8 +15,9 @@ import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
|
|
|
15
15
|
import { DateFormats_$type } from "./DateFormats";
|
|
16
16
|
import { DayOfWeek_$type } from "./DayOfWeek";
|
|
17
17
|
import { FirstWeek_$type } from "./FirstWeek";
|
|
18
|
+
import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
18
19
|
export let IgcDatePickerComponent = /*@__PURE__*/ (() => {
|
|
19
|
-
class IgcDatePickerComponent extends
|
|
20
|
+
class IgcDatePickerComponent extends IgcHTMLElement {
|
|
20
21
|
constructor() {
|
|
21
22
|
super();
|
|
22
23
|
this._disconnected = false;
|
|
@@ -16,6 +16,7 @@ import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
|
|
|
16
16
|
import { DateFormats_$type } from "./DateFormats";
|
|
17
17
|
import { DayOfWeek_$type } from "./DayOfWeek";
|
|
18
18
|
import { FirstWeek_$type } from "./FirstWeek";
|
|
19
|
+
import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
19
20
|
var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
20
21
|
tslib_1.__extends(IgcDatePickerComponent, _super);
|
|
21
22
|
function IgcDatePickerComponent() {
|
|
@@ -786,5 +787,5 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
786
787
|
IgcDatePickerComponent.htmlTagName = "igc-date-picker";
|
|
787
788
|
IgcDatePickerComponent._isElementRegistered = false;
|
|
788
789
|
return IgcDatePickerComponent;
|
|
789
|
-
}(
|
|
790
|
+
}(IgcHTMLElement));
|
|
790
791
|
export { IgcDatePickerComponent };
|
|
@@ -21889,7 +21889,7 @@ class IgcLostFocusEventArgs {
|
|
|
21889
21889
|
}
|
|
21890
21890
|
|
|
21891
21891
|
let IgcDatePickerComponent = /*@__PURE__*/ (() => {
|
|
21892
|
-
class IgcDatePickerComponent extends
|
|
21892
|
+
class IgcDatePickerComponent extends IgcHTMLElement {
|
|
21893
21893
|
constructor() {
|
|
21894
21894
|
super();
|
|
21895
21895
|
this._disconnected = false;
|
|
@@ -27040,7 +27040,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
27040
27040
|
IgcDatePickerComponent.htmlTagName = "igc-date-picker";
|
|
27041
27041
|
IgcDatePickerComponent._isElementRegistered = false;
|
|
27042
27042
|
return IgcDatePickerComponent;
|
|
27043
|
-
}(
|
|
27043
|
+
}(IgcHTMLElement));
|
|
27044
27044
|
|
|
27045
27045
|
/*
|
|
27046
27046
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
@@ -9,7 +9,8 @@ import { BaseControlTheme } from "igniteui-webcomponents-core";
|
|
|
9
9
|
import { DateFormats } from "./DateFormats";
|
|
10
10
|
import { DayOfWeek } from "./DayOfWeek";
|
|
11
11
|
import { FirstWeek } from "./FirstWeek";
|
|
12
|
-
|
|
12
|
+
import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
13
|
+
export declare class IgcDatePickerComponent extends IgcHTMLElement {
|
|
13
14
|
private _height;
|
|
14
15
|
private _width;
|
|
15
16
|
height: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-inputs",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.4-alpha",
|
|
4
4
|
"description": "Ignite UI WebComponents inputs components.",
|
|
5
5
|
"homepage": "https://github.com/IgniteUI/igniteui-webcomponents-inputs",
|
|
6
6
|
"keywords": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"tslib": "^2.3.1"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"igniteui-webcomponents-core": "4.2.
|
|
17
|
+
"igniteui-webcomponents-core": "4.2.4-alpha"
|
|
18
18
|
},
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"typings": "igniteui-webcomponents-inputs.d.ts",
|