@chances-ai/ui-core 24.1.0 → 24.3.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/editor/buffer.d.ts +57 -0
- package/dist/editor/buffer.d.ts.map +1 -0
- package/dist/editor/buffer.js +189 -0
- package/dist/editor/buffer.js.map +1 -0
- package/dist/editor/completion.d.ts +25 -0
- package/dist/editor/completion.d.ts.map +1 -0
- package/dist/editor/completion.js +27 -0
- package/dist/editor/completion.js.map +1 -0
- package/dist/editor/component.d.ts +58 -0
- package/dist/editor/component.d.ts.map +1 -0
- package/dist/editor/component.js +125 -0
- package/dist/editor/component.js.map +1 -0
- package/dist/editor/index.d.ts +15 -0
- package/dist/editor/index.d.ts.map +1 -0
- package/dist/editor/index.js +15 -0
- package/dist/editor/index.js.map +1 -0
- package/dist/editor/input-mode.d.ts +26 -0
- package/dist/editor/input-mode.d.ts.map +1 -0
- package/dist/editor/input-mode.js +17 -0
- package/dist/editor/input-mode.js.map +1 -0
- package/dist/editor/kill-ring.d.ts +36 -0
- package/dist/editor/kill-ring.d.ts.map +1 -0
- package/dist/editor/kill-ring.js +58 -0
- package/dist/editor/kill-ring.js.map +1 -0
- package/dist/editor/layout.d.ts +60 -0
- package/dist/editor/layout.d.ts.map +1 -0
- package/dist/editor/layout.js +113 -0
- package/dist/editor/layout.js.map +1 -0
- package/dist/editor/reducer.d.ts +93 -0
- package/dist/editor/reducer.d.ts.map +1 -0
- package/dist/editor/reducer.js +196 -0
- package/dist/editor/reducer.js.map +1 -0
- package/dist/editor/segments.d.ts +46 -0
- package/dist/editor/segments.d.ts.map +1 -0
- package/dist/editor/segments.js +104 -0
- package/dist/editor/segments.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/theme/builtins.d.ts.map +1 -1
- package/dist/theme/builtins.js +4 -2
- package/dist/theme/builtins.js.map +1 -1
- package/dist/theme/color.d.ts +11 -1
- package/dist/theme/color.d.ts.map +1 -1
- package/dist/theme/color.js +13 -3
- package/dist/theme/color.js.map +1 -1
- package/dist/theme/resolve.d.ts +1 -1
- package/dist/theme/resolve.d.ts.map +1 -1
- package/dist/theme/resolve.js +10 -1
- package/dist/theme/resolve.js.map +1 -1
- package/dist/theme/tokens.d.ts +3 -2
- package/dist/theme/tokens.d.ts.map +1 -1
- package/dist/theme/tokens.js +6 -1
- package/dist/theme/tokens.js.map +1 -1
- package/dist/view-model.d.ts +4 -0
- package/dist/view-model.d.ts.map +1 -1
- package/dist/view-model.js +10 -0
- package/dist/view-model.js.map +1 -1
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chances-ai/ui-core",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -14,11 +14,12 @@
|
|
|
14
14
|
"dist"
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@chances-ai/engine": "24.
|
|
18
|
-
"@chances-ai/runtime": "24.
|
|
17
|
+
"@chances-ai/engine": "24.3.0",
|
|
18
|
+
"@chances-ai/runtime": "24.3.0",
|
|
19
19
|
"diff": "^9.0.0",
|
|
20
20
|
"highlight.js": "^11.11.1",
|
|
21
|
-
"marked": "^18.0.0"
|
|
21
|
+
"marked": "^18.0.0",
|
|
22
|
+
"string-width": "^8.2.1"
|
|
22
23
|
},
|
|
23
24
|
"scripts": {
|
|
24
25
|
"build": "tsc -b",
|