chrome-devtools-frontend 1.0.1543472 → 1.0.1545096
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/AUTHORS +1 -0
- package/config/typescript/tsconfig.eslint.json +1 -0
- package/front_end/core/common/ParsedURL.ts +1 -1
- package/front_end/core/common/common.ts +0 -2
- package/front_end/core/host/AidaClient.ts +10 -7
- package/front_end/core/host/DispatchHttpRequestClient.ts +18 -3
- package/front_end/core/protocol_client/CDPConnection.ts +3 -3
- package/front_end/core/protocol_client/DevToolsCDPConnection.ts +2 -1
- package/front_end/core/root/Runtime.ts +8 -7
- package/front_end/core/sdk/CPUThrottlingManager.ts +0 -4
- package/front_end/core/sdk/CSSMatchedStyles.ts +7 -9
- package/front_end/core/sdk/CSSMetadata.ts +17 -5
- package/front_end/core/sdk/CSSModel.ts +1 -1
- package/front_end/core/sdk/CSSRule.ts +18 -6
- package/front_end/core/sdk/ChildTargetManager.ts +2 -2
- package/front_end/core/sdk/NetworkManager.ts +6 -8
- package/front_end/core/sdk/NetworkRequest.ts +4 -0
- package/front_end/core/sdk/SDKModel.ts +4 -2
- package/front_end/core/sdk/TargetManager.ts +14 -15
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotLoader.ts +2 -0
- package/front_end/entrypoints/main/MainImpl.ts +0 -16
- package/front_end/foundation/Universe.ts +12 -1
- package/front_end/generated/Deprecation.ts +4 -0
- package/front_end/generated/InspectorBackendCommands.ts +2 -5
- package/front_end/generated/SupportedCSSProperties.js +0 -23
- package/front_end/generated/protocol-mapping.d.ts +0 -15
- package/front_end/generated/protocol-proxy-api.d.ts +0 -11
- package/front_end/generated/protocol.ts +2 -34
- package/front_end/models/ai_assistance/agents/AiAgent.ts +10 -8
- package/front_end/models/ai_assistance/agents/PatchAgent.ts +7 -1
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +0 -5
- package/front_end/models/ai_assistance/agents/StylingAgent.ts +4 -8
- package/front_end/models/ai_code_completion/AiCodeCompletion.ts +1 -1
- package/front_end/models/ai_code_generation/AiCodeGeneration.ts +5 -3
- package/front_end/models/bindings/CSSWorkspaceBinding.ts +8 -7
- package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +9 -8
- package/front_end/models/bindings/ResourceMapping.ts +57 -15
- package/front_end/models/live-metrics/LiveMetrics.ts +12 -20
- package/front_end/panels/accessibility/AccessibilityNodeView.ts +6 -2
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +3 -2
- package/front_end/panels/ai_assistance/components/ChatView.ts +2 -4
- package/front_end/panels/ai_assistance/components/PerformanceAgentMarkdownRenderer.ts +2 -1
- package/front_end/panels/ai_assistance/components/UserActionRow.ts +2 -1
- package/front_end/panels/animation/AnimationTimeline.ts +6 -6
- package/front_end/panels/application/ApplicationPanelSidebar.ts +6 -7
- package/front_end/panels/application/{components/FrameDetailsView.ts → FrameDetailsView.ts} +134 -165
- package/front_end/panels/application/{components/OriginTrialTreeView.ts → OriginTrialTreeView.ts} +9 -9
- package/front_end/panels/application/application.ts +4 -0
- package/front_end/panels/application/components/ReportsGrid.ts +7 -2
- package/front_end/panels/application/components/SharedStorageAccessGrid.ts +5 -3
- package/front_end/panels/application/components/StackTrace.ts +5 -3
- package/front_end/panels/application/components/TrustTokensView.ts +7 -1
- package/front_end/panels/application/components/components.ts +2 -4
- package/front_end/panels/application/{components/frameDetailsReportView.css → frameDetailsReportView.css} +5 -1
- package/front_end/panels/application/preloading/PreloadingView.ts +10 -4
- package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +7 -11
- package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +15 -3
- package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts +12 -13
- package/front_end/panels/common/BadgeNotification.ts +2 -1
- package/front_end/panels/{elements → common}/DOMLinkifier.ts +13 -8
- package/front_end/panels/common/GdpSignUpDialog.ts +2 -1
- package/front_end/panels/common/common.ts +1 -0
- package/front_end/panels/console/ConsoleViewMessage.ts +4 -4
- package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +2 -1
- package/front_end/panels/elements/ElementStatePaneWidget.ts +2 -1
- package/front_end/panels/elements/ElementsTreeElement.ts +3 -1
- package/front_end/panels/elements/StylePropertiesSection.ts +52 -15
- package/front_end/panels/elements/StylePropertyTreeElement.ts +8 -3
- package/front_end/panels/elements/StylesSidebarPane.ts +24 -14
- package/front_end/panels/elements/elements-meta.ts +0 -13
- package/front_end/panels/elements/elements.ts +0 -3
- package/front_end/panels/explain/components/ConsoleInsight.ts +31 -20
- package/front_end/panels/issues/AffectedResourcesView.ts +2 -1
- package/front_end/panels/lighthouse/LighthouseProtocolService.ts +3 -6
- package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +2 -1
- package/front_end/panels/network/NetworkLogView.ts +1 -1
- package/front_end/panels/recorder/RecorderController.ts +7 -1
- package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +2 -1
- package/front_end/panels/settings/SettingsScreen.ts +3 -2
- package/front_end/panels/sources/AiCodeCompletionPlugin.ts +42 -294
- package/front_end/panels/sources/DebuggerPausedMessage.ts +3 -3
- package/front_end/panels/sources/SourcesPanel.ts +5 -1
- package/front_end/panels/timeline/TimelineUIUtils.ts +3 -2
- package/front_end/panels/timeline/components/LiveMetricsView.ts +18 -6
- package/front_end/panels/timeline/components/MetricCard.ts +2 -2
- package/front_end/panels/timeline/components/insights/NodeLink.ts +4 -4
- package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +2 -1
- package/front_end/panels/timeline/timeline-meta.ts +0 -10
- package/front_end/panels/timeline/timeline.ts +0 -2
- package/front_end/panels/whats_new/ReleaseNoteView.ts +2 -1
- package/front_end/panels/whats_new/WhatsNewImpl.ts +3 -2
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/third_party/puppeteer/README.chromium +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.js +4 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkEventManager.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkEventManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkEventManager.js +8 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkEventManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js +22 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +3 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +34 -6
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.js +4 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkEventManager.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkEventManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkEventManager.js +8 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkEventManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js +22 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +3 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/version.js +1 -1
- package/front_end/third_party/puppeteer/package/package.json +2 -2
- package/front_end/third_party/puppeteer/package/src/cdp/HTTPRequest.ts +5 -1
- package/front_end/third_party/puppeteer/package/src/cdp/NetworkEventManager.ts +16 -1
- package/front_end/third_party/puppeteer/package/src/cdp/NetworkManager.ts +28 -0
- package/front_end/third_party/puppeteer/package/src/revisions.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/util/version.ts +1 -1
- package/front_end/tsconfig.json +1 -0
- package/front_end/ui/components/buttons/Button.docs.ts +6 -5
- package/front_end/ui/components/snackbars/Snackbars.docs.ts +1 -1
- package/front_end/ui/components/spinners/Spinners.docs.ts +1 -1
- package/front_end/ui/components/survey_link/SurveyLink.docs.ts +2 -1
- package/front_end/ui/components/switch/Switch.docs.ts +1 -1
- package/front_end/ui/components/text_editor/AiCodeCompletionProvider.ts +8 -5
- package/front_end/ui/components/tooltips/Tooltip.docs.ts +3 -3
- package/front_end/ui/helpers/OpenInNewTab.ts +87 -0
- package/front_end/ui/helpers/helpers.ts +5 -0
- package/front_end/ui/i18n/i18n.ts +16 -0
- package/front_end/ui/legacy/ContextMenu.docs.ts +12 -11
- package/front_end/ui/legacy/RadioButton.docs.ts +1 -1
- package/front_end/ui/legacy/SelectMenu.docs.ts +1 -1
- package/front_end/ui/legacy/Slider.docs.ts +1 -1
- package/front_end/ui/legacy/UIUtils.ts +1 -34
- package/front_end/ui/legacy/Widget.ts +56 -25
- package/front_end/ui/legacy/XLink.ts +4 -6
- package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +2 -1
- package/front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.ts +3 -1
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +294 -336
- package/front_end/ui/legacy/components/utils/Linkifier.ts +2 -1
- package/front_end/ui/legacy/inspectorCommon.css +0 -4
- package/mcp/mcp.ts +1 -0
- package/mcp/tsconfig.json +16 -0
- package/package.json +2 -2
- package/front_end/core/common/Linkifier.ts +0 -55
- package/front_end/panels/timeline/CLSLinkifier.ts +0 -58
- package/front_end/ui/components/expandable_list/ExpandableList.docs.ts +0 -30
- /package/front_end/panels/application/{components/originTrialTokenRows.css → originTrialTokenRows.css} +0 -0
- /package/front_end/panels/application/{components/originTrialTreeView.css → originTrialTreeView.css} +0 -0
- /package/front_end/panels/{elements → common}/domLinkifier.css +0 -0
|
@@ -17,6 +17,7 @@ import * as TextUtils from '../../../../models/text_utils/text_utils.js';
|
|
|
17
17
|
import type * as Trace from '../../../../models/trace/trace.js';
|
|
18
18
|
import * as Workspace from '../../../../models/workspace/workspace.js';
|
|
19
19
|
import type * as IconButton from '../../../components/icon_button/icon_button.js';
|
|
20
|
+
import * as UIHelpers from '../../../helpers/helpers.js';
|
|
20
21
|
import {html, render} from '../../../lit/lit.js';
|
|
21
22
|
import * as VisualLogging from '../../../visual_logging/visual_logging.js';
|
|
22
23
|
import * as UI from '../../legacy.js';
|
|
@@ -920,7 +921,7 @@ export class Linkifier extends Common.ObjectWrapper.ObjectWrapper<EventTypes> im
|
|
|
920
921
|
section: 'reveal',
|
|
921
922
|
title: UI.UIUtils.openLinkExternallyLabel(),
|
|
922
923
|
jslogContext: 'open-in-new-tab',
|
|
923
|
-
handler: () =>
|
|
924
|
+
handler: () => UIHelpers.openInNewTab(url),
|
|
924
925
|
});
|
|
925
926
|
result.push({
|
|
926
927
|
section: 'clipboard',
|
package/mcp/mcp.ts
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
export * as Common from '../front_end/core/common/common.js';
|
|
11
11
|
export * as I18n from '../front_end/core/i18n/i18n.js';
|
|
12
|
+
export type * as CDPConnection from '../front_end/core/protocol_client/CDPConnection.js';
|
|
12
13
|
export {ConnectionTransport} from '../front_end/core/protocol_client/ConnectionTransport.js';
|
|
13
14
|
export * as Foundation from '../front_end/foundation/foundation.js';
|
|
14
15
|
export {
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../config/typescript/tsconfig.base.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"allowUmdGlobalAccess": true,
|
|
5
|
+
"outDir": "ignored",
|
|
6
|
+
"target": "ES2023",
|
|
7
|
+
"lib": [
|
|
8
|
+
"ES2023",
|
|
9
|
+
"ES2024.Promise",
|
|
10
|
+
"ESNext.Iterator",
|
|
11
|
+
"ESNext.Collection",
|
|
12
|
+
"ESNext.Array"
|
|
13
|
+
]
|
|
14
|
+
},
|
|
15
|
+
"references": [{ "path": "../front_end/tsconfig.json" }]
|
|
16
|
+
}
|
package/package.json
CHANGED
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@types/glob": "7.2.0",
|
|
47
47
|
"@types/karma-chai-sinon": "0.1.20",
|
|
48
48
|
"@types/mocha": "10.0.10",
|
|
49
|
-
"@types/node": "
|
|
49
|
+
"@types/node": "24.10.0",
|
|
50
50
|
"@types/sinon": "17.0.4",
|
|
51
51
|
"@types/webidl2": "24.4.3",
|
|
52
52
|
"@types/yargs": "17.0.33",
|
|
@@ -103,5 +103,5 @@
|
|
|
103
103
|
"flat-cache": "6.1.12"
|
|
104
104
|
}
|
|
105
105
|
},
|
|
106
|
-
"version": "1.0.
|
|
106
|
+
"version": "1.0.1545096"
|
|
107
107
|
}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
// Copyright 2019 The Chromium Authors
|
|
2
|
-
// Use of this source code is governed by a BSD-style license that can be
|
|
3
|
-
// found in the LICENSE file.
|
|
4
|
-
|
|
5
|
-
import type * as Platform from '../platform/platform.js';
|
|
6
|
-
|
|
7
|
-
export abstract class Linkifier {
|
|
8
|
-
abstract linkify(object: Object, options?: Options): Node;
|
|
9
|
-
|
|
10
|
-
static async linkify(object: Object|null, options?: Options): Promise<Node> {
|
|
11
|
-
if (!object) {
|
|
12
|
-
throw new Error('Can\'t linkify ' + object);
|
|
13
|
-
}
|
|
14
|
-
const linkifierRegistration = getApplicableRegisteredlinkifiers(object)[0];
|
|
15
|
-
if (!linkifierRegistration) {
|
|
16
|
-
throw new Error('No linkifiers registered for object ' + object);
|
|
17
|
-
}
|
|
18
|
-
const linkifier = await linkifierRegistration.loadLinkifier();
|
|
19
|
-
return linkifier.linkify(object, options);
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
export interface Options {
|
|
23
|
-
tooltip?: string;
|
|
24
|
-
preventKeyboardFocus?: boolean;
|
|
25
|
-
textContent?: string;
|
|
26
|
-
// Dynamic links include hyperlinks and anchorlinks -- links that navigate the content.
|
|
27
|
-
isDynamicLink?: boolean;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
const registeredLinkifiers: LinkifierRegistration[] = [];
|
|
31
|
-
|
|
32
|
-
export function registerLinkifier(registration: LinkifierRegistration): void {
|
|
33
|
-
registeredLinkifiers.push(registration);
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export function getApplicableRegisteredlinkifiers(object: Object): LinkifierRegistration[] {
|
|
37
|
-
return registeredLinkifiers.filter(isLinkifierApplicableToContextTypes);
|
|
38
|
-
|
|
39
|
-
function isLinkifierApplicableToContextTypes(linkifierRegistration: LinkifierRegistration): boolean {
|
|
40
|
-
if (!linkifierRegistration.contextTypes) {
|
|
41
|
-
return true;
|
|
42
|
-
}
|
|
43
|
-
for (const contextType of linkifierRegistration.contextTypes()) {
|
|
44
|
-
if (object instanceof contextType) {
|
|
45
|
-
return true;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
return false;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
export interface LinkifierRegistration {
|
|
53
|
-
loadLinkifier: () => Promise<Linkifier>;
|
|
54
|
-
contextTypes?: () => Array<Platform.Constructor.Constructor<unknown>>;
|
|
55
|
-
}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
// Copyright 2018 The Chromium Authors
|
|
2
|
-
// Use of this source code is governed by a BSD-style license that can be
|
|
3
|
-
// found in the LICENSE file.
|
|
4
|
-
/* eslint-disable @devtools/no-imperative-dom-api */
|
|
5
|
-
|
|
6
|
-
import type * as Common from '../../core/common/common.js';
|
|
7
|
-
import * as SDK from '../../core/sdk/sdk.js';
|
|
8
|
-
|
|
9
|
-
interface Color {
|
|
10
|
-
r: number;
|
|
11
|
-
g: number;
|
|
12
|
-
b: number;
|
|
13
|
-
a: number;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
export class CLSRect {
|
|
17
|
-
x: number;
|
|
18
|
-
y: number;
|
|
19
|
-
width: number;
|
|
20
|
-
height: number;
|
|
21
|
-
color: Color;
|
|
22
|
-
outlineColor: Color;
|
|
23
|
-
constructor([x, y, width, height]: [number, number, number, number]) {
|
|
24
|
-
this.x = x;
|
|
25
|
-
this.y = y;
|
|
26
|
-
this.width = width;
|
|
27
|
-
this.height = height;
|
|
28
|
-
this.color = {r: 238, g: 111, b: 99, a: 0.4};
|
|
29
|
-
this.outlineColor = {r: 238, g: 111, b: 99, a: 0.7};
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
let linkifierInstance: Linkifier;
|
|
34
|
-
|
|
35
|
-
export class Linkifier implements Common.Linkifier.Linkifier {
|
|
36
|
-
static instance(opts: {
|
|
37
|
-
forceNew: boolean|null,
|
|
38
|
-
} = {forceNew: null}): Linkifier {
|
|
39
|
-
const {forceNew} = opts;
|
|
40
|
-
if (!linkifierInstance || forceNew) {
|
|
41
|
-
linkifierInstance = new Linkifier();
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
return linkifierInstance;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
linkify(object: Object, _options?: Common.Linkifier.Options): Node {
|
|
48
|
-
const link = document.createElement('span');
|
|
49
|
-
const rect = (object as CLSRect);
|
|
50
|
-
const {x, y, width, height} = rect;
|
|
51
|
-
link.textContent = `Location: [${x},${y}], Size: [${width}x${height}]`;
|
|
52
|
-
|
|
53
|
-
link.addEventListener('mouseover', () => SDK.OverlayModel.OverlayModel.highlightRect(rect));
|
|
54
|
-
link.addEventListener('mouseleave', () => SDK.OverlayModel.OverlayModel.clearHighlight());
|
|
55
|
-
|
|
56
|
-
return link;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
// Copyright 2021 The Chromium Authors
|
|
2
|
-
// Use of this source code is governed by a BSD-style license that can be
|
|
3
|
-
// found in the LICENSE file.
|
|
4
|
-
|
|
5
|
-
import * as Lit from '../../lit/lit.js';
|
|
6
|
-
|
|
7
|
-
import {ExpandableList} from './expandable_list.js';
|
|
8
|
-
|
|
9
|
-
const {html} = Lit;
|
|
10
|
-
|
|
11
|
-
export function render(container: HTMLElement): void {
|
|
12
|
-
const component = new ExpandableList.ExpandableList();
|
|
13
|
-
|
|
14
|
-
const rows = [];
|
|
15
|
-
rows.push(html`
|
|
16
|
-
<div>This is row 1. Click on the triangle icon to expand.</div>
|
|
17
|
-
`);
|
|
18
|
-
|
|
19
|
-
for (let rowNumber = 2; rowNumber < 11; rowNumber++) {
|
|
20
|
-
rows.push(html`
|
|
21
|
-
<div>This is row ${rowNumber}.</div>
|
|
22
|
-
`);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
component.data = {
|
|
26
|
-
rows,
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
container.appendChild(component);
|
|
30
|
-
}
|
|
File without changes
|
/package/front_end/panels/application/{components/originTrialTreeView.css → originTrialTreeView.css}
RENAMED
|
File without changes
|
|
File without changes
|