@launchdarkly/toolbar 2.2.1 → 2.3.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 +9 -0
- package/cdn/toolbar.min.js +42 -42
- package/dist/angular.cjs +1 -1
- package/dist/core/ui/Toolbar/components/IFrameErrorScreen/IFrameErrorScreen.css.d.ts +7 -0
- package/dist/core/ui/Toolbar/components/IFrameErrorScreen/IFrameErrorScreen.d.ts +5 -0
- package/dist/core/ui/Toolbar/components/IFrameErrorScreen/index.d.ts +1 -0
- package/dist/core/ui/Toolbar/context/api/AuthProvider.d.ts +1 -0
- package/dist/core/ui/Toolbar/context/api/IFrameProvider.d.ts +2 -0
- package/dist/index.cjs +1 -1
- package/dist/js/816.js +1 -1
- package/dist/react.cjs +1 -1
- package/dist/vue.cjs +1 -1
- package/package.json +2 -2
package/dist/angular.cjs
CHANGED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const errorContainer: string;
|
|
2
|
+
export declare const errorHeader: string;
|
|
3
|
+
export declare const headerLogo: string;
|
|
4
|
+
export declare const errorMainContent: string;
|
|
5
|
+
export declare const errorContent: string;
|
|
6
|
+
export declare const errorTitle: string;
|
|
7
|
+
export declare const errorDescription: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { IFrameErrorScreen } from './IFrameErrorScreen';
|
|
@@ -20,6 +20,8 @@ interface IFrameProviderProps {
|
|
|
20
20
|
type IFrameProviderType = {
|
|
21
21
|
ref: RefObject<HTMLIFrameElement | null>;
|
|
22
22
|
iframeSrc: string;
|
|
23
|
+
iframeLoaded: boolean;
|
|
24
|
+
onIFrameLoad: () => void;
|
|
23
25
|
};
|
|
24
26
|
export declare function IFrameProvider({ children, authUrl }: IFrameProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
25
27
|
export declare function useIFrameContext(): IFrameProviderType;
|
package/dist/index.cjs
CHANGED
package/dist/js/816.js
CHANGED
package/dist/react.cjs
CHANGED
package/dist/vue.cjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
3
|
"name": "@launchdarkly/toolbar",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.3.0",
|
|
5
5
|
"description": "A framework-agnostic developer toolbar for interacting with LaunchDarkly during development",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"launchdarkly",
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
"storybook-react-rsbuild": "^3.2.2",
|
|
181
181
|
"typescript": "^5.9.3",
|
|
182
182
|
"vitest": "^4.0.18",
|
|
183
|
-
"vue": "^3.5.
|
|
183
|
+
"vue": "^3.5.30"
|
|
184
184
|
},
|
|
185
185
|
"peerDependencies": {
|
|
186
186
|
"@angular/common": ">=14.0.0 <22.0.0",
|