@getflip/swirl-ai 0.489.0 → 0.490.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,8 @@
1
+ import { SwirlIconSize } from "../swirl-icon.types";
2
+ import { SwirlIconColor } from "../swirl-icon";
3
+ export declare class SwirlIconBold {
4
+ color?: SwirlIconColor;
5
+ label?: string;
6
+ size: SwirlIconSize;
7
+ render(): any;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { SwirlIconSize } from "../swirl-icon.types";
2
+ import { SwirlIconColor } from "../swirl-icon";
3
+ export declare class SwirlIconFormatListNumbered {
4
+ color?: SwirlIconColor;
5
+ label?: string;
6
+ size: SwirlIconSize;
7
+ render(): any;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { SwirlIconSize } from "../swirl-icon.types";
2
+ import { SwirlIconColor } from "../swirl-icon";
3
+ export declare class SwirlIconItalic {
4
+ color?: SwirlIconColor;
5
+ label?: string;
6
+ size: SwirlIconSize;
7
+ render(): any;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { SwirlIconSize } from "../swirl-icon.types";
2
+ import { SwirlIconColor } from "../swirl-icon";
3
+ export declare class SwirlIconStrikethrough {
4
+ color?: SwirlIconColor;
5
+ label?: string;
6
+ size: SwirlIconSize;
7
+ render(): any;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { SwirlIconSize } from "../swirl-icon.types";
2
+ import { SwirlIconColor } from "../swirl-icon";
3
+ export declare class SwirlIconUnderlined {
4
+ color?: SwirlIconColor;
5
+ label?: string;
6
+ size: SwirlIconSize;
7
+ render(): any;
8
+ }
@@ -1518,6 +1518,14 @@ export namespace Components {
1518
1518
  */
1519
1519
  "size": SwirlIconSize;
1520
1520
  }
1521
+ interface SwirlIconBold {
1522
+ "color"?: SwirlIconColor1;
1523
+ "label"?: string;
1524
+ /**
1525
+ * @default 24
1526
+ */
1527
+ "size": SwirlIconSize;
1528
+ }
1521
1529
  interface SwirlIconBookmark {
1522
1530
  "color"?: SwirlIconColor1;
1523
1531
  "label"?: string;
@@ -2062,6 +2070,14 @@ export namespace Components {
2062
2070
  */
2063
2071
  "size": SwirlIconSize;
2064
2072
  }
2073
+ interface SwirlIconFormatListNumbered {
2074
+ "color"?: SwirlIconColor1;
2075
+ "label"?: string;
2076
+ /**
2077
+ * @default 24
2078
+ */
2079
+ "size": SwirlIconSize;
2080
+ }
2065
2081
  interface SwirlIconForward {
2066
2082
  "color"?: SwirlIconColor1;
2067
2083
  "label"?: string;
@@ -2270,6 +2286,14 @@ export namespace Components {
2270
2286
  */
2271
2287
  "size": SwirlIconSize;
2272
2288
  }
2289
+ interface SwirlIconItalic {
2290
+ "color"?: SwirlIconColor1;
2291
+ "label"?: string;
2292
+ /**
2293
+ * @default 24
2294
+ */
2295
+ "size": SwirlIconSize;
2296
+ }
2273
2297
  interface SwirlIconKey {
2274
2298
  "color"?: SwirlIconColor1;
2275
2299
  "label"?: string;
@@ -3094,6 +3118,14 @@ export namespace Components {
3094
3118
  */
3095
3119
  "size": SwirlIconSize;
3096
3120
  }
3121
+ interface SwirlIconStrikethrough {
3122
+ "color"?: SwirlIconColor1;
3123
+ "label"?: string;
3124
+ /**
3125
+ * @default 24
3126
+ */
3127
+ "size": SwirlIconSize;
3128
+ }
3097
3129
  interface SwirlIconSunny {
3098
3130
  "color"?: SwirlIconColor1;
3099
3131
  "label"?: string;
@@ -3182,6 +3214,14 @@ export namespace Components {
3182
3214
  */
3183
3215
  "size": SwirlIconSize;
3184
3216
  }
3217
+ interface SwirlIconUnderlined {
3218
+ "color"?: SwirlIconColor1;
3219
+ "label"?: string;
3220
+ /**
3221
+ * @default 24
3222
+ */
3223
+ "size": SwirlIconSize;
3224
+ }
3185
3225
  interface SwirlIconUndo {
3186
3226
  "color"?: SwirlIconColor1;
3187
3227
  "label"?: string;
@@ -6642,6 +6682,12 @@ declare global {
6642
6682
  prototype: HTMLSwirlIconBlockElement;
6643
6683
  new (): HTMLSwirlIconBlockElement;
6644
6684
  };
6685
+ interface HTMLSwirlIconBoldElement extends Components.SwirlIconBold, HTMLStencilElement {
6686
+ }
6687
+ var HTMLSwirlIconBoldElement: {
6688
+ prototype: HTMLSwirlIconBoldElement;
6689
+ new (): HTMLSwirlIconBoldElement;
6690
+ };
6645
6691
  interface HTMLSwirlIconBookmarkElement extends Components.SwirlIconBookmark, HTMLStencilElement {
6646
6692
  }
6647
6693
  var HTMLSwirlIconBookmarkElement: {
@@ -7050,6 +7096,12 @@ declare global {
7050
7096
  prototype: HTMLSwirlIconFormatListBulletedElement;
7051
7097
  new (): HTMLSwirlIconFormatListBulletedElement;
7052
7098
  };
7099
+ interface HTMLSwirlIconFormatListNumberedElement extends Components.SwirlIconFormatListNumbered, HTMLStencilElement {
7100
+ }
7101
+ var HTMLSwirlIconFormatListNumberedElement: {
7102
+ prototype: HTMLSwirlIconFormatListNumberedElement;
7103
+ new (): HTMLSwirlIconFormatListNumberedElement;
7104
+ };
7053
7105
  interface HTMLSwirlIconForwardElement extends Components.SwirlIconForward, HTMLStencilElement {
7054
7106
  }
7055
7107
  var HTMLSwirlIconForwardElement: {
@@ -7206,6 +7258,12 @@ declare global {
7206
7258
  prototype: HTMLSwirlIconIphoneElement;
7207
7259
  new (): HTMLSwirlIconIphoneElement;
7208
7260
  };
7261
+ interface HTMLSwirlIconItalicElement extends Components.SwirlIconItalic, HTMLStencilElement {
7262
+ }
7263
+ var HTMLSwirlIconItalicElement: {
7264
+ prototype: HTMLSwirlIconItalicElement;
7265
+ new (): HTMLSwirlIconItalicElement;
7266
+ };
7209
7267
  interface HTMLSwirlIconKeyElement extends Components.SwirlIconKey, HTMLStencilElement {
7210
7268
  }
7211
7269
  var HTMLSwirlIconKeyElement: {
@@ -7824,6 +7882,12 @@ declare global {
7824
7882
  prototype: HTMLSwirlIconStopCircleElement;
7825
7883
  new (): HTMLSwirlIconStopCircleElement;
7826
7884
  };
7885
+ interface HTMLSwirlIconStrikethroughElement extends Components.SwirlIconStrikethrough, HTMLStencilElement {
7886
+ }
7887
+ var HTMLSwirlIconStrikethroughElement: {
7888
+ prototype: HTMLSwirlIconStrikethroughElement;
7889
+ new (): HTMLSwirlIconStrikethroughElement;
7890
+ };
7827
7891
  interface HTMLSwirlIconSunnyElement extends Components.SwirlIconSunny, HTMLStencilElement {
7828
7892
  }
7829
7893
  var HTMLSwirlIconSunnyElement: {
@@ -7890,6 +7954,12 @@ declare global {
7890
7954
  prototype: HTMLSwirlIconTreeStructureElement;
7891
7955
  new (): HTMLSwirlIconTreeStructureElement;
7892
7956
  };
7957
+ interface HTMLSwirlIconUnderlinedElement extends Components.SwirlIconUnderlined, HTMLStencilElement {
7958
+ }
7959
+ var HTMLSwirlIconUnderlinedElement: {
7960
+ prototype: HTMLSwirlIconUnderlinedElement;
7961
+ new (): HTMLSwirlIconUnderlinedElement;
7962
+ };
7893
7963
  interface HTMLSwirlIconUndoElement extends Components.SwirlIconUndo, HTMLStencilElement {
7894
7964
  }
7895
7965
  var HTMLSwirlIconUndoElement: {
@@ -9597,6 +9667,7 @@ declare global {
9597
9667
  "swirl-icon-beach-access": HTMLSwirlIconBeachAccessElement;
9598
9668
  "swirl-icon-beach-access-filled": HTMLSwirlIconBeachAccessFilledElement;
9599
9669
  "swirl-icon-block": HTMLSwirlIconBlockElement;
9670
+ "swirl-icon-bold": HTMLSwirlIconBoldElement;
9600
9671
  "swirl-icon-bookmark": HTMLSwirlIconBookmarkElement;
9601
9672
  "swirl-icon-bookmark-filled": HTMLSwirlIconBookmarkFilledElement;
9602
9673
  "swirl-icon-calendar-add-on-filled": HTMLSwirlIconCalendarAddOnFilledElement;
@@ -9665,6 +9736,7 @@ declare global {
9665
9736
  "swirl-icon-folder-shared": HTMLSwirlIconFolderSharedElement;
9666
9737
  "swirl-icon-format-h-one": HTMLSwirlIconFormatHOneElement;
9667
9738
  "swirl-icon-format-list-bulleted": HTMLSwirlIconFormatListBulletedElement;
9739
+ "swirl-icon-format-list-numbered": HTMLSwirlIconFormatListNumberedElement;
9668
9740
  "swirl-icon-forward": HTMLSwirlIconForwardElement;
9669
9741
  "swirl-icon-fullscreen": HTMLSwirlIconFullscreenElement;
9670
9742
  "swirl-icon-fullscreen-exit": HTMLSwirlIconFullscreenExitElement;
@@ -9691,6 +9763,7 @@ declare global {
9691
9763
  "swirl-icon-inventory": HTMLSwirlIconInventoryElement;
9692
9764
  "swirl-icon-inventory-off": HTMLSwirlIconInventoryOffElement;
9693
9765
  "swirl-icon-iphone": HTMLSwirlIconIphoneElement;
9766
+ "swirl-icon-italic": HTMLSwirlIconItalicElement;
9694
9767
  "swirl-icon-key": HTMLSwirlIconKeyElement;
9695
9768
  "swirl-icon-keyboard": HTMLSwirlIconKeyboardElement;
9696
9769
  "swirl-icon-keyboard-hide": HTMLSwirlIconKeyboardHideElement;
@@ -9794,6 +9867,7 @@ declare global {
9794
9867
  "swirl-icon-sticky-note": HTMLSwirlIconStickyNoteElement;
9795
9868
  "swirl-icon-stop": HTMLSwirlIconStopElement;
9796
9869
  "swirl-icon-stop-circle": HTMLSwirlIconStopCircleElement;
9870
+ "swirl-icon-strikethrough": HTMLSwirlIconStrikethroughElement;
9797
9871
  "swirl-icon-sunny": HTMLSwirlIconSunnyElement;
9798
9872
  "swirl-icon-sync": HTMLSwirlIconSyncElement;
9799
9873
  "swirl-icon-tasks": HTMLSwirlIconTasksElement;
@@ -9805,6 +9879,7 @@ declare global {
9805
9879
  "swirl-icon-today-filled": HTMLSwirlIconTodayFilledElement;
9806
9880
  "swirl-icon-translate": HTMLSwirlIconTranslateElement;
9807
9881
  "swirl-icon-tree-structure": HTMLSwirlIconTreeStructureElement;
9882
+ "swirl-icon-underlined": HTMLSwirlIconUnderlinedElement;
9808
9883
  "swirl-icon-undo": HTMLSwirlIconUndoElement;
9809
9884
  "swirl-icon-unlock-person": HTMLSwirlIconUnlockPersonElement;
9810
9885
  "swirl-icon-upload": HTMLSwirlIconUploadElement;
@@ -11290,6 +11365,14 @@ declare namespace LocalJSX {
11290
11365
  */
11291
11366
  "size"?: SwirlIconSize;
11292
11367
  }
11368
+ interface SwirlIconBold {
11369
+ "color"?: SwirlIconColor1;
11370
+ "label"?: string;
11371
+ /**
11372
+ * @default 24
11373
+ */
11374
+ "size"?: SwirlIconSize;
11375
+ }
11293
11376
  interface SwirlIconBookmark {
11294
11377
  "color"?: SwirlIconColor1;
11295
11378
  "label"?: string;
@@ -11834,6 +11917,14 @@ declare namespace LocalJSX {
11834
11917
  */
11835
11918
  "size"?: SwirlIconSize;
11836
11919
  }
11920
+ interface SwirlIconFormatListNumbered {
11921
+ "color"?: SwirlIconColor1;
11922
+ "label"?: string;
11923
+ /**
11924
+ * @default 24
11925
+ */
11926
+ "size"?: SwirlIconSize;
11927
+ }
11837
11928
  interface SwirlIconForward {
11838
11929
  "color"?: SwirlIconColor1;
11839
11930
  "label"?: string;
@@ -12042,6 +12133,14 @@ declare namespace LocalJSX {
12042
12133
  */
12043
12134
  "size"?: SwirlIconSize;
12044
12135
  }
12136
+ interface SwirlIconItalic {
12137
+ "color"?: SwirlIconColor1;
12138
+ "label"?: string;
12139
+ /**
12140
+ * @default 24
12141
+ */
12142
+ "size"?: SwirlIconSize;
12143
+ }
12045
12144
  interface SwirlIconKey {
12046
12145
  "color"?: SwirlIconColor1;
12047
12146
  "label"?: string;
@@ -12866,6 +12965,14 @@ declare namespace LocalJSX {
12866
12965
  */
12867
12966
  "size"?: SwirlIconSize;
12868
12967
  }
12968
+ interface SwirlIconStrikethrough {
12969
+ "color"?: SwirlIconColor1;
12970
+ "label"?: string;
12971
+ /**
12972
+ * @default 24
12973
+ */
12974
+ "size"?: SwirlIconSize;
12975
+ }
12869
12976
  interface SwirlIconSunny {
12870
12977
  "color"?: SwirlIconColor1;
12871
12978
  "label"?: string;
@@ -12954,6 +13061,14 @@ declare namespace LocalJSX {
12954
13061
  */
12955
13062
  "size"?: SwirlIconSize;
12956
13063
  }
13064
+ interface SwirlIconUnderlined {
13065
+ "color"?: SwirlIconColor1;
13066
+ "label"?: string;
13067
+ /**
13068
+ * @default 24
13069
+ */
13070
+ "size"?: SwirlIconSize;
13071
+ }
12957
13072
  interface SwirlIconUndo {
12958
13073
  "color"?: SwirlIconColor1;
12959
13074
  "label"?: string;
@@ -15917,6 +16032,11 @@ declare namespace LocalJSX {
15917
16032
  "label": string;
15918
16033
  "size": SwirlIconSize;
15919
16034
  }
16035
+ interface SwirlIconBoldAttributes {
16036
+ "color": SwirlIconColor;
16037
+ "label": string;
16038
+ "size": SwirlIconSize;
16039
+ }
15920
16040
  interface SwirlIconBookmarkAttributes {
15921
16041
  "color": SwirlIconColor;
15922
16042
  "label": string;
@@ -16257,6 +16377,11 @@ declare namespace LocalJSX {
16257
16377
  "label": string;
16258
16378
  "size": SwirlIconSize;
16259
16379
  }
16380
+ interface SwirlIconFormatListNumberedAttributes {
16381
+ "color": SwirlIconColor;
16382
+ "label": string;
16383
+ "size": SwirlIconSize;
16384
+ }
16260
16385
  interface SwirlIconForwardAttributes {
16261
16386
  "color": SwirlIconColor;
16262
16387
  "label": string;
@@ -16387,6 +16512,11 @@ declare namespace LocalJSX {
16387
16512
  "label": string;
16388
16513
  "size": SwirlIconSize;
16389
16514
  }
16515
+ interface SwirlIconItalicAttributes {
16516
+ "color": SwirlIconColor;
16517
+ "label": string;
16518
+ "size": SwirlIconSize;
16519
+ }
16390
16520
  interface SwirlIconKeyAttributes {
16391
16521
  "color": SwirlIconColor;
16392
16522
  "label": string;
@@ -16902,6 +17032,11 @@ declare namespace LocalJSX {
16902
17032
  "label": string;
16903
17033
  "size": SwirlIconSize;
16904
17034
  }
17035
+ interface SwirlIconStrikethroughAttributes {
17036
+ "color": SwirlIconColor;
17037
+ "label": string;
17038
+ "size": SwirlIconSize;
17039
+ }
16905
17040
  interface SwirlIconSunnyAttributes {
16906
17041
  "color": SwirlIconColor;
16907
17042
  "label": string;
@@ -16957,6 +17092,11 @@ declare namespace LocalJSX {
16957
17092
  "label": string;
16958
17093
  "size": SwirlIconSize;
16959
17094
  }
17095
+ interface SwirlIconUnderlinedAttributes {
17096
+ "color": SwirlIconColor;
17097
+ "label": string;
17098
+ "size": SwirlIconSize;
17099
+ }
16960
17100
  interface SwirlIconUndoAttributes {
16961
17101
  "color": SwirlIconColor;
16962
17102
  "label": string;
@@ -18143,6 +18283,7 @@ declare namespace LocalJSX {
18143
18283
  "swirl-icon-beach-access": Omit<SwirlIconBeachAccess, keyof SwirlIconBeachAccessAttributes> & { [K in keyof SwirlIconBeachAccess & keyof SwirlIconBeachAccessAttributes]?: SwirlIconBeachAccess[K] } & { [K in keyof SwirlIconBeachAccess & keyof SwirlIconBeachAccessAttributes as `attr:${K}`]?: SwirlIconBeachAccessAttributes[K] } & { [K in keyof SwirlIconBeachAccess & keyof SwirlIconBeachAccessAttributes as `prop:${K}`]?: SwirlIconBeachAccess[K] };
18144
18284
  "swirl-icon-beach-access-filled": Omit<SwirlIconBeachAccessFilled, keyof SwirlIconBeachAccessFilledAttributes> & { [K in keyof SwirlIconBeachAccessFilled & keyof SwirlIconBeachAccessFilledAttributes]?: SwirlIconBeachAccessFilled[K] } & { [K in keyof SwirlIconBeachAccessFilled & keyof SwirlIconBeachAccessFilledAttributes as `attr:${K}`]?: SwirlIconBeachAccessFilledAttributes[K] } & { [K in keyof SwirlIconBeachAccessFilled & keyof SwirlIconBeachAccessFilledAttributes as `prop:${K}`]?: SwirlIconBeachAccessFilled[K] };
18145
18285
  "swirl-icon-block": Omit<SwirlIconBlock, keyof SwirlIconBlockAttributes> & { [K in keyof SwirlIconBlock & keyof SwirlIconBlockAttributes]?: SwirlIconBlock[K] } & { [K in keyof SwirlIconBlock & keyof SwirlIconBlockAttributes as `attr:${K}`]?: SwirlIconBlockAttributes[K] } & { [K in keyof SwirlIconBlock & keyof SwirlIconBlockAttributes as `prop:${K}`]?: SwirlIconBlock[K] };
18286
+ "swirl-icon-bold": Omit<SwirlIconBold, keyof SwirlIconBoldAttributes> & { [K in keyof SwirlIconBold & keyof SwirlIconBoldAttributes]?: SwirlIconBold[K] } & { [K in keyof SwirlIconBold & keyof SwirlIconBoldAttributes as `attr:${K}`]?: SwirlIconBoldAttributes[K] } & { [K in keyof SwirlIconBold & keyof SwirlIconBoldAttributes as `prop:${K}`]?: SwirlIconBold[K] };
18146
18287
  "swirl-icon-bookmark": Omit<SwirlIconBookmark, keyof SwirlIconBookmarkAttributes> & { [K in keyof SwirlIconBookmark & keyof SwirlIconBookmarkAttributes]?: SwirlIconBookmark[K] } & { [K in keyof SwirlIconBookmark & keyof SwirlIconBookmarkAttributes as `attr:${K}`]?: SwirlIconBookmarkAttributes[K] } & { [K in keyof SwirlIconBookmark & keyof SwirlIconBookmarkAttributes as `prop:${K}`]?: SwirlIconBookmark[K] };
18147
18288
  "swirl-icon-bookmark-filled": Omit<SwirlIconBookmarkFilled, keyof SwirlIconBookmarkFilledAttributes> & { [K in keyof SwirlIconBookmarkFilled & keyof SwirlIconBookmarkFilledAttributes]?: SwirlIconBookmarkFilled[K] } & { [K in keyof SwirlIconBookmarkFilled & keyof SwirlIconBookmarkFilledAttributes as `attr:${K}`]?: SwirlIconBookmarkFilledAttributes[K] } & { [K in keyof SwirlIconBookmarkFilled & keyof SwirlIconBookmarkFilledAttributes as `prop:${K}`]?: SwirlIconBookmarkFilled[K] };
18148
18289
  "swirl-icon-calendar-add-on-filled": Omit<SwirlIconCalendarAddOnFilled, keyof SwirlIconCalendarAddOnFilledAttributes> & { [K in keyof SwirlIconCalendarAddOnFilled & keyof SwirlIconCalendarAddOnFilledAttributes]?: SwirlIconCalendarAddOnFilled[K] } & { [K in keyof SwirlIconCalendarAddOnFilled & keyof SwirlIconCalendarAddOnFilledAttributes as `attr:${K}`]?: SwirlIconCalendarAddOnFilledAttributes[K] } & { [K in keyof SwirlIconCalendarAddOnFilled & keyof SwirlIconCalendarAddOnFilledAttributes as `prop:${K}`]?: SwirlIconCalendarAddOnFilled[K] };
@@ -18211,6 +18352,7 @@ declare namespace LocalJSX {
18211
18352
  "swirl-icon-folder-shared": Omit<SwirlIconFolderShared, keyof SwirlIconFolderSharedAttributes> & { [K in keyof SwirlIconFolderShared & keyof SwirlIconFolderSharedAttributes]?: SwirlIconFolderShared[K] } & { [K in keyof SwirlIconFolderShared & keyof SwirlIconFolderSharedAttributes as `attr:${K}`]?: SwirlIconFolderSharedAttributes[K] } & { [K in keyof SwirlIconFolderShared & keyof SwirlIconFolderSharedAttributes as `prop:${K}`]?: SwirlIconFolderShared[K] };
18212
18353
  "swirl-icon-format-h-one": Omit<SwirlIconFormatHOne, keyof SwirlIconFormatHOneAttributes> & { [K in keyof SwirlIconFormatHOne & keyof SwirlIconFormatHOneAttributes]?: SwirlIconFormatHOne[K] } & { [K in keyof SwirlIconFormatHOne & keyof SwirlIconFormatHOneAttributes as `attr:${K}`]?: SwirlIconFormatHOneAttributes[K] } & { [K in keyof SwirlIconFormatHOne & keyof SwirlIconFormatHOneAttributes as `prop:${K}`]?: SwirlIconFormatHOne[K] };
18213
18354
  "swirl-icon-format-list-bulleted": Omit<SwirlIconFormatListBulleted, keyof SwirlIconFormatListBulletedAttributes> & { [K in keyof SwirlIconFormatListBulleted & keyof SwirlIconFormatListBulletedAttributes]?: SwirlIconFormatListBulleted[K] } & { [K in keyof SwirlIconFormatListBulleted & keyof SwirlIconFormatListBulletedAttributes as `attr:${K}`]?: SwirlIconFormatListBulletedAttributes[K] } & { [K in keyof SwirlIconFormatListBulleted & keyof SwirlIconFormatListBulletedAttributes as `prop:${K}`]?: SwirlIconFormatListBulleted[K] };
18355
+ "swirl-icon-format-list-numbered": Omit<SwirlIconFormatListNumbered, keyof SwirlIconFormatListNumberedAttributes> & { [K in keyof SwirlIconFormatListNumbered & keyof SwirlIconFormatListNumberedAttributes]?: SwirlIconFormatListNumbered[K] } & { [K in keyof SwirlIconFormatListNumbered & keyof SwirlIconFormatListNumberedAttributes as `attr:${K}`]?: SwirlIconFormatListNumberedAttributes[K] } & { [K in keyof SwirlIconFormatListNumbered & keyof SwirlIconFormatListNumberedAttributes as `prop:${K}`]?: SwirlIconFormatListNumbered[K] };
18214
18356
  "swirl-icon-forward": Omit<SwirlIconForward, keyof SwirlIconForwardAttributes> & { [K in keyof SwirlIconForward & keyof SwirlIconForwardAttributes]?: SwirlIconForward[K] } & { [K in keyof SwirlIconForward & keyof SwirlIconForwardAttributes as `attr:${K}`]?: SwirlIconForwardAttributes[K] } & { [K in keyof SwirlIconForward & keyof SwirlIconForwardAttributes as `prop:${K}`]?: SwirlIconForward[K] };
18215
18357
  "swirl-icon-fullscreen": Omit<SwirlIconFullscreen, keyof SwirlIconFullscreenAttributes> & { [K in keyof SwirlIconFullscreen & keyof SwirlIconFullscreenAttributes]?: SwirlIconFullscreen[K] } & { [K in keyof SwirlIconFullscreen & keyof SwirlIconFullscreenAttributes as `attr:${K}`]?: SwirlIconFullscreenAttributes[K] } & { [K in keyof SwirlIconFullscreen & keyof SwirlIconFullscreenAttributes as `prop:${K}`]?: SwirlIconFullscreen[K] };
18216
18358
  "swirl-icon-fullscreen-exit": Omit<SwirlIconFullscreenExit, keyof SwirlIconFullscreenExitAttributes> & { [K in keyof SwirlIconFullscreenExit & keyof SwirlIconFullscreenExitAttributes]?: SwirlIconFullscreenExit[K] } & { [K in keyof SwirlIconFullscreenExit & keyof SwirlIconFullscreenExitAttributes as `attr:${K}`]?: SwirlIconFullscreenExitAttributes[K] } & { [K in keyof SwirlIconFullscreenExit & keyof SwirlIconFullscreenExitAttributes as `prop:${K}`]?: SwirlIconFullscreenExit[K] };
@@ -18237,6 +18379,7 @@ declare namespace LocalJSX {
18237
18379
  "swirl-icon-inventory": Omit<SwirlIconInventory, keyof SwirlIconInventoryAttributes> & { [K in keyof SwirlIconInventory & keyof SwirlIconInventoryAttributes]?: SwirlIconInventory[K] } & { [K in keyof SwirlIconInventory & keyof SwirlIconInventoryAttributes as `attr:${K}`]?: SwirlIconInventoryAttributes[K] } & { [K in keyof SwirlIconInventory & keyof SwirlIconInventoryAttributes as `prop:${K}`]?: SwirlIconInventory[K] };
18238
18380
  "swirl-icon-inventory-off": Omit<SwirlIconInventoryOff, keyof SwirlIconInventoryOffAttributes> & { [K in keyof SwirlIconInventoryOff & keyof SwirlIconInventoryOffAttributes]?: SwirlIconInventoryOff[K] } & { [K in keyof SwirlIconInventoryOff & keyof SwirlIconInventoryOffAttributes as `attr:${K}`]?: SwirlIconInventoryOffAttributes[K] } & { [K in keyof SwirlIconInventoryOff & keyof SwirlIconInventoryOffAttributes as `prop:${K}`]?: SwirlIconInventoryOff[K] };
18239
18381
  "swirl-icon-iphone": Omit<SwirlIconIphone, keyof SwirlIconIphoneAttributes> & { [K in keyof SwirlIconIphone & keyof SwirlIconIphoneAttributes]?: SwirlIconIphone[K] } & { [K in keyof SwirlIconIphone & keyof SwirlIconIphoneAttributes as `attr:${K}`]?: SwirlIconIphoneAttributes[K] } & { [K in keyof SwirlIconIphone & keyof SwirlIconIphoneAttributes as `prop:${K}`]?: SwirlIconIphone[K] };
18382
+ "swirl-icon-italic": Omit<SwirlIconItalic, keyof SwirlIconItalicAttributes> & { [K in keyof SwirlIconItalic & keyof SwirlIconItalicAttributes]?: SwirlIconItalic[K] } & { [K in keyof SwirlIconItalic & keyof SwirlIconItalicAttributes as `attr:${K}`]?: SwirlIconItalicAttributes[K] } & { [K in keyof SwirlIconItalic & keyof SwirlIconItalicAttributes as `prop:${K}`]?: SwirlIconItalic[K] };
18240
18383
  "swirl-icon-key": Omit<SwirlIconKey, keyof SwirlIconKeyAttributes> & { [K in keyof SwirlIconKey & keyof SwirlIconKeyAttributes]?: SwirlIconKey[K] } & { [K in keyof SwirlIconKey & keyof SwirlIconKeyAttributes as `attr:${K}`]?: SwirlIconKeyAttributes[K] } & { [K in keyof SwirlIconKey & keyof SwirlIconKeyAttributes as `prop:${K}`]?: SwirlIconKey[K] };
18241
18384
  "swirl-icon-keyboard": Omit<SwirlIconKeyboard, keyof SwirlIconKeyboardAttributes> & { [K in keyof SwirlIconKeyboard & keyof SwirlIconKeyboardAttributes]?: SwirlIconKeyboard[K] } & { [K in keyof SwirlIconKeyboard & keyof SwirlIconKeyboardAttributes as `attr:${K}`]?: SwirlIconKeyboardAttributes[K] } & { [K in keyof SwirlIconKeyboard & keyof SwirlIconKeyboardAttributes as `prop:${K}`]?: SwirlIconKeyboard[K] };
18242
18385
  "swirl-icon-keyboard-hide": Omit<SwirlIconKeyboardHide, keyof SwirlIconKeyboardHideAttributes> & { [K in keyof SwirlIconKeyboardHide & keyof SwirlIconKeyboardHideAttributes]?: SwirlIconKeyboardHide[K] } & { [K in keyof SwirlIconKeyboardHide & keyof SwirlIconKeyboardHideAttributes as `attr:${K}`]?: SwirlIconKeyboardHideAttributes[K] } & { [K in keyof SwirlIconKeyboardHide & keyof SwirlIconKeyboardHideAttributes as `prop:${K}`]?: SwirlIconKeyboardHide[K] };
@@ -18340,6 +18483,7 @@ declare namespace LocalJSX {
18340
18483
  "swirl-icon-sticky-note": Omit<SwirlIconStickyNote, keyof SwirlIconStickyNoteAttributes> & { [K in keyof SwirlIconStickyNote & keyof SwirlIconStickyNoteAttributes]?: SwirlIconStickyNote[K] } & { [K in keyof SwirlIconStickyNote & keyof SwirlIconStickyNoteAttributes as `attr:${K}`]?: SwirlIconStickyNoteAttributes[K] } & { [K in keyof SwirlIconStickyNote & keyof SwirlIconStickyNoteAttributes as `prop:${K}`]?: SwirlIconStickyNote[K] };
18341
18484
  "swirl-icon-stop": Omit<SwirlIconStop, keyof SwirlIconStopAttributes> & { [K in keyof SwirlIconStop & keyof SwirlIconStopAttributes]?: SwirlIconStop[K] } & { [K in keyof SwirlIconStop & keyof SwirlIconStopAttributes as `attr:${K}`]?: SwirlIconStopAttributes[K] } & { [K in keyof SwirlIconStop & keyof SwirlIconStopAttributes as `prop:${K}`]?: SwirlIconStop[K] };
18342
18485
  "swirl-icon-stop-circle": Omit<SwirlIconStopCircle, keyof SwirlIconStopCircleAttributes> & { [K in keyof SwirlIconStopCircle & keyof SwirlIconStopCircleAttributes]?: SwirlIconStopCircle[K] } & { [K in keyof SwirlIconStopCircle & keyof SwirlIconStopCircleAttributes as `attr:${K}`]?: SwirlIconStopCircleAttributes[K] } & { [K in keyof SwirlIconStopCircle & keyof SwirlIconStopCircleAttributes as `prop:${K}`]?: SwirlIconStopCircle[K] };
18486
+ "swirl-icon-strikethrough": Omit<SwirlIconStrikethrough, keyof SwirlIconStrikethroughAttributes> & { [K in keyof SwirlIconStrikethrough & keyof SwirlIconStrikethroughAttributes]?: SwirlIconStrikethrough[K] } & { [K in keyof SwirlIconStrikethrough & keyof SwirlIconStrikethroughAttributes as `attr:${K}`]?: SwirlIconStrikethroughAttributes[K] } & { [K in keyof SwirlIconStrikethrough & keyof SwirlIconStrikethroughAttributes as `prop:${K}`]?: SwirlIconStrikethrough[K] };
18343
18487
  "swirl-icon-sunny": Omit<SwirlIconSunny, keyof SwirlIconSunnyAttributes> & { [K in keyof SwirlIconSunny & keyof SwirlIconSunnyAttributes]?: SwirlIconSunny[K] } & { [K in keyof SwirlIconSunny & keyof SwirlIconSunnyAttributes as `attr:${K}`]?: SwirlIconSunnyAttributes[K] } & { [K in keyof SwirlIconSunny & keyof SwirlIconSunnyAttributes as `prop:${K}`]?: SwirlIconSunny[K] };
18344
18488
  "swirl-icon-sync": Omit<SwirlIconSync, keyof SwirlIconSyncAttributes> & { [K in keyof SwirlIconSync & keyof SwirlIconSyncAttributes]?: SwirlIconSync[K] } & { [K in keyof SwirlIconSync & keyof SwirlIconSyncAttributes as `attr:${K}`]?: SwirlIconSyncAttributes[K] } & { [K in keyof SwirlIconSync & keyof SwirlIconSyncAttributes as `prop:${K}`]?: SwirlIconSync[K] };
18345
18489
  "swirl-icon-tasks": Omit<SwirlIconTasks, keyof SwirlIconTasksAttributes> & { [K in keyof SwirlIconTasks & keyof SwirlIconTasksAttributes]?: SwirlIconTasks[K] } & { [K in keyof SwirlIconTasks & keyof SwirlIconTasksAttributes as `attr:${K}`]?: SwirlIconTasksAttributes[K] } & { [K in keyof SwirlIconTasks & keyof SwirlIconTasksAttributes as `prop:${K}`]?: SwirlIconTasks[K] };
@@ -18351,6 +18495,7 @@ declare namespace LocalJSX {
18351
18495
  "swirl-icon-today-filled": Omit<SwirlIconTodayFilled, keyof SwirlIconTodayFilledAttributes> & { [K in keyof SwirlIconTodayFilled & keyof SwirlIconTodayFilledAttributes]?: SwirlIconTodayFilled[K] } & { [K in keyof SwirlIconTodayFilled & keyof SwirlIconTodayFilledAttributes as `attr:${K}`]?: SwirlIconTodayFilledAttributes[K] } & { [K in keyof SwirlIconTodayFilled & keyof SwirlIconTodayFilledAttributes as `prop:${K}`]?: SwirlIconTodayFilled[K] };
18352
18496
  "swirl-icon-translate": Omit<SwirlIconTranslate, keyof SwirlIconTranslateAttributes> & { [K in keyof SwirlIconTranslate & keyof SwirlIconTranslateAttributes]?: SwirlIconTranslate[K] } & { [K in keyof SwirlIconTranslate & keyof SwirlIconTranslateAttributes as `attr:${K}`]?: SwirlIconTranslateAttributes[K] } & { [K in keyof SwirlIconTranslate & keyof SwirlIconTranslateAttributes as `prop:${K}`]?: SwirlIconTranslate[K] };
18353
18497
  "swirl-icon-tree-structure": Omit<SwirlIconTreeStructure, keyof SwirlIconTreeStructureAttributes> & { [K in keyof SwirlIconTreeStructure & keyof SwirlIconTreeStructureAttributes]?: SwirlIconTreeStructure[K] } & { [K in keyof SwirlIconTreeStructure & keyof SwirlIconTreeStructureAttributes as `attr:${K}`]?: SwirlIconTreeStructureAttributes[K] } & { [K in keyof SwirlIconTreeStructure & keyof SwirlIconTreeStructureAttributes as `prop:${K}`]?: SwirlIconTreeStructure[K] };
18498
+ "swirl-icon-underlined": Omit<SwirlIconUnderlined, keyof SwirlIconUnderlinedAttributes> & { [K in keyof SwirlIconUnderlined & keyof SwirlIconUnderlinedAttributes]?: SwirlIconUnderlined[K] } & { [K in keyof SwirlIconUnderlined & keyof SwirlIconUnderlinedAttributes as `attr:${K}`]?: SwirlIconUnderlinedAttributes[K] } & { [K in keyof SwirlIconUnderlined & keyof SwirlIconUnderlinedAttributes as `prop:${K}`]?: SwirlIconUnderlined[K] };
18354
18499
  "swirl-icon-undo": Omit<SwirlIconUndo, keyof SwirlIconUndoAttributes> & { [K in keyof SwirlIconUndo & keyof SwirlIconUndoAttributes]?: SwirlIconUndo[K] } & { [K in keyof SwirlIconUndo & keyof SwirlIconUndoAttributes as `attr:${K}`]?: SwirlIconUndoAttributes[K] } & { [K in keyof SwirlIconUndo & keyof SwirlIconUndoAttributes as `prop:${K}`]?: SwirlIconUndo[K] };
18355
18500
  "swirl-icon-unlock-person": Omit<SwirlIconUnlockPerson, keyof SwirlIconUnlockPersonAttributes> & { [K in keyof SwirlIconUnlockPerson & keyof SwirlIconUnlockPersonAttributes]?: SwirlIconUnlockPerson[K] } & { [K in keyof SwirlIconUnlockPerson & keyof SwirlIconUnlockPersonAttributes as `attr:${K}`]?: SwirlIconUnlockPersonAttributes[K] } & { [K in keyof SwirlIconUnlockPerson & keyof SwirlIconUnlockPersonAttributes as `prop:${K}`]?: SwirlIconUnlockPerson[K] };
18356
18501
  "swirl-icon-upload": Omit<SwirlIconUpload, keyof SwirlIconUploadAttributes> & { [K in keyof SwirlIconUpload & keyof SwirlIconUploadAttributes]?: SwirlIconUpload[K] } & { [K in keyof SwirlIconUpload & keyof SwirlIconUploadAttributes as `attr:${K}`]?: SwirlIconUploadAttributes[K] } & { [K in keyof SwirlIconUpload & keyof SwirlIconUploadAttributes as `prop:${K}`]?: SwirlIconUpload[K] };
@@ -18644,6 +18789,7 @@ declare module "@stencil/core" {
18644
18789
  "swirl-icon-beach-access": LocalJSX.IntrinsicElements["swirl-icon-beach-access"] & JSXBase.HTMLAttributes<HTMLSwirlIconBeachAccessElement>;
18645
18790
  "swirl-icon-beach-access-filled": LocalJSX.IntrinsicElements["swirl-icon-beach-access-filled"] & JSXBase.HTMLAttributes<HTMLSwirlIconBeachAccessFilledElement>;
18646
18791
  "swirl-icon-block": LocalJSX.IntrinsicElements["swirl-icon-block"] & JSXBase.HTMLAttributes<HTMLSwirlIconBlockElement>;
18792
+ "swirl-icon-bold": LocalJSX.IntrinsicElements["swirl-icon-bold"] & JSXBase.HTMLAttributes<HTMLSwirlIconBoldElement>;
18647
18793
  "swirl-icon-bookmark": LocalJSX.IntrinsicElements["swirl-icon-bookmark"] & JSXBase.HTMLAttributes<HTMLSwirlIconBookmarkElement>;
18648
18794
  "swirl-icon-bookmark-filled": LocalJSX.IntrinsicElements["swirl-icon-bookmark-filled"] & JSXBase.HTMLAttributes<HTMLSwirlIconBookmarkFilledElement>;
18649
18795
  "swirl-icon-calendar-add-on-filled": LocalJSX.IntrinsicElements["swirl-icon-calendar-add-on-filled"] & JSXBase.HTMLAttributes<HTMLSwirlIconCalendarAddOnFilledElement>;
@@ -18712,6 +18858,7 @@ declare module "@stencil/core" {
18712
18858
  "swirl-icon-folder-shared": LocalJSX.IntrinsicElements["swirl-icon-folder-shared"] & JSXBase.HTMLAttributes<HTMLSwirlIconFolderSharedElement>;
18713
18859
  "swirl-icon-format-h-one": LocalJSX.IntrinsicElements["swirl-icon-format-h-one"] & JSXBase.HTMLAttributes<HTMLSwirlIconFormatHOneElement>;
18714
18860
  "swirl-icon-format-list-bulleted": LocalJSX.IntrinsicElements["swirl-icon-format-list-bulleted"] & JSXBase.HTMLAttributes<HTMLSwirlIconFormatListBulletedElement>;
18861
+ "swirl-icon-format-list-numbered": LocalJSX.IntrinsicElements["swirl-icon-format-list-numbered"] & JSXBase.HTMLAttributes<HTMLSwirlIconFormatListNumberedElement>;
18715
18862
  "swirl-icon-forward": LocalJSX.IntrinsicElements["swirl-icon-forward"] & JSXBase.HTMLAttributes<HTMLSwirlIconForwardElement>;
18716
18863
  "swirl-icon-fullscreen": LocalJSX.IntrinsicElements["swirl-icon-fullscreen"] & JSXBase.HTMLAttributes<HTMLSwirlIconFullscreenElement>;
18717
18864
  "swirl-icon-fullscreen-exit": LocalJSX.IntrinsicElements["swirl-icon-fullscreen-exit"] & JSXBase.HTMLAttributes<HTMLSwirlIconFullscreenExitElement>;
@@ -18738,6 +18885,7 @@ declare module "@stencil/core" {
18738
18885
  "swirl-icon-inventory": LocalJSX.IntrinsicElements["swirl-icon-inventory"] & JSXBase.HTMLAttributes<HTMLSwirlIconInventoryElement>;
18739
18886
  "swirl-icon-inventory-off": LocalJSX.IntrinsicElements["swirl-icon-inventory-off"] & JSXBase.HTMLAttributes<HTMLSwirlIconInventoryOffElement>;
18740
18887
  "swirl-icon-iphone": LocalJSX.IntrinsicElements["swirl-icon-iphone"] & JSXBase.HTMLAttributes<HTMLSwirlIconIphoneElement>;
18888
+ "swirl-icon-italic": LocalJSX.IntrinsicElements["swirl-icon-italic"] & JSXBase.HTMLAttributes<HTMLSwirlIconItalicElement>;
18741
18889
  "swirl-icon-key": LocalJSX.IntrinsicElements["swirl-icon-key"] & JSXBase.HTMLAttributes<HTMLSwirlIconKeyElement>;
18742
18890
  "swirl-icon-keyboard": LocalJSX.IntrinsicElements["swirl-icon-keyboard"] & JSXBase.HTMLAttributes<HTMLSwirlIconKeyboardElement>;
18743
18891
  "swirl-icon-keyboard-hide": LocalJSX.IntrinsicElements["swirl-icon-keyboard-hide"] & JSXBase.HTMLAttributes<HTMLSwirlIconKeyboardHideElement>;
@@ -18841,6 +18989,7 @@ declare module "@stencil/core" {
18841
18989
  "swirl-icon-sticky-note": LocalJSX.IntrinsicElements["swirl-icon-sticky-note"] & JSXBase.HTMLAttributes<HTMLSwirlIconStickyNoteElement>;
18842
18990
  "swirl-icon-stop": LocalJSX.IntrinsicElements["swirl-icon-stop"] & JSXBase.HTMLAttributes<HTMLSwirlIconStopElement>;
18843
18991
  "swirl-icon-stop-circle": LocalJSX.IntrinsicElements["swirl-icon-stop-circle"] & JSXBase.HTMLAttributes<HTMLSwirlIconStopCircleElement>;
18992
+ "swirl-icon-strikethrough": LocalJSX.IntrinsicElements["swirl-icon-strikethrough"] & JSXBase.HTMLAttributes<HTMLSwirlIconStrikethroughElement>;
18844
18993
  "swirl-icon-sunny": LocalJSX.IntrinsicElements["swirl-icon-sunny"] & JSXBase.HTMLAttributes<HTMLSwirlIconSunnyElement>;
18845
18994
  "swirl-icon-sync": LocalJSX.IntrinsicElements["swirl-icon-sync"] & JSXBase.HTMLAttributes<HTMLSwirlIconSyncElement>;
18846
18995
  "swirl-icon-tasks": LocalJSX.IntrinsicElements["swirl-icon-tasks"] & JSXBase.HTMLAttributes<HTMLSwirlIconTasksElement>;
@@ -18852,6 +19001,7 @@ declare module "@stencil/core" {
18852
19001
  "swirl-icon-today-filled": LocalJSX.IntrinsicElements["swirl-icon-today-filled"] & JSXBase.HTMLAttributes<HTMLSwirlIconTodayFilledElement>;
18853
19002
  "swirl-icon-translate": LocalJSX.IntrinsicElements["swirl-icon-translate"] & JSXBase.HTMLAttributes<HTMLSwirlIconTranslateElement>;
18854
19003
  "swirl-icon-tree-structure": LocalJSX.IntrinsicElements["swirl-icon-tree-structure"] & JSXBase.HTMLAttributes<HTMLSwirlIconTreeStructureElement>;
19004
+ "swirl-icon-underlined": LocalJSX.IntrinsicElements["swirl-icon-underlined"] & JSXBase.HTMLAttributes<HTMLSwirlIconUnderlinedElement>;
18855
19005
  "swirl-icon-undo": LocalJSX.IntrinsicElements["swirl-icon-undo"] & JSXBase.HTMLAttributes<HTMLSwirlIconUndoElement>;
18856
19006
  "swirl-icon-unlock-person": LocalJSX.IntrinsicElements["swirl-icon-unlock-person"] & JSXBase.HTMLAttributes<HTMLSwirlIconUnlockPersonElement>;
18857
19007
  "swirl-icon-upload": LocalJSX.IntrinsicElements["swirl-icon-upload"] & JSXBase.HTMLAttributes<HTMLSwirlIconUploadElement>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-ai",
3
- "version": "0.489.0",
3
+ "version": "0.490.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.489.0",
29
+ "@getflip/swirl-components": "0.490.0",
30
30
  "@types/node": "25.3.0",
31
31
  "tsx": "^4.7.0",
32
32
  "typescript": "5.9.3"