@nocobase/client 0.20.0-alpha.4 → 0.20.0-alpha.6
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/.dumirc.ts +1 -5
- package/es/application/PluginSettingsManager.d.ts +1 -0
- package/es/index.css +1 -1
- package/es/index.mjs +2734 -2484
- package/es/modules/blocks/data-blocks/form/formActionInitializers.d.ts +0 -2
- package/es/schema-component/antd/table-v2/Table.Column.ActionBar.d.ts +4 -1
- package/lib/index.css +1 -1
- package/lib/index.js +96 -96
- package/lib/locale/ko_KR.js +1 -1
- package/lib/locale/zh-CN.js +1 -1
- package/lib/locale/zh-TW.js +1 -1
- package/package.json +5 -5
package/.dumirc.ts
CHANGED
|
@@ -179,12 +179,8 @@ export default defineConfig({
|
|
|
179
179
|
title: 'DataBlock',
|
|
180
180
|
type: 'group',
|
|
181
181
|
children: [
|
|
182
|
-
// {
|
|
183
|
-
// title: '临时',
|
|
184
|
-
// link: '/core/data-block/tmp',
|
|
185
|
-
// },
|
|
186
182
|
{
|
|
187
|
-
title: '
|
|
183
|
+
title: 'CollectionRecord',
|
|
188
184
|
link: '/core/data-block/collection-record',
|
|
189
185
|
},
|
|
190
186
|
{
|
|
@@ -37,6 +37,7 @@ export declare class PluginSettingsManager {
|
|
|
37
37
|
protected settings: Record<string, PluginSettingOptions>;
|
|
38
38
|
protected aclSnippets: string[];
|
|
39
39
|
app: Application;
|
|
40
|
+
private cachedList;
|
|
40
41
|
constructor(_pluginSettings: Record<string, PluginSettingOptions>, app: Application);
|
|
41
42
|
setAclSnippets(aclSnippets: string[]): void;
|
|
42
43
|
getAclSnippet(name: string): string;
|
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-
|
|
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"}
|