Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
49b6be0
docs: Create comprehensive component audit and development plan
google-labs-jules[bot] Oct 8, 2025
ea229a7
Updated Rust edition to 2024
constructableconcepts Oct 8, 2025
f068b24
Refine testing guidelines in development documentation
google-labs-jules[bot] Oct 8, 2025
724cf06
Refine testing guidelines in development documentation
google-labs-jules[bot] Oct 8, 2025
eae155b
feat: Complete Phase 1 of the development plan
google-labs-jules[bot] Oct 8, 2025
5251913
feat: Complete Phase 1 of the development plan
google-labs-jules[bot] Oct 9, 2025
e7c0c90
feat: Complete Phase 2 and document issues
google-labs-jules[bot] Oct 9, 2025
70a8acf
feat: Complete Phase 2 API Parity and Component Rewrites
google-labs-jules[bot] Oct 9, 2025
09a7094
feat: Complete Phase 3 of the development plan
google-labs-jules[bot] Oct 9, 2025
f6b6fd1
feat: Complete development Phases 1, 2, and 3
google-labs-jules[bot] Oct 9, 2025
bea2aee
feat: Complete development Phases 1, 2, and 3
google-labs-jules[bot] Oct 9, 2025
7dfdae3
feat: Complete development Phases 1, 2, and 3 and add fixup prompt
google-labs-jules[bot] Oct 9, 2025
2fc6575
Fix matdemo runtime panic and component rendering issues
google-labs-jules[bot] Oct 10, 2025
5e976ca
Fix matdemo runtime panic and component rendering issues
google-labs-jules[bot] Oct 10, 2025
1a64662
feat: Fix matdemo panic and conduct component audit B
google-labs-jules[bot] Oct 10, 2025
d6ee58c
feat: Refactor component props and complete Audit B
google-labs-jules[bot] Oct 10, 2025
70a878f
Update audit_b_checklist.md
constructableconcepts Oct 10, 2025
4afc86f
Update p_fixup.md
constructableconcepts Oct 10, 2025
d0a4e36
Update docs/p_fixup.md to reflect the current development state.
google-labs-jules[bot] Oct 10, 2025
022ede4
docs: Create handoff and open issues for p_fixup
google-labs-jules[bot] Oct 10, 2025
72c8c4b
Refactor: Remove `use_effect` for attribute setting
google-labs-jules[bot] Oct 10, 2025
8d59e9b
Docs: Update project status to stable
google-labs-jules[bot] Oct 10, 2025
05b6ad4
Feat: Implement form validation pattern for Checkbox
google-labs-jules[bot] Oct 11, 2025
2d0df95
Feat: Implement form validation pattern for all applicable components
google-labs-jules[bot] Oct 11, 2025
b519550
Docs: Mark task B-3 as complete in audit checklist
google-labs-jules[bot] Oct 11, 2025
88b456d
Feat(Button): Refactor icon handling to use a dedicated prop
google-labs-jules[bot] Oct 11, 2025
99262ec
feat(chip): Implement variant-specific props and icon support
google-labs-jules[bot] Oct 11, 2025
2573ae7
feat(chip): Refactor Chip component to be variant-specific
google-labs-jules[bot] Oct 11, 2025
53183e2
docs(audit): Mark tasks B-8, B-9, and B-10 as complete
google-labs-jules[bot] Oct 11, 2025
07fd84b
docs(audit): Mark tasks B-11 through B-15 as complete
google-labs-jules[bot] Oct 11, 2025
a280865
feat(divider, fab): Implement Divider inset and Fab disabled props
google-labs-jules[bot] Oct 11, 2025
7e4a110
docs(audit): Mark tasks B-16, B-17, and B-18 as complete
google-labs-jules[bot] Oct 11, 2025
d238fa7
fix(modal): Correct modal demo script and dialog z-index
google-labs-jules[bot] Oct 12, 2025
0aa1036
WIP: Attempt to fix modal visual bugs
google-labs-jules[bot] Oct 12, 2025
6940340
docs: Add handoff notes for unresolved modal bug
google-labs-jules[bot] Oct 12, 2025
bfc6109
docs: Completed comprehensive documentation pass
google-labs-jules[bot] Oct 12, 2025
9a67b87
fix: Correct modal dialog visual bug
google-labs-jules[bot] Oct 12, 2025
27f4ffe
fix: Correct modal dialog visual bug and update screenshot paths
google-labs-jules[bot] Oct 13, 2025
a863dda
Update playwright.yml
constructableconcepts Oct 15, 2025
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
28 changes: 1 addition & 27 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1 @@
name: Playwright Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30

Loading