@getflip/swirl-ai 0.492.0 → 0.493.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-button.md +1 -1
- package/dist/agent/components/swirl-dialog.md +2 -0
- package/dist/agent/tokens.json +1218 -0
- package/dist/custom-elements.manifest.json +60 -2
- package/dist/types/components/swirl-button/swirl-button.d.ts +1 -1
- package/dist/types/components/swirl-dialog/swirl-dialog.d.ts +4 -0
- package/dist/types/components/swirl-dialog/swirl-dialog.stories.d.ts +8 -0
- package/dist/types/components.d.ts +22 -2
- package/package.json +3 -2
|
@@ -24,7 +24,7 @@ The SwirlButton component is used to trigger actions or events.
|
|
|
24
24
|
- `name` (string | undefined) –
|
|
25
25
|
- `pill` (boolean | undefined) –
|
|
26
26
|
- `pressed` (boolean | undefined) –
|
|
27
|
-
- `size` ("l" | "m" | undefined) –
|
|
27
|
+
- `size` ("l" | "m" | "s" | undefined) –
|
|
28
28
|
- `swirlAriaControls` (string | undefined) –
|
|
29
29
|
- `swirlAriaCurrent` (string | undefined) –
|
|
30
30
|
- `swirlAriaDescribedby` (string | undefined) –
|
|
@@ -10,11 +10,13 @@ The SwirlDialog component is used to overlay the user interface with content tha
|
|
|
10
10
|
|
|
11
11
|
## Optional props
|
|
12
12
|
|
|
13
|
+
- `actionsOrientation` ("horizontal" | "horizontal-reverse" | "vertical" | "vertical-reverse" | undefined) –
|
|
13
14
|
- `hideLabel` (boolean | undefined) –
|
|
14
15
|
- `intent` ("critical" | "primary" | undefined) –
|
|
15
16
|
- `primaryActionLabel` (string | undefined) –
|
|
16
17
|
- `returnFocusTo` (HTMLElement | string | undefined) –
|
|
17
18
|
- `secondaryActionLabel` (string | undefined) –
|
|
19
|
+
- `size` ("default" | "large" | undefined) –
|
|
18
20
|
|
|
19
21
|
## Slots
|
|
20
22
|
|