@har-analyzer/components 0.0.16 → 0.0.18
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 +50 -25
- package/dist/chunks/collapsible-key-value-list.js +5 -5
- package/dist/chunks/content-viewer.js +147 -141
- package/dist/chunks/context.js +5 -0
- package/dist/chunks/index.js +588 -521
- package/dist/chunks/provider.js +11 -0
- package/dist/components/collapsible-section.d.ts +1 -1
- package/dist/components/enhanced-table.d.ts +10 -2
- package/dist/context/user-preferences/index.d.ts +6 -0
- package/dist/context/user-preferences/provider.d.ts +9 -0
- package/dist/context/user-preferences-store/context.d.ts +5 -0
- package/dist/context/user-preferences-store/hooks.d.ts +1 -0
- package/dist/context/user-preferences-store/provider.d.ts +5 -0
- package/dist/features/har-analyzer/components/app-layout.d.ts +7 -0
- package/dist/features/har-analyzer/components/preferences/index.d.ts +1 -0
- package/dist/features/har-analyzer/components/top-navigation.d.ts +8 -0
- package/dist/features/har-analyzer/context/preferences.d.ts +2 -0
- package/dist/features/har-analyzer-preferences-store/index.d.ts +2 -0
- package/dist/features/har-entries-viewer/index.d.ts +0 -1
- package/dist/features/list-har-entries/components/compare-mode-switcher.d.ts +1 -6
- package/dist/features/list-har-entries/components/content-type-filter.d.ts +1 -7
- package/dist/features/list-har-entries/components/errors-filter.d.ts +1 -6
- package/dist/features/list-har-entries/components/har-entries-table.d.ts +8 -0
- package/dist/features/list-har-entries/context/preferences.d.ts +5 -0
- package/dist/features/list-har-entries/index.d.ts +3 -9
- package/dist/har-analyzer-preferences-store.js +4 -0
- package/dist/har-analyzer.js +93 -87
- package/dist/har-entries-viewer.js +80 -79
- package/dist/index.d.ts +7 -1
- package/dist/index.js +9 -9
- package/dist/list-har-entries.js +2 -6
- package/dist/utils/har.d.ts +1 -1
- package/dist/utils/json.d.ts +1 -1
- package/package.json +1 -1
- package/dist/chunks/json.js +0 -10
- package/dist/components/enhanced-top-navigation.d.ts +0 -7
- package/dist/components/simple-app-layout.d.ts +0 -6
- package/dist/components/simple-app-preferences/index.d.ts +0 -1
- package/dist/features/har-analyzer-preferences/index.d.ts +0 -7
- package/dist/features/list-har-entries/hooks/preferences.d.ts +0 -2
- package/dist/har-analyzer-preferences.js +0 -25
- package/dist/hooks/app-preferences.d.ts +0 -2
- package/dist/hooks/compare-mode-preference.d.ts +0 -1
- package/dist/hooks/table-preferences.d.ts +0 -12
- /package/dist/{components/simple-app-preferences → features/har-analyzer/components/preferences/components}/content-width-switcher.d.ts +0 -0
- /package/dist/{components/simple-app-preferences → features/har-analyzer/components/preferences/components}/theme-switcher.d.ts +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
type CollapsibleSectionProps = React.PropsWithChildren<{
|
|
2
2
|
title: string;
|
|
3
|
-
variant?: 'default' | 'container' | '
|
|
3
|
+
variant?: 'default' | 'container' | 'inline';
|
|
4
4
|
}>;
|
|
5
5
|
export default function CollapsibleSection({ title, children, variant, }: CollapsibleSectionProps): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { CollectionPreferencesProps } from '@cloudscape-design/components/collection-preferences';
|
|
1
2
|
interface BaseColumnDefinition {
|
|
2
3
|
header: string;
|
|
3
4
|
width?: number;
|
|
@@ -34,11 +35,18 @@ interface ListColumnDefinition<TItem> {
|
|
|
34
35
|
}
|
|
35
36
|
type EnhancedColumnDefinition<TItem> = BaseColumnDefinition & (DefaultColumnDefinition<TItem> | NumericColumnDefinition<TItem> | DateColumnDefinition<TItem> | ListColumnDefinition<TItem>);
|
|
36
37
|
export type EnhancedTableColumnsDefinition<TItem> = Record<string, EnhancedColumnDefinition<TItem>>;
|
|
38
|
+
export interface EnhancedTablePreferences {
|
|
39
|
+
collectionPreferences: CollectionPreferencesProps.Preferences | undefined;
|
|
40
|
+
preferredColumnWidths: {
|
|
41
|
+
id: string;
|
|
42
|
+
width?: number;
|
|
43
|
+
}[];
|
|
44
|
+
}
|
|
37
45
|
interface EnhancedTableProps<TItem> {
|
|
38
|
-
id: string;
|
|
39
46
|
items: TItem[];
|
|
40
47
|
getRowId: (item: TItem) => string;
|
|
41
48
|
columnsDefinition: EnhancedTableColumnsDefinition<TItem>;
|
|
49
|
+
useTablePreferences: () => [EnhancedTablePreferences, (preferences: EnhancedTablePreferences) => void];
|
|
42
50
|
empty?: React.ReactNode;
|
|
43
51
|
selectionType?: 'single' | 'multi';
|
|
44
52
|
isEntireRowSelectable?: boolean;
|
|
@@ -47,5 +55,5 @@ interface EnhancedTableProps<TItem> {
|
|
|
47
55
|
contentDensity?: 'compact' | 'comfortable';
|
|
48
56
|
header?: React.ReactNode;
|
|
49
57
|
}
|
|
50
|
-
export default function EnhancedTable<TItem>({
|
|
58
|
+
export default function EnhancedTable<TItem>({ items: originalItems, getRowId, columnsDefinition: enhancedColumnDefinitions, useTablePreferences, empty, selectionType, isEntireRowSelectable, selectedItems, onSelectionChange, contentDensity, header, }: EnhancedTableProps<TItem>): import("react/jsx-runtime").JSX.Element;
|
|
51
59
|
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
import { UserPreferencesContextValue } from './provider';
|
|
3
|
+
export declare function createUserPreferencesContext<T>(preferenceKey: string, defaultPreferenceValue: T): {
|
|
4
|
+
useUserPreferences: () => UserPreferencesContextValue<T>;
|
|
5
|
+
Provider: ({ children }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Context, PropsWithChildren } from 'react';
|
|
2
|
+
export type UserPreferencesContextValue<T> = [T, (preference: T) => void];
|
|
3
|
+
interface UserPreferencesProviderProps<T> {
|
|
4
|
+
context: Context<UserPreferencesContextValue<T>>;
|
|
5
|
+
preferenceKey: string;
|
|
6
|
+
defaultPreferenceValue: T;
|
|
7
|
+
}
|
|
8
|
+
export declare function UserPreferencesProvider<T>(props: PropsWithChildren<UserPreferencesProviderProps<T>>): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export interface UserPreferencesStore {
|
|
2
|
+
getPreference: (key: string) => Promise<string | undefined>;
|
|
3
|
+
setPreference: (key: string, value: string) => Promise<void>;
|
|
4
|
+
}
|
|
5
|
+
export declare const UserPreferencesStoreContext: import('react').Context<UserPreferencesStore | undefined>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function useUserPreferencesStore(): import('./context').UserPreferencesStore | undefined;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
import { UserPreferencesStore } from './context';
|
|
3
|
+
export declare function UserPreferencesStoreProvider({ userPreferencesStore, children, }: PropsWithChildren<{
|
|
4
|
+
userPreferencesStore: UserPreferencesStore;
|
|
5
|
+
}>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function AppPreferences(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const TOP_NAVIGATION_ID = "top-navigation";
|
|
2
|
+
interface TopNavigationProps {
|
|
3
|
+
logo?: React.ReactNode;
|
|
4
|
+
appName: string;
|
|
5
|
+
utilities?: React.ReactNode;
|
|
6
|
+
}
|
|
7
|
+
export default function TopNavigation({ logo, appName, utilities, }: TopNavigationProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const useAppContentWidthPreference: () => import('../../../context/user-preferences/provider').UserPreferencesContextValue<boolean>, AppContentWidthProvider: ({ children }: import('react').PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare const useThemePreference: () => import('../../../context/user-preferences/provider').UserPreferencesContextValue<boolean>, ThemeProvider: ({ children }: import('react').PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
|
|
2
|
-
isCompareMode: boolean;
|
|
3
|
-
onChange: (isCompareMode: boolean) => void;
|
|
4
|
-
}
|
|
5
|
-
export default function CompareModeSwitcher(props: CompareModeSwitcherProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
export {};
|
|
1
|
+
export default function CompareModeSwitcher(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
interface ContentTypeFilterProps {
|
|
3
|
-
contentTypeFilters: ContentTypeGroup[];
|
|
4
|
-
onChange: (contentTypeFilters: ContentTypeGroup[]) => void;
|
|
5
|
-
}
|
|
6
|
-
export default function ContentTypeFilter({ contentTypeFilters, onChange }: ContentTypeFilterProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export {};
|
|
1
|
+
export default function ContentTypeFilter(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
|
|
2
|
-
shouldFilterErrors: boolean;
|
|
3
|
-
onChange: (shouldFilterErrors: boolean) => void;
|
|
4
|
-
}
|
|
5
|
-
export default function ErrorsFilter({ shouldFilterErrors, onChange }: ErrorsFilterProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
export {};
|
|
1
|
+
export default function ErrorsFilter(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { HAREntry } from '../../../utils/har';
|
|
2
|
+
export interface HAREntriesTableProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
harEntries: HAREntry[];
|
|
5
|
+
selectedHAREntries: HAREntry[];
|
|
6
|
+
onSelectionChange: (selectedHAREntries: HAREntry[]) => void;
|
|
7
|
+
}
|
|
8
|
+
export default function HAREntriesTable({ title, harEntries, selectedHAREntries, onSelectionChange, }: HAREntriesTableProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { EnhancedTablePreferences } from '../../../components/enhanced-table';
|
|
2
|
+
export declare const useTablePreferences: () => import('../../../context/user-preferences/provider').UserPreferencesContextValue<EnhancedTablePreferences>, TablePreferencesProvider: ({ children }: import('react').PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const useCompareModePreference: () => import('../../../context/user-preferences/provider').UserPreferencesContextValue<boolean>, CompareModeProvider: ({ children }: import('react').PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export declare const useErrorsFilterPreference: () => import('../../../context/user-preferences/provider').UserPreferencesContextValue<boolean>, ErrorsFilterProvider: ({ children }: import('react').PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare const useContentTypeFiltersPreference: () => import('../../../context/user-preferences/provider').UserPreferencesContextValue<("JSON" | "XML" | "JS" | "CSS" | "HTML" | "Doc" | "Img" | "Font" | "Media" | "Other")[]>, ContentTypeFiltersProvider: ({ children }: import('react').PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,10 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
interface ListHAREntriesProps {
|
|
3
|
-
id: string;
|
|
4
|
-
title?: string;
|
|
5
|
-
harEntries: HAREntry[];
|
|
6
|
-
selectedHAREntries: HAREntry[];
|
|
7
|
-
onSelectionChange: (selectedHAREntries: HAREntry[]) => void;
|
|
1
|
+
import { HAREntriesTableProps } from './components/har-entries-table';
|
|
2
|
+
export interface ListHAREntriesProps extends HAREntriesTableProps {
|
|
8
3
|
}
|
|
9
|
-
export default function ListHAREntries(
|
|
10
|
-
export {};
|
|
4
|
+
export default function ListHAREntries(props: ListHAREntriesProps): import("react/jsx-runtime").JSX.Element;
|
package/dist/har-analyzer.js
CHANGED
|
@@ -1,135 +1,141 @@
|
|
|
1
|
-
import { jsx as e, jsxs as
|
|
2
|
-
import { useEffect as
|
|
3
|
-
import
|
|
4
|
-
import
|
|
1
|
+
import { jsx as e, jsxs as n, Fragment as h } from "react/jsx-runtime";
|
|
2
|
+
import { useEffect as P, useState as s } from "react";
|
|
3
|
+
import { V as m } from "./chunks/vertical-gap.js";
|
|
4
|
+
import E from "./har-entries-viewer.js";
|
|
5
|
+
import F from "./har-file-uploader.js";
|
|
6
|
+
import R from "@cloudscape-design/components/app-layout";
|
|
7
|
+
import { c as p, H as T } from "./chunks/index.js";
|
|
8
|
+
import a from "@cloudscape-design/components/box";
|
|
9
|
+
import c from "@cloudscape-design/components/button";
|
|
10
|
+
import U from "@cloudscape-design/components/modal";
|
|
11
|
+
import f from "@cloudscape-design/components/toggle";
|
|
12
|
+
import { Mode as l, applyMode as b } from "@cloudscape-design/global-styles";
|
|
5
13
|
import y from "@cloudscape-design/components/header";
|
|
6
|
-
import { borderWidthAlert as
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import D from "./har-entries-viewer.js";
|
|
15
|
-
import W from "./har-file-uploader.js";
|
|
16
|
-
function f() {
|
|
17
|
-
return h("isFullContentWidth", !0);
|
|
18
|
-
}
|
|
14
|
+
import { borderWidthAlert as N, colorBorderDividerDefault as W } from "@cloudscape-design/design-tokens";
|
|
15
|
+
const u = "har-analyzer", {
|
|
16
|
+
useUserPreferences: A,
|
|
17
|
+
Provider: x
|
|
18
|
+
} = p(`${u}.isFullContentWidth`, !1), {
|
|
19
|
+
useUserPreferences: D,
|
|
20
|
+
Provider: M
|
|
21
|
+
} = p(`${u}.isDarkTheme`, !1);
|
|
19
22
|
function S() {
|
|
20
|
-
|
|
23
|
+
const [r, o] = A();
|
|
24
|
+
return /* @__PURE__ */ e(f, { onChange: ({ detail: t }) => {
|
|
25
|
+
o(t.checked);
|
|
26
|
+
}, checked: r, children: "Use entire screen width" });
|
|
27
|
+
}
|
|
28
|
+
function V() {
|
|
29
|
+
const [r, o] = D();
|
|
30
|
+
return P(() => {
|
|
31
|
+
const t = r ? l.Dark : l.Light;
|
|
32
|
+
b(t);
|
|
33
|
+
}, [r]), /* @__PURE__ */ e(f, { onChange: ({ detail: t }) => {
|
|
34
|
+
o(t.checked);
|
|
35
|
+
}, checked: r, children: "Use dark theme" });
|
|
36
|
+
}
|
|
37
|
+
function z() {
|
|
38
|
+
const [r, o] = s(!1), t = () => {
|
|
39
|
+
o(!0);
|
|
40
|
+
}, i = () => {
|
|
41
|
+
o(!1);
|
|
42
|
+
};
|
|
43
|
+
return /* @__PURE__ */ n(h, { children: [
|
|
44
|
+
/* @__PURE__ */ e(c, { iconName: "settings", variant: "icon", onClick: t }),
|
|
45
|
+
/* @__PURE__ */ n(
|
|
46
|
+
U,
|
|
47
|
+
{
|
|
48
|
+
visible: r,
|
|
49
|
+
onDismiss: i,
|
|
50
|
+
header: "Manage your preferences",
|
|
51
|
+
footer: /* @__PURE__ */ e(a, { float: "right", children: /* @__PURE__ */ e(c, { variant: "primary", onClick: i, children: "Ok" }) }),
|
|
52
|
+
children: [
|
|
53
|
+
/* @__PURE__ */ e(a, { margin: { top: "m" } }),
|
|
54
|
+
/* @__PURE__ */ n(m, { size: "m", children: [
|
|
55
|
+
/* @__PURE__ */ e(V, {}),
|
|
56
|
+
/* @__PURE__ */ e(S, {})
|
|
57
|
+
] })
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
)
|
|
61
|
+
] });
|
|
21
62
|
}
|
|
22
|
-
const
|
|
23
|
-
function
|
|
63
|
+
const k = "top-navigation", d = "blur(16px)";
|
|
64
|
+
function B({
|
|
24
65
|
logo: r,
|
|
25
|
-
appName:
|
|
66
|
+
appName: o,
|
|
26
67
|
utilities: t
|
|
27
68
|
}) {
|
|
28
69
|
return /* @__PURE__ */ e(
|
|
29
70
|
"nav",
|
|
30
71
|
{
|
|
31
|
-
id:
|
|
72
|
+
id: k,
|
|
32
73
|
style: {
|
|
33
74
|
position: "sticky",
|
|
34
75
|
top: 0,
|
|
35
76
|
zIndex: 1002,
|
|
36
77
|
padding: "0.5rem 1rem",
|
|
37
|
-
borderBlockEnd: `${
|
|
78
|
+
borderBlockEnd: `${N} solid ${W}`,
|
|
38
79
|
backdropFilter: d,
|
|
39
80
|
WebkitBackdropFilter: d
|
|
40
81
|
// for Safari
|
|
41
82
|
},
|
|
42
|
-
children: /* @__PURE__ */ e(y, { actions: t, children: /* @__PURE__ */
|
|
83
|
+
children: /* @__PURE__ */ e(y, { actions: t, children: /* @__PURE__ */ n(T, { children: [
|
|
43
84
|
r,
|
|
44
|
-
|
|
85
|
+
o
|
|
45
86
|
] }) })
|
|
46
87
|
}
|
|
47
88
|
);
|
|
48
89
|
}
|
|
49
|
-
function I(
|
|
50
|
-
const [r, i] = f();
|
|
51
|
-
return /* @__PURE__ */ e(u, { onChange: ({ detail: t }) => {
|
|
52
|
-
i(t.checked);
|
|
53
|
-
}, checked: r, children: "Use entire screen width" });
|
|
54
|
-
}
|
|
55
|
-
function M() {
|
|
56
|
-
const [r, i] = S();
|
|
57
|
-
return b(() => {
|
|
58
|
-
const t = r ? c.Dark : c.Light;
|
|
59
|
-
v(t);
|
|
60
|
-
}, [r]), /* @__PURE__ */ e(u, { onChange: ({ detail: t }) => {
|
|
61
|
-
i(t.checked);
|
|
62
|
-
}, checked: r, children: "Use dark theme" });
|
|
63
|
-
}
|
|
64
|
-
function U() {
|
|
65
|
-
const [r, i] = a(!1), t = () => {
|
|
66
|
-
i(!0);
|
|
67
|
-
}, n = () => {
|
|
68
|
-
i(!1);
|
|
69
|
-
};
|
|
70
|
-
return /* @__PURE__ */ o(m, { children: [
|
|
71
|
-
/* @__PURE__ */ e(l, { iconName: "settings", variant: "icon", onClick: t }),
|
|
72
|
-
/* @__PURE__ */ o(
|
|
73
|
-
T,
|
|
74
|
-
{
|
|
75
|
-
visible: r,
|
|
76
|
-
onDismiss: n,
|
|
77
|
-
header: "Manage your preferences",
|
|
78
|
-
footer: /* @__PURE__ */ e(s, { float: "right", children: /* @__PURE__ */ e(l, { variant: "primary", onClick: n, children: "Ok" }) }),
|
|
79
|
-
children: [
|
|
80
|
-
/* @__PURE__ */ e(s, { margin: { top: "m" } }),
|
|
81
|
-
/* @__PURE__ */ o(p, { size: "m", children: [
|
|
82
|
-
/* @__PURE__ */ e(M, {}),
|
|
83
|
-
/* @__PURE__ */ e(I, {})
|
|
84
|
-
] })
|
|
85
|
-
]
|
|
86
|
-
}
|
|
87
|
-
)
|
|
88
|
-
] });
|
|
89
|
-
}
|
|
90
|
-
function V({
|
|
90
|
+
function I({
|
|
91
91
|
logo: r,
|
|
92
|
-
appName:
|
|
92
|
+
appName: o,
|
|
93
93
|
content: t
|
|
94
94
|
}) {
|
|
95
|
-
const [
|
|
96
|
-
return /* @__PURE__ */
|
|
97
|
-
/* @__PURE__ */ e(
|
|
95
|
+
const [i] = A();
|
|
96
|
+
return /* @__PURE__ */ n(h, { children: [
|
|
97
|
+
/* @__PURE__ */ e(
|
|
98
|
+
B,
|
|
99
|
+
{
|
|
100
|
+
logo: r,
|
|
101
|
+
appName: o,
|
|
102
|
+
utilities: /* @__PURE__ */ e(M, { children: /* @__PURE__ */ e(z, {}) })
|
|
103
|
+
}
|
|
104
|
+
),
|
|
98
105
|
/* @__PURE__ */ e(
|
|
99
|
-
|
|
106
|
+
R,
|
|
100
107
|
{
|
|
101
|
-
headerSelector: `#${
|
|
108
|
+
headerSelector: `#${k}`,
|
|
102
109
|
navigationHide: !0,
|
|
103
110
|
toolsHide: !0,
|
|
104
|
-
maxContentWidth:
|
|
111
|
+
maxContentWidth: i ? Number.MAX_VALUE : void 0,
|
|
105
112
|
content: t
|
|
106
113
|
}
|
|
107
114
|
)
|
|
108
115
|
] });
|
|
109
116
|
}
|
|
110
|
-
function
|
|
111
|
-
const [t,
|
|
112
|
-
return /* @__PURE__ */ e(
|
|
113
|
-
|
|
117
|
+
function re({ logo: r, appName: o = "HAR Analyzer" }) {
|
|
118
|
+
const [t, i] = s(), [C, g] = s([]);
|
|
119
|
+
return /* @__PURE__ */ e(x, { children: /* @__PURE__ */ e(
|
|
120
|
+
I,
|
|
114
121
|
{
|
|
115
122
|
logo: r,
|
|
116
|
-
appName:
|
|
117
|
-
content: /* @__PURE__ */
|
|
118
|
-
/* @__PURE__ */ e(
|
|
119
|
-
g(
|
|
123
|
+
appName: o,
|
|
124
|
+
content: /* @__PURE__ */ n(m, { children: [
|
|
125
|
+
/* @__PURE__ */ e(F, { onChange: ({ harEntries: v, harFileName: H }) => {
|
|
126
|
+
g(v), i(H);
|
|
120
127
|
} }),
|
|
121
128
|
/* @__PURE__ */ e(
|
|
122
|
-
|
|
129
|
+
E,
|
|
123
130
|
{
|
|
124
|
-
tableId: "har-entries-table",
|
|
125
131
|
tableTitle: t,
|
|
126
|
-
harEntries:
|
|
132
|
+
harEntries: C
|
|
127
133
|
}
|
|
128
134
|
)
|
|
129
135
|
] })
|
|
130
136
|
}
|
|
131
|
-
);
|
|
137
|
+
) });
|
|
132
138
|
}
|
|
133
139
|
export {
|
|
134
|
-
|
|
140
|
+
re as default
|
|
135
141
|
};
|