@loadsmart/miranda-react 3.0.0-beta.82 → 3.0.0-beta.84
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 +17 -17
- package/dist/tokens.d.ts +17 -17
- package/package.json +5 -4
package/dist/index.d.ts
CHANGED
|
@@ -1592,15 +1592,6 @@ declare const WiredTooltip: ReactWebComponent<WCTooltip, {}>;
|
|
|
1592
1592
|
export { }
|
|
1593
1593
|
|
|
1594
1594
|
|
|
1595
|
-
declare module 'react' {
|
|
1596
|
-
interface CSSProperties {
|
|
1597
|
-
'--m-divider-margin-top'?: string;
|
|
1598
|
-
'--m-divider-margin-bottom'?: string;
|
|
1599
|
-
'--m-divider-margin-y'?: string;
|
|
1600
|
-
}
|
|
1601
|
-
}
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
1595
|
declare module 'react' {
|
|
1605
1596
|
interface CSSProperties {
|
|
1606
1597
|
'--m-card-body-padding'?: string;
|
|
@@ -1615,20 +1606,17 @@ declare module 'react' {
|
|
|
1615
1606
|
|
|
1616
1607
|
declare module 'react' {
|
|
1617
1608
|
interface CSSProperties {
|
|
1618
|
-
'--m-
|
|
1619
|
-
'--m-
|
|
1609
|
+
'--m-divider-margin-top'?: string;
|
|
1610
|
+
'--m-divider-margin-bottom'?: string;
|
|
1611
|
+
'--m-divider-margin-y'?: string;
|
|
1620
1612
|
}
|
|
1621
1613
|
}
|
|
1622
1614
|
|
|
1623
1615
|
|
|
1624
1616
|
declare module 'react' {
|
|
1625
1617
|
interface CSSProperties {
|
|
1626
|
-
'--m-
|
|
1627
|
-
'--m-
|
|
1628
|
-
'--m-table-border-top-right-radius'?: string;
|
|
1629
|
-
'--m-table-border-bottom-left-radius'?: string;
|
|
1630
|
-
'--m-table-border-bottom-right-radius'?: string;
|
|
1631
|
-
'--m-table-border-width'?: string;
|
|
1618
|
+
'--m-icon-size'?: string;
|
|
1619
|
+
'--m-icon-color'?: string;
|
|
1632
1620
|
}
|
|
1633
1621
|
}
|
|
1634
1622
|
|
|
@@ -1661,3 +1649,15 @@ declare module 'react' {
|
|
|
1661
1649
|
'--m-text-max-width'?: string;
|
|
1662
1650
|
}
|
|
1663
1651
|
}
|
|
1652
|
+
|
|
1653
|
+
|
|
1654
|
+
declare module 'react' {
|
|
1655
|
+
interface CSSProperties {
|
|
1656
|
+
'--m-table-border-radius'?: string;
|
|
1657
|
+
'--m-table-border-top-left-radius'?: string;
|
|
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;
|
|
1662
|
+
}
|
|
1663
|
+
}
|
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-card-body-padding'?: string;
|
|
@@ -28,20 +19,17 @@ declare module 'react' {
|
|
|
28
19
|
|
|
29
20
|
declare module 'react' {
|
|
30
21
|
interface CSSProperties {
|
|
31
|
-
'--m-
|
|
32
|
-
'--m-
|
|
22
|
+
'--m-divider-margin-top'?: string;
|
|
23
|
+
'--m-divider-margin-bottom'?: string;
|
|
24
|
+
'--m-divider-margin-y'?: string;
|
|
33
25
|
}
|
|
34
26
|
}
|
|
35
27
|
|
|
36
28
|
|
|
37
29
|
declare module 'react' {
|
|
38
30
|
interface CSSProperties {
|
|
39
|
-
'--m-
|
|
40
|
-
'--m-
|
|
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;
|
|
31
|
+
'--m-icon-size'?: string;
|
|
32
|
+
'--m-icon-color'?: string;
|
|
45
33
|
}
|
|
46
34
|
}
|
|
47
35
|
|
|
@@ -74,3 +62,15 @@ declare module 'react' {
|
|
|
74
62
|
'--m-text-max-width'?: string;
|
|
75
63
|
}
|
|
76
64
|
}
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
declare module 'react' {
|
|
68
|
+
interface CSSProperties {
|
|
69
|
+
'--m-table-border-radius'?: string;
|
|
70
|
+
'--m-table-border-top-left-radius'?: string;
|
|
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;
|
|
75
|
+
}
|
|
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.84",
|
|
4
4
|
"description": "React component library based on Miranda Web Components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"figma:create": "dotenvx run -- figma connect create --outDir src/components",
|
|
21
21
|
"figma:parse": "dotenvx run -- figma connect parse",
|
|
22
22
|
"figma:publish": "dotenvx run -- figma connect publish",
|
|
23
|
-
"figma:unpublish": "dotenvx run -- figma connect unpublish"
|
|
23
|
+
"figma:unpublish": "dotenvx run -- figma connect unpublish",
|
|
24
|
+
"figma:build-icons": "tsx ./src/scripts/build-icons-figma-connect.ts"
|
|
24
25
|
},
|
|
25
26
|
"author": "Loadsmart",
|
|
26
27
|
"license": "UNLICENSED",
|
|
@@ -48,8 +49,8 @@
|
|
|
48
49
|
"dependencies": {
|
|
49
50
|
"@figma/code-connect": "^1.3.3",
|
|
50
51
|
"@lit/react": "^1.0.5",
|
|
51
|
-
"@loadsmart/miranda-tokens": "4.0.0-beta.
|
|
52
|
-
"@loadsmart/miranda-wc": "3.0.0-beta.
|
|
52
|
+
"@loadsmart/miranda-tokens": "4.0.0-beta.84",
|
|
53
|
+
"@loadsmart/miranda-wc": "3.0.0-beta.84",
|
|
53
54
|
"react-is": "^18.3.1"
|
|
54
55
|
},
|
|
55
56
|
"directories": {
|