@loadsmart/miranda-react 3.0.0-beta.71 → 3.0.0-beta.73

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 CHANGED
@@ -39,7 +39,6 @@ import { PopoverPlacement } from '@loadsmart/miranda-wc';
39
39
  import { PopoverPosition } from '@loadsmart/miranda-wc';
40
40
  import { PopoverRepositionEventDetail } from '@loadsmart/miranda-wc';
41
41
  import { ProgressBarVariant as ProgressBarVariant_2 } from '@loadsmart/miranda-wc';
42
- import { PropsWithChildren } from 'react';
43
42
  import { RadioGroupOrientation } from '@loadsmart/miranda-wc';
44
43
  import { ReactElement } from 'react';
45
44
  import { ReactNode } from 'react';
@@ -993,7 +992,9 @@ export declare type TableRowExpandV2Props = ComponentProps<typeof TableRowExpand
993
992
  * this component should ensure that all children include the attribute slot = "expansion"
994
993
  * so they can be rendered in the expansion content of the table row.
995
994
  */
996
- declare function TableRowExpansion(props: PropsWithChildren<ReactNode>): default_2.JSX.Element;
995
+ declare function TableRowExpansion(props: {
996
+ children: ReactNode;
997
+ }): default_2.JSX.Element;
997
998
 
998
999
  export declare type TableRowProps = ComponentProps<typeof TableRow>;
999
1000
 
@@ -1591,18 +1592,6 @@ declare const WiredTooltip: ReactWebComponent<WCTooltip, {}>;
1591
1592
  export { }
1592
1593
 
1593
1594
 
1594
- declare module 'react' {
1595
- interface CSSProperties {
1596
- '--m-card-body-padding'?: string;
1597
- '--m-card-border-top'?: string;
1598
- '--m-card-border-left'?: string;
1599
- '--m-card-border-bottom'?: string;
1600
- '--m-card-border-right'?: string;
1601
- '--m-card-border-radius'?: string;
1602
- }
1603
- }
1604
-
1605
-
1606
1595
  declare module 'react' {
1607
1596
  interface CSSProperties {
1608
1597
  '--m-divider-margin-top'?: string;
@@ -1614,16 +1603,20 @@ declare module 'react' {
1614
1603
 
1615
1604
  declare module 'react' {
1616
1605
  interface CSSProperties {
1617
- '--m-icon-size'?: string;
1618
- '--m-icon-color'?: string;
1606
+ '--m-card-body-padding'?: string;
1607
+ '--m-card-border-top'?: string;
1608
+ '--m-card-border-left'?: string;
1609
+ '--m-card-border-bottom'?: string;
1610
+ '--m-card-border-right'?: string;
1611
+ '--m-card-border-radius'?: string;
1619
1612
  }
1620
1613
  }
1621
1614
 
1622
1615
 
1623
1616
  declare module 'react' {
1624
1617
  interface CSSProperties {
1625
- '--m-text-display'?: string;
1626
- '--m-text-max-width'?: string;
1618
+ '--m-icon-size'?: string;
1619
+ '--m-icon-color'?: string;
1627
1620
  }
1628
1621
  }
1629
1622
 
@@ -1635,6 +1628,7 @@ declare module 'react' {
1635
1628
  '--m-table-border-top-right-radius'?: string;
1636
1629
  '--m-table-border-bottom-left-radius'?: string;
1637
1630
  '--m-table-border-bottom-right-radius'?: string;
1631
+ '--m-table-border-width'?: string;
1638
1632
  }
1639
1633
  }
1640
1634
 
@@ -1650,6 +1644,14 @@ declare module 'react' {
1650
1644
  }
1651
1645
 
1652
1646
 
1647
+ declare module 'react' {
1648
+ interface CSSProperties {
1649
+ '--m-text-display'?: string;
1650
+ '--m-text-max-width'?: string;
1651
+ }
1652
+ }
1653
+
1654
+
1653
1655
  declare module 'react' {
1654
1656
  interface CSSProperties {
1655
1657
  '--m-table-border-radius'?: string;
package/dist/tokens.d.ts CHANGED
@@ -5,18 +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-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
-
20
8
  declare module 'react' {
21
9
  interface CSSProperties {
22
10
  '--m-divider-margin-top'?: string;
@@ -28,16 +16,20 @@ declare module 'react' {
28
16
 
29
17
  declare module 'react' {
30
18
  interface CSSProperties {
31
- '--m-icon-size'?: string;
32
- '--m-icon-color'?: string;
19
+ '--m-card-body-padding'?: string;
20
+ '--m-card-border-top'?: string;
21
+ '--m-card-border-left'?: string;
22
+ '--m-card-border-bottom'?: string;
23
+ '--m-card-border-right'?: string;
24
+ '--m-card-border-radius'?: string;
33
25
  }
34
26
  }
35
27
 
36
28
 
37
29
  declare module 'react' {
38
30
  interface CSSProperties {
39
- '--m-text-display'?: string;
40
- '--m-text-max-width'?: string;
31
+ '--m-icon-size'?: string;
32
+ '--m-icon-color'?: string;
41
33
  }
42
34
  }
43
35
 
@@ -49,6 +41,7 @@ declare module 'react' {
49
41
  '--m-table-border-top-right-radius'?: string;
50
42
  '--m-table-border-bottom-left-radius'?: string;
51
43
  '--m-table-border-bottom-right-radius'?: string;
44
+ '--m-table-border-width'?: string;
52
45
  }
53
46
  }
54
47
 
@@ -64,6 +57,14 @@ declare module 'react' {
64
57
  }
65
58
 
66
59
 
60
+ declare module 'react' {
61
+ interface CSSProperties {
62
+ '--m-text-display'?: string;
63
+ '--m-text-max-width'?: string;
64
+ }
65
+ }
66
+
67
+
67
68
  declare module 'react' {
68
69
  interface CSSProperties {
69
70
  '--m-table-border-radius'?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loadsmart/miranda-react",
3
- "version": "3.0.0-beta.71",
3
+ "version": "3.0.0-beta.73",
4
4
  "description": "React component library based on Miranda Web Components",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -41,8 +41,8 @@
41
41
  },
42
42
  "dependencies": {
43
43
  "@lit/react": "^1.0.5",
44
- "@loadsmart/miranda-tokens": "4.0.0-beta.71",
45
- "@loadsmart/miranda-wc": "3.0.0-beta.71",
44
+ "@loadsmart/miranda-tokens": "4.0.0-beta.73",
45
+ "@loadsmart/miranda-wc": "3.0.0-beta.73",
46
46
  "react-is": "^18.3.1"
47
47
  },
48
48
  "directories": {