magneto365.ui 2.63.3 → 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.
@@ -31,4 +31,8 @@ export interface IconProps {
31
31
  * Text alt in the img element
32
32
  */
33
33
  alt?: string | null;
34
+ /**
35
+ * Rotate image 180 deg
36
+ */
37
+ isRotate?: boolean;
34
38
  }
@@ -7,8 +7,8 @@ export declare class DateArray {
7
7
  private fromArray;
8
8
  private setRaw;
9
9
  private getMonth;
10
- getArray(): number[] | string[];
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[]) => number[] | string[];
14
+ export declare const fixArrayDate: (array: string[] | number[]) => string[] | number[];
package/dist/index.d.ts CHANGED
@@ -439,6 +439,10 @@ interface IconProps {
439
439
  * Text alt in the img element
440
440
  */
441
441
  alt?: string | null;
442
+ /**
443
+ * Rotate image 180 deg
444
+ */
445
+ isRotate?: boolean;
442
446
  }
443
447
 
444
448
  /**
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/W170/talenta.magneto365.ui.git"
6
6
  },
7
- "version": "2.63.3",
7
+ "version": "2.63.5",
8
8
  "description": "Magneto365 UI common components",
9
9
  "scripts": {
10
10
  "lint": "eslint ./src --ext .js,.ts,.jsx,.tsx",