fix: switch date field of the linkage rule from expression to constant value display Invalid Date (#4251)

This commit is contained in:
katherinehhh 2024-05-06 14:01:53 +08:00 committed by GitHub
parent 0602bb9ab8
commit 3651c6ccca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
149 changed files with 1334 additions and 2 deletions

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
export * from './useDetailsWithPaginationBlockParams'; export * from './useDetailsWithPaginationBlockParams';
export * from './useDetailsWithPaginationProps'; export * from './useDetailsWithPaginationProps';
export * from './useDetailsWithPaginationDecoratorProps'; export * from './useDetailsWithPaginationDecoratorProps';

View File

@ -1,2 +1,11 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
export * from './hooks'; export * from './hooks';
export * from './setDataLoadingModeSettingsItem'; export * from './setDataLoadingModeSettingsItem';

View File

@ -1,2 +1,11 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
export * from './useDetailsDecoratorProps'; export * from './useDetailsDecoratorProps';
export * from './useDetailsProps'; export * from './useDetailsProps';

View File

@ -1 +1,10 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
export * from './hooks'; export * from './hooks';

View File

@ -1,2 +1,11 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
export * from './data-blocks/details-multi'; export * from './data-blocks/details-multi';
export * from './data-blocks/details-single'; export * from './data-blocks/details-single';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { useActionContext } from '@nocobase/client'; import { useActionContext } from '@nocobase/client';
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { ISchema, observer } from '@formily/react'; import { ISchema, observer } from '@formily/react';
import { import {
Action, Action,

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import { Space, App as AntdApp } from 'antd'; import { Space, App as AntdApp } from 'antd';
import { useAPIClient, useActionContext } from '@nocobase/client'; import { useAPIClient, useActionContext } from '@nocobase/client';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { ActionInitializer, SchemaInitializer } from '@nocobase/client'; import { ActionInitializer, SchemaInitializer } from '@nocobase/client';
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { ActionInitializer, SchemaInitializer } from '@nocobase/client'; import { ActionInitializer, SchemaInitializer } from '@nocobase/client';
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import { Space, App as AntdApp } from 'antd'; import { Space, App as AntdApp } from 'antd';
import { ActionProps } from '@nocobase/client'; import { ActionProps } from '@nocobase/client';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import { Button, Space } from 'antd'; import { Button, Space } from 'antd';
import React from 'react'; import React from 'react';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import { Space } from 'antd'; import { Space } from 'antd';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import { Space } from 'antd'; import { Space } from 'antd';
import { useActionContext } from '@nocobase/client'; import { useActionContext } from '@nocobase/client';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import { Space } from 'antd'; import { Space } from 'antd';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import { Space, App as AntdApp } from 'antd'; import { Space, App as AntdApp } from 'antd';
import { useAPIClient, useActionContext } from '@nocobase/client'; import { useAPIClient, useActionContext } from '@nocobase/client';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import { Space, App as AntdApp } from 'antd'; import { Space, App as AntdApp } from 'antd';
import { useAPIClient, ActionProps } from '@nocobase/client'; import { useAPIClient, ActionProps } from '@nocobase/client';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { SchemaSettings } from '@nocobase/client'; import { SchemaSettings } from '@nocobase/client';
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { useField } from '@formily/react'; import { useField } from '@formily/react';
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import { DragHandler, SchemaSettings } from '@nocobase/client'; import { DragHandler, SchemaSettings } from '@nocobase/client';
import { useFieldSchema } from '@formily/react'; import { useFieldSchema } from '@formily/react';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import { SchemaSettings } from '@nocobase/client'; import { SchemaSettings } from '@nocobase/client';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import { SchemaSettings } from '@nocobase/client'; import { SchemaSettings } from '@nocobase/client';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const options = [ const options = [

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const options = [ const options = [

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const options = [ const options = [

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { useField } from '@formily/react'; import { useField } from '@formily/react';
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import React, { useState } from 'react'; import React, { useState } from 'react';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const options = [ const options = [

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const options = [ const options = [

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const options = [ const options = [

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { import {
DetailsBlockProvider, DetailsBlockProvider,
useDetailsPaginationProps, useDetailsPaginationProps,

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { import {
DetailsBlockProvider, DetailsBlockProvider,
useDetailsPaginationProps, useDetailsPaginationProps,

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import React from 'react'; import React from 'react';
import { ErrorBoundary } from 'react-error-boundary'; import { ErrorBoundary } from 'react-error-boundary';
import { ErrorFallback } from '@nocobase/client'; import { ErrorFallback } from '@nocobase/client';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import React from 'react'; import React from 'react';
import { useField, observer } from '@formily/react'; import { useField, observer } from '@formily/react';
import { FilterActionProps, useRequest } from '@nocobase/client'; import { FilterActionProps, useRequest } from '@nocobase/client';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { import {
FilterActionProps, FilterActionProps,
useCollection, useCollection,

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import React from 'react'; import React from 'react';
import { useField, observer } from '@formily/react'; import { useField, observer } from '@formily/react';
import { FilterActionProps, useRequest } from '@nocobase/client'; import { FilterActionProps, useRequest } from '@nocobase/client';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
const filterOptions = [ const filterOptions = [
{ {
name: 'name', name: 'name',

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import React from 'react'; import React from 'react';
import { useField, observer } from '@formily/react'; import { useField, observer } from '@formily/react';
import { FilterActionProps, useDataBlockRequest, useRequest } from '@nocobase/client'; import { FilterActionProps, useDataBlockRequest, useRequest } from '@nocobase/client';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import { SchemaSettings } from '@nocobase/client'; import { SchemaSettings } from '@nocobase/client';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import { ActionProps, useAPIClient } from '@nocobase/client'; import { ActionProps, useAPIClient } from '@nocobase/client';
import { useForm } from '@formily/react'; import { useForm } from '@formily/react';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { useForm } from '@formily/react'; import { useForm } from '@formily/react';
import { import {
ActionProps, ActionProps,

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { useForm } from '@formily/react'; import { useForm } from '@formily/react';
import { ActionProps, CollectionField, FormBlockProvider, useDataBlockResource } from '@nocobase/client'; import { ActionProps, CollectionField, FormBlockProvider, useDataBlockResource } from '@nocobase/client';
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { createForm } from '@formily/core'; import { createForm } from '@formily/core';
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
import { useMemo } from 'react'; import { useMemo } from 'react';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { CollectionField, ExtendCollectionsProvider, FormBlockProvider } from '@nocobase/client'; import { CollectionField, ExtendCollectionsProvider, FormBlockProvider } from '@nocobase/client';
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { CollectionField, FormBlockProvider, useFormBlockProps } from '@nocobase/client'; import { CollectionField, FormBlockProvider, useFormBlockProps } from '@nocobase/client';
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { useFieldSchema } from '@formily/react'; import { useFieldSchema } from '@formily/react';
import { observer } from '@formily/reactive-react'; import { observer } from '@formily/reactive-react';
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';
const App = getAppComponent({ const App = getAppComponent({

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { BlockSchemaComponentPlugin } from '@nocobase/client'; import { BlockSchemaComponentPlugin } from '@nocobase/client';
import { getAppComponent } from '@nocobase/test/web'; import { getAppComponent } from '@nocobase/test/web';

View File

@ -1,3 +1,12 @@
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { useForm } from '@formily/react'; import { useForm } from '@formily/react';
import { import {
BlockSchemaComponentPlugin, BlockSchemaComponentPlugin,

Some files were not shown because too many files have changed in this diff Show More