@getflip/swirl-ai 0.470.1 → 0.471.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-end-series>`
2
+
3
+ ## Purpose
4
+
5
+ Custom element: swirl-icon-end-series.
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-end-series></swirl-icon-end-series>
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.
@@ -586,6 +586,10 @@
586
586
  "tag": "swirl-icon-emoji-symbols",
587
587
  "summary": "swirl-icon-emoji-symbols"
588
588
  },
589
+ {
590
+ "tag": "swirl-icon-end-series",
591
+ "summary": "swirl-icon-end-series"
592
+ },
589
593
  {
590
594
  "tag": "swirl-icon-error",
591
595
  "summary": "swirl-icon-error"
@@ -18958,6 +18958,101 @@
18958
18958
  }
18959
18959
  ]
18960
18960
  },
18961
+ {
18962
+ "kind": "javascript-module",
18963
+ "path": "src/components/swirl-icon/icons/swirl-icon-end-series.tsx",
18964
+ "declarations": [
18965
+ {
18966
+ "kind": "class",
18967
+ "customElement": true,
18968
+ "tagName": "swirl-icon-end-series",
18969
+ "name": "SwirlIconEndSeries",
18970
+ "attributes": [
18971
+ {
18972
+ "name": "color",
18973
+ "type": {
18974
+ "text": "\"critical\" | \"default\" | \"disabled\" | \"highlight\" | \"info\" | \"on-action-primary\" | \"on-image\" | \"on-status\" | \"on-surface-highlight\" | \"on-surface-highlight-subdued\" | \"strong\" | \"success\" | \"warning\" | undefined",
18975
+ "references": [
18976
+ {
18977
+ "name": "SwirlIconColor",
18978
+ "module": "../swirl-icon"
18979
+ }
18980
+ ]
18981
+ },
18982
+ "fieldName": "color"
18983
+ },
18984
+ {
18985
+ "name": "size",
18986
+ "type": {
18987
+ "text": "16 | 20 | 24 | 28 | undefined",
18988
+ "references": [
18989
+ {
18990
+ "name": "SwirlIconSize",
18991
+ "module": "../swirl-icon.types"
18992
+ }
18993
+ ]
18994
+ },
18995
+ "default": "24",
18996
+ "fieldName": "size"
18997
+ }
18998
+ ],
18999
+ "members": [
19000
+ {
19001
+ "kind": "field",
19002
+ "name": "color",
19003
+ "type": {
19004
+ "text": "\"critical\" | \"default\" | \"disabled\" | \"highlight\" | \"info\" | \"on-action-primary\" | \"on-image\" | \"on-status\" | \"on-surface-highlight\" | \"on-surface-highlight-subdued\" | \"strong\" | \"success\" | \"warning\" | undefined",
19005
+ "references": [
19006
+ {
19007
+ "name": "SwirlIconColor",
19008
+ "module": "../swirl-icon"
19009
+ }
19010
+ ]
19011
+ },
19012
+ "readonly": true,
19013
+ "attribute": "color"
19014
+ },
19015
+ {
19016
+ "kind": "field",
19017
+ "name": "size",
19018
+ "type": {
19019
+ "text": "16 | 20 | 24 | 28 | undefined",
19020
+ "references": [
19021
+ {
19022
+ "name": "SwirlIconSize",
19023
+ "module": "../swirl-icon.types"
19024
+ }
19025
+ ]
19026
+ },
19027
+ "default": "24",
19028
+ "readonly": true,
19029
+ "attribute": "size"
19030
+ }
19031
+ ],
19032
+ "cssParts": [
19033
+ {
19034
+ "name": "icon"
19035
+ }
19036
+ ]
19037
+ }
19038
+ ],
19039
+ "exports": [
19040
+ {
19041
+ "kind": "js",
19042
+ "name": "SwirlIconEndSeries",
19043
+ "declaration": {
19044
+ "name": "SwirlIconEndSeries"
19045
+ }
19046
+ },
19047
+ {
19048
+ "kind": "custom-element-definition",
19049
+ "name": "swirl-icon-end-series",
19050
+ "declaration": {
19051
+ "name": "SwirlIconEndSeries"
19052
+ }
19053
+ }
19054
+ ]
19055
+ },
18961
19056
  {
18962
19057
  "kind": "javascript-module",
18963
19058
  "path": "src/components/swirl-icon/icons/swirl-icon-error.tsx",
@@ -0,0 +1,7 @@
1
+ import { SwirlIconSize } from "../swirl-icon.types";
2
+ import { SwirlIconColor } from "../swirl-icon";
3
+ export declare class SwirlIconEndSeries {
4
+ color?: SwirlIconColor;
5
+ size: SwirlIconSize;
6
+ render(): any;
7
+ }
@@ -1868,6 +1868,13 @@ export namespace Components {
1868
1868
  */
1869
1869
  "size": SwirlIconSize;
1870
1870
  }
1871
+ interface SwirlIconEndSeries {
1872
+ "color"?: SwirlIconColor1;
1873
+ /**
1874
+ * @default 24
1875
+ */
1876
+ "size": SwirlIconSize;
1877
+ }
1871
1878
  interface SwirlIconError {
1872
1879
  "color"?: SwirlIconColor1;
1873
1880
  /**
@@ -6664,6 +6671,12 @@ declare global {
6664
6671
  prototype: HTMLSwirlIconEmojiSymbolsElement;
6665
6672
  new (): HTMLSwirlIconEmojiSymbolsElement;
6666
6673
  };
6674
+ interface HTMLSwirlIconEndSeriesElement extends Components.SwirlIconEndSeries, HTMLStencilElement {
6675
+ }
6676
+ var HTMLSwirlIconEndSeriesElement: {
6677
+ prototype: HTMLSwirlIconEndSeriesElement;
6678
+ new (): HTMLSwirlIconEndSeriesElement;
6679
+ };
6667
6680
  interface HTMLSwirlIconErrorElement extends Components.SwirlIconError, HTMLStencilElement {
6668
6681
  }
6669
6682
  var HTMLSwirlIconErrorElement: {
@@ -9327,6 +9340,7 @@ declare global {
9327
9340
  "swirl-icon-emoji-mood": HTMLSwirlIconEmojiMoodElement;
9328
9341
  "swirl-icon-emoji-satisfied": HTMLSwirlIconEmojiSatisfiedElement;
9329
9342
  "swirl-icon-emoji-symbols": HTMLSwirlIconEmojiSymbolsElement;
9343
+ "swirl-icon-end-series": HTMLSwirlIconEndSeriesElement;
9330
9344
  "swirl-icon-error": HTMLSwirlIconErrorElement;
9331
9345
  "swirl-icon-expand-less": HTMLSwirlIconExpandLessElement;
9332
9346
  "swirl-icon-expand-more": HTMLSwirlIconExpandMoreElement;
@@ -11316,6 +11330,13 @@ declare namespace LocalJSX {
11316
11330
  */
11317
11331
  "size"?: SwirlIconSize;
11318
11332
  }
11333
+ interface SwirlIconEndSeries {
11334
+ "color"?: SwirlIconColor1;
11335
+ /**
11336
+ * @default 24
11337
+ */
11338
+ "size"?: SwirlIconSize;
11339
+ }
11319
11340
  interface SwirlIconError {
11320
11341
  "color"?: SwirlIconColor1;
11321
11342
  /**
@@ -15472,6 +15493,10 @@ declare namespace LocalJSX {
15472
15493
  "color": SwirlIconColor;
15473
15494
  "size": SwirlIconSize;
15474
15495
  }
15496
+ interface SwirlIconEndSeriesAttributes {
15497
+ "color": SwirlIconColor;
15498
+ "size": SwirlIconSize;
15499
+ }
15475
15500
  interface SwirlIconErrorAttributes {
15476
15501
  "color": SwirlIconColor;
15477
15502
  "size": SwirlIconSize;
@@ -17289,6 +17314,7 @@ declare namespace LocalJSX {
17289
17314
  "swirl-icon-emoji-mood": Omit<SwirlIconEmojiMood, keyof SwirlIconEmojiMoodAttributes> & { [K in keyof SwirlIconEmojiMood & keyof SwirlIconEmojiMoodAttributes]?: SwirlIconEmojiMood[K] } & { [K in keyof SwirlIconEmojiMood & keyof SwirlIconEmojiMoodAttributes as `attr:${K}`]?: SwirlIconEmojiMoodAttributes[K] } & { [K in keyof SwirlIconEmojiMood & keyof SwirlIconEmojiMoodAttributes as `prop:${K}`]?: SwirlIconEmojiMood[K] };
17290
17315
  "swirl-icon-emoji-satisfied": Omit<SwirlIconEmojiSatisfied, keyof SwirlIconEmojiSatisfiedAttributes> & { [K in keyof SwirlIconEmojiSatisfied & keyof SwirlIconEmojiSatisfiedAttributes]?: SwirlIconEmojiSatisfied[K] } & { [K in keyof SwirlIconEmojiSatisfied & keyof SwirlIconEmojiSatisfiedAttributes as `attr:${K}`]?: SwirlIconEmojiSatisfiedAttributes[K] } & { [K in keyof SwirlIconEmojiSatisfied & keyof SwirlIconEmojiSatisfiedAttributes as `prop:${K}`]?: SwirlIconEmojiSatisfied[K] };
17291
17316
  "swirl-icon-emoji-symbols": Omit<SwirlIconEmojiSymbols, keyof SwirlIconEmojiSymbolsAttributes> & { [K in keyof SwirlIconEmojiSymbols & keyof SwirlIconEmojiSymbolsAttributes]?: SwirlIconEmojiSymbols[K] } & { [K in keyof SwirlIconEmojiSymbols & keyof SwirlIconEmojiSymbolsAttributes as `attr:${K}`]?: SwirlIconEmojiSymbolsAttributes[K] } & { [K in keyof SwirlIconEmojiSymbols & keyof SwirlIconEmojiSymbolsAttributes as `prop:${K}`]?: SwirlIconEmojiSymbols[K] };
17317
+ "swirl-icon-end-series": Omit<SwirlIconEndSeries, keyof SwirlIconEndSeriesAttributes> & { [K in keyof SwirlIconEndSeries & keyof SwirlIconEndSeriesAttributes]?: SwirlIconEndSeries[K] } & { [K in keyof SwirlIconEndSeries & keyof SwirlIconEndSeriesAttributes as `attr:${K}`]?: SwirlIconEndSeriesAttributes[K] } & { [K in keyof SwirlIconEndSeries & keyof SwirlIconEndSeriesAttributes as `prop:${K}`]?: SwirlIconEndSeries[K] };
17292
17318
  "swirl-icon-error": Omit<SwirlIconError, keyof SwirlIconErrorAttributes> & { [K in keyof SwirlIconError & keyof SwirlIconErrorAttributes]?: SwirlIconError[K] } & { [K in keyof SwirlIconError & keyof SwirlIconErrorAttributes as `attr:${K}`]?: SwirlIconErrorAttributes[K] } & { [K in keyof SwirlIconError & keyof SwirlIconErrorAttributes as `prop:${K}`]?: SwirlIconError[K] };
17293
17319
  "swirl-icon-expand-less": Omit<SwirlIconExpandLess, keyof SwirlIconExpandLessAttributes> & { [K in keyof SwirlIconExpandLess & keyof SwirlIconExpandLessAttributes]?: SwirlIconExpandLess[K] } & { [K in keyof SwirlIconExpandLess & keyof SwirlIconExpandLessAttributes as `attr:${K}`]?: SwirlIconExpandLessAttributes[K] } & { [K in keyof SwirlIconExpandLess & keyof SwirlIconExpandLessAttributes as `prop:${K}`]?: SwirlIconExpandLess[K] };
17294
17320
  "swirl-icon-expand-more": Omit<SwirlIconExpandMore, keyof SwirlIconExpandMoreAttributes> & { [K in keyof SwirlIconExpandMore & keyof SwirlIconExpandMoreAttributes]?: SwirlIconExpandMore[K] } & { [K in keyof SwirlIconExpandMore & keyof SwirlIconExpandMoreAttributes as `attr:${K}`]?: SwirlIconExpandMoreAttributes[K] } & { [K in keyof SwirlIconExpandMore & keyof SwirlIconExpandMoreAttributes as `prop:${K}`]?: SwirlIconExpandMore[K] };
@@ -17789,6 +17815,7 @@ declare module "@stencil/core" {
17789
17815
  "swirl-icon-emoji-mood": LocalJSX.IntrinsicElements["swirl-icon-emoji-mood"] & JSXBase.HTMLAttributes<HTMLSwirlIconEmojiMoodElement>;
17790
17816
  "swirl-icon-emoji-satisfied": LocalJSX.IntrinsicElements["swirl-icon-emoji-satisfied"] & JSXBase.HTMLAttributes<HTMLSwirlIconEmojiSatisfiedElement>;
17791
17817
  "swirl-icon-emoji-symbols": LocalJSX.IntrinsicElements["swirl-icon-emoji-symbols"] & JSXBase.HTMLAttributes<HTMLSwirlIconEmojiSymbolsElement>;
17818
+ "swirl-icon-end-series": LocalJSX.IntrinsicElements["swirl-icon-end-series"] & JSXBase.HTMLAttributes<HTMLSwirlIconEndSeriesElement>;
17792
17819
  "swirl-icon-error": LocalJSX.IntrinsicElements["swirl-icon-error"] & JSXBase.HTMLAttributes<HTMLSwirlIconErrorElement>;
17793
17820
  "swirl-icon-expand-less": LocalJSX.IntrinsicElements["swirl-icon-expand-less"] & JSXBase.HTMLAttributes<HTMLSwirlIconExpandLessElement>;
17794
17821
  "swirl-icon-expand-more": LocalJSX.IntrinsicElements["swirl-icon-expand-more"] & JSXBase.HTMLAttributes<HTMLSwirlIconExpandMoreElement>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-ai",
3
- "version": "0.470.1",
3
+ "version": "0.471.0",
4
4
  "description": "Swirl Design System AI package with artifacts for AI agents",
5
5
  "author": "Flip GmbH",
6
6
  "repository": {
@@ -49,7 +49,7 @@
49
49
  "zod": "3.24.0"
50
50
  },
51
51
  "devDependencies": {
52
- "@getflip/swirl-components": "0.470.1",
52
+ "@getflip/swirl-components": "0.471.0",
53
53
  "@types/node": "25.3.0",
54
54
  "tsup": "^8.0.0",
55
55
  "tsx": "^4.7.0",