@nocobase/client 1.3.24-beta → 1.3.26-beta
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/es/index.css +1 -1
- package/es/index.mjs +289 -277
- package/es/schema-component/antd/action/Action.Page.d.ts +1 -1
- package/es/schema-component/antd/action/utils.d.ts +1 -0
- package/es/schema-component/antd/filter/useFilterActionProps.d.ts +2 -2
- package/es/schema-component/antd/page/index.d.ts +2 -2
- package/lib/index.css +1 -1
- package/lib/index.js +54 -54
- package/lib/locale/ja_JP.js +303 -1
- package/package.json +5 -5
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
import React from 'react';
|
|
10
10
|
export declare function ActionPage({ level }: {
|
|
11
11
|
level: any;
|
|
12
|
-
}): React.
|
|
12
|
+
}): React.ReactPortal;
|
|
13
13
|
export declare namespace ActionPage {
|
|
14
14
|
var Footer: React.MemoExoticComponent<import("@formily/react").ReactFC<unknown>>;
|
|
15
15
|
}
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
7
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
8
|
*/
|
|
9
|
-
export declare const useGetFilterOptions: () => (collectionName: any, dataSource?: string) => any[];
|
|
9
|
+
export declare const useGetFilterOptions: () => (collectionName: any, dataSource?: string, usedInVariable?: boolean) => any[];
|
|
10
10
|
export declare const useFilterOptions: (collectionName: string) => any[];
|
|
11
|
-
export declare const useGetFilterFieldOptions: () => (fields: any) => any[];
|
|
11
|
+
export declare const useGetFilterFieldOptions: () => (fields: any, usedInVariable: any) => any[];
|
|
12
12
|
export declare const useFilterFieldOptions: (fields: any) => any[];
|
|
13
13
|
export declare const removeNullCondition: (filter: any, customFlat?: any) => any;
|
|
14
14
|
export declare const useFilterActionProps: () => {
|
|
@@ -12,6 +12,6 @@ export * from './FixedBlockDesignerItem';
|
|
|
12
12
|
export * from './Page';
|
|
13
13
|
export * from './Page.Settings';
|
|
14
14
|
export { PagePopups } from './PagePopups';
|
|
15
|
-
export {
|
|
15
|
+
export { getStoredPopupContext, storePopupContext } from './pagePopupUtils';
|
|
16
16
|
export * from './PageTab.Settings';
|
|
17
|
-
export { PopupSettingsProvider } from './PopupSettingsProvider';
|
|
17
|
+
export { PopupSettingsProvider, usePopupSettings } from './PopupSettingsProvider';
|
package/lib/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-track{background:var(--colorBgScrollTrack)}::-webkit-scrollbar-thumb{background:var(--colorBgScrollBar);border-radius:4px}::-webkit-scrollbar-thumb:hover{background:var(--colorBgScrollBarHover)}::-webkit-scrollbar-thumb:active{background:var(--colorBgScrollBarActive)}.rc-virtual-list-scrollbar-thumb{background:var(--colorBgScrollBar)!important}.rc-virtual-list-scrollbar-thumb:hover{background:var(--colorBgScrollBarHover)!important}.rc-virtual-list-scrollbar-thumb:active{background:var(--colorBgScrollBarActive)!important}.ant-btn.ant-btn-danger{text-shadow:none;box-shadow:none}.ant-formily-item-label{color:#000000d9;font-weight:600}.ant-table-pagination.ant-pagination{margin-bottom:0!important}.ant-formily-item{font-size:inherit!important}.ant-formily-item-bordered-none .ant-formily-item-feedback-layout-loose{margin-bottom:0!important}.ant-formily-item-control-content-component .ant-tag{white-space:pre-wrap}html body{--adm-font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}
|