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.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/atoms/ComparativeCounter/ComparativeCounter.interface.d.ts +5 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/atoms/ComparativeCounter/ComparativeCounter.interface.d.ts +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/esm/types/components/UI/atoms/ComparativeCounter/ComparativeCounter.interface.d.ts
CHANGED
|
@@ -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