@crystaldesign/diva-backoffice 25.7.0-beta.25 → 25.7.0-beta.26
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/build/esm/index.js +23 -0
- package/package.json +9 -9
package/build/esm/index.js
CHANGED
@@ -7914,6 +7914,29 @@ function loadConfiguration(t, root, config, lang, apiConfig) {
|
|
7914
7914
|
{
|
7915
7915
|
name: ['defaultCatalog', 'catalogCodex'],
|
7916
7916
|
hidden: true
|
7917
|
+
}, {
|
7918
|
+
name: ['settings', 'sendOrders'],
|
7919
|
+
label: t('backoffice.form.organizationdetails.items.settings.sendOrders'),
|
7920
|
+
type: 'radio',
|
7921
|
+
optionType: 'button',
|
7922
|
+
options: [{
|
7923
|
+
label: t('backoffice.form.organizationdetails.items.vererbt'),
|
7924
|
+
value: undefined
|
7925
|
+
}, {
|
7926
|
+
label: t('backoffice.form.organizationdetails.items.ja'),
|
7927
|
+
value: true
|
7928
|
+
}, {
|
7929
|
+
label: t('backoffice.form.organizationdetails.items.nein'),
|
7930
|
+
value: false
|
7931
|
+
}],
|
7932
|
+
permission: 'backoffice_sys_admin_organizations'
|
7933
|
+
}, {
|
7934
|
+
name: ['settings', 'sendOrdersEmail'],
|
7935
|
+
label: t('backoffice.form.organizationdetails.items.settings.sendOrdersEmail'),
|
7936
|
+
type: 'input',
|
7937
|
+
hidden: function hidden(data) {
|
7938
|
+
return (data === null || data === void 0 ? void 0 : data.type) !== 'RETAILER' && (data === null || data === void 0 ? void 0 : data.parentType) !== 'RETAILER';
|
7939
|
+
}
|
7917
7940
|
}, {
|
7918
7941
|
name: 'iwofurn',
|
7919
7942
|
label: t('backoffice.form.organizationdetails.items.iwofurn'),
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@crystaldesign/diva-backoffice",
|
3
|
-
"version": "25.7.0-beta.
|
3
|
+
"version": "25.7.0-beta.26",
|
4
4
|
"license": "COMMERCIAL",
|
5
5
|
"devDependencies": {
|
6
6
|
"@testing-library/jest-dom": "^6.5.0",
|
@@ -15,13 +15,13 @@
|
|
15
15
|
"dependencies": {
|
16
16
|
"@ant-design/icons": "5.4.0",
|
17
17
|
"@babel/runtime": "7.24.7",
|
18
|
-
"@crystaldesign/content-box": "25.7.0-beta.
|
19
|
-
"@crystaldesign/content-item": "25.7.0-beta.
|
20
|
-
"@crystaldesign/diva-core": "25.7.0-beta.
|
21
|
-
"@crystaldesign/diva-utils": "25.7.0-beta.
|
22
|
-
"@crystaldesign/media-upload": "25.7.0-beta.
|
23
|
-
"@crystaldesign/rtf-editor": "25.7.0-beta.
|
24
|
-
"@crystaldesign/spreadsheet": "25.7.0-beta.
|
18
|
+
"@crystaldesign/content-box": "25.7.0-beta.26",
|
19
|
+
"@crystaldesign/content-item": "25.7.0-beta.26",
|
20
|
+
"@crystaldesign/diva-core": "25.7.0-beta.26",
|
21
|
+
"@crystaldesign/diva-utils": "25.7.0-beta.26",
|
22
|
+
"@crystaldesign/media-upload": "25.7.0-beta.26",
|
23
|
+
"@crystaldesign/rtf-editor": "25.7.0-beta.26",
|
24
|
+
"@crystaldesign/spreadsheet": "25.7.0-beta.26",
|
25
25
|
"@google/model-viewer": "3.5.0",
|
26
26
|
"ag-charts-community": "^10.1.0",
|
27
27
|
"ag-charts-react": "^10.1.0",
|
@@ -51,5 +51,5 @@
|
|
51
51
|
},
|
52
52
|
"module": "build/esm/index.js",
|
53
53
|
"types": "./build/types/backoffice/src/index.d.ts",
|
54
|
-
"gitHead": "
|
54
|
+
"gitHead": "79a02aaa76bb35623dfdf6dbd2cfc03b33e923ed"
|
55
55
|
}
|