@fugood/bricks-project 2.21.0-beta.14.test10 → 2.21.0-beta.14.test11
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/compile/index.ts +1 -0
- package/package.json +1 -1
- package/types/bricks.ts +16 -0
package/compile/index.ts
CHANGED
|
@@ -293,6 +293,7 @@ export const compile = (app: Application) => {
|
|
|
293
293
|
brickId: itemBrick.brickId,
|
|
294
294
|
brickIdPrefix: itemBrick.brickIdPrefix,
|
|
295
295
|
templateKey: itemBrick.templateKey,
|
|
296
|
+
frame: itemBrick.frame,
|
|
296
297
|
property: compileProperty(itemBrick.property),
|
|
297
298
|
propertyMapping: itemBrick.propertyMapping,
|
|
298
299
|
animation: compileAnimations(itemBrick.templateKey, itemBrick.animation || {}),
|
package/package.json
CHANGED
package/types/bricks.ts
CHANGED
|
@@ -2068,6 +2068,14 @@ Default property:
|
|
|
2068
2068
|
y?: number | DataLink
|
|
2069
2069
|
width?: number | DataLink
|
|
2070
2070
|
height?: number | DataLink
|
|
2071
|
+
standbyMode?: 'custom' | 'top' | 'bottom' | 'left' | 'right' | DataLink
|
|
2072
|
+
standbyFrame?: DataLink | {}
|
|
2073
|
+
standbyOpacity?: number | DataLink
|
|
2074
|
+
standbyDelay?: number | DataLink
|
|
2075
|
+
standbyDelayRandom?: number | DataLink
|
|
2076
|
+
standbyEasing?: string | DataLink
|
|
2077
|
+
showingDelay?: number | DataLink
|
|
2078
|
+
renderOutOfViewport?: boolean | DataLink
|
|
2071
2079
|
}
|
|
2072
2080
|
show?: string | DataLink
|
|
2073
2081
|
pressToOpenDetail?: boolean | DataLink
|
|
@@ -2097,6 +2105,14 @@ Default property:
|
|
|
2097
2105
|
y?: number | DataLink
|
|
2098
2106
|
width?: number | DataLink
|
|
2099
2107
|
height?: number | DataLink
|
|
2108
|
+
standbyMode?: 'custom' | 'top' | 'bottom' | 'left' | 'right' | DataLink
|
|
2109
|
+
standbyFrame?: DataLink | {}
|
|
2110
|
+
standbyOpacity?: number | DataLink
|
|
2111
|
+
standbyDelay?: number | DataLink
|
|
2112
|
+
standbyDelayRandom?: number | DataLink
|
|
2113
|
+
standbyEasing?: string | DataLink
|
|
2114
|
+
showingDelay?: number | DataLink
|
|
2115
|
+
renderOutOfViewport?: boolean | DataLink
|
|
2100
2116
|
}
|
|
2101
2117
|
show?: string | DataLink
|
|
2102
2118
|
pressToBackList?: boolean | DataLink
|