├── .github └── workflows │ └── docs.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .stylelintignore ├── LICENSE ├── README.md ├── docs ├── .vuepress │ ├── components │ │ ├── demo-block-color.vue │ │ ├── demo-block-dark.vue │ │ ├── demo-block-dust.vue │ │ ├── demo-block.vue │ │ └── demo │ │ │ ├── button-card.vue │ │ │ ├── button-group-action.vue │ │ │ ├── button-group.vue │ │ │ ├── button-group │ │ │ └── with-small.vue │ │ │ ├── counter.vue │ │ │ ├── divider.vue │ │ │ ├── input-number.vue │ │ │ ├── level.vue │ │ │ ├── pagination.vue │ │ │ ├── panel.vue │ │ │ └── san.vue │ ├── config.js │ ├── public │ │ ├── CNAME │ │ ├── ak.png │ │ ├── ak.svg │ │ ├── img │ │ │ ├── bg │ │ │ │ ├── chen.jpg │ │ │ │ ├── dark.jpg │ │ │ │ └── dust.jpg │ │ │ ├── bk.jpg │ │ │ ├── character │ │ │ │ └── chen.jpg │ │ │ ├── game │ │ │ │ ├── advanced-combat-record.webp │ │ │ │ ├── basic-combat-record.webp │ │ │ │ ├── foreign-iron-fragments.webp │ │ │ │ ├── intermediate-combat-record.webp │ │ │ │ └── primary-combat-record.webp │ │ │ └── mrfz-logo.png │ │ └── manifest.json │ └── styles │ │ ├── index.styl │ │ └── palette.styl ├── README.md ├── components │ ├── README.md │ ├── ak-button-group.md │ ├── ak-button.md │ ├── ak-card.md │ ├── ak-counter.md │ ├── ak-divider.md │ ├── ak-form.md │ ├── ak-fx.md │ ├── ak-helper.md │ ├── ak-icon.md │ ├── ak-level.md │ ├── ak-loading.md │ ├── ak-media.md │ ├── ak-object.md │ ├── ak-pagination.md │ ├── ak-panel.md │ └── ak-san.md └── guide │ ├── README.md │ └── style.md ├── gulpfile.js ├── package.json ├── pnpm-lock.yaml ├── src └── scss │ ├── _ak-button-group.scss │ ├── _ak-button.scss │ ├── _ak-card.scss │ ├── _ak-counter.scss │ ├── _ak-divider.scss │ ├── _ak-form.scss │ ├── _ak-fx.scss │ ├── _ak-icon.scss │ ├── _ak-level.scss │ ├── _ak-loading.scss │ ├── _ak-media.scss │ ├── _ak-object.scss │ ├── _ak-pagination.scss │ ├── _ak-panel.scss │ ├── _ak-san.scss │ ├── _ak-typography.scss │ ├── _helpers.scss │ ├── _mixins.scss │ ├── _variables.scss │ └── ak-ui.scss └── stylelint.config.js /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | docs/ 3 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/README.md -------------------------------------------------------------------------------- /docs/.vuepress/components/demo-block-color.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo-block-color.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo-block-dark.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo-block-dark.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo-block-dust.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo-block-dust.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo-block.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo-block.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo/button-card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo/button-card.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo/button-group-action.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo/button-group-action.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo/button-group.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo/button-group.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo/button-group/with-small.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo/button-group/with-small.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo/counter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo/counter.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo/divider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo/divider.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo/input-number.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo/input-number.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo/level.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo/level.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo/pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo/pagination.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo/panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo/panel.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/demo/san.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/components/demo/san.vue -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/public/CNAME: -------------------------------------------------------------------------------- 1 | ak-ui.yunyoujun.cn -------------------------------------------------------------------------------- /docs/.vuepress/public/ak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/public/ak.png -------------------------------------------------------------------------------- /docs/.vuepress/public/ak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/public/ak.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/bg/chen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/public/img/bg/chen.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/bg/dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/public/img/bg/dark.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/bg/dust.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/public/img/bg/dust.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/bk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/public/img/bk.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/character/chen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/public/img/character/chen.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/game/advanced-combat-record.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/public/img/game/advanced-combat-record.webp -------------------------------------------------------------------------------- /docs/.vuepress/public/img/game/basic-combat-record.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/public/img/game/basic-combat-record.webp -------------------------------------------------------------------------------- /docs/.vuepress/public/img/game/foreign-iron-fragments.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/public/img/game/foreign-iron-fragments.webp -------------------------------------------------------------------------------- /docs/.vuepress/public/img/game/intermediate-combat-record.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/public/img/game/intermediate-combat-record.webp -------------------------------------------------------------------------------- /docs/.vuepress/public/img/game/primary-combat-record.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/public/img/game/primary-combat-record.webp -------------------------------------------------------------------------------- /docs/.vuepress/public/img/mrfz-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/public/img/mrfz-logo.png -------------------------------------------------------------------------------- /docs/.vuepress/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/public/manifest.json -------------------------------------------------------------------------------- /docs/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /docs/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/README.md -------------------------------------------------------------------------------- /docs/components/ak-button-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-button-group.md -------------------------------------------------------------------------------- /docs/components/ak-button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-button.md -------------------------------------------------------------------------------- /docs/components/ak-card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-card.md -------------------------------------------------------------------------------- /docs/components/ak-counter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-counter.md -------------------------------------------------------------------------------- /docs/components/ak-divider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-divider.md -------------------------------------------------------------------------------- /docs/components/ak-form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-form.md -------------------------------------------------------------------------------- /docs/components/ak-fx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-fx.md -------------------------------------------------------------------------------- /docs/components/ak-helper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-helper.md -------------------------------------------------------------------------------- /docs/components/ak-icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-icon.md -------------------------------------------------------------------------------- /docs/components/ak-level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-level.md -------------------------------------------------------------------------------- /docs/components/ak-loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-loading.md -------------------------------------------------------------------------------- /docs/components/ak-media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-media.md -------------------------------------------------------------------------------- /docs/components/ak-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-object.md -------------------------------------------------------------------------------- /docs/components/ak-pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-pagination.md -------------------------------------------------------------------------------- /docs/components/ak-panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-panel.md -------------------------------------------------------------------------------- /docs/components/ak-san.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/components/ak-san.md -------------------------------------------------------------------------------- /docs/guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/guide/README.md -------------------------------------------------------------------------------- /docs/guide/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/docs/guide/style.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/scss/_ak-button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-button-group.scss -------------------------------------------------------------------------------- /src/scss/_ak-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-button.scss -------------------------------------------------------------------------------- /src/scss/_ak-card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-card.scss -------------------------------------------------------------------------------- /src/scss/_ak-counter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-counter.scss -------------------------------------------------------------------------------- /src/scss/_ak-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-divider.scss -------------------------------------------------------------------------------- /src/scss/_ak-form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-form.scss -------------------------------------------------------------------------------- /src/scss/_ak-fx.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-fx.scss -------------------------------------------------------------------------------- /src/scss/_ak-icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-icon.scss -------------------------------------------------------------------------------- /src/scss/_ak-level.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-level.scss -------------------------------------------------------------------------------- /src/scss/_ak-loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-loading.scss -------------------------------------------------------------------------------- /src/scss/_ak-media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-media.scss -------------------------------------------------------------------------------- /src/scss/_ak-object.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-object.scss -------------------------------------------------------------------------------- /src/scss/_ak-pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-pagination.scss -------------------------------------------------------------------------------- /src/scss/_ak-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-panel.scss -------------------------------------------------------------------------------- /src/scss/_ak-san.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-san.scss -------------------------------------------------------------------------------- /src/scss/_ak-typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_ak-typography.scss -------------------------------------------------------------------------------- /src/scss/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_helpers.scss -------------------------------------------------------------------------------- /src/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_mixins.scss -------------------------------------------------------------------------------- /src/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/_variables.scss -------------------------------------------------------------------------------- /src/scss/ak-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/src/scss/ak-ui.scss -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunYouJun/ak-ui/HEAD/stylelint.config.js --------------------------------------------------------------------------------