@routevn/creator-model 1.1.12 → 1.2.2
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/README.md +17 -0
- package/package.json +1 -1
- package/src/index.js +1 -6
- package/src/model.js +1397 -116
- package/src/runtimeFields.js +22 -0
- package/src/systemVariables.js +0 -69
package/README.md
CHANGED
|
@@ -210,6 +210,11 @@ See also:
|
|
|
210
210
|
|
|
211
211
|
- [docs/schema-compatibility.md](./docs/schema-compatibility.md)
|
|
212
212
|
|
|
213
|
+
Current animation update tween properties support either:
|
|
214
|
+
|
|
215
|
+
- `keyframes`
|
|
216
|
+
- `auto: { duration, easing }`
|
|
217
|
+
|
|
213
218
|
## Current Scope
|
|
214
219
|
|
|
215
220
|
Currently implemented command types:
|
|
@@ -232,6 +237,10 @@ Currently implemented command types:
|
|
|
232
237
|
- `image.update`
|
|
233
238
|
- `image.delete`
|
|
234
239
|
- `image.move`
|
|
240
|
+
- `spritesheet.create`
|
|
241
|
+
- `spritesheet.update`
|
|
242
|
+
- `spritesheet.delete`
|
|
243
|
+
- `spritesheet.move`
|
|
235
244
|
- `sound.create`
|
|
236
245
|
- `sound.update`
|
|
237
246
|
- `sound.delete`
|
|
@@ -280,6 +289,14 @@ Currently implemented command types:
|
|
|
280
289
|
- `layout.element.update`
|
|
281
290
|
- `layout.element.delete`
|
|
282
291
|
- `layout.element.move`
|
|
292
|
+
- `control.create`
|
|
293
|
+
- `control.update`
|
|
294
|
+
- `control.delete`
|
|
295
|
+
- `control.move`
|
|
296
|
+
- `control.element.create`
|
|
297
|
+
- `control.element.update`
|
|
298
|
+
- `control.element.delete`
|
|
299
|
+
- `control.element.move`
|
|
283
300
|
|
|
284
301
|
The rest of the future command surface should be added only when full
|
|
285
302
|
validation, preconditions, reducer behavior, and tests are added together.
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -5,9 +5,4 @@ export {
|
|
|
5
5
|
validatePayload,
|
|
6
6
|
validateState,
|
|
7
7
|
} from "./model.js";
|
|
8
|
-
export {
|
|
9
|
-
SYSTEM_VARIABLE_GROUPS,
|
|
10
|
-
SYSTEM_VARIABLE_IDS,
|
|
11
|
-
getSystemVariableDefinitions,
|
|
12
|
-
isSystemVariableId,
|
|
13
|
-
} from "./systemVariables.js";
|
|
8
|
+
export { RUNTIME_FIELD_IDS, isRuntimeFieldId } from "./runtimeFields.js";
|