@loadsmart/miranda-react 3.0.0-beta.65 → 3.0.0-beta.66

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
@@ -45,7 +45,7 @@ import { ReactNode } from 'react';
45
45
  import { ReactWebComponent } from '@lit/react';
46
46
  import { RefAttributes } from 'react';
47
47
  import { SelectionType } from '@loadsmart/miranda-wc';
48
- import type { SelectionValue } from '@loadsmart/miranda-wc';
48
+ import { SelectionValue } from '@loadsmart/miranda-wc';
49
49
  import { StepChangeEventDetail } from '@loadsmart/miranda-wc';
50
50
  import { StepNavigateEventDetail } from '@loadsmart/miranda-wc';
51
51
  import { SwitchSize } from '@loadsmart/miranda-wc';
@@ -782,6 +782,10 @@ declare type SelectionProps<
782
782
  ? MultipleProps<TComponent, OptionValue>
783
783
  : BaseProps<TComponent, SelectionValue<OptionValue>>);
784
784
 
785
+ export { SelectionType }
786
+
787
+ export { SelectionValue }
788
+
785
789
  export declare interface SelectOption<TValue extends string = string> {
786
790
  value: TValue;
787
791
  label?: string;
@@ -1050,7 +1054,7 @@ export declare namespace ToggleGroup {
1050
1054
  var Toggle: default_2.ForwardRefExoticComponent<Omit<ToggleProps, "ref"> & default_2.RefAttributes<WCToggle>>;
1051
1055
  }
1052
1056
 
1053
- declare type ToggleGroupOption<TValue extends string> = {
1057
+ export declare type ToggleGroupOption<TValue extends string> = {
1054
1058
  value: TValue;
1055
1059
  label?: string;
1056
1060
  leading?: ReactNode;
@@ -1542,19 +1546,19 @@ declare module 'react' {
1542
1546
 
1543
1547
  declare module 'react' {
1544
1548
  interface CSSProperties {
1545
- '--m-table-border-radius'?: string;
1546
- '--m-table-border-top-left-radius'?: string;
1547
- '--m-table-border-top-right-radius'?: string;
1548
- '--m-table-border-bottom-left-radius'?: string;
1549
- '--m-table-border-bottom-right-radius'?: string;
1549
+ '--m-text-display'?: string;
1550
+ '--m-text-max-width'?: string;
1550
1551
  }
1551
1552
  }
1552
1553
 
1553
1554
 
1554
1555
  declare module 'react' {
1555
1556
  interface CSSProperties {
1556
- '--m-text-display'?: string;
1557
- '--m-text-max-width'?: string;
1557
+ '--m-table-border-radius'?: string;
1558
+ '--m-table-border-top-left-radius'?: string;
1559
+ '--m-table-border-top-right-radius'?: string;
1560
+ '--m-table-border-bottom-left-radius'?: string;
1561
+ '--m-table-border-bottom-right-radius'?: string;
1558
1562
  }
1559
1563
  }
1560
1564
 
package/dist/tokens.d.ts CHANGED
@@ -36,19 +36,19 @@ declare module 'react' {
36
36
 
37
37
  declare module 'react' {
38
38
  interface CSSProperties {
39
- '--m-table-border-radius'?: string;
40
- '--m-table-border-top-left-radius'?: string;
41
- '--m-table-border-top-right-radius'?: string;
42
- '--m-table-border-bottom-left-radius'?: string;
43
- '--m-table-border-bottom-right-radius'?: string;
39
+ '--m-text-display'?: string;
40
+ '--m-text-max-width'?: string;
44
41
  }
45
42
  }
46
43
 
47
44
 
48
45
  declare module 'react' {
49
46
  interface CSSProperties {
50
- '--m-text-display'?: string;
51
- '--m-text-max-width'?: string;
47
+ '--m-table-border-radius'?: string;
48
+ '--m-table-border-top-left-radius'?: string;
49
+ '--m-table-border-top-right-radius'?: string;
50
+ '--m-table-border-bottom-left-radius'?: string;
51
+ '--m-table-border-bottom-right-radius'?: string;
52
52
  }
53
53
  }
54
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loadsmart/miranda-react",
3
- "version": "3.0.0-beta.65",
3
+ "version": "3.0.0-beta.66",
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.65",
45
- "@loadsmart/miranda-wc": "3.0.0-beta.65",
44
+ "@loadsmart/miranda-tokens": "4.0.0-beta.66",
45
+ "@loadsmart/miranda-wc": "3.0.0-beta.66",
46
46
  "react-is": "^18.3.1"
47
47
  },
48
48
  "directories": {