newtui 2.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.
Files changed (97) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +53 -0
  3. package/cli/index.js +137 -0
  4. package/dist/index.js +1408 -0
  5. package/package.json +70 -0
  6. package/registry/html/components/attachment.css +42 -0
  7. package/registry/html/components/attachment.html +8 -0
  8. package/registry/html/components/avatar.css +32 -0
  9. package/registry/html/components/avatar.html +3 -0
  10. package/registry/html/components/badge.css +39 -0
  11. package/registry/html/components/badge.html +3 -0
  12. package/registry/html/components/bot-command-card.css +67 -0
  13. package/registry/html/components/bot-command-card.html +17 -0
  14. package/registry/html/components/button.css +98 -0
  15. package/registry/html/components/button.html +5 -0
  16. package/registry/html/components/card.css +20 -0
  17. package/registry/html/components/card.html +4 -0
  18. package/registry/html/components/channel-topic.css +35 -0
  19. package/registry/html/components/channel-topic.html +8 -0
  20. package/registry/html/components/code-block.css +25 -0
  21. package/registry/html/components/code-block.html +2 -0
  22. package/registry/html/components/context-menu.css +46 -0
  23. package/registry/html/components/context-menu.html +14 -0
  24. package/registry/html/components/cooldown-bar.css +33 -0
  25. package/registry/html/components/cooldown-bar.html +9 -0
  26. package/registry/html/components/divider.css +18 -0
  27. package/registry/html/components/divider.html +1 -0
  28. package/registry/html/components/dropdown.css +50 -0
  29. package/registry/html/components/dropdown.html +17 -0
  30. package/registry/html/components/embed.css +65 -0
  31. package/registry/html/components/embed.html +14 -0
  32. package/registry/html/components/empty-state.css +26 -0
  33. package/registry/html/components/empty-state.html +5 -0
  34. package/registry/html/components/form-fields.css +85 -0
  35. package/registry/html/components/form-fields.html +20 -0
  36. package/registry/html/components/kbd-tag.css +18 -0
  37. package/registry/html/components/kbd-tag.html +1 -0
  38. package/registry/html/components/member-list.css +32 -0
  39. package/registry/html/components/member-list.html +13 -0
  40. package/registry/html/components/mention.css +36 -0
  41. package/registry/html/components/mention.html +3 -0
  42. package/registry/html/components/message-group.css +50 -0
  43. package/registry/html/components/message-group.html +20 -0
  44. package/registry/html/components/modal.css +37 -0
  45. package/registry/html/components/modal.html +17 -0
  46. package/registry/html/components/modal.js +10 -0
  47. package/registry/html/components/notif-badge.css +28 -0
  48. package/registry/html/components/notif-badge.html +13 -0
  49. package/registry/html/components/pagination.css +57 -0
  50. package/registry/html/components/pagination.html +16 -0
  51. package/registry/html/components/permission.css +64 -0
  52. package/registry/html/components/permission.html +33 -0
  53. package/registry/html/components/progress.css +29 -0
  54. package/registry/html/components/progress.html +6 -0
  55. package/registry/html/components/reaction.css +33 -0
  56. package/registry/html/components/reaction.html +14 -0
  57. package/registry/html/components/reply-preview.css +35 -0
  58. package/registry/html/components/reply-preview.html +4 -0
  59. package/registry/html/components/role-tag.css +19 -0
  60. package/registry/html/components/role-tag.html +3 -0
  61. package/registry/html/components/scrollbar.css +26 -0
  62. package/registry/html/components/scrollbar.html +7 -0
  63. package/registry/html/components/select-menu.css +72 -0
  64. package/registry/html/components/select-menu.html +19 -0
  65. package/registry/html/components/server-banner.css +58 -0
  66. package/registry/html/components/server-banner.html +21 -0
  67. package/registry/html/components/skeleton.css +40 -0
  68. package/registry/html/components/skeleton.html +7 -0
  69. package/registry/html/components/slash-command.css +16 -0
  70. package/registry/html/components/slash-command.html +3 -0
  71. package/registry/html/components/spoiler.css +22 -0
  72. package/registry/html/components/spoiler.html +8 -0
  73. package/registry/html/components/stage-banner.css +46 -0
  74. package/registry/html/components/stage-banner.html +22 -0
  75. package/registry/html/components/status-indicator.css +85 -0
  76. package/registry/html/components/status-indicator.html +4 -0
  77. package/registry/html/components/tabs.css +28 -0
  78. package/registry/html/components/tabs.html +7 -0
  79. package/registry/html/components/tabs.js +12 -0
  80. package/registry/html/components/timeline.css +63 -0
  81. package/registry/html/components/timeline.html +26 -0
  82. package/registry/html/components/toast.css +37 -0
  83. package/registry/html/components/toast.html +7 -0
  84. package/registry/html/components/toast.js +16 -0
  85. package/registry/html/components/token-field.css +10 -0
  86. package/registry/html/components/token-field.html +18 -0
  87. package/registry/html/components/token-field.js +17 -0
  88. package/registry/html/components/tooltip.css +26 -0
  89. package/registry/html/components/tooltip.html +8 -0
  90. package/registry/html/components/typing-indicator.css +45 -0
  91. package/registry/html/components/typing-indicator.html +4 -0
  92. package/registry/html/components/user-profile.css +67 -0
  93. package/registry/html/components/user-profile.html +30 -0
  94. package/registry/html/components/voice-channel.css +57 -0
  95. package/registry/html/components/voice-channel.html +13 -0
  96. package/registry/html/registry.json +279 -0
  97. package/registry/html/tokens.css +64 -0
