@getflip/swirl-ai 0.460.0 → 0.461.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.
|
@@ -30,10 +30,10 @@ The SwirlResourceListItem component can be used to represent an object, like med
|
|
|
30
30
|
- `labelTooltipPosition` ("bottom" | "left" | "right" | "top" | undefined) –
|
|
31
31
|
- `labelWeight` ("bold" | "medium" | "regular" | "semibold" | undefined) –
|
|
32
32
|
- `labelWrap` (boolean | undefined) –
|
|
33
|
+
- `labelWrapMaxLines` (number | undefined) –
|
|
33
34
|
- `menuTriggerId` (string | undefined) –
|
|
34
35
|
- `menuTriggerLabel` (string | undefined) –
|
|
35
36
|
- `meta` (string | undefined) –
|
|
36
|
-
- `multiLineLabel` (boolean | undefined) –
|
|
37
37
|
- `selectable` (boolean | undefined) –
|
|
38
38
|
- `swirlAriaCurrent` ("date" | "location" | "page" | "step" | "time" | "true" | undefined) –
|
|
39
39
|
- `swirlAriaLabel` (string | undefined) –
|
|
@@ -40282,6 +40282,13 @@
|
|
|
40282
40282
|
},
|
|
40283
40283
|
"fieldName": "labelWrap"
|
|
40284
40284
|
},
|
|
40285
|
+
{
|
|
40286
|
+
"name": "label-wrap-max-lines",
|
|
40287
|
+
"type": {
|
|
40288
|
+
"text": "number | undefined"
|
|
40289
|
+
},
|
|
40290
|
+
"fieldName": "labelWrapMaxLines"
|
|
40291
|
+
},
|
|
40285
40292
|
{
|
|
40286
40293
|
"name": "menu-trigger-id",
|
|
40287
40294
|
"type": {
|
|
@@ -40304,13 +40311,6 @@
|
|
|
40304
40311
|
},
|
|
40305
40312
|
"fieldName": "meta"
|
|
40306
40313
|
},
|
|
40307
|
-
{
|
|
40308
|
-
"name": "multi-line-label",
|
|
40309
|
-
"type": {
|
|
40310
|
-
"text": "boolean | undefined"
|
|
40311
|
-
},
|
|
40312
|
-
"fieldName": "multiLineLabel"
|
|
40313
|
-
},
|
|
40314
40314
|
{
|
|
40315
40315
|
"name": "selectable",
|
|
40316
40316
|
"type": {
|
|
@@ -40551,6 +40551,15 @@
|
|
|
40551
40551
|
"readonly": true,
|
|
40552
40552
|
"attribute": "label-wrap"
|
|
40553
40553
|
},
|
|
40554
|
+
{
|
|
40555
|
+
"kind": "field",
|
|
40556
|
+
"name": "labelWrapMaxLines",
|
|
40557
|
+
"type": {
|
|
40558
|
+
"text": "number | undefined"
|
|
40559
|
+
},
|
|
40560
|
+
"readonly": true,
|
|
40561
|
+
"attribute": "label-wrap-max-lines"
|
|
40562
|
+
},
|
|
40554
40563
|
{
|
|
40555
40564
|
"kind": "field",
|
|
40556
40565
|
"name": "menuTriggerId",
|
|
@@ -40579,15 +40588,6 @@
|
|
|
40579
40588
|
"readonly": true,
|
|
40580
40589
|
"attribute": "meta"
|
|
40581
40590
|
},
|
|
40582
|
-
{
|
|
40583
|
-
"kind": "field",
|
|
40584
|
-
"name": "multiLineLabel",
|
|
40585
|
-
"type": {
|
|
40586
|
-
"text": "boolean | undefined"
|
|
40587
|
-
},
|
|
40588
|
-
"readonly": true,
|
|
40589
|
-
"attribute": "multi-line-label"
|
|
40590
|
-
},
|
|
40591
40591
|
{
|
|
40592
40592
|
"kind": "field",
|
|
40593
40593
|
"name": "selectable",
|
|
@@ -26,13 +26,13 @@ export declare class SwirlResourceListItem {
|
|
|
26
26
|
label: string;
|
|
27
27
|
labelWeight?: SwirlResourceListItemLabelWeight;
|
|
28
28
|
labelWrap?: boolean;
|
|
29
|
+
labelWrapMaxLines?: number;
|
|
29
30
|
labelMinHeight?: string;
|
|
30
31
|
labelTooltip?: string;
|
|
31
32
|
labelTooltipPosition?: SwirlTooltipPosition;
|
|
32
33
|
menuTriggerId?: string;
|
|
33
34
|
menuTriggerLabel?: string;
|
|
34
35
|
meta?: string;
|
|
35
|
-
multiLineLabel?: boolean;
|
|
36
36
|
selectable?: boolean;
|
|
37
37
|
swirlAriaCurrent?: SwirlResourceListItemAriaCurrent;
|
|
38
38
|
swirlAriaLabel?: string;
|
|
@@ -3695,13 +3695,13 @@ export namespace Components {
|
|
|
3695
3695
|
*/
|
|
3696
3696
|
"labelWeight"?: SwirlResourceListItemLabelWeight;
|
|
3697
3697
|
"labelWrap"?: boolean;
|
|
3698
|
+
"labelWrapMaxLines"?: number;
|
|
3698
3699
|
"menuTriggerId"?: string;
|
|
3699
3700
|
/**
|
|
3700
3701
|
* @default "Options"
|
|
3701
3702
|
*/
|
|
3702
3703
|
"menuTriggerLabel"?: string;
|
|
3703
3704
|
"meta"?: string;
|
|
3704
|
-
"multiLineLabel"?: boolean;
|
|
3705
3705
|
"selectable"?: boolean;
|
|
3706
3706
|
"swirlAriaCurrent"?: SwirlResourceListItemAriaCurrent;
|
|
3707
3707
|
"swirlAriaLabel"?: string;
|
|
@@ -12881,13 +12881,13 @@ declare namespace LocalJSX {
|
|
|
12881
12881
|
*/
|
|
12882
12882
|
"labelWeight"?: SwirlResourceListItemLabelWeight;
|
|
12883
12883
|
"labelWrap"?: boolean;
|
|
12884
|
+
"labelWrapMaxLines"?: number;
|
|
12884
12885
|
"menuTriggerId"?: string;
|
|
12885
12886
|
/**
|
|
12886
12887
|
* @default "Options"
|
|
12887
12888
|
*/
|
|
12888
12889
|
"menuTriggerLabel"?: string;
|
|
12889
12890
|
"meta"?: string;
|
|
12890
|
-
"multiLineLabel"?: boolean;
|
|
12891
12891
|
"onToggleDrag"?: (event: SwirlResourceListItemCustomEvent<HTMLSwirlResourceListItemElement>) => void;
|
|
12892
12892
|
"onValueChange"?: (event: SwirlResourceListItemCustomEvent<boolean>) => void;
|
|
12893
12893
|
"selectable"?: boolean;
|
|
@@ -16094,13 +16094,13 @@ declare namespace LocalJSX {
|
|
|
16094
16094
|
"label": string;
|
|
16095
16095
|
"labelWeight": SwirlResourceListItemLabelWeight;
|
|
16096
16096
|
"labelWrap": boolean;
|
|
16097
|
+
"labelWrapMaxLines": number;
|
|
16097
16098
|
"labelMinHeight": string;
|
|
16098
16099
|
"labelTooltip": string;
|
|
16099
16100
|
"labelTooltipPosition": SwirlTooltipPosition;
|
|
16100
16101
|
"menuTriggerId": string;
|
|
16101
16102
|
"menuTriggerLabel": string;
|
|
16102
16103
|
"meta": string;
|
|
16103
|
-
"multiLineLabel": boolean;
|
|
16104
16104
|
"selectable": boolean;
|
|
16105
16105
|
"swirlAriaCurrent": SwirlResourceListItemAriaCurrent;
|
|
16106
16106
|
"swirlAriaLabel": string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-ai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.461.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.461.0",
|
|
50
50
|
"@types/node": "25.3.0",
|
|
51
51
|
"tsup": "^8.0.0",
|
|
52
52
|
"tsx": "^4.7.0",
|