@getflip/swirl-ai 0.484.0 → 0.485.1
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-app-layout.md +1 -0
- package/dist/custom-elements.manifest.json +16 -0
- package/dist/types/components/swirl-app-layout/swirl-app-layout.d.ts +1 -0
- package/dist/types/components/swirl-app-layout/swirl-app-layout.stories.d.ts +3 -0
- package/dist/types/components.d.ts +3 -0
- package/package.json +2 -2
|
@@ -28,6 +28,7 @@ The SwirlAppLayout component provides a basic layout used by app integrations to
|
|
|
28
28
|
- `sidebarCloseButtonLabel` (string | undefined) –
|
|
29
29
|
- `sidebarHeading` (string | undefined) –
|
|
30
30
|
- `sidebarPositioning` ("auto" | "overlay" | undefined) –
|
|
31
|
+
- `sidebarWidth` (string | undefined) –
|
|
31
32
|
- `transitionStyle` (string | undefined) –
|
|
32
33
|
|
|
33
34
|
## Slots
|
|
@@ -1323,6 +1323,13 @@
|
|
|
1323
1323
|
"default": "\"auto\"",
|
|
1324
1324
|
"fieldName": "sidebarPositioning"
|
|
1325
1325
|
},
|
|
1326
|
+
{
|
|
1327
|
+
"name": "sidebar-width",
|
|
1328
|
+
"type": {
|
|
1329
|
+
"text": "string | undefined"
|
|
1330
|
+
},
|
|
1331
|
+
"fieldName": "sidebarWidth"
|
|
1332
|
+
},
|
|
1326
1333
|
{
|
|
1327
1334
|
"name": "transition-style",
|
|
1328
1335
|
"type": {
|
|
@@ -1520,6 +1527,15 @@
|
|
|
1520
1527
|
"readonly": true,
|
|
1521
1528
|
"attribute": "sidebar-positioning"
|
|
1522
1529
|
},
|
|
1530
|
+
{
|
|
1531
|
+
"kind": "field",
|
|
1532
|
+
"name": "sidebarWidth",
|
|
1533
|
+
"type": {
|
|
1534
|
+
"text": "string | undefined"
|
|
1535
|
+
},
|
|
1536
|
+
"readonly": true,
|
|
1537
|
+
"attribute": "sidebar-width"
|
|
1538
|
+
},
|
|
1523
1539
|
{
|
|
1524
1540
|
"kind": "field",
|
|
1525
1541
|
"name": "transitionStyle",
|
|
@@ -38,6 +38,7 @@ export declare class SwirlAppLayout {
|
|
|
38
38
|
sidebarPositioning?: SwirlAppLayoutSidebarPositioning;
|
|
39
39
|
sidebarCloseButtonLabel?: string;
|
|
40
40
|
sidebarHeading?: string;
|
|
41
|
+
sidebarWidth?: string;
|
|
41
42
|
transitionStyle?: string;
|
|
42
43
|
contentScrollState: {
|
|
43
44
|
scrollable: boolean;
|
|
@@ -357,6 +357,7 @@ export namespace Components {
|
|
|
357
357
|
* @default "auto"
|
|
358
358
|
*/
|
|
359
359
|
"sidebarPositioning"?: SwirlAppLayoutSidebarPositioning;
|
|
360
|
+
"sidebarWidth"?: string;
|
|
360
361
|
/**
|
|
361
362
|
* Toggle the sidebar
|
|
362
363
|
*/
|
|
@@ -10160,6 +10161,7 @@ declare namespace LocalJSX {
|
|
|
10160
10161
|
* @default "auto"
|
|
10161
10162
|
*/
|
|
10162
10163
|
"sidebarPositioning"?: SwirlAppLayoutSidebarPositioning;
|
|
10164
|
+
"sidebarWidth"?: string;
|
|
10163
10165
|
/**
|
|
10164
10166
|
* @default "slides"
|
|
10165
10167
|
*/
|
|
@@ -15329,6 +15331,7 @@ declare namespace LocalJSX {
|
|
|
15329
15331
|
"sidebarPositioning": SwirlAppLayoutSidebarPositioning;
|
|
15330
15332
|
"sidebarCloseButtonLabel": string;
|
|
15331
15333
|
"sidebarHeading": string;
|
|
15334
|
+
"sidebarWidth": string;
|
|
15332
15335
|
"transitionStyle": string;
|
|
15333
15336
|
}
|
|
15334
15337
|
interface SwirlAutocompleteAttributes {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-ai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.485.1",
|
|
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.
|
|
29
|
+
"@getflip/swirl-components": "0.485.1",
|
|
30
30
|
"@types/node": "25.3.0",
|
|
31
31
|
"tsx": "^4.7.0",
|
|
32
32
|
"typescript": "5.9.3"
|