@launchdarkly/toolbar 0.0.1 → 0.7.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/README.md +1 -1
- package/dist/js/index.js +2 -0
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -177,7 +177,7 @@ window.ldToolbar.toggle();
|
|
|
177
177
|
The toolbar requires a LaunchDarkly CLI dev-server to be running with CORS enabled.
|
|
178
178
|
|
|
179
179
|
```bash
|
|
180
|
-
ldcli dev-server start --project
|
|
180
|
+
ldcli dev-server start --project demo-project --cors-enabled true
|
|
181
181
|
```
|
|
182
182
|
|
|
183
183
|
## TypeScript
|
package/dist/js/index.js
CHANGED
|
@@ -4115,6 +4115,8 @@ function LdToolbar(props) {
|
|
|
4115
4115
|
onAnimationStart: handleAnimationStart,
|
|
4116
4116
|
onAnimationComplete: handleAnimationComplete,
|
|
4117
4117
|
"data-testid": "launchdarkly-toolbar",
|
|
4118
|
+
role: "toolbar",
|
|
4119
|
+
"aria-label": "LaunchDarkly Developer Toolbar",
|
|
4118
4120
|
children: [
|
|
4119
4121
|
/*#__PURE__*/ jsx(AnimatePresence, {
|
|
4120
4122
|
children: !showFullToolbar && /*#__PURE__*/ jsx(CircleLogo, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@launchdarkly/toolbar",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "A React component that provides a developer-friendly toolbar for interacting with LaunchDarkly during development",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"launchdarkly",
|
|
@@ -88,6 +88,9 @@
|
|
|
88
88
|
"react-dom": ">=16.9.0"
|
|
89
89
|
},
|
|
90
90
|
"private": false,
|
|
91
|
+
"publishConfig": {
|
|
92
|
+
"access": "public"
|
|
93
|
+
},
|
|
91
94
|
"dependencies": {
|
|
92
95
|
"@launchpad-ui/components": "^0.10.0",
|
|
93
96
|
"@launchpad-ui/core": "^0.56.10",
|