@launchdarkly/toolbar 2.6.0-beta.1 → 2.7.0-beta.1
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/cdn/toolbar.min.js +53 -53
- package/dist/core/ui/Toolbar/components/new/ContentActions.module.css.d.ts +4 -0
- package/dist/core/ui/Toolbar/components/new/FilterOverlay/FilterOverlay.module.css.d.ts +1 -0
- package/dist/core/ui/Toolbar/components/new/Tooltip.d.ts +3 -1
- package/dist/core/ui/Toolbar/context/api/ContextsProvider.d.ts +1 -0
- package/dist/index.cjs +1 -1
- package/dist/js/index.js +1 -1
- package/dist/js/react.js +1 -1
- package/dist/react.cjs +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
export declare const container: string;
|
|
2
|
+
export declare const searchContainer: string;
|
|
3
|
+
export declare const searchDropdown: string;
|
|
4
|
+
export declare const searchDropdownFlags: string;
|
|
5
|
+
export declare const searchDropdownLeft: string;
|
|
2
6
|
export declare const actionButton: string;
|
|
3
7
|
export declare const clearButton: string;
|
|
4
8
|
export declare const icon: string;
|
|
@@ -2,6 +2,8 @@ import React from 'react';
|
|
|
2
2
|
interface TooltipProps {
|
|
3
3
|
content: string;
|
|
4
4
|
children: React.ReactNode;
|
|
5
|
+
offsetTop?: number;
|
|
6
|
+
offsetLeft?: number;
|
|
5
7
|
}
|
|
6
|
-
export declare function Tooltip({ content, children }: TooltipProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare function Tooltip({ content, children, offsetTop, offsetLeft }: TooltipProps): import("react/jsx-runtime").JSX.Element;
|
|
7
9
|
export {};
|
|
@@ -10,6 +10,7 @@ interface ContextsContextType {
|
|
|
10
10
|
activeContext: LDContext | null;
|
|
11
11
|
isAddFormOpen: boolean;
|
|
12
12
|
setIsAddFormOpen: (isOpen: boolean) => void;
|
|
13
|
+
clearContexts: () => void;
|
|
13
14
|
}
|
|
14
15
|
export declare const ContextsProvider: ({ children }: {
|
|
15
16
|
children: React.ReactNode;
|
package/dist/index.cjs
CHANGED
|
@@ -552,7 +552,7 @@ async function lazyLoad(signal, url) {
|
|
|
552
552
|
throw new Error(`Could not load LaunchDarkly developer toolbar bundle from ${url}`);
|
|
553
553
|
}
|
|
554
554
|
}
|
|
555
|
-
var package_namespaceObject = JSON.parse('{"rE":"2.
|
|
555
|
+
var package_namespaceObject = JSON.parse('{"rE":"2.7.0-beta.1"}');
|
|
556
556
|
function useLaunchDarklyToolbar(args) {
|
|
557
557
|
const { toolbarBundleUrl, enabled, ...initConfig } = args;
|
|
558
558
|
const configRef = (0, external_react_namespaceObject.useRef)(null);
|
package/dist/js/index.js
CHANGED
|
@@ -518,7 +518,7 @@ async function lazyLoad(signal, url) {
|
|
|
518
518
|
throw new Error(`Could not load LaunchDarkly developer toolbar bundle from ${url}`);
|
|
519
519
|
}
|
|
520
520
|
}
|
|
521
|
-
var package_namespaceObject = JSON.parse('{"rE":"2.
|
|
521
|
+
var package_namespaceObject = JSON.parse('{"rE":"2.7.0-beta.1"}');
|
|
522
522
|
function useLaunchDarklyToolbar(args) {
|
|
523
523
|
const { toolbarBundleUrl, enabled, ...initConfig } = args;
|
|
524
524
|
const configRef = useRef(null);
|
package/dist/js/react.js
CHANGED
|
@@ -49,7 +49,7 @@ async function lazyLoad(signal, url) {
|
|
|
49
49
|
throw new Error(`Could not load LaunchDarkly developer toolbar bundle from ${url}`);
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
|
-
var package_namespaceObject = JSON.parse('{"rE":"2.
|
|
52
|
+
var package_namespaceObject = JSON.parse('{"rE":"2.7.0-beta.1"}');
|
|
53
53
|
function useLaunchDarklyToolbar(args) {
|
|
54
54
|
const { toolbarBundleUrl, enabled, ...initConfig } = args;
|
|
55
55
|
const configRef = useRef(null);
|
package/dist/react.cjs
CHANGED
|
@@ -78,7 +78,7 @@ async function lazyLoad(signal, url) {
|
|
|
78
78
|
throw new Error(`Could not load LaunchDarkly developer toolbar bundle from ${url}`);
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
|
-
var package_namespaceObject = JSON.parse('{"rE":"2.
|
|
81
|
+
var package_namespaceObject = JSON.parse('{"rE":"2.7.0-beta.1"}');
|
|
82
82
|
function useLaunchDarklyToolbar(args) {
|
|
83
83
|
const { toolbarBundleUrl, enabled, ...initConfig } = args;
|
|
84
84
|
const configRef = (0, external_react_namespaceObject.useRef)(null);
|
package/package.json
CHANGED