@lowdefy/docs 3.23.0 → 3.23.3

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/CHANGELOG.md CHANGED
@@ -3,6 +3,35 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.23.3](https://github.com/lowdefy/lowdefy/compare/v3.23.2...v3.23.3) (2022-04-20)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix axios docs after schema fix. ([2e3c632](https://github.com/lowdefy/lowdefy/commit/2e3c63228dd539b6ed4ee6c60f5fc359ff0104e7))
12
+ * Update docs snapshot test ([e8445e8](https://github.com/lowdefy/lowdefy/commit/e8445e8877659477027e03509a5572874907a132))
13
+ * **blocksAntd:** Pass icons to confirm modal, closes [#1160](https://github.com/lowdefy/lowdefy/issues/1160) ([2256b2b](https://github.com/lowdefy/lowdefy/commit/2256b2bb57851ad698836adf7e693a4c2550b0a3))
14
+
15
+
16
+
17
+
18
+
19
+ ## [3.23.2](https://github.com/lowdefy/lowdefy/compare/v3.23.1...v3.23.2) (2021-11-29)
20
+
21
+ **Note:** Version bump only for package @lowdefy/docs
22
+
23
+
24
+
25
+
26
+
27
+ ## [3.23.1](https://github.com/lowdefy/lowdefy/compare/v3.23.0...v3.23.1) (2021-11-20)
28
+
29
+ **Note:** Version bump only for package @lowdefy/docs
30
+
31
+
32
+
33
+
34
+
6
35
  # [3.23.0](https://github.com/lowdefy/lowdefy/compare/v3.23.0-alpha.0...v3.23.0) (2021-11-19)
7
36
 
8
37
 
@@ -66,7 +66,7 @@ _ref:
66
66
  ```yaml
67
67
  # lowdefy.yaml
68
68
  name: intercom-example
69
- lowdefy: '3.23.0'
69
+ lowdefy: '3.23.3'
70
70
  app:
71
71
  html:
72
72
  appendBody: |
@@ -137,7 +137,7 @@ _ref:
137
137
  ```yaml
138
138
  # file: lowdefy.yaml
139
139
  name: text-highlight-example
140
- lowdefy: '3.23.0'
140
+ lowdefy: '3.23.3'
141
141
  app:
142
142
  html:
143
143
  # Load the custom modules into the index.html head tag.
@@ -45,7 +45,7 @@ _ref:
45
45
 
46
46
  ```yaml
47
47
  name: dashboard-app
48
- lowdefy: 3.23.0
48
+ lowdefy: 3.23.3
49
49
  types:
50
50
  AmChartsXY:
51
51
  url: https://blocks-cdn.lowdefy.com/v3.10.1/blocks-amcharts/meta/AmChartsXY.json
@@ -95,7 +95,7 @@ _ref:
95
95
 
96
96
  ```yaml
97
97
  name: dashboard-app
98
- lowdefy: 3.23.0
98
+ lowdefy: 3.23.3
99
99
  types:
100
100
  MyCustomBlock:
101
101
  url: http://localhost:3002/meta/MyCustomBlock.json
@@ -53,7 +53,7 @@ _ref:
53
53
 
54
54
  ```yaml
55
55
  name: google-analytics-example
56
- lowdefy: 3.23.0
56
+ lowdefy: 3.23.3
57
57
  # ...
58
58
  app:
59
59
  html:
@@ -98,7 +98,7 @@ _ref:
98
98
  ```yaml
99
99
  # /lowdefy.yaml
100
100
  name: json-todos
101
- lowdefy: 3.23.0
101
+ lowdefy: 3.23.3
102
102
  app:
103
103
  html:
104
104
  appendHead:
@@ -156,7 +156,7 @@ _ref:
156
156
  ```yaml
157
157
  # /lowdefy.yaml
158
158
  name: operator-example
159
- lowdefy: 3.23.0
159
+ lowdefy: 3.23.3
160
160
  app:
161
161
  html:
162
162
  appendHead:
@@ -56,9 +56,9 @@ _ref:
56
56
  - `'put'`
57
57
  - `'patch'`
58
58
  - `baseURL: string`: `baseURL` will be prepended to `url` unless `url` is absolute. It can be convenient to set `baseURL` for an axios connection to pass relative URLs to requests or mutations using that connection.
59
- - `headers: object`: An object with custom headers to be sent sent with the request. The object keys should be header names, and the values should be the string header values.
59
+ - `headers: object`: An object with custom headers to be sent with the request. The object keys should be header names, and the values should be the string header values.
60
60
  - `params: object`: An object with URL parameters to be sent with the request.
61
- - `data: string | object`: The data to be sent as the request body. Only applicable for request methods `'put'`, `'post'`, and `'patch'`. Can be an object or a string in the format `'Country=Brasil&City=Belo Horizonte'`.
61
+ - `data: string | object | array`: The data to be sent as the request body. Only applicable for request methods `'put'`, `'post'`, and `'patch'`. Can be an object, array or a string in the format `'Country=Brasil&City=Belo Horizonte'`.
62
62
  - `auth: object`: Indicates that HTTP Basic authorization should be used, and supplies credentials. This will set an `Authorization` header, overwriting any existing `Authorization` custom headers you have set using `headers`. Only HTTP Basic auth is configurable through this parameter, for Bearer tokens and such, use `Authorization` custom headers instead. The `auth` object should have the following fields:
63
63
  - `username: string`
64
64
  - `password: string`
@@ -88,7 +88,7 @@ _ref:
88
88
  ###### A basic full example requesting data from https://jsonplaceholder.typicode.com
89
89
 
90
90
  ```yaml
91
- lowdefy: 3.23.0
91
+ lowdefy: 3.23.3
92
92
  name: Lowdefy starter
93
93
  connections:
94
94
  - id: my_api
@@ -55,10 +55,10 @@ _ref:
55
55
  COPY --chown=node:node . .
56
56
 
57
57
  # Build the Lowdefy config using the Lowdefy CLI
58
- RUN npx lowdefy@3.23.0 build
58
+ RUN npx lowdefy@3.23.3 build
59
59
 
60
60
  # Use the correct Lowdefy base image
61
- FROM lowdefy/lowdefy-aws-lambda:3.23.0
61
+ FROM lowdefy/lowdefy-aws-lambda:3.23.3
62
62
 
63
63
  # Copy build output from build stage
64
64
  COPY --from=build /home/node/lowdefy/.lowdefy/build ./build
@@ -65,10 +65,10 @@ _ref:
65
65
  COPY --chown=node:node . .
66
66
 
67
67
  # Build the Lowdefy config using the Lowdefy CLI
68
- RUN npx lowdefy@3.23.0 build
68
+ RUN npx lowdefy@3.23.3 build
69
69
 
70
70
  # Use the correct Lowdefy base image
71
- FROM lowdefy/lowdefy:3.23.0
71
+ FROM lowdefy/lowdefy:3.23.3
72
72
 
73
73
  # Copy build output from build stage
74
74
  COPY --from=build --chown=node:node /home/node/lowdefy/.lowdefy/build ./build
@@ -184,7 +184,7 @@ _ref:
184
184
 
185
185
  ###### /lowdefy.yaml
186
186
  ```yaml
187
- lowdefy: 3.23.0
187
+ lowdefy: 3.23.3
188
188
  name: Generate PDF from data with Lowdefy
189
189
 
190
190
  app:
@@ -237,7 +237,7 @@ _ref:
237
237
  ###### /lowdefy.yaml
238
238
  ```yaml
239
239
  name: Generate a PDF
240
- lowdefy: 3.23.0
240
+ lowdefy: 3.23.3
241
241
 
242
242
  app:
243
243
  html:
@@ -302,7 +302,7 @@ _ref:
302
302
 
303
303
  ###### /lowdefy.yaml
304
304
  ```yaml
305
- lowdefy: 3.23.0
305
+ lowdefy: 3.23.3
306
306
  name: Generate PDF from data with Lowdefy
307
307
 
308
308
  app:
@@ -1,4 +1,4 @@
1
- lowdefy: 3.23.0
1
+ lowdefy: 3.23.3
2
2
  name: Generate PDF from data with Lowdefy
3
3
 
4
4
  app:
@@ -1,4 +1,4 @@
1
- lowdefy: 3.23.0
1
+ lowdefy: 3.23.3
2
2
  name: Generate PDF from data with Lowdefy
3
3
 
4
4
  app:
package/lowdefy.yaml CHANGED
@@ -13,7 +13,7 @@
13
13
  # limitations under the License.
14
14
 
15
15
  name: '@lowdefy/docs'
16
- lowdefy: 3.23.0
16
+ lowdefy: 3.23.3
17
17
  licence: Apache-2.0
18
18
 
19
19
  cli:
package/menus.yaml CHANGED
@@ -779,11 +779,11 @@
779
779
  title: Lowdefy Versions
780
780
  icon: BranchesOutlined
781
781
  links:
782
- - id: v3.23.0
782
+ - id: v3.23.3
783
783
  type: MenuLink
784
784
  url: https://docs.lowdefy.com
785
785
  properties:
786
- title: v3.23.0
786
+ title: v3.23.3
787
787
  - id: v3.22.0
788
788
  type: MenuLink
789
789
  url: https://61519bcb8b8ed4412aae3057--lowdefy-docs.netlify.app
@@ -77,7 +77,7 @@ _ref:
77
77
  First register a custom JavaScript action: `getNormalizedEigenvector`
78
78
  ```yaml
79
79
  # file: lowdefy.yaml
80
- lowdefy: '3.23.0'
80
+ lowdefy: '3.23.3'
81
81
  app:
82
82
  html:
83
83
  appendHead: |
@@ -51,7 +51,7 @@ _ref:
51
51
  ```yaml
52
52
  # lowdefy.yaml
53
53
  name: make-me-primes
54
- lowdefy: '3.23.0'
54
+ lowdefy: '3.23.3'
55
55
  app:
56
56
  html:
57
57
  # This HTML will be appended to the head HTML tag in the Lowdefy app
@@ -119,7 +119,7 @@ _ref:
119
119
  ```yaml
120
120
  # file: lowdefy.yaml
121
121
  name: my-chart
122
- lowdefy: '3.23.0'
122
+ lowdefy: '3.23.3'
123
123
  app:
124
124
  html:
125
125
  appendHead:
@@ -73,7 +73,7 @@ _ref:
73
73
  ###### Reference pages:
74
74
  ```yaml
75
75
  # lowdefy.yaml
76
- lowdefy: '3.23.0'
76
+ lowdefy: '3.23.3'
77
77
  pages:
78
78
  - _ref: pages/page1.yaml
79
79
  - _ref: pages/page2.yaml
@@ -94,7 +94,7 @@ _ref:
94
94
  ```
95
95
  Returns:
96
96
  ```
97
- lowdefy: '3.23.0'
97
+ lowdefy: '3.23.3'
98
98
  pages:
99
99
  - id: page1
100
100
  type: PageHeaderMenu
@@ -197,7 +197,7 @@ _ref:
197
197
 
198
198
  ```yaml
199
199
  // lowdefy.yaml
200
- lowdefy: 3.23.0
200
+ lowdefy: 3.23.3
201
201
 
202
202
  cli:
203
203
  refResolver: resolvers/useLocalOrSharedConfig.js
@@ -223,7 +223,7 @@ _ref:
223
223
  ```
224
224
  ```yaml
225
225
  // lowdefy.yaml
226
- lowdefy: 3.23.0
226
+ lowdefy: 3.23.3
227
227
 
228
228
  pages:
229
229
  - _ref:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowdefy/docs",
3
- "version": "3.23.0",
3
+ "version": "3.23.3",
4
4
  "license": "Apache-2.0",
5
5
  "description": "",
6
6
  "homepage": "https://lowdefy.com",
@@ -40,5 +40,5 @@
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "9f9cc98aafbf7b0da87fb4f1252c31c1dc08638b"
43
+ "gitHead": "aede980a615d339db496a423820612ef85bcbebf"
44
44
  }