PLASMA-7634: add custom border-radius props for Chip - #2984
Conversation
📝 WalkthroughWalkthroughChip gains ChangesChip shape and radius support
Estimated code review effort: 4 (Complex) | ~50 minutes Possibly related PRs
Suggested reviewers: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
Theme Builder app deployed! https://plasma.sberdevices.ru/pr/plasma-theme-builder-pr-2984/ |
b94f49c to
d1c4799
Compare
There was a problem hiding this comment.
Actionable comments posted: 8
🧹 Nitpick comments (1)
packages/plasma-new-hope/src/components/ChipGroup/ChipGroup.component-test.tsx (1)
24-32: 🎯 Functional Correctness | 🔵 Trivial | ⚡ Quick winConsider adding single-chip coverage for
shape.The visual matrix always renders 3 chips, so the
:first-child:last-childCSS branch invariations/_shape/base.ts(single-chip case) is never exercised. Given the shape/side-radius logic has distinct code paths per chip count and position (see concern raised inbase.ts), a dedicated single-chip snapshot for bothshapevalues would help catch regressions there.♻️ Suggested addition
+ it('shape with single chip', () => { + mount( + <ChipGroup shape="segmented"> + <Chip text="Chip" hasClear={false} /> + </ChipGroup>, + ); + + cy.matchImageSnapshot(); + });🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@packages/plasma-new-hope/src/components/ChipGroup/ChipGroup.component-test.tsx` around lines 24 - 32, Add dedicated visual coverage in the ChipGroup tests for a single-chip configuration, exercising both shape values so the :first-child:last-child styling path is snapshot-tested. Keep the existing three-chip visual matrix unchanged and reuse the established visual-test helpers and chip fixture setup.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@packages/plasma-new-hope/src/components/Chip/Chip.template-doc.mdx`:
- Around line 134-137: Clarify the Chip `pin` documentation by describing
`square`, `circle`, and `clear` as corner options combined into a `left-right`
value in packages/plasma-new-hope/src/components/Chip/Chip.template-doc.mdx
lines 134-137. Apply the same regenerated wording in
website/plasma-b2c-docs/docs/components/Chip.mdx lines 134-137,
website/plasma-giga-docs/docs/components/Chip.mdx lines 134-137,
website/plasma-homeds-docs/docs/components/Chip.mdx lines 134-137,
website/plasma-web-docs/docs/components/Chip.mdx lines 134-137, and
website/sdds-bizcom-docs/docs/components/Chip.mdx lines 134-137, noting that
each token represents the value for one side.
In `@packages/plasma-new-hope/src/components/Chip/variations/_focused/base.ts`:
- Around line 13-17: Update the addFocus call in the focused chip base variation
to use the computed privateTokens.privateBorderRadius value for outlineRadius
instead of tokens.borderRadius, keeping the focus indicator aligned with custom
chip corner shapes.
In `@packages/plasma-new-hope/src/components/ChipGroup/ChipGroup.types.ts`:
- Around line 15-20: Update the JSDoc for the shape prop in ChipGroup types to
include an `@description` documenting its allowed Shape values, matching the
existing gap prop documentation pattern while preserving the current `@default`
annotation.
In `@packages/plasma-new-hope/src/components/ChipGroup/variations/_shape/base.ts`:
- Around line 7-64: The side-radius overrides in the base CSS currently apply to
every shape; scope the :first-child, :last-child, and :first-child:last-child
rules under the classes.segmented selector so they only apply to segmented
chips. Keep the shared chipItem styling and shape-specific radiusInner
declarations unchanged.
In `@website/sdds-cs-docs/docs/components/Chip.mdx`:
- Around line 134-137: Clarify the Chip `pin` documentation so `square`,
`circle`, and `clear` are described as per-corner tokens combined as
`<левый>-<правый>`, rather than literal standalone property values. Apply the
same wording change at website/sdds-cs-docs/docs/components/Chip.mdx#L134-L137,
website/sdds-dfa-docs/docs/components/Chip.mdx#L134-L137,
website/sdds-finai-docs/docs/components/Chip.mdx#L134-L137,
website/sdds-insol-docs/docs/components/Chip.mdx#L134-L137,
website/sdds-netology-docs/docs/components/Chip.mdx#L134-L137, and
website/sdds-platform-ai-docs/docs/components/Chip.mdx#L134-L137.
In `@website/sdds-sbcom-docs/docs/components/Chip.mdx`:
- Around line 113-158: Update the pin documentation in the “Скругления” section
to explain that pin uses hyphenated pairs of values, with each part controlling
one side of the Chip. Retain the square, circle, and clear meanings and align
the explanation with the compound examples in the pin TabItem.
In `@website/sdds-scan-docs/docs/components/Chip.mdx`:
- Around line 113-158: Update the `pin` documentation in the Chip “Скругления”
section to explain that values use a hyphenated pair combining the start and end
shapes, and document the supported `square`, `circle`, and `clear` options for
each side. Keep the existing examples unchanged.
In `@website/sdds-serv-docs/docs/components/Chip.mdx`:
- Around line 113-162: Update the `pin` values documentation in the Chip
“Скругления” section to explain that `pin` uses a hyphenated pair of values,
with the first value controlling the leading side and the second controlling the
trailing side. Retain the individual `square`, `circle`, and `clear` meanings
and keep the existing examples aligned with this syntax.
---
Nitpick comments:
In
`@packages/plasma-new-hope/src/components/ChipGroup/ChipGroup.component-test.tsx`:
- Around line 24-32: Add dedicated visual coverage in the ChipGroup tests for a
single-chip configuration, exercising both shape values so the
:first-child:last-child styling path is snapshot-tested. Keep the existing
three-chip visual matrix unchanged and reuse the established visual-test helpers
and chip fixture setup.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
| Возможные значения свойства `pin`: | ||
| + `square` – обычное скругление; | ||
| + `circle` – сильное скругление; | ||
| + `clear` – нет скругления. |
There was a problem hiding this comment.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
Clarify that square/circle/clear are corner tokens, not literal pin values. The header reads "Возможные значения свойства pin" and lists single tokens, but every example passes dash-combined pairs (e.g. pin="square-square"). A reader would reasonably try pin="square", which is not one of the demonstrated values. Reword to state that pin accepts a <левый>-<правый> combination of these rounding tokens.
website/sdds-cs-docs/docs/components/Chip.mdx#L134-L137: reword the "Возможные значения" line to describe the tokens as per-corner options combined as<left>-<right>.website/sdds-dfa-docs/docs/components/Chip.mdx#L134-L137: apply the same wording fix.website/sdds-finai-docs/docs/components/Chip.mdx#L134-L137: apply the same wording fix.website/sdds-insol-docs/docs/components/Chip.mdx#L134-L137: apply the same wording fix.website/sdds-netology-docs/docs/components/Chip.mdx#L134-L137: apply the same wording fix.website/sdds-platform-ai-docs/docs/components/Chip.mdx#L134-L137: apply the same wording fix.
📍 Affects 6 files
website/sdds-cs-docs/docs/components/Chip.mdx#L134-L137(this comment)website/sdds-dfa-docs/docs/components/Chip.mdx#L134-L137website/sdds-finai-docs/docs/components/Chip.mdx#L134-L137website/sdds-insol-docs/docs/components/Chip.mdx#L134-L137website/sdds-netology-docs/docs/components/Chip.mdx#L134-L137website/sdds-platform-ai-docs/docs/components/Chip.mdx#L134-L137
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@website/sdds-cs-docs/docs/components/Chip.mdx` around lines 134 - 137,
Clarify the Chip `pin` documentation so `square`, `circle`, and `clear` are
described as per-corner tokens combined as `<левый>-<правый>`, rather than
literal standalone property values. Apply the same wording change at
website/sdds-cs-docs/docs/components/Chip.mdx#L134-L137,
website/sdds-dfa-docs/docs/components/Chip.mdx#L134-L137,
website/sdds-finai-docs/docs/components/Chip.mdx#L134-L137,
website/sdds-insol-docs/docs/components/Chip.mdx#L134-L137,
website/sdds-netology-docs/docs/components/Chip.mdx#L134-L137, and
website/sdds-platform-ai-docs/docs/components/Chip.mdx#L134-L137.
| ## Скругления | ||
|
|
||
| Скругления `Chip` задаются свойствами `pilled` и `pin`. Если задано `pin`, оно имеет приоритет над `pilled`. | ||
|
|
||
| <Tabs> | ||
| <TabItem value="pilled" label="pilled" default> | ||
| ```tsx live | ||
| import React from 'react'; | ||
| import { Chip } from '@salutejs/sdds-sbcom'; | ||
|
|
||
| export function App() { | ||
| return ( | ||
| <div style={{ display: 'flex', gap: '1rem' }}> | ||
| <Chip text="pilled=false" /> | ||
| <Chip text="pilled=true" pilled /> | ||
| </div> | ||
| ); | ||
| } | ||
| ``` | ||
| </TabItem> | ||
| <TabItem value="pin" label="pin"> | ||
| Возможные значения свойства `pin`: | ||
| + `square` – обычное скругление; | ||
| + `circle` – сильное скругление; | ||
| + `clear` – нет скругления. | ||
|
|
||
| ```tsx live | ||
| import React from 'react'; | ||
| import { Chip } from '@salutejs/sdds-sbcom'; | ||
|
|
||
| export function App() { | ||
| return ( | ||
| <div style={{ display: 'flex', gap: '1rem', flexWrap: 'wrap' }}> | ||
| <Chip text="Chip" pin="square-square" /> | ||
| <Chip text="Chip" pin="square-clear" /> | ||
| <Chip text="Chip" pin="clear-square" /> | ||
| <Chip text="Chip" pin="clear-clear" /> | ||
| <Chip text="Chip" pin="clear-circle" /> | ||
| <Chip text="Chip" pin="circle-clear" /> | ||
| <Chip text="Chip" pin="circle-circle" /> | ||
| </div> | ||
| ); | ||
| } | ||
| ``` | ||
| </TabItem> | ||
| </Tabs> |
There was a problem hiding this comment.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
pin values documented incompletely — compound syntax isn't explained.
The value list (square/circle/clear) doesn't explain that pin actually takes hyphenated pairs (e.g. square-clear, clear-circle) as shown in the example directly below it. Readers can't infer the compound-value syntax from the text alone.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@website/sdds-sbcom-docs/docs/components/Chip.mdx` around lines 113 - 158,
Update the pin documentation in the “Скругления” section to explain that pin
uses hyphenated pairs of values, with each part controlling one side of the
Chip. Retain the square, circle, and clear meanings and align the explanation
with the compound examples in the pin TabItem.
| ## Скругления | ||
|
|
||
| Скругления `Chip` задаются свойствами `pilled` и `pin`. Если задано `pin`, оно имеет приоритет над `pilled`. | ||
|
|
||
| <Tabs> | ||
| <TabItem value="pilled" label="pilled" default> | ||
| ```tsx live | ||
| import React from 'react'; | ||
| import { Chip } from '@salutejs/sdds-scan'; | ||
|
|
||
| export function App() { | ||
| return ( | ||
| <div style={{ display: 'flex', gap: '1rem' }}> | ||
| <Chip text="pilled=false" /> | ||
| <Chip text="pilled=true" pilled /> | ||
| </div> | ||
| ); | ||
| } | ||
| ``` | ||
| </TabItem> | ||
| <TabItem value="pin" label="pin"> | ||
| Возможные значения свойства `pin`: | ||
| + `square` – обычное скругление; | ||
| + `circle` – сильное скругление; | ||
| + `clear` – нет скругления. | ||
|
|
||
| ```tsx live | ||
| import React from 'react'; | ||
| import { Chip } from '@salutejs/sdds-scan'; | ||
|
|
||
| export function App() { | ||
| return ( | ||
| <div style={{ display: 'flex', gap: '1rem', flexWrap: 'wrap' }}> | ||
| <Chip text="Chip" pin="square-square" /> | ||
| <Chip text="Chip" pin="square-clear" /> | ||
| <Chip text="Chip" pin="clear-square" /> | ||
| <Chip text="Chip" pin="clear-clear" /> | ||
| <Chip text="Chip" pin="clear-circle" /> | ||
| <Chip text="Chip" pin="circle-clear" /> | ||
| <Chip text="Chip" pin="circle-circle" /> | ||
| </div> | ||
| ); | ||
| } | ||
| ``` | ||
| </TabItem> | ||
| </Tabs> |
There was a problem hiding this comment.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
pin values documented incompletely — compound syntax isn't explained.
Same gap as in the other package docs: value list omits the hyphenated-pair syntax used in the example.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@website/sdds-scan-docs/docs/components/Chip.mdx` around lines 113 - 158,
Update the `pin` documentation in the Chip “Скругления” section to explain that
values use a hyphenated pair combining the start and end shapes, and document
the supported `square`, `circle`, and `clear` options for each side. Keep the
existing examples unchanged.
| ## Скругления | ||
|
|
||
| Скругления `Chip` задаются свойствами `pilled` и `pin`. Если задано `pin`, оно имеет приоритет над `pilled`. | ||
|
|
||
| <Tabs> | ||
| <TabItem value="pilled" label="pilled" default> | ||
| ```tsx live | ||
| import React from 'react'; | ||
| import { Chip } from '@salutejs/sdds-serv'; | ||
|
|
||
| export function App() { | ||
| return ( | ||
| <div style={{ display: 'flex', gap: '1rem' }}> | ||
| <Chip text="pilled=false" /> | ||
| <Chip text="pilled=true" pilled /> | ||
| </div> | ||
| ); | ||
| } | ||
| ``` | ||
| </TabItem> | ||
| <TabItem value="pin" label="pin"> | ||
| Возможные значения свойства `pin`: | ||
| + `square` – обычное скругление; | ||
| + `circle` – сильное скругление; | ||
| + `clear` – нет скругления. | ||
|
|
||
| ```tsx live | ||
| import React from 'react'; | ||
| import { Chip } from '@salutejs/sdds-serv'; | ||
|
|
||
| export function App() { | ||
| return ( | ||
| <div style={{ display: 'flex', gap: '1rem', flexWrap: 'wrap' }}> | ||
| <Chip text="Chip" pin="square-square" /> | ||
| <Chip text="Chip" pin="square-clear" /> | ||
| <Chip text="Chip" pin="clear-square" /> | ||
| <Chip text="Chip" pin="clear-clear" /> | ||
| <Chip text="Chip" pin="clear-circle" /> | ||
| <Chip text="Chip" pin="circle-clear" /> | ||
| <Chip text="Chip" pin="circle-circle" /> | ||
| </div> | ||
| ); | ||
| } | ||
| ``` | ||
| </TabItem> | ||
| </Tabs> | ||
|
|
||
| ## Градиентный текст | ||
|
|
||
| Текст чипа можно окрасить в градиентный цвет с помощью класса `sdds-core-text-node`: |
There was a problem hiding this comment.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
pin values documented incompletely — compound syntax isn't explained.
Same gap as in the other package docs: value list omits the hyphenated-pair syntax used in the example.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@website/sdds-serv-docs/docs/components/Chip.mdx` around lines 113 - 162,
Update the `pin` values documentation in the Chip “Скругления” section to
explain that `pin` uses a hyphenated pair of values, with the first value
controlling the leading side and the second controlling the trailing side.
Retain the individual `square`, `circle`, and `clear` meanings and keep the
existing examples aligned with this syntax.
d1c4799 to
62acd06
Compare
There was a problem hiding this comment.
Actionable comments posted: 7
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
packages/sdds-insol/src/components/Chip/Chip.stories.tsx (1)
1-1: 🎯 Functional Correctness | 🟡 Minor | ⚡ Quick winDo not hide the new
pinAPI from every Chip story.All six configurations remove
pinfrom interactive Storybook controls, making the PR’s radius customization undiscoverable and difficult to validate. Removepinfrom eachdisablePropsList, or add explicit pin-focused stories where generic controls are intentionally restricted.
packages/sdds-insol/src/components/Chip/Chip.stories.tsx#14-14: keeppinavailable or add dedicated pin variants.packages/sdds-os/src/components/Chip/Chip.stories.tsx#14-14: keeppinavailable or add dedicated pin variants.packages/sdds-platform-ai/src/components/Chip/Chip.stories.tsx#14-14: keeppinavailable or add dedicated pin variants.packages/sdds-sbcom/src/components/Chip/Chip.stories.tsx#14-14: keeppinavailable or add dedicated pin variants.packages/sdds-scan/src/components/Chip/Chip.stories.tsx#14-14: keeppinavailable or add dedicated pin variants.packages/sdds-serv/src/components/Chip/Chip.stories.tsx#14-14: keeppinavailable or add dedicated pin variants.🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@packages/sdds-insol/src/components/Chip/Chip.stories.tsx` at line 1, Make the new Chip pin API discoverable in Storybook by removing pin from each disablePropsList across the six Chip.stories.tsx files, or add dedicated pin-focused stories where controls remain restricted. Preserve all other disabled controls and ensure pin is available for interactive validation.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@packages/sdds-insol/src/components/Chip/Chip.stories.tsx`:
- Line 14: Update the Chip story’s disablePropsList to stop excluding the public
pin prop, keeping pin available in Storybook controls; leave appearance disabled
as currently configured.
In `@packages/sdds-netology/src/components/ChipGroup/ChipGroup.stories.tsx`:
- Line 16: Update the shapeValues configuration in the ChipGroup story to
include both the registered segmented and default shape values, so Storybook’s
shape control can exercise the segmented variant.
In `@packages/sdds-os/src/components/Chip/Chip.stories.tsx`:
- Line 14: Update the Chip story’s disablePropsList to keep the public pin prop
available in Storybook controls, removing pin from the disabled list so the
radius variants can be demonstrated and validated.
In `@packages/sdds-platform-ai/src/components/Chip/Chip.stories.tsx`:
- Line 14: Update the Chip story’s disablePropsList so the public pin prop
remains available in Storybook controls; remove pin from the disabled list while
preserving the existing appearance exclusion.
In `@packages/sdds-sbcom/src/components/Chip/Chip.stories.tsx`:
- Line 14: Update the Chip story’s disablePropsList to remove pin, keeping the
public pin prop available in Storybook controls so its custom corner-radius
behavior can be demonstrated.
In `@packages/sdds-scan/src/components/Chip/Chip.stories.tsx`:
- Line 14: Update the Chip story’s disablePropsList to keep the public pin prop
available in Storybook controls, removing pin from the disabled entries so its
supported radius combinations can be demonstrated interactively.
In `@packages/sdds-serv/src/components/Chip/Chip.stories.tsx`:
- Line 14: Update the Chip story’s disablePropsList to keep the public pin prop
available in Storybook controls by removing pin from the disabled entries,
allowing the story to exercise custom radius behavior.
---
Outside diff comments:
In `@packages/sdds-insol/src/components/Chip/Chip.stories.tsx`:
- Line 1: Make the new Chip pin API discoverable in Storybook by removing pin
from each disablePropsList across the six Chip.stories.tsx files, or add
dedicated pin-focused stories where controls remain restricted. Preserve all
other disabled controls and ensure pin is available for interactive validation.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
62acd06 to
bbb954c
Compare
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@packages/sdds-dfa/src/components/ChipGroup/ChipGroup.stories.tsx`:
- Line 16: Update shapeValues in both ChipGroup.stories.tsx
files—packages/sdds-dfa/src/components/ChipGroup/ChipGroup.stories.tsx:16 and
packages/sdds-insol/src/components/ChipGroup/ChipGroup.stories.tsx:16—to include
both 'default' and 'segmented', matching the configured ChipGroup shape options.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro Plus
Run ID: 9910aad6-cdde-46aa-9451-fb4fff25f4ac
⛔ Files ignored due to path filters (462)
cypress/snapshots/b2c/chromium/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/plasma-b2c Chip -- [PLASMA-T1442] Chip size=l, view=default, hasClear.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/plasma-b2c Chip -- [PLASMA-T1443] Chip size=m, view=secondary, without Clear, pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/plasma-b2c Chip -- [PLASMA-T1446] Chip view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/plasma-b2c Chip -- [PLASMA-T1447] Chip size=xs, with Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/plasma-b2c Chip -- [PLASMA-T977] Chip fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/plasma-b2c Chip -- _size.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/plasma-b2c Chip -- _view.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/plasma-b2c Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/plasma-b2c Chip -- simple.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/Chip/plasma-b2c Chip -- with Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/plasma-b2c ChipGroup -- [PLASMA-T1599] ChipGroup size=l, view=default, gap=dense.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/plasma-b2c ChipGroup -- [PLASMA-T1600] ChipGroup size=m, view=secondary, gap=wide, isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/plasma-b2c ChipGroup -- [PLASMA-T1601] ChipGroup size=s, view=accent.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/plasma-b2c ChipGroup -- [PLASMA-T1602] ChipGroup size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/plasma-b2c ChipGroup -- [PLASMA-T1780] ChipGroup isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/plasma-b2c ChipGroup -- [PLASMA-T1781] ChipGroup isCommonChipStyles.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/plasma-b2c ChipGroup -- _gap.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/plasma-b2c ChipGroup -- _size.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/plasma-b2c ChipGroup -- _view.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/chromium/ChipGroup/plasma-b2c ChipGroup -- custom chips.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/plasma-b2c Chip -- [PLASMA-T1442] Chip size=l, view=default, hasClear.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/plasma-b2c Chip -- [PLASMA-T1443] Chip size=m, view=secondary, without Clear, pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/plasma-b2c Chip -- [PLASMA-T1446] Chip view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/plasma-b2c Chip -- [PLASMA-T1447] Chip size=xs, with Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/plasma-b2c Chip -- [PLASMA-T977] Chip fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/plasma-b2c Chip -- _size.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/plasma-b2c Chip -- _view.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/plasma-b2c Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/plasma-b2c Chip -- simple.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/Chip/plasma-b2c Chip -- with Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/plasma-b2c ChipGroup -- [PLASMA-T1599] ChipGroup size=l, view=default, gap=dense.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/plasma-b2c ChipGroup -- [PLASMA-T1600] ChipGroup size=m, view=secondary, gap=wide, isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/plasma-b2c ChipGroup -- [PLASMA-T1601] ChipGroup size=s, view=accent.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/plasma-b2c ChipGroup -- [PLASMA-T1602] ChipGroup size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/plasma-b2c ChipGroup -- [PLASMA-T1780] ChipGroup isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/plasma-b2c ChipGroup -- [PLASMA-T1781] ChipGroup isCommonChipStyles.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/plasma-b2c ChipGroup -- _gap.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/plasma-b2c ChipGroup -- _size.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/plasma-b2c ChipGroup -- _view.snap.pngis excluded by!**/*.pngcypress/snapshots/b2c/webkit/ChipGroup/plasma-b2c ChipGroup -- custom chips.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/chromium/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/chromium/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/chromium/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/chromium/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/chromium/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/chromium/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/chromium/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/chromium/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/chromium/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/chromium/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/chromium/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/chromium/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/webkit/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/webkit/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/webkit/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/webkit/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/webkit/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/webkit/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/webkit/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/webkit/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/webkit/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/webkit/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/webkit/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/bizcom/webkit/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/Chip/sdds-cs Chip -- Chip size=xs, with right Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/Chip/sdds-cs Chip -- [PLASMA-T1442] Chip view=default, hasClear.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/Chip/sdds-cs Chip -- [PLASMA-T1443] Chip view=secondary, without Clear, pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/Chip/sdds-cs Chip -- [PLASMA-T1446] Chip view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/Chip/sdds-cs Chip -- [PLASMA-T1447] Chip size=xs, with Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/Chip/sdds-cs Chip -- [PLASMA-T1654] Chip disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/Chip/sdds-cs Chip -- [PLASMA-T977] Chip fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/ChipGroup/ChipGroup -- view=accent.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/ChipGroup/ChipGroup -- view=default, size=s, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/ChipGroup/ChipGroup -- view=secondary, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/ChipGroup/sdds-cs ChipGroup -- [PLASMA-T1599] ChipGroup view=default, gap=dense.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/ChipGroup/sdds-cs ChipGroup -- [PLASMA-T1600] ChipGroup view=secondary, gap=wide, isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/ChipGroup/sdds-cs ChipGroup -- [PLASMA-T1601] ChipGroup size=s, view=accent.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/ChipGroup/sdds-cs ChipGroup -- [PLASMA-T1780] ChipGroup isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/chromium/ChipGroup/sdds-cs ChipGroup -- [PLASMA-T1781] ChipGroup isCommonChipStyles.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/Chip/sdds-cs Chip -- Chip size=xs, with right Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/Chip/sdds-cs Chip -- [PLASMA-T1442] Chip view=default, hasClear.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/Chip/sdds-cs Chip -- [PLASMA-T1443] Chip view=secondary, without Clear, pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/Chip/sdds-cs Chip -- [PLASMA-T1446] Chip view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/Chip/sdds-cs Chip -- [PLASMA-T1447] Chip size=xs, with Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/Chip/sdds-cs Chip -- [PLASMA-T1654] Chip disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/Chip/sdds-cs Chip -- [PLASMA-T977] Chip fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/ChipGroup/ChipGroup -- view=accent.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/ChipGroup/ChipGroup -- view=default, size=s, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/ChipGroup/ChipGroup -- view=secondary, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/ChipGroup/sdds-cs ChipGroup -- [PLASMA-T1599] ChipGroup view=default, gap=dense.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/ChipGroup/sdds-cs ChipGroup -- [PLASMA-T1600] ChipGroup view=secondary, gap=wide, isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/ChipGroup/sdds-cs ChipGroup -- [PLASMA-T1601] ChipGroup size=s, view=accent.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/ChipGroup/sdds-cs ChipGroup -- [PLASMA-T1780] ChipGroup isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/cs/webkit/ChipGroup/sdds-cs ChipGroup -- [PLASMA-T1781] ChipGroup isCommonChipStyles.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/chromium/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/chromium/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/chromium/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/chromium/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/chromium/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/chromium/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/chromium/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/chromium/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/chromium/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/chromium/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/chromium/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/chromium/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/webkit/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/webkit/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/webkit/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/webkit/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/webkit/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/webkit/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/webkit/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/webkit/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/webkit/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/webkit/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/webkit/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/dfa/webkit/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/chromium/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/chromium/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/chromium/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/chromium/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/chromium/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/chromium/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/chromium/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/chromium/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/chromium/ChipGroup/ChipGroup -- view=accent, size=s, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/chromium/ChipGroup/ChipGroup -- view=clear.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/chromium/ChipGroup/ChipGroup -- view=default, size=m, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/chromium/ChipGroup/ChipGroup -- view=negative.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/chromium/ChipGroup/ChipGroup -- view=positive, size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/chromium/ChipGroup/ChipGroup -- view=warning.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/webkit/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/webkit/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/webkit/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/webkit/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/webkit/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/webkit/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/webkit/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/webkit/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/webkit/ChipGroup/ChipGroup -- view=accent, size=s, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/webkit/ChipGroup/ChipGroup -- view=clear.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/webkit/ChipGroup/ChipGroup -- view=default, size=m, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/webkit/ChipGroup/ChipGroup -- view=negative.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/webkit/ChipGroup/ChipGroup -- view=positive, size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/finai/webkit/ChipGroup/ChipGroup -- view=warning.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/Chip/plasma-giga Chip -- Chip size=xs, with right Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/Chip/plasma-giga Chip -- [PLASMA-T1442] Chip size=l, view=default, hasClear.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/Chip/plasma-giga Chip -- [PLASMA-T1443] Chip size=m, view=secondary, without Clear, pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/Chip/plasma-giga Chip -- [PLASMA-T1446] Chip view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/Chip/plasma-giga Chip -- [PLASMA-T1447] Chip size=xs, with Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/Chip/plasma-giga Chip -- [PLASMA-T977] Chip fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/ChipGroup/plasma-giga ChipGroup -- [PLASMA-T1599] ChipGroup size=l, view=default, gap=dense.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/ChipGroup/plasma-giga ChipGroup -- [PLASMA-T1600] ChipGroup size=m, view=secondary, gap=wide, isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/ChipGroup/plasma-giga ChipGroup -- [PLASMA-T1601] ChipGroup size=s, view=accent.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/ChipGroup/plasma-giga ChipGroup -- [PLASMA-T1602] ChipGroup size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/ChipGroup/plasma-giga ChipGroup -- [PLASMA-T1780] ChipGroup isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/chromium/ChipGroup/plasma-giga ChipGroup -- [PLASMA-T1781] ChipGroup isCommonChipStyles.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/Chip/plasma-giga Chip -- Chip size=xs, with right Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/Chip/plasma-giga Chip -- [PLASMA-T1442] Chip size=l, view=default, hasClear.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/Chip/plasma-giga Chip -- [PLASMA-T1443] Chip size=m, view=secondary, without Clear, pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/Chip/plasma-giga Chip -- [PLASMA-T1446] Chip view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/Chip/plasma-giga Chip -- [PLASMA-T1447] Chip size=xs, with Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/Chip/plasma-giga Chip -- [PLASMA-T977] Chip fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/ChipGroup/plasma-giga ChipGroup -- [PLASMA-T1599] ChipGroup size=l, view=default, gap=dense.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/ChipGroup/plasma-giga ChipGroup -- [PLASMA-T1600] ChipGroup size=m, view=secondary, gap=wide, isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/ChipGroup/plasma-giga ChipGroup -- [PLASMA-T1601] ChipGroup size=s, view=accent.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/ChipGroup/plasma-giga ChipGroup -- [PLASMA-T1602] ChipGroup size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/ChipGroup/plasma-giga ChipGroup -- [PLASMA-T1780] ChipGroup isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/giga/webkit/ChipGroup/plasma-giga ChipGroup -- [PLASMA-T1781] ChipGroup isCommonChipStyles.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/chromium/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/chromium/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/chromium/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/chromium/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/chromium/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/chromium/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/chromium/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/chromium/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/chromium/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/chromium/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/chromium/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/chromium/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/webkit/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/webkit/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/webkit/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/webkit/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/webkit/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/webkit/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/webkit/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/webkit/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/webkit/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/webkit/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/webkit/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/homeds/webkit/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/Chip/sdds-insol Chip -- Chip size=xs, with right Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/Chip/sdds-insol Chip -- [PLASMA-T1442] Chip size=l, view=default, hasClear.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/Chip/sdds-insol Chip -- [PLASMA-T1443] Chip size=m, view=secondary, without Clear, pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/Chip/sdds-insol Chip -- [PLASMA-T1446] Chip view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/Chip/sdds-insol Chip -- [PLASMA-T1447] Chip size=xs, with Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/Chip/sdds-insol Chip -- [PLASMA-T977] Chip fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/ChipGroup/sdds-insol ChipGroup -- [PLASMA-T1599] ChipGroup size=l, view=default, gap=dense.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/ChipGroup/sdds-insol ChipGroup -- [PLASMA-T1600] ChipGroup size=m, view=secondary, gap=wide, isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/ChipGroup/sdds-insol ChipGroup -- [PLASMA-T1601] ChipGroup size=s, view=accent.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/ChipGroup/sdds-insol ChipGroup -- [PLASMA-T1602] ChipGroup size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/ChipGroup/sdds-insol ChipGroup -- [PLASMA-T1780] ChipGroup isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/chromium/ChipGroup/sdds-insol ChipGroup -- [PLASMA-T1781] ChipGroup isCommonChipStyles.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/Chip/sdds-insol Chip -- Chip size=xs, with right Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/Chip/sdds-insol Chip -- [PLASMA-T1442] Chip size=l, view=default, hasClear.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/Chip/sdds-insol Chip -- [PLASMA-T1443] Chip size=m, view=secondary, without Clear, pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/Chip/sdds-insol Chip -- [PLASMA-T1446] Chip view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/Chip/sdds-insol Chip -- [PLASMA-T1447] Chip size=xs, with Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/Chip/sdds-insol Chip -- [PLASMA-T977] Chip fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/ChipGroup/sdds-insol ChipGroup -- [PLASMA-T1599] ChipGroup size=l, view=default, gap=dense.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/ChipGroup/sdds-insol ChipGroup -- [PLASMA-T1600] ChipGroup size=m, view=secondary, gap=wide, isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/ChipGroup/sdds-insol ChipGroup -- [PLASMA-T1601] ChipGroup size=s, view=accent.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/ChipGroup/sdds-insol ChipGroup -- [PLASMA-T1602] ChipGroup size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/ChipGroup/sdds-insol ChipGroup -- [PLASMA-T1780] ChipGroup isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/insol/webkit/ChipGroup/sdds-insol ChipGroup -- [PLASMA-T1781] ChipGroup isCommonChipStyles.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/chromium/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/chromium/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/chromium/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/chromium/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/chromium/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/chromium/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/chromium/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/chromium/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/chromium/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/chromium/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/chromium/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/chromium/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/webkit/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/webkit/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/webkit/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/webkit/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/webkit/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/webkit/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/webkit/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/webkit/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/webkit/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/webkit/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/webkit/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/netology/webkit/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/os/chromium/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/os/chromium/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/os/chromium/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/os/chromium/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/os/chromium/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/os/chromium/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/os/chromium/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/os/chromium/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/os/chromium/ChipGroup/ChipGroup -- view=accent.snap.pngis excluded by!**/*.pngcypress/snapshots/os/chromium/ChipGroup/ChipGroup -- view=default, size=m, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/os/chromium/ChipGroup/ChipGroup -- view=secondary, size=s, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/os/webkit/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/os/webkit/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/os/webkit/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/os/webkit/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/os/webkit/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/os/webkit/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/os/webkit/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/os/webkit/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/os/webkit/ChipGroup/ChipGroup -- view=accent.snap.pngis excluded by!**/*.pngcypress/snapshots/os/webkit/ChipGroup/ChipGroup -- view=default, size=m, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/os/webkit/ChipGroup/ChipGroup -- view=secondary, size=s, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/chromium/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/chromium/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/chromium/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/chromium/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/chromium/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/chromium/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/chromium/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/chromium/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/chromium/ChipGroup/ChipGroup -- view=accent.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/chromium/ChipGroup/ChipGroup -- view=default, size=m, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/chromium/ChipGroup/ChipGroup -- view=secondary, size=xxs, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/webkit/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/webkit/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/webkit/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/webkit/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/webkit/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/webkit/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/webkit/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/webkit/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/webkit/ChipGroup/ChipGroup -- view=accent.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/webkit/ChipGroup/ChipGroup -- view=default, size=m, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/platform-ai/webkit/ChipGroup/ChipGroup -- view=secondary, size=xxs, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/chromium/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/chromium/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/chromium/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/chromium/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/chromium/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/chromium/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/chromium/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/chromium/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/chromium/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/chromium/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/chromium/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/webkit/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/webkit/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/webkit/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/webkit/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/webkit/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/webkit/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/webkit/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/webkit/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/webkit/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/webkit/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/scan/webkit/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/chromium/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/chromium/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/chromium/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/chromium/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/chromium/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/chromium/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/chromium/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/chromium/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/chromium/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/chromium/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/chromium/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/chromium/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/webkit/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/webkit/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/webkit/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/webkit/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/webkit/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/webkit/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/webkit/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/webkit/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/webkit/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/webkit/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/webkit/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/serv/webkit/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/Chip/plasma-web Chip -- _size.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/Chip/plasma-web Chip -- _view.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/Chip/plasma-web Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/Chip/plasma-web Chip -- simple.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/Chip/plasma-web Chip -- with Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/ChipGroup/plasma-b2c ChipGroup -- _gap.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/ChipGroup/plasma-b2c ChipGroup -- _size.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/ChipGroup/plasma-b2c ChipGroup -- _view.snap.pngis excluded by!**/*.pngcypress/snapshots/web/chromium/ChipGroup/plasma-b2c ChipGroup -- custom chips.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/Chip/Chip -- disabled.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/Chip/Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/Chip/Chip -- pilled.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/Chip/Chip -- pin.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/Chip/Chip -- with icon.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/Chip/Chip -- without clear.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/Chip/plasma-web Chip -- _size.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/Chip/plasma-web Chip -- _view.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/Chip/plasma-web Chip -- fixed width.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/Chip/plasma-web Chip -- simple.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/Chip/plasma-web Chip -- with Icon.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/ChipGroup/ChipGroup -- isCommonChipStyles=false.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/ChipGroup/ChipGroup -- isWrapped.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/ChipGroup/ChipGroup -- size=xs.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/ChipGroup/ChipGroup -- view=accent, size=s.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/ChipGroup/ChipGroup -- view=default, size=l, gap=dense, shape=segmented.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/ChipGroup/ChipGroup -- view=secondary, size=m, gap=wide, shape=default.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/ChipGroup/plasma-b2c ChipGroup -- _gap.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/ChipGroup/plasma-b2c ChipGroup -- _size.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/ChipGroup/plasma-b2c ChipGroup -- _view.snap.pngis excluded by!**/*.pngcypress/snapshots/web/webkit/ChipGroup/plasma-b2c ChipGroup -- custom chips.snap.pngis excluded by!**/*.png
📒 Files selected for processing (78)
packages/plasma-b2c/src/components/Chip/Chip.component-test.tsxpackages/plasma-b2c/src/components/Chip/Chip.stories.tsxpackages/plasma-b2c/src/components/Chip/Chip.update-test.component-test.tsxpackages/plasma-b2c/src/components/ChipGroup/ChipGroup.component-test.tsxpackages/plasma-b2c/src/components/ChipGroup/ChipGroup.config.tspackages/plasma-b2c/src/components/ChipGroup/ChipGroup.stories.tsxpackages/plasma-b2c/src/components/ChipGroup/ChipGroup.update-test.component-test.tsxpackages/plasma-giga/src/components/Chip/Chip.stories.tsxpackages/plasma-giga/src/components/Chip/Chip.update-test.component-test.tsxpackages/plasma-giga/src/components/ChipGroup/ChipGroup.config.tspackages/plasma-giga/src/components/ChipGroup/ChipGroup.stories.tsxpackages/plasma-giga/src/components/ChipGroup/ChipGroup.update-test.component-test.tsxpackages/plasma-homeds/src/components/Chip/Chip.stories.tsxpackages/plasma-homeds/src/components/ChipGroup/ChipGroup.config.tspackages/plasma-homeds/src/components/ChipGroup/ChipGroup.stories.tsxpackages/plasma-new-hope/src/components/Chip/Chip.component-test.tsxpackages/plasma-new-hope/src/components/Chip/Chip.styles.tspackages/plasma-new-hope/src/components/Chip/Chip.template-doc.mdxpackages/plasma-new-hope/src/components/Chip/Chip.tokens.tspackages/plasma-new-hope/src/components/Chip/Chip.tsxpackages/plasma-new-hope/src/components/Chip/Chip.types.tspackages/plasma-new-hope/src/components/Chip/index.tspackages/plasma-new-hope/src/components/Chip/variations/_focused/base.tspackages/plasma-new-hope/src/components/Chip/variations/_pilled/base.tspackages/plasma-new-hope/src/components/Chip/variations/_size/base.tspackages/plasma-new-hope/src/components/ChipGroup/ChipGroup.component-test.tsxpackages/plasma-new-hope/src/components/ChipGroup/ChipGroup.template-doc.mdxpackages/plasma-new-hope/src/components/ChipGroup/ChipGroup.tokens.tspackages/plasma-new-hope/src/components/ChipGroup/ChipGroup.tsxpackages/plasma-new-hope/src/components/ChipGroup/ChipGroup.types.tspackages/plasma-new-hope/src/components/ChipGroup/variations/_shape/base.tspackages/plasma-new-hope/src/components/ChipGroup/variations/_shape/tokens.jsonpackages/plasma-new-hope/src/components/ChipGroup/variations/_view/base.tspackages/plasma-new-hope/src/examples/components/ChipGroup/ChipGroup.config.tspackages/plasma-new-hope/src/examples/components/ChipGroup/ChipGroup.stories.tsxpackages/plasma-web/src/components/Chip/Chip.component-test.tsxpackages/plasma-web/src/components/Chip/Chip.stories.tsxpackages/plasma-web/src/components/ChipGroup/ChipGroup.component-test.tsxpackages/plasma-web/src/components/ChipGroup/ChipGroup.config.tspackages/plasma-web/src/components/ChipGroup/ChipGroup.stories.tsxpackages/sdds-bizcom/src/components/Chip/Chip.stories.tsxpackages/sdds-bizcom/src/components/ChipGroup/ChipGroup.config.tspackages/sdds-bizcom/src/components/ChipGroup/ChipGroup.stories.tsxpackages/sdds-cs/src/components/Chip/Chip.update-test.component-test.tsxpackages/sdds-cs/src/components/ChipGroup/ChipGroup.config.tspackages/sdds-cs/src/components/ChipGroup/ChipGroup.stories.tsxpackages/sdds-cs/src/components/ChipGroup/ChipGroup.update-test.component-test.tsxpackages/sdds-dfa/src/components/Chip/Chip.stories.tsxpackages/sdds-dfa/src/components/ChipGroup/ChipGroup.config.tspackages/sdds-dfa/src/components/ChipGroup/ChipGroup.stories.tsxpackages/sdds-finai/src/components/ChipGroup/ChipGroup.config.tspackages/sdds-finai/src/components/ChipGroup/ChipGroup.stories.tsxpackages/sdds-insol/src/components/Chip/Chip.stories.tsxpackages/sdds-insol/src/components/Chip/Chip.update-test.component-test.tsxpackages/sdds-insol/src/components/ChipGroup/ChipGroup.config.tspackages/sdds-insol/src/components/ChipGroup/ChipGroup.stories.tsxpackages/sdds-insol/src/components/ChipGroup/ChipGroup.update-test.component-test.tsxpackages/sdds-netology/src/components/ChipGroup/ChipGroup.config.tspackages/sdds-netology/src/components/ChipGroup/ChipGroup.stories.tsxpackages/sdds-os/src/components/Chip/Chip.stories.tsxpackages/sdds-os/src/components/ChipGroup/ChipGroup.config.tspackages/sdds-os/src/components/ChipGroup/ChipGroup.stories.tsxpackages/sdds-platform-ai/src/components/Chip/Chip.stories.tsxpackages/sdds-platform-ai/src/components/ChipGroup/ChipGroup.config.tspackages/sdds-platform-ai/src/components/ChipGroup/ChipGroup.stories.tsxpackages/sdds-sbcom/src/components/Chip/Chip.stories.tsxpackages/sdds-sbcom/src/components/ChipGroup/ChipGroup.config.tspackages/sdds-sbcom/src/components/ChipGroup/ChipGroup.stories.tsxpackages/sdds-scan/src/components/Chip/Chip.stories.tsxpackages/sdds-scan/src/components/ChipGroup/ChipGroup.config.tspackages/sdds-scan/src/components/ChipGroup/ChipGroup.stories.tsxpackages/sdds-serv/src/components/Chip/Chip.stories.tsxpackages/sdds-serv/src/components/ChipGroup/ChipGroup.config.tspackages/sdds-serv/src/components/ChipGroup/ChipGroup.stories.tsxutils/plasma-sb-utils/src/components/Chip/fixtures.tsutils/plasma-sb-utils/src/components/Chip/meta.tswebsite/sdds-finai-docs/docs/components/Chip.mdxwebsite/sdds-finai-docs/docs/components/ChipGroup.mdx
💤 Files with no reviewable changes (13)
- packages/plasma-b2c/src/components/ChipGroup/ChipGroup.component-test.tsx
- packages/plasma-giga/src/components/Chip/Chip.update-test.component-test.tsx
- packages/plasma-new-hope/src/components/Chip/variations/_size/base.ts
- packages/sdds-insol/src/components/Chip/Chip.update-test.component-test.tsx
- packages/plasma-giga/src/components/ChipGroup/ChipGroup.update-test.component-test.tsx
- packages/plasma-b2c/src/components/Chip/Chip.update-test.component-test.tsx
- packages/sdds-cs/src/components/ChipGroup/ChipGroup.update-test.component-test.tsx
- packages/plasma-b2c/src/components/Chip/Chip.component-test.tsx
- packages/sdds-cs/src/components/Chip/Chip.update-test.component-test.tsx
- packages/sdds-insol/src/components/ChipGroup/ChipGroup.update-test.component-test.tsx
- packages/plasma-b2c/src/components/ChipGroup/ChipGroup.update-test.component-test.tsx
- packages/plasma-web/src/components/Chip/Chip.component-test.tsx
- packages/plasma-web/src/components/ChipGroup/ChipGroup.component-test.tsx
🚧 Files skipped from review as they are similar to previous changes (59)
- packages/sdds-dfa/src/components/Chip/Chip.stories.tsx
- packages/sdds-scan/src/components/Chip/Chip.stories.tsx
- packages/plasma-new-hope/src/components/ChipGroup/variations/_shape/tokens.json
- packages/plasma-new-hope/src/components/Chip/Chip.tokens.ts
- utils/plasma-sb-utils/src/components/Chip/fixtures.ts
- packages/plasma-new-hope/src/components/ChipGroup/ChipGroup.component-test.tsx
- packages/sdds-serv/src/components/Chip/Chip.stories.tsx
- packages/sdds-cs/src/components/ChipGroup/ChipGroup.config.ts
- packages/plasma-homeds/src/components/Chip/Chip.stories.tsx
- packages/plasma-new-hope/src/components/Chip/Chip.styles.ts
- packages/sdds-sbcom/src/components/ChipGroup/ChipGroup.config.ts
- packages/plasma-giga/src/components/Chip/Chip.stories.tsx
- packages/plasma-new-hope/src/components/ChipGroup/ChipGroup.tokens.ts
- packages/sdds-bizcom/src/components/ChipGroup/ChipGroup.stories.tsx
- packages/plasma-new-hope/src/components/Chip/Chip.template-doc.mdx
- packages/plasma-new-hope/src/components/Chip/index.ts
- packages/sdds-platform-ai/src/components/ChipGroup/ChipGroup.config.ts
- packages/sdds-platform-ai/src/components/ChipGroup/ChipGroup.stories.tsx
- packages/sdds-scan/src/components/ChipGroup/ChipGroup.config.ts
- packages/sdds-bizcom/src/components/Chip/Chip.stories.tsx
- packages/sdds-platform-ai/src/components/Chip/Chip.stories.tsx
- packages/sdds-serv/src/components/ChipGroup/ChipGroup.stories.tsx
- packages/sdds-os/src/components/ChipGroup/ChipGroup.config.ts
- packages/sdds-sbcom/src/components/Chip/Chip.stories.tsx
- packages/sdds-serv/src/components/ChipGroup/ChipGroup.config.ts
- packages/sdds-insol/src/components/Chip/Chip.stories.tsx
- packages/plasma-giga/src/components/ChipGroup/ChipGroup.config.ts
- packages/sdds-os/src/components/Chip/Chip.stories.tsx
- packages/sdds-netology/src/components/ChipGroup/ChipGroup.stories.tsx
- packages/sdds-netology/src/components/ChipGroup/ChipGroup.config.ts
- packages/sdds-sbcom/src/components/ChipGroup/ChipGroup.stories.tsx
- packages/sdds-dfa/src/components/ChipGroup/ChipGroup.config.ts
- packages/plasma-new-hope/src/examples/components/ChipGroup/ChipGroup.stories.tsx
- packages/plasma-web/src/components/Chip/Chip.stories.tsx
- packages/plasma-homeds/src/components/ChipGroup/ChipGroup.config.ts
- packages/plasma-b2c/src/components/ChipGroup/ChipGroup.config.ts
- packages/plasma-new-hope/src/components/ChipGroup/variations/_shape/base.ts
- packages/sdds-scan/src/components/ChipGroup/ChipGroup.stories.tsx
- packages/plasma-homeds/src/components/ChipGroup/ChipGroup.stories.tsx
- packages/sdds-insol/src/components/ChipGroup/ChipGroup.config.ts
- packages/plasma-web/src/components/ChipGroup/ChipGroup.stories.tsx
- packages/sdds-os/src/components/ChipGroup/ChipGroup.stories.tsx
- packages/plasma-b2c/src/components/ChipGroup/ChipGroup.stories.tsx
- packages/plasma-new-hope/src/components/ChipGroup/ChipGroup.tsx
- packages/plasma-web/src/components/ChipGroup/ChipGroup.config.ts
- packages/sdds-bizcom/src/components/ChipGroup/ChipGroup.config.ts
- packages/plasma-new-hope/src/components/Chip/variations/_focused/base.ts
- packages/sdds-cs/src/components/ChipGroup/ChipGroup.stories.tsx
- packages/plasma-giga/src/components/ChipGroup/ChipGroup.stories.tsx
- packages/plasma-new-hope/src/components/Chip/Chip.tsx
- packages/plasma-new-hope/src/components/ChipGroup/ChipGroup.types.ts
- packages/plasma-new-hope/src/examples/components/ChipGroup/ChipGroup.config.ts
- packages/plasma-new-hope/src/components/ChipGroup/ChipGroup.template-doc.mdx
- website/sdds-finai-docs/docs/components/ChipGroup.mdx
- packages/plasma-new-hope/src/components/Chip/Chip.component-test.tsx
- packages/plasma-new-hope/src/components/Chip/Chip.types.ts
- utils/plasma-sb-utils/src/components/Chip/meta.ts
- website/sdds-finai-docs/docs/components/Chip.mdx
- packages/plasma-new-hope/src/components/Chip/variations/_pilled/base.ts
| @@ -13,6 +13,7 @@ type Story = StoryObj<StoryProps>; | |||
| const views = ['default', 'accent', 'secondary']; | |||
| const sizes = ['l', 'm', 's', 'xs']; | |||
| const gapValues = ['dense', 'wide']; | |||
| const shapeValues = ['default']; | |||
There was a problem hiding this comment.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "== story files =="
fd -a 'ChipGroup\.stories\.tsx$' . | sed 's#^\./##'
echo "== relevant story snippets =="
for f in $(fd 'ChipGroup\.stories\.tsx$' packages); do
echo "--- $f"
nl -ba "$f" | sed -n '1,80p'
done
echo "== ChipGroup sources outline/search =="
git ls-files | rg '(^|/)ChipGroup\.tsx$|ChipGroup' | sed -n '1,200p'
echo "== shape/support references =="
rg -n "segmented|shape|default|ChipGroup|chipGroup|Segment" packages -g '*.tsx' -g '*.ts' | sed -n '1,240p'Repository: salute-developers/plasma
Length of output: 1716
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "== story outlines/snippets =="
for f in packages/sdds-dfa/src/components/ChipGroup/ChipGroup.stories.tsx packages/sdds-insol/src/components/ChipGroup/ChipGroup.stories.tsx; do
if [ -f "$f" ]; then
echo "--- $f"
awk '{printf "%6d %s\n", NR, $0}' "$f" | sed -n '1,120p'
else
echo "MISSING $f"
fi
done
echo "== ChipGroup component candidates =="
git ls-files | rg 'packages/.*/src/components/ChipGroup/(ChipGroup|.*Group)\.(tsx|ts)$|packages/.*/src/components/ChipGroup/index\.(tsx|ts)$' | sed -n '1,200p'
echo "== shape support references in ChipGroup-related files =="
python3 - <<'PY'
import pathlib, re
for root in pathlib.Path('packages').iterdir():
if not root.is_dir():
continue
for p in root.rglob('*'):
if 'ChipGroup' not in str(p):
continue
try:
s = p.read_text(encoding='utf-8', errors='ignore')
except Exception:
continue
hits = [n for n,line in enumerate(s.splitlines(),1) if re.search(r'\b(segmented|shape|default)\b', line, re.I)]
if hits:
print(f'--- {p}')
for n,line in hits[:60]:
print(f'{n}: {line.strip()}')
PY
echo "== focused grep shape/segmented in components/story docs =="
grep -RInE "segmented|ChipGroup|shape" packages/sdds-dfa packages/sdds-insol packages -g '*.tsx' -g '*.ts' -g '*ChipGroup*' 2>/dev/null | sed -n '1,240p'Repository: salute-developers/plasma
Length of output: 10053
🏁 Script executed:
#!/bin/bash
set -euo pipefail
for f in packages/sdds-dfa/src/components/ChipGroup/ChipGroup.ts packages/sdds-insol/src/components/ChipGroup/ChipGroup.ts; do
if [ -f "$f" ]; then
echo "--- $f"
awk '{printf "%6d %s\n", NR, $0}' "$f" | sed -n '1,220p'
else
echo "MISSING $f"
fi
done
echo "== all ChipGroup component files =="
git ls-files | rg 'packages/.*/src/components/ChipGroup/(ChipGroup|.*Group)\.(tsx|ts|js)$|packages/.*/src/components/ChipGroup/.*\.config\.(tsx|ts|js)$'
echo "== segmented/shape references around ChipGroup (focused) =="
python3 - <<'PY'
import pathlib, re
patterns = [
r'\b(segmented|shape)\b',
r'\bChipGroup\b',
]
for root in sorted(pathlib.Path('packages').iterdir()):
if not root.is_dir():
continue
for p in sorted(root.rglob('*')):
if p.suffix not in {'.tsx', '.ts', '.tsx', '.ts', '.js', '.jsx'}:
continue
s = p.read_text(errors='ignore')
if any(re.search(pat, s, re.I) for pat in patterns):
for line_no, line in enumerate(s.splitlines(), 1):
if re.search(r'segment|segmented|shape|ChipGroup', line, re.I):
print(f'{p}:{line_no}: {line.strip()}')
PYRepository: salute-developers/plasma
Length of output: 50381
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "== targeted ChipGroup-related tracked files =="
git ls-files | rg 'packages/(sdds-dfa|sdds-insol)/src/components/ChipGroup/|packages/(sdds-dfa|sdds-insol)/src/components/Chip/' | sed -n '1,200p'
echo "== targeted tracked file snippets =="
for f in $(git ls-files | rg 'packages/(sdds-dfa|sdds-insol)/src/components/(ChipGroup|Chip)/.*\.(ts|tsx)$'); do
echo "--- $f"
awk '{printf "%6d %s\n", NR, $0}' "$f" | sed -n '1,180p'
done
echo "== targeted segmented/shape references in tracked component files =="
python3 - <<'PY'
import pathlib, re
paths = set(p for p in pathlib.Path('packages').rglob('*')
if ((p.parts[1] in {'sdds-dfa', 'sdds-insol'}) and
all(part in {'src', 'components', 'ChipGroup', 'Chip'} or 'ChipGroup' in part or 'Chip' in part)
and p.suffix in {'.ts', '.tsx'}))
for p in sorted(paths):
text = p.read_text(errors='ignore')
if not re.search(r'segment|segmented|shape|ChipGroup|Chip', text, re.I):
continue
print(f'--- {p}')
for n, line in enumerate(text.splitlines(), 1):
if not re.search(r'segment|segmented|shape|ChipGroup', line, re.I):
continue
print(f'{n}: {line.strip()}')
PY
echo "== exact targeted grep for segmented in sdds packages =="
grep -RInE "\bsegmented\b|segmented:" packages/sdds-dfa packages/sdds-insol src/sdds 2>/dev/null | sed -n '1,200p' || trueRepository: salute-developers/plasma
Length of output: 50380
Expose segmented in both ChipGroup Storybook controls.
Both stories define shapeValues = ['default'] for the shape select, but both ChipGroup configs expose shape: { segmented: css``, default: css`` }. Add 'segmented' to these shapeValues arrays so Storybook controls cover the full configured option set.
📍 Affects 2 files
packages/sdds-dfa/src/components/ChipGroup/ChipGroup.stories.tsx#L16-L16(this comment)packages/sdds-insol/src/components/ChipGroup/ChipGroup.stories.tsx#L16-L16
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@packages/sdds-dfa/src/components/ChipGroup/ChipGroup.stories.tsx` at line 16,
Update shapeValues in both ChipGroup.stories.tsx
files—packages/sdds-dfa/src/components/ChipGroup/ChipGroup.stories.tsx:16 and
packages/sdds-insol/src/components/ChipGroup/ChipGroup.stories.tsx:16—to include
both 'default' and 'segmented', matching the configured ChipGroup shape options.
SDDS-FINAI
Chip
pin, которое позволяет задавать различные скругления на каждый уголChipGroup
shape, для задания скругленийWhat/why changed
pin, которое позволяет задавать различные скругления на каждый уголshape, для задания скруглений📦 Published PR as canary version:
Canary Versions✨ Test out this PR locally via:
npm install @salutejs/plasma-asdk@0.385.0-canary.2984.30362544206.0 npm install @salutejs/plasma-b2c@1.627.0-canary.2984.30362544206.0 npm install @salutejs/plasma-colors@0.17.0-canary.2984.30362544206.0 npm install @salutejs/plasma-core@1.234.0-canary.2984.30362544206.0 npm install @salutejs/plasma-giga@0.354.0-canary.2984.30362544206.0 npm install @salutejs/plasma-homeds@0.354.0-canary.2984.30362544206.0 npm install @salutejs/plasma-hope@1.381.0-canary.2984.30362544206.0 npm install @salutejs/plasma-icons@1.244.0-canary.2984.30362544206.0 npm install @salutejs/plasma-new-hope@0.371.0-canary.2984.30362544206.0 npm install @salutejs/plasma-tokens@1.146.0-canary.2984.30362544206.0 npm install @salutejs/plasma-tokens-b2b@1.60.0-canary.2984.30362544206.0 npm install @salutejs/plasma-tokens-b2c@0.71.0-canary.2984.30362544206.0 npm install @salutejs/plasma-tokens-core@0.8.0-canary.2984.30362544206.0 npm install @salutejs/plasma-tokens-web@1.75.0-canary.2984.30362544206.0 npm install @salutejs/plasma-typo@0.48.0-canary.2984.30362544206.0 npm install @salutejs/plasma-web@1.629.0-canary.2984.30362544206.0 npm install @salutejs/sdds-bizcom@0.359.0-canary.2984.30362544206.0 npm install @salutejs/sdds-cs@0.363.0-canary.2984.30362544206.0 npm install @salutejs/sdds-dfa@0.357.0-canary.2984.30362544206.0 npm install @salutejs/sdds-finai@0.350.0-canary.2984.30362544206.0 npm install @salutejs/sdds-insol@0.354.0-canary.2984.30362544206.0 npm install @salutejs/sdds-netology@0.358.0-canary.2984.30362544206.0 npm install @salutejs/sdds-os@0.29.0-canary.2984.30362544206.0 npm install @salutejs/sdds-platform-ai@0.358.0-canary.2984.30362544206.0 npm install @salutejs/sdds-sbcom@0.359.0-canary.2984.30362544206.0 npm install @salutejs/sdds-scan@0.357.0-canary.2984.30362544206.0 npm install @salutejs/sdds-serv@0.358.0-canary.2984.30362544206.0 npm install @salutejs/core-themes@0.36.0-canary.2984.30362544206.0 npm install @salutejs/plasma-themes@0.58.0-canary.2984.30362544206.0 npm install @salutejs/sdds-themes@0.72.0-canary.2984.30362544206.0 npm install @salutejs/sdds-api-tests@0.16.0-canary.2984.30362544206.0 npm install @salutejs/plasma-cy-utils@0.164.0-canary.2984.30362544206.0 npm install @salutejs/plasma-sb-utils@0.235.0-canary.2984.30362544206.0 npm install @salutejs/plasma-tokens-utils@0.56.0-canary.2984.30362544206.0 # or yarn add @salutejs/plasma-asdk@0.385.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-b2c@1.627.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-colors@0.17.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-core@1.234.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-giga@0.354.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-homeds@0.354.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-hope@1.381.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-icons@1.244.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-new-hope@0.371.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-tokens@1.146.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-tokens-b2b@1.60.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-tokens-b2c@0.71.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-tokens-core@0.8.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-tokens-web@1.75.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-typo@0.48.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-web@1.629.0-canary.2984.30362544206.0 yarn add @salutejs/sdds-bizcom@0.359.0-canary.2984.30362544206.0 yarn add @salutejs/sdds-cs@0.363.0-canary.2984.30362544206.0 yarn add @salutejs/sdds-dfa@0.357.0-canary.2984.30362544206.0 yarn add @salutejs/sdds-finai@0.350.0-canary.2984.30362544206.0 yarn add @salutejs/sdds-insol@0.354.0-canary.2984.30362544206.0 yarn add @salutejs/sdds-netology@0.358.0-canary.2984.30362544206.0 yarn add @salutejs/sdds-os@0.29.0-canary.2984.30362544206.0 yarn add @salutejs/sdds-platform-ai@0.358.0-canary.2984.30362544206.0 yarn add @salutejs/sdds-sbcom@0.359.0-canary.2984.30362544206.0 yarn add @salutejs/sdds-scan@0.357.0-canary.2984.30362544206.0 yarn add @salutejs/sdds-serv@0.358.0-canary.2984.30362544206.0 yarn add @salutejs/core-themes@0.36.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-themes@0.58.0-canary.2984.30362544206.0 yarn add @salutejs/sdds-themes@0.72.0-canary.2984.30362544206.0 yarn add @salutejs/sdds-api-tests@0.16.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-cy-utils@0.164.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-sb-utils@0.235.0-canary.2984.30362544206.0 yarn add @salutejs/plasma-tokens-utils@0.56.0-canary.2984.30362544206.0Summary by CodeRabbit
pinoption.shapesupport (default and segmented) with size-specific rounding.pinout of the props list UI.