Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tokens - states&components #1722

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
64b6fd4
Feat(design-tokens): Introduce new token structure
crishpeen Oct 22, 2024
2eb4e6b
Feat(demo): Update demo CSS variables
crishpeen Oct 22, 2024
a103ed3
Feat(web-react): Rename spaces token object
crishpeen Oct 31, 2024
5d8535f
Feat(web): SCSS tests
crishpeen Oct 22, 2024
c4fe324
Feat(web): Link states
crishpeen Oct 22, 2024
5bdeec8
Feat(web): Button states
crishpeen Oct 22, 2024
9fd6be8
Feat(web): Checkbox states
crishpeen Oct 22, 2024
7666a3c
Feat(web): Radio states
crishpeen Oct 22, 2024
aaa32f6
Feat(web): Textfield states
crishpeen Oct 22, 2024
09bf501
Feat(web): Toggle states
crishpeen Oct 22, 2024
4db86aa
Feat(web): Slider states
crishpeen Oct 22, 2024
dedb0ff
Feat(web): Tabs states
crishpeen Oct 22, 2024
7c066f4
Feat(web): Select states
crishpeen Oct 22, 2024
69ef4fa
Feat(web): Pill states
crishpeen Oct 22, 2024
9658cb2
Feat(web): Item states
crishpeen Oct 22, 2024
dfaef39
Feat(web): Header states
crishpeen Oct 22, 2024
14df36f
Feat(web): Accordion states
crishpeen Oct 22, 2024
8bf3efa
Feat(web): Fileuploader states
crishpeen Oct 22, 2024
5189bd4
Feat(web): Tag tokens
crishpeen Oct 31, 2024
969f6bf
Feat(web): Utilities
crishpeen Oct 31, 2024
9cf1b8b
Feat(web): Pagination states
crishpeen Oct 31, 2024
25b2541
Docs(web): Document removed brand bg utilities
crishpeen Oct 31, 2024
a043294
Test(e2e): Update Modal tests screenshots
crishpeen Nov 5, 2024
e4712b8
Test(e2e): Update Alert screenshot
crishpeen Nov 5, 2024
183db57
Test(e2e): Update Button screenshot
crishpeen Nov 5, 2024
30c3eb3
Test(e2e): Update Checkbox screenshot
crishpeen Nov 5, 2024
0e08ec6
Test(e2e): Update Collapse screenshot
crishpeen Nov 5, 2024
55a4cac
Test(e2e): Update Dropdown screenshot
crishpeen Nov 5, 2024
d21fa1d
Test(e2e): Update FieldGroup screenshot
crishpeen Nov 5, 2024
0e88c0d
Test(e2e): Update FileUploader screenshot
crishpeen Nov 5, 2024
14df899
Test(e2e): Update Header screenshot
crishpeen Nov 5, 2024
750be9c
Test(e2e): Update Link screenshot
crishpeen Nov 5, 2024
920e671
Test(e2e): Update Modal screenshot
crishpeen Nov 5, 2024
ecd7f1d
Test(e2e): Update Pagination screenshot
crishpeen Nov 5, 2024
edfa791
Test(e2e): Update Pill screenshot
crishpeen Nov 5, 2024
f50b064
Test(e2e): Update Radio screenshot
crishpeen Nov 5, 2024
804f5ae
Test(e2e): Update Select screenshot
crishpeen Nov 5, 2024
96e7606
Test(e2e): Update Stack screenshot
crishpeen Nov 5, 2024
593a8ab
Test(e2e): Update Tag screenshot
crishpeen Nov 5, 2024
edd75fb
Test(e2e): Update TextArea screenshot
crishpeen Nov 5, 2024
958a77a
Test(e2e): Update TextField screenshot
crishpeen Nov 5, 2024
d7c79a3
Test(e2e): Update Toast screenshot
crishpeen Nov 5, 2024
11ad797
Test(e2e): Update Tooltip screenshot
crishpeen Nov 5, 2024
0d72242
Test(e2e): Update ActionLayout screenshot
crishpeen Nov 5, 2024
c5a6d35
Test(e2e): Update EmptyState screenshot
crishpeen Nov 5, 2024
78c0c16
Test(e2e): Update Section screenshot
crishpeen Nov 5, 2024
670d96a
Test(e2e): Update Slider screenshot
crishpeen Nov 5, 2024
e991998
Test(e2e): Update Toggle screenshot
crishpeen Nov 5, 2024
367b753
Test(e2e): Update Web Homepage screenshot
crishpeen Nov 5, 2024
865c367
Test(e2e): Update Web React Homepage screenshot
crishpeen Nov 5, 2024
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
2 changes: 2 additions & 0 deletions docs/migrations/web/MIGRATION-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ Removed utility classes:
- `.bg-basic`
- `.bg-cover`
- `.bg-inverted`
- `.bg-brand-primary`
- `.bg-brand-secondary`

New utility classes:

Expand Down
6 changes: 3 additions & 3 deletions packages/demo/scss/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ body {
.docs-Card {
display: block;
padding: var(--spirit-space-700);
border: var(--spirit-border-width-100) solid var(--spirit-color-border-interactive-default);
border: var(--spirit-border-width-100) solid var(--spirit-color-border-interactive-state-default);
border-radius: var(--spirit-radius-300);
background-color: var(--spirit-color-background-primary);
font-size: var(--spirit-typography-body-large-semibold-mobile-font-size);
Expand All @@ -24,14 +24,14 @@ body {

@media (hover: hover) {
&:hover {
border-color: var(--spirit-color-border-interactive-hover);
border-color: var(--spirit-color-border-interactive-state-hover);
text-decoration: none;
box-shadow: var(--spirit-shadow-100);
}
}

&:active {
border-color: var(--spirit-color-border-interactive-active);
border-color: var(--spirit-color-border-interactive-state-active);
text-decoration: none;
}

Expand Down
24 changes: 0 additions & 24 deletions packages/design-tokens/src/js/generated/borders.ts

This file was deleted.

301 changes: 0 additions & 301 deletions packages/design-tokens/src/js/generated/colors.ts

This file was deleted.

5 changes: 0 additions & 5 deletions packages/design-tokens/src/js/generated/gradients.ts

This file was deleted.

Loading
Loading