-
Notifications
You must be signed in to change notification settings - Fork 31
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
Feature/new design system #623
Conversation
5ffeb34
to
01be7cc
Compare
10efb18
to
cba1779
Compare
54692d6
to
31c0bc5
Compare
ada2e28
to
5525362
Compare
def _doc_from_element(element: Locator) -> DocumentRow: | ||
filename = element.locator(".iai-doc-list__cell--file-name").inner_text() | ||
status = element.locator("file-status").inner_text() | ||
return DocumentRow(filename=filename, status=status) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice!
Add lock file Update tests update tests
5525362
to
24983ef
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
expires=expires, | ||
status=status, | ||
) | ||
for filename, uploaded_at, expires, status, action in batched(cell_texts, 5) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We probably don't need the batched()
function any more.
Context
Phase 1 of implementing the new i.AI design system.
The actual design system code lives at https://github.com/i-dot-ai/design-system
This PR is marked as a draft at the moment as this will almost certainly break some tests, which will need looking at before it's ready to deploy.
What this is:
What this isn't:
Guidance to review
This could do with a few eyes on it, across all pages, to check the following:
We will definitely be interested in more detailed feedback for future iteration, but keen to just focus on what we need to do to get this baseline version over the line this week.