@launchdarkly/toolbar 0.24.0-beta.1 → 0.25.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/LICENSE +1 -1
- package/README.md +0 -2
- package/dist/js/index.js +461 -446
- package/dist/ui/Toolbar/TabContent/EventsTabContent.css.d.ts +0 -1
- package/dist/ui/Toolbar/components/IconLinkButton.d.ts +11 -0
- package/package.json +12 -12
|
@@ -5,7 +5,6 @@ export declare const eventName: string;
|
|
|
5
5
|
export declare const eventMeta: string;
|
|
6
6
|
export declare const eventBadge: string;
|
|
7
7
|
export declare const eventBadgeFeature: string;
|
|
8
|
-
export declare const eventBadgeFeatureNotFound: string;
|
|
9
8
|
export declare const addButtonContainer: string;
|
|
10
9
|
export declare const addButton: string;
|
|
11
10
|
export declare const eventBadgeIdentify: string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IconLinkButtonProps {
|
|
3
|
+
icon: React.ReactNode;
|
|
4
|
+
label: string;
|
|
5
|
+
href: string;
|
|
6
|
+
target?: '_blank' | '_self' | '_parent' | '_top';
|
|
7
|
+
className?: string;
|
|
8
|
+
size?: 'small' | 'medium' | 'large';
|
|
9
|
+
onClick?: () => void;
|
|
10
|
+
}
|
|
11
|
+
export declare function IconLinkButton(props: IconLinkButtonProps): import("react/jsx-runtime").JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@launchdarkly/toolbar",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.25.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",
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"not IE 11"
|
|
48
48
|
],
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@rsbuild/core": "^1.5.
|
|
50
|
+
"@rsbuild/core": "^1.5.17",
|
|
51
51
|
"@rsbuild/plugin-react": "^1.4.1",
|
|
52
|
-
"@rslib/core": "^0.15.
|
|
52
|
+
"@rslib/core": "^0.15.1",
|
|
53
53
|
"@storybook/addon-docs": "^9.0.5",
|
|
54
54
|
"@storybook/addon-essentials": "^9.0.0-alpha.12",
|
|
55
55
|
"@storybook/addon-interactions": "^9.0.0-alpha.10",
|
|
@@ -58,13 +58,13 @@
|
|
|
58
58
|
"@storybook/blocks": "^9.0.0-alpha.17",
|
|
59
59
|
"@storybook/react": "^9.0.5",
|
|
60
60
|
"@storybook/test": "^9.0.0-alpha.2",
|
|
61
|
-
"@testing-library/jest-dom": "^6.
|
|
61
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
62
62
|
"@testing-library/react": "^16.3.0",
|
|
63
|
-
"@types/node": "^24.
|
|
63
|
+
"@types/node": "^24.7.2",
|
|
64
64
|
"@types/react": "^19.1.13",
|
|
65
65
|
"@vanilla-extract/vite-plugin": "^5.1.1",
|
|
66
66
|
"@vitest/coverage-v8": "3.2.4",
|
|
67
|
-
"jsdom": "^
|
|
67
|
+
"jsdom": "^27.0.0",
|
|
68
68
|
"launchdarkly-js-client-sdk": "^3.9.0",
|
|
69
69
|
"oxlint": "^1.0.0",
|
|
70
70
|
"react": "^19.1.1",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"storybook-react-rsbuild": "^2.0.0",
|
|
74
74
|
"typescript": "^5.8.3",
|
|
75
75
|
"vitest": "^3.2.2",
|
|
76
|
-
"webpack": "5.
|
|
76
|
+
"webpack": "5.102.1"
|
|
77
77
|
},
|
|
78
78
|
"peerDependencies": {
|
|
79
79
|
"launchdarkly-js-client-sdk": "^3.9.0",
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"access": "public"
|
|
84
84
|
},
|
|
85
85
|
"dependencies": {
|
|
86
|
-
"@react-aria/focus": "3.21.
|
|
87
|
-
"@react-aria/interactions": "3.25.
|
|
86
|
+
"@react-aria/focus": "3.21.2",
|
|
87
|
+
"@react-aria/interactions": "3.25.6",
|
|
88
88
|
"@react-aria/utils": "3.30.1",
|
|
89
89
|
"@react-stately/utils": "3.10.8",
|
|
90
90
|
"@react-types/shared": "3.32.0",
|
|
@@ -92,11 +92,11 @@
|
|
|
92
92
|
"@vanilla-extract/css": "^1.17.4",
|
|
93
93
|
"@vanilla-extract/webpack-plugin": "^2.3.22",
|
|
94
94
|
"class-variance-authority": "^0.7.1",
|
|
95
|
-
"motion": "^12.
|
|
95
|
+
"motion": "^12.23.24",
|
|
96
96
|
"react-aria": "3.43.2",
|
|
97
|
-
"react-aria-components": "1.
|
|
97
|
+
"react-aria-components": "1.13.0",
|
|
98
98
|
"react-hook-form": "7.59.0",
|
|
99
|
-
"react-router": "7.
|
|
99
|
+
"react-router": "7.9.4"
|
|
100
100
|
},
|
|
101
101
|
"scripts": {
|
|
102
102
|
"build": "rslib build && node ../../scripts/fix-base-url.cjs dist/js/index.js",
|