package/LICENSE ADDED
@@ -0,0 +1,202 @@
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
44
+ purposes of this License, Derivative Works shall not include works
45
+ that remain separable from, or merely link (or bind by name) to the
46
+ interfaces of, 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
141
+ the origin of the Work and reproducing the content of the NOTICE
142
+ file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright 2026 wolfstar-project
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,53 @@
1
+ # newtui
2
+
3
+ CLI for [newt/ui](https://newtui.dev) — Discord-native UI components for React, Vue and Nuxt, distributed shadcn-style: the source is copied into your project, you own it.
4
+
5
+ ```bash
6
+ npx newtui init # writes components.json, lib/utils.ts, appends --newt-* tokens to your CSS
7
+ npx newtui add button # copies components + resolves registryDependencies + installs npm deps
8
+ npx newtui list # lists registry items
9
+ npx newtui diff button # compares local files with the registry
10
+ ```
11
+
12
+ ## Framework
13
+
14
+ `init` detects whether the project is React or Vue and records the result as `framework` in `components.json`. Override it with `--framework react|vue`. Vue projects also record a `bundler` (`nuxt` or `vite`), which decides where the stylesheet lives and which setup instructions are printed — pass `--bundler nuxt|vite` to force it.
15
+
16
+ Every command reads `framework` back from `components.json`, so `add`, `diff` and `list` all target the right registry without being told again.
17
+
18
+ ## Registry
19
+
20
+ Each framework has its own registry, and every item carries a `framework` field naming which one it came from:
21
+
22
+ | Framework | Registry |
23
+ | --------- | ----------------------------------------------------- |
24
+ | React | `https://newtui.dev/r/styles/<style>/<name>.json` |
25
+ | Vue | `https://newtui.dev/vue/r/styles/<style>/<name>.json` |
26
+
27
+ Override the base url with `--registry <url>` or `NEWT_REGISTRY_URL`, or set `"registry"` in `components.json`.
28
+
29
+ ## Migrating from `@newtui/react` / `@newtui/vue`
30
+
31
+ Both packages are deprecated and now forward to this one. Replace `npx @newtui/react …` and `npx @newtui/vue …` with `npx newtui …`.
32
+
33
+ An existing `components.json` keeps working — it is migrated on read:
34
+
35
+ - `framework: "nuxt" | "vite"` (the old Vue build tool) becomes `bundler`, and `framework` becomes `"vue"`.
36
+ - `tsx` (the old React flag) is read as `typescript`.
37
+ - A config with neither field is matched to a framework by the aliases it declares.
38
+
39
+ ## Legacy HTML/CSS registry
40
+
41
+ The original framework-less HTML/CSS CLI is still shipped:
42
+
43
+ ```bash
44
+ npx newtui --legacy init
45
+ npx newtui-html init # same thing
46
+ ```
47
+
48
+ ## Development
49
+
50
+ ```bash
51
+ pnpm build # tsdown -> dist/index.js
52
+ pnpm typecheck # tsc --noEmit
53
+ ```
package/cli/index.js ADDED
@@ -0,0 +1,137 @@
1
+ #!/usr/bin/env node
2
+
3
+ import {
4
+ existsSync,
5
+ mkdirSync,
6
+ copyFileSync,
7
+ writeFileSync,
8
+ readFileSync,
9
+ } from "node:fs"
10
+ import { join, dirname } from "node:path"
11
+ import { fileURLToPath } from "node:url"
12
+
13
+ const __dirname = dirname(fileURLToPath(import.meta.url))
14
+ const PKG_ROOT = join(__dirname, "..")
15
+ const REGISTRY_DIR = join(PKG_ROOT, "registry", "html")
16
+ const REGISTRY_JSON = join(REGISTRY_DIR, "registry.json")
17
+
18
+ const CONFIG_FILE = "newt-ui.json"
19
+
20
+ function loadRegistry() {
21
+ return JSON.parse(readFileSync(REGISTRY_JSON, "utf-8"))
22
+ }
23
+
24
+ function loadConfig(cwd) {
25
+ const configPath = join(cwd, CONFIG_FILE)
26
+ if (!existsSync(configPath)) {
27
+ console.error(
28
+ `No ${CONFIG_FILE} found. Run \`npx newtui-html init\` first.`
29
+ )
30
+ process.exit(1)
31
+ }
32
+ return JSON.parse(readFileSync(configPath, "utf-8"))
33
+ }
34
+
35
+ function cmdInit(cwd) {
36
+ const configPath = join(cwd, CONFIG_FILE)
37
+ if (existsSync(configPath)) {
38
+ console.log(`${CONFIG_FILE} already exists. Skipping.`)
39
+ } else {
40
+ const config = {
41
+ $schema: "https://newtui.dev/config-schema.json",
42
+ componentsDir: "components/ui",
43
+ tokensFile: "styles/newt-tokens.css",
44
+ }
45
+ writeFileSync(configPath, JSON.stringify(config, null, 2) + "\n")
46
+ console.log(`Created ${CONFIG_FILE}`)
47
+ }
48
+
49
+ const registry = loadRegistry()
50
+ const config = loadConfig(cwd)
51
+
52
+ const tokensDest = join(cwd, config.tokensFile)
53
+ mkdirSync(dirname(tokensDest), { recursive: true })
54
+ copyFileSync(join(REGISTRY_DIR, registry.tokens), tokensDest)
55
+ console.log(`Added design tokens -> ${config.tokensFile}`)
56
+ console.log("\nNext: npx newtui-html add <component> [...components]")
57
+ console.log("Run `npx newtui-html list` to see available components.")
58
+ }
59
+
60
+ function cmdList() {
61
+ const registry = loadRegistry()
62
+ console.log("Available components:\n")
63
+ for (const c of registry.components) {
64
+ console.log(` ${c.name.padEnd(18)} ${c.title}`)
65
+ }
66
+ }
67
+
68
+ function resolveDeps(registry, names) {
69
+ const resolved = new Set()
70
+ const stack = [...names]
71
+ while (stack.length) {
72
+ const name = stack.pop()
73
+ if (resolved.has(name)) continue
74
+ const entry = registry.components.find((c) => c.name === name)
75
+ if (!entry) {
76
+ console.warn(`Unknown component "${name}", skipping.`)
77
+ continue
78
+ }
79
+ resolved.add(name)
80
+ if (entry.uses) stack.push(...entry.uses)
81
+ }
82
+ return [...resolved]
83
+ }
84
+
85
+ function cmdAdd(cwd, names) {
86
+ if (names.length === 0) {
87
+ console.error("Usage: newtui-html add <component> [...components]")
88
+ process.exit(1)
89
+ }
90
+ const registry = loadRegistry()
91
+ const config = loadConfig(cwd)
92
+ const all = resolveDeps(registry, names)
93
+
94
+ const destDir = join(cwd, config.componentsDir)
95
+ mkdirSync(destDir, { recursive: true })
96
+
97
+ for (const name of all) {
98
+ const entry = registry.components.find((c) => c.name === name)
99
+ if (!entry) continue
100
+ for (const file of [...entry.files, ...(entry.js ? [entry.js] : [])]) {
101
+ const src = join(REGISTRY_DIR, "components", file)
102
+ if (!existsSync(src)) {
103
+ console.warn(` (missing source file ${file}, skipping)`)
104
+ continue
105
+ }
106
+ const dest = join(destDir, file)
107
+ copyFileSync(src, dest)
108
+ console.log(` + ${join(config.componentsDir, file)}`)
109
+ }
110
+ }
111
+ console.log(
112
+ `\nAdded ${all.length} component(s). Import the tokens file once globally.`
113
+ )
114
+ }
115
+
116
+ const [, , command, ...args] = process.argv
117
+ const cwd = process.cwd()
118
+
119
+ switch (command) {
120
+ case "init":
121
+ cmdInit(cwd)
122
+ break
123
+ case "add":
124
+ cmdAdd(cwd, args)
125
+ break
126
+ case "list":
127
+ cmdList()
128
+ break
129
+ default:
130
+ console.log(`newtui-html — Discord-native UI components
131
+
132
+ Usage:
133
+ npx newtui-html init Set up newt/ui in the current project
134
+ npx newtui-html list List available components
135
+ npx newtui-html add <names...> Add one or more components
136
+ `)
137
+ }