@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.
- package/.turbo/turbo-build.log +21 -16
- package/CHANGELOG.md +17 -0
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -4409
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +3 -4428
- package/dist/index.mjs.map +1 -0
- package/package.json +7 -5
- package/tsup.config.ts +5 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,16 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 };
|