-
Notifications
You must be signed in to change notification settings - Fork 536
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:primer/react into francinelucca/342…
…3-prcbuttongroup-group-container-lacks-a-role--does-not-convey-its-purpose
- Loading branch information
Showing
232 changed files
with
1,216 additions
and
781 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@primer/react": minor | ||
--- | ||
|
||
Remove the CSS modules feature flag from Avatar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@primer/react": patch | ||
--- | ||
|
||
Update Spinner component to correctly use the `size` prop when both `sx` and `size` are provided |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@primer/react": minor | ||
--- | ||
|
||
Fix small TextInput to be the use the correct font size |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@primer/react": minor | ||
--- | ||
|
||
feat(Tooltip): Convert Tooltip to CSS modules behind team flag |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@primer/react': minor | ||
--- | ||
|
||
TreeView: Adds prop `truncate`, keeps default behavior of truncation but allows for text to wrap when turned off. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@primer/react": minor | ||
--- | ||
|
||
feat(AnchoredOverlay): allow overlay to reflow |
68 changes: 68 additions & 0 deletions
68
.github/workflows/check-for-integration-result-comment.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: Check for integration result comment | ||
|
||
on: | ||
issue_comment: | ||
types: [created, edited] | ||
|
||
jobs: | ||
# note: this workflow always passes, it does not fail when integration tests are failing | ||
check-for-integration-result-comment: | ||
if: github.event.issue.pull_request | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get integration result comment | ||
uses: actions/github-script@v7 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const INTEGRATION_LABEL_NAMES = { | ||
// synced with https://github.com/primer/react/labels?q=integration-tests | ||
skipped: 'integration-tests: skipped manually', | ||
recommended: 'integration-tests: recommended', | ||
failing: 'integration-tests: failing', | ||
passing: 'integration-tests: passing' | ||
}; | ||
const issue = { | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo | ||
}; | ||
const { data: currentLabels } = await github.rest.issues.listLabelsOnIssue(issue); | ||
const existingIntegrationLabels = currentLabels | ||
.map(label => label.name) | ||
.filter(label => label.startsWith('integration-tests:')); | ||
if (existingIntegrationLabels.includes(INTEGRATION_LABEL_NAMES.skipped)) return; | ||
const result = await github.rest.issues.listComments(issue); | ||
const integrationComments = result.data.filter( | ||
comment => | ||
comment.user.login == 'primer-integration[bot]' && | ||
comment.body.includes('<!-- test-result') | ||
); | ||
if (integrationComments.length === 0) { | ||
console.log('Integration comment with test-result not found'); | ||
return; // CI should pass if there's nothing to do | ||
} | ||
const latestComment = integrationComments.pop(); | ||
console.log(latestComment.body); | ||
// based on comment message in github/github: https://github.com/github/github/blob/fe7fe9072fd913ec04255ce7403ae764e6c33d5f/.github/workflows/github-ci.yml#L664-L692 | ||
const pass = latestComment.body.includes('🟢'); | ||
console.log({ pass }); | ||
const newIntegrationLabel = pass ? INTEGRATION_LABEL_NAMES.passing : INTEGRATION_LABEL_NAMES.failing; | ||
console.log({existingIntegrationLabels, newIntegrationLabel}) | ||
Object.values(INTEGRATION_LABEL_NAMES).map(async (name) => { | ||
if (name === newIntegrationLabel) { | ||
if (existingIntegrationLabels.includes(name)); // already added, nothing to do here | ||
else await github.rest.issues.addLabels({...issue, labels: [newIntegrationLabel]}); | ||
} else if (existingIntegrationLabels.includes(name)) { | ||
// remove outdated labels | ||
await github.rest.issues.removeLabel({ ...issue, name }); | ||
} | ||
}); |
Binary file modified
BIN
-2.46 KB
(91%)
...nents/Blankslate.test.ts-snapshots/Blankslate-Default-dark-colorblind-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.37 KB
(92%)
...omponents/Blankslate.test.ts-snapshots/Blankslate-Default-dark-dimmed-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.48 KB
(91%)
...ts/Blankslate.test.ts-snapshots/Blankslate-Default-dark-high-contrast-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.51 KB
(91%)
...shots/components/Blankslate.test.ts-snapshots/Blankslate-Default-dark-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.46 KB
(91%)
...nents/Blankslate.test.ts-snapshots/Blankslate-Default-dark-tritanopia-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.34 KB
(92%)
...ents/Blankslate.test.ts-snapshots/Blankslate-Default-light-colorblind-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.58 KB
(91%)
...s/Blankslate.test.ts-snapshots/Blankslate-Default-light-high-contrast-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.39 KB
(92%)
...hots/components/Blankslate.test.ts-snapshots/Blankslate-Default-light-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.34 KB
(92%)
...ents/Blankslate.test.ts-snapshots/Blankslate-Default-light-tritanopia-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.49 KB
(91%)
.../Blankslate.test.ts-snapshots/Blankslate-Default-primer-breakpoint-sm-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.84 KB
(89%)
.../Blankslate.test.ts-snapshots/Blankslate-Default-primer-breakpoint-xs-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.51 KB
(91%)
...onents/Blankslate.test.ts-snapshots/Blankslate-Narrow-dark-colorblind-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.34 KB
(92%)
...components/Blankslate.test.ts-snapshots/Blankslate-Narrow-dark-dimmed-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.54 KB
(90%)
...nts/Blankslate.test.ts-snapshots/Blankslate-Narrow-dark-high-contrast-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.51 KB
(91%)
...pshots/components/Blankslate.test.ts-snapshots/Blankslate-Narrow-dark-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.51 KB
(91%)
...onents/Blankslate.test.ts-snapshots/Blankslate-Narrow-dark-tritanopia-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.53 KB
(91%)
...nents/Blankslate.test.ts-snapshots/Blankslate-Narrow-light-colorblind-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.58 KB
(90%)
...ts/Blankslate.test.ts-snapshots/Blankslate-Narrow-light-high-contrast-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.53 KB
(91%)
...shots/components/Blankslate.test.ts-snapshots/Blankslate-Narrow-light-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.53 KB
(91%)
...nents/Blankslate.test.ts-snapshots/Blankslate-Narrow-light-tritanopia-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.33 KB
(91%)
...s/Blankslate.test.ts-snapshots/Blankslate-Narrow-primer-breakpoint-sm-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.35 KB
(85%)
...hots/components/Select.test.ts-snapshots/Select-Small-dark-colorblind-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.35 KB
(85%)
...napshots/components/Select.test.ts-snapshots/Select-Small-dark-dimmed-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.29 KB
(85%)
...s/components/Select.test.ts-snapshots/Select-Small-dark-high-contrast-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.35 KB
(85%)
...right/snapshots/components/Select.test.ts-snapshots/Select-Small-dark-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.35 KB
(85%)
...hots/components/Select.test.ts-snapshots/Select-Small-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.32 KB
(85%)
...ots/components/Select.test.ts-snapshots/Select-Small-light-colorblind-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.35 KB
(85%)
.../components/Select.test.ts-snapshots/Select-Small-light-high-contrast-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.32 KB
(85%)
...ight/snapshots/components/Select.test.ts-snapshots/Select-Small-light-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.32 KB
(85%)
...ots/components/Select.test.ts-snapshots/Select-Small-light-tritanopia-linux.png
Oops, something went wrong.
Binary file modified
BIN
-969 Bytes
(86%)
...onents/TextInput.test.ts-snapshots/TextInput-Small-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file modified
BIN
-1.02 KB
(86%)
...nents/TextInput.test.ts-snapshots/TextInput-Small-light-high-contrast-linux.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...hTokens.test.ts-snapshots/TextInputWithTokens-Size-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file modified
BIN
+8 Bytes
(100%)
...Tokens.test.ts-snapshots/TextInputWithTokens-Size-light-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.4 KB
...n.test.ts-snapshots/Token-Default-AvatarToken-Default-dark-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
...Token.test.ts-snapshots/Token-Default-AvatarToken-Default-dark-dimmed-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.4 KB
...est.ts-snapshots/Token-Default-AvatarToken-Default-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.4 KB
...onents/Token.test.ts-snapshots/Token-Default-AvatarToken-Default-dark-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.4 KB
...n.test.ts-snapshots/Token-Default-AvatarToken-Default-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
....test.ts-snapshots/Token-Default-AvatarToken-Default-light-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
...st.ts-snapshots/Token-Default-AvatarToken-Default-light-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
...nents/Token.test.ts-snapshots/Token-Default-AvatarToken-Default-light-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
....test.ts-snapshots/Token-Default-AvatarToken-Default-light-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+14 KB
...st.ts-snapshots/Token-Default-AvatarToken-Interactive-dark-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+13.9 KB
...n.test.ts-snapshots/Token-Default-AvatarToken-Interactive-dark-dimmed-linux.png
Oops, something went wrong.
Binary file added
BIN
+14 KB
...ts-snapshots/Token-Default-AvatarToken-Interactive-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+14 KB
...ts/Token.test.ts-snapshots/Token-Default-AvatarToken-Interactive-dark-linux.png
Oops, something went wrong.
Binary file added
BIN
+14 KB
...st.ts-snapshots/Token-Default-AvatarToken-Interactive-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+14 KB
...t.ts-snapshots/Token-Default-AvatarToken-Interactive-light-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+14 KB
...s-snapshots/Token-Default-AvatarToken-Interactive-light-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+14 KB
...s/Token.test.ts-snapshots/Token-Default-AvatarToken-Interactive-light-linux.png
Oops, something went wrong.
Binary file added
BIN
+14 KB
...t.ts-snapshots/Token-Default-AvatarToken-Interactive-light-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+21.5 KB
...t.ts-snapshots/Token-Default-AvatarToken-On-Remove-Fn-dark-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+21 KB
....test.ts-snapshots/Token-Default-AvatarToken-On-Remove-Fn-dark-dimmed-linux.png
Oops, something went wrong.
Binary file added
BIN
+21.8 KB
...s-snapshots/Token-Default-AvatarToken-On-Remove-Fn-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+21.5 KB
...s/Token.test.ts-snapshots/Token-Default-AvatarToken-On-Remove-Fn-dark-linux.png
Oops, something went wrong.
Binary file added
BIN
+21.5 KB
...t.ts-snapshots/Token-Default-AvatarToken-On-Remove-Fn-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+21.5 KB
....ts-snapshots/Token-Default-AvatarToken-On-Remove-Fn-light-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+21.7 KB
...-snapshots/Token-Default-AvatarToken-On-Remove-Fn-light-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+21.5 KB
.../Token.test.ts-snapshots/Token-Default-AvatarToken-On-Remove-Fn-light-linux.png
Oops, something went wrong.
Binary file added
BIN
+21.5 KB
....ts-snapshots/Token-Default-AvatarToken-On-Remove-Fn-light-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.3 KB
...st.ts-snapshots/Token-Default-Default-IssueLabelToken-dark-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.24 KB
...n.test.ts-snapshots/Token-Default-Default-IssueLabelToken-dark-dimmed-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.31 KB
...ts-snapshots/Token-Default-Default-IssueLabelToken-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.3 KB
...ts/Token.test.ts-snapshots/Token-Default-Default-IssueLabelToken-dark-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.3 KB
...st.ts-snapshots/Token-Default-Default-IssueLabelToken-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.99 KB
...t.ts-snapshots/Token-Default-Default-IssueLabelToken-light-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.99 KB
...s-snapshots/Token-Default-Default-IssueLabelToken-light-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.99 KB
...s/Token.test.ts-snapshots/Token-Default-Default-IssueLabelToken-light-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.99 KB
...t.ts-snapshots/Token-Default-Default-IssueLabelToken-light-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.31 KB
...ponents/Token.test.ts-snapshots/Token-Default-Default-dark-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.25 KB
.../components/Token.test.ts-snapshots/Token-Default-Default-dark-dimmed-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.38 KB
...ents/Token.test.ts-snapshots/Token-Default-Default-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.31 KB
...apshots/components/Token.test.ts-snapshots/Token-Default-Default-dark-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.31 KB
...ponents/Token.test.ts-snapshots/Token-Default-Default-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.29 KB
...onents/Token.test.ts-snapshots/Token-Default-Default-light-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.31 KB
...nts/Token.test.ts-snapshots/Token-Default-Default-light-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.29 KB
...pshots/components/Token.test.ts-snapshots/Token-Default-Default-light-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.29 KB
...onents/Token.test.ts-snapshots/Token-Default-Default-light-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.35 KB
...nts/Token.test.ts-snapshots/Token-Default-Dev-Default-dark-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.41 KB
...ponents/Token.test.ts-snapshots/Token-Default-Dev-Default-dark-dimmed-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.32 KB
.../Token.test.ts-snapshots/Token-Default-Dev-Default-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.35 KB
...ots/components/Token.test.ts-snapshots/Token-Default-Dev-Default-dark-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.35 KB
...nts/Token.test.ts-snapshots/Token-Default-Dev-Default-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.32 KB
...ts/Token.test.ts-snapshots/Token-Default-Dev-Default-light-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.34 KB
...Token.test.ts-snapshots/Token-Default-Dev-Default-light-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.32 KB
...ts/components/Token.test.ts-snapshots/Token-Default-Dev-Default-light-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.32 KB
...ts/Token.test.ts-snapshots/Token-Default-Dev-Default-light-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.8 KB
...pshots/Token-Default-IssueLabelToken-with-onRemove-fn-dark-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.7 KB
...-snapshots/Token-Default-IssueLabelToken-with-onRemove-fn-dark-dimmed-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.81 KB
...ots/Token-Default-IssueLabelToken-with-onRemove-fn-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.8 KB
...test.ts-snapshots/Token-Default-IssueLabelToken-with-onRemove-fn-dark-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.8 KB
...pshots/Token-Default-IssueLabelToken-with-onRemove-fn-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.55 KB
...shots/Token-Default-IssueLabelToken-with-onRemove-fn-light-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.55 KB
...ts/Token-Default-IssueLabelToken-with-onRemove-fn-light-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.55 KB
...est.ts-snapshots/Token-Default-IssueLabelToken-with-onRemove-fn-light-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.55 KB
...shots/Token-Default-IssueLabelToken-with-onRemove-fn-light-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.78 KB
...nts/Token.test.ts-snapshots/Token-Default-Large-Token-dark-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.69 KB
...ponents/Token.test.ts-snapshots/Token-Default-Large-Token-dark-dimmed-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.91 KB
.../Token.test.ts-snapshots/Token-Default-Large-Token-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.78 KB
...ots/components/Token.test.ts-snapshots/Token-Default-Large-Token-dark-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.78 KB
...nts/Token.test.ts-snapshots/Token-Default-Large-Token-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.76 KB
...ts/Token.test.ts-snapshots/Token-Default-Large-Token-light-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.86 KB
...Token.test.ts-snapshots/Token-Default-Large-Token-light-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.76 KB
...ts/components/Token.test.ts-snapshots/Token-Default-Large-Token-light-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.76 KB
...ts/Token.test.ts-snapshots/Token-Default-Large-Token-light-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.14 KB
...nts/Token.test.ts-snapshots/Token-Default-Small-Token-dark-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.08 KB
...ponents/Token.test.ts-snapshots/Token-Default-Small-Token-dark-dimmed-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.23 KB
.../Token.test.ts-snapshots/Token-Default-Small-Token-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.14 KB
...ots/components/Token.test.ts-snapshots/Token-Default-Small-Token-dark-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.14 KB
...nts/Token.test.ts-snapshots/Token-Default-Small-Token-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.17 KB
...ts/Token.test.ts-snapshots/Token-Default-Small-Token-light-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.21 KB
...Token.test.ts-snapshots/Token-Default-Small-Token-light-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.17 KB
...ts/components/Token.test.ts-snapshots/Token-Default-Small-Token-light-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.17 KB
...ts/Token.test.ts-snapshots/Token-Default-Small-Token-light-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.7 KB
....ts-snapshots/Token-Default-Token-With-Leading-Visual-dark-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.65 KB
...test.ts-snapshots/Token-Default-Token-With-Leading-Visual-dark-dimmed-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.77 KB
...-snapshots/Token-Default-Token-With-Leading-Visual-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.7 KB
.../Token.test.ts-snapshots/Token-Default-Token-With-Leading-Visual-dark-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.7 KB
....ts-snapshots/Token-Default-Token-With-Leading-Visual-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.73 KB
...ts-snapshots/Token-Default-Token-With-Leading-Visual-light-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.73 KB
...snapshots/Token-Default-Token-With-Leading-Visual-light-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.73 KB
...Token.test.ts-snapshots/Token-Default-Token-With-Leading-Visual-light-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.73 KB
...ts-snapshots/Token-Default-Token-With-Leading-Visual-light-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.82 KB
...est.ts-snapshots/Token-Default-Token-with-onRemove-fn-dark-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.72 KB
...en.test.ts-snapshots/Token-Default-Token-with-onRemove-fn-dark-dimmed-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.85 KB
....ts-snapshots/Token-Default-Token-with-onRemove-fn-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.82 KB
...nts/Token.test.ts-snapshots/Token-Default-Token-with-onRemove-fn-dark-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.82 KB
...est.ts-snapshots/Token-Default-Token-with-onRemove-fn-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.87 KB
...st.ts-snapshots/Token-Default-Token-with-onRemove-fn-light-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.83 KB
...ts-snapshots/Token-Default-Token-with-onRemove-fn-light-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.87 KB
...ts/Token.test.ts-snapshots/Token-Default-Token-with-onRemove-fn-light-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.87 KB
...st.ts-snapshots/Token-Default-Token-with-onRemove-fn-light-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.78 KB
...s/Token.test.ts-snapshots/Token-Default-X-Large-Token-dark-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.69 KB
...nents/Token.test.ts-snapshots/Token-Default-X-Large-Token-dark-dimmed-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.91 KB
...oken.test.ts-snapshots/Token-Default-X-Large-Token-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.78 KB
...s/components/Token.test.ts-snapshots/Token-Default-X-Large-Token-dark-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.78 KB
...s/Token.test.ts-snapshots/Token-Default-X-Large-Token-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.76 KB
.../Token.test.ts-snapshots/Token-Default-X-Large-Token-light-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.86 KB
...ken.test.ts-snapshots/Token-Default-X-Large-Token-light-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.76 KB
.../components/Token.test.ts-snapshots/Token-Default-X-Large-Token-light-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.76 KB
.../Token.test.ts-snapshots/Token-Default-X-Large-Token-light-tritanopia-linux.png
Oops, something went wrong.
Binary file modified
BIN
-743 Bytes
(88%)
...hots/components/Token.test.ts-snapshots/Token-Default-dark-colorblind-linux.png
Oops, something went wrong.
Binary file modified
BIN
-680 Bytes
(89%)
...napshots/components/Token.test.ts-snapshots/Token-Default-dark-dimmed-linux.png
Oops, something went wrong.
Binary file modified
BIN
-976 Bytes
(85%)
...s/components/Token.test.ts-snapshots/Token-Default-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file modified
BIN
-743 Bytes
(88%)
...right/snapshots/components/Token.test.ts-snapshots/Token-Default-dark-linux.png
Oops, something went wrong.
Binary file modified
BIN
-743 Bytes
(88%)
...hots/components/Token.test.ts-snapshots/Token-Default-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file modified
BIN
-900 Bytes
(86%)
...ots/components/Token.test.ts-snapshots/Token-Default-light-colorblind-linux.png
Oops, something went wrong.
Binary file modified
BIN
-905 Bytes
(86%)
.../components/Token.test.ts-snapshots/Token-Default-light-high-contrast-linux.png
Oops, something went wrong.
Binary file modified
BIN
-900 Bytes
(86%)
...ight/snapshots/components/Token.test.ts-snapshots/Token-Default-light-linux.png
Oops, something went wrong.
Binary file modified
BIN
-900 Bytes
(86%)
...ots/components/Token.test.ts-snapshots/Token-Default-light-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+11 KB
...ts/TooltipV2.test.ts-snapshots/TooltipV2-Dev-SX-Props-dark-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+12 KB
...onents/TooltipV2.test.ts-snapshots/TooltipV2-Dev-SX-Props-dark-dimmed-linux.png
Oops, something went wrong.
Binary file added
BIN
+10.9 KB
...TooltipV2.test.ts-snapshots/TooltipV2-Dev-SX-Props-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+11 KB
...ts/components/TooltipV2.test.ts-snapshots/TooltipV2-Dev-SX-Props-dark-linux.png
Oops, something went wrong.
Binary file added
BIN
+11 KB
...ts/TooltipV2.test.ts-snapshots/TooltipV2-Dev-SX-Props-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file added
BIN
+11 KB
...s/TooltipV2.test.ts-snapshots/TooltipV2-Dev-SX-Props-light-colorblind-linux.png
Oops, something went wrong.
Binary file added
BIN
+11.1 KB
...ooltipV2.test.ts-snapshots/TooltipV2-Dev-SX-Props-light-high-contrast-linux.png
Oops, something went wrong.
Binary file added
BIN
+11 KB
...s/components/TooltipV2.test.ts-snapshots/TooltipV2-Dev-SX-Props-light-linux.png
Oops, something went wrong.
Binary file added
BIN
+11 KB
...s/TooltipV2.test.ts-snapshots/TooltipV2-Dev-SX-Props-light-tritanopia-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.61 KB
(89%)
...nts/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-colorblind-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.67 KB
(89%)
...ponents/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-dimmed-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.7 KB
(89%)
.../TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.6 KB
(89%)
...ots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.61 KB
(89%)
...nts/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.62 KB
(89%)
...ts/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-colorblind-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.7 KB
(89%)
...TreeView.test.ts-snapshots/TreeView-Files-Changed-light-high-contrast-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.64 KB
(89%)
...ts/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.64 KB
(89%)
...ts/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-tritanopia-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.5 KB
(88%)
.../components/TreeView.test.ts-snapshots/TreeView-Files-dark-colorblind-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.66 KB
(88%)
...hots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-dimmed-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.53 KB
(88%)
...mponents/TreeView.test.ts-snapshots/TreeView-Files-dark-high-contrast-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.51 KB
(88%)
...t/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.5 KB
(88%)
.../components/TreeView.test.ts-snapshots/TreeView-Files-dark-tritanopia-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.51 KB
(88%)
...components/TreeView.test.ts-snapshots/TreeView-Files-light-colorblind-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.46 KB
(88%)
...ponents/TreeView.test.ts-snapshots/TreeView-Files-light-high-contrast-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.51 KB
(88%)
.../snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-linux.png
Oops, something went wrong.
Binary file modified
BIN
-2.51 KB
(88%)
...components/TreeView.test.ts-snapshots/TreeView-Files-light-tritanopia-linux.png
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.changeset | ||
packages/react/CHANGELOG.md | ||
dist | ||
lib | ||
!codemods/lib/** | ||
|
Oops, something went wrong.