@lumx/react 3.0.4-alpha.0 → 3.0.4

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/package.json CHANGED
@@ -7,8 +7,8 @@
7
7
  },
8
8
  "dependencies": {
9
9
  "@juggle/resize-observer": "^3.2.0",
10
- "@lumx/core": "^3.0.4-alpha.0",
11
- "@lumx/icons": "^3.0.4-alpha.0",
10
+ "@lumx/core": "^3.0.4",
11
+ "@lumx/icons": "^3.0.4",
12
12
  "@popperjs/core": "^2.5.4",
13
13
  "body-scroll-lock": "^3.1.5",
14
14
  "classnames": "^2.2.6",
@@ -17,17 +17,17 @@
17
17
  "uid": "^2.0.0"
18
18
  },
19
19
  "devDependencies": {
20
- "@babel/core": "^7.8.3",
21
- "@babel/plugin-proposal-class-properties": "^7.8.3",
22
- "@babel/plugin-proposal-export-default-from": "^7.8.3",
23
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
24
- "@babel/plugin-proposal-object-rest-spread": "^7.8.3",
25
- "@babel/plugin-proposal-optional-chaining": "^7.8.3",
26
- "@babel/plugin-proposal-private-methods": "^7.16.0",
27
- "@babel/plugin-proposal-private-property-in-object": "^7.16.0",
28
- "@babel/preset-env": "^7.8.3",
29
- "@babel/preset-react": "^7.8.3",
30
- "@babel/preset-typescript": "^7.12.7",
20
+ "@babel/core": "^7.20.2",
21
+ "@babel/plugin-proposal-class-properties": "^7.18.6",
22
+ "@babel/plugin-proposal-export-default-from": "^7.18.10",
23
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
24
+ "@babel/plugin-proposal-object-rest-spread": "^7.20.2",
25
+ "@babel/plugin-proposal-optional-chaining": "^7.18.9",
26
+ "@babel/plugin-proposal-private-methods": "^7.18.6",
27
+ "@babel/plugin-proposal-private-property-in-object": "^7.18.6",
28
+ "@babel/preset-env": "^7.20.2",
29
+ "@babel/preset-react": "^7.18.6",
30
+ "@babel/preset-typescript": "^7.18.6",
31
31
  "@rollup/plugin-commonjs": "^15.0.0",
32
32
  "@rollup/plugin-node-resolve": "9.0.0",
33
33
  "@testing-library/jest-dom": "^5.16.4",
@@ -114,6 +114,6 @@
114
114
  "build:storybook": "cd storybook && ./build"
115
115
  },
116
116
  "sideEffects": false,
117
- "version": "3.0.4-alpha.0",
118
- "gitHead": "6ae2717c530ab17282f7bcf723ffaeca1bf36415"
117
+ "version": "3.0.4",
118
+ "gitHead": "a2e7c8a0dab1f63d23d14a32255525cd8bef1be5"
119
119
  }
@@ -1,3 +1,4 @@
1
+ export type { BaseButtonProps, ButtonSize } from './ButtonRoot';
1
2
  export * from './Button';
2
3
  export * from './IconButton';
3
4
  export * from './ButtonGroup';
@@ -169,3 +169,8 @@ export const Kind = {
169
169
  error: 'error',
170
170
  } as const;
171
171
  export type Kind = ValueOf<typeof Kind>;
172
+
173
+ /**
174
+ * Re-exporting some utils types.
175
+ */
176
+ export type { HeadingElement, TextElement, GenericProps, Callback } from '../utils/type';