@getflip/swirl-ai 0.464.1 → 0.465.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.
@@ -0,0 +1,49 @@
1
+ # `<swirl-icon-repeat>`
2
+
3
+ ## Purpose
4
+
5
+ Custom element: swirl-icon-repeat.
6
+
7
+ ## Required props
8
+
9
+ _None._
10
+
11
+ ## Optional props
12
+
13
+ - `color` ("critical" | "default" | "disabled" | "highlight" | "info" | "on-action-primary" | "on-image" | "on-status" | "on-surface-highlight" | "on-surface-highlight-subdued" | "strong" | "success" | "warning" | undefined) –
14
+ - `size` (16 | 20 | 24 | 28 | undefined) –
15
+
16
+ ## Slots
17
+
18
+ _None._
19
+
20
+ ## Events
21
+
22
+ _None._
23
+
24
+ ## Methods
25
+
26
+ _None._
27
+
28
+ ## Related components
29
+
30
+ _See description for usage context._
31
+
32
+ ## Accessibility
33
+
34
+ _See full docs for accessibility details._
35
+
36
+ ## Minimal example
37
+
38
+ ```html
39
+ <swirl-icon-repeat></swirl-icon-repeat>
40
+ ```
41
+
42
+ ## Usage example
43
+
44
+ _No usage example in docs._
45
+
46
+ ## Common mistakes
47
+
48
+ - Ensure required props are set.
49
+ - Use only allowed slot names and child components where documented.
@@ -1018,6 +1018,10 @@
1018
1018
  "tag": "swirl-icon-remove-moderator",
1019
1019
  "summary": "swirl-icon-remove-moderator"
1020
1020
  },
1021
+ {
1022
+ "tag": "swirl-icon-repeat",
1023
+ "summary": "swirl-icon-repeat"
1024
+ },
1021
1025
  {
1022
1026
  "tag": "swirl-icon-reply",
1023
1027
  "summary": "swirl-icon-reply"
@@ -29218,6 +29218,101 @@
29218
29218
  }
29219
29219
  ]
29220
29220
  },
