@launchdarkly/toolbar 2.2.0 → 2.2.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 +121 -121
- package/dist/angular.cjs +1 -1
- package/dist/core/ui/Toolbar/LaunchDarklyToolbar.d.ts +2 -8
- package/dist/core/ui/Toolbar/components/index.d.ts +0 -2
- package/dist/core/ui/Toolbar/types/toolbar.d.ts +1 -1
- package/dist/flags/toolbarFlags.d.ts +0 -2
- 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 +18 -18
- package/dist/core/ui/Toolbar/components/legacy/ActionButtonsContainer.css.d.ts +0 -4
- package/dist/core/ui/Toolbar/components/legacy/ActionButtonsContainer.d.ts +0 -6
- package/dist/core/ui/Toolbar/components/legacy/ExpandedToolbarContentLegacy.d.ts +0 -26
- package/dist/core/ui/Toolbar/components/legacy/FlagControls.css.d.ts +0 -12
- package/dist/core/ui/Toolbar/components/legacy/FlagControls.d.ts +0 -20
- package/dist/core/ui/Toolbar/components/legacy/Header/Header.css.d.ts +0 -20
- package/dist/core/ui/Toolbar/components/legacy/Header/Header.d.ts +0 -13
- package/dist/core/ui/Toolbar/components/legacy/Header/components/ActionButtons.d.ts +0 -12
- package/dist/core/ui/Toolbar/components/legacy/Header/components/EnvironmentLabel.d.ts +0 -5
- package/dist/core/ui/Toolbar/components/legacy/Header/components/LogoSection.d.ts +0 -6
- package/dist/core/ui/Toolbar/components/legacy/Header/components/SearchSection.d.ts +0 -8
- package/dist/core/ui/Toolbar/components/legacy/Header/components/index.d.ts +0 -4
- package/dist/core/ui/Toolbar/components/legacy/LocalFlagControls.css.d.ts +0 -5
- package/dist/core/ui/Toolbar/components/legacy/LocalFlagControls.d.ts +0 -25
- package/dist/core/ui/Toolbar/components/legacy/LocalObjectFlagControlListItem.css.d.ts +0 -4
- package/dist/core/ui/Toolbar/components/legacy/LocalObjectFlagControlListItem.d.ts +0 -13
- package/dist/core/ui/Toolbar/components/legacy/TabContent/EventsTabContent.css.d.ts +0 -24
- package/dist/core/ui/Toolbar/components/legacy/TabContent/EventsTabContent.d.ts +0 -7
- package/dist/core/ui/Toolbar/components/legacy/TabContent/FlagDevServerTabContent.css.d.ts +0 -10
- package/dist/core/ui/Toolbar/components/legacy/TabContent/FlagDevServerTabContent.d.ts +0 -5
- package/dist/core/ui/Toolbar/components/legacy/TabContent/FlagSdkOverrideTabContent.d.ts +0 -7
- package/dist/core/ui/Toolbar/components/legacy/TabContent/SettingsTab.css.d.ts +0 -13
- package/dist/core/ui/Toolbar/components/legacy/TabContent/SettingsTabContent.d.ts +0 -10
- package/dist/core/ui/Toolbar/components/legacy/TabContentRenderer.css.d.ts +0 -1
- package/dist/core/ui/Toolbar/components/legacy/TabContentRenderer.d.ts +0 -16
- package/dist/core/ui/Toolbar/components/legacy/index.d.ts +0 -1
package/dist/angular.cjs
CHANGED
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ToolbarPosition } from './types/toolbar';
|
|
2
2
|
import { IEventInterceptionPlugin, IFlagOverridePlugin } from '../../../types';
|
|
3
|
-
export
|
|
4
|
-
mode: ToolbarMode;
|
|
5
|
-
baseUrl: string;
|
|
6
|
-
flagOverridePlugin?: IFlagOverridePlugin;
|
|
7
|
-
eventInterceptionPlugin?: IEventInterceptionPlugin;
|
|
8
|
-
}
|
|
9
|
-
export declare function LdToolbar(props: LdToolbarProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare function LdToolbar(): import("react/jsx-runtime").JSX.Element;
|
|
10
4
|
export interface LaunchDarklyToolbarProps {
|
|
11
5
|
baseUrl?: string;
|
|
12
6
|
authUrl?: string;
|
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
export { ActionButtonsContainer } from './legacy/ActionButtonsContainer';
|
|
2
1
|
export { CircleLogo } from './CircleLogo';
|
|
3
2
|
export { ConnectionStatus } from './ConnectionStatus';
|
|
4
3
|
export { CopyableText } from './CopyableText';
|
|
5
4
|
export { DoNotTrackWarning } from './DoNotTrackWarning';
|
|
6
5
|
export { LaunchDarklyIcon } from './icons/LaunchDarklyIcon';
|
|
7
6
|
export { StatusDot } from './StatusDot';
|
|
8
|
-
export { TabContentRenderer } from './legacy/TabContentRenderer';
|
|
9
7
|
export { ErrorMessage } from './ErrorMessage';
|
|
10
8
|
export { type FlagFilterMode, FlagFilterOptionsContext, useFlagFilterOptions, } from './FilterOptions/useFlagFilterOptions';
|
|
11
9
|
export { FilterOptions } from './FilterOptions/FilterOptions';
|
|
@@ -7,7 +7,7 @@ export declare const SDK_MODE_TABS: readonly TabId[];
|
|
|
7
7
|
export declare const NEW_TOOLBAR_TABS: readonly TabId[];
|
|
8
8
|
export declare function getToolbarMode(devServerUrl?: string): ToolbarMode;
|
|
9
9
|
export declare function getTabsForMode(mode: ToolbarMode, hasFlagOverridePlugin: boolean, hasEventInterceptionPlugin: boolean): readonly TabId[];
|
|
10
|
-
export declare function getDefaultActiveTab(
|
|
10
|
+
export declare function getDefaultActiveTab(): TabId;
|
|
11
11
|
export interface FeatureFlag {
|
|
12
12
|
id: string;
|
|
13
13
|
name: string;
|
|
@@ -8,9 +8,7 @@
|
|
|
8
8
|
* export const myFeature = createToolbarFlagFunction('my-feature-key', defaultValue);
|
|
9
9
|
*/
|
|
10
10
|
export declare const ENABLE_SESSION_REPLAY_FLAG_KEY = "toolbar-enable-session-replay";
|
|
11
|
-
export declare const USE_NEW_TOOLBAR_DESIGN_FLAG_KEY = "use-new-toolbar-design";
|
|
12
11
|
export declare const enableAiIcon: () => boolean;
|
|
13
12
|
export declare const enableInteractiveIcon: () => boolean;
|
|
14
13
|
export declare const enableOptimizeIcon: () => boolean;
|
|
15
14
|
export declare const enableSessionReplay: () => boolean;
|
|
16
|
-
export declare const useNewToolbarDesign: () => boolean;
|
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.2.
|
|
4
|
+
"version": "2.2.1",
|
|
5
5
|
"description": "A framework-agnostic developer toolbar for interacting with LaunchDarkly during development",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"launchdarkly",
|
|
@@ -118,9 +118,20 @@
|
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
120
|
},
|
|
121
|
+
"scripts": {
|
|
122
|
+
"build": "pnpm run build:lib && pnpm run build:cdn",
|
|
123
|
+
"build:lib": "rslib build",
|
|
124
|
+
"build:cdn": "rslib build --config rslib.config.cdn.ts",
|
|
125
|
+
"dev": "rslib build --watch",
|
|
126
|
+
"dev:cdn": "rslib build --config rslib.config.cdn.ts --watch",
|
|
127
|
+
"test": "vitest run",
|
|
128
|
+
"lint": "oxlint",
|
|
129
|
+
"storybook": "storybook dev -p 6006",
|
|
130
|
+
"build:storybook": "storybook build"
|
|
131
|
+
},
|
|
121
132
|
"devDependencies": {
|
|
122
133
|
"@angular/common": "^21.1.5",
|
|
123
|
-
"@angular/core": "^21.
|
|
134
|
+
"@angular/core": "^21.2.4",
|
|
124
135
|
"@codemirror/commands": "^6.10.1",
|
|
125
136
|
"@codemirror/lang-json": "^6.0.2",
|
|
126
137
|
"@codemirror/language": "^6.12.1",
|
|
@@ -128,20 +139,20 @@
|
|
|
128
139
|
"@codemirror/state": "^6.5.4",
|
|
129
140
|
"@codemirror/view": "^6.39.11",
|
|
130
141
|
"@launchdarkly/observability": "^1.0.0",
|
|
131
|
-
"@launchdarkly/session-replay": "^1.0.
|
|
142
|
+
"@launchdarkly/session-replay": "^1.0.2",
|
|
132
143
|
"@launchpad-ui/components": "^0.17.12",
|
|
133
144
|
"@launchpad-ui/tokens": "^0.15.1",
|
|
134
145
|
"@lezer/highlight": "1.2.1",
|
|
135
146
|
"@react-aria/focus": "^3.21.3",
|
|
136
147
|
"@react-stately/flags": "^3.1.2",
|
|
137
148
|
"@rsbuild/core": "^1.7.3",
|
|
138
|
-
"@rsbuild/plugin-react": "^1.4.
|
|
149
|
+
"@rsbuild/plugin-react": "^1.4.5",
|
|
139
150
|
"@rslib/core": "^0.19.3",
|
|
140
151
|
"@storybook/addon-docs": "^10.2.10",
|
|
141
152
|
"@storybook/addon-essentials": "^9.0.0-alpha.12",
|
|
142
153
|
"@storybook/addon-interactions": "^9.0.0-alpha.10",
|
|
143
154
|
"@storybook/addon-links": "^10.2.1",
|
|
144
|
-
"@storybook/addon-onboarding": "^10.2.
|
|
155
|
+
"@storybook/addon-onboarding": "^10.2.11",
|
|
145
156
|
"@storybook/blocks": "^9.0.0-alpha.17",
|
|
146
157
|
"@storybook/react": "^10.2.4",
|
|
147
158
|
"@storybook/react-vite": "^10.2.10",
|
|
@@ -164,7 +175,7 @@
|
|
|
164
175
|
"react": "^19.2.4",
|
|
165
176
|
"react-dom": "^19.2.4",
|
|
166
177
|
"rxjs": "^7.8.2",
|
|
167
|
-
"storybook": "^10.2.
|
|
178
|
+
"storybook": "^10.2.19",
|
|
168
179
|
"storybook-addon-rslib": "^3.2.2",
|
|
169
180
|
"storybook-react-rsbuild": "^3.2.2",
|
|
170
181
|
"typescript": "^5.9.3",
|
|
@@ -199,16 +210,5 @@
|
|
|
199
210
|
"publishConfig": {
|
|
200
211
|
"access": "public",
|
|
201
212
|
"provenance": true
|
|
202
|
-
},
|
|
203
|
-
"scripts": {
|
|
204
|
-
"build": "pnpm run build:lib && pnpm run build:cdn",
|
|
205
|
-
"build:lib": "rslib build",
|
|
206
|
-
"build:cdn": "rslib build --config rslib.config.cdn.ts",
|
|
207
|
-
"dev": "rslib build --watch",
|
|
208
|
-
"dev:cdn": "rslib build --config rslib.config.cdn.ts --watch",
|
|
209
|
-
"test": "vitest run",
|
|
210
|
-
"lint": "oxlint",
|
|
211
|
-
"storybook": "storybook dev -p 6006",
|
|
212
|
-
"build:storybook": "storybook build"
|
|
213
213
|
}
|
|
214
|
-
}
|
|
214
|
+
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import React, { Dispatch, SetStateAction } from 'react';
|
|
2
|
-
import { ActiveTabId, ToolbarMode } from '../../types';
|
|
3
|
-
import { IEventInterceptionPlugin, IFlagOverridePlugin } from '../../../../../types';
|
|
4
|
-
interface ExpandedToolbarContentProps {
|
|
5
|
-
activeTab: ActiveTabId;
|
|
6
|
-
slideDirection: number;
|
|
7
|
-
searchTerm: string;
|
|
8
|
-
searchIsExpanded: boolean;
|
|
9
|
-
onSearch: (searchTerm: string) => void;
|
|
10
|
-
onClose: () => void;
|
|
11
|
-
onToggleAutoCollapse: () => void;
|
|
12
|
-
isAutoCollapseEnabled: boolean;
|
|
13
|
-
onTabChange: (tabId: string) => void;
|
|
14
|
-
setSearchIsExpanded: Dispatch<SetStateAction<boolean>>;
|
|
15
|
-
mode: ToolbarMode;
|
|
16
|
-
baseUrl: string;
|
|
17
|
-
defaultActiveTab: ActiveTabId;
|
|
18
|
-
flagOverridePlugin?: IFlagOverridePlugin;
|
|
19
|
-
eventInterceptionPlugin?: IEventInterceptionPlugin;
|
|
20
|
-
onHeaderMouseDown?: (event: React.MouseEvent) => void;
|
|
21
|
-
reloadOnFlagChangeIsEnabled: boolean;
|
|
22
|
-
onToggleReloadOnFlagChange: () => void;
|
|
23
|
-
onOpenAuthModal?: () => void;
|
|
24
|
-
}
|
|
25
|
-
export declare const ExpandedToolbarContentLegacy: React.ForwardRefExoticComponent<ExpandedToolbarContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
26
|
-
export {};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export declare const switch_: string;
|
|
2
|
-
export declare const switchContainer: string;
|
|
3
|
-
export declare const customVariantContainer: string;
|
|
4
|
-
export declare const jsonEditorContainer: string;
|
|
5
|
-
export declare const currentValueGroup: string;
|
|
6
|
-
export declare const customVariantFieldGroup: string;
|
|
7
|
-
export declare const currentValue: string;
|
|
8
|
-
export declare const customVariantField: string;
|
|
9
|
-
export declare const currentValueText: string;
|
|
10
|
-
export declare const select: string;
|
|
11
|
-
export declare const selectedValue: string;
|
|
12
|
-
export declare const icon: string;
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { EnhancedFlag } from '../../../../types/devServer';
|
|
2
|
-
interface BooleanFlagControlProps {
|
|
3
|
-
flag: EnhancedFlag;
|
|
4
|
-
onOverride: (value: boolean) => void;
|
|
5
|
-
disabled?: boolean;
|
|
6
|
-
}
|
|
7
|
-
export declare function BooleanFlagControl(props: BooleanFlagControlProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
interface MultivariateFlagControlProps {
|
|
9
|
-
flag: EnhancedFlag;
|
|
10
|
-
onOverride: (value: any) => void;
|
|
11
|
-
disabled?: boolean;
|
|
12
|
-
}
|
|
13
|
-
export declare function MultivariateFlagControl(props: MultivariateFlagControlProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
-
interface StringNumberFlagControlProps {
|
|
15
|
-
flag: EnhancedFlag;
|
|
16
|
-
onOverride: (value: string | number) => void;
|
|
17
|
-
disabled?: boolean;
|
|
18
|
-
}
|
|
19
|
-
export declare function StringNumberFlagControl(props: StringNumberFlagControlProps): import("react/jsx-runtime").JSX.Element;
|
|
20
|
-
export {};
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export declare const header: string;
|
|
2
|
-
export declare const leftSection: string;
|
|
3
|
-
export declare const logo: string;
|
|
4
|
-
export declare const headerTitle: string;
|
|
5
|
-
export declare const centerSection: string;
|
|
6
|
-
export declare const environmentLabel: string;
|
|
7
|
-
export declare const rightSection: string;
|
|
8
|
-
export declare const searchButtonArea: string;
|
|
9
|
-
export declare const closeButtonArea: string;
|
|
10
|
-
export declare const actionButton: string;
|
|
11
|
-
export declare const actionButtonSvg: string;
|
|
12
|
-
export declare const searchField: string;
|
|
13
|
-
export declare const searchGroup: string;
|
|
14
|
-
export declare const searchFieldWrapper: string;
|
|
15
|
-
export declare const searchFieldWrapperSvg: string;
|
|
16
|
-
export declare const searchWrapper: string;
|
|
17
|
-
export declare const environmentWrapper: string;
|
|
18
|
-
export declare const icon: string;
|
|
19
|
-
export declare const environmentLabelWrapper: string;
|
|
20
|
-
export declare const environmentTooltip: string;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { Dispatch, SetStateAction } from 'react';
|
|
2
|
-
import { ToolbarMode } from '../../../types';
|
|
3
|
-
export interface HeaderProps {
|
|
4
|
-
searchTerm: string;
|
|
5
|
-
onSearch: (searchTerm: string) => void;
|
|
6
|
-
onClose: () => void;
|
|
7
|
-
searchIsExpanded: boolean;
|
|
8
|
-
setSearchIsExpanded: Dispatch<SetStateAction<boolean>>;
|
|
9
|
-
mode: ToolbarMode;
|
|
10
|
-
onMouseDown?: (event: React.MouseEvent) => void;
|
|
11
|
-
onOpenConfig?: () => void;
|
|
12
|
-
}
|
|
13
|
-
export declare function Header(props: HeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { Dispatch, SetStateAction } from 'react';
|
|
2
|
-
interface ActionButtonsProps {
|
|
3
|
-
searchIsExpanded: boolean;
|
|
4
|
-
setSearchIsExpanded: Dispatch<SetStateAction<boolean>>;
|
|
5
|
-
onClose: () => void;
|
|
6
|
-
onRefresh: () => void;
|
|
7
|
-
onOpenConfig?: () => void;
|
|
8
|
-
showSearchButton: boolean;
|
|
9
|
-
showRefreshButton: boolean;
|
|
10
|
-
}
|
|
11
|
-
export declare function ActionButtons(props: ActionButtonsProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
export {};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { Dispatch, SetStateAction } from 'react';
|
|
2
|
-
interface SearchSectionProps {
|
|
3
|
-
searchTerm: string;
|
|
4
|
-
onSearch: (searchTerm: string) => void;
|
|
5
|
-
setSearchIsExpanded: Dispatch<SetStateAction<boolean>>;
|
|
6
|
-
}
|
|
7
|
-
export declare function SearchSection(props: SearchSectionProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
export {};
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { LocalFlag } from '../../context';
|
|
2
|
-
import { EnhancedFlag } from '../../../../types/devServer';
|
|
3
|
-
interface LocalBooleanFlagControlProps {
|
|
4
|
-
flag: LocalFlag;
|
|
5
|
-
onOverride: (value: boolean) => void;
|
|
6
|
-
disabled?: boolean;
|
|
7
|
-
}
|
|
8
|
-
export declare function LocalBooleanFlagControl(props: LocalBooleanFlagControlProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
interface LocalStringNumberFlagControlProps {
|
|
10
|
-
flag: LocalFlag;
|
|
11
|
-
onOverride: (value: string | number) => void;
|
|
12
|
-
disabled?: boolean;
|
|
13
|
-
}
|
|
14
|
-
export declare function LocalStringNumberFlagControl(props: LocalStringNumberFlagControlProps): import("react/jsx-runtime").JSX.Element;
|
|
15
|
-
interface LocalObjectFlagControlProps {
|
|
16
|
-
flag: LocalFlag | EnhancedFlag;
|
|
17
|
-
isEditing: boolean;
|
|
18
|
-
handleEdit: () => void;
|
|
19
|
-
handleConfirm: () => void;
|
|
20
|
-
handleCancel: () => void;
|
|
21
|
-
onOverride: (value: any) => void;
|
|
22
|
-
hasErrors: boolean;
|
|
23
|
-
}
|
|
24
|
-
export declare function LocalObjectFlagControl(props: LocalObjectFlagControlProps): import("react/jsx-runtime").JSX.Element;
|
|
25
|
-
export {};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { EnhancedFlag } from '../../../../types/devServer';
|
|
2
|
-
import { LocalFlag } from '../../context';
|
|
3
|
-
interface LocalObjectFlagControlListItemProps {
|
|
4
|
-
handleClearOverride: (key: string) => void;
|
|
5
|
-
handleOverride: (flagKey: string, value: any) => void;
|
|
6
|
-
handleHeightChange: (height: number) => void;
|
|
7
|
-
onToggleStarred?: (flagKey: string) => void;
|
|
8
|
-
flag: LocalFlag | EnhancedFlag;
|
|
9
|
-
size: number;
|
|
10
|
-
start: number;
|
|
11
|
-
}
|
|
12
|
-
export declare function LocalObjectFlagControlListItem(props: LocalObjectFlagControlListItemProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
export {};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
export declare const statsHeader: string;
|
|
2
|
-
export declare const statsText: string;
|
|
3
|
-
export declare const eventInfo: string;
|
|
4
|
-
export declare const eventName: string;
|
|
5
|
-
export declare const eventMeta: string;
|
|
6
|
-
export declare const eventBadge: string;
|
|
7
|
-
export declare const eventBadgeFeature: string;
|
|
8
|
-
export declare const addButtonContainer: string;
|
|
9
|
-
export declare const addButton: string;
|
|
10
|
-
export declare const eventBadgeIdentify: string;
|
|
11
|
-
export declare const eventBadgeCustom: string;
|
|
12
|
-
export declare const eventBadgeDebug: string;
|
|
13
|
-
export declare const eventBadgeSummary: string;
|
|
14
|
-
export declare const eventBadgeDiagnostic: string;
|
|
15
|
-
export declare const eventBadgeDefault: string;
|
|
16
|
-
export declare const virtualContainer: string;
|
|
17
|
-
export declare const virtualInner: string;
|
|
18
|
-
export declare const virtualItem: string;
|
|
19
|
-
export declare const liveTailContainer: string;
|
|
20
|
-
export declare const liveTailIndicator: string;
|
|
21
|
-
export declare const liveTailDot: string;
|
|
22
|
-
export declare const liveTailText: string;
|
|
23
|
-
export declare const liveTailSubtext: string;
|
|
24
|
-
export declare const eventListItem: string;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { IEventInterceptionPlugin } from '../../../../../../types';
|
|
2
|
-
interface EventsTabContentProps {
|
|
3
|
-
baseUrl: string;
|
|
4
|
-
eventInterceptionPlugin?: IEventInterceptionPlugin;
|
|
5
|
-
}
|
|
6
|
-
export declare function EventsTabContent(props: EventsTabContentProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export {};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare const flagName: string;
|
|
2
|
-
export declare const flagNameText: string;
|
|
3
|
-
export declare const flagHeader: string;
|
|
4
|
-
export declare const flagKey: string;
|
|
5
|
-
export declare const flagOptions: string;
|
|
6
|
-
export declare const virtualContainer: string;
|
|
7
|
-
export declare const virtualInner: string;
|
|
8
|
-
export declare const virtualItem: string;
|
|
9
|
-
export declare const flagListItem: string;
|
|
10
|
-
export declare const flagListItemBlock: string;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { IFlagOverridePlugin } from '../../../../../../types';
|
|
2
|
-
interface FlagSdkOverrideTabContentProps {
|
|
3
|
-
flagOverridePlugin?: IFlagOverridePlugin;
|
|
4
|
-
reloadOnFlagChangeIsEnabled: boolean;
|
|
5
|
-
}
|
|
6
|
-
export declare function FlagSdkOverrideTabContent(props: FlagSdkOverrideTabContentProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export {};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export declare const settingsGroup: string;
|
|
2
|
-
export declare const settingsGroupTitle: string;
|
|
3
|
-
export declare const switch_: string;
|
|
4
|
-
export declare const settingInfo: string;
|
|
5
|
-
export declare const settingDetails: string;
|
|
6
|
-
export declare const settingName: string;
|
|
7
|
-
export declare const settingDescription: string;
|
|
8
|
-
export declare const settingValue: string;
|
|
9
|
-
export declare const statusIndicator: string;
|
|
10
|
-
export declare const statusText: string;
|
|
11
|
-
export declare const icon: string;
|
|
12
|
-
export declare const select: string;
|
|
13
|
-
export declare const selectedValue: string;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ToolbarMode } from '../../../types';
|
|
2
|
-
interface SettingsTabContentProps {
|
|
3
|
-
mode: ToolbarMode;
|
|
4
|
-
reloadOnFlagChangeIsEnabled: boolean;
|
|
5
|
-
onToggleReloadOnFlagChange: () => void;
|
|
6
|
-
isAutoCollapseEnabled: boolean;
|
|
7
|
-
onToggleAutoCollapse: () => void;
|
|
8
|
-
}
|
|
9
|
-
export declare function SettingsTabContent(props: SettingsTabContentProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const tabContent: string;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { TabId, ToolbarMode } from '../../types';
|
|
2
|
-
import { IEventInterceptionPlugin, IFlagOverridePlugin } from '../../../../../types';
|
|
3
|
-
interface TabContentRendererProps {
|
|
4
|
-
activeTab: TabId;
|
|
5
|
-
baseUrl: string;
|
|
6
|
-
slideDirection: number;
|
|
7
|
-
mode: ToolbarMode;
|
|
8
|
-
flagOverridePlugin?: IFlagOverridePlugin;
|
|
9
|
-
eventInterceptionPlugin?: IEventInterceptionPlugin;
|
|
10
|
-
reloadOnFlagChangeIsEnabled: boolean;
|
|
11
|
-
onToggleReloadOnFlagChange: () => void;
|
|
12
|
-
isAutoCollapseEnabled: boolean;
|
|
13
|
-
onToggleAutoCollapse: () => void;
|
|
14
|
-
}
|
|
15
|
-
export declare function TabContentRenderer(props: TabContentRendererProps): import("react/jsx-runtime").JSX.Element | null;
|
|
16
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './ExpandedToolbarContentLegacy';
|