@tachybase/client 1.3.16 → 1.3.18
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/application/CustomRouterContextProvider.mjs +2 -1
- package/es/application/components/AppComponent.mjs +3 -1
- package/es/application/schema-initializer/hooks/index.d.ts +1 -1
- package/es/application/schema-initializer/hooks/index.mjs +2 -2
- package/es/block-provider/hooks/index.mjs +1 -1
- package/es/built-in/acl/Configuration/schemas/scopes.mjs +5 -4
- package/es/built-in/dynamic-page/DynamicPage.context.d.ts +0 -0
- package/es/built-in/dynamic-page/DynamicPage.context.mjs +0 -0
- package/es/built-in/dynamic-page/DynamicPage.mjs +33 -16
- package/es/built-in/dynamic-page/DynamicPage.style.d.ts +3 -0
- package/es/built-in/dynamic-page/DynamicPage.style.mjs +26 -0
- package/es/built-in/dynamic-page/PageNavBar.d.ts +3 -0
- package/es/built-in/dynamic-page/PageNavBar.mjs +47 -0
- package/es/built-in/dynamic-page/PageNavBar.style.d.ts +3 -0
- package/es/built-in/dynamic-page/PageNavBar.style.mjs +25 -0
- package/es/built-in/dynamic-page/utils.d.ts +2 -1
- package/es/built-in/dynamic-page/utils.mjs +3 -0
- package/es/built-in/locale/LocalePlugin.mjs +1 -1
- package/es/built-in/page-style/CustomAdminHeader.mjs +2 -2
- package/es/built-in/page-style/PageStyle.provider.d.ts +7 -2
- package/es/built-in/page-style/PageStyle.provider.mjs +8 -3
- package/es/built-in/page-style/TabContent.mjs +7 -5
- package/es/built-in/page-style/usePageStyle.d.ts +1 -1
- package/es/built-in/page-style/usePageStyle.mjs +1 -1
- package/es/built-in/page-style/useTabSettings.d.ts +4 -3
- package/es/built-in/page-style/useTabSettings.mjs +8 -7
- package/es/built-in/quick-access/PopupActionSchemaInitializerItem.mjs +2 -2
- package/es/modules/actions/add-child/CreateChildInitializer.mjs +2 -2
- package/es/modules/actions/add-new/CreateActionInitializer.mjs +2 -2
- package/es/modules/actions/add-record/CustomizeAddRecordActionInitializer.mjs +2 -2
- package/es/modules/actions/associate/AssociateActionInitializer.mjs +2 -1
- package/es/modules/actions/submit/createSubmitActionSettings.mjs +6 -3
- package/es/modules/actions/view-edit-popup/PopupActionInitializer.mjs +2 -2
- package/es/modules/actions/view-edit-popup/UpdateActionInitializer.mjs +2 -2
- package/es/modules/actions/view-edit-popup/ViewActionInitializer.mjs +2 -2
- package/es/modules/fields/component/DrawerSubTable/drawerSubTableComponentFieldSettings.mjs +2 -2
- package/es/modules/fields/component/Picker/recordPickerComponentFieldSettings.mjs +2 -2
- package/es/modules/fields/component/Select/selectComponentFieldSettings.mjs +2 -2
- package/es/schema-component/antd/action/Action.Container.mjs +26 -5
- package/es/schema-component/antd/action/Action.Designer.mjs +14 -3
- package/es/schema-component/antd/action/Action.Page.mjs +1 -1
- package/es/schema-component/antd/action/Action.mjs +56 -11
- package/es/schema-component/antd/action/context.d.ts +9 -1
- package/es/schema-component/antd/action/context.mjs +10 -1
- package/es/schema-component/antd/action/hooks.d.ts +2 -1
- package/es/schema-component/antd/action/hooks.mjs +2 -2
- package/es/schema-component/antd/association-field/FileManager.mjs +2 -2
- package/es/schema-component/antd/association-field/InternalDrawerSubTable.mjs +2 -2
- package/es/schema-component/antd/association-field/InternalPicker.mjs +2 -2
- package/es/schema-component/antd/association-field/InternalTag.mjs +2 -2
- package/es/schema-component/antd/association-field/InternalViewer.mjs +2 -2
- package/es/schema-component/antd/association-field/SubTable.mjs +2 -2
- package/es/schema-component/antd/form-item/FormItem.Settings.mjs +3 -2
- package/es/schema-component/antd/page/Page.mjs +27 -22
- package/es/schema-component/antd/record-picker/InputRecordPicker.mjs +2 -2
- package/es/schema-component/antd/record-picker/ReadPrettyRecordPicker.mjs +2 -2
- package/es/schema-initializer/items/SelectActionInitializer.mjs +2 -2
- package/es/schema-items/OpenModeSchemaItems.mjs +37 -16
- package/es/schema-templates/schemas/uiSchemaTemplates.mjs +1 -1
- package/es/user/ChangePassword.mjs +19 -4
- package/lib/application/CustomRouterContextProvider.js +2 -1
- package/lib/application/components/AppComponent.js +3 -1
- package/lib/application/schema-initializer/hooks/index.js +152 -193
- package/lib/block-provider/hooks/index.js +3 -3
- package/lib/built-in/acl/Configuration/schemas/scopes.js +4 -3
- package/lib/built-in/dynamic-page/DynamicPage.context.js +5 -0
- package/lib/built-in/dynamic-page/DynamicPage.js +31 -14
- package/lib/built-in/dynamic-page/DynamicPage.style.js +60 -0
- package/lib/built-in/dynamic-page/PageNavBar.js +81 -0
- package/lib/built-in/dynamic-page/PageNavBar.style.js +59 -0
- package/lib/built-in/dynamic-page/utils.js +3 -0
- package/lib/built-in/locale/LocalePlugin.js +1 -1
- package/lib/built-in/page-style/CustomAdminHeader.js +2 -2
- package/lib/built-in/page-style/PageStyle.provider.js +10 -2
- package/lib/built-in/page-style/TabContent.js +6 -4
- package/lib/built-in/page-style/usePageStyle.js +1 -1
- package/lib/built-in/page-style/useTabSettings.js +8 -7
- package/lib/built-in/quick-access/PopupActionSchemaInitializerItem.js +1 -1
- package/lib/locale/en_US.js +1 -0
- package/lib/locale/index.js +5 -5
- package/lib/modules/actions/add-child/CreateChildInitializer.js +2 -2
- package/lib/modules/actions/add-new/CreateActionInitializer.js +2 -2
- package/lib/modules/actions/add-record/CustomizeAddRecordActionInitializer.js +2 -2
- package/lib/modules/actions/associate/AssociateActionInitializer.js +2 -1
- package/lib/modules/actions/submit/createSubmitActionSettings.js +5 -2
- package/lib/modules/actions/view-edit-popup/PopupActionInitializer.js +2 -2
- package/lib/modules/actions/view-edit-popup/UpdateActionInitializer.js +2 -2
- package/lib/modules/actions/view-edit-popup/ViewActionInitializer.js +2 -2
- package/lib/modules/fields/component/DrawerSubTable/drawerSubTableComponentFieldSettings.js +1 -1
- package/lib/modules/fields/component/Picker/recordPickerComponentFieldSettings.js +1 -1
- package/lib/modules/fields/component/Select/selectComponentFieldSettings.js +1 -1
- package/lib/schema-component/antd/action/Action.Container.js +25 -4
- package/lib/schema-component/antd/action/Action.Designer.js +13 -2
- package/lib/schema-component/antd/action/Action.Page.js +1 -1
- package/lib/schema-component/antd/action/Action.js +55 -10
- package/lib/schema-component/antd/action/context.js +13 -1
- package/lib/schema-component/antd/action/hooks.js +1 -1
- package/lib/schema-component/antd/association-field/FileManager.js +1 -1
- package/lib/schema-component/antd/association-field/InternalDrawerSubTable.js +1 -1
- package/lib/schema-component/antd/association-field/InternalPicker.js +1 -1
- package/lib/schema-component/antd/association-field/InternalTag.js +1 -1
- package/lib/schema-component/antd/association-field/InternalViewer.js +1 -1
- package/lib/schema-component/antd/association-field/SubTable.js +1 -1
- package/lib/schema-component/antd/form-item/FormItem.Settings.js +3 -2
- package/lib/schema-component/antd/page/Page.js +26 -21
- package/lib/schema-component/antd/record-picker/InputRecordPicker.js +1 -1
- package/lib/schema-component/antd/record-picker/ReadPrettyRecordPicker.js +1 -1
- package/lib/schema-initializer/items/SelectActionInitializer.js +2 -2
- package/lib/schema-items/OpenModeSchemaItems.js +36 -15
- package/lib/schema-templates/schemas/uiSchemaTemplates.js +1 -1
- package/lib/user/ChangePassword.js +18 -3
- package/package.json +11 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tachybase/client",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.18",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"@dnd-kit/utilities": "^3.2.2",
|
|
20
20
|
"@emotion/css": "^11.13.5",
|
|
21
21
|
"@floating-ui/react": "0.26.28",
|
|
22
|
-
"@js-preview/excel": "^1.7.
|
|
22
|
+
"@js-preview/excel": "^1.7.14",
|
|
23
23
|
"@lottiefiles/dotlottie-react": "^0.9.3",
|
|
24
|
-
"ahooks": "^3.
|
|
24
|
+
"ahooks": "^3.9.0",
|
|
25
25
|
"antd": "5.22.5",
|
|
26
26
|
"antd-style": "3.7.1",
|
|
27
27
|
"axios": "1.7.7",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"mitt": "^3.0.1",
|
|
44
44
|
"nanoid": "^3.3.8",
|
|
45
45
|
"qrcode": "^1.5.4",
|
|
46
|
-
"rc-menu": "9.16.
|
|
46
|
+
"rc-menu": "9.16.1",
|
|
47
47
|
"rc-tree-select": "^5.25.0",
|
|
48
48
|
"rc-util": "^5.44.2",
|
|
49
49
|
"react-beautiful-dnd": "^13.1.1",
|
|
@@ -63,22 +63,21 @@
|
|
|
63
63
|
"react-to-print": "^2.15.1",
|
|
64
64
|
"react-transition-group": "^4.4.5",
|
|
65
65
|
"react-zoom-pan-pinch": "^3.6.1",
|
|
66
|
-
"sanitize-html": "2.
|
|
66
|
+
"sanitize-html": "2.17.0",
|
|
67
67
|
"use-deep-compare-effect": "^1.8.1",
|
|
68
68
|
"xlsx": "0.18.5",
|
|
69
|
-
"@tachybase/components": "1.3.
|
|
70
|
-
"@tachybase/
|
|
71
|
-
"@tachybase/
|
|
72
|
-
"@tachybase/
|
|
73
|
-
"@tachybase/
|
|
74
|
-
"@tachybase/
|
|
69
|
+
"@tachybase/components": "1.3.18",
|
|
70
|
+
"@tachybase/evaluators": "1.3.18",
|
|
71
|
+
"@tachybase/requirejs": "1.3.18",
|
|
72
|
+
"@tachybase/schema": "1.3.18",
|
|
73
|
+
"@tachybase/utils": "1.3.18",
|
|
74
|
+
"@tachybase/sdk": "1.3.18"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
77
|
"@testing-library/react": "^16.2.0",
|
|
78
78
|
"@types/flat": "^5.0.5",
|
|
79
79
|
"@types/lodash": "^4.17.13",
|
|
80
80
|
"@types/markdown-it": "12.2.3",
|
|
81
|
-
"@types/markdown-it-highlightjs": "3.3.4",
|
|
82
81
|
"@types/react-big-calendar": "^1.16.0"
|
|
83
82
|
},
|
|
84
83
|
"peerDependencies": {
|