@rolster/react-components 18.21.43 → 18.21.44

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.
@@ -26,6 +26,8 @@
26
26
 
27
27
  .rls-amount {
28
28
  --pvt-font-size: var(--rlc-amount-font-size, inherit);
29
+ --pvt-decimal-width: var(--rlc-amount-decimal-width, 0.5);
30
+ --pvt-decimal-size: var(--rlc-amount-decimal-size, 0.6);
29
31
  --rlc-tabular-text-font-size: var(--pvt-font-size);
30
32
  display: flex;
31
33
  width: var(--rlc-amount-width, auto);
@@ -46,8 +48,12 @@
46
48
  justify-content: var(--rlc-amount-text-align, flex-start);
47
49
  }
48
50
  .rls-amount__decimal {
49
- --rlc-tabular-text-char-width: calc(var(--pvt-font-size) * 0.5);
50
- --rlc-tabular-text-font-size: calc(var(--pvt-font-size) * 0.6);
51
+ --rlc-tabular-text-char-width: calc(
52
+ var(--pvt-font-size) * var(--pvt-decimal-width)
53
+ );
54
+ --rlc-tabular-text-font-size: calc(
55
+ var(--pvt-font-size) * var(--pvt-decimal-size)
56
+ );
51
57
  align-self: flex-end;
52
58
  } /*# sourceMappingURL=Amount.css.map */
53
59
 
@@ -26,6 +26,8 @@
26
26
 
27
27
  .rls-amount {
28
28
  --pvt-font-size: var(--rlc-amount-font-size, inherit);
29
+ --pvt-decimal-width: var(--rlc-amount-decimal-width, 0.5);
30
+ --pvt-decimal-size: var(--rlc-amount-decimal-size, 0.6);
29
31
  --rlc-tabular-text-font-size: var(--pvt-font-size);
30
32
  display: flex;
31
33
  width: var(--rlc-amount-width, auto);
@@ -46,8 +48,12 @@
46
48
  justify-content: var(--rlc-amount-text-align, flex-start);
47
49
  }
48
50
  .rls-amount__decimal {
49
- --rlc-tabular-text-char-width: calc(var(--pvt-font-size) * 0.5);
50
- --rlc-tabular-text-font-size: calc(var(--pvt-font-size) * 0.6);
51
+ --rlc-tabular-text-char-width: calc(
52
+ var(--pvt-font-size) * var(--pvt-decimal-width)
53
+ );
54
+ --rlc-tabular-text-font-size: calc(
55
+ var(--pvt-font-size) * var(--pvt-decimal-size)
56
+ );
51
57
  align-self: flex-end;
52
58
  } /*# sourceMappingURL=Amount.css.map */
53
59
 
@@ -1,5 +1,7 @@
1
1
  .rls-amount {
2
2
  --pvt-font-size: var(--rlc-amount-font-size, inherit);
3
+ --pvt-decimal-width: var(--rlc-amount-decimal-width, 0.5);
4
+ --pvt-decimal-size: var(--rlc-amount-decimal-size, 0.6);
3
5
  --rlc-tabular-text-font-size: var(--pvt-font-size);
4
6
  display: flex;
5
7
  width: var(--rlc-amount-width, auto);
@@ -20,7 +22,11 @@
20
22
  justify-content: var(--rlc-amount-text-align, flex-start);
21
23
  }
22
24
  .rls-amount__decimal {
23
- --rlc-tabular-text-char-width: calc(var(--pvt-font-size) * 0.5);
24
- --rlc-tabular-text-font-size: calc(var(--pvt-font-size) * 0.6);
25
+ --rlc-tabular-text-char-width: calc(
26
+ var(--pvt-font-size) * var(--pvt-decimal-width)
27
+ );
28
+ --rlc-tabular-text-font-size: calc(
29
+ var(--pvt-font-size) * var(--pvt-decimal-size)
30
+ );
25
31
  align-self: flex-end;
26
32
  } /*# sourceMappingURL=Amount.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../../../../src/components/atoms/Amount/Amount.scss"],"names":[],"mappings":"AAOA,YACE,sDACA,mDAEA,aACA,oCACA,yDACA,gCACA,+BAEA,uBACE,iCAGF,oBACE,cACA,8CACA,yCAGF,qBACE,aACA,yDAGF,qBACE,gEACA,+DAEA","file":"Amount.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../../../../src/components/atoms/Amount/Amount.scss"],"names":[],"mappings":"AAOA,YACE,sDACA,0DACA,wDACA,mDAEA,aACA,oCACA,yDACA,gCACA,+BAEA,uBACE,iCAGF,oBACE,cACA,8CACA,yCAGF,qBACE,aACA,yDAGF,qBACE,uFAIA,qFAIA","file":"Amount.css"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolster/react-components",
3
- "version": "18.21.43",
3
+ "version": "18.21.44",
4
4
  "type": "module",
5
5
  "description": "Package containing UI components for React Project.",
6
6
  "module": "dist/esm/index.js",