@steedos/service-package-registry 2.5.20-beta.4 → 2.5.20-beta.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.
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"id": "u:2bb7748ac402"
|
|
68
68
|
}
|
|
69
69
|
},
|
|
70
|
-
"adaptor": "if (payload.data.rows.length) {\n var unpkgUrl = window.Builder && window.Builder.settings.unpkgUrl || \"\";\n payload.data.rows.forEach(function (row) {\n if (!row.icon) {\n row.icon = \"standard.default\";\n }\n if (row.icon) {\n if (!/^http(s?):\\/\\//.test(row.icon)) {\n var iconCategory = \"standard\";\n var iconName = row.icon;\n var tags = row.icon.split(\".\");\n if (tags.length > 1) {\n iconCategory = tags[0];\n iconName = tags[1];\n }\n row.iconCategory = iconCategory;\n row.iconName = iconName;\n row.icon = unpkgUrl + \"/@salesforce-ux/design-system@2.22.0/assets/icons/\" + iconCategory + \"/\" + iconName.replace(\"-\", \"_\") + \"_120.png\";\n }\n }\n });\n}\nreturn payload;"
|
|
70
|
+
"adaptor": "if (payload.data.rows.length) {\n var unpkgUrl = window.Builder && window.Builder.settings.unpkgUrl || \"\";\n payload.data.rows.forEach(function (row) {\n if (!row.icon) {\n row.icon = \"standard.default\";\n }\n if (row.icon) {\n if (!/^http(s?):\\/\\//.test(row.icon) && !row.icon.endsWith('.jpg') && !row.icon.endsWith('.png')) {\n var iconCategory = \"standard\";\n var iconName = row.icon;\n var tags = row.icon.split(\".\");\n if (tags.length > 1) {\n iconCategory = tags[0];\n iconName = tags[1];\n }\n row.iconCategory = iconCategory;\n row.iconName = iconName.replace(\"_\", \"-\");\n row.icon = unpkgUrl + \"/@salesforce-ux/design-system@2.22.0/assets/icons/\" + iconCategory + \"/\" + iconName.replace(\"-\", \"_\") + \"_120.png\";\n }\n }\n });\n}\nreturn payload;"
|
|
71
71
|
}
|
|
72
72
|
],
|
|
73
73
|
"regions": [
|
|
@@ -75,12 +75,7 @@
|
|
|
75
75
|
],
|
|
76
76
|
"data": {
|
|
77
77
|
"objectName": "steedos_packages",
|
|
78
|
-
"context": {
|
|
79
|
-
"rootUrl": "http://127.0.0.1:5800",
|
|
80
|
-
"tenantId": "64a4d6dd7fe9acaf8c330a37",
|
|
81
|
-
"userId": "683e09cd-8482-4034-bd29-5a30643e6c0f",
|
|
82
|
-
"authToken": "2906ff4353c25cfe291352f899ba3446aa5577f3de7ad60e1aa500c60dee7ca6fb446412f1c9693775b4cc"
|
|
83
|
-
}
|
|
78
|
+
"context": {}
|
|
84
79
|
},
|
|
85
80
|
"id": "u:2775cd701d6a",
|
|
86
81
|
"name": "page_test__c_list",
|
|
@@ -140,7 +135,7 @@
|
|
|
140
135
|
".steedos-object-table.steedos-crud-mode-cards .antd-Crud .antd-Cards .antd-Cards-body .antd-Card": {
|
|
141
136
|
"padding-top": "2px"
|
|
142
137
|
},
|
|
143
|
-
".antd-Card-actions a[disabled]":{
|
|
138
|
+
".antd-Card-actions a[disabled]": {
|
|
144
139
|
"box-shadow": "none",
|
|
145
140
|
"cursor": "not-allowed"
|
|
146
141
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/service-package-registry",
|
|
3
|
-
"version": "2.5.20-beta.
|
|
3
|
+
"version": "2.5.20-beta.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "package.service.js",
|
|
6
6
|
"scripts": {
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
"author": "",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@steedos/auth": "2.5.20-beta.
|
|
13
|
-
"@steedos/core": "2.5.20-beta.
|
|
14
|
-
"@steedos/metadata-core": "2.5.20-beta.
|
|
15
|
-
"@steedos/objectql": "2.5.20-beta.
|
|
16
|
-
"@steedos/service-package-loader": "2.5.20-beta.
|
|
12
|
+
"@steedos/auth": "2.5.20-beta.6",
|
|
13
|
+
"@steedos/core": "2.5.20-beta.6",
|
|
14
|
+
"@steedos/metadata-core": "2.5.20-beta.6",
|
|
15
|
+
"@steedos/objectql": "2.5.20-beta.6",
|
|
16
|
+
"@steedos/service-package-loader": "2.5.20-beta.6",
|
|
17
17
|
"fs-extra": "8.1.0",
|
|
18
18
|
"i18next": "20.3.2",
|
|
19
19
|
"json-stringify-safe": "5.0.1",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "b7db7b353b18745e121fce123af292cbb8b525d4"
|
|
35
35
|
}
|