@cerberus-design/react 0.0.1-next-7fb0c14
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/LICENSE +201 -0
- package/README.md +68 -0
- package/build/legacy/_tsup-dts-rollup.d.cts +50 -0
- package/build/legacy/_tsup-dts-rollup.d.ts +50 -0
- package/build/legacy/hooks/useTheme.cjs +77 -0
- package/build/legacy/hooks/useTheme.cjs.map +1 -0
- package/build/legacy/hooks/useTheme.d.cts +1 -0
- package/build/legacy/hooks/useTheme.d.ts +1 -0
- package/build/legacy/hooks/useTheme.js +62 -0
- package/build/legacy/hooks/useTheme.js.map +1 -0
- package/build/legacy/index.cjs +27 -0
- package/build/legacy/index.cjs.map +1 -0
- package/build/legacy/index.d.cts +9 -0
- package/build/legacy/index.d.ts +9 -0
- package/build/legacy/index.js +4 -0
- package/build/legacy/index.js.map +1 -0
- package/build/modern/_tsup-dts-rollup.d.cts +50 -0
- package/build/modern/_tsup-dts-rollup.d.ts +50 -0
- package/build/modern/hooks/useTheme.cjs +77 -0
- package/build/modern/hooks/useTheme.cjs.map +1 -0
- package/build/modern/hooks/useTheme.d.cts +1 -0
- package/build/modern/hooks/useTheme.d.ts +1 -0
- package/build/modern/hooks/useTheme.js +62 -0
- package/build/modern/hooks/useTheme.js.map +1 -0
- package/build/modern/index.cjs +27 -0
- package/build/modern/index.cjs.map +1 -0
- package/build/modern/index.d.cts +9 -0
- package/build/modern/index.d.ts +9 -0
- package/build/modern/index.js +4 -0
- package/build/modern/index.js.map +1 -0
- package/package.json +74 -0
- package/src/context/theme.tsx +45 -0
- package/src/hooks/useTheme.ts +71 -0
- package/src/index.ts +7 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# Cerberus React
|
|
2
|
+
|
|
3
|
+
This is the React component library for Cerberus.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm add @cerberus-design/react
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { Button } from '@cerberus-design/react'
|
|
15
|
+
|
|
16
|
+
function BasicExample() {
|
|
17
|
+
return (
|
|
18
|
+
<form>
|
|
19
|
+
<Button type="submit">Submit</Button>
|
|
20
|
+
</form>
|
|
21
|
+
)
|
|
22
|
+
}
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Basic Customization
|
|
26
|
+
|
|
27
|
+
```typescript
|
|
28
|
+
import { Button } from '@cerberus-design/react'
|
|
29
|
+
|
|
30
|
+
function BasicExample() {
|
|
31
|
+
return (
|
|
32
|
+
<form>
|
|
33
|
+
<Button palette="danger" usage="outline" type="button">Cancel</Button>
|
|
34
|
+
</form>
|
|
35
|
+
)
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Advanced Customization
|
|
40
|
+
|
|
41
|
+
You can use [Panda-CSS](https://panda-css.com/) to customize the styles of the components.
|
|
42
|
+
|
|
43
|
+
```typescript
|
|
44
|
+
import { Button } from '@cerberus-design/react'
|
|
45
|
+
import { css } from '../styled-system/css'
|
|
46
|
+
|
|
47
|
+
function CustomButton() {
|
|
48
|
+
return (
|
|
49
|
+
<Button
|
|
50
|
+
className={css({
|
|
51
|
+
backgroundColor: 'yellow',
|
|
52
|
+
color: 'black',
|
|
53
|
+
borderRadius: '0.5rem',
|
|
54
|
+
'&:hover': {
|
|
55
|
+
backgroundColor: 'black',
|
|
56
|
+
color: 'yellow'
|
|
57
|
+
},
|
|
58
|
+
})}
|
|
59
|
+
>
|
|
60
|
+
Wu-Tang Forever
|
|
61
|
+
</Button>
|
|
62
|
+
)
|
|
63
|
+
}
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
_Copyright (c) 2024 Digital University, All Rights Reserved_
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
2
|
+
import { PropsWithChildren } from 'react';
|
|
3
|
+
|
|
4
|
+
declare type ColorModes = 'light' | 'dark';
|
|
5
|
+
export { ColorModes }
|
|
6
|
+
export { ColorModes as ColorModes_alias_1 }
|
|
7
|
+
|
|
8
|
+
declare type CustomThemes<K extends DefaultThemes> = 'cerberus' | K;
|
|
9
|
+
export { CustomThemes }
|
|
10
|
+
export { CustomThemes as CustomThemes_alias_1 }
|
|
11
|
+
|
|
12
|
+
declare type DefaultThemes = 'cerberus';
|
|
13
|
+
export { DefaultThemes }
|
|
14
|
+
export { DefaultThemes as DefaultThemes_alias_1 }
|
|
15
|
+
|
|
16
|
+
declare const MODE_KEY = "cerberus-mode";
|
|
17
|
+
export { MODE_KEY }
|
|
18
|
+
export { MODE_KEY as MODE_KEY_alias_1 }
|
|
19
|
+
|
|
20
|
+
declare const THEME_KEY = "cerberus-theme";
|
|
21
|
+
export { THEME_KEY }
|
|
22
|
+
export { THEME_KEY as THEME_KEY_alias_1 }
|
|
23
|
+
|
|
24
|
+
declare interface ThemeContextValue<T extends DefaultThemes> {
|
|
25
|
+
theme: CustomThemes<T>;
|
|
26
|
+
mode: ColorModes;
|
|
27
|
+
updateTheme: (theme: T) => void;
|
|
28
|
+
updateMode: () => void;
|
|
29
|
+
}
|
|
30
|
+
export { ThemeContextValue }
|
|
31
|
+
export { ThemeContextValue as ThemeContextValue_alias_1 }
|
|
32
|
+
|
|
33
|
+
declare function ThemeProvider(props: PropsWithChildren<unknown>): JSX_2.Element;
|
|
34
|
+
export { ThemeProvider }
|
|
35
|
+
export { ThemeProvider as ThemeProvider_alias_1 }
|
|
36
|
+
|
|
37
|
+
declare function useTheme<C extends DefaultThemes>(defaultTheme?: CustomThemes<C>, defaultColorMode?: ColorModes): {
|
|
38
|
+
theme: CustomThemes<C>;
|
|
39
|
+
mode: ColorModes;
|
|
40
|
+
updateTheme: (newTheme: CustomThemes<C>) => void;
|
|
41
|
+
updateMode: () => void;
|
|
42
|
+
};
|
|
43
|
+
export { useTheme }
|
|
44
|
+
export { useTheme as useTheme_alias_1 }
|
|
45
|
+
|
|
46
|
+
declare function useThemeContext(): ThemeContextValue<DefaultThemes>;
|
|
47
|
+
export { useThemeContext }
|
|
48
|
+
export { useThemeContext as useThemeContext_alias_1 }
|
|
49
|
+
|
|
50
|
+
export { }
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
2
|
+
import { PropsWithChildren } from 'react';
|
|
3
|
+
|
|
4
|
+
declare type ColorModes = 'light' | 'dark';
|
|
5
|
+
export { ColorModes }
|
|
6
|
+
export { ColorModes as ColorModes_alias_1 }
|
|
7
|
+
|
|
8
|
+
declare type CustomThemes<K extends DefaultThemes> = 'cerberus' | K;
|
|
9
|
+
export { CustomThemes }
|
|
10
|
+
export { CustomThemes as CustomThemes_alias_1 }
|
|
11
|
+
|
|
12
|
+
declare type DefaultThemes = 'cerberus';
|
|
13
|
+
export { DefaultThemes }
|
|
14
|
+
export { DefaultThemes as DefaultThemes_alias_1 }
|
|
15
|
+
|
|
16
|
+
declare const MODE_KEY = "cerberus-mode";
|
|
17
|
+
export { MODE_KEY }
|
|
18
|
+
export { MODE_KEY as MODE_KEY_alias_1 }
|
|
19
|
+
|
|
20
|
+
declare const THEME_KEY = "cerberus-theme";
|
|
21
|
+
export { THEME_KEY }
|
|
22
|
+
export { THEME_KEY as THEME_KEY_alias_1 }
|
|
23
|
+
|
|
24
|
+
declare interface ThemeContextValue<T extends DefaultThemes> {
|
|
25
|
+
theme: CustomThemes<T>;
|
|
26
|
+
mode: ColorModes;
|
|
27
|
+
updateTheme: (theme: T) => void;
|
|
28
|
+
updateMode: () => void;
|
|
29
|
+
}
|
|
30
|
+
export { ThemeContextValue }
|
|
31
|
+
export { ThemeContextValue as ThemeContextValue_alias_1 }
|
|
32
|
+
|
|
33
|
+
declare function ThemeProvider(props: PropsWithChildren<unknown>): JSX_2.Element;
|
|
34
|
+
export { ThemeProvider }
|
|
35
|
+
export { ThemeProvider as ThemeProvider_alias_1 }
|
|
36
|
+
|
|
37
|
+
declare function useTheme<C extends DefaultThemes>(defaultTheme?: CustomThemes<C>, defaultColorMode?: ColorModes): {
|
|
38
|
+
theme: CustomThemes<C>;
|
|
39
|
+
mode: ColorModes;
|
|
40
|
+
updateTheme: (newTheme: CustomThemes<C>) => void;
|
|
41
|
+
updateMode: () => void;
|
|
42
|
+
};
|
|
43
|
+
export { useTheme }
|
|
44
|
+
export { useTheme as useTheme_alias_1 }
|
|
45
|
+
|
|
46
|
+
declare function useThemeContext(): ThemeContextValue<DefaultThemes>;
|
|
47
|
+
export { useThemeContext }
|
|
48
|
+
export { useThemeContext as useThemeContext_alias_1 }
|
|
49
|
+
|
|
50
|
+
export { }
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
"use client";
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/hooks/useTheme.ts
|
|
22
|
+
var useTheme_exports = {};
|
|
23
|
+
__export(useTheme_exports, {
|
|
24
|
+
useTheme: () => useTheme
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(useTheme_exports);
|
|
27
|
+
var import_react = require("react");
|
|
28
|
+
var import_theme = require("../context/theme.cjs");
|
|
29
|
+
function useTheme(defaultTheme = "cerberus", defaultColorMode = "light") {
|
|
30
|
+
const [theme, setTheme] = (0, import_react.useState)(defaultTheme);
|
|
31
|
+
const [colorMode, setColorMode] = (0, import_react.useState)(defaultColorMode);
|
|
32
|
+
const handleThemeChange = (0, import_react.useCallback)((newTheme) => {
|
|
33
|
+
setTheme(newTheme);
|
|
34
|
+
localStorage.setItem(import_theme.THEME_KEY, newTheme);
|
|
35
|
+
}, []);
|
|
36
|
+
const handleColorModeChange = (0, import_react.useCallback)(() => {
|
|
37
|
+
setColorMode((prev) => {
|
|
38
|
+
const newMode = prev === "light" ? "dark" : "light";
|
|
39
|
+
localStorage.setItem(import_theme.MODE_KEY, newMode);
|
|
40
|
+
return newMode;
|
|
41
|
+
});
|
|
42
|
+
}, []);
|
|
43
|
+
(0, import_react.useLayoutEffect)(() => {
|
|
44
|
+
const theme2 = localStorage.getItem(import_theme.THEME_KEY);
|
|
45
|
+
if (theme2) {
|
|
46
|
+
setTheme(theme2);
|
|
47
|
+
}
|
|
48
|
+
}, []);
|
|
49
|
+
(0, import_react.useLayoutEffect)(() => {
|
|
50
|
+
const mode = localStorage.getItem(import_theme.MODE_KEY);
|
|
51
|
+
if (mode) {
|
|
52
|
+
setColorMode(mode);
|
|
53
|
+
}
|
|
54
|
+
}, []);
|
|
55
|
+
(0, import_react.useEffect)(() => {
|
|
56
|
+
const root = document.documentElement;
|
|
57
|
+
root.dataset.theme = theme;
|
|
58
|
+
}, [theme]);
|
|
59
|
+
(0, import_react.useEffect)(() => {
|
|
60
|
+
const root = document.documentElement;
|
|
61
|
+
root.dataset.colorMode = colorMode;
|
|
62
|
+
}, [colorMode]);
|
|
63
|
+
return (0, import_react.useMemo)(
|
|
64
|
+
() => ({
|
|
65
|
+
theme,
|
|
66
|
+
mode: colorMode,
|
|
67
|
+
updateTheme: handleThemeChange,
|
|
68
|
+
updateMode: handleColorModeChange
|
|
69
|
+
}),
|
|
70
|
+
[theme, colorMode, handleThemeChange, handleColorModeChange]
|
|
71
|
+
);
|
|
72
|
+
}
|
|
73
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
74
|
+
0 && (module.exports = {
|
|
75
|
+
useTheme
|
|
76
|
+
});
|
|
77
|
+
//# sourceMappingURL=useTheme.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/hooks/useTheme.ts"],"sourcesContent":["'use client'\n\nimport {\n useCallback,\n useEffect,\n useLayoutEffect,\n useMemo,\n useState,\n} from 'react'\nimport {\n MODE_KEY,\n THEME_KEY,\n type ColorModes,\n type CustomThemes,\n type DefaultThemes,\n} from '../context/theme'\n\nexport function useTheme<C extends DefaultThemes>(\n defaultTheme: CustomThemes<C> = 'cerberus',\n defaultColorMode: ColorModes = 'light',\n) {\n const [theme, setTheme] = useState<CustomThemes<C>>(defaultTheme)\n const [colorMode, setColorMode] = useState<ColorModes>(defaultColorMode)\n\n const handleThemeChange = useCallback((newTheme: CustomThemes<C>) => {\n setTheme(newTheme)\n localStorage.setItem(THEME_KEY, newTheme)\n }, [])\n\n const handleColorModeChange = useCallback(() => {\n setColorMode((prev) => {\n const newMode = prev === 'light' ? 'dark' : 'light'\n localStorage.setItem(MODE_KEY, newMode)\n return newMode\n })\n }, [])\n\n useLayoutEffect(() => {\n const theme = localStorage.getItem(THEME_KEY)\n if (theme) {\n setTheme(theme as CustomThemes<C>)\n }\n }, [])\n\n useLayoutEffect(() => {\n const mode = localStorage.getItem(MODE_KEY)\n if (mode) {\n setColorMode(mode as ColorModes)\n }\n }, [])\n\n useEffect(() => {\n const root = document.documentElement\n root.dataset.theme = theme\n }, [theme])\n\n useEffect(() => {\n const root = document.documentElement\n root.dataset.colorMode = colorMode\n }, [colorMode])\n\n return useMemo(\n () => ({\n theme,\n mode: colorMode,\n updateTheme: handleThemeChange,\n updateMode: handleColorModeChange,\n }),\n [theme, colorMode, handleThemeChange, handleColorModeChange],\n )\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAEA,mBAMO;AACP,mBAMO;AAEA,SAAS,SACd,eAAgC,YAChC,mBAA+B,SAC/B;AACA,QAAM,CAAC,OAAO,QAAQ,QAAI,uBAA0B,YAAY;AAChE,QAAM,CAAC,WAAW,YAAY,QAAI,uBAAqB,gBAAgB;AAEvE,QAAM,wBAAoB,0BAAY,CAAC,aAA8B;AACnE,aAAS,QAAQ;AACjB,iBAAa,QAAQ,wBAAW,QAAQ;AAAA,EAC1C,GAAG,CAAC,CAAC;AAEL,QAAM,4BAAwB,0BAAY,MAAM;AAC9C,iBAAa,CAAC,SAAS;AACrB,YAAM,UAAU,SAAS,UAAU,SAAS;AAC5C,mBAAa,QAAQ,uBAAU,OAAO;AACtC,aAAO;AAAA,IACT,CAAC;AAAA,EACH,GAAG,CAAC,CAAC;AAEL,oCAAgB,MAAM;AACpB,UAAMA,SAAQ,aAAa,QAAQ,sBAAS;AAC5C,QAAIA,QAAO;AACT,eAASA,MAAwB;AAAA,IACnC;AAAA,EACF,GAAG,CAAC,CAAC;AAEL,oCAAgB,MAAM;AACpB,UAAM,OAAO,aAAa,QAAQ,qBAAQ;AAC1C,QAAI,MAAM;AACR,mBAAa,IAAkB;AAAA,IACjC;AAAA,EACF,GAAG,CAAC,CAAC;AAEL,8BAAU,MAAM;AACd,UAAM,OAAO,SAAS;AACtB,SAAK,QAAQ,QAAQ;AAAA,EACvB,GAAG,CAAC,KAAK,CAAC;AAEV,8BAAU,MAAM;AACd,UAAM,OAAO,SAAS;AACtB,SAAK,QAAQ,YAAY;AAAA,EAC3B,GAAG,CAAC,SAAS,CAAC;AAEd,aAAO;AAAA,IACL,OAAO;AAAA,MACL;AAAA,MACA,MAAM;AAAA,MACN,aAAa;AAAA,MACb,YAAY;AAAA,IACd;AAAA,IACA,CAAC,OAAO,WAAW,mBAAmB,qBAAqB;AAAA,EAC7D;AACF;","names":["theme"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { useTheme_alias_1 as useTheme } from '../_tsup-dts-rollup';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { useTheme_alias_1 as useTheme } from '../_tsup-dts-rollup';
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/hooks/useTheme.ts
|
|
4
|
+
import {
|
|
5
|
+
useCallback,
|
|
6
|
+
useEffect,
|
|
7
|
+
useLayoutEffect,
|
|
8
|
+
useMemo,
|
|
9
|
+
useState
|
|
10
|
+
} from "react";
|
|
11
|
+
import {
|
|
12
|
+
MODE_KEY,
|
|
13
|
+
THEME_KEY
|
|
14
|
+
} from "../context/theme.js";
|
|
15
|
+
function useTheme(defaultTheme = "cerberus", defaultColorMode = "light") {
|
|
16
|
+
const [theme, setTheme] = useState(defaultTheme);
|
|
17
|
+
const [colorMode, setColorMode] = useState(defaultColorMode);
|
|
18
|
+
const handleThemeChange = useCallback((newTheme) => {
|
|
19
|
+
setTheme(newTheme);
|
|
20
|
+
localStorage.setItem(THEME_KEY, newTheme);
|
|
21
|
+
}, []);
|
|
22
|
+
const handleColorModeChange = useCallback(() => {
|
|
23
|
+
setColorMode((prev) => {
|
|
24
|
+
const newMode = prev === "light" ? "dark" : "light";
|
|
25
|
+
localStorage.setItem(MODE_KEY, newMode);
|
|
26
|
+
return newMode;
|
|
27
|
+
});
|
|
28
|
+
}, []);
|
|
29
|
+
useLayoutEffect(() => {
|
|
30
|
+
const theme2 = localStorage.getItem(THEME_KEY);
|
|
31
|
+
if (theme2) {
|
|
32
|
+
setTheme(theme2);
|
|
33
|
+
}
|
|
34
|
+
}, []);
|
|
35
|
+
useLayoutEffect(() => {
|
|
36
|
+
const mode = localStorage.getItem(MODE_KEY);
|
|
37
|
+
if (mode) {
|
|
38
|
+
setColorMode(mode);
|
|
39
|
+
}
|
|
40
|
+
}, []);
|
|
41
|
+
useEffect(() => {
|
|
42
|
+
const root = document.documentElement;
|
|
43
|
+
root.dataset.theme = theme;
|
|
44
|
+
}, [theme]);
|
|
45
|
+
useEffect(() => {
|
|
46
|
+
const root = document.documentElement;
|
|
47
|
+
root.dataset.colorMode = colorMode;
|
|
48
|
+
}, [colorMode]);
|
|
49
|
+
return useMemo(
|
|
50
|
+
() => ({
|
|
51
|
+
theme,
|
|
52
|
+
mode: colorMode,
|
|
53
|
+
updateTheme: handleThemeChange,
|
|
54
|
+
updateMode: handleColorModeChange
|
|
55
|
+
}),
|
|
56
|
+
[theme, colorMode, handleThemeChange, handleColorModeChange]
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
export {
|
|
60
|
+
useTheme
|
|
61
|
+
};
|
|
62
|
+
//# sourceMappingURL=useTheme.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/hooks/useTheme.ts"],"sourcesContent":["'use client'\n\nimport {\n useCallback,\n useEffect,\n useLayoutEffect,\n useMemo,\n useState,\n} from 'react'\nimport {\n MODE_KEY,\n THEME_KEY,\n type ColorModes,\n type CustomThemes,\n type DefaultThemes,\n} from '../context/theme'\n\nexport function useTheme<C extends DefaultThemes>(\n defaultTheme: CustomThemes<C> = 'cerberus',\n defaultColorMode: ColorModes = 'light',\n) {\n const [theme, setTheme] = useState<CustomThemes<C>>(defaultTheme)\n const [colorMode, setColorMode] = useState<ColorModes>(defaultColorMode)\n\n const handleThemeChange = useCallback((newTheme: CustomThemes<C>) => {\n setTheme(newTheme)\n localStorage.setItem(THEME_KEY, newTheme)\n }, [])\n\n const handleColorModeChange = useCallback(() => {\n setColorMode((prev) => {\n const newMode = prev === 'light' ? 'dark' : 'light'\n localStorage.setItem(MODE_KEY, newMode)\n return newMode\n })\n }, [])\n\n useLayoutEffect(() => {\n const theme = localStorage.getItem(THEME_KEY)\n if (theme) {\n setTheme(theme as CustomThemes<C>)\n }\n }, [])\n\n useLayoutEffect(() => {\n const mode = localStorage.getItem(MODE_KEY)\n if (mode) {\n setColorMode(mode as ColorModes)\n }\n }, [])\n\n useEffect(() => {\n const root = document.documentElement\n root.dataset.theme = theme\n }, [theme])\n\n useEffect(() => {\n const root = document.documentElement\n root.dataset.colorMode = colorMode\n }, [colorMode])\n\n return useMemo(\n () => ({\n theme,\n mode: colorMode,\n updateTheme: handleThemeChange,\n updateMode: handleColorModeChange,\n }),\n [theme, colorMode, handleThemeChange, handleColorModeChange],\n )\n}\n"],"mappings":";;;AAEA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP;AAAA,EACE;AAAA,EACA;AAAA,OAIK;AAEA,SAAS,SACd,eAAgC,YAChC,mBAA+B,SAC/B;AACA,QAAM,CAAC,OAAO,QAAQ,IAAI,SAA0B,YAAY;AAChE,QAAM,CAAC,WAAW,YAAY,IAAI,SAAqB,gBAAgB;AAEvE,QAAM,oBAAoB,YAAY,CAAC,aAA8B;AACnE,aAAS,QAAQ;AACjB,iBAAa,QAAQ,WAAW,QAAQ;AAAA,EAC1C,GAAG,CAAC,CAAC;AAEL,QAAM,wBAAwB,YAAY,MAAM;AAC9C,iBAAa,CAAC,SAAS;AACrB,YAAM,UAAU,SAAS,UAAU,SAAS;AAC5C,mBAAa,QAAQ,UAAU,OAAO;AACtC,aAAO;AAAA,IACT,CAAC;AAAA,EACH,GAAG,CAAC,CAAC;AAEL,kBAAgB,MAAM;AACpB,UAAMA,SAAQ,aAAa,QAAQ,SAAS;AAC5C,QAAIA,QAAO;AACT,eAASA,MAAwB;AAAA,IACnC;AAAA,EACF,GAAG,CAAC,CAAC;AAEL,kBAAgB,MAAM;AACpB,UAAM,OAAO,aAAa,QAAQ,QAAQ;AAC1C,QAAI,MAAM;AACR,mBAAa,IAAkB;AAAA,IACjC;AAAA,EACF,GAAG,CAAC,CAAC;AAEL,YAAU,MAAM;AACd,UAAM,OAAO,SAAS;AACtB,SAAK,QAAQ,QAAQ;AAAA,EACvB,GAAG,CAAC,KAAK,CAAC;AAEV,YAAU,MAAM;AACd,UAAM,OAAO,SAAS;AACtB,SAAK,QAAQ,YAAY;AAAA,EAC3B,GAAG,CAAC,SAAS,CAAC;AAEd,SAAO;AAAA,IACL,OAAO;AAAA,MACL;AAAA,MACA,MAAM;AAAA,MACN,aAAa;AAAA,MACb,YAAY;AAAA,IACd;AAAA,IACA,CAAC,OAAO,WAAW,mBAAmB,qBAAqB;AAAA,EAC7D;AACF;","names":["theme"]}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
15
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
16
|
+
|
|
17
|
+
// src/index.ts
|
|
18
|
+
var src_exports = {};
|
|
19
|
+
module.exports = __toCommonJS(src_exports);
|
|
20
|
+
__reExport(src_exports, require("./context/theme.cjs"), module.exports);
|
|
21
|
+
__reExport(src_exports, require("./hooks/useTheme.cjs"), module.exports);
|
|
22
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
23
|
+
0 && (module.exports = {
|
|
24
|
+
...require("./context/theme.cjs"),
|
|
25
|
+
...require("./hooks/useTheme.cjs")
|
|
26
|
+
});
|
|
27
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["// context\n\nexport * from './context/theme'\n\n// hooks\n\nexport * from './hooks/useTheme'\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA;AAAA;AAEA,wBAAc,gCAFd;AAMA,wBAAc,iCANd;","names":[]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { ThemeProvider } from './_tsup-dts-rollup';
|
|
2
|
+
export { useThemeContext } from './_tsup-dts-rollup';
|
|
3
|
+
export { DefaultThemes } from './_tsup-dts-rollup';
|
|
4
|
+
export { CustomThemes } from './_tsup-dts-rollup';
|
|
5
|
+
export { ColorModes } from './_tsup-dts-rollup';
|
|
6
|
+
export { ThemeContextValue } from './_tsup-dts-rollup';
|
|
7
|
+
export { THEME_KEY } from './_tsup-dts-rollup';
|
|
8
|
+
export { MODE_KEY } from './_tsup-dts-rollup';
|
|
9
|
+
export { useTheme } from './_tsup-dts-rollup';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { ThemeProvider } from './_tsup-dts-rollup';
|
|
2
|
+
export { useThemeContext } from './_tsup-dts-rollup';
|
|
3
|
+
export { DefaultThemes } from './_tsup-dts-rollup';
|
|
4
|
+
export { CustomThemes } from './_tsup-dts-rollup';
|
|
5
|
+
export { ColorModes } from './_tsup-dts-rollup';
|
|
6
|
+
export { ThemeContextValue } from './_tsup-dts-rollup';
|
|
7
|
+
export { THEME_KEY } from './_tsup-dts-rollup';
|
|
8
|
+
export { MODE_KEY } from './_tsup-dts-rollup';
|
|
9
|
+
export { useTheme } from './_tsup-dts-rollup';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["// context\n\nexport * from './context/theme'\n\n// hooks\n\nexport * from './hooks/useTheme'\n"],"mappings":";AAEA,cAAc;AAId,cAAc;","names":[]}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
2
|
+
import { PropsWithChildren } from 'react';
|
|
3
|
+
|
|
4
|
+
declare type ColorModes = 'light' | 'dark';
|
|
5
|
+
export { ColorModes }
|
|
6
|
+
export { ColorModes as ColorModes_alias_1 }
|
|
7
|
+
|
|
8
|
+
declare type CustomThemes<K extends DefaultThemes> = 'cerberus' | K;
|
|
9
|
+
export { CustomThemes }
|
|
10
|
+
export { CustomThemes as CustomThemes_alias_1 }
|
|
11
|
+
|
|
12
|
+
declare type DefaultThemes = 'cerberus';
|
|
13
|
+
export { DefaultThemes }
|
|
14
|
+
export { DefaultThemes as DefaultThemes_alias_1 }
|
|
15
|
+
|
|
16
|
+
declare const MODE_KEY = "cerberus-mode";
|
|
17
|
+
export { MODE_KEY }
|
|
18
|
+
export { MODE_KEY as MODE_KEY_alias_1 }
|
|
19
|
+
|
|
20
|
+
declare const THEME_KEY = "cerberus-theme";
|
|
21
|
+
export { THEME_KEY }
|
|
22
|
+
export { THEME_KEY as THEME_KEY_alias_1 }
|
|
23
|
+
|
|
24
|
+
declare interface ThemeContextValue<T extends DefaultThemes> {
|
|
25
|
+
theme: CustomThemes<T>;
|
|
26
|
+
mode: ColorModes;
|
|
27
|
+
updateTheme: (theme: T) => void;
|
|
28
|
+
updateMode: () => void;
|
|
29
|
+
}
|
|
30
|
+
export { ThemeContextValue }
|
|
31
|
+
export { ThemeContextValue as ThemeContextValue_alias_1 }
|
|
32
|
+
|
|
33
|
+
declare function ThemeProvider(props: PropsWithChildren<unknown>): JSX_2.Element;
|
|
34
|
+
export { ThemeProvider }
|
|
35
|
+
export { ThemeProvider as ThemeProvider_alias_1 }
|
|
36
|
+
|
|
37
|
+
declare function useTheme<C extends DefaultThemes>(defaultTheme?: CustomThemes<C>, defaultColorMode?: ColorModes): {
|
|
38
|
+
theme: CustomThemes<C>;
|
|
39
|
+
mode: ColorModes;
|
|
40
|
+
updateTheme: (newTheme: CustomThemes<C>) => void;
|
|
41
|
+
updateMode: () => void;
|
|
42
|
+
};
|
|
43
|
+
export { useTheme }
|
|
44
|
+
export { useTheme as useTheme_alias_1 }
|
|
45
|
+
|
|
46
|
+
declare function useThemeContext(): ThemeContextValue<DefaultThemes>;
|
|
47
|
+
export { useThemeContext }
|
|
48
|
+
export { useThemeContext as useThemeContext_alias_1 }
|
|
49
|
+
|
|
50
|
+
export { }
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
2
|
+
import { PropsWithChildren } from 'react';
|
|
3
|
+
|
|
4
|
+
declare type ColorModes = 'light' | 'dark';
|
|
5
|
+
export { ColorModes }
|
|
6
|
+
export { ColorModes as ColorModes_alias_1 }
|
|
7
|
+
|
|
8
|
+
declare type CustomThemes<K extends DefaultThemes> = 'cerberus' | K;
|
|
9
|
+
export { CustomThemes }
|
|
10
|
+
export { CustomThemes as CustomThemes_alias_1 }
|
|
11
|
+
|
|
12
|
+
declare type DefaultThemes = 'cerberus';
|
|
13
|
+
export { DefaultThemes }
|
|
14
|
+
export { DefaultThemes as DefaultThemes_alias_1 }
|
|
15
|
+
|
|
16
|
+
declare const MODE_KEY = "cerberus-mode";
|
|
17
|
+
export { MODE_KEY }
|
|
18
|
+
export { MODE_KEY as MODE_KEY_alias_1 }
|
|
19
|
+
|
|
20
|
+
declare const THEME_KEY = "cerberus-theme";
|
|
21
|
+
export { THEME_KEY }
|
|
22
|
+
export { THEME_KEY as THEME_KEY_alias_1 }
|
|
23
|
+
|
|
24
|
+
declare interface ThemeContextValue<T extends DefaultThemes> {
|
|
25
|
+
theme: CustomThemes<T>;
|
|
26
|
+
mode: ColorModes;
|
|
27
|
+
updateTheme: (theme: T) => void;
|
|
28
|
+
updateMode: () => void;
|
|
29
|
+
}
|
|
30
|
+
export { ThemeContextValue }
|
|
31
|
+
export { ThemeContextValue as ThemeContextValue_alias_1 }
|
|
32
|
+
|
|
33
|
+
declare function ThemeProvider(props: PropsWithChildren<unknown>): JSX_2.Element;
|
|
34
|
+
export { ThemeProvider }
|
|
35
|
+
export { ThemeProvider as ThemeProvider_alias_1 }
|
|
36
|
+
|
|
37
|
+
declare function useTheme<C extends DefaultThemes>(defaultTheme?: CustomThemes<C>, defaultColorMode?: ColorModes): {
|
|
38
|
+
theme: CustomThemes<C>;
|
|
39
|
+
mode: ColorModes;
|
|
40
|
+
updateTheme: (newTheme: CustomThemes<C>) => void;
|
|
41
|
+
updateMode: () => void;
|
|
42
|
+
};
|
|
43
|
+
export { useTheme }
|
|
44
|
+
export { useTheme as useTheme_alias_1 }
|
|
45
|
+
|
|
46
|
+
declare function useThemeContext(): ThemeContextValue<DefaultThemes>;
|
|
47
|
+
export { useThemeContext }
|
|
48
|
+
export { useThemeContext as useThemeContext_alias_1 }
|
|
49
|
+
|
|
50
|
+
export { }
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
"use client";
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/hooks/useTheme.ts
|
|
22
|
+
var useTheme_exports = {};
|
|
23
|
+
__export(useTheme_exports, {
|
|
24
|
+
useTheme: () => useTheme
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(useTheme_exports);
|
|
27
|
+
var import_react = require("react");
|
|
28
|
+
var import_theme = require("../context/theme.cjs");
|
|
29
|
+
function useTheme(defaultTheme = "cerberus", defaultColorMode = "light") {
|
|
30
|
+
const [theme, setTheme] = (0, import_react.useState)(defaultTheme);
|
|
31
|
+
const [colorMode, setColorMode] = (0, import_react.useState)(defaultColorMode);
|
|
32
|
+
const handleThemeChange = (0, import_react.useCallback)((newTheme) => {
|
|
33
|
+
setTheme(newTheme);
|
|
34
|
+
localStorage.setItem(import_theme.THEME_KEY, newTheme);
|
|
35
|
+
}, []);
|
|
36
|
+
const handleColorModeChange = (0, import_react.useCallback)(() => {
|
|
37
|
+
setColorMode((prev) => {
|
|
38
|
+
const newMode = prev === "light" ? "dark" : "light";
|
|
39
|
+
localStorage.setItem(import_theme.MODE_KEY, newMode);
|
|
40
|
+
return newMode;
|
|
41
|
+
});
|
|
42
|
+
}, []);
|
|
43
|
+
(0, import_react.useLayoutEffect)(() => {
|
|
44
|
+
const theme2 = localStorage.getItem(import_theme.THEME_KEY);
|
|
45
|
+
if (theme2) {
|
|
46
|
+
setTheme(theme2);
|
|
47
|
+
}
|
|
48
|
+
}, []);
|
|
49
|
+
(0, import_react.useLayoutEffect)(() => {
|
|
50
|
+
const mode = localStorage.getItem(import_theme.MODE_KEY);
|
|
51
|
+
if (mode) {
|
|
52
|
+
setColorMode(mode);
|
|
53
|
+
}
|
|
54
|
+
}, []);
|
|
55
|
+
(0, import_react.useEffect)(() => {
|
|
56
|
+
const root = document.documentElement;
|
|
57
|
+
root.dataset.theme = theme;
|
|
58
|
+
}, [theme]);
|
|
59
|
+
(0, import_react.useEffect)(() => {
|
|
60
|
+
const root = document.documentElement;
|
|
61
|
+
root.dataset.colorMode = colorMode;
|
|
62
|
+
}, [colorMode]);
|
|
63
|
+
return (0, import_react.useMemo)(
|
|
64
|
+
() => ({
|
|
65
|
+
theme,
|
|
66
|
+
mode: colorMode,
|
|
67
|
+
updateTheme: handleThemeChange,
|
|
68
|
+
updateMode: handleColorModeChange
|
|
69
|
+
}),
|
|
70
|
+
[theme, colorMode, handleThemeChange, handleColorModeChange]
|
|
71
|
+
);
|
|
72
|
+
}
|
|
73
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
74
|
+
0 && (module.exports = {
|
|
75
|
+
useTheme
|
|
76
|
+
});
|
|
77
|
+
//# sourceMappingURL=useTheme.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/hooks/useTheme.ts"],"sourcesContent":["'use client'\n\nimport {\n useCallback,\n useEffect,\n useLayoutEffect,\n useMemo,\n useState,\n} from 'react'\nimport {\n MODE_KEY,\n THEME_KEY,\n type ColorModes,\n type CustomThemes,\n type DefaultThemes,\n} from '../context/theme'\n\nexport function useTheme<C extends DefaultThemes>(\n defaultTheme: CustomThemes<C> = 'cerberus',\n defaultColorMode: ColorModes = 'light',\n) {\n const [theme, setTheme] = useState<CustomThemes<C>>(defaultTheme)\n const [colorMode, setColorMode] = useState<ColorModes>(defaultColorMode)\n\n const handleThemeChange = useCallback((newTheme: CustomThemes<C>) => {\n setTheme(newTheme)\n localStorage.setItem(THEME_KEY, newTheme)\n }, [])\n\n const handleColorModeChange = useCallback(() => {\n setColorMode((prev) => {\n const newMode = prev === 'light' ? 'dark' : 'light'\n localStorage.setItem(MODE_KEY, newMode)\n return newMode\n })\n }, [])\n\n useLayoutEffect(() => {\n const theme = localStorage.getItem(THEME_KEY)\n if (theme) {\n setTheme(theme as CustomThemes<C>)\n }\n }, [])\n\n useLayoutEffect(() => {\n const mode = localStorage.getItem(MODE_KEY)\n if (mode) {\n setColorMode(mode as ColorModes)\n }\n }, [])\n\n useEffect(() => {\n const root = document.documentElement\n root.dataset.theme = theme\n }, [theme])\n\n useEffect(() => {\n const root = document.documentElement\n root.dataset.colorMode = colorMode\n }, [colorMode])\n\n return useMemo(\n () => ({\n theme,\n mode: colorMode,\n updateTheme: handleThemeChange,\n updateMode: handleColorModeChange,\n }),\n [theme, colorMode, handleThemeChange, handleColorModeChange],\n )\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAEA,mBAMO;AACP,mBAMO;AAEA,SAAS,SACd,eAAgC,YAChC,mBAA+B,SAC/B;AACA,QAAM,CAAC,OAAO,QAAQ,QAAI,uBAA0B,YAAY;AAChE,QAAM,CAAC,WAAW,YAAY,QAAI,uBAAqB,gBAAgB;AAEvE,QAAM,wBAAoB,0BAAY,CAAC,aAA8B;AACnE,aAAS,QAAQ;AACjB,iBAAa,QAAQ,wBAAW,QAAQ;AAAA,EAC1C,GAAG,CAAC,CAAC;AAEL,QAAM,4BAAwB,0BAAY,MAAM;AAC9C,iBAAa,CAAC,SAAS;AACrB,YAAM,UAAU,SAAS,UAAU,SAAS;AAC5C,mBAAa,QAAQ,uBAAU,OAAO;AACtC,aAAO;AAAA,IACT,CAAC;AAAA,EACH,GAAG,CAAC,CAAC;AAEL,oCAAgB,MAAM;AACpB,UAAMA,SAAQ,aAAa,QAAQ,sBAAS;AAC5C,QAAIA,QAAO;AACT,eAASA,MAAwB;AAAA,IACnC;AAAA,EACF,GAAG,CAAC,CAAC;AAEL,oCAAgB,MAAM;AACpB,UAAM,OAAO,aAAa,QAAQ,qBAAQ;AAC1C,QAAI,MAAM;AACR,mBAAa,IAAkB;AAAA,IACjC;AAAA,EACF,GAAG,CAAC,CAAC;AAEL,8BAAU,MAAM;AACd,UAAM,OAAO,SAAS;AACtB,SAAK,QAAQ,QAAQ;AAAA,EACvB,GAAG,CAAC,KAAK,CAAC;AAEV,8BAAU,MAAM;AACd,UAAM,OAAO,SAAS;AACtB,SAAK,QAAQ,YAAY;AAAA,EAC3B,GAAG,CAAC,SAAS,CAAC;AAEd,aAAO;AAAA,IACL,OAAO;AAAA,MACL;AAAA,MACA,MAAM;AAAA,MACN,aAAa;AAAA,MACb,YAAY;AAAA,IACd;AAAA,IACA,CAAC,OAAO,WAAW,mBAAmB,qBAAqB;AAAA,EAC7D;AACF;","names":["theme"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { useTheme_alias_1 as useTheme } from '../_tsup-dts-rollup';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { useTheme_alias_1 as useTheme } from '../_tsup-dts-rollup';
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/hooks/useTheme.ts
|
|
4
|
+
import {
|
|
5
|
+
useCallback,
|
|
6
|
+
useEffect,
|
|
7
|
+
useLayoutEffect,
|
|
8
|
+
useMemo,
|
|
9
|
+
useState
|
|
10
|
+
} from "react";
|
|
11
|
+
import {
|
|
12
|
+
MODE_KEY,
|
|
13
|
+
THEME_KEY
|
|
14
|
+
} from "../context/theme.js";
|
|
15
|
+
function useTheme(defaultTheme = "cerberus", defaultColorMode = "light") {
|
|
16
|
+
const [theme, setTheme] = useState(defaultTheme);
|
|
17
|
+
const [colorMode, setColorMode] = useState(defaultColorMode);
|
|
18
|
+
const handleThemeChange = useCallback((newTheme) => {
|
|
19
|
+
setTheme(newTheme);
|
|
20
|
+
localStorage.setItem(THEME_KEY, newTheme);
|
|
21
|
+
}, []);
|
|
22
|
+
const handleColorModeChange = useCallback(() => {
|
|
23
|
+
setColorMode((prev) => {
|
|
24
|
+
const newMode = prev === "light" ? "dark" : "light";
|
|
25
|
+
localStorage.setItem(MODE_KEY, newMode);
|
|
26
|
+
return newMode;
|
|
27
|
+
});
|
|
28
|
+
}, []);
|
|
29
|
+
useLayoutEffect(() => {
|
|
30
|
+
const theme2 = localStorage.getItem(THEME_KEY);
|
|
31
|
+
if (theme2) {
|
|
32
|
+
setTheme(theme2);
|
|
33
|
+
}
|
|
34
|
+
}, []);
|
|
35
|
+
useLayoutEffect(() => {
|
|
36
|
+
const mode = localStorage.getItem(MODE_KEY);
|
|
37
|
+
if (mode) {
|
|
38
|
+
setColorMode(mode);
|
|
39
|
+
}
|
|
40
|
+
}, []);
|
|
41
|
+
useEffect(() => {
|
|
42
|
+
const root = document.documentElement;
|
|
43
|
+
root.dataset.theme = theme;
|
|
44
|
+
}, [theme]);
|
|
45
|
+
useEffect(() => {
|
|
46
|
+
const root = document.documentElement;
|
|
47
|
+
root.dataset.colorMode = colorMode;
|
|
48
|
+
}, [colorMode]);
|
|
49
|
+
return useMemo(
|
|
50
|
+
() => ({
|
|
51
|
+
theme,
|
|
52
|
+
mode: colorMode,
|
|
53
|
+
updateTheme: handleThemeChange,
|
|
54
|
+
updateMode: handleColorModeChange
|
|
55
|
+
}),
|
|
56
|
+
[theme, colorMode, handleThemeChange, handleColorModeChange]
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
export {
|
|
60
|
+
useTheme
|
|
61
|
+
};
|
|
62
|
+
//# sourceMappingURL=useTheme.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/hooks/useTheme.ts"],"sourcesContent":["'use client'\n\nimport {\n useCallback,\n useEffect,\n useLayoutEffect,\n useMemo,\n useState,\n} from 'react'\nimport {\n MODE_KEY,\n THEME_KEY,\n type ColorModes,\n type CustomThemes,\n type DefaultThemes,\n} from '../context/theme'\n\nexport function useTheme<C extends DefaultThemes>(\n defaultTheme: CustomThemes<C> = 'cerberus',\n defaultColorMode: ColorModes = 'light',\n) {\n const [theme, setTheme] = useState<CustomThemes<C>>(defaultTheme)\n const [colorMode, setColorMode] = useState<ColorModes>(defaultColorMode)\n\n const handleThemeChange = useCallback((newTheme: CustomThemes<C>) => {\n setTheme(newTheme)\n localStorage.setItem(THEME_KEY, newTheme)\n }, [])\n\n const handleColorModeChange = useCallback(() => {\n setColorMode((prev) => {\n const newMode = prev === 'light' ? 'dark' : 'light'\n localStorage.setItem(MODE_KEY, newMode)\n return newMode\n })\n }, [])\n\n useLayoutEffect(() => {\n const theme = localStorage.getItem(THEME_KEY)\n if (theme) {\n setTheme(theme as CustomThemes<C>)\n }\n }, [])\n\n useLayoutEffect(() => {\n const mode = localStorage.getItem(MODE_KEY)\n if (mode) {\n setColorMode(mode as ColorModes)\n }\n }, [])\n\n useEffect(() => {\n const root = document.documentElement\n root.dataset.theme = theme\n }, [theme])\n\n useEffect(() => {\n const root = document.documentElement\n root.dataset.colorMode = colorMode\n }, [colorMode])\n\n return useMemo(\n () => ({\n theme,\n mode: colorMode,\n updateTheme: handleThemeChange,\n updateMode: handleColorModeChange,\n }),\n [theme, colorMode, handleThemeChange, handleColorModeChange],\n )\n}\n"],"mappings":";;;AAEA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP;AAAA,EACE;AAAA,EACA;AAAA,OAIK;AAEA,SAAS,SACd,eAAgC,YAChC,mBAA+B,SAC/B;AACA,QAAM,CAAC,OAAO,QAAQ,IAAI,SAA0B,YAAY;AAChE,QAAM,CAAC,WAAW,YAAY,IAAI,SAAqB,gBAAgB;AAEvE,QAAM,oBAAoB,YAAY,CAAC,aAA8B;AACnE,aAAS,QAAQ;AACjB,iBAAa,QAAQ,WAAW,QAAQ;AAAA,EAC1C,GAAG,CAAC,CAAC;AAEL,QAAM,wBAAwB,YAAY,MAAM;AAC9C,iBAAa,CAAC,SAAS;AACrB,YAAM,UAAU,SAAS,UAAU,SAAS;AAC5C,mBAAa,QAAQ,UAAU,OAAO;AACtC,aAAO;AAAA,IACT,CAAC;AAAA,EACH,GAAG,CAAC,CAAC;AAEL,kBAAgB,MAAM;AACpB,UAAMA,SAAQ,aAAa,QAAQ,SAAS;AAC5C,QAAIA,QAAO;AACT,eAASA,MAAwB;AAAA,IACnC;AAAA,EACF,GAAG,CAAC,CAAC;AAEL,kBAAgB,MAAM;AACpB,UAAM,OAAO,aAAa,QAAQ,QAAQ;AAC1C,QAAI,MAAM;AACR,mBAAa,IAAkB;AAAA,IACjC;AAAA,EACF,GAAG,CAAC,CAAC;AAEL,YAAU,MAAM;AACd,UAAM,OAAO,SAAS;AACtB,SAAK,QAAQ,QAAQ;AAAA,EACvB,GAAG,CAAC,KAAK,CAAC;AAEV,YAAU,MAAM;AACd,UAAM,OAAO,SAAS;AACtB,SAAK,QAAQ,YAAY;AAAA,EAC3B,GAAG,CAAC,SAAS,CAAC;AAEd,SAAO;AAAA,IACL,OAAO;AAAA,MACL;AAAA,MACA,MAAM;AAAA,MACN,aAAa;AAAA,MACb,YAAY;AAAA,IACd;AAAA,IACA,CAAC,OAAO,WAAW,mBAAmB,qBAAqB;AAAA,EAC7D;AACF;","names":["theme"]}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
15
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
16
|
+
|
|
17
|
+
// src/index.ts
|
|
18
|
+
var src_exports = {};
|
|
19
|
+
module.exports = __toCommonJS(src_exports);
|
|
20
|
+
__reExport(src_exports, require("./context/theme.cjs"), module.exports);
|
|
21
|
+
__reExport(src_exports, require("./hooks/useTheme.cjs"), module.exports);
|
|
22
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
23
|
+
0 && (module.exports = {
|
|
24
|
+
...require("./context/theme.cjs"),
|
|
25
|
+
...require("./hooks/useTheme.cjs")
|
|
26
|
+
});
|
|
27
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["// context\n\nexport * from './context/theme'\n\n// hooks\n\nexport * from './hooks/useTheme'\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA;AAAA;AAEA,wBAAc,gCAFd;AAMA,wBAAc,iCANd;","names":[]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { ThemeProvider } from './_tsup-dts-rollup';
|
|
2
|
+
export { useThemeContext } from './_tsup-dts-rollup';
|
|
3
|
+
export { DefaultThemes } from './_tsup-dts-rollup';
|
|
4
|
+
export { CustomThemes } from './_tsup-dts-rollup';
|
|
5
|
+
export { ColorModes } from './_tsup-dts-rollup';
|
|
6
|
+
export { ThemeContextValue } from './_tsup-dts-rollup';
|
|
7
|
+
export { THEME_KEY } from './_tsup-dts-rollup';
|
|
8
|
+
export { MODE_KEY } from './_tsup-dts-rollup';
|
|
9
|
+
export { useTheme } from './_tsup-dts-rollup';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { ThemeProvider } from './_tsup-dts-rollup';
|
|
2
|
+
export { useThemeContext } from './_tsup-dts-rollup';
|
|
3
|
+
export { DefaultThemes } from './_tsup-dts-rollup';
|
|
4
|
+
export { CustomThemes } from './_tsup-dts-rollup';
|
|
5
|
+
export { ColorModes } from './_tsup-dts-rollup';
|
|
6
|
+
export { ThemeContextValue } from './_tsup-dts-rollup';
|
|
7
|
+
export { THEME_KEY } from './_tsup-dts-rollup';
|
|
8
|
+
export { MODE_KEY } from './_tsup-dts-rollup';
|
|
9
|
+
export { useTheme } from './_tsup-dts-rollup';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["// context\n\nexport * from './context/theme'\n\n// hooks\n\nexport * from './hooks/useTheme'\n"],"mappings":";AAEA,cAAc;AAId,cAAc;","names":[]}
|
package/package.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cerberus-design/react",
|
|
3
|
+
"version": "0.0.1-next-7fb0c14",
|
|
4
|
+
"description": "The Cerberus Design React component library",
|
|
5
|
+
"browserslist": "> 0.25%, not dead",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "build/legacy/index.cjs",
|
|
9
|
+
"module": "build/legacy/index.js",
|
|
10
|
+
"peerDependencies": {
|
|
11
|
+
"@cerberus-design/panda-preset": "*",
|
|
12
|
+
"@pandacss/dev": "*",
|
|
13
|
+
"react": "*",
|
|
14
|
+
"react-dom": "*"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"@microsoft/api-extractor": "^7.43.1",
|
|
18
|
+
"@pandacss/dev": "^0.39.0",
|
|
19
|
+
"@pandacss/types": "^0.39.0",
|
|
20
|
+
"@types/react": "^18",
|
|
21
|
+
"react": "^18",
|
|
22
|
+
"react-dom": "^18",
|
|
23
|
+
"tsup": "^8.0.2",
|
|
24
|
+
"@cerberus-design/configs": "0.0.0"
|
|
25
|
+
},
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"build/**/*",
|
|
31
|
+
"src/**/*",
|
|
32
|
+
"index.ts"
|
|
33
|
+
],
|
|
34
|
+
"keywords": [
|
|
35
|
+
"panda-css",
|
|
36
|
+
"omni-federal",
|
|
37
|
+
"design-system",
|
|
38
|
+
"css",
|
|
39
|
+
"react",
|
|
40
|
+
"ui",
|
|
41
|
+
"ui library",
|
|
42
|
+
"panda-css react",
|
|
43
|
+
"digital university",
|
|
44
|
+
"du design system"
|
|
45
|
+
],
|
|
46
|
+
"author": "developers@omnifederal.com",
|
|
47
|
+
"license": "ISC",
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "tsup --experimental-dts",
|
|
50
|
+
"clean": "rm -rf ./build",
|
|
51
|
+
"lint:ts": "tsc --project tsconfig.lint.json --noEmit"
|
|
52
|
+
},
|
|
53
|
+
"types": "build/legacy/index.d.ts",
|
|
54
|
+
"exports": {
|
|
55
|
+
".": {
|
|
56
|
+
"import": {
|
|
57
|
+
"types": "./build/modern/index.d.ts",
|
|
58
|
+
"default": "./build/modern/index.js"
|
|
59
|
+
},
|
|
60
|
+
"require": {
|
|
61
|
+
"types": "./build/modern/index.d.cts",
|
|
62
|
+
"default": "./build/modern/index.cjs"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"./package.json": "./package.json"
|
|
66
|
+
},
|
|
67
|
+
"typesVersions": {
|
|
68
|
+
"*": {
|
|
69
|
+
".": [
|
|
70
|
+
"build/legacy/index.d.ts"
|
|
71
|
+
]
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
'use client'
|
|
2
|
+
|
|
3
|
+
import { createContext, useContext, type PropsWithChildren } from 'react'
|
|
4
|
+
import { useTheme } from '../hooks/useTheme'
|
|
5
|
+
|
|
6
|
+
export type DefaultThemes = 'cerberus'
|
|
7
|
+
export type CustomThemes<K extends DefaultThemes> = 'cerberus' | K
|
|
8
|
+
export type ColorModes = 'light' | 'dark'
|
|
9
|
+
|
|
10
|
+
export interface ThemeContextValue<T extends DefaultThemes> {
|
|
11
|
+
theme: CustomThemes<T>
|
|
12
|
+
mode: ColorModes
|
|
13
|
+
updateTheme: (theme: T) => void
|
|
14
|
+
updateMode: () => void
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export const THEME_KEY = 'cerberus-theme'
|
|
18
|
+
export const MODE_KEY = 'cerberus-mode'
|
|
19
|
+
|
|
20
|
+
const initialThemeState = {
|
|
21
|
+
theme: 'cerberus' as const,
|
|
22
|
+
mode: 'light' as const,
|
|
23
|
+
updateTheme: () => {},
|
|
24
|
+
updateMode: () => {},
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const ThemeContext =
|
|
28
|
+
createContext<ThemeContextValue<DefaultThemes>>(initialThemeState)
|
|
29
|
+
|
|
30
|
+
export function ThemeProvider(props: PropsWithChildren<unknown>) {
|
|
31
|
+
const state = useTheme()
|
|
32
|
+
return (
|
|
33
|
+
<ThemeContext.Provider value={state}>
|
|
34
|
+
{props.children}
|
|
35
|
+
</ThemeContext.Provider>
|
|
36
|
+
)
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export function useThemeContext(): ThemeContextValue<DefaultThemes> {
|
|
40
|
+
const context = useContext(ThemeContext)
|
|
41
|
+
if (!context) {
|
|
42
|
+
throw new Error('useThemeContext must be used within a ThemeProvider')
|
|
43
|
+
}
|
|
44
|
+
return context
|
|
45
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
'use client'
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
useCallback,
|
|
5
|
+
useEffect,
|
|
6
|
+
useLayoutEffect,
|
|
7
|
+
useMemo,
|
|
8
|
+
useState,
|
|
9
|
+
} from 'react'
|
|
10
|
+
import {
|
|
11
|
+
MODE_KEY,
|
|
12
|
+
THEME_KEY,
|
|
13
|
+
type ColorModes,
|
|
14
|
+
type CustomThemes,
|
|
15
|
+
type DefaultThemes,
|
|
16
|
+
} from '../context/theme'
|
|
17
|
+
|
|
18
|
+
export function useTheme<C extends DefaultThemes>(
|
|
19
|
+
defaultTheme: CustomThemes<C> = 'cerberus',
|
|
20
|
+
defaultColorMode: ColorModes = 'light',
|
|
21
|
+
) {
|
|
22
|
+
const [theme, setTheme] = useState<CustomThemes<C>>(defaultTheme)
|
|
23
|
+
const [colorMode, setColorMode] = useState<ColorModes>(defaultColorMode)
|
|
24
|
+
|
|
25
|
+
const handleThemeChange = useCallback((newTheme: CustomThemes<C>) => {
|
|
26
|
+
setTheme(newTheme)
|
|
27
|
+
localStorage.setItem(THEME_KEY, newTheme)
|
|
28
|
+
}, [])
|
|
29
|
+
|
|
30
|
+
const handleColorModeChange = useCallback(() => {
|
|
31
|
+
setColorMode((prev) => {
|
|
32
|
+
const newMode = prev === 'light' ? 'dark' : 'light'
|
|
33
|
+
localStorage.setItem(MODE_KEY, newMode)
|
|
34
|
+
return newMode
|
|
35
|
+
})
|
|
36
|
+
}, [])
|
|
37
|
+
|
|
38
|
+
useLayoutEffect(() => {
|
|
39
|
+
const theme = localStorage.getItem(THEME_KEY)
|
|
40
|
+
if (theme) {
|
|
41
|
+
setTheme(theme as CustomThemes<C>)
|
|
42
|
+
}
|
|
43
|
+
}, [])
|
|
44
|
+
|
|
45
|
+
useLayoutEffect(() => {
|
|
46
|
+
const mode = localStorage.getItem(MODE_KEY)
|
|
47
|
+
if (mode) {
|
|
48
|
+
setColorMode(mode as ColorModes)
|
|
49
|
+
}
|
|
50
|
+
}, [])
|
|
51
|
+
|
|
52
|
+
useEffect(() => {
|
|
53
|
+
const root = document.documentElement
|
|
54
|
+
root.dataset.theme = theme
|
|
55
|
+
}, [theme])
|
|
56
|
+
|
|
57
|
+
useEffect(() => {
|
|
58
|
+
const root = document.documentElement
|
|
59
|
+
root.dataset.colorMode = colorMode
|
|
60
|
+
}, [colorMode])
|
|
61
|
+
|
|
62
|
+
return useMemo(
|
|
63
|
+
() => ({
|
|
64
|
+
theme,
|
|
65
|
+
mode: colorMode,
|
|
66
|
+
updateTheme: handleThemeChange,
|
|
67
|
+
updateMode: handleColorModeChange,
|
|
68
|
+
}),
|
|
69
|
+
[theme, colorMode, handleThemeChange, handleColorModeChange],
|
|
70
|
+
)
|
|
71
|
+
}
|