forte-ui 1.0.0-alpha.1
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/README.md +17 -0
- package/cn.d.ts +1 -0
- package/cn.js +1 -0
- package/index.d.ts +1 -0
- package/index.js +1 -0
- package/package.json +41 -0
- package/tailwind-merge.d.ts +1 -0
- package/tailwind-merge.js +1 -0
- package/tailwind.css +4 -0
- package/theme.css +5 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# forte-ui
|
|
2
|
+
|
|
3
|
+
forte-ui lives under the **[@forte-ui](https://www.npmjs.com/org/forte-ui)** org —
|
|
4
|
+
the canonical package is
|
|
5
|
+
**[`@forte-ui/react`](https://www.npmjs.com/package/@forte-ui/react)**:
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install @forte-ui/react
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
This package is a functional alias published by the forte-ui team. It
|
|
12
|
+
re-exports `@forte-ui/react` verbatim, so `npm install forte-ui` works and
|
|
13
|
+
tracks the same release — each `forte-ui@X.Y.Z` maps to `@forte-ui/react@X.Y.Z`.
|
|
14
|
+
Prefer the scoped package in new projects; it is the one the documentation,
|
|
15
|
+
changelogs and issue tracker refer to.
|
|
16
|
+
|
|
17
|
+
Docs: [forte-ui.com](https://forte-ui.com)
|
package/cn.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@forte-ui/react/cn";
|
package/cn.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@forte-ui/react/cn";
|
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@forte-ui/react";
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@forte-ui/react";
|
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "forte-ui",
|
|
3
|
+
"version": "1.0.0-alpha.1",
|
|
4
|
+
"description": "Alias for @forte-ui/react — the canonical package of the forte-ui component library.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"sideEffects": [
|
|
8
|
+
"**/*.css"
|
|
9
|
+
],
|
|
10
|
+
"files": [
|
|
11
|
+
"index.js",
|
|
12
|
+
"index.d.ts",
|
|
13
|
+
"cn.js",
|
|
14
|
+
"cn.d.ts",
|
|
15
|
+
"tailwind-merge.js",
|
|
16
|
+
"tailwind-merge.d.ts",
|
|
17
|
+
"theme.css",
|
|
18
|
+
"tailwind.css"
|
|
19
|
+
],
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./index.d.ts",
|
|
23
|
+
"import": "./index.js"
|
|
24
|
+
},
|
|
25
|
+
"./theme.css": "./theme.css",
|
|
26
|
+
"./tailwind.css": "./tailwind.css",
|
|
27
|
+
"./tailwind-merge": {
|
|
28
|
+
"types": "./tailwind-merge.d.ts",
|
|
29
|
+
"import": "./tailwind-merge.js"
|
|
30
|
+
},
|
|
31
|
+
"./cn": {
|
|
32
|
+
"types": "./cn.d.ts",
|
|
33
|
+
"import": "./cn.js"
|
|
34
|
+
},
|
|
35
|
+
"./package.json": "./package.json"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://forte-ui.com",
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@forte-ui/react": "workspace:^"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@forte-ui/react/tailwind-merge";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@forte-ui/react/tailwind-merge";
|
package/tailwind.css
ADDED
package/theme.css
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/* Proxy to the canonical stylesheet. Bare package specifiers in @import are
|
|
2
|
+
resolved by every bundler that would be importing this file (Vite, Next,
|
|
3
|
+
PostCSS, Tailwind); browsers alone would not — same constraint as the CSS
|
|
4
|
+
Modules output this forwards to. */
|
|
5
|
+
@import "@forte-ui/react/theme.css";
|