@signal9/era-ui 6.0.0 → 8.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/dist/ai/prompt-input/prompt-input-textarea.svelte +1 -2
- package/dist/ai/reasoning/reasoning.svelte +4 -0
- package/dist/apps/notes/note-editor.svelte +7 -364
- package/dist/apps/notes/note-editor.svelte.d.ts +1 -0
- package/dist/era-ui.css +1 -1
- package/dist/generated-docs/llms-full.txt +21 -2
- package/dist/generated-docs/llms.txt +21 -2
- package/dist/index.d.ts +34 -5
- package/dist/index.js +42 -8
- package/dist/os/workspace-storage.svelte.js +1 -1
- package/dist/styles/index.css +23 -13
- package/dist/styles/prose.css +384 -0
- package/dist/styles/video-player.css +27 -0
- package/dist/ui/calendar/calendar-root.svelte.d.ts +1 -1
- package/dist/ui/date-field/date-field-root.svelte.d.ts +1 -1
- package/dist/ui/date-picker/date-picker-root.svelte.d.ts +1 -1
- package/dist/ui/date-range-field/date-range-field-root.svelte.d.ts +1 -1
- package/dist/ui/date-range-picker/date-range-picker-root.svelte.d.ts +1 -1
- package/dist/ui/input/textarea.svelte +1 -2
- package/dist/ui/time-field/time-field-root.svelte.d.ts +1 -1
- package/dist/ui/time-range-field/time-range-field-root.svelte.d.ts +1 -1
- package/dist/ui/video-player/video-player.svelte +3 -1
- package/package.json +137 -53
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signal9/era-ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite dev --host",
|
|
6
6
|
"build": "vite build && npm run prepack",
|
|
@@ -39,65 +39,89 @@
|
|
|
39
39
|
"exports": {
|
|
40
40
|
".": {
|
|
41
41
|
"types": "./dist/index.d.ts",
|
|
42
|
-
"style": "./dist/styles/index.css",
|
|
43
42
|
"svelte": "./dist/index.js",
|
|
44
43
|
"default": "./dist/index.js"
|
|
45
44
|
},
|
|
46
|
-
"
|
|
47
|
-
"types": "./dist/ui
|
|
48
|
-
"svelte": "./dist/ui
|
|
49
|
-
"default": "./dist/ui
|
|
45
|
+
"./*": {
|
|
46
|
+
"types": "./dist/ui/*/index.d.ts",
|
|
47
|
+
"svelte": "./dist/ui/*/index.js",
|
|
48
|
+
"default": "./dist/ui/*/index.js"
|
|
50
49
|
},
|
|
51
50
|
"./ai": {
|
|
52
51
|
"types": "./dist/ai/index.d.ts",
|
|
53
52
|
"svelte": "./dist/ai/index.js",
|
|
54
53
|
"default": "./dist/ai/index.js"
|
|
55
54
|
},
|
|
56
|
-
"./ai
|
|
57
|
-
"types": "./dist/ai
|
|
58
|
-
"svelte": "./dist/ai
|
|
59
|
-
"default": "./dist/ai
|
|
60
|
-
},
|
|
61
|
-
"./os": {
|
|
62
|
-
"types": "./dist/os/index.d.ts",
|
|
63
|
-
"svelte": "./dist/os/index.js",
|
|
64
|
-
"default": "./dist/os/index.js"
|
|
55
|
+
"./ai/*": {
|
|
56
|
+
"types": "./dist/ai/*/index.d.ts",
|
|
57
|
+
"svelte": "./dist/ai/*/index.js",
|
|
58
|
+
"default": "./dist/ai/*/index.js"
|
|
65
59
|
},
|
|
66
60
|
"./apps": {
|
|
67
61
|
"types": "./dist/apps/index.d.ts",
|
|
68
62
|
"svelte": "./dist/apps/index.js",
|
|
69
63
|
"default": "./dist/apps/index.js"
|
|
70
64
|
},
|
|
71
|
-
"./apps
|
|
72
|
-
"types": "./dist/apps
|
|
73
|
-
"svelte": "./dist/apps
|
|
74
|
-
"default": "./dist/apps
|
|
65
|
+
"./apps/*": {
|
|
66
|
+
"types": "./dist/apps/*/index.d.ts",
|
|
67
|
+
"svelte": "./dist/apps/*/index.js",
|
|
68
|
+
"default": "./dist/apps/*/index.js"
|
|
69
|
+
},
|
|
70
|
+
"./os": {
|
|
71
|
+
"types": "./dist/os/index.d.ts",
|
|
72
|
+
"svelte": "./dist/os/index.js",
|
|
73
|
+
"default": "./dist/os/index.js"
|
|
75
74
|
},
|
|
76
|
-
"./
|
|
77
|
-
"types": "./dist/
|
|
78
|
-
"svelte": "./dist/
|
|
79
|
-
"default": "./dist/
|
|
75
|
+
"./audit": {
|
|
76
|
+
"types": "./dist/dev/index.d.ts",
|
|
77
|
+
"svelte": "./dist/dev/index.js",
|
|
78
|
+
"default": "./dist/dev/index.js"
|
|
80
79
|
},
|
|
81
|
-
"./
|
|
82
|
-
"./styles/
|
|
80
|
+
"./styles": "./dist/styles/index.css",
|
|
81
|
+
"./styles/video-player": "./dist/styles/video-player.css",
|
|
82
|
+
"./styles/prose": "./dist/styles/prose.css",
|
|
83
83
|
"./styles/themes": "./dist/styles/themes.css",
|
|
84
|
-
"./
|
|
84
|
+
"./css": "./dist/era-ui.css",
|
|
85
|
+
"./utilities.json": "./dist/generated-docs/utilities.json",
|
|
86
|
+
"./package.json": "./package.json"
|
|
85
87
|
},
|
|
86
88
|
"peerDependencies": {
|
|
89
|
+
"@neodrag/svelte": "3.0.0-next.10",
|
|
90
|
+
"@tiptap/core": "^3.29.0",
|
|
91
|
+
"@tiptap/extension-code-block-lowlight": "^3.29.2",
|
|
92
|
+
"@tiptap/extension-details": "^3.29.2",
|
|
93
|
+
"@tiptap/extension-highlight": "^3.29.2",
|
|
94
|
+
"@tiptap/extension-image": "^3.29.2",
|
|
95
|
+
"@tiptap/extension-placeholder": "^3.29.2",
|
|
96
|
+
"@tiptap/extension-table": "^3.29.2",
|
|
97
|
+
"@tiptap/extension-task-item": "^3.29.2",
|
|
98
|
+
"@tiptap/extension-task-list": "^3.29.2",
|
|
99
|
+
"@tiptap/extension-typography": "^3.29.2",
|
|
100
|
+
"@tiptap/extension-unique-id": "^3.29.2",
|
|
101
|
+
"@tiptap/pm": "^3.29.0",
|
|
102
|
+
"@tiptap/starter-kit": "^3.29.2",
|
|
103
|
+
"@tiptap/suggestion": "^3.29.2",
|
|
104
|
+
"dompurify": "^3.4.13",
|
|
105
|
+
"lowlight": "^3.3.0",
|
|
106
|
+
"marked": "^18.0.9",
|
|
87
107
|
"svelte": "^5.0.0",
|
|
88
|
-
"tailwindcss": "^4.0.0"
|
|
108
|
+
"tailwindcss": "^4.0.0",
|
|
109
|
+
"tiptap-markdown": "^0.9.0",
|
|
110
|
+
"vidstack": "^0.6.15"
|
|
89
111
|
},
|
|
90
112
|
"devDependencies": {
|
|
91
113
|
"@eslint/compat": "^2.1.0",
|
|
92
|
-
"@eslint/js": "^
|
|
114
|
+
"@eslint/js": "^10.0.1",
|
|
115
|
+
"@internationalized/date": "^3.12.3",
|
|
116
|
+
"@neodrag/svelte": "3.0.0-next.10",
|
|
93
117
|
"@playwright/test": "^1.62.1",
|
|
94
|
-
"@semantic-release/changelog": "^
|
|
118
|
+
"@semantic-release/changelog": "^7.0.0",
|
|
95
119
|
"@semantic-release/exec": "^7.1.0",
|
|
96
|
-
"@semantic-release/git": "^
|
|
120
|
+
"@semantic-release/git": "^11.0.1",
|
|
97
121
|
"@sveltejs/adapter-cloudflare": "^7.2.9",
|
|
98
122
|
"@sveltejs/kit": "^2.70.2",
|
|
99
123
|
"@sveltejs/package": "^2.5.8",
|
|
100
|
-
"@sveltejs/vite-plugin-svelte": "^
|
|
124
|
+
"@sveltejs/vite-plugin-svelte": "^7.2.0",
|
|
101
125
|
"@tailwindcss/cli": "^4.3.3",
|
|
102
126
|
"@tailwindcss/vite": "^4.3.3",
|
|
103
127
|
"@threlte/core": "^8.5.16",
|
|
@@ -116,32 +140,35 @@
|
|
|
116
140
|
"@tiptap/pm": "^3.29.0",
|
|
117
141
|
"@tiptap/starter-kit": "^3.29.2",
|
|
118
142
|
"@tiptap/suggestion": "^3.29.2",
|
|
119
|
-
"@types/node": "^
|
|
120
|
-
"@types/three": "^0.
|
|
143
|
+
"@types/node": "^26.2.0",
|
|
144
|
+
"@types/three": "^0.185.4",
|
|
121
145
|
"@xyflow/svelte": "^1.6.2",
|
|
122
146
|
"conventional-changelog-conventionalcommits": "^10.2.1",
|
|
123
|
-
"
|
|
147
|
+
"dompurify": "^3.4.13",
|
|
148
|
+
"eslint": "^10.8.1",
|
|
124
149
|
"eslint-config-prettier": "^10.1.8",
|
|
125
150
|
"eslint-plugin-better-tailwindcss": "^4.7.0",
|
|
126
151
|
"eslint-plugin-svelte": "^3.22.0",
|
|
127
|
-
"globals": "^17.
|
|
152
|
+
"globals": "^17.9.0",
|
|
128
153
|
"lowlight": "^3.3.0",
|
|
154
|
+
"marked": "^18.0.9",
|
|
129
155
|
"prettier": "^3.9.6",
|
|
130
|
-
"prettier-plugin-svelte": "^
|
|
131
|
-
"prettier-plugin-tailwindcss": "^0.
|
|
132
|
-
"publint": "^0.3.
|
|
133
|
-
"semantic-release": "^25.0.
|
|
134
|
-
"shiki": "^4.4.
|
|
156
|
+
"prettier-plugin-svelte": "^4.1.1",
|
|
157
|
+
"prettier-plugin-tailwindcss": "^0.8.1",
|
|
158
|
+
"publint": "^0.3.23",
|
|
159
|
+
"semantic-release": "^25.0.9",
|
|
160
|
+
"shiki": "^4.4.2",
|
|
135
161
|
"svelte": "^5.56.8",
|
|
136
|
-
"svelte-check": "^4.7.
|
|
162
|
+
"svelte-check": "^4.7.5",
|
|
137
163
|
"tailwindcss": "^4.1.18",
|
|
138
|
-
"three": "^0.
|
|
164
|
+
"three": "^0.185.1",
|
|
139
165
|
"tiptap-markdown": "^0.9.0",
|
|
140
|
-
"typescript": "^
|
|
141
|
-
"typescript-eslint": "^8.
|
|
142
|
-
"
|
|
166
|
+
"typescript": "^6.0.3",
|
|
167
|
+
"typescript-eslint": "^8.66.0",
|
|
168
|
+
"vidstack": "^0.6.15",
|
|
169
|
+
"vite": "^8.2.1",
|
|
143
170
|
"vite-plugin-devtools-json": "^1.1.0",
|
|
144
|
-
"wrangler": "^4.
|
|
171
|
+
"wrangler": "^4.120.0"
|
|
145
172
|
},
|
|
146
173
|
"keywords": [
|
|
147
174
|
"svelte"
|
|
@@ -154,20 +181,77 @@
|
|
|
154
181
|
"url": "git+https://github.com/sig-nine/era-ui.git"
|
|
155
182
|
},
|
|
156
183
|
"dependencies": {
|
|
157
|
-
"@
|
|
158
|
-
"@lucide/svelte": "^0.577.0",
|
|
159
|
-
"@neodrag/svelte": "3.0.0-next.10",
|
|
184
|
+
"@lucide/svelte": "^1.30.0",
|
|
160
185
|
"bits-ui": "^2.18.1",
|
|
161
186
|
"clsx": "^2.1.1",
|
|
162
|
-
"dompurify": "^3.4.12",
|
|
163
|
-
"marked": "^15.0.12",
|
|
164
187
|
"tailwind-merge": "^3.6.0",
|
|
165
|
-
"tailwind-variants": "^3.3.
|
|
166
|
-
"vidstack": "^0.6.15"
|
|
188
|
+
"tailwind-variants": "^3.3.1"
|
|
167
189
|
},
|
|
168
190
|
"allowScripts": {
|
|
169
191
|
"@parcel/watcher@2.5.1": true,
|
|
170
192
|
"esbuild@0.28.1": true,
|
|
171
193
|
"workerd@1.20260722.1": true
|
|
194
|
+
},
|
|
195
|
+
"peerDependenciesMeta": {
|
|
196
|
+
"@neodrag/svelte": {
|
|
197
|
+
"optional": true
|
|
198
|
+
},
|
|
199
|
+
"@tiptap/core": {
|
|
200
|
+
"optional": true
|
|
201
|
+
},
|
|
202
|
+
"@tiptap/extension-code-block-lowlight": {
|
|
203
|
+
"optional": true
|
|
204
|
+
},
|
|
205
|
+
"@tiptap/extension-details": {
|
|
206
|
+
"optional": true
|
|
207
|
+
},
|
|
208
|
+
"@tiptap/extension-highlight": {
|
|
209
|
+
"optional": true
|
|
210
|
+
},
|
|
211
|
+
"@tiptap/extension-image": {
|
|
212
|
+
"optional": true
|
|
213
|
+
},
|
|
214
|
+
"@tiptap/extension-placeholder": {
|
|
215
|
+
"optional": true
|
|
216
|
+
},
|
|
217
|
+
"@tiptap/extension-table": {
|
|
218
|
+
"optional": true
|
|
219
|
+
},
|
|
220
|
+
"@tiptap/extension-task-item": {
|
|
221
|
+
"optional": true
|
|
222
|
+
},
|
|
223
|
+
"@tiptap/extension-task-list": {
|
|
224
|
+
"optional": true
|
|
225
|
+
},
|
|
226
|
+
"@tiptap/extension-typography": {
|
|
227
|
+
"optional": true
|
|
228
|
+
},
|
|
229
|
+
"@tiptap/extension-unique-id": {
|
|
230
|
+
"optional": true
|
|
231
|
+
},
|
|
232
|
+
"@tiptap/pm": {
|
|
233
|
+
"optional": true
|
|
234
|
+
},
|
|
235
|
+
"@tiptap/starter-kit": {
|
|
236
|
+
"optional": true
|
|
237
|
+
},
|
|
238
|
+
"@tiptap/suggestion": {
|
|
239
|
+
"optional": true
|
|
240
|
+
},
|
|
241
|
+
"dompurify": {
|
|
242
|
+
"optional": true
|
|
243
|
+
},
|
|
244
|
+
"lowlight": {
|
|
245
|
+
"optional": true
|
|
246
|
+
},
|
|
247
|
+
"marked": {
|
|
248
|
+
"optional": true
|
|
249
|
+
},
|
|
250
|
+
"tiptap-markdown": {
|
|
251
|
+
"optional": true
|
|
252
|
+
},
|
|
253
|
+
"vidstack": {
|
|
254
|
+
"optional": true
|
|
255
|
+
}
|
|
172
256
|
}
|
|
173
257
|
}
|