@nocobase/client 1.9.0-alpha.3 → 1.9.0-alpha.5
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/block-provider/hooks/index.d.ts +26 -0
- package/es/index.css +1 -1
- package/es/index.mjs +4740 -3851
- package/es/modules/actions/edit-table/EditTableActionInitializer.d.ts +10 -0
- package/es/modules/actions/edit-table/editTableActionSettings.d.ts +10 -0
- package/es/modules/fields/component/Input/inputComponentSettings.d.ts +1 -0
- package/es/schema-component/antd/edit-table/EditTable.d.ts +15 -0
- package/es/schema-component/antd/edit-table/EditTableAction.d.ts +46 -0
- package/es/schema-component/antd/edit-table/hooks/useColumnSettings.d.ts +26 -0
- package/es/schema-component/antd/edit-table/hooks/useTableColumnIntegration.d.ts +26 -0
- package/es/schema-component/antd/edit-table/index.d.ts +12 -0
- package/es/schema-component/antd/index.d.ts +1 -0
- package/es/schema-component/antd/page/pagePopupUtils.d.ts +2 -1
- package/es/schema-settings/VariableInput/hooks/useDateVariable.d.ts +1 -1
- package/lib/index.css +1 -1
- package/lib/index.js +210 -101
- package/lib/locale/de-DE.js +8 -0
- package/lib/locale/en-US.js +9 -0
- package/lib/locale/es-ES.js +8 -0
- package/lib/locale/fr-FR.js +8 -0
- package/lib/locale/it-IT.js +8 -0
- package/lib/locale/ja-JP.js +8 -0
- package/lib/locale/ko-KR.js +8 -0
- package/lib/locale/nl-NL.js +8 -0
- package/lib/locale/pt-BR.js +8 -0
- package/lib/locale/ru-RU.js +8 -0
- package/lib/locale/tr-TR.js +8 -0
- package/lib/locale/uk-UA.js +8 -0
- package/lib/locale/zh-CN.js +11 -1
- package/lib/locale/zh-TW.js +8 -0
- package/package.json +5 -5
|
@@ -80,6 +80,32 @@ export declare const useBulkDestroyActionProps: () => {
|
|
|
80
80
|
export declare const useRefreshActionProps: () => {
|
|
81
81
|
onClick(): Promise<void>;
|
|
82
82
|
};
|
|
83
|
+
export interface ColumnInfo {
|
|
84
|
+
key: string;
|
|
85
|
+
title: string;
|
|
86
|
+
dataIndex: string;
|
|
87
|
+
visible: boolean;
|
|
88
|
+
fixed?: 'left' | 'right' | false;
|
|
89
|
+
width?: number;
|
|
90
|
+
order?: number;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Get table columns from schema
|
|
94
|
+
*/
|
|
95
|
+
export declare const useTableColumns: () => ColumnInfo[];
|
|
96
|
+
export declare const useEditTableActionProps: () => {
|
|
97
|
+
columns: (ColumnInfo | {
|
|
98
|
+
visible: any;
|
|
99
|
+
order: any;
|
|
100
|
+
width: any;
|
|
101
|
+
fixed: any;
|
|
102
|
+
key: string;
|
|
103
|
+
title: string;
|
|
104
|
+
dataIndex: string;
|
|
105
|
+
})[];
|
|
106
|
+
onSubmit: (values: any) => void;
|
|
107
|
+
onReset: () => void;
|
|
108
|
+
};
|
|
83
109
|
export declare const useDetailsPaginationProps: () => {
|
|
84
110
|
simple: boolean;
|
|
85
111
|
current: any;
|
package/es/index.css
CHANGED
|
@@ -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-menu-submenu-popup{-webkit-backdrop-filter:none;backdrop-filter:none}.ant-menu-item.ant-menu-item-only-child.ant-pro-base-menu-horizontal-menu-item:active{background-color:var(--colorBgMenuItemSelected)!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"}
|
|
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-menu-submenu-popup{-webkit-backdrop-filter:none;backdrop-filter:none}.ant-menu-item.ant-menu-item-only-child.ant-pro-base-menu-horizontal-menu-item:active{background-color:var(--colorBgMenuItemSelected)!important}html{overflow:hidden}.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"}
|