@loadsmart/miranda-react 3.16.0 → 3.17.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/index.d.ts +14 -14
- package/dist/tokens.d.ts +14 -14
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1789,6 +1789,18 @@ declare const WiredTooltip: ReactWebComponent<WCTooltip, {}>;
|
|
|
1789
1789
|
export { }
|
|
1790
1790
|
|
|
1791
1791
|
|
|
1792
|
+
declare module 'react' {
|
|
1793
|
+
interface CSSProperties {
|
|
1794
|
+
'--m-card-body-padding'?: string;
|
|
1795
|
+
'--m-card-border-top'?: string;
|
|
1796
|
+
'--m-card-border-left'?: string;
|
|
1797
|
+
'--m-card-border-bottom'?: string;
|
|
1798
|
+
'--m-card-border-right'?: string;
|
|
1799
|
+
'--m-card-border-radius'?: string;
|
|
1800
|
+
}
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
|
|
1792
1804
|
declare module 'react' {
|
|
1793
1805
|
interface CSSProperties {
|
|
1794
1806
|
'--m-divider-margin-top'?: string;
|
|
@@ -1808,12 +1820,8 @@ declare module 'react' {
|
|
|
1808
1820
|
|
|
1809
1821
|
declare module 'react' {
|
|
1810
1822
|
interface CSSProperties {
|
|
1811
|
-
'--m-
|
|
1812
|
-
'--m-
|
|
1813
|
-
'--m-card-border-left'?: string;
|
|
1814
|
-
'--m-card-border-bottom'?: string;
|
|
1815
|
-
'--m-card-border-right'?: string;
|
|
1816
|
-
'--m-card-border-radius'?: string;
|
|
1823
|
+
'--m-text-display'?: string;
|
|
1824
|
+
'--m-text-max-width'?: string;
|
|
1817
1825
|
}
|
|
1818
1826
|
}
|
|
1819
1827
|
|
|
@@ -1830,14 +1838,6 @@ declare module 'react' {
|
|
|
1830
1838
|
}
|
|
1831
1839
|
|
|
1832
1840
|
|
|
1833
|
-
declare module 'react' {
|
|
1834
|
-
interface CSSProperties {
|
|
1835
|
-
'--m-text-display'?: string;
|
|
1836
|
-
'--m-text-max-width'?: string;
|
|
1837
|
-
}
|
|
1838
|
-
}
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
1841
|
declare module 'react' {
|
|
1842
1842
|
interface CSSProperties {
|
|
1843
1843
|
'--m-table-border-radius'?: string;
|
package/dist/tokens.d.ts
CHANGED
|
@@ -5,6 +5,18 @@ export * from "@loadsmart/miranda-tokens/dist/themes.js";
|
|
|
5
5
|
export { }
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
declare module 'react' {
|
|
9
|
+
interface CSSProperties {
|
|
10
|
+
'--m-card-body-padding'?: string;
|
|
11
|
+
'--m-card-border-top'?: string;
|
|
12
|
+
'--m-card-border-left'?: string;
|
|
13
|
+
'--m-card-border-bottom'?: string;
|
|
14
|
+
'--m-card-border-right'?: string;
|
|
15
|
+
'--m-card-border-radius'?: string;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
|
|
8
20
|
declare module 'react' {
|
|
9
21
|
interface CSSProperties {
|
|
10
22
|
'--m-divider-margin-top'?: string;
|
|
@@ -24,12 +36,8 @@ declare module 'react' {
|
|
|
24
36
|
|
|
25
37
|
declare module 'react' {
|
|
26
38
|
interface CSSProperties {
|
|
27
|
-
'--m-
|
|
28
|
-
'--m-
|
|
29
|
-
'--m-card-border-left'?: string;
|
|
30
|
-
'--m-card-border-bottom'?: string;
|
|
31
|
-
'--m-card-border-right'?: string;
|
|
32
|
-
'--m-card-border-radius'?: string;
|
|
39
|
+
'--m-text-display'?: string;
|
|
40
|
+
'--m-text-max-width'?: string;
|
|
33
41
|
}
|
|
34
42
|
}
|
|
35
43
|
|
|
@@ -46,14 +54,6 @@ declare module 'react' {
|
|
|
46
54
|
}
|
|
47
55
|
|
|
48
56
|
|
|
49
|
-
declare module 'react' {
|
|
50
|
-
interface CSSProperties {
|
|
51
|
-
'--m-text-display'?: string;
|
|
52
|
-
'--m-text-max-width'?: string;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
|
|
57
57
|
declare module 'react' {
|
|
58
58
|
interface CSSProperties {
|
|
59
59
|
'--m-table-border-radius'?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loadsmart/miranda-react",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.17.0",
|
|
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.
|
|
53
|
-
"@loadsmart/miranda-wc": "3.
|
|
52
|
+
"@loadsmart/miranda-tokens": "4.17.0",
|
|
53
|
+
"@loadsmart/miranda-wc": "3.17.0",
|
|
54
54
|
"react-is": "^18.3.1"
|
|
55
55
|
},
|
|
56
56
|
"directories": {
|