@sproutsocial/seeds-react-theme-provider 1.0.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/.eslintrc.js +4 -0
- package/.turbo/turbo-build.log +16 -0
- package/CHANGELOG.md +7 -0
- package/dist/index.d.mts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +4438 -0
- package/dist/index.mjs +4435 -0
- package/package.json +31 -0
- package/src/index.tsx +18 -0
- package/tsconfig.json +14 -0
- package/tsup.config.ts +9 -0
package/.eslintrc.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
$ tsup
|
|
2
|
+
[34mCLI[39m Building entry: src/index.tsx
|
|
3
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
4
|
+
[34mCLI[39m tsup v8.0.1
|
|
5
|
+
[34mCLI[39m Using tsup config: /home/runner/work/seeds/seeds/seeds-react/seeds-react-theme-provider/tsup.config.ts
|
|
6
|
+
[34mCLI[39m Target: es2020
|
|
7
|
+
[34mCJS[39m Build start
|
|
8
|
+
[34mESM[39m Build start
|
|
9
|
+
[32mCJS[39m [1mdist/index.js [22m[32m162.66 KB[39m
|
|
10
|
+
[32mCJS[39m ⚡️ Build success in 232ms
|
|
11
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m162.50 KB[39m
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 234ms
|
|
13
|
+
[34mDTS[39m Build start
|
|
14
|
+
[32mDTS[39m ⚡️ Build success in 10088ms
|
|
15
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m362.00 B[39m
|
|
16
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m362.00 B[39m
|
package/CHANGELOG.md
ADDED
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { TypeTheme, TypeSproutTheme } from '@sproutsocial/seeds-react-theme';
|
|
3
|
+
|
|
4
|
+
type TypeAllThemes = TypeTheme | TypeSproutTheme;
|
|
5
|
+
type TypeProps = {
|
|
6
|
+
readonly theme?: TypeAllThemes;
|
|
7
|
+
readonly children?: React.ReactNode;
|
|
8
|
+
};
|
|
9
|
+
declare const ThemeProvider: (props: TypeProps) => JSX.Element;
|
|
10
|
+
|
|
11
|
+
export { ThemeProvider as default };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { TypeTheme, TypeSproutTheme } from '@sproutsocial/seeds-react-theme';
|
|
3
|
+
|
|
4
|
+
type TypeAllThemes = TypeTheme | TypeSproutTheme;
|
|
5
|
+
type TypeProps = {
|
|
6
|
+
readonly theme?: TypeAllThemes;
|
|
7
|
+
readonly children?: React.ReactNode;
|
|
8
|
+
};
|
|
9
|
+
declare const ThemeProvider: (props: TypeProps) => JSX.Element;
|
|
10
|
+
|
|
11
|
+
export { ThemeProvider as default };
|