29221
+ {
29222
+ "kind": "javascript-module",
29223
+ "path": "src/components/swirl-icon/icons/swirl-icon-repeat.tsx",
29224
+ "declarations": [
29225
+ {
29226
+ "kind": "class",
29227
+ "customElement": true,
29228
+ "tagName": "swirl-icon-repeat",
29229
+ "name": "SwirlIconRepeat",
29230
+ "attributes": [
29231
+ {
29232
+ "name": "color",
29233
+ "type": {
29234
+ "text": "\"critical\" | \"default\" | \"disabled\" | \"highlight\" | \"info\" | \"on-action-primary\" | \"on-image\" | \"on-status\" | \"on-surface-highlight\" | \"on-surface-highlight-subdued\" | \"strong\" | \"success\" | \"warning\" | undefined",
29235
+ "references": [
29236
+ {
29237
+ "name": "SwirlIconColor",
29238
+ "module": "../swirl-icon"
29239
+ }
29240
+ ]
29241
+ },
29242
+ "fieldName": "color"
29243
+ },
29244
+ {
29245
+ "name": "size",
29246
+ "type": {
29247
+ "text": "16 | 20 | 24 | 28 | undefined",
29248
+ "references": [
29249
+ {
29250
+ "name": "SwirlIconSize",
29251
+ "module": "../swirl-icon.types"
29252
+ }
29253
+ ]
29254
+ },
29255
+ "default": "24",
29256
+ "fieldName": "size"
29257
+ }
29258
+ ],
29259
+ "members": [
29260
+ {
29261
+ "kind": "field",
29262
+ "name": "color",
29263
+ "type": {
29264
+ "text": "\"critical\" | \"default\" | \"disabled\" | \"highlight\" | \"info\" | \"on-action-primary\" | \"on-image\" | \"on-status\" | \"on-surface-highlight\" | \"on-surface-highlight-subdued\" | \"strong\" | \"success\" | \"warning\" | undefined",
29265
+ "references": [
29266
+ {
29267
+ "name": "SwirlIconColor",
29268
+ "module": "../swirl-icon"
29269
+ }
29270
+ ]
29271
+ },
29272
+ "readonly": true,
29273
+ "attribute": "color"
29274
+ },
29275
+ {
29276
+ "kind": "field",
29277
+ "name": "size",
29278
+ "type": {
29279
+ "text": "16 | 20 | 24 | 28 | undefined",
29280
+ "references": [
29281
+ {
29282
+ "name": "SwirlIconSize",
29283
+ "module": "../swirl-icon.types"
29284
+ }
29285
+ ]
29286
+ },
29287
+ "default": "24",
29288
+ "readonly": true,
29289
+ "attribute": "size"
29290
+ }
29291
+ ],
29292
+ "cssParts": [
29293
+ {
29294
+ "name": "icon"
29295
+ }
29296
+ ]
29297
+ }
29298
+ ],
29299
+ "exports": [
29300
+ {
29301
+ "kind": "js",
29302
+ "name": "SwirlIconRepeat",
29303
+ "declaration": {
29304
+ "name": "SwirlIconRepeat"
29305
+ }
29306
+ },
29307
+ {
29308
+ "kind": "custom-element-definition",
29309
+ "name": "swirl-icon-repeat",
29310
+ "declaration": {
29311
+ "name": "SwirlIconRepeat"
29312
+ }
29313
+ }
29314
+ ]
29315
+ },
29221
29316
  {
29222
29317
  "kind": "javascript-module",
29223
29318
  "path": "src/components/swirl-icon/icons/swirl-icon-reply.tsx",
@@ -0,0 +1,7 @@
1
+ import { SwirlIconSize } from "../swirl-icon.types";
2
+ import { SwirlIconColor } from "../swirl-icon";
3
+ export declare class SwirlIconRepeat {
4
+ color?: SwirlIconColor;
5
+ size: SwirlIconSize;
6
+ render(): any;
7
+ }
@@ -2624,6 +2624,13 @@ export namespace Components {
2624
2624
  */
2625
2625
  "size": SwirlIconSize;
2626
2626
  }
2627
+ interface SwirlIconRepeat {
2628
+ "color"?: SwirlIconColor1;
2629
+ /**
2630
+ * @default 24
2631
+ */
2632
+ "size": SwirlIconSize;
2633
+ }
2627
2634
  interface SwirlIconReply {
2628
2635
  "color"?: SwirlIconColor1;
2629
2636
  /**
@@ -7221,6 +7228,12 @@ declare global {
7221
7228
  prototype: HTMLSwirlIconRemoveModeratorElement;
7222
7229
  new (): HTMLSwirlIconRemoveModeratorElement;
7223
7230
  };
7231
+ interface HTMLSwirlIconRepeatElement extends Components.SwirlIconRepeat, HTMLStencilElement {
7232
+ }
7233
+ var HTMLSwirlIconRepeatElement: {
7234
+ prototype: HTMLSwirlIconRepeatElement;
7235
+ new (): HTMLSwirlIconRepeatElement;
7236
+ };
7224
7237
  interface HTMLSwirlIconReplyElement extends Components.SwirlIconReply, HTMLStencilElement {
7225
7238
  }
7226
7239
  var HTMLSwirlIconReplyElement: {
@@ -9266,6 +9279,7 @@ declare global {
9266
9279
  "swirl-icon-remove": HTMLSwirlIconRemoveElement;
9267
9280
  "swirl-icon-remove-circle": HTMLSwirlIconRemoveCircleElement;
9268
9281
  "swirl-icon-remove-moderator": HTMLSwirlIconRemoveModeratorElement;
9282
+ "swirl-icon-repeat": HTMLSwirlIconRepeatElement;
9269
9283
  "swirl-icon-reply": HTMLSwirlIconReplyElement;
9270
9284
  "swirl-icon-report": HTMLSwirlIconReportElement;
9271
9285
  "swirl-icon-roadmap": HTMLSwirlIconRoadmapElement;
@@ -11890,6 +11904,13 @@ declare namespace LocalJSX {
11890
11904
  */
11891
11905
  "size"?: SwirlIconSize;
11892
11906
  }
11907
+ interface SwirlIconRepeat {
11908
+ "color"?: SwirlIconColor1;
11909
+ /**
11910
+ * @default 24
11911
+ */
11912
+ "size"?: SwirlIconSize;
11913
+ }
11893
11914
  interface SwirlIconReply {
11894
11915
  "color"?: SwirlIconColor1;
11895
11916
  /**
@@ -15631,6 +15652,10 @@ declare namespace LocalJSX {
15631
15652
  "color": SwirlIconColor;
15632
15653
  "size": SwirlIconSize;
15633
15654
  }
15655
+ interface SwirlIconRepeatAttributes {
15656
+ "color": SwirlIconColor;
15657
+ "size": SwirlIconSize;
15658
+ }
15634
15659
  interface SwirlIconReplyAttributes {
15635
15660
  "color": SwirlIconColor;
15636
15661
  "size": SwirlIconSize;
@@ -17072,6 +17097,7 @@ declare namespace LocalJSX {
17072
17097
  "swirl-icon-remove": Omit<SwirlIconRemove, keyof SwirlIconRemoveAttributes> & { [K in keyof SwirlIconRemove & keyof SwirlIconRemoveAttributes]?: SwirlIconRemove[K] } & { [K in keyof SwirlIconRemove & keyof SwirlIconRemoveAttributes as `attr:${K}`]?: SwirlIconRemoveAttributes[K] } & { [K in keyof SwirlIconRemove & keyof SwirlIconRemoveAttributes as `prop:${K}`]?: SwirlIconRemove[K] };
17073
17098
  "swirl-icon-remove-circle": Omit<SwirlIconRemoveCircle, keyof SwirlIconRemoveCircleAttributes> & { [K in keyof SwirlIconRemoveCircle & keyof SwirlIconRemoveCircleAttributes]?: SwirlIconRemoveCircle[K] } & { [K in keyof SwirlIconRemoveCircle & keyof SwirlIconRemoveCircleAttributes as `attr:${K}`]?: SwirlIconRemoveCircleAttributes[K] } & { [K in keyof SwirlIconRemoveCircle & keyof SwirlIconRemoveCircleAttributes as `prop:${K}`]?: SwirlIconRemoveCircle[K] };
17074
17099
  "swirl-icon-remove-moderator": Omit<SwirlIconRemoveModerator, keyof SwirlIconRemoveModeratorAttributes> & { [K in keyof SwirlIconRemoveModerator & keyof SwirlIconRemoveModeratorAttributes]?: SwirlIconRemoveModerator[K] } & { [K in keyof SwirlIconRemoveModerator & keyof SwirlIconRemoveModeratorAttributes as `attr:${K}`]?: SwirlIconRemoveModeratorAttributes[K] } & { [K in keyof SwirlIconRemoveModerator & keyof SwirlIconRemoveModeratorAttributes as `prop:${K}`]?: SwirlIconRemoveModerator[K] };
17100
+ "swirl-icon-repeat": Omit<SwirlIconRepeat, keyof SwirlIconRepeatAttributes> & { [K in keyof SwirlIconRepeat & keyof SwirlIconRepeatAttributes]?: SwirlIconRepeat[K] } & { [K in keyof SwirlIconRepeat & keyof SwirlIconRepeatAttributes as `attr:${K}`]?: SwirlIconRepeatAttributes[K] } & { [K in keyof SwirlIconRepeat & keyof SwirlIconRepeatAttributes as `prop:${K}`]?: SwirlIconRepeat[K] };
17075
17101
  "swirl-icon-reply": Omit<SwirlIconReply, keyof SwirlIconReplyAttributes> & { [K in keyof SwirlIconReply & keyof SwirlIconReplyAttributes]?: SwirlIconReply[K] } & { [K in keyof SwirlIconReply & keyof SwirlIconReplyAttributes as `attr:${K}`]?: SwirlIconReplyAttributes[K] } & { [K in keyof SwirlIconReply & keyof SwirlIconReplyAttributes as `prop:${K}`]?: SwirlIconReply[K] };
17076
17102
  "swirl-icon-report": Omit<SwirlIconReport, keyof SwirlIconReportAttributes> & { [K in keyof SwirlIconReport & keyof SwirlIconReportAttributes]?: SwirlIconReport[K] } & { [K in keyof SwirlIconReport & keyof SwirlIconReportAttributes as `attr:${K}`]?: SwirlIconReportAttributes[K] } & { [K in keyof SwirlIconReport & keyof SwirlIconReportAttributes as `prop:${K}`]?: SwirlIconReport[K] };
17077
17103
  "swirl-icon-roadmap": Omit<SwirlIconRoadmap, keyof SwirlIconRoadmapAttributes> & { [K in keyof SwirlIconRoadmap & keyof SwirlIconRoadmapAttributes]?: SwirlIconRoadmap[K] } & { [K in keyof SwirlIconRoadmap & keyof SwirlIconRoadmapAttributes as `attr:${K}`]?: SwirlIconRoadmapAttributes[K] } & { [K in keyof SwirlIconRoadmap & keyof SwirlIconRoadmapAttributes as `prop:${K}`]?: SwirlIconRoadmap[K] };
@@ -17559,6 +17585,7 @@ declare module "@stencil/core" {
17559
17585
  "swirl-icon-remove": LocalJSX.IntrinsicElements["swirl-icon-remove"] & JSXBase.HTMLAttributes<HTMLSwirlIconRemoveElement>;
17560
17586
  "swirl-icon-remove-circle": LocalJSX.IntrinsicElements["swirl-icon-remove-circle"] & JSXBase.HTMLAttributes<HTMLSwirlIconRemoveCircleElement>;
17561
17587
  "swirl-icon-remove-moderator": LocalJSX.IntrinsicElements["swirl-icon-remove-moderator"] & JSXBase.HTMLAttributes<HTMLSwirlIconRemoveModeratorElement>;
17588
+ "swirl-icon-repeat": LocalJSX.IntrinsicElements["swirl-icon-repeat"] & JSXBase.HTMLAttributes<HTMLSwirlIconRepeatElement>;
17562
17589
  "swirl-icon-reply": LocalJSX.IntrinsicElements["swirl-icon-reply"] & JSXBase.HTMLAttributes<HTMLSwirlIconReplyElement>;
17563
17590
  "swirl-icon-report": LocalJSX.IntrinsicElements["swirl-icon-report"] & JSXBase.HTMLAttributes<HTMLSwirlIconReportElement>;
17564
17591
  "swirl-icon-roadmap": LocalJSX.IntrinsicElements["swirl-icon-roadmap"] & JSXBase.HTMLAttributes<HTMLSwirlIconRoadmapElement>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-ai",
3
- "version": "0.464.1",
3
+ "version": "0.465.0",
4
4
  "description": "Swirl Design System AI package with artifacts for AI agents",
5
5
  "author": "Flip GmbH",
6
6
  "repository": "https://github.com/getflip/swirl",
@@ -46,7 +46,7 @@
46
46
  "zod": "3.24.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@getflip/swirl-components": "0.464.1",
49
+ "@getflip/swirl-components": "0.465.0",
50
50
  "@types/node": "25.3.0",
51
51
  "tsup": "^8.0.0",
52
52
  "tsx": "^4.7.0",