@vyr/builtin 0.0.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.
Files changed (133) hide show
  1. package/build/common/example.d.ts +5 -0
  2. package/build/common/index.d.ts +3 -0
  3. package/build/common/provider.d.ts +5 -0
  4. package/build/common/save.d.ts +4 -0
  5. package/build/component/AttrItem.vue.d.ts +11 -0
  6. package/build/component/CodeEditor.vue.d.ts +11 -0
  7. package/build/component/ColorItem.vue.d.ts +27 -0
  8. package/build/component/Directory.vue.d.ts +33 -0
  9. package/build/component/ErrorComponent.vue.d.ts +13 -0
  10. package/build/component/EventItem.vue.d.ts +19 -0
  11. package/build/component/Graph.vue.d.ts +18 -0
  12. package/build/component/InputItem.vue.d.ts +15 -0
  13. package/build/component/InteractionItem.vue.d.ts +19 -0
  14. package/build/component/LoadingComponent.vue.d.ts +13 -0
  15. package/build/component/RuleItem.vue.d.ts +12 -0
  16. package/build/component/Timeline.vue.d.ts +7 -0
  17. package/build/component/VariableItem.vue.d.ts +14 -0
  18. package/build/component/WindowSetting.vue.d.ts +3 -0
  19. package/build/component/index.d.ts +13 -0
  20. package/build/fragment/AnimationUnitFragment.vue.d.ts +6 -0
  21. package/build/fragment/BaseFragment.vue.d.ts +6 -0
  22. package/build/fragment/DatasetFragment.vue.d.ts +3 -0
  23. package/build/fragment/DatasetInspectorFragment.vue.d.ts +13 -0
  24. package/build/fragment/DynamicFragment.vue.d.ts +3 -0
  25. package/build/fragment/EventsInspectorFragment.vue.d.ts +21 -0
  26. package/build/fragment/HTMLFragment.vue.d.ts +16 -0
  27. package/build/fragment/InteractionInspectorFragment.vue.d.ts +21 -0
  28. package/build/fragment/PrefabFragment.vue.d.ts +3 -0
  29. package/build/fragment/PrefabInstanceFragment.vue.d.ts +3 -0
  30. package/build/fragment/SchedulerFragment.vue.d.ts +3 -0
  31. package/build/fragment/StyleFragment.vue.d.ts +8 -0
  32. package/build/index.d.ts +10 -0
  33. package/build/locale/Language.d.ts +3 -0
  34. package/build/locale/LanguageProvider.d.ts +323 -0
  35. package/build/locale/index.d.ts +2 -0
  36. package/build/option/Animation.d.ts +25 -0
  37. package/build/option/Color.d.ts +5 -0
  38. package/build/option/Dataset.d.ts +6 -0
  39. package/build/option/Dynamic.d.ts +5 -0
  40. package/build/option/HTML.d.ts +41 -0
  41. package/build/option/Net.d.ts +6 -0
  42. package/build/option/Preset.d.ts +8 -0
  43. package/build/option/Style.d.ts +76 -0
  44. package/build/option/Variable.d.ts +5 -0
  45. package/build/option/index.d.ts +17 -0
  46. package/build/preset/graphics.d.ts +8 -0
  47. package/build/preset/index.d.ts +3 -0
  48. package/build/preset/scheduler.d.ts +8 -0
  49. package/build/service/footer/action/AddDirAction.d.ts +10 -0
  50. package/build/service/footer/action/AddMoreAction.d.ts +26 -0
  51. package/build/service/footer/action/AddScriptAction.d.ts +25 -0
  52. package/build/service/footer/action/BackupAction.d.ts +10 -0
  53. package/build/service/footer/action/ControllerAction.d.ts +39 -0
  54. package/build/service/footer/action/CopyAction.d.ts +13 -0
  55. package/build/service/footer/action/CutAction.d.ts +13 -0
  56. package/build/service/footer/action/DeleteAction.d.ts +14 -0
  57. package/build/service/footer/action/EditFileAction.d.ts +15 -0
  58. package/build/service/footer/action/RenameAction.d.ts +13 -0
  59. package/build/service/footer/action/SelectAllAction.d.ts +14 -0
  60. package/build/service/footer/action/StickupAction.d.ts +16 -0
  61. package/build/service/footer/action/index.d.ts +11 -0
  62. package/build/service/footer/action/raw/typescriptScript.d.ts +5 -0
  63. package/build/service/footer/draggable/Draggable.d.ts +10 -0
  64. package/build/service/footer/draggable/index.d.ts +1 -0
  65. package/build/service/footer/index.d.ts +2 -0
  66. package/build/service/global/action/FooterAction.d.ts +18 -0
  67. package/build/service/global/action/RedoAction.d.ts +9 -0
  68. package/build/service/global/action/SidebarAction.d.ts +14 -0
  69. package/build/service/global/action/UndoAction.d.ts +9 -0
  70. package/build/service/global/action/index.d.ts +4 -0
  71. package/build/service/global/draggable/GraphDraggable.d.ts +14 -0
  72. package/build/service/global/draggable/index.d.ts +1 -0
  73. package/build/service/global/index.d.ts +2 -0
  74. package/build/service/global/scripts/index.d.ts +5 -0
  75. package/build/service/header/action/ExportProjectAction.d.ts +9 -0
  76. package/build/service/header/action/ExportSceneAction.d.ts +9 -0
  77. package/build/service/header/action/PreviewSceneAction.d.ts +14 -0
  78. package/build/service/header/action/index.d.ts +3 -0
  79. package/build/service/header/index.d.ts +1 -0
  80. package/build/service/index.d.ts +6 -0
  81. package/build/service/inspector/AnimationUnitViewer.vue.d.ts +7 -0
  82. package/build/service/inspector/DatasetInspector.vue.d.ts +7 -0
  83. package/build/service/inspector/DatasetViewer.vue.d.ts +7 -0
  84. package/build/service/inspector/DivViewer.vue.d.ts +7 -0
  85. package/build/service/inspector/DynamicViewer.vue.d.ts +7 -0
  86. package/build/service/inspector/EventsInspector.vue.d.ts +7 -0
  87. package/build/service/inspector/InteractionInspector.vue.d.ts +7 -0
  88. package/build/service/inspector/PrefabInstanceViewer.vue.d.ts +7 -0
  89. package/build/service/inspector/PrefabViewer.vue.d.ts +7 -0
  90. package/build/service/inspector/ServiceSchedulerViewer.vue.d.ts +7 -0
  91. package/build/service/inspector/ServiceViewer.vue.d.ts +7 -0
  92. package/build/service/inspector/StyleViewer.vue.d.ts +7 -0
  93. package/build/service/inspector/asset/AssetInspector.vue.d.ts +3 -0
  94. package/build/service/inspector/draggable/Draggable.d.ts +10 -0
  95. package/build/service/inspector/draggable/index.d.ts +1 -0
  96. package/build/service/inspector/index.d.ts +1 -0
  97. package/build/service/inspector/scene/SceneInspector.vue.d.ts +3 -0
  98. package/build/service/sidebar/asset/Asset.vue.d.ts +3 -0
  99. package/build/service/sidebar/asset/AssetItem.vue.d.ts +18 -0
  100. package/build/service/sidebar/asset/AssetNavigator.d.ts +28 -0
  101. package/build/service/sidebar/asset/action/AddNodeAction.d.ts +54 -0
  102. package/build/service/sidebar/asset/action/ControllerAction.d.ts +36 -0
  103. package/build/service/sidebar/asset/action/CopyAction.d.ts +14 -0
  104. package/build/service/sidebar/asset/action/CutAction.d.ts +14 -0
  105. package/build/service/sidebar/asset/action/DeleteAction.d.ts +15 -0
  106. package/build/service/sidebar/asset/action/RenameAction.d.ts +14 -0
  107. package/build/service/sidebar/asset/action/SaveAction.d.ts +14 -0
  108. package/build/service/sidebar/asset/action/StickupAction.d.ts +15 -0
  109. package/build/service/sidebar/asset/action/index.d.ts +8 -0
  110. package/build/service/sidebar/asset/draggable/Draggable.d.ts +14 -0
  111. package/build/service/sidebar/asset/draggable/index.d.ts +1 -0
  112. package/build/service/sidebar/asset/index.d.ts +3 -0
  113. package/build/service/sidebar/index.d.ts +2 -0
  114. package/build/service/sidebar/scene/Scene.vue.d.ts +3 -0
  115. package/build/service/sidebar/scene/SceneItem.vue.d.ts +18 -0
  116. package/build/service/sidebar/scene/SceneNavigator.d.ts +36 -0
  117. package/build/service/sidebar/scene/action/AddNodeAction.d.ts +54 -0
  118. package/build/service/sidebar/scene/action/AddServiceAction.d.ts +54 -0
  119. package/build/service/sidebar/scene/action/ControllerAction.d.ts +39 -0
  120. package/build/service/sidebar/scene/action/CopyAction.d.ts +14 -0
  121. package/build/service/sidebar/scene/action/CutAction.d.ts +14 -0
  122. package/build/service/sidebar/scene/action/DeleteAction.d.ts +15 -0
  123. package/build/service/sidebar/scene/action/RenameAction.d.ts +14 -0
  124. package/build/service/sidebar/scene/action/SaveAction.d.ts +14 -0
  125. package/build/service/sidebar/scene/action/StickupAction.d.ts +15 -0
  126. package/build/service/sidebar/scene/action/index.d.ts +9 -0
  127. package/build/service/sidebar/scene/draggable/Draggable.d.ts +14 -0
  128. package/build/service/sidebar/scene/draggable/index.d.ts +1 -0
  129. package/build/service/sidebar/scene/index.d.ts +3 -0
  130. package/build/singleton/index.d.ts +1 -0
  131. package/build/singleton/rightMenu.d.ts +10 -0
  132. package/package.json +25 -0
  133. package/src/shims-vue.d.ts +10 -0
