@getflip/swirl-ai 0.458.0 → 0.459.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.
- package/dist/agent/components/swirl-icon-passkey.md +49 -0
- package/dist/agent/components/swirl-icon-verified-user.md +49 -0
- package/dist/agent/components-index.json +8 -0
- package/dist/custom-elements.manifest.json +190 -0
- package/dist/types/components/swirl-icon/icons/swirl-icon-passkey.d.ts +7 -0
- package/dist/types/components/swirl-icon/icons/swirl-icon-verified-user.d.ts +7 -0
- package/dist/types/components.d.ts +54 -0
- package/package.json +2 -2
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# `<swirl-icon-passkey>`
|
|
2
|
+
|
|
3
|
+
## Purpose
|
|
4
|
+
|
|
5
|
+
Custom element: swirl-icon-passkey.
|
|
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-passkey></swirl-icon-passkey>
|
|
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.
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# `<swirl-icon-verified-user>`
|
|
2
|
+
|
|
3
|
+
## Purpose
|
|
4
|
+
|
|
5
|
+
Custom element: swirl-icon-verified-user.
|
|
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-verified-user></swirl-icon-verified-user>
|
|
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.
|
|
@@ -878,6 +878,10 @@
|
|
|
878
878
|
"tag": "swirl-icon-open-in-new",
|
|
879
879
|
"summary": "swirl-icon-open-in-new"
|
|
880
880
|
},
|
|
881
|
+
{
|
|
882
|
+
"tag": "swirl-icon-passkey",
|
|
883
|
+
"summary": "swirl-icon-passkey"
|
|
884
|
+
},
|
|
881
885
|
{
|
|
882
886
|
"tag": "swirl-icon-patient-list",
|
|
883
887
|
"summary": "swirl-icon-patient-list"
|
|
@@ -1162,6 +1166,10 @@
|
|
|
1162
1166
|
"tag": "swirl-icon-user-assign",
|
|
1163
1167
|
"summary": "swirl-icon-user-assign"
|
|
1164
1168
|
},
|
|
1169
|
+
{
|
|
1170
|
+
"tag": "swirl-icon-verified-user",
|
|
1171
|
+
"summary": "swirl-icon-verified-user"
|
|
1172
|
+
},
|
|
1165
1173
|
{
|
|
1166
1174
|
"tag": "swirl-icon-video-camera",
|
|
1167
1175
|
"summary": "swirl-icon-video-camera"
|
|
@@ -25859,6 +25859,101 @@
|
|
|
25859
25859
|
}
|
|
25860
25860
|
]
|
|
25861
25861
|
},
|
|
25862
|
+
{
|
|
25863
|
+
"kind": "javascript-module",
|
|
25864
|
+
"path": "src/components/swirl-icon/icons/swirl-icon-passkey.tsx",
|
|
25865
|
+
"declarations": [
|
|
25866
|
+
{
|
|
25867
|
+
"kind": "class",
|
|
25868
|
+
"customElement": true,
|
|
25869
|
+
"tagName": "swirl-icon-passkey",
|
|
25870
|
+
"name": "SwirlIconPasskey",
|
|
25871
|
+
"attributes": [
|
|
25872
|
+
{
|
|
25873
|
+
"name": "color",
|
|
25874
|
+
"type": {
|
|
25875
|
+
"text": "\"critical\" | \"default\" | \"disabled\" | \"highlight\" | \"info\" | \"on-action-primary\" | \"on-image\" | \"on-status\" | \"on-surface-highlight\" | \"on-surface-highlight-subdued\" | \"strong\" | \"success\" | \"warning\" | undefined",
|
|
25876
|
+
"references": [
|
|
25877
|
+
{
|
|
25878
|
+
"name": "SwirlIconColor",
|
|
25879
|
+
"module": "../swirl-icon"
|
|
25880
|
+
}
|
|
25881
|
+
]
|
|
25882
|
+
},
|
|
25883
|
+
"fieldName": "color"
|
|
25884
|
+
},
|
|
25885
|
+
{
|
|
25886
|
+
"name": "size",
|
|
25887
|
+
"type": {
|
|
25888
|
+
"text": "16 | 20 | 24 | 28 | undefined",
|
|
25889
|
+
"references": [
|
|
25890
|
+
{
|
|
25891
|
+
"name": "SwirlIconSize",
|
|
25892
|
+
"module": "../swirl-icon.types"
|
|
25893
|
+
}
|
|
25894
|
+
]
|
|
25895
|
+
},
|
|
25896
|
+
"default": "24",
|
|
25897
|
+
"fieldName": "size"
|
|
25898
|
+
}
|
|
25899
|
+
],
|
|
25900
|
+
"members": [
|
|
25901
|
+
{
|
|
25902
|
+
"kind": "field",
|
|
25903
|
+
"name": "color",
|
|
25904
|
+
"type": {
|
|
25905
|
+
"text": "\"critical\" | \"default\" | \"disabled\" | \"highlight\" | \"info\" | \"on-action-primary\" | \"on-image\" | \"on-status\" | \"on-surface-highlight\" | \"on-surface-highlight-subdued\" | \"strong\" | \"success\" | \"warning\" | undefined",
|
|
25906
|
+
"references": [
|
|
25907
|
+
{
|
|
25908
|
+
"name": "SwirlIconColor",
|
|
25909
|
+
"module": "../swirl-icon"
|
|
25910
|
+
}
|
|
25911
|
+
]
|
|
25912
|
+
},
|
|
25913
|
+
"readonly": true,
|
|
25914
|
+
"attribute": "color"
|
|
25915
|
+
},
|
|
25916
|
+
{
|
|
25917
|
+
"kind": "field",
|
|
25918
|
+
"name": "size",
|
|
25919
|
+
"type": {
|
|
25920
|
+
"text": "16 | 20 | 24 | 28 | undefined",
|
|
25921
|
+
"references": [
|
|
25922
|
+
{
|
|
25923
|
+
"name": "SwirlIconSize",
|
|
25924
|
+
"module": "../swirl-icon.types"
|
|
25925
|
+
}
|
|
25926
|
+
]
|
|
25927
|
+
},
|
|
25928
|
+
"default": "24",
|
|
25929
|
+
"readonly": true,
|
|
25930
|
+
"attribute": "size"
|
|
25931
|
+
}
|
|
25932
|
+
],
|
|
25933
|
+
"cssParts": [
|
|
25934
|
+
{
|
|
25935
|
+
"name": "icon"
|
|
25936
|
+
}
|
|
25937
|
+
]
|
|
25938
|
+
}
|
|
25939
|
+
],
|
|
25940
|
+
"exports": [
|
|
25941
|
+
{
|
|
25942
|
+
"kind": "js",
|
|
25943
|
+
"name": "SwirlIconPasskey",
|
|
25944
|
+
"declaration": {
|
|
25945
|
+
"name": "SwirlIconPasskey"
|
|
25946
|
+
}
|
|
25947
|
+
},
|
|
25948
|
+
{
|
|
25949
|
+
"kind": "custom-element-definition",
|
|
25950
|
+
"name": "swirl-icon-passkey",
|
|
25951
|
+
"declaration": {
|
|
25952
|
+
"name": "SwirlIconPasskey"
|
|
25953
|
+
}
|
|
25954
|
+
}
|
|
25955
|
+
]
|
|
25956
|
+
},
|
|
25862
25957
|
{
|
|
25863
25958
|
"kind": "javascript-module",
|
|
25864
25959
|
"path": "src/components/swirl-icon/icons/swirl-icon-patient-list.tsx",
|
|
@@ -32604,6 +32699,101 @@
|
|
|
32604
32699
|
}
|
|
32605
32700
|
]
|
|
32606
32701
|
},
|
|
32702
|
+
{
|
|
32703
|
+
"kind": "javascript-module",
|
|
32704
|
+
"path": "src/components/swirl-icon/icons/swirl-icon-verified-user.tsx",
|
|
32705
|
+
"declarations": [
|
|
32706
|
+
{
|
|
32707
|
+
"kind": "class",
|
|
32708
|
+
"customElement": true,
|
|
32709
|
+
"tagName": "swirl-icon-verified-user",
|
|
32710
|
+
"name": "SwirlIconVerifiedUser",
|
|
32711
|
+
"attributes": [
|
|
32712
|
+
{
|
|
32713
|
+
"name": "color",
|
|
32714
|
+
"type": {
|
|
32715
|
+
"text": "\"critical\" | \"default\" | \"disabled\" | \"highlight\" | \"info\" | \"on-action-primary\" | \"on-image\" | \"on-status\" | \"on-surface-highlight\" | \"on-surface-highlight-subdued\" | \"strong\" | \"success\" | \"warning\" | undefined",
|
|
32716
|
+
"references": [
|
|
32717
|
+
{
|
|
32718
|
+
"name": "SwirlIconColor",
|
|
32719
|
+
"module": "../swirl-icon"
|
|
32720
|
+
}
|
|
32721
|
+
]
|
|
32722
|
+
},
|
|
32723
|
+
"fieldName": "color"
|
|
32724
|
+
},
|
|
32725
|
+
{
|
|
32726
|
+
"name": "size",
|
|
32727
|
+
"type": {
|
|
32728
|
+
"text": "16 | 20 | 24 | 28 | undefined",
|
|
32729
|
+
"references": [
|
|
32730
|
+
{
|
|
32731
|
+
"name": "SwirlIconSize",
|
|
32732
|
+
"module": "../swirl-icon.types"
|
|
32733
|
+
}
|
|
32734
|
+
]
|
|
32735
|
+
},
|
|
32736
|
+
"default": "24",
|
|
32737
|
+
"fieldName": "size"
|
|
32738
|
+
}
|
|
32739
|
+
],
|
|
32740
|
+
"members": [
|
|
32741
|
+
{
|
|
32742
|
+
"kind": "field",
|
|
32743
|
+
"name": "color",
|
|
32744
|
+
"type": {
|
|
32745
|
+
"text": "\"critical\" | \"default\" | \"disabled\" | \"highlight\" | \"info\" | \"on-action-primary\" | \"on-image\" | \"on-status\" | \"on-surface-highlight\" | \"on-surface-highlight-subdued\" | \"strong\" | \"success\" | \"warning\" | undefined",
|
|
32746
|
+
"references": [
|
|
32747
|
+
{
|
|
32748
|
+
"name": "SwirlIconColor",
|
|
32749
|
+
"module": "../swirl-icon"
|
|
32750
|
+
}
|
|
32751
|
+
]
|
|
32752
|
+
},
|
|
32753
|
+
"readonly": true,
|
|
32754
|
+
"attribute": "color"
|
|
32755
|
+
},
|
|
32756
|
+
{
|
|
32757
|
+
"kind": "field",
|
|
32758
|
+
"name": "size",
|
|
32759
|
+
"type": {
|
|
32760
|
+
"text": "16 | 20 | 24 | 28 | undefined",
|
|
32761
|
+
"references": [
|
|
32762
|
+
{
|
|
32763
|
+
"name": "SwirlIconSize",
|
|
32764
|
+
"module": "../swirl-icon.types"
|
|
32765
|
+
}
|
|
32766
|
+
]
|
|
32767
|
+
},
|
|
32768
|
+
"default": "24",
|
|
32769
|
+
"readonly": true,
|
|
32770
|
+
"attribute": "size"
|
|
32771
|
+
}
|
|
32772
|
+
],
|
|
32773
|
+
"cssParts": [
|
|
32774
|
+
{
|
|
32775
|
+
"name": "icon"
|
|
32776
|
+
}
|
|
32777
|
+
]
|
|
32778
|
+
}
|
|
32779
|
+
],
|
|
32780
|
+
"exports": [
|
|
32781
|
+
{
|
|
32782
|
+
"kind": "js",
|
|
32783
|
+
"name": "SwirlIconVerifiedUser",
|
|
32784
|
+
"declaration": {
|
|
32785
|
+
"name": "SwirlIconVerifiedUser"
|
|
32786
|
+
}
|
|
32787
|
+
},
|
|
32788
|
+
{
|
|
32789
|
+
"kind": "custom-element-definition",
|
|
32790
|
+
"name": "swirl-icon-verified-user",
|
|
32791
|
+
"declaration": {
|
|
32792
|
+
"name": "SwirlIconVerifiedUser"
|
|
32793
|
+
}
|
|
32794
|
+
}
|
|
32795
|
+
]
|
|
32796
|
+
},
|
|
32607
32797
|
{
|
|
32608
32798
|
"kind": "javascript-module",
|
|
32609
32799
|
"path": "src/components/swirl-icon/icons/swirl-icon-video-camera.tsx",
|
|
@@ -2374,6 +2374,13 @@ export namespace Components {
|
|
|
2374
2374
|
*/
|
|
2375
2375
|
"size": SwirlIconSize;
|
|
2376
2376
|
}
|
|
2377
|
+
interface SwirlIconPasskey {
|
|
2378
|
+
"color"?: SwirlIconColor1;
|
|
2379
|
+
/**
|
|
2380
|
+
* @default 24
|
|
2381
|
+
*/
|
|
2382
|
+
"size": SwirlIconSize;
|
|
2383
|
+
}
|
|
2377
2384
|
interface SwirlIconPatientList {
|
|
2378
2385
|
"color"?: SwirlIconColor1;
|
|
2379
2386
|
/**
|
|
@@ -2871,6 +2878,13 @@ export namespace Components {
|
|
|
2871
2878
|
*/
|
|
2872
2879
|
"size": SwirlIconSize;
|
|
2873
2880
|
}
|
|
2881
|
+
interface SwirlIconVerifiedUser {
|
|
2882
|
+
"color"?: SwirlIconColor1;
|
|
2883
|
+
/**
|
|
2884
|
+
* @default 24
|
|
2885
|
+
*/
|
|
2886
|
+
"size": SwirlIconSize;
|
|
2887
|
+
}
|
|
2874
2888
|
interface SwirlIconVideoCamera {
|
|
2875
2889
|
"color"?: SwirlIconColor1;
|
|
2876
2890
|
/**
|
|
@@ -6984,6 +6998,12 @@ declare global {
|
|
|
6984
6998
|
prototype: HTMLSwirlIconOpenInNewElement;
|
|
6985
6999
|
new (): HTMLSwirlIconOpenInNewElement;
|
|
6986
7000
|
};
|
|
7001
|
+
interface HTMLSwirlIconPasskeyElement extends Components.SwirlIconPasskey, HTMLStencilElement {
|
|
7002
|
+
}
|
|
7003
|
+
var HTMLSwirlIconPasskeyElement: {
|
|
7004
|
+
prototype: HTMLSwirlIconPasskeyElement;
|
|
7005
|
+
new (): HTMLSwirlIconPasskeyElement;
|
|
7006
|
+
};
|
|
6987
7007
|
interface HTMLSwirlIconPatientListElement extends Components.SwirlIconPatientList, HTMLStencilElement {
|
|
6988
7008
|
}
|
|
6989
7009
|
var HTMLSwirlIconPatientListElement: {
|
|
@@ -7410,6 +7430,12 @@ declare global {
|
|
|
7410
7430
|
prototype: HTMLSwirlIconUserAssignElement;
|
|
7411
7431
|
new (): HTMLSwirlIconUserAssignElement;
|
|
7412
7432
|
};
|
|
7433
|
+
interface HTMLSwirlIconVerifiedUserElement extends Components.SwirlIconVerifiedUser, HTMLStencilElement {
|
|
7434
|
+
}
|
|
7435
|
+
var HTMLSwirlIconVerifiedUserElement: {
|
|
7436
|
+
prototype: HTMLSwirlIconVerifiedUserElement;
|
|
7437
|
+
new (): HTMLSwirlIconVerifiedUserElement;
|
|
7438
|
+
};
|
|
7413
7439
|
interface HTMLSwirlIconVideoCameraElement extends Components.SwirlIconVideoCamera, HTMLStencilElement {
|
|
7414
7440
|
}
|
|
7415
7441
|
var HTMLSwirlIconVideoCameraElement: {
|
|
@@ -9192,6 +9218,7 @@ declare global {
|
|
|
9192
9218
|
"swirl-icon-notifications-off": HTMLSwirlIconNotificationsOffElement;
|
|
9193
9219
|
"swirl-icon-open-in-full": HTMLSwirlIconOpenInFullElement;
|
|
9194
9220
|
"swirl-icon-open-in-new": HTMLSwirlIconOpenInNewElement;
|
|
9221
|
+
"swirl-icon-passkey": HTMLSwirlIconPasskeyElement;
|
|
9195
9222
|
"swirl-icon-patient-list": HTMLSwirlIconPatientListElement;
|
|
9196
9223
|
"swirl-icon-pause": HTMLSwirlIconPauseElement;
|
|
9197
9224
|
"swirl-icon-pause-circle": HTMLSwirlIconPauseCircleElement;
|
|
@@ -9263,6 +9290,7 @@ declare global {
|
|
|
9263
9290
|
"swirl-icon-upload": HTMLSwirlIconUploadElement;
|
|
9264
9291
|
"swirl-icon-user-add": HTMLSwirlIconUserAddElement;
|
|
9265
9292
|
"swirl-icon-user-assign": HTMLSwirlIconUserAssignElement;
|
|
9293
|
+
"swirl-icon-verified-user": HTMLSwirlIconVerifiedUserElement;
|
|
9266
9294
|
"swirl-icon-video-camera": HTMLSwirlIconVideoCameraElement;
|
|
9267
9295
|
"swirl-icon-video-camera-off": HTMLSwirlIconVideoCameraOffElement;
|
|
9268
9296
|
"swirl-icon-video-library": HTMLSwirlIconVideoLibraryElement;
|
|
@@ -11599,6 +11627,13 @@ declare namespace LocalJSX {
|
|
|
11599
11627
|
*/
|
|
11600
11628
|
"size"?: SwirlIconSize;
|
|
11601
11629
|
}
|
|
11630
|
+
interface SwirlIconPasskey {
|
|
11631
|
+
"color"?: SwirlIconColor1;
|
|
11632
|
+
/**
|
|
11633
|
+
* @default 24
|
|
11634
|
+
*/
|
|
11635
|
+
"size"?: SwirlIconSize;
|
|
11636
|
+
}
|
|
11602
11637
|
interface SwirlIconPatientList {
|
|
11603
11638
|
"color"?: SwirlIconColor1;
|
|
11604
11639
|
/**
|
|
@@ -12096,6 +12131,13 @@ declare namespace LocalJSX {
|
|
|
12096
12131
|
*/
|
|
12097
12132
|
"size"?: SwirlIconSize;
|
|
12098
12133
|
}
|
|
12134
|
+
interface SwirlIconVerifiedUser {
|
|
12135
|
+
"color"?: SwirlIconColor1;
|
|
12136
|
+
/**
|
|
12137
|
+
* @default 24
|
|
12138
|
+
*/
|
|
12139
|
+
"size"?: SwirlIconSize;
|
|
12140
|
+
}
|
|
12099
12141
|
interface SwirlIconVideoCamera {
|
|
12100
12142
|
"color"?: SwirlIconColor1;
|
|
12101
12143
|
/**
|
|
@@ -15421,6 +15463,10 @@ declare namespace LocalJSX {
|
|
|
15421
15463
|
"color": SwirlIconColor;
|
|
15422
15464
|
"size": SwirlIconSize;
|
|
15423
15465
|
}
|
|
15466
|
+
interface SwirlIconPasskeyAttributes {
|
|
15467
|
+
"color": SwirlIconColor;
|
|
15468
|
+
"size": SwirlIconSize;
|
|
15469
|
+
}
|
|
15424
15470
|
interface SwirlIconPatientListAttributes {
|
|
15425
15471
|
"color": SwirlIconColor;
|
|
15426
15472
|
"size": SwirlIconSize;
|
|
@@ -15705,6 +15751,10 @@ declare namespace LocalJSX {
|
|
|
15705
15751
|
"color": SwirlIconColor;
|
|
15706
15752
|
"size": SwirlIconSize;
|
|
15707
15753
|
}
|
|
15754
|
+
interface SwirlIconVerifiedUserAttributes {
|
|
15755
|
+
"color": SwirlIconColor;
|
|
15756
|
+
"size": SwirlIconSize;
|
|
15757
|
+
}
|
|
15708
15758
|
interface SwirlIconVideoCameraAttributes {
|
|
15709
15759
|
"color": SwirlIconColor;
|
|
15710
15760
|
"size": SwirlIconSize;
|
|
@@ -16957,6 +17007,7 @@ declare namespace LocalJSX {
|
|
|
16957
17007
|
"swirl-icon-notifications-off": Omit<SwirlIconNotificationsOff, keyof SwirlIconNotificationsOffAttributes> & { [K in keyof SwirlIconNotificationsOff & keyof SwirlIconNotificationsOffAttributes]?: SwirlIconNotificationsOff[K] } & { [K in keyof SwirlIconNotificationsOff & keyof SwirlIconNotificationsOffAttributes as `attr:${K}`]?: SwirlIconNotificationsOffAttributes[K] } & { [K in keyof SwirlIconNotificationsOff & keyof SwirlIconNotificationsOffAttributes as `prop:${K}`]?: SwirlIconNotificationsOff[K] };
|
|
16958
17008
|
"swirl-icon-open-in-full": Omit<SwirlIconOpenInFull, keyof SwirlIconOpenInFullAttributes> & { [K in keyof SwirlIconOpenInFull & keyof SwirlIconOpenInFullAttributes]?: SwirlIconOpenInFull[K] } & { [K in keyof SwirlIconOpenInFull & keyof SwirlIconOpenInFullAttributes as `attr:${K}`]?: SwirlIconOpenInFullAttributes[K] } & { [K in keyof SwirlIconOpenInFull & keyof SwirlIconOpenInFullAttributes as `prop:${K}`]?: SwirlIconOpenInFull[K] };
|
|
16959
17009
|
"swirl-icon-open-in-new": Omit<SwirlIconOpenInNew, keyof SwirlIconOpenInNewAttributes> & { [K in keyof SwirlIconOpenInNew & keyof SwirlIconOpenInNewAttributes]?: SwirlIconOpenInNew[K] } & { [K in keyof SwirlIconOpenInNew & keyof SwirlIconOpenInNewAttributes as `attr:${K}`]?: SwirlIconOpenInNewAttributes[K] } & { [K in keyof SwirlIconOpenInNew & keyof SwirlIconOpenInNewAttributes as `prop:${K}`]?: SwirlIconOpenInNew[K] };
|
|
17010
|
+
"swirl-icon-passkey": Omit<SwirlIconPasskey, keyof SwirlIconPasskeyAttributes> & { [K in keyof SwirlIconPasskey & keyof SwirlIconPasskeyAttributes]?: SwirlIconPasskey[K] } & { [K in keyof SwirlIconPasskey & keyof SwirlIconPasskeyAttributes as `attr:${K}`]?: SwirlIconPasskeyAttributes[K] } & { [K in keyof SwirlIconPasskey & keyof SwirlIconPasskeyAttributes as `prop:${K}`]?: SwirlIconPasskey[K] };
|
|
16960
17011
|
"swirl-icon-patient-list": Omit<SwirlIconPatientList, keyof SwirlIconPatientListAttributes> & { [K in keyof SwirlIconPatientList & keyof SwirlIconPatientListAttributes]?: SwirlIconPatientList[K] } & { [K in keyof SwirlIconPatientList & keyof SwirlIconPatientListAttributes as `attr:${K}`]?: SwirlIconPatientListAttributes[K] } & { [K in keyof SwirlIconPatientList & keyof SwirlIconPatientListAttributes as `prop:${K}`]?: SwirlIconPatientList[K] };
|
|
16961
17012
|
"swirl-icon-pause": Omit<SwirlIconPause, keyof SwirlIconPauseAttributes> & { [K in keyof SwirlIconPause & keyof SwirlIconPauseAttributes]?: SwirlIconPause[K] } & { [K in keyof SwirlIconPause & keyof SwirlIconPauseAttributes as `attr:${K}`]?: SwirlIconPauseAttributes[K] } & { [K in keyof SwirlIconPause & keyof SwirlIconPauseAttributes as `prop:${K}`]?: SwirlIconPause[K] };
|
|
16962
17013
|
"swirl-icon-pause-circle": Omit<SwirlIconPauseCircle, keyof SwirlIconPauseCircleAttributes> & { [K in keyof SwirlIconPauseCircle & keyof SwirlIconPauseCircleAttributes]?: SwirlIconPauseCircle[K] } & { [K in keyof SwirlIconPauseCircle & keyof SwirlIconPauseCircleAttributes as `attr:${K}`]?: SwirlIconPauseCircleAttributes[K] } & { [K in keyof SwirlIconPauseCircle & keyof SwirlIconPauseCircleAttributes as `prop:${K}`]?: SwirlIconPauseCircle[K] };
|
|
@@ -17028,6 +17079,7 @@ declare namespace LocalJSX {
|
|
|
17028
17079
|
"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] };
|
|
17029
17080
|
"swirl-icon-user-add": Omit<SwirlIconUserAdd, keyof SwirlIconUserAddAttributes> & { [K in keyof SwirlIconUserAdd & keyof SwirlIconUserAddAttributes]?: SwirlIconUserAdd[K] } & { [K in keyof SwirlIconUserAdd & keyof SwirlIconUserAddAttributes as `attr:${K}`]?: SwirlIconUserAddAttributes[K] } & { [K in keyof SwirlIconUserAdd & keyof SwirlIconUserAddAttributes as `prop:${K}`]?: SwirlIconUserAdd[K] };
|
|
17030
17081
|
"swirl-icon-user-assign": Omit<SwirlIconUserAssign, keyof SwirlIconUserAssignAttributes> & { [K in keyof SwirlIconUserAssign & keyof SwirlIconUserAssignAttributes]?: SwirlIconUserAssign[K] } & { [K in keyof SwirlIconUserAssign & keyof SwirlIconUserAssignAttributes as `attr:${K}`]?: SwirlIconUserAssignAttributes[K] } & { [K in keyof SwirlIconUserAssign & keyof SwirlIconUserAssignAttributes as `prop:${K}`]?: SwirlIconUserAssign[K] };
|
|
17082
|
+
"swirl-icon-verified-user": Omit<SwirlIconVerifiedUser, keyof SwirlIconVerifiedUserAttributes> & { [K in keyof SwirlIconVerifiedUser & keyof SwirlIconVerifiedUserAttributes]?: SwirlIconVerifiedUser[K] } & { [K in keyof SwirlIconVerifiedUser & keyof SwirlIconVerifiedUserAttributes as `attr:${K}`]?: SwirlIconVerifiedUserAttributes[K] } & { [K in keyof SwirlIconVerifiedUser & keyof SwirlIconVerifiedUserAttributes as `prop:${K}`]?: SwirlIconVerifiedUser[K] };
|
|
17031
17083
|
"swirl-icon-video-camera": Omit<SwirlIconVideoCamera, keyof SwirlIconVideoCameraAttributes> & { [K in keyof SwirlIconVideoCamera & keyof SwirlIconVideoCameraAttributes]?: SwirlIconVideoCamera[K] } & { [K in keyof SwirlIconVideoCamera & keyof SwirlIconVideoCameraAttributes as `attr:${K}`]?: SwirlIconVideoCameraAttributes[K] } & { [K in keyof SwirlIconVideoCamera & keyof SwirlIconVideoCameraAttributes as `prop:${K}`]?: SwirlIconVideoCamera[K] };
|
|
17032
17084
|
"swirl-icon-video-camera-off": Omit<SwirlIconVideoCameraOff, keyof SwirlIconVideoCameraOffAttributes> & { [K in keyof SwirlIconVideoCameraOff & keyof SwirlIconVideoCameraOffAttributes]?: SwirlIconVideoCameraOff[K] } & { [K in keyof SwirlIconVideoCameraOff & keyof SwirlIconVideoCameraOffAttributes as `attr:${K}`]?: SwirlIconVideoCameraOffAttributes[K] } & { [K in keyof SwirlIconVideoCameraOff & keyof SwirlIconVideoCameraOffAttributes as `prop:${K}`]?: SwirlIconVideoCameraOff[K] };
|
|
17033
17085
|
"swirl-icon-video-library": Omit<SwirlIconVideoLibrary, keyof SwirlIconVideoLibraryAttributes> & { [K in keyof SwirlIconVideoLibrary & keyof SwirlIconVideoLibraryAttributes]?: SwirlIconVideoLibrary[K] } & { [K in keyof SwirlIconVideoLibrary & keyof SwirlIconVideoLibraryAttributes as `attr:${K}`]?: SwirlIconVideoLibraryAttributes[K] } & { [K in keyof SwirlIconVideoLibrary & keyof SwirlIconVideoLibraryAttributes as `prop:${K}`]?: SwirlIconVideoLibrary[K] };
|
|
@@ -17442,6 +17494,7 @@ declare module "@stencil/core" {
|
|
|
17442
17494
|
"swirl-icon-notifications-off": LocalJSX.IntrinsicElements["swirl-icon-notifications-off"] & JSXBase.HTMLAttributes<HTMLSwirlIconNotificationsOffElement>;
|
|
17443
17495
|
"swirl-icon-open-in-full": LocalJSX.IntrinsicElements["swirl-icon-open-in-full"] & JSXBase.HTMLAttributes<HTMLSwirlIconOpenInFullElement>;
|
|
17444
17496
|
"swirl-icon-open-in-new": LocalJSX.IntrinsicElements["swirl-icon-open-in-new"] & JSXBase.HTMLAttributes<HTMLSwirlIconOpenInNewElement>;
|
|
17497
|
+
"swirl-icon-passkey": LocalJSX.IntrinsicElements["swirl-icon-passkey"] & JSXBase.HTMLAttributes<HTMLSwirlIconPasskeyElement>;
|
|
17445
17498
|
"swirl-icon-patient-list": LocalJSX.IntrinsicElements["swirl-icon-patient-list"] & JSXBase.HTMLAttributes<HTMLSwirlIconPatientListElement>;
|
|
17446
17499
|
"swirl-icon-pause": LocalJSX.IntrinsicElements["swirl-icon-pause"] & JSXBase.HTMLAttributes<HTMLSwirlIconPauseElement>;
|
|
17447
17500
|
"swirl-icon-pause-circle": LocalJSX.IntrinsicElements["swirl-icon-pause-circle"] & JSXBase.HTMLAttributes<HTMLSwirlIconPauseCircleElement>;
|
|
@@ -17513,6 +17566,7 @@ declare module "@stencil/core" {
|
|
|
17513
17566
|
"swirl-icon-upload": LocalJSX.IntrinsicElements["swirl-icon-upload"] & JSXBase.HTMLAttributes<HTMLSwirlIconUploadElement>;
|
|
17514
17567
|
"swirl-icon-user-add": LocalJSX.IntrinsicElements["swirl-icon-user-add"] & JSXBase.HTMLAttributes<HTMLSwirlIconUserAddElement>;
|
|
17515
17568
|
"swirl-icon-user-assign": LocalJSX.IntrinsicElements["swirl-icon-user-assign"] & JSXBase.HTMLAttributes<HTMLSwirlIconUserAssignElement>;
|
|
17569
|
+
"swirl-icon-verified-user": LocalJSX.IntrinsicElements["swirl-icon-verified-user"] & JSXBase.HTMLAttributes<HTMLSwirlIconVerifiedUserElement>;
|
|
17516
17570
|
"swirl-icon-video-camera": LocalJSX.IntrinsicElements["swirl-icon-video-camera"] & JSXBase.HTMLAttributes<HTMLSwirlIconVideoCameraElement>;
|
|
17517
17571
|
"swirl-icon-video-camera-off": LocalJSX.IntrinsicElements["swirl-icon-video-camera-off"] & JSXBase.HTMLAttributes<HTMLSwirlIconVideoCameraOffElement>;
|
|
17518
17572
|
"swirl-icon-video-library": LocalJSX.IntrinsicElements["swirl-icon-video-library"] & JSXBase.HTMLAttributes<HTMLSwirlIconVideoLibraryElement>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-ai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.459.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.
|
|
49
|
+
"@getflip/swirl-components": "0.459.0",
|
|
50
50
|
"@types/node": "25.3.0",
|
|
51
51
|
"tsup": "^8.0.0",
|
|
52
52
|
"tsx": "^4.7.0",
|