@checkstack/integration-frontend 0.0.3 → 0.0.5
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @checkstack/integration-frontend
|
|
2
2
|
|
|
3
|
+
## 0.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 97c5a6b: Fix Radix UI accessibility warning in dialog components by adding visually hidden DialogDescription components
|
|
8
|
+
- Updated dependencies [8e43507]
|
|
9
|
+
- Updated dependencies [97c5a6b]
|
|
10
|
+
- Updated dependencies [8e43507]
|
|
11
|
+
- @checkstack/ui@0.1.0
|
|
12
|
+
- @checkstack/common@0.1.0
|
|
13
|
+
- @checkstack/frontend-api@0.0.4
|
|
14
|
+
- @checkstack/integration-common@0.0.4
|
|
15
|
+
- @checkstack/signal-frontend@0.0.5
|
|
16
|
+
|
|
17
|
+
## 0.0.4
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [f5b1f49]
|
|
22
|
+
- Updated dependencies [f5b1f49]
|
|
23
|
+
- @checkstack/common@0.0.3
|
|
24
|
+
- @checkstack/ui@0.0.4
|
|
25
|
+
- @checkstack/frontend-api@0.0.3
|
|
26
|
+
- @checkstack/integration-common@0.0.3
|
|
27
|
+
- @checkstack/signal-frontend@0.0.4
|
|
28
|
+
|
|
3
29
|
## 0.0.3
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -4,6 +4,7 @@ import { Trash2, ScrollText } from "lucide-react";
|
|
|
4
4
|
import {
|
|
5
5
|
Dialog,
|
|
6
6
|
DialogContent,
|
|
7
|
+
DialogDescription,
|
|
7
8
|
DialogHeader,
|
|
8
9
|
DialogTitle,
|
|
9
10
|
DialogFooter,
|
|
@@ -371,6 +372,13 @@ export const SubscriptionDialog = ({
|
|
|
371
372
|
selectedProvider?.displayName ?? "Subscription"
|
|
372
373
|
}`}
|
|
373
374
|
</DialogTitle>
|
|
375
|
+
<DialogDescription className="sr-only">
|
|
376
|
+
{isEditMode
|
|
377
|
+
? "Edit the settings for this integration subscription"
|
|
378
|
+
: step === "provider"
|
|
379
|
+
? "Choose a provider for your integration subscription"
|
|
380
|
+
: "Configure the subscription settings"}
|
|
381
|
+
</DialogDescription>
|
|
374
382
|
</DialogHeader>
|
|
375
383
|
|
|
376
384
|
{step === "provider" ? (
|