Skip to content

Commit

Permalink
chore(dep): updates
Browse files Browse the repository at this point in the history
  • Loading branch information
morlay committed Aug 10, 2024
1 parent ffd5bdf commit 76acd27
Show file tree
Hide file tree
Showing 16 changed files with 79 additions and 64 deletions.
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions nodedevpkg/vue-vite-presets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
"@innoai-tech/vuecomponentcompleter": "^0.1.2",
"@mapbox/rehype-prism": "^0.9.0",
"@mdx-js/rollup": "^3.0.1",
"@swc/core": "^1.7.4",
"@swc/core": "^1.7.6",
"@vitejs/plugin-vue": "^5.1.2",
"hastscript": "^9.0.0",
"unist-util-visit": "^5.0.0",
"vite": "^5.3.5",
"vite": "^5.4.0",
"vite-plugin-pages": "^0.32.3",
"vite-tsconfig-paths": "^4.3.2"
},
Expand Down
4 changes: 2 additions & 2 deletions nodepkg/codemirror/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
}
},
"dependencies": {
"@codemirror/autocomplete": "^6.17.0",
"@codemirror/autocomplete": "^6.18.0",
"@codemirror/commands": "^6.6.0",
"@codemirror/language": "^6.10.2",
"@codemirror/lint": "^6.8.1",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.29.1",
"@codemirror/view": "^6.30.0",
"@innoai-tech/vuekit": "workspace:^",
"@innoai-tech/vueuikit": "workspace:^",
"@lezer/highlight": "^1.2.0"
Expand Down
2 changes: 1 addition & 1 deletion nodepkg/csstype/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
"sideEffects": false,
"type": "module",
"types": "index.d.ts"
}
}
2 changes: 1 addition & 1 deletion nodepkg/jsoneditor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@innoai-tech/jsoneditor",
"version": "0.1.4",
"version": "0.1.7",
"monobundle": {
"build": {
"clean": true
Expand Down
8 changes: 5 additions & 3 deletions nodepkg/jsoneditor/src/views/BooleanInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
type AnyType,
component$,
type Context,
rx,
rx
} from "@innoai-tech/vuekit";
import { JSONEditorProvider } from "../models";
import { set } from "@innoai-tech/lodash";
Expand Down Expand Up @@ -40,9 +40,11 @@ export const BooleanInput = component$<{
</>
}
>
<ValueView value={value} onClick={() => open$.show()} />
<div>
<ValueView value={value} onClick={() => open$.show()} />
</div>
</Menu>
);
}),
})
);
});
11 changes: 8 additions & 3 deletions nodepkg/jsoneditor/src/views/EnumInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
type AnyType,
component$,
type Context,
rx,
rx
} from "@innoai-tech/vuekit";
import { JSONEditorProvider } from "../models";
import { set } from "@innoai-tech/lodash";
Expand Down Expand Up @@ -42,9 +42,14 @@ export const EnumInput = component$<{
</>
}
>
<ValueView value={value} onClick={() => open$.show()} />
<div>
<ValueView
value={value}
onClick={() => open$.show()}
/>
</div>
</Menu>
);
}),
})
);
});
14 changes: 7 additions & 7 deletions nodepkg/jsoneditor/src/views/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ export const FormControls = styled("form")({
pos: "absolute",
right: 0,
bottom: 0,
px: 8,
px: 8
});

export const FormContainer = styled("div")({
display: "block",
pos: "relative",

textarea: {
minW: "20vw",
minW: 400,
outline: "none",
border: "none",
bg: "none",
py: 8,
px: 12,
},
px: 12
}
});

export const FormContainerAsRow = styled("div")({
Expand All @@ -35,11 +35,11 @@ export const FormContainerAsRow = styled("div")({
bg: "none",
minWidth: "10vw",
py: 8,
px: 12,
px: 12
},

[`& ${FormControls}`]: {
pos: "relative",
px: 0,
},
px: 0
}
});
26 changes: 15 additions & 11 deletions nodepkg/jsoneditor/src/views/NumberInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
component$,
type Context,
ImmerBehaviorSubject,
rx,
rx
} from "@innoai-tech/vuekit";
import { ValueView } from "./TokenView.tsx";
import { Popover, PopupStatus } from "./Menu.tsx";
Expand Down Expand Up @@ -40,15 +40,17 @@ export const NumberInput = component$<{
/>
}
>
<ValueView
value={value}
onClick={() => {
open$.show();
}}
/>
<div>
<ValueView
value={value}
onClick={() => {
open$.show();
}}
/>
</div>
</Popover>
);
}),
})
);
});

Expand All @@ -66,7 +68,8 @@ const NumberForm = component$<{
const submit = () => {
try {
emit("submit", input$.value);
} catch (e) {}
} catch (e) {
}
};

const handleUserKeyPress = (e: KeyboardEvent) => {
Expand Down Expand Up @@ -98,7 +101,8 @@ const NumberForm = component$<{
onInput={(evt) => {
try {
input$.next(parseFloat((evt.target as HTMLInputElement).value));
} catch (evt) {}
} catch (evt) {
}
}}
onKeypress={handleUserKeyPress}
/>
Expand All @@ -117,6 +121,6 @@ const NumberForm = component$<{
</FormControls>
</FormContainerAsRow>
);
}),
})
);
});
24 changes: 14 additions & 10 deletions nodepkg/jsoneditor/src/views/StringInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
component$,
type Context,
ImmerBehaviorSubject,
rx,
rx
} from "@innoai-tech/vuekit";
import { ValueView } from "./TokenView.tsx";
import { Popover, PopupStatus } from "./Menu.tsx";
Expand Down Expand Up @@ -40,15 +40,17 @@ export const StringInput = component$<{
/>
}
>
<ValueView
value={value}
onClick={() => {
open$.show();
}}
/>
<div>
<ValueView
value={value}
onClick={() => {
open$.show();
}}
/>
</div>
</Popover>
);
}),
})
);
});

