magneto365.ui 2.60.1 → 2.61.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.
@@ -1,3 +1,4 @@
1
+ export declare type TComparativeCounterPosition = 'left' | 'center' | 'right';
1
2
  export interface IComparativeCounter {
2
3
  /**
3
4
  * this property sets the current counter value
@@ -7,4 +8,8 @@ export interface IComparativeCounter {
7
8
  * this property sets the max counter value
8
9
  */
9
10
  max: number;
11
+ /**
12
+ * this property changes the text align
13
+ */
14
+ position?: TComparativeCounterPosition;
10
15
  }
package/dist/index.d.ts CHANGED
@@ -227,6 +227,7 @@ interface IButtonLink {
227
227
  */
228
228
  declare const ButtonLink: React$1.FC<IButtonLink>;
229
229
 
230
+ declare type TComparativeCounterPosition = 'left' | 'center' | 'right';
230
231
  interface IComparativeCounter {
231
232
  /**
232
233
  * this property sets the current counter value
@@ -236,6 +237,10 @@ interface IComparativeCounter {
236
237
  * this property sets the max counter value
237
238
  */
238
239
  max: number;
240
+ /**
241
+ * this property changes the text align
242
+ */
243
+ position?: TComparativeCounterPosition;
239
244
  }
240
245
 
241
246
  declare const ComparativeCounter: React$1.FC<IComparativeCounter>;
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.60.1",
7
+ "version": "2.61.0",
8
8
  "description": "Magneto365 UI common components",
9
9
  "scripts": {
10
10
  "lint": "eslint ./src --ext .js,.ts,.jsx,.tsx",