@steedos/webapp 3.0.0-beta.61 → 3.0.0-beta.63
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.
|
@@ -55357,7 +55357,9 @@ Try polyfilling it using "@formatjs/intl-displaynames"
|
|
|
55357
55357
|
let { appId, objectName, listviewId: listName } = useParams();
|
|
55358
55358
|
let location2 = useLocation();
|
|
55359
55359
|
const uiSchema = window.getUISchemaSync(objectName);
|
|
55360
|
-
|
|
55360
|
+
const [searchParams] = useSearchParams();
|
|
55361
|
+
const allParams = Object.fromEntries(searchParams.entries());
|
|
55362
|
+
console.log(`ObjectListView`, appId, objectName, listName, location2, allParams);
|
|
55361
55363
|
if (!listName) {
|
|
55362
55364
|
listName = (_a2 = lodashExports.first(lodashExports.values(uiSchema.list_views))) == null ? void 0 : _a2.name;
|
|
55363
55365
|
}
|
|
@@ -55373,7 +55375,8 @@ Try polyfilling it using "@formatjs/intl-displaynames"
|
|
|
55373
55375
|
pageType: "list",
|
|
55374
55376
|
listName: listName || "",
|
|
55375
55377
|
display: Steedos.Page.getDisplay(objectName),
|
|
55376
|
-
_reloadKey: ((_b2 = location2.state) == null ? void 0 : _b2.reloadKey) || (/* @__PURE__ */ new Date()).getTime()
|
|
55378
|
+
_reloadKey: ((_b2 = location2.state) == null ? void 0 : _b2.reloadKey) || (/* @__PURE__ */ new Date()).getTime(),
|
|
55379
|
+
...allParams
|
|
55377
55380
|
}
|
|
55378
55381
|
},
|
|
55379
55382
|
data: {
|
|
@@ -55395,7 +55398,8 @@ Try polyfilling it using "@formatjs/intl-displaynames"
|
|
|
55395
55398
|
app_id: appId,
|
|
55396
55399
|
listName: listName || "",
|
|
55397
55400
|
objectName,
|
|
55398
|
-
object_name: objectName
|
|
55401
|
+
object_name: objectName,
|
|
55402
|
+
...allParams
|
|
55399
55403
|
}, env: {} });
|
|
55400
55404
|
};
|
|
55401
55405
|
const ObjectDetail = () => {
|
|
@@ -62253,6 +62257,7 @@ Try polyfilling it using "@formatjs/intl-displaynames"
|
|
|
62253
62257
|
Builder2.settings.steedosVersion = settingsData.steedosVersion;
|
|
62254
62258
|
Builder2.settings.rootUrl = settingsData.rootUrl;
|
|
62255
62259
|
Builder2.settings.steedosAmisVersion = settingsData.steedosAmisVersion;
|
|
62260
|
+
Builder2.settings.platform = settingsData.platform;
|
|
62256
62261
|
Builder2.settings.env = {
|
|
62257
62262
|
requestAdaptor: (config2) => {
|
|
62258
62263
|
if (config2.url.startsWith("/")) {
|
package/dist/index.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>Steedos</title>
|
|
8
8
|
|
|
9
|
-
<script src="https://unpkg.steedos.cn/@steedos-widgets/amis@6.3.0-patch.
|
|
9
|
+
<script src="https://unpkg.steedos.cn/@steedos-widgets/amis@6.3.0-patch.7/sdk/sdk.js"></script>
|
|
10
10
|
|
|
11
11
|
<link rel="stylesheet" href="https://unpkg.steedos.cn/@fortawesome/fontawesome-free@6.2.0/css/all.min.css" />
|
|
12
12
|
<link rel="stylesheet" href="https://unpkg.steedos.cn/@salesforce-ux/design-system@2.22.2/assets/styles/salesforce-lightning-design-system.min.css">
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
window.loadCss = loadCss;
|
|
61
61
|
|
|
62
62
|
</script>
|
|
63
|
-
<script type="module" crossorigin src="/assets/index-
|
|
63
|
+
<script type="module" crossorigin src="/assets/index-DP39ppQ7.js"></script>
|
|
64
64
|
</head>
|
|
65
65
|
<body class="skin-blue-light fixed steedos sidebar-mini three-columns" >
|
|
66
66
|
<div id="root" class="steedos skin-blue-light creator h-full flex flex-col relative overflow-hidden"></div>
|
package/dist/steedos-init.js
CHANGED
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @Author: baozhoutao@steedos.com
|
|
3
|
-
* @Date: 2023-02-26 15:22:12
|
|
4
|
-
* @LastEditors: baozhoutao@steedos.com
|
|
5
|
-
* @LastEditTime: 2025-02-21 17:43:07
|
|
6
|
-
* @Description:
|
|
7
|
-
*/
|
|
8
1
|
try {
|
|
9
2
|
Steedos.authRequest = function (url, options) {
|
|
10
3
|
var userSession = Steedos.User.get();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/webapp",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.63",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"access": "public"
|
|
70
70
|
},
|
|
71
71
|
"repository": "https://github.com/steedos/app-builder/tree/master/apps/accounts",
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "e30db027c1cf8d4b9d5bd04192d8c5705a312bea"
|
|
73
73
|
}
|