Expand Down Expand Up @@ -94,7 +96,9 @@ const TextareaForm = component$<{
<FormControls>
<IconButton
type="button"
onClick={() => {
onClick={(e) => {
e.preventDefault();

emit("submit", props.value);
}}
>
Expand All @@ -106,6 +110,6 @@ const TextareaForm = component$<{
</FormControls>
</FormContainer>
);
}),
})
);
});
4 changes: 2 additions & 2 deletions nodepkg/vue-jsx-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@innoai-tech/vue-jsx-runtime",
"version": "0.3.4",
"version": "0.3.5",
"monobundle": {
"exports": {
"./jsx-runtime": "./src/jsx-runtime.ts",
"./jsx-dev-runtime": "./src/jsx-dev-runtime.ts"
}
},
"dependencies": {
"vue": "v3.4.23"
"vue": "^3.4.36"
},
"peerDependencies": {},
"exports": {
Expand Down
6 changes: 3 additions & 3 deletions nodepkg/vuekit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@innoai-tech/vuekit",
"version": "0.8.3",
"version": "0.8.4",
"monobundle": {
"exports": {
".": "./src/index.ts",
Expand All @@ -14,8 +14,8 @@
"@innoai-tech/vue-jsx-runtime": "workspace:^",
"immer": "^10.1.1",
"rxjs": "^7.8.1",
"vue": "^3.4.35",
"vue-router": "^4.4.2"
"vue": "^3.4.36",
"vue-router": "^4.4.3"
},
"peerDependencies": {},
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion nodepkg/vuemarkdown/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@innoai-tech/vuemarkdown",
"version": "0.4.0",
"version": "0.4.1",
"monobundle": {
"build": {
"clean": true
Expand Down
4 changes: 2 additions & 2 deletions nodepkg/vuematerial/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@innoai-tech/vuematerial",
"version": "0.3.4",
"version": "0.3.6",
"monobundle": {
"exports": {
".": "./src/index.ts"
Expand All @@ -11,7 +11,7 @@
"@innoai-tech/vuekit": "workspace:^",
"@innoai-tech/vueuikit": "workspace:^",
"@mdi/js": "^7.4.47",
"vue": "v3.4.23"
"vue": "^3.4.36"
},
"peerDependencies": {},
"exports": {
Expand Down
4 changes: 2 additions & 2 deletions nodepkg/vueuikit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@innoai-tech/vueuikit",
"version": "0.13.3",
"version": "0.13.4",
"monobundle": {
"exports": {
".": "./src/index.ts"
Expand All @@ -16,7 +16,7 @@
"@popperjs/core": "^2.11.8",
"polished": "^4.3.1",
"popmotion": "^11.0.5",
"vue": "^3.4.35"
"vue": "^3.4.36"
},
"peerDependencies": {},
"exports": {
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"type": "module",
"private": true,
"packageManager": "[email protected].21",
"packageManager": "[email protected].22",
"workspaces": [
"nodepkg/*",
"nodedevpkg/*"
Expand All @@ -21,38 +21,38 @@
},
"prettier": {},
"dependencies": {
"@lezer/lr": "^1.4.2",
"@innoai-tech/codemirror": "workspace:*",
"@innoai-tech/vuekit": "workspace:*",
"@innoai-tech/jsoncue": "workspace:*",
"@innoai-tech/fetcher": "^0.5.5",
"@innoai-tech/jsoncue": "workspace:*",
"@innoai-tech/lodash": "^0.2.5",
"rxjs": "^7.8.1",
"@innoai-tech/vueuikit": "workspace:*"
"@innoai-tech/vuekit": "workspace:*",
"@innoai-tech/vueuikit": "workspace:*",
"@lezer/lr": "^1.4.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@happy-dom/global-registrator": "^14.12.3",
"@innoai-tech/config": "^0.5.5",
"@innoai-tech/devconfig": "^0.5.0",
"@innoai-tech/monobundle": "^0.14.1",
"@innoai-tech/monobundle": "^0.14.2",
"@innoai-tech/vue-vite-presets": "workspace:*",
"@innoai-tech/vuedevconfig": "workspace:*",
"@mdi/js": "^7.4.47",
"@vue/test-utils": "^2.4.6",
"bun-types": "latest",
"copy-to-clipboard": "^3.3.3",
"core-js": "^3.37.1",
"core-js": "^3.38.0",
"normalize.css": "^8.0.1",
"prettier": "^3.3.3",
"turbo": "^2.0.11",
"turbo": "^2.0.12",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vue": "^3.4.35"
"vite": "^5.4.0",
"vue": "^3.4.36"
},
"resolutions": {
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.29.1",
"vite": "5.3.5",
"vue": "3.4.35"
"@codemirror/view": "^6.30.0",
"vite": "5.4.0",
"vue": "3.4.36"
}
}

0 comments on commit 76acd27

Please sign in to comment.