@getflip/swirl-ai 0.507.0 → 0.508.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,6 +27,7 @@ The SwirlChip component is used to represent an input, attribute, or action.
27
27
  ## Slots
28
28
 
29
29
  - **`avatar`** – Optional avatar displayed inside the chip. Should have size "xs".
30
+ - **`trailing-content`** – Optional content displayed at the end of the chip.
30
31
 
31
32
  ## Events
32
33
 
@@ -6264,6 +6264,10 @@
6264
6264
  {
6265
6265
  "name": "avatar",
6266
6266
  "description": "Optional avatar displayed inside the chip. Should have size \"xs\"."
6267
+ },
6268
+ {
6269
+ "name": "trailing-content",
6270
+ "description": "Optional content displayed at the end of the chip."
6267
6271
  }
6268
6272
  ],
6269
6273
  "description": "The SwirlChip component is used to represent an input, attribute, or action.\n\nAccessibility\n\n### ARIA\n\n| ARIA | Usage |\n| --------------- | ------------------------------------------------------------------- |\n| `role=\"button\"` | For interactive chips; achieved by using a native `button` element. |\n\n### Keyboard\n\n| Key | Action |\n| ---------------- | ------------------------------- |\n| <kbd>ENTER</kbd> | Activates the interactive chip. |\n| <kbd>SPACE</kbd> | Activates the interactive chip. |"
@@ -6,6 +6,7 @@ export type SwirlChipSize = "s" | "m";
6
6
  export type SwirlChipVariant = "outline" | "plain" | "translucent";
7
7
  /**
8
8
  * @slot avatar - Optional avatar displayed inside the chip. Should have size "xs".
9
+ * @slot trailing-content - Optional content displayed at the end of the chip.
9
10
  */
10
11
  export declare class SwirlChip {
11
12
  el: HTMLElement;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-ai",
3
- "version": "0.507.0",
3
+ "version": "0.508.0",
4
4
  "description": "Swirl Design System AI package with artifacts for AI agents",
5
5
  "author": "Flip GmbH",
6
6
  "repository": {
@@ -26,7 +26,7 @@
26
26
  "lint": "tsc --noEmit"
27
27
  },
28
28
  "devDependencies": {
29
- "@getflip/swirl-components": "0.507.0",
29
+ "@getflip/swirl-components": "0.508.0",
30
30
  "@getflip/swirl-tokens": "2.14.3",
31
31
  "@types/node": "25.3.0",
32
32
  "tsx": "^4.7.0",