vimp-engine 0.2.0 → 0.3.0
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/package.json +1 -1
- package/src/config/opcodes.js +3 -1
package/package.json
CHANGED
package/src/config/opcodes.js
CHANGED
|
@@ -7,7 +7,9 @@
|
|
|
7
7
|
// проверяется при загрузке плагинов; ломающие изменения контрактов → +1.
|
|
8
8
|
// v2: явная схема форм (roomForm/authSchema.params[].options — Form schema
|
|
9
9
|
// в plugin-api.md), движок больше не выводит контролы из типа значения
|
|
10
|
-
|
|
10
|
+
// v3: набор control сокращён до нативных элементов — 'select'|'text'|
|
|
11
|
+
// 'checkbox'|'radio' (были ещё 'range'/'number'/'toggle'/'segmented')
|
|
12
|
+
export const ENGINE_API_VERSION = 3;
|
|
11
13
|
|
|
12
14
|
// версия формата кадра: первый байт после порта;
|
|
13
15
|
// увеличивать при любом изменении байтовой раскладки в ядре
|