Skip to content

Commit

Permalink
feat: multi-theme experiments (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpntex authored Jan 31, 2024
1 parent 1af084d commit e0f6980
Show file tree
Hide file tree
Showing 276 changed files with 2,498 additions and 1,199 deletions.
13 changes: 13 additions & 0 deletions .changeset/few-foxes-cough.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
"@indielayer/ui": minor
---

fix(tab): update value
chore: merge documentation inside ui
feat(tab): add carbon block
feat(form): add title and description
fix(tab): dark mode
feat: add stepper component
feat(modal): add composed view
feat: add formgroup component
feat(checkbox): add indeterminate state
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ Thumbs.db
lib
packages/ui/lib
packages/create-ui/outfile.cjs
packages/docs/dist
packages/create-ui/templates
2 changes: 1 addition & 1 deletion .github/workflows/release_canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.P_GITHUB_TOKEN }}

- name: Build
run: pnpm run build:ui
run: pnpm run build
if: steps.checkStatus.outcome == 'success'

- name: Publish canary
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
- name: Build documentation
run: |
pnpm run build:docs
cp ./packages/docs/dist/index.html ./packages/docs/dist/404.html
cp ./packages/ui/dist/index.html ./packages/ui/dist/404.html
- name: Update pages
working-directory: ./packages/docs/dist
working-directory: ./packages/ui/dist
run: |
git config --global init.defaultBranch master
git init
Expand Down
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"request": "launch",
"name": "Debug Docs",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "npm: dev - packages/docs",
"preLaunchTask": "npm: dev - packages/ui",
"postDebugTask": "stop server",
"url": "http://localhost:3001",
}
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"pnpm-lock.yaml": true
},
"editor.codeActionsOnSave": {
"source.fixAll": true
"source.fixAll": "explicit"
},
"stylelint.validate": [
"css",
Expand Down
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
{
"type": "npm",
"script": "dev",
"path": "packages/docs",
"path": "packages/ui",
"isBackground": true,
"problemMatcher": [],
"label": "npm: dev - packages/docs",
"label": "npm: dev - packages/ui",
"detail": "vite"
},
{
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 - Indielayer
Copyright (c) 2024 - Indielayer

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
"scripts": {
"prepare": "is-ci || simple-git-hooks",
"dev": "cd packages/ui && pnpm dev",
"docs": "cd packages/docs && pnpm dev",
"build": "cd packages/ui && pnpm build:prod",
"build:docs": "pnpm build && cd packages/docs && pnpm build",
"build:docs": "cd packages/ui && pnpm build:prod && pnpm build:docs",
"lint": "eslint --ext .js,.ts,.vue .",
"lint:ui": "eslint --ext .js,.ts,.vue ./packages/ui",
"lint:style": "cd packages/ui && pnpm run stylelint",
Expand Down
12 changes: 0 additions & 12 deletions packages/docs/.eslintrc.cjs

This file was deleted.

28 changes: 0 additions & 28 deletions packages/docs/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions packages/docs/.stylelintrc.js

This file was deleted.

7 changes: 0 additions & 7 deletions packages/docs/README.md

This file was deleted.

1 change: 0 additions & 1 deletion packages/docs/env.d.ts

This file was deleted.

34 changes: 0 additions & 34 deletions packages/docs/package.json

This file was deleted.

8 changes: 0 additions & 8 deletions packages/docs/postcss.config.js

This file was deleted.

84 changes: 0 additions & 84 deletions packages/docs/src/components/common/CodeSnippet.vue

This file was deleted.

10 changes: 0 additions & 10 deletions packages/docs/src/pages/component/collapse/expanded.vue

This file was deleted.

36 changes: 0 additions & 36 deletions packages/docs/src/pages/component/collapse/index.vue

This file was deleted.

8 changes: 0 additions & 8 deletions packages/docs/src/pages/component/collapse/usage.vue

This file was deleted.

Loading

0 comments on commit e0f6980

Please sign in to comment.