@getflip/swirl-ai 0.509.0 → 0.510.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.
@@ -11,6 +11,7 @@ The SwirlChip component is used to represent an input, attribute, or action.
11
11
  ## Optional props
12
12
 
13
13
  - `borderRadius` ("pill" | "sm" | undefined) –
14
+ - `disabled` (boolean | undefined) –
14
15
  - `icon` (string | undefined) –
15
16
  - `iconColor` ("default" | "highlight" | undefined) –
16
17
  - `intent` ("critical" | "default" | "highlight" | "success" | undefined) –
@@ -5954,6 +5954,13 @@
5954
5954
  "default": "\"pill\"",
5955
5955
  "fieldName": "borderRadius"
5956
5956
  },
5957
+ {
5958
+ "name": "disabled",
5959
+ "type": {
5960
+ "text": "boolean | undefined"
5961
+ },
5962
+ "fieldName": "disabled"
5963
+ },
5957
5964
  {
5958
5965
  "name": "icon",
5959
5966
  "type": {
@@ -6089,6 +6096,15 @@
6089
6096
  "readonly": true,
6090
6097
  "attribute": "border-radius"
6091
6098
  },
6099
+ {
6100
+ "kind": "field",
6101
+ "name": "disabled",
6102
+ "type": {
6103
+ "text": "boolean | undefined"
6104
+ },
6105
+ "readonly": true,
6106
+ "attribute": "disabled"
6107
+ },
6092
6108
  {
6093
6109
  "kind": "field",
6094
6110
  "name": "icon",
@@ -11,6 +11,7 @@ export type SwirlChipVariant = "outline" | "plain" | "translucent";
11
11
  export declare class SwirlChip {
12
12
  el: HTMLElement;
13
13
  borderRadius?: SwirlChipBorderRadius;
14
+ disabled?: boolean;
14
15
  icon?: string;
15
16
  iconColor?: SwirlChipIconColor;
16
17
  trailingIcon?: string;
@@ -745,6 +745,7 @@ export namespace Components {
745
745
  * @default "pill"
746
746
  */
747
747
  "borderRadius"?: SwirlChipBorderRadius;
748
+ "disabled"?: boolean;
748
749
  "icon"?: string;
749
750
  /**
750
751
  * @default "default"
@@ -10818,6 +10819,7 @@ declare namespace LocalJSX {
10818
10819
  * @default "pill"
10819
10820
  */
10820
10821
  "borderRadius"?: SwirlChipBorderRadius;
10822
+ "disabled"?: boolean;
10821
10823
  "icon"?: string;
10822
10824
  /**
10823
10825
  * @default "default"
@@ -15974,6 +15976,7 @@ declare namespace LocalJSX {
15974
15976
  }
15975
15977
  interface SwirlChipAttributes {
15976
15978
  "borderRadius": SwirlChipBorderRadius;
15979
+ "disabled": boolean;
15977
15980
  "icon": string;
15978
15981
  "iconColor": SwirlChipIconColor;
15979
15982
  "trailingIcon": string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-ai",
3
- "version": "0.509.0",
3
+ "version": "0.510.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.509.0",
29
+ "@getflip/swirl-components": "0.510.0",
30
30
  "@getflip/swirl-tokens": "2.14.3",
31
31
  "@types/node": "25.3.0",
32
32
  "tsx": "^4.7.0",