Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
8ef68a9
feat: start form design
Maubry94 Apr 2, 2026
4cc8318
feat: add style to step form
Maubry94 Apr 7, 2026
d40bf33
fix: rename style vars
Maubry94 Apr 7, 2026
b72a111
feat: add label to for all inputs
Maubry94 Apr 7, 2026
489a4db
feat: add customable labels to step buttons
Maubry94 Apr 7, 2026
c7124c5
feat: add DS components
Maubry94 Apr 7, 2026
5847794
fix: fix tu
Maubry94 Apr 7, 2026
43dc80f
fix: step buttons props
Maubry94 Apr 7, 2026
93fe8e0
fix: ds compnents
Maubry94 Apr 7, 2026
ca745cf
feat: update demo
Maubry94 Apr 7, 2026
b627e44
feat: add radio and range components
Maubry94 Apr 9, 2026
b737df6
feat: add radio group component
Maubry94 Apr 9, 2026
5f1b987
feat: update demo
Maubry94 Apr 9, 2026
5b03cea
fix: checkbox policies component
Maubry94 Apr 9, 2026
6336908
fix: repeat buttons props
Maubry94 Apr 9, 2026
c516aa3
feat: add new components + add section layout
Maubry94 Apr 9, 2026
f1a5fb4
fix: reset cache union layout
mathcovax Apr 11, 2026
6657c7d
fix: update utils
mathcovax Apr 11, 2026
3d4040b
fix(hf): update utils
mathcovax Apr 14, 2026
baaffbb
fix(hf): all
mathcovax Apr 14, 2026
ccbdae7
fix(hf): layout section test
mathcovax Apr 15, 2026
7630e23
feat(hf): icon and button
ZeRiix Apr 15, 2026
5c66f0f
feat(hf): checkbox
ZeRiix Apr 16, 2026
446512b
fix(hf): button props
ZeRiix Apr 16, 2026
64b82a1
feat(hf): range and add dualRange
ZeRiix Apr 16, 2026
19c596e
feat(hf): rework designSystem
ZeRiix Apr 17, 2026
71d4be2
fix(hf): fix grid TU
ZeRiix Apr 20, 2026
8f1d4c1
fix(hf): grid error
ZeRiix Apr 20, 2026
03ea5df
fix(hf): colors
ZeRiix Apr 20, 2026
cea3b52
feat(hf): design system TU
ZeRiix Apr 21, 2026
f0d0c9a
feat: init integration
mathcovax Apr 22, 2026
292b9c9
feat: remove template component from grid template
mathcovax Apr 22, 2026
4d709bf
feat: remove codex file
mathcovax Apr 22, 2026
5ef0903
feat: add data parser on input layout
mathcovax Apr 24, 2026
615ebc5
fix: step layout
mathcovax Apr 24, 2026
ead27e8
fix: unit test
mathcovax Apr 25, 2026
49a3770
fix: lot of fix form
mathcovax Apr 26, 2026
67bfea3
fix: update tu
mathcovax Apr 26, 2026
eccc055
fix: package.json
mathcovax Apr 26, 2026
4224f3b
feat: integration test
mathcovax Apr 27, 2026
73963b7
feat: add slot layout
mathcovax Apr 30, 2026
db30657
feat: init home page documentation
mathcovax Apr 30, 2026
734904e
feat: add fr docs
mathcovax May 1, 2026
ae77019
feat: add en docs
mathcovax May 1, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .commands/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
set -e

# vue
vite build --config scripts/vue/vite.config.js
vite build --config scripts/vue/vite.config.js
vue-tsc -p scripts/vue/tsconfig.build.json
tsc-alias -p scripts/vue/tsconfig.build.json
2 changes: 1 addition & 1 deletion .commands/test-lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ set -e
ARGUMENTS="$@"

# scripts
eslint --quiet $ARGUMENTS scripts/
eslint --quiet $ARGUMENTS
2 changes: 2 additions & 0 deletions .commands/test-types.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ set -e
# vue
vue-tsc -p tests/vue/tsconfig.json

npm -w integration/vue run test:types

npm -w docs run test:types
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '24.x'
node-version: '22.15.1'
registry-url: 'https://registry.npmjs.org/'
- run: npm install -g npm@latest
- run: npm ci
Expand Down
32 changes: 31 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,34 @@ jobs:
with:
node-version: '24.x'
- run: npm ci
- run: npm run test:lint
- run: npm run test:lint

integration:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: dist
path: ./dist
- uses: actions/setup-node@v4
with:
node-version: '24.x'
- run: npm ci
- run: npx playwright install --with-deps
- run: npm run test:integration
env:
CI: true
RETRIES: 0
WORKERS: 1
- if: always()
uses: actions/upload-artifact@v4
with:
name: test-results
path: integration/test-results
- if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: integration/playwright-report
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
node_modules
dist
coverage
cache
cache
playwright-report
test-results
3 changes: 2 additions & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
npm run build
npm run test:types
npm run test:lint
npm run test:tu
npm run test:tu
npm run test:integration
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@
"js/ts.format.enabled": false,
"html.format.enable": false,
"json.format.enable": false,
"vue.codeActions.askNewComponentName": false,
}
Loading
Loading