@loadsmart/miranda-react 4.0.0-alpha.10 → 4.0.0-alpha.12
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 +13 -13
- package/dist/styles/variables.scss +0 -1
- package/dist/tokens.d.ts +13 -13
- package/package.json +12 -5
package/dist/index.d.ts
CHANGED
|
@@ -1788,29 +1788,29 @@ declare module 'react' {
|
|
|
1788
1788
|
|
|
1789
1789
|
declare module 'react' {
|
|
1790
1790
|
interface CSSProperties {
|
|
1791
|
-
'--m-
|
|
1792
|
-
'--m-
|
|
1791
|
+
'--m-divider-margin-top'?: string;
|
|
1792
|
+
'--m-divider-margin-bottom'?: string;
|
|
1793
|
+
'--m-divider-margin-y'?: string;
|
|
1793
1794
|
}
|
|
1794
1795
|
}
|
|
1795
1796
|
|
|
1796
1797
|
|
|
1797
1798
|
declare module 'react' {
|
|
1798
1799
|
interface CSSProperties {
|
|
1799
|
-
'--m-
|
|
1800
|
-
'--m-
|
|
1801
|
-
'--m-card-border-left'?: string;
|
|
1802
|
-
'--m-card-border-bottom'?: string;
|
|
1803
|
-
'--m-card-border-right'?: string;
|
|
1804
|
-
'--m-card-border-radius'?: string;
|
|
1800
|
+
'--m-text-display'?: string;
|
|
1801
|
+
'--m-text-max-width'?: string;
|
|
1805
1802
|
}
|
|
1806
1803
|
}
|
|
1807
1804
|
|
|
1808
1805
|
|
|
1809
1806
|
declare module 'react' {
|
|
1810
1807
|
interface CSSProperties {
|
|
1811
|
-
'--m-
|
|
1812
|
-
'--m-
|
|
1813
|
-
'--m-
|
|
1808
|
+
'--m-card-body-padding'?: string;
|
|
1809
|
+
'--m-card-border-top'?: string;
|
|
1810
|
+
'--m-card-border-left'?: string;
|
|
1811
|
+
'--m-card-border-bottom'?: string;
|
|
1812
|
+
'--m-card-border-right'?: string;
|
|
1813
|
+
'--m-card-border-radius'?: string;
|
|
1814
1814
|
}
|
|
1815
1815
|
}
|
|
1816
1816
|
|
|
@@ -1840,7 +1840,7 @@ declare module 'react' {
|
|
|
1840
1840
|
|
|
1841
1841
|
declare module 'react' {
|
|
1842
1842
|
interface CSSProperties {
|
|
1843
|
-
'--m-
|
|
1844
|
-
'--m-
|
|
1843
|
+
'--m-icon-size'?: string;
|
|
1844
|
+
'--m-icon-color'?: string;
|
|
1845
1845
|
}
|
|
1846
1846
|
}
|
package/dist/tokens.d.ts
CHANGED
|
@@ -18,29 +18,29 @@ declare module 'react' {
|
|
|
18
18
|
|
|
19
19
|
declare module 'react' {
|
|
20
20
|
interface CSSProperties {
|
|
21
|
-
'--m-
|
|
22
|
-
'--m-
|
|
21
|
+
'--m-divider-margin-top'?: string;
|
|
22
|
+
'--m-divider-margin-bottom'?: string;
|
|
23
|
+
'--m-divider-margin-y'?: string;
|
|
23
24
|
}
|
|
24
25
|
}
|
|
25
26
|
|
|
26
27
|
|
|
27
28
|
declare module 'react' {
|
|
28
29
|
interface CSSProperties {
|
|
29
|
-
'--m-
|
|
30
|
-
'--m-
|
|
31
|
-
'--m-card-border-left'?: string;
|
|
32
|
-
'--m-card-border-bottom'?: string;
|
|
33
|
-
'--m-card-border-right'?: string;
|
|
34
|
-
'--m-card-border-radius'?: string;
|
|
30
|
+
'--m-text-display'?: string;
|
|
31
|
+
'--m-text-max-width'?: string;
|
|
35
32
|
}
|
|
36
33
|
}
|
|
37
34
|
|
|
38
35
|
|
|
39
36
|
declare module 'react' {
|
|
40
37
|
interface CSSProperties {
|
|
41
|
-
'--m-
|
|
42
|
-
'--m-
|
|
43
|
-
'--m-
|
|
38
|
+
'--m-card-body-padding'?: string;
|
|
39
|
+
'--m-card-border-top'?: string;
|
|
40
|
+
'--m-card-border-left'?: string;
|
|
41
|
+
'--m-card-border-bottom'?: string;
|
|
42
|
+
'--m-card-border-right'?: string;
|
|
43
|
+
'--m-card-border-radius'?: string;
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
|
|
@@ -70,7 +70,7 @@ declare module 'react' {
|
|
|
70
70
|
|
|
71
71
|
declare module 'react' {
|
|
72
72
|
interface CSSProperties {
|
|
73
|
-
'--m-
|
|
74
|
-
'--m-
|
|
73
|
+
'--m-icon-size'?: string;
|
|
74
|
+
'--m-icon-color'?: string;
|
|
75
75
|
}
|
|
76
76
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loadsmart/miranda-react",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.12",
|
|
4
4
|
"description": "React component library based on Miranda Web Components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,14 +27,21 @@
|
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@figma/code-connect": "^1.3.6",
|
|
29
29
|
"@loadsmart/miranda-utils": "0.0.0",
|
|
30
|
-
"@
|
|
30
|
+
"@storybook/addon-actions": "^8.6.15",
|
|
31
|
+
"@storybook/addon-essentials": "^8.6.15",
|
|
32
|
+
"@storybook/addon-interactions": "^8.6.15",
|
|
33
|
+
"@storybook/react": "^8.6.15",
|
|
34
|
+
"@storybook/react-vite": "^8.6.15",
|
|
35
|
+
"@storybook/test": "^8.6.15",
|
|
36
|
+
"@testing-library/cypress": "^10.0.3",
|
|
31
37
|
"@types/react": "^18.3.24",
|
|
32
38
|
"@types/react-dom": "^18.3.7",
|
|
33
39
|
"@types/react-is": "^18.3.1",
|
|
34
40
|
"@vitejs/plugin-react": "^4.4.1",
|
|
41
|
+
"cypress": "15.0.0",
|
|
35
42
|
"react": "^18.3.1",
|
|
36
43
|
"react-dom": "^18.3.1",
|
|
37
|
-
"
|
|
44
|
+
"storybook": "^8.6.15",
|
|
38
45
|
"tsx": "^4.19.4",
|
|
39
46
|
"typescript": "~5.9.3",
|
|
40
47
|
"vite": "^6.3.2",
|
|
@@ -49,8 +56,8 @@
|
|
|
49
56
|
},
|
|
50
57
|
"dependencies": {
|
|
51
58
|
"@lit/react": "^1.0.5",
|
|
52
|
-
"@loadsmart/miranda-tokens": "5.0.0-alpha.
|
|
53
|
-
"@loadsmart/miranda-wc": "4.0.0-alpha.
|
|
59
|
+
"@loadsmart/miranda-tokens": "5.0.0-alpha.12",
|
|
60
|
+
"@loadsmart/miranda-wc": "4.0.0-alpha.12",
|
|
54
61
|
"react-is": "^18.3.1"
|
|
55
62
|
},
|
|
56
63
|
"directories": {
|