@sproutsocial/seeds-react-theme-provider 1.0.0 → 1.1.0

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,16 +1,21 @@
1
- $ tsup
2
- CLI Building entry: src/index.tsx
3
- CLI Using tsconfig: tsconfig.json
4
- CLI tsup v8.0.1
5
- CLI Using tsup config: /home/runner/work/seeds/seeds/seeds-react/seeds-react-theme-provider/tsup.config.ts
6
- CLI Target: es2020
7
- CJS Build start
8
- ESM Build start
9
- CJS dist/index.js 162.66 KB
10
- CJS ⚡️ Build success in 232ms
11
- ESM dist/index.mjs 162.50 KB
12
- ESM ⚡️ Build success in 234ms
13
- DTS Build start
14
- DTS ⚡️ Build success in 10088ms
15
- DTS dist/index.d.ts 362.00 B
16
- DTS dist/index.d.mts 362.00 B
1
+ yarn run v1.22.22
2
+ $ tsup --dts
3
+ CLI Building entry: src/index.tsx
4
+ CLI Using tsconfig: tsconfig.json
5
+ CLI tsup v8.0.1
6
+ CLI Using tsup config: /home/runner/work/seeds/seeds/seeds-react/seeds-react-theme-provider/tsup.config.ts
7
+ CLI Target: es2020
8
+ CLI Cleaning output folder
9
+ CJS Build start
10
+ ESM Build start
11
+ ESM dist/index.mjs 405.00 B
12
+ ESM dist/index.mjs.map 828.00 B
13
+ ESM ⚡️ Build success in 38ms
14
+ CJS dist/index.js 1.35 KB
15
+ CJS dist/index.js.map 888.00 B
16
+ CJS ⚡️ Build success in 40ms
17
+ DTS Build start
18
+ DTS ⚡️ Build success in 9884ms
19
+ DTS dist/index.d.ts 436.00 B
20
+ DTS dist/index.d.mts 436.00 B
21
+ Done in 12.67s.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @sproutsocial/seeds-react-theme-provider
2
2
 
3
+ ## 1.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - e5df935: Add React 18 support
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [e5df935]
12
+ - @sproutsocial/seeds-react-theme@1.4.0
13
+
14
+ ## 1.0.1
15
+
16
+ ### Patch Changes
17
+
18
+ - 6fac0bd: Update dependency resolutions
19
+
3
20
  ## 1.0.0
4
21
 
5
22
  ### Major Changes
package/dist/index.d.mts CHANGED
@@ -1,3 +1,4 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
1
2
  import * as React from 'react';
2
3
  import { TypeTheme, TypeSproutTheme } from '@sproutsocial/seeds-react-theme';
3
4
 
@@ -6,6 +7,6 @@ type TypeProps = {
6
7
  readonly theme?: TypeAllThemes;
7
8
  readonly children?: React.ReactNode;
8
9
  };
9
- declare const ThemeProvider: (props: TypeProps) => JSX.Element;
10
+ declare const ThemeProvider: (props: TypeProps) => react_jsx_runtime.JSX.Element;
10
11
 
11
12
  export { ThemeProvider as default };
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
1
2
  import * as React from 'react';
2
3
  import { TypeTheme, TypeSproutTheme } from '@sproutsocial/seeds-react-theme';
3
4
 
@@ -6,6 +7,6 @@ type TypeProps = {
6
7
  readonly theme?: TypeAllThemes;
7
8
  readonly children?: React.ReactNode;
8
9
  };
9
- declare const ThemeProvider: (props: TypeProps) => JSX.Element;
10
+ declare const ThemeProvider: (props: TypeProps) => react_jsx_runtime.JSX.Element;
10
11
 
11
12
  export { ThemeProvider as default };