@cloudflare/component-multistep-modal 3.0.0 → 3.0.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 3.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 22f06e4533: Re-export types using `export type` syntax
8
+
3
9
  ## 3.0.0
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  import MultistepModal from './MultistepModal';
2
2
  export { TID } from './constants';
3
- export { IStepItem } from './types';
3
+ export type { IStepItem } from './types';
4
4
  export { MultistepModal };
package/es/index.js CHANGED
@@ -1,4 +1,3 @@
1
1
  import MultistepModal from './MultistepModal';
2
2
  export { TID } from './constants';
3
- export { IStepItem } from './types';
4
3
  export { MultistepModal };
package/lib/index.js CHANGED
@@ -3,12 +3,6 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- Object.defineProperty(exports, "IStepItem", {
7
- enumerable: true,
8
- get: function get() {
9
- return _types.IStepItem;
10
- }
11
- });
12
6
  Object.defineProperty(exports, "MultistepModal", {
13
7
  enumerable: true,
14
8
  get: function get() {
@@ -26,6 +20,4 @@ var _MultistepModal = _interopRequireDefault(require("./MultistepModal"));
26
20
 
27
21
  var _constants = require("./constants");
28
22
 
29
- var _types = require("./types");
30
-
31
23
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudflare/component-multistep-modal",
3
3
  "description": "Multistep modal with a progress bar",
4
- "version": "3.0.0",
4
+ "version": "3.0.1",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
7
7
  "author": "Vojtech Miksu <vojtech@cloudflare.com>",
package/src/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import MultistepModal from './MultistepModal';
2
2
  export { TID } from './constants';
3
- export { IStepItem } from './types';
3
+ export type { IStepItem } from './types';
4
4
 
5
5
  export { MultistepModal };