@loadsmart/miranda-react 3.16.0 → 3.17.1

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/index.d.ts CHANGED
@@ -1789,15 +1789,6 @@ declare const WiredTooltip: ReactWebComponent<WCTooltip, {}>;
1789
1789
  export { }
1790
1790
 
1791
1791
 
1792
- declare module 'react' {
1793
- interface CSSProperties {
1794
- '--m-divider-margin-top'?: string;
1795
- '--m-divider-margin-bottom'?: string;
1796
- '--m-divider-margin-y'?: string;
1797
- }
1798
- }
1799
-
1800
-
1801
1792
  declare module 'react' {
1802
1793
  interface CSSProperties {
1803
1794
  '--m-icon-size'?: string;
@@ -1820,20 +1811,20 @@ declare module 'react' {
1820
1811
 
1821
1812
  declare module 'react' {
1822
1813
  interface CSSProperties {
1823
- '--m-table-border-radius'?: string;
1824
- '--m-table-border-top-left-radius'?: string;
1825
- '--m-table-border-top-right-radius'?: string;
1826
- '--m-table-border-bottom-left-radius'?: string;
1827
- '--m-table-border-bottom-right-radius'?: string;
1828
- '--m-table-border-width'?: string;
1814
+ '--m-divider-margin-top'?: string;
1815
+ '--m-divider-margin-bottom'?: string;
1816
+ '--m-divider-margin-y'?: string;
1829
1817
  }
1830
1818
  }
1831
1819
 
1832
1820
 
1833
1821
  declare module 'react' {
1834
1822
  interface CSSProperties {
1835
- '--m-text-display'?: string;
1836
- '--m-text-max-width'?: string;
1823
+ '--m-table-border-radius'?: string;
1824
+ '--m-table-border-top-left-radius'?: string;
1825
+ '--m-table-border-top-right-radius'?: string;
1826
+ '--m-table-border-bottom-left-radius'?: string;
1827
+ '--m-table-border-bottom-right-radius'?: string;
1837
1828
  }
1838
1829
  }
1839
1830
 
@@ -1845,6 +1836,7 @@ declare module 'react' {
1845
1836
  '--m-table-border-top-right-radius'?: string;
1846
1837
  '--m-table-border-bottom-left-radius'?: string;
1847
1838
  '--m-table-border-bottom-right-radius'?: string;
1839
+ '--m-table-border-width'?: string;
1848
1840
  }
1849
1841
  }
1850
1842
 
@@ -1858,3 +1850,11 @@ declare module 'react' {
1858
1850
  '--m-table-border-bottom-right-radius'?: string;
1859
1851
  }
1860
1852
  }
1853
+
1854
+
1855
+ declare module 'react' {
1856
+ interface CSSProperties {
1857
+ '--m-text-display'?: string;
1858
+ '--m-text-max-width'?: string;
1859
+ }
1860
+ }
package/dist/tokens.d.ts CHANGED
@@ -5,15 +5,6 @@ export * from "@loadsmart/miranda-tokens/dist/themes.js";
5
5
  export { }
6
6
 
7
7
 
8
- declare module 'react' {
9
- interface CSSProperties {
10
- '--m-divider-margin-top'?: string;
11
- '--m-divider-margin-bottom'?: string;
12
- '--m-divider-margin-y'?: string;
13
- }
14
- }
15
-
16
-
17
8
  declare module 'react' {
18
9
  interface CSSProperties {
19
10
  '--m-icon-size'?: string;
@@ -36,20 +27,20 @@ declare module 'react' {
36
27
 
37
28
  declare module 'react' {
38
29
  interface CSSProperties {
39
- '--m-table-border-radius'?: string;
40
- '--m-table-border-top-left-radius'?: string;
41
- '--m-table-border-top-right-radius'?: string;
42
- '--m-table-border-bottom-left-radius'?: string;
43
- '--m-table-border-bottom-right-radius'?: string;
44
- '--m-table-border-width'?: string;
30
+ '--m-divider-margin-top'?: string;
31
+ '--m-divider-margin-bottom'?: string;
32
+ '--m-divider-margin-y'?: string;
45
33
  }
46
34
  }
47
35
 
48
36
 
49
37
  declare module 'react' {
50
38
  interface CSSProperties {
51
- '--m-text-display'?: string;
52
- '--m-text-max-width'?: string;
39
+ '--m-table-border-radius'?: string;
40
+ '--m-table-border-top-left-radius'?: string;
41
+ '--m-table-border-top-right-radius'?: string;
42
+ '--m-table-border-bottom-left-radius'?: string;
43
+ '--m-table-border-bottom-right-radius'?: string;
53
44
  }
54
45
  }
55
46
 
@@ -61,6 +52,7 @@ declare module 'react' {
61
52
  '--m-table-border-top-right-radius'?: string;
62
53
  '--m-table-border-bottom-left-radius'?: string;
63
54
  '--m-table-border-bottom-right-radius'?: string;
55
+ '--m-table-border-width'?: string;
64
56
  }
65
57
  }
66
58
 
@@ -74,3 +66,11 @@ declare module 'react' {
74
66
  '--m-table-border-bottom-right-radius'?: string;
75
67
  }
76
68
  }
69
+
70
+
71
+ declare module 'react' {
72
+ interface CSSProperties {
73
+ '--m-text-display'?: string;
74
+ '--m-text-max-width'?: string;
75
+ }
76
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loadsmart/miranda-react",
3
- "version": "3.16.0",
3
+ "version": "3.17.1",
4
4
  "description": "React component library based on Miranda Web Components",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -49,8 +49,8 @@
49
49
  },
50
50
  "dependencies": {
51
51
  "@lit/react": "^1.0.5",
52
- "@loadsmart/miranda-tokens": "4.16.0",
53
- "@loadsmart/miranda-wc": "3.16.0",
52
+ "@loadsmart/miranda-tokens": "4.17.1",
53
+ "@loadsmart/miranda-wc": "3.17.1",
54
54
  "react-is": "^18.3.1"
55
55
  },
56
56
  "directories": {