@@ -0,0 +1,323 @@
1
+ import { LanguageProvider } from '@vyr/locale';
2
+ interface ZhCNLanguageProvider extends LanguageProvider {
3
+ 'fetch.type': string;
4
+ 'descriptor.type.TS': string;
5
+ 'descriptor.type.Style': string;
6
+ 'descriptor.type.Dataset': string;
7
+ 'descriptor.type.Routine': string;
8
+ 'descriptor.type.Prefabe': string;
9
+ 'descriptor.type.Prefabe.scene': string;
10
+ 'descriptor.type.Prefabe.html': string;
11
+ 'descriptor.type.Dynamic': string;
12
+ 'descriptor.type.Div': string;
13
+ 'descriptor.type.AnimationUnit': string;
14
+ 'descriptor.type.HTMLService': string;
15
+ 'descriptor.type.PrefabeInstance': string;
16
+ 'descriptor.type.ServiceScheduler': string;
17
+ 'component.colorItem.type': string;
18
+ 'component.colorItem.color': string;
19
+ 'component.colorItem.index': string;
20
+ 'component.colorItem.gradient': string;
21
+ 'component.colorItem.center': string;
22
+ 'dialog.action.example.add': string;
23
+ 'dialog.action.example.name': string;
24
+ 'dialog.action.example.image': string;
25
+ 'dialog.action.example.description': string;
26
+ 'component.interactionItem.url.placeholder': string;
27
+ 'component.variableItem.value.placeholder': string;
28
+ 'component.graph.label.placeholder': string;
29
+ 'component.graph.url.placeholder': string;
30
+ 'component.graph.input': string;
31
+ 'component.graph.add': string;
32
+ 'component.errorComponent.tips': string;
33
+ 'component.loadingComponent.tips': string;
34
+ 'option.fetch.type.GET': string;
35
+ 'option.fetch.type.POST': string;
36
+ 'option.fetch.type.PUT': string;
37
+ 'option.fetch.type.DELETE': string;
38
+ 'option.variable.type.key': string;
39
+ 'option.variable.type.custom': string;
40
+ 'option.color.type.default': string;
41
+ 'option.color.type.linear': string;
42
+ 'option.color.type.radial': string;
43
+ 'option.Style.cursor.default': string;
44
+ 'option.Style.cursor.pointer': string;
45
+ 'option.Style.cursor.move': string;
46
+ 'option.Style.cursor.progress': string;
47
+ 'option.Style.cursor.wait': string;
48
+ 'option.Style.cursor.help': string;
49
+ 'option.Style.cursor.not-allowed': string;
50
+ 'option.Style.box-sizing.border-box': string;
51
+ 'option.Style.box-sizing.content-box': string;
52
+ 'option.Style.overflow.visible': string;
53
+ 'option.Style.overflow.hidden': string;
54
+ 'option.Style.overflow.scroll': string;
55
+ 'option.Style.overflow.auto': string;
56
+ 'option.Style.vertical-align.top': string;
57
+ 'option.Style.vertical-align.middle': string;
58
+ 'option.Style.vertical-align.bottom': string;
59
+ 'option.Style.vertical-align.baseline': string;
60
+ 'option.Style.vertical-align.text-top': string;
61
+ 'option.Style.vertical-align.text-bottom': string;
62
+ 'option.Style.vertical-align.sub': string;
63
+ 'option.Style.vertical-align.super': string;
64
+ 'option.Style.background-repeat.repeat': string;
65
+ 'option.Style.background-repeat.no-repeat': string;
66
+ 'option.Style.background-repeat.repeat-x': string;
67
+ 'option.Style.background-repeat.repeat-y': string;
68
+ 'option.Style.background-repeat.round': string;
69
+ 'option.Style.background-repeat.space': string;
70
+ 'option.Style.backgroundBlendMode.normal': string;
71
+ 'option.Style.backgroundBlendMode.multiply': string;
72
+ 'option.Style.backgroundBlendMode.darken': string;
73
+ 'option.Style.backgroundBlendMode.screen': string;
74
+ 'option.Style.backgroundBlendMode.lighten': string;
75
+ 'option.Style.backgroundBlendMode.overlay': string;
76
+ 'option.Style.backgroundBlendMode.hard-light': string;
77
+ 'option.Style.backgroundBlendMode.soft-light': string;
78
+ 'option.Style.backgroundBlendMode.difference': string;
79
+ 'option.Style.backgroundBlendMode.exclusion': string;
80
+ 'option.Style.backgroundBlendMode.hue': string;
81
+ 'option.Style.backgroundBlendMode.saturation': string;
82
+ 'option.Style.backgroundBlendMode.color': string;
83
+ 'option.Style.backgroundBlendMode.luminosity': string;
84
+ 'option.Style.backgroundBlendMode.color-dodge': string;
85
+ 'option.Style.backgroundBlendMode.color-burn': string;
86
+ 'option.Style.background-clip.border-box': string;
87
+ 'option.Style.background-clip.padding-box': string;
88
+ 'option.Style.background-clip.content-box': string;
89
+ 'option.Style.background-clip.text': string;
90
+ 'option.Style.inset.true': string;
91
+ 'option.Style.inset.false': string;
92
+ 'option.Style.border-style.solid': string;
93
+ 'option.Style.border-style.dashed': string;
94
+ 'option.Style.border-style.dotted': string;
95
+ 'option.Style.border-style.double': string;
96
+ 'option.Style.border-style.groove': string;
97
+ 'option.Style.border-style.ridge': string;
98
+ 'option.Style.border-style.inset': string;
99
+ 'option.Style.border-style.outset': string;
100
+ 'option.Style.border-style.none': string;
101
+ 'option.Style.border-style.hidden': string;
102
+ 'option.Style.font-weight.normal': string;
103
+ 'option.Style.font-weight.bold': string;
104
+ 'option.Style.font-weight.bolder': string;
105
+ 'option.Style.font-weight.lighter': string;
106
+ 'option.Style.font-weight.100': string;
107
+ 'option.Style.font-weight.200': string;
108
+ 'option.Style.font-weight.300': string;
109
+ 'option.Style.font-weight.400': string;
110
+ 'option.Style.font-weight.500': string;
111
+ 'option.Style.font-weight.600': string;
112
+ 'option.Style.font-weight.700': string;
113
+ 'option.Style.font-weight.800': string;
114
+ 'option.Style.font-weight.900': string;
115
+ 'option.Style.font-style.normal': string;
116
+ 'option.Style.font-style.italic': string;
117
+ 'option.Style.font-style.oblique': string;
118
+ 'option.Style.text-align.left': string;
119
+ 'option.Style.text-align.center': string;
120
+ 'option.Style.text-align.right': string;
121
+ 'option.Style.text-align.justify': string;
122
+ 'option.Style.white-space.normal': string;
123
+ 'option.Style.white-space.nowrap': string;
124
+ 'option.Style.white-space.pre': string;
125
+ 'option.Style.white-space.pre-wrap': string;
126
+ 'option.Style.white-space.pre-line': string;
127
+ 'option.Style.white-space.break-spaces': string;
128
+ 'option.Style.text-decoration.none': string;
129
+ 'option.Style.text-decoration.underline': string;
130
+ 'option.Style.text-decoration.line-through': string;
131
+ 'option.Style.text-decoration.overline': string;
132
+ 'option.Style.text-decoration.blink': string;
133
+ 'option.Style.text-decoration.inherit': string;
134
+ 'option.animation.unit.boolean': string;
135
+ 'option.animation.unit.number': string;
136
+ 'option.animation.unit.color': string;
137
+ 'option.animation.unit.euler': string;
138
+ 'option.animation.unit.vector2': string;
139
+ 'option.animation.unit.vector3': string;
140
+ 'option.animation.mode.repeat': string;
141
+ 'option.animation.mode.recirculation': string;
142
+ 'option.animation.play.true': string;
143
+ 'option.animation.play.false': string;
144
+ 'option.animation.state.true': string;
145
+ 'option.animation.state.false': string;
146
+ 'option.animation.zeroSlopeAtStart.true': string;
147
+ 'option.animation.zeroSlopeAtStart.false': string;
148
+ 'option.animation.zeroSlopeAtEnd.true': string;
149
+ 'option.animation.zeroSlopeAtEnd.false': string;
150
+ 'option.Dynamic.dataConfig.self': string;
151
+ 'option.Dynamic.dataConfig.dataPath': string;
152
+ 'option.HTML.display.block': string;
153
+ 'option.HTML.display.inline': string;
154
+ 'option.HTML.display.inline-block': string;
155
+ 'option.HTML.display.flex': string;
156
+ 'option.HTML.display.inline-flex': string;
157
+ 'option.HTML.flexDirection.row': string;
158
+ 'option.HTML.flexDirection.row-reverse': string;
159
+ 'option.HTML.flexDirection.column': string;
160
+ 'option.HTML.flexDirection.column-reverse': string;
161
+ 'option.HTML.flexWrap.nowrap': string;
162
+ 'option.HTML.flexWrap.wrap': string;
163
+ 'option.HTML.flexWrap.wrap-reverse': string;
164
+ 'option.HTML.justifyContent.flex-start': string;
165
+ 'option.HTML.justifyContent.flex-end': string;
166
+ 'option.HTML.justifyContent.center': string;
167
+ 'option.HTML.justifyContent.space-between': string;
168
+ 'option.HTML.justifyContent.space-around': string;
169
+ 'option.HTML.justifyContent.space-evenly': string;
170
+ 'option.HTML.alignItems.flex-start': string;
171
+ 'option.HTML.alignItems.flex-end': string;
172
+ 'option.HTML.alignItems.center': string;
173
+ 'option.HTML.alignItems.stretch': string;
174
+ 'option.HTML.alignItems.baseline': string;
175
+ 'option.HTML.alignContent.flex-start': string;
176
+ 'option.HTML.alignContent.flex-end': string;
177
+ 'option.HTML.alignContent.center': string;
178
+ 'option.HTML.alignContent.stretch': string;
179
+ 'option.HTML.alignContent.space-between': string;
180
+ 'option.HTML.alignContent.space-around': string;
181
+ 'option.HTML.position.static': string;
182
+ 'option.HTML.position.relative': string;
183
+ 'option.HTML.position.absolute': string;
184
+ 'option.HTML.position.fixed': string;
185
+ 'option.HTML.xAxis.left': string;
186
+ 'option.HTML.xAxis.right': string;
187
+ 'option.HTML.yAxis.top': string;
188
+ 'option.HTML.yAxis.bottom': string;
189
+ 'option.HTML.size.px': string;
190
+ 'option.HTML.size.%': string;
191
+ 'option.state.true': string;
192
+ 'option.state.false': string;
193
+ 'option.boolean.true': string;
194
+ 'option.boolean.false': string;
195
+ 'preset.dialog.title': string;
196
+ 'preset.scheduler.switch': string;
197
+ 'preset.scheduler.switch.select': string;
198
+ 'preset.scheduler.invoke': string;
199
+ 'preset.scheduler.invoke.target': string;
200
+ 'preset.scheduler.invoke.interaction': string;
201
+ 'global.action.redo.label': string;
202
+ 'global.action.undo.label': string;
203
+ 'header.action.exportProject.label': string;
204
+ 'header.action.exportScene.label': string;
205
+ 'header.action.previewScene.label': string;
206
+ 'header.action.realTimePreview.label': string;
207
+ 'body.windowSetting.width': string;
208
+ 'body.windowSetting.height': string;
209
+ 'body.windowSetting.scale': string;
210
+ 'body.windowSetting.background': string;
211
+ 'sidebar.scene.label': string;
212
+ 'sidebar.scene.createScene': string;
213
+ 'sidebar.asset.label': string;
214
+ 'sidebar.action.region.notExecute': string;
215
+ 'sidebar.action.save.example': string;
216
+ 'sidebar.action.scene.addNode.label': string;
217
+ 'sidebar.action.scene.addService.label': string;
218
+ 'sidebar.action.scene.copy.label': string;
219
+ 'sidebar.action.scene.cut.label': string;
220
+ 'sidebar.action.scene.delete.label': string;
221
+ 'sidebar.action.scene.rename.label': string;
222
+ 'sidebar.action.scene.save.label': string;
223
+ 'sidebar.action.scene.stickup.label': string;
224
+ 'sidebar.action.asset.addNode.label': string;
225
+ 'sidebar.action.asset.copy.label': string;
226
+ 'sidebar.action.asset.cut.label': string;
227
+ 'sidebar.action.asset.delete.label': string;
228
+ 'sidebar.action.asset.rename.label': string;
229
+ 'sidebar.action.asset.save.label': string;
230
+ 'sidebar.action.asset.stickup.label': string;
231
+ 'footer.action.region.notFound': string;
232
+ 'footer.action.addDir.label': string;
233
+ 'footer.action.copy.label': string;
234
+ 'footer.action.cut.label': string;
235
+ 'footer.action.delete.label': string;
236
+ 'footer.action.editFile.label': string;
237
+ 'footer.action.rename.label': string;
238
+ 'footer.action.selectAll.label': string;
239
+ 'footer.action.stickup.label': string;
240
+ 'footer.action.addScript.label': string;
241
+ 'footer.action.addMore.label': string;
242
+ 'footer.action.backup.label': string;
243
+ 'action.trigger.notFound': string;
244
+ 'action.update.notFound': string;
245
+ 'inspector.base.id': string;
246
+ 'inspector.base.name': string;
247
+ 'inspector.no-data': string;
248
+ 'inspector.Dataset.url': string;
249
+ 'inspector.Dataset.auto': string;
250
+ 'inspector.Dataset.styleColor.title': string;
251
+ 'inspector.Dataset.attr.name.placeholder': string;
252
+ 'inspector.Dataset.attr.value.placeholder': string;
253
+ 'inspector.Dataset.title': string;
254
+ 'inspector.Dataset.placeholder': string;
255
+ 'inspector.Dataset.divider': string;
256
+ 'inspector.Interaction.title': string;
257
+ 'inspector.Interaction.confirm.title': string;
258
+ 'inspector.Style.inherit': string;
259
+ 'inspector.Style.cursor': string;
260
+ 'inspector.Style.padding': string;
261
+ 'inspector.Style.box-sizing': string;
262
+ 'inspector.Style.overflow-x': string;
263
+ 'inspector.Style.overflow-y': string;
264
+ 'inspector.Style.vertical-align': string;
265
+ 'inspector.Style.background': string;
266
+ 'inspector.Style.background-blend-mode': string;
267
+ 'inspector.Style.background-clip': string;
268
+ 'inspector.Style.transition': string;
269
+ 'inspector.Style.box-shadow': string;
270
+ 'inspector.Style.text-shadow': string;
271
+ 'inspector.Style.shadow.parameter': string;
272
+ 'inspector.Style.border-color': string;
273
+ 'inspector.Style.border-width': string;
274
+ 'inspector.Style.border-style': string;
275
+ 'inspector.Style.color': string;
276
+ 'inspector.Style.font-size': string;
277
+ 'inspector.Style.font-weight': string;
278
+ 'inspector.Style.font-style': string;
279
+ 'inspector.Style.text-align': string;
280
+ 'inspector.Style.white-space': string;
281
+ 'inspector.Style.text-decoration': string;
282
+ 'inspector.Style.letter-spacing': string;
283
+ 'inspector.Style.line-height': string;
284
+ 'inspector.Style.font-family': string;
285
+ 'inspector.AnimationUnit.play': string;
286
+ 'inspector.AnimationUnit.type': string;
287
+ 'inspector.AnimationUnit.path': string;
288
+ 'inspector.AnimationUnit.startValue': string;
289
+ 'inspector.AnimationUnit.endValue': string;
290
+ 'inspector.AnimationUnit.duration': string;
291
+ 'inspector.AnimationUnit.startTime': string;
292
+ 'inspector.AnimationUnit.count': string;
293
+ 'inspector.AnimationUnit.mode': string;
294
+ 'inspector.HTML.active': string;
295
+ 'inspector.HTML.style': string;
296
+ 'inspector.HTML.display': string;
297
+ 'inspector.HTML.flexWrap': string;
298
+ 'inspector.HTML.flexDirection': string;
299
+ 'inspector.HTML.justifyContent': string;
300
+ 'inspector.HTML.alignItems': string;
301
+ 'inspector.HTML.alignContent': string;
302
+ 'inspector.HTML.position': string;
303
+ 'inspector.HTML.xAxis': string;
304
+ 'inspector.HTML.yAxis': string;
305
+ 'inspector.HTML.translate': string;
306
+ 'inspector.HTML.width': string;
307
+ 'inspector.HTML.height': string;
308
+ 'inspector.HTML.flexGrow': string;
309
+ 'inspector.HTML.margin': string;
310
+ 'inspector.HTML.opacity': string;
311
+ 'inspector.HTML.zIndex': string;
312
+ 'inspector.Div.text': string;
313
+ 'inspector.Div.backroundIamge': string;
314
+ 'inspector.Dynamic.url': string;
315
+ 'inspector.Dynamic.dataConfig': string;
316
+ 'inspector.Dynamic.dataPath': string;
317
+ 'inspector.PrefabInstance.url': string;
318
+ 'inspector.Scheduler.camera': string;
319
+ 'sidebar.action.active.notFound': string;
320
+ 'rightMenu.notClose': string;
321
+ }
322
+ declare const zhCnLanguageProvider: ZhCNLanguageProvider;
323
+ export { ZhCNLanguageProvider, zhCnLanguageProvider, };
@@ -0,0 +1,2 @@
1
+ export * from './LanguageProvider';
2
+ export * from './Language';
@@ -0,0 +1,25 @@
1
+ declare const unitOptions: {
2
+ label: string;
3
+ value: string;
4
+ }[];
5
+ declare const modelOptions: {
6
+ label: string;
7
+ value: number;
8
+ }[];
9
+ declare const playOptions: {
10
+ label: string;
11
+ value: boolean;
12
+ }[];
13
+ declare const stateOptions: {
14
+ label: string;
15
+ value: boolean;
16
+ }[];
17
+ declare const zeroSlopeAtStartOptions: {
18
+ label: string;
19
+ value: boolean;
20
+ }[];
21
+ declare const zeroSlopeAtEndOptions: {
22
+ label: string;
23
+ value: boolean;
24
+ }[];
25
+ export { modelOptions, playOptions, stateOptions, unitOptions, zeroSlopeAtStartOptions, zeroSlopeAtEndOptions, };
@@ -0,0 +1,5 @@
1
+ declare const typeOptions: {
2
+ label: string;
3
+ value: string;
4
+ }[];
5
+ export { typeOptions };
@@ -0,0 +1,6 @@
1
+ import { DatasetAttrType } from '@vyr/engine';
2
+ declare const typeOptions: {
3
+ label: string;
4
+ value: DatasetAttrType;
5
+ }[];
6
+ export { typeOptions };
@@ -0,0 +1,5 @@
1
+ declare const dataConfig: {
2
+ label: string;
3
+ value: number;
4
+ }[];
5
+ export { dataConfig };
@@ -0,0 +1,41 @@
1
+ declare const displayOptions: {
2
+ label: string;
3
+ value: string;
4
+ }[];
5
+ declare const flexDirectionOptions: {
6
+ label: string;
7
+ value: string;
8
+ }[];
9
+ declare const flexWrapOptions: {
10
+ label: string;
11
+ value: string;
12
+ }[];
13
+ declare const justifyContentOptions: {
14
+ label: string;
15
+ value: string;
16
+ }[];
17
+ declare const alignItemsOptions: {
18
+ label: string;
19
+ value: string;
20
+ }[];
21
+ declare const alignContentOptions: {
22
+ label: string;
23
+ value: string;
24
+ }[];
25
+ declare const positionOptions: {
26
+ label: string;
27
+ value: string;
28
+ }[];
29
+ declare const xAxisOptions: {
30
+ label: string;
31
+ value: string;
32
+ }[];
33
+ declare const yAxisOptions: {
34
+ label: string;
35
+ value: string;
36
+ }[];
37
+ declare const sizeOptions: {
38
+ label: string;
39
+ value: string;
40
+ }[];
41
+ export { displayOptions, flexDirectionOptions, flexWrapOptions, justifyContentOptions, alignItemsOptions, alignContentOptions, positionOptions, xAxisOptions, yAxisOptions, sizeOptions, };
@@ -0,0 +1,6 @@
1
+ import { executePreset } from '@vyr/engine';
2
+ declare const requetsTypeOptions: {
3
+ label: string;
4
+ value: executePreset.net.request.RequestType;
5
+ }[];
6
+ export { requetsTypeOptions };
@@ -0,0 +1,8 @@
1
+ import { Descriptor } from '@vyr/engine';
2
+ import { Option } from '@vyr/design';
3
+ declare const getInteractionOptionsByTarget: (descriptor: Descriptor) => Option[];
4
+ declare const getSelectOptions: (ignore?: "interaction" | "dataset") => {
5
+ datasets: Option[];
6
+ interactionTargets: Option[];
7
+ };
8
+ export { getSelectOptions, getInteractionOptionsByTarget, };
@@ -0,0 +1,76 @@
1
+ declare const cursorOptions: {
2
+ label: string;
3
+ value: string;
4
+ }[];
5
+ declare const boxSizingOptions: {
6
+ label: string;
7
+ value: string;
8
+ }[];
9
+ declare const overflowOptions: {
10
+ label: string;
11
+ value: string;
12
+ }[];
13
+ declare const overflowXOptions: {
14
+ label: string;
15
+ value: string;
16
+ }[];
17
+ declare const overflowYOptions: {
18
+ label: string;
19
+ value: string;
20
+ }[];
21
+ declare const verticalAlignOptions: {
22
+ label: string;
23
+ value: string;
24
+ }[];
25
+ declare const backgroundRepeatOptions: {
26
+ label: string;
27
+ value: string;
28
+ }[];
29
+ declare const backgroundRepeatXOptions: {
30
+ label: string;
31
+ value: string;
32
+ }[];
33
+ declare const backgroundRepeatYOptions: {
34
+ label: string;
35
+ value: string;
36
+ }[];
37
+ declare const backgroundBlendModeOptions: {
38
+ label: string;
39
+ value: string;
40
+ }[];
41
+ declare const backgroundClipOptions: {
42
+ label: string;
43
+ value: string;
44
+ }[];
45
+ declare const insetOptions: {
46
+ label: string;
47
+ value: boolean;
48
+ }[];
49
+ declare const borderStyleOptions: {
50
+ label: string;
51
+ value: string;
52
+ }[];
53
+ declare const fontWeightOptions: ({
54
+ label: string;
55
+ value: string;
56
+ } | {
57
+ label: string;
58
+ value: number;
59
+ })[];
60
+ declare const fontStyleOptions: {
61
+ label: string;
62
+ value: string;
63
+ }[];
64
+ declare const textAlignOptions: {
65
+ label: string;
66
+ value: string;
67
+ }[];
68
+ declare const whiteSpaceOptions: {
69
+ label: string;
70
+ value: string;
71
+ }[];
72
+ declare const textDecorationOptions: {
73
+ label: string;
74
+ value: string;
75
+ }[];
76
+ export { cursorOptions, boxSizingOptions, overflowOptions, overflowXOptions, overflowYOptions, verticalAlignOptions, backgroundRepeatOptions, backgroundRepeatXOptions, backgroundRepeatYOptions, backgroundBlendModeOptions, backgroundClipOptions, insetOptions, borderStyleOptions, fontWeightOptions, fontStyleOptions, textAlignOptions, whiteSpaceOptions, textDecorationOptions, };
@@ -0,0 +1,5 @@
1
+ declare const typeOptions: {
2
+ label: string;
3
+ value: string;
4
+ }[];
5
+ export { typeOptions, };
@@ -0,0 +1,17 @@
1
+ declare const stateOptions: {
2
+ label: string;
3
+ value: boolean;
4
+ }[];
5
+ declare const booleanOptions: {
6
+ label: string;
7
+ value: boolean;
8
+ }[];
9
+ export { stateOptions, booleanOptions, };
10
+ export * as net from './Net';
11
+ export * as Color from './Color';
12
+ export * as Style from './Style';
13
+ export * as Variable from './Variable';
14
+ export * as Animation from './Animation';
15
+ export * as Dynamic from './Dynamic';
16
+ export * as HTML from './HTML';
17
+ export * as Preset from './Preset';
@@ -0,0 +1,8 @@
1
+ import { Descriptor } from '@vyr/engine';
2
+ declare const invokePreset: {
3
+ type: string;
4
+ label: string;
5
+ value: string;
6
+ executor: (descriptor: Descriptor) => Promise<void>;
7
+ };
8
+ export { invokePreset };
@@ -0,0 +1,3 @@
1
+ import { Preset } from "@vyr/runtime";
2
+ declare const preset: Preset[];
3
+ export { preset };
@@ -0,0 +1,8 @@
1
+ import { Descriptor } from '@vyr/engine';
2
+ declare const switchPreset: {
3
+ type: string;
4
+ label: string;
5
+ value: string;
6
+ executor: (descriptor: Descriptor) => Promise<void>;
7
+ };
8
+ export { switchPreset };
@@ -0,0 +1,10 @@
1
+ import { Action } from "@vyr/runtime";
2
+ declare class AddDirAction extends Action {
3
+ static id: string;
4
+ label: string;
5
+ order: number;
6
+ validator(e: KeyboardEvent): boolean;
7
+ update(): void;
8
+ execute(): void;
9
+ }
10
+ export { AddDirAction };
@@ -0,0 +1,26 @@
1
+ import { Action } from "@vyr/runtime";
2
+ import { Descriptor } from "@vyr/engine";
3
+ declare class AddMoreAction extends Action {
4
+ static id: string;
5
+ static generate: (label: string, suffix: string, Class: typeof Descriptor, category?: string) => {
6
+ label: string;
7
+ update(): void;
8
+ validator(): boolean;
9
+ execute(): void;
10
+ readonly id: string;
11
+ readonly value: number;
12
+ order: number;
13
+ trigger: number;
14
+ show: boolean;
15
+ disabled: boolean;
16
+ children: Action[];
17
+ active(): boolean;
18
+ };
19
+ label: string;
20
+ order: number;
21
+ constructor();
22
+ update(): void;
23
+ validator(): boolean;
24
+ execute(): void;
25
+ }
26
+ export { AddMoreAction };
@@ -0,0 +1,25 @@
1
+ import { Action } from '@vyr/runtime';
2
+ declare class AddScriptAction extends Action {
3
+ static id: string;
4
+ static generate: (label: string, category: string) => {
5
+ label: string;
6
+ update(): void;
7
+ validator(): boolean;
8
+ execute(): void;
9
+ readonly id: string;
10
+ readonly value: number;
11
+ order: number;
12
+ trigger: number;
13
+ show: boolean;
14
+ disabled: boolean;
15
+ children: Action[];
16
+ active(): boolean;
17
+ };
18
+ label: string;
19
+ order: number;
20
+ constructor();
21
+ update(): void;
22
+ validator(): boolean;
23
+ execute(): void;
24
+ }
25
+ export { AddScriptAction };
@@ -0,0 +1,10 @@
1
+ import { Action } from "@vyr/runtime";
2
+ declare class BackupAction extends Action {
3
+ static id: string;
4
+ label: string;
5
+ show: boolean;
6
+ validator(e: KeyboardEvent): boolean;
7
+ update(): void;
8
+ execute(): void;
9
+ }
10
+ export { BackupAction };
@@ -0,0 +1,39 @@
1
+ import { Action, DataService } from '@vyr/runtime';
2
+ import { VirtualNode } from '@vyr/service-rpc';
3
+ import { AssetService } from '@vyr/service-asset';
4
+ import { Controller } from '../../global/action/FooterAction';
5
+ declare class ControllerAction extends Action {
6
+ static id: string;
7
+ controller: Controller;
8
+ label: string;
9
+ code: string;
10
+ setController(controller: Controller): void;
11
+ validator(e: KeyboardEvent): boolean;
12
+ update(): void;
13
+ private getDirectory;
14
+ setRegion(region: "directory" | "manifest"): void;
15
+ private switch;
16
+ private expand;
17
+ private expandDirectory;
18
+ private expandManifest;
19
+ private enter;
20
+ private enterDirectory;
21
+ private rightMoveManifest;
22
+ private quit;
23
+ private quitDirectory;
24
+ private leftMoveManifest;
25
+ private moveup;
26
+ private moveupDirectory;
27
+ private moveupManifest;
28
+ private movedown;
29
+ private movedownDirectory;
30
+ private movedownManifest;
31
+ execute(): void;
32
+ createAsset: (newName: string, item: VirtualNode, assetService?: AssetService, dataService?: DataService) => void;
33
+ renameAsset: (newName: string, item: VirtualNode, assetService?: AssetService, dataService?: DataService) => void;
34
+ changeDirectoryItem: (items: VirtualNode[], dataService?: DataService) => void;
35
+ changeManifestItem: (item: VirtualNode, dataService?: DataService) => void;
36
+ checkedManifestItem: (item: VirtualNode, dataService?: DataService) => void;
37
+ selectionManifestItem: (item: VirtualNode, dataService?: DataService) => void;
38
+ }
39
+ export { ControllerAction };