@fugood/bricks-project 2.21.0-beta.18 → 2.21.0-beta.18-1
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/api/instance.ts +5 -4
- package/package.json +2 -3
- package/types/bricks.ts +80 -2
package/api/instance.ts
CHANGED
|
@@ -51,10 +51,11 @@ export const pullApp = async (stage: Stage, appId: string) => {
|
|
|
51
51
|
const app = data.application
|
|
52
52
|
if (!app) throw new Error('App not found')
|
|
53
53
|
if (app.lock.enabled) throw new Error('App is locked')
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
54
|
+
// TODO: Uncomment it on leaving experimental
|
|
55
|
+
// if (!app.dev_ref.is_dev)
|
|
56
|
+
// throw new Error(
|
|
57
|
+
// 'Currently BRICKS Project is experimental, please use the fork version of the app',
|
|
58
|
+
// )
|
|
58
59
|
return app
|
|
59
60
|
}
|
|
60
61
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fugood/bricks-project",
|
|
3
|
-
"version": "2.21.0-beta.18",
|
|
3
|
+
"version": "2.21.0-beta.18-1",
|
|
4
4
|
"main": "index.ts",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node scripts/build.js"
|
|
@@ -12,6 +12,5 @@
|
|
|
12
12
|
"escodegen": "^2.1.0",
|
|
13
13
|
"lodash": "^4.17.4",
|
|
14
14
|
"uuid": "^8.3.1"
|
|
15
|
-
}
|
|
16
|
-
"gitHead": "5affdfe765bab2d2844658feb9d505d6a8911bab"
|
|
15
|
+
}
|
|
17
16
|
}
|
package/types/bricks.ts
CHANGED
|
@@ -2093,7 +2093,46 @@ Default property:
|
|
|
2093
2093
|
standbyOpacity?: number | DataLink
|
|
2094
2094
|
standbyDelay?: number | DataLink
|
|
2095
2095
|
standbyDelayRandom?: number | DataLink
|
|
2096
|
-
standbyEasing?:
|
|
2096
|
+
standbyEasing?:
|
|
2097
|
+
| DataLink
|
|
2098
|
+
| {
|
|
2099
|
+
default?:
|
|
2100
|
+
| DataLink
|
|
2101
|
+
| {
|
|
2102
|
+
method?: string | DataLink
|
|
2103
|
+
duration?: number | DataLink
|
|
2104
|
+
}
|
|
2105
|
+
x?:
|
|
2106
|
+
| DataLink
|
|
2107
|
+
| {
|
|
2108
|
+
method?: string | DataLink
|
|
2109
|
+
duration?: number | DataLink
|
|
2110
|
+
}
|
|
2111
|
+
y?:
|
|
2112
|
+
| DataLink
|
|
2113
|
+
| {
|
|
2114
|
+
method?: string | DataLink
|
|
2115
|
+
duration?: number | DataLink
|
|
2116
|
+
}
|
|
2117
|
+
width?:
|
|
2118
|
+
| DataLink
|
|
2119
|
+
| {
|
|
2120
|
+
method?: string | DataLink
|
|
2121
|
+
duration?: number | DataLink
|
|
2122
|
+
}
|
|
2123
|
+
height?:
|
|
2124
|
+
| DataLink
|
|
2125
|
+
| {
|
|
2126
|
+
method?: string | DataLink
|
|
2127
|
+
duration?: number | DataLink
|
|
2128
|
+
}
|
|
2129
|
+
opacity?:
|
|
2130
|
+
| DataLink
|
|
2131
|
+
| {
|
|
2132
|
+
method?: string | DataLink
|
|
2133
|
+
duration?: number | DataLink
|
|
2134
|
+
}
|
|
2135
|
+
}
|
|
2097
2136
|
showingDelay?: number | DataLink
|
|
2098
2137
|
renderOutOfViewport?: boolean | DataLink
|
|
2099
2138
|
}
|
|
@@ -2131,7 +2170,46 @@ Default property:
|
|
|
2131
2170
|
standbyOpacity?: number | DataLink
|
|
2132
2171
|
standbyDelay?: number | DataLink
|
|
2133
2172
|
standbyDelayRandom?: number | DataLink
|
|
2134
|
-
standbyEasing?:
|
|
2173
|
+
standbyEasing?:
|
|
2174
|
+
| DataLink
|
|
2175
|
+
| {
|
|
2176
|
+
default?:
|
|
2177
|
+
| DataLink
|
|
2178
|
+
| {
|
|
2179
|
+
method?: string | DataLink
|
|
2180
|
+
duration?: number | DataLink
|
|
2181
|
+
}
|
|
2182
|
+
x?:
|
|
2183
|
+
| DataLink
|
|
2184
|
+
| {
|
|
2185
|
+
method?: string | DataLink
|
|
2186
|
+
duration?: number | DataLink
|
|
2187
|
+
}
|
|
2188
|
+
y?:
|
|
2189
|
+
| DataLink
|
|
2190
|
+
| {
|
|
2191
|
+
method?: string | DataLink
|
|
2192
|
+
duration?: number | DataLink
|
|
2193
|
+
}
|
|
2194
|
+
width?:
|
|
2195
|
+
| DataLink
|
|
2196
|
+
| {
|
|
2197
|
+
method?: string | DataLink
|
|
2198
|
+
duration?: number | DataLink
|
|
2199
|
+
}
|
|
2200
|
+
height?:
|
|
2201
|
+
| DataLink
|
|
2202
|
+
| {
|
|
2203
|
+
method?: string | DataLink
|
|
2204
|
+
duration?: number | DataLink
|
|
2205
|
+
}
|
|
2206
|
+
opacity?:
|
|
2207
|
+
| DataLink
|
|
2208
|
+
| {
|
|
2209
|
+
method?: string | DataLink
|
|
2210
|
+
duration?: number | DataLink
|
|
2211
|
+
}
|
|
2212
|
+
}
|
|
2135
2213
|
showingDelay?: number | DataLink
|
|
2136
2214
|
renderOutOfViewport?: boolean | DataLink
|
|
2137
2215
|
}
|