@getflip/swirl-ai 0.454.0 → 0.455.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.
|
@@ -22,6 +22,7 @@ The SwirlAppLayout component provides a basic layout used by app integrations to
|
|
|
22
22
|
- `navigationLabel` (string | undefined) –
|
|
23
23
|
- `navigationOverlayLabel` (string | undefined) –
|
|
24
24
|
- `navigationToggleLabel` (string | undefined) –
|
|
25
|
+
- `preventContentOverflow` (boolean | undefined) –
|
|
25
26
|
- `roundedCorners` (boolean | undefined) –
|
|
26
27
|
- `showNavigationBackButton` (boolean | undefined) –
|
|
27
28
|
- `sidebarCloseButtonLabel` (string | undefined) –
|
|
@@ -1274,6 +1274,13 @@
|
|
|
1274
1274
|
"default": "\"Toggle navigation\"",
|
|
1275
1275
|
"fieldName": "navigationToggleLabel"
|
|
1276
1276
|
},
|
|
1277
|
+
{
|
|
1278
|
+
"name": "prevent-content-overflow",
|
|
1279
|
+
"type": {
|
|
1280
|
+
"text": "boolean | undefined"
|
|
1281
|
+
},
|
|
1282
|
+
"fieldName": "preventContentOverflow"
|
|
1283
|
+
},
|
|
1277
1284
|
{
|
|
1278
1285
|
"name": "rounded-corners",
|
|
1279
1286
|
"type": {
|
|
@@ -1452,6 +1459,15 @@
|
|
|
1452
1459
|
"readonly": true,
|
|
1453
1460
|
"attribute": "navigation-toggle-label"
|
|
1454
1461
|
},
|
|
1462
|
+
{
|
|
1463
|
+
"kind": "field",
|
|
1464
|
+
"name": "preventContentOverflow",
|
|
1465
|
+
"type": {
|
|
1466
|
+
"text": "boolean | undefined"
|
|
1467
|
+
},
|
|
1468
|
+
"readonly": true,
|
|
1469
|
+
"attribute": "prevent-content-overflow"
|
|
1470
|
+
},
|
|
1455
1471
|
{
|
|
1456
1472
|
"kind": "field",
|
|
1457
1473
|
"name": "roundedCorners",
|
|
@@ -32,6 +32,7 @@ export declare class SwirlAppLayout {
|
|
|
32
32
|
navigationToggleLabel?: string;
|
|
33
33
|
navigationOverlayLabel?: string;
|
|
34
34
|
navigationLabel?: string;
|
|
35
|
+
preventContentOverflow?: boolean;
|
|
35
36
|
roundedCorners?: boolean;
|
|
36
37
|
showNavigationBackButton?: boolean;
|
|
37
38
|
sidebarPositioning?: SwirlAppLayoutSidebarPositioning;
|
|
@@ -333,6 +333,7 @@ export namespace Components {
|
|
|
333
333
|
* @default "Toggle navigation"
|
|
334
334
|
*/
|
|
335
335
|
"navigationToggleLabel"?: string;
|
|
336
|
+
"preventContentOverflow"?: boolean;
|
|
336
337
|
"roundedCorners"?: boolean;
|
|
337
338
|
/**
|
|
338
339
|
* Set state of the collapsible navigation
|
|
@@ -9597,6 +9598,7 @@ declare namespace LocalJSX {
|
|
|
9597
9598
|
"onNavigationBackButtonClick"?: (event: SwirlAppLayoutCustomEvent<MouseEvent>) => void;
|
|
9598
9599
|
"onNavigationExpansionStateChange"?: (event: SwirlAppLayoutCustomEvent<SwirlAppLayoutNavigationExpansionState>) => void;
|
|
9599
9600
|
"onSidebarToggle"?: (event: SwirlAppLayoutCustomEvent<boolean>) => void;
|
|
9601
|
+
"preventContentOverflow"?: boolean;
|
|
9600
9602
|
"roundedCorners"?: boolean;
|
|
9601
9603
|
"showNavigationBackButton"?: boolean;
|
|
9602
9604
|
/**
|
|
@@ -14344,6 +14346,7 @@ declare namespace LocalJSX {
|
|
|
14344
14346
|
"navigationToggleLabel": string;
|
|
14345
14347
|
"navigationOverlayLabel": string;
|
|
14346
14348
|
"navigationLabel": string;
|
|
14349
|
+
"preventContentOverflow": boolean;
|
|
14347
14350
|
"roundedCorners": boolean;
|
|
14348
14351
|
"showNavigationBackButton": boolean;
|
|
14349
14352
|
"sidebarPositioning": SwirlAppLayoutSidebarPositioning;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-ai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.455.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.455.0",
|
|
50
50
|
"@types/node": "25.3.0",
|
|
51
51
|
"tsup": "^8.0.0",
|
|
52
52
|
"tsx": "^4.7.0",
|