├── .eslintignore ├── .eslintrc.cjs ├── .github └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_zh_CN.md ├── asset ├── action.png └── outline.png ├── icon.png ├── package.json ├── plugin.json ├── preview.png ├── scripts ├── .gitignore └── make_dev_link.js ├── src ├── api.ts ├── components │ ├── config │ │ ├── default-setting.svelte │ │ ├── global-setting.svelte │ │ └── saved-rules.svelte │ └── docs-flow │ │ ├── docs-flow-toolbar.svelte │ │ ├── docs-flow.svelte │ │ ├── docs-list.svelte │ │ └── protyle.svelte ├── display.ts ├── i18n │ ├── CHANGELOG.md │ ├── en_US.yaml │ └── zh_CN.yaml ├── index.scss ├── index.ts ├── libs │ ├── dialog.ts │ ├── promise-pool.ts │ ├── setting-item.svelte │ └── setting-panel.svelte ├── rules.ts ├── settings.ts ├── types │ ├── index.d.ts │ └── payload.d.ts └── utils.ts ├── svelte.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yaml-plugin.js /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/README.md -------------------------------------------------------------------------------- /README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/README_zh_CN.md -------------------------------------------------------------------------------- /asset/action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/asset/action.png -------------------------------------------------------------------------------- /asset/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/asset/outline.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/package.json -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/plugin.json -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/preview.png -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | build 3 | dist 4 | *.exe 5 | *.spec 6 | -------------------------------------------------------------------------------- /scripts/make_dev_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/scripts/make_dev_link.js -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/components/config/default-setting.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/components/config/default-setting.svelte -------------------------------------------------------------------------------- /src/components/config/global-setting.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/components/config/global-setting.svelte -------------------------------------------------------------------------------- /src/components/config/saved-rules.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/components/config/saved-rules.svelte -------------------------------------------------------------------------------- /src/components/docs-flow/docs-flow-toolbar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/components/docs-flow/docs-flow-toolbar.svelte -------------------------------------------------------------------------------- /src/components/docs-flow/docs-flow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/components/docs-flow/docs-flow.svelte -------------------------------------------------------------------------------- /src/components/docs-flow/docs-list.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/components/docs-flow/docs-list.svelte -------------------------------------------------------------------------------- /src/components/docs-flow/protyle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/components/docs-flow/protyle.svelte -------------------------------------------------------------------------------- /src/display.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/display.ts -------------------------------------------------------------------------------- /src/i18n/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/i18n/CHANGELOG.md -------------------------------------------------------------------------------- /src/i18n/en_US.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/i18n/en_US.yaml -------------------------------------------------------------------------------- /src/i18n/zh_CN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/i18n/zh_CN.yaml -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/libs/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/libs/dialog.ts -------------------------------------------------------------------------------- /src/libs/promise-pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/libs/promise-pool.ts -------------------------------------------------------------------------------- /src/libs/setting-item.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/libs/setting-item.svelte -------------------------------------------------------------------------------- /src/libs/setting-panel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/libs/setting-panel.svelte -------------------------------------------------------------------------------- /src/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/rules.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /src/types/payload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/types/payload.d.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/src/utils.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yaml-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostime/sy-docs-flow/HEAD/yaml-plugin.js --------------------------------------------------------------------------------