@clerk/ui 0.1.9
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 +21 -0
- package/README.md +23 -0
- package/dist/chunk-GJNJVJGS.mjs +4898 -0
- package/dist/chunk-GJNJVJGS.mjs.map +1 -0
- package/dist/chunk-RVVUA25B.mjs +383 -0
- package/dist/chunk-RVVUA25B.mjs.map +1 -0
- package/dist/components/sign-in.d.mts +21 -0
- package/dist/components/sign-in.d.ts +21 -0
- package/dist/components/sign-in.js +6883 -0
- package/dist/components/sign-in.js.map +1 -0
- package/dist/components/sign-in.mjs +1610 -0
- package/dist/components/sign-in.mjs.map +1 -0
- package/dist/components/sign-up.d.mts +10 -0
- package/dist/components/sign-up.d.ts +10 -0
- package/dist/components/sign-up.js +5841 -0
- package/dist/components/sign-up.js.map +1 -0
- package/dist/components/sign-up.mjs +561 -0
- package/dist/components/sign-up.mjs.map +1 -0
- package/dist/contexts.d.mts +81 -0
- package/dist/contexts.d.ts +81 -0
- package/dist/contexts.js +407 -0
- package/dist/contexts.js.map +1 -0
- package/dist/contexts.mjs +3 -0
- package/dist/contexts.mjs.map +1 -0
- package/dist/styles.css +1 -0
- package/package.json +73 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Clerk, Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://clerk.com?utm_source=github&utm_medium=clerk_ui" target="_blank" rel="noopener noreferrer">
|
|
3
|
+
<picture>
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://images.clerk.com/static/logo-dark-mode-400x400.png">
|
|
5
|
+
<img src="https://images.clerk.com/static/logo-light-mode-400x400.png" height="64">
|
|
6
|
+
</picture>
|
|
7
|
+
</a>
|
|
8
|
+
<br />
|
|
9
|
+
</p>
|
|
10
|
+
|
|
11
|
+
# @clerk/ui
|
|
12
|
+
|
|
13
|
+
> [!WARNING]
|
|
14
|
+
> This is an experimental package and work-in-progress. Please come back later 👋
|
|
15
|
+
|
|
16
|
+
- `src/primitives/*` - the building blocks for AIO components void of any Clerk Elements/logic
|
|
17
|
+
- `src/components/*` - the AIO components built using primitives and Clerk Elements
|
|
18
|
+
|
|
19
|
+
## License
|
|
20
|
+
|
|
21
|
+
This project is licensed under the **MIT license**.
|
|
22
|
+
|
|
23
|
+
See [LICENSE](https://github.com/clerk/javascript/blob/main/packages/ui/LICENSE) for more information.
|