Skip to content

Commit ad3273c

Browse files
committed
Add AI-generated files' comments and rename file names
1 parent 38b36e8 commit ad3273c

7 files changed

Lines changed: 10 additions & 3 deletions

File tree

src/views/component-viewer/component-viewer-webview-provider.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
// generated with AI
1617

1718
import * as vscode from 'vscode';
1819
import type { ScvdGuiInterface } from './model/scvd-gui-interface';

src/views/component-viewer/tree-view/tree-table-protocol.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
*
2121
* The canonical definitions live in `src/webviews/tree-table/src/types.ts`.
2222
*/
23+
// generated with AI
2324
export type {
2425
FlatRow,
2526
TreeTableFeatures,

src/webviews/tree-table/src/index.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
// generated with AI
1617

1718
import './tree-table.css';
1819
import { createRoot } from 'react-dom/client';
1920
import React from 'react';
20-
import { TreeTable } from './TreeTable';
21-
import type { VsCodeApi } from './TreeTable';
21+
import { TreeTable } from './tree-table';
22+
import type { VsCodeApi } from './tree-table';
2223

2324
declare function acquireVsCodeApi(): VsCodeApi;
2425

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
// generated with AI
1617

1718
import React, { useLayoutEffect, useRef } from 'react';
1819
import type { FlatRow, TooltipContent } from './types';

src/webviews/tree-table/src/tree-table.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
/* generated with AI */
1617

1718
:root {
1819
--row-height: 22px;

src/webviews/tree-table/src/TreeTable.tsx renamed to src/webviews/tree-table/src/tree-table.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
// generated with AI
1617

1718
import React, { useCallback, useEffect, useRef, useState } from 'react';
1819
import type { FlatRow, HostToWebviewMessage, TooltipContent, WebviewToHostMessage } from './types';
19-
import { TreeRow } from './TreeRow';
20+
import { TreeRow } from './tree-row';
2021

2122
export interface VsCodeApi {
2223
postMessage(msg: WebviewToHostMessage): void;

src/webviews/tree-table/src/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
// generated with AI
1617

1718
/**
1819
* Shared protocol types for tree-table webview ↔ extension host communication.

0 commit comments

Comments
 (0)