@cypress-design/react-statusicon 1.0.1 → 1.0.3

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.
@@ -1,7 +1,3 @@
1
- $ yarn build:module && yarn build:types
2
- $ rollup -c ./rollup.config.mjs
3
- (node:4220) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
4
- (Use `node --trace-warnings ...` to show where the warning was created)
5
1
  
6
2
  ./index.ts → ./dist/index.umd.js, ./dist/index.es.mjs...
7
3
  (!) Mixing named and default exports
@@ -10,5 +6,4 @@ $ rollup -c ./rollup.config.mjs
10
6
  index.ts
11
7
 
12
8
  Consumers of your bundle will have to use chunk.default to access their default export, which may not be what you want. Use `output.exports: "named"` to disable this warning.
13
- created ./dist/index.umd.js, ./dist/index.es.mjs in 12.9s
14
- $ tsc --project ./tsconfig.build.json
9
+ created ./dist/index.umd.js, ./dist/index.es.mjs in 17.3s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @cypress-design/react-statusicon
2
2
 
3
+ ## 1.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`7f0c84a`](https://github.com/cypress-io/cypress-design/commit/7f0c84acb31d231a09ead4969da3c5aea286c385)]:
8
+ - @cypress-design/react-icon@2.0.0
9
+
10
+ ## 1.0.2
11
+
12
+ ### Patch Changes
13
+
14
+ - [#454](https://github.com/cypress-io/cypress-design/pull/454) [`48a3f6c`](https://github.com/cypress-io/cypress-design/commit/48a3f6cc5957844de2a5164137a8cedc31abe673) Thanks [@elevatebart](https://github.com/elevatebart)! - make sure the constant packages roll up in the react components for tailwind class detection
15
+
3
16
  ## 1.0.1
4
17
 
5
18
  ### Patch Changes
@@ -1,7 +1,7 @@
1
1
  /// <reference types="cypress" />
2
2
 
3
3
  import * as React from 'react'
4
- import { mount } from 'cypress/react18'
4
+ import { mount } from 'cypress/react'
5
5
  import StatusIcon from './StatusIcon'
6
6
  import { Story as StatusIconStory } from './StatusIcon.rootstory'
7
7