@loadsmart/miranda-react 3.23.0-alpha.1 → 3.23.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-icon-size'?: 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
|
|
|
@@ -1829,14 +1837,6 @@ declare module 'react' {
|
|
|
1829
1837
|
}
|
|
1830
1838
|
|
|
1831
1839
|
|
|
1832
|
-
declare module 'react' {
|
|
1833
|
-
interface CSSProperties {
|
|
1834
|
-
'--m-text-display'?: string;
|
|
1835
|
-
'--m-text-max-width'?: string;
|
|
1836
|
-
}
|
|
1837
|
-
}
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
1840
|
declare module 'react' {
|
|
1841
1841
|
interface CSSProperties {
|
|
1842
1842
|
'--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-icon-size'?: 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
|
|
|
@@ -45,14 +53,6 @@ declare module 'react' {
|
|
|
45
53
|
}
|
|
46
54
|
|
|
47
55
|
|
|
48
|
-
declare module 'react' {
|
|
49
|
-
interface CSSProperties {
|
|
50
|
-
'--m-text-display'?: string;
|
|
51
|
-
'--m-text-max-width'?: string;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
|
|
56
56
|
declare module 'react' {
|
|
57
57
|
interface CSSProperties {
|
|
58
58
|
'--m-table-border-radius'?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loadsmart/miranda-react",
|
|
3
|
-
"version": "3.23.0
|
|
3
|
+
"version": "3.23.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.23.0
|
|
53
|
-
"@loadsmart/miranda-wc": "3.23.0
|
|
52
|
+
"@loadsmart/miranda-tokens": "4.23.0",
|
|
53
|
+
"@loadsmart/miranda-wc": "3.23.0",
|
|
54
54
|
"react-is": "^18.3.1"
|
|
55
55
|
},
|
|
56
56
|
"directories": {
|