Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 18 additions & 5 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -388,8 +388,7 @@ export default defineConfig({
base: '/genui-sdk/guide/',
items: [
{ text: '快速开始', link: 'quick-start' },
{ text: '使用 Renderer 组件', link: 'start-with-renderer' },
{ text: '搭配 TinyRobot 使用', link: 'renderer-with-tiny-robot' }
{ text: '使用 Renderer 组件', link: 'start-with-renderer' }
]
},
{
Expand All @@ -408,7 +407,7 @@ export default defineConfig({
],
'/genui-sdk/components/': [
{
text: 'Vue组件文档',
text: 'Vue 组件文档',
base: '/genui-sdk/components/',
items: [
{ text: 'GenuiRenderer', link: 'renderer' },
Expand All @@ -417,7 +416,7 @@ export default defineConfig({
]
},
{
text: 'Angular组件文档',
text: 'Angular 组件文档',
base: '/genui-sdk/components/',
items: [{ text: 'GenuiRenderer', link: 'angular/renderer' }]
},
Expand All @@ -428,11 +427,25 @@ export default defineConfig({
{ text: 'API 参考', link: 'server/api' },
{ text: 'CLI', link: 'server/cli' }
]
},
{
text: 'Core 库文档',
base: '/genui-sdk/components/',
items: [{ text: 'API 文档', link: 'core/api' }]
},
{
text: '物料包文档',
base: '/genui-sdk/components/',
items: [
{ text: 'Vue OpenTiny Vue', link: 'materials/vue-opentiny-vue' },
{ text: 'Vue Element Plus', link: 'materials/vue-element-plus' },
{ text: 'Angular OpenTiny NG', link: 'materials/angular-opentiny-ng' }
]
}
Comment thread
gimmyhehe marked this conversation as resolved.
],
'/genui-sdk/examples/': [
{
text: 'Vue 组件特性示例',
text: 'Vue组件 特性示例',
collapsed: false,
items: [
{
Expand Down
2 changes: 1 addition & 1 deletion genui/genui-sdk
Submodule genui-sdk updated 588 files
3 changes: 2 additions & 1 deletion genui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"license": "MIT",
"dependencies": {
"@opentiny/genui-sdk-angular": "workspace:*",
"@opentiny/genui-sdk-vue": "1.1.1"
"@opentiny/genui-sdk-materials-vue-opentiny-vue": "1.3.0",
"@opentiny/genui-sdk-vue": "1.3.0"
},
"devDependencies": {
"vitepress": "^1.6.3",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"version": "0.1.0",
"scripts": {
"dev": "cross-env VP_MODE=development vitepress dev",
"prebuild": "pnpm -F @opentiny/genui-sdk-core build && pnpm -F @opentiny/genui-sdk-angular build:element && pnpm build:playground",
"prebuild:genui": "pnpm -F @opentiny/genui-sdk-core build && pnpm -F @opentiny/genui-sdk-materials-angular-opentiny-ng build && pnpm -F @opentiny/tiny-schema-renderer-ng build && pnpm -F @opentiny/genui-sdk-angular build:element",
"prebuild": "pnpm prebuild:genui && pnpm build:playground",
"build": "cross-env VP_MODE=production NODE_OPTIONS=\"--max-old-space-size=8192\" vitepress build",
"build:playground": "node scripts/build-playground.js",
"postbuild": "node scripts/copy-playground.js tiny-robot/packages/playground/dist dist/tiny-robot/playground",
Expand Down
1 change: 1 addition & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ packages:
- genui
- genui/genui-sdk/packages/frameworks/angular
- genui/genui-sdk/packages/core
- genui/genui-sdk/packages/materials/angular-opentiny-ng
- genui/genui-sdk/projects/tiny-schema-renderer-ng
Loading