magneto365.ui 2.63.4 → 2.63.5
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/dist/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +51 -50
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/atoms/Icon/Icon.interface.d.ts +4 -0
- package/dist/cjs/types/utils/date/dateInput.util.d.ts +2 -2
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +51 -50
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/atoms/Icon/Icon.interface.d.ts +4 -0
- package/dist/esm/types/utils/date/dateInput.util.d.ts +2 -2
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -7,8 +7,8 @@ export declare class DateArray {
|
|
|
7
7
|
private fromArray;
|
|
8
8
|
private setRaw;
|
|
9
9
|
private getMonth;
|
|
10
|
-
getArray():
|
|
10
|
+
getArray(): string[] | number[];
|
|
11
11
|
setArray(array: string[] | number[]): this;
|
|
12
12
|
fixMonth(): this;
|
|
13
13
|
}
|
|
14
|
-
export declare const fixArrayDate: (array: string[] | number[]) =>
|
|
14
|
+
export declare const fixArrayDate: (array: string[] | number[]) => string[] | number[];
|