Skip to content

chore(taier-ui): #1161 lock the molecule version to 1.3.4 #1177

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion taier-ui/package.json
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@dtinsight/dt-utils": "^1.0.9",
"@dtinsight/molecule": "^1.3.0",
"@dtinsight/molecule": "1.3.5",
"@handsontable/react": "^11.1.0",
"antd": "^4.22.3",
"async-validator": "^4.0.7",
16,684 changes: 6,809 additions & 9,875 deletions taier-ui/pnpm-lock.yaml

Large diffs are not rendered by default.


Unchanged files with check annotations Beta

// @ts-nocheck

Check warning on line 1 in taier-ui/src/components/fullScreen/index.tsx

GitHub Actions / build (ubuntu-latest)

Do not use "@ts-nocheck" because it alters compilation errors

Check warning on line 1 in taier-ui/src/components/fullScreen/index.tsx

GitHub Actions / build (windows-latest)

Do not use "@ts-nocheck" because it alters compilation errors
/* eslint-disable */
import React from 'react';
import { Button } from 'antd';
const getRowKey = (record: T) =>
typeof this.options.rowKey === 'string'
? // @ts-ignore

Check warning on line 365 in taier-ui/src/components/lineTo/index.tsx

GitHub Actions / build (ubuntu-latest)

Do not use "@ts-ignore" because it alters compilation errors

Check warning on line 365 in taier-ui/src/components/lineTo/index.tsx

GitHub Actions / build (windows-latest)

Do not use "@ts-ignore" because it alters compilation errors
record[this.options.rowKey]
: this.options.rowKey(record);
layout2.disableEdgeStyle = false;
layout2.interRankCellSpacing = 40;
layout2.intraCellSpacing = 60;
// @ts-ignore

Check warning on line 361 in taier-ui/src/components/mxGraph/container.tsx

GitHub Actions / build (ubuntu-latest)

Do not use "@ts-ignore" because it alters compilation errors

Check warning on line 361 in taier-ui/src/components/mxGraph/container.tsx

GitHub Actions / build (windows-latest)

Do not use "@ts-ignore" because it alters compilation errors
// TODO: check the reference
layout2.edgeStyle = mxEdgeStyle.TopToBottom;
layout2.execute(parent);
const draggableEle = mxUtils.makeDraggable(
node,
// @ts-ignore

Check warning on line 394 in taier-ui/src/components/mxGraph/container.tsx

GitHub Actions / build (ubuntu-latest)

Do not use "@ts-ignore" because it alters compilation errors

Check warning on line 394 in taier-ui/src/components/mxGraph/container.tsx

GitHub Actions / build (windows-latest)

Do not use "@ts-ignore" because it alters compilation errors
(evt: MouseEvent) => {
const x = mxEvent.getClientX(evt);
const y = mxEvent.getClientY(evt);
const initKeyDownEvent = () => {
if (onKeyDown) {
const keyHandler = new MxKeyHandler(graph.current!);
// @ts-ignore

Check warning on line 439 in taier-ui/src/components/mxGraph/container.tsx

GitHub Actions / build (ubuntu-latest)

Do not use "@ts-ignore" because it alters compilation errors

Check warning on line 439 in taier-ui/src/components/mxGraph/container.tsx

GitHub Actions / build (windows-latest)

Do not use "@ts-ignore" because it alters compilation errors
keyHandler.getFunction = function (evt: any) {
if (evt !== null && !mxEvent.isAltDown(evt)) {
if (this.isControlDown(evt) || (mxClient.IS_MAC && evt.metaKey)) {
mxConstants.HANDLE_STROKECOLOR = '#2491F7';
mxConstants.VERTEX_SELECTION_COLOR = 'var(--editor-background)';
// @ts-ignore

Check warning on line 225 in taier-ui/src/components/mxGraph/index.tsx

GitHub Actions / build (ubuntu-latest)

Do not use "@ts-ignore" because it alters compilation errors

Check warning on line 225 in taier-ui/src/components/mxGraph/index.tsx

GitHub Actions / build (windows-latest)

Do not use "@ts-ignore" because it alters compilation errors
mxConstants.STYLE_OVERFLOW = 'hidden';
return graph;
describe('Test EditFolder With record', () => {
it('Should set fields value with record', async () => {
const { container, getByTestId } = render(
<EditFolder tabId={1} current={{ tab: { data: { id: 1, dt_nodeName: 'test', nodePid: '1' } } }} />

Check warning on line 68 in taier-ui/src/components/task/__tests__/editFolder.test.tsx

GitHub Actions / build (ubuntu-latest)

Identifier 'dt_nodeName' is not in camel case

Check warning on line 68 in taier-ui/src/components/task/__tests__/editFolder.test.tsx

GitHub Actions / build (windows-latest)

Identifier 'dt_nodeName' is not in camel case
);
await waitFor(() => {
if (currentTab.data.id) {
// restoring the data into form
form.setFieldsValue({
dt_nodeName: currentTab.data.dt_nodeName,

Check warning on line 70 in taier-ui/src/components/task/editFolder.tsx

GitHub Actions / build (ubuntu-latest)

Identifier 'dt_nodeName' is not in camel case

Check warning on line 70 in taier-ui/src/components/task/editFolder.tsx

GitHub Actions / build (windows-latest)

Identifier 'dt_nodeName' is not in camel case
nodePid: currentTab.data.nodePid,
});
}
MYSQL: 1,
MySQL8: 1001,
MySQLPXC: 98,
POLAR_DB_For_MySQL: 28,

Check warning on line 362 in taier-ui/src/constant/index.ts

GitHub Actions / build (ubuntu-latest)

Identifier 'POLAR_DB_For_MySQL' is not in camel case

Check warning on line 362 in taier-ui/src/constant/index.ts

GitHub Actions / build (windows-latest)

Identifier 'POLAR_DB_For_MySQL' is not in camel case
ORACLE: 2,
SQLSERVER: 3,
SQLSERVER_2017_LATER: 32,
DMDB: 35,
RDBMS: 5,
KINGBASE8: 40,
DMDB_For_Oracle: 67,

Check warning on line 371 in taier-ui/src/constant/index.ts

GitHub Actions / build (ubuntu-latest)

Identifier 'DMDB_For_Oracle' is not in camel case

Check warning on line 371 in taier-ui/src/constant/index.ts

GitHub Actions / build (windows-latest)

Identifier 'DMDB_For_Oracle' is not in camel case
HIVE: 7,
HIVE1X: 27,
HIVE3X: 50,