@loadsmart/miranda-react 3.0.0-beta.80 → 3.0.0-beta.82
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 +8 -8
- package/dist/tokens.d.ts +8 -8
- package/package.json +13 -6
package/dist/index.d.ts
CHANGED
|
@@ -1628,6 +1628,7 @@ declare module 'react' {
|
|
|
1628
1628
|
'--m-table-border-top-right-radius'?: string;
|
|
1629
1629
|
'--m-table-border-bottom-left-radius'?: string;
|
|
1630
1630
|
'--m-table-border-bottom-right-radius'?: string;
|
|
1631
|
+
'--m-table-border-width'?: string;
|
|
1631
1632
|
}
|
|
1632
1633
|
}
|
|
1633
1634
|
|
|
@@ -1645,19 +1646,18 @@ declare module 'react' {
|
|
|
1645
1646
|
|
|
1646
1647
|
declare module 'react' {
|
|
1647
1648
|
interface CSSProperties {
|
|
1648
|
-
'--m-
|
|
1649
|
-
'--m-
|
|
1649
|
+
'--m-table-border-radius'?: string;
|
|
1650
|
+
'--m-table-border-top-left-radius'?: string;
|
|
1651
|
+
'--m-table-border-top-right-radius'?: string;
|
|
1652
|
+
'--m-table-border-bottom-left-radius'?: string;
|
|
1653
|
+
'--m-table-border-bottom-right-radius'?: string;
|
|
1650
1654
|
}
|
|
1651
1655
|
}
|
|
1652
1656
|
|
|
1653
1657
|
|
|
1654
1658
|
declare module 'react' {
|
|
1655
1659
|
interface CSSProperties {
|
|
1656
|
-
'--m-
|
|
1657
|
-
'--m-
|
|
1658
|
-
'--m-table-border-top-right-radius'?: string;
|
|
1659
|
-
'--m-table-border-bottom-left-radius'?: string;
|
|
1660
|
-
'--m-table-border-bottom-right-radius'?: string;
|
|
1661
|
-
'--m-table-border-width'?: string;
|
|
1660
|
+
'--m-text-display'?: string;
|
|
1661
|
+
'--m-text-max-width'?: string;
|
|
1662
1662
|
}
|
|
1663
1663
|
}
|
package/dist/tokens.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ declare module 'react' {
|
|
|
41
41
|
'--m-table-border-top-right-radius'?: string;
|
|
42
42
|
'--m-table-border-bottom-left-radius'?: string;
|
|
43
43
|
'--m-table-border-bottom-right-radius'?: string;
|
|
44
|
+
'--m-table-border-width'?: string;
|
|
44
45
|
}
|
|
45
46
|
}
|
|
46
47
|
|
|
@@ -58,19 +59,18 @@ declare module 'react' {
|
|
|
58
59
|
|
|
59
60
|
declare module 'react' {
|
|
60
61
|
interface CSSProperties {
|
|
61
|
-
'--m-
|
|
62
|
-
'--m-
|
|
62
|
+
'--m-table-border-radius'?: string;
|
|
63
|
+
'--m-table-border-top-left-radius'?: string;
|
|
64
|
+
'--m-table-border-top-right-radius'?: string;
|
|
65
|
+
'--m-table-border-bottom-left-radius'?: string;
|
|
66
|
+
'--m-table-border-bottom-right-radius'?: string;
|
|
63
67
|
}
|
|
64
68
|
}
|
|
65
69
|
|
|
66
70
|
|
|
67
71
|
declare module 'react' {
|
|
68
72
|
interface CSSProperties {
|
|
69
|
-
'--m-
|
|
70
|
-
'--m-
|
|
71
|
-
'--m-table-border-top-right-radius'?: string;
|
|
72
|
-
'--m-table-border-bottom-left-radius'?: string;
|
|
73
|
-
'--m-table-border-bottom-right-radius'?: string;
|
|
74
|
-
'--m-table-border-width'?: string;
|
|
73
|
+
'--m-text-display'?: string;
|
|
74
|
+
'--m-text-max-width'?: string;
|
|
75
75
|
}
|
|
76
76
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loadsmart/miranda-react",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.82",
|
|
4
4
|
"description": "React component library based on Miranda Web Components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -16,19 +16,25 @@
|
|
|
16
16
|
"build": "vite build",
|
|
17
17
|
"prePublishOnly": "npm run build",
|
|
18
18
|
"release": "semantic-release",
|
|
19
|
-
"typecheck": "tsc --noEmit"
|
|
19
|
+
"typecheck": "tsc --noEmit",
|
|
20
|
+
"figma:create": "dotenvx run -- figma connect create --outDir src/components",
|
|
21
|
+
"figma:parse": "dotenvx run -- figma connect parse",
|
|
22
|
+
"figma:publish": "dotenvx run -- figma connect publish",
|
|
23
|
+
"figma:unpublish": "dotenvx run -- figma connect unpublish"
|
|
20
24
|
},
|
|
21
25
|
"author": "Loadsmart",
|
|
22
26
|
"license": "UNLICENSED",
|
|
23
27
|
"devDependencies": {
|
|
24
28
|
"@loadsmart/miranda-utils": "*",
|
|
29
|
+
"@types/node": "^22.15.23",
|
|
30
|
+
"@types/react": "^17.0.85",
|
|
25
31
|
"@types/react-dom": "^17.0.26",
|
|
26
32
|
"@types/react-is": "^18.3.0",
|
|
27
|
-
"@types/react": "^17.0.85",
|
|
28
33
|
"@vitejs/plugin-react": "^4.4.1",
|
|
29
|
-
"react-dom": "^17.0.2",
|
|
30
34
|
"react": "^17.0.2",
|
|
35
|
+
"react-dom": "^17.0.2",
|
|
31
36
|
"ts-loader": "^9.4.2",
|
|
37
|
+
"tsx": "^4.19.4",
|
|
32
38
|
"vite": "^6.3.2",
|
|
33
39
|
"vite-plugin-dts": "^4.5.3"
|
|
34
40
|
},
|
|
@@ -40,9 +46,10 @@
|
|
|
40
46
|
"access": "public"
|
|
41
47
|
},
|
|
42
48
|
"dependencies": {
|
|
49
|
+
"@figma/code-connect": "^1.3.3",
|
|
43
50
|
"@lit/react": "^1.0.5",
|
|
44
|
-
"@loadsmart/miranda-tokens": "4.0.0-beta.
|
|
45
|
-
"@loadsmart/miranda-wc": "3.0.0-beta.
|
|
51
|
+
"@loadsmart/miranda-tokens": "4.0.0-beta.82",
|
|
52
|
+
"@loadsmart/miranda-wc": "3.0.0-beta.82",
|
|
46
53
|
"react-is": "^18.3.1"
|
|
47
54
|
},
|
|
48
55
|
"directories": {
|