@steedos/service-pages 2.2.16 → 2.2.17
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/LICENSE.txt +2 -2
- package/README.md +1 -1
- package/package.json +2 -2
package/LICENSE.txt
CHANGED
|
@@ -15,8 +15,8 @@ On request, licenses under different terms are available.
|
|
|
15
15
|
Project templates can be found in the folders steedos-projects/
|
|
16
16
|
|
|
17
17
|
Source code of enterprise features are files that
|
|
18
|
-
* are in folders named "ee" or
|
|
19
|
-
* contain the strings "
|
|
18
|
+
* are in folders named "ee" or start with "ee_", or in subfolders of such folders.
|
|
19
|
+
* contain the strings "ee_" in its filename name.
|
|
20
20
|
The files can be found by running the command `find . -iname ee -or -iname "*_ee*" -or -iname "*ee_*"`
|
|
21
21
|
|
|
22
22
|
STEEDOS TRADEMARK GUIDELINES
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
## 使用 Builder
|
|
10
10
|
|
|
11
|
-
Builder是异步加载, 加载完成后会给window下写变量Builder,
|
|
11
|
+
Builder是异步加载, 加载完成后会给window下写变量Builder, 如果直接在client中调用Builder可能会出现error:`Builder is not defined`. 请使用`waitForThing(window, 'Builder')` 等待Builder加载后,再调用Builder相关函数.
|
|
12
12
|
例如:
|
|
13
13
|
```
|
|
14
14
|
waitForThing(window, 'Builder').then(()=>{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/service-pages",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.17",
|
|
4
4
|
"main": "package.service.js",
|
|
5
5
|
"scripts": {},
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,5 +11,5 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@builder.io/react": "^1.1.50"
|
|
13
13
|
},
|
|
14
|
-
"gitHead": "
|
|
14
|
+
"gitHead": "d5f33748f18e5376484551234b3b323132a1e56c"
|
|
15
15
|
}
|