asajs 3.0.2 → 3.0.4

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 (286) hide show
  1. package/dist/cjs/compilers/BindingCompiler.js +458 -0
  2. package/dist/cjs/compilers/BindingFunctions.js +267 -0
  3. package/dist/cjs/compilers/Compiler.js +158 -0
  4. package/dist/cjs/compilers/Compress.js +55 -0
  5. package/dist/cjs/compilers/Config.js +138 -0
  6. package/dist/cjs/compilers/Encoder.js +90 -0
  7. package/dist/cjs/compilers/Installer.js +123 -0
  8. package/dist/cjs/compilers/PreCompile.js +86 -0
  9. package/dist/cjs/compilers/generator/GenerateDir.js +51 -0
  10. package/dist/cjs/compilers/generator/JsonBuilder.js +66 -0
  11. package/dist/cjs/compilers/generator/LangBuilder.js +65 -0
  12. package/dist/cjs/compilers/generator/Log.js +45 -0
  13. package/dist/cjs/compilers/generator/Manifest.js +63 -0
  14. package/dist/cjs/compilers/generator/Save.js +87 -0
  15. package/dist/cjs/compilers/generator/SearchFiles.js +70 -0
  16. package/dist/cjs/compilers/generator/Sounds.js +91 -0
  17. package/dist/cjs/compilers/generator/Template.js +54 -0
  18. package/dist/cjs/compilers/generator/UIBuilder.js +123 -0
  19. package/dist/cjs/compilers/reader/Audio.js +81 -0
  20. package/dist/cjs/compilers/reader/Color.js +65 -0
  21. package/dist/cjs/compilers/reader/CurrentLine.js +36 -0
  22. package/dist/cjs/compilers/reader/Env.js +21 -0
  23. package/dist/cjs/compilers/reader/GlobalVariables.js +23 -0
  24. package/dist/cjs/compilers/reader/Object.js +44 -0
  25. package/dist/cjs/compilers/reader/ReadBinding.js +67 -0
  26. package/dist/cjs/compilers/reader/ReadProperties.js +118 -0
  27. package/dist/cjs/components/AddCollectionChill.js +41 -0
  28. package/dist/cjs/components/Animation.js +127 -0
  29. package/dist/cjs/components/AnimationKeyFrame.js +49 -0
  30. package/dist/cjs/components/Class.js +95 -0
  31. package/dist/cjs/components/LocalizeText.js +59 -0
  32. package/dist/cjs/components/Modify.js +377 -0
  33. package/dist/cjs/components/Random.js +104 -0
  34. package/dist/cjs/components/UI.js +387 -0
  35. package/dist/cjs/components/Vanilla.js +57915 -0
  36. package/dist/cjs/index.js +291 -0
  37. package/dist/cjs/package.json +1 -0
  38. package/dist/cjs/template.js +37 -0
  39. package/dist/cjs/types/components/ChildIdentifier.js +16 -0
  40. package/dist/cjs/types/components/Identifier.js +17 -0
  41. package/dist/cjs/types/components/NameCallback.js +16 -0
  42. package/dist/cjs/types/components/UIIdentifier.js +16 -0
  43. package/dist/cjs/types/components/UIInterface.js +16 -0
  44. package/dist/cjs/types/enums/Anchor.js +39 -0
  45. package/dist/cjs/types/enums/AnimTypes.js +39 -0
  46. package/dist/cjs/types/enums/BindingCondition.js +36 -0
  47. package/dist/cjs/types/enums/BindingName.js +4208 -0
  48. package/dist/cjs/types/enums/BindingType.js +35 -0
  49. package/dist/cjs/types/enums/ClipDirecion.js +35 -0
  50. package/dist/cjs/types/enums/Collection.js +202 -0
  51. package/dist/cjs/types/enums/Direction.js +33 -0
  52. package/dist/cjs/types/enums/EasingTypes.js +62 -0
  53. package/dist/cjs/types/enums/EnumColor.js +37 -0
  54. package/dist/cjs/types/enums/FocusNavigationMode.js +34 -0
  55. package/dist/cjs/types/enums/FontSize.js +34 -0
  56. package/dist/cjs/types/enums/FontType.js +35 -0
  57. package/dist/cjs/types/enums/GlobalVariables.js +345 -0
  58. package/dist/cjs/types/enums/InputModeCondition.js +33 -0
  59. package/dist/cjs/types/enums/ItemAuxID.js +31 -0
  60. package/dist/cjs/types/enums/JsonUIArrayName.js +36 -0
  61. package/dist/cjs/types/enums/MappingFrom.js +81 -0
  62. package/dist/cjs/types/enums/MappingTo.js +248 -0
  63. package/dist/cjs/types/enums/MappingTypes.js +34 -0
  64. package/dist/cjs/types/enums/Orientation.js +32 -0
  65. package/dist/cjs/types/enums/Renderer.js +68 -0
  66. package/dist/cjs/types/enums/Rotation.js +33 -0
  67. package/dist/cjs/types/enums/Scope.js +32 -0
  68. package/dist/cjs/types/enums/TextTypes.js +33 -0
  69. package/dist/cjs/types/enums/TextureFileSystem.js +41 -0
  70. package/dist/cjs/types/enums/Types.js +57 -0
  71. package/dist/cjs/types/objects/Animation.js +16 -0
  72. package/dist/cjs/types/objects/BindingHook.js +16 -0
  73. package/dist/cjs/types/objects/BindingInterface.js +16 -0
  74. package/dist/cjs/types/objects/ButtonMapping.js +16 -0
  75. package/dist/cjs/types/objects/Factory.js +16 -0
  76. package/dist/cjs/types/objects/Installer.js +53 -0
  77. package/dist/cjs/types/objects/Manifest.js +56 -0
  78. package/dist/cjs/types/objects/Modify.js +16 -0
  79. package/dist/cjs/types/objects/PropertyBag.js +16 -0
  80. package/dist/cjs/types/objects/Sound.js +16 -0
  81. package/dist/cjs/types/objects/Variables.js +16 -0
  82. package/dist/cjs/types/objects/elements/Button.js +17 -0
  83. package/dist/cjs/types/objects/elements/CollectionPanel.js +17 -0
  84. package/dist/cjs/types/objects/elements/Custom.js +17 -0
  85. package/dist/cjs/types/objects/elements/Dropdown.js +17 -0
  86. package/dist/cjs/types/objects/elements/EditBox.js +17 -0
  87. package/dist/cjs/types/objects/elements/Grid.js +16 -0
  88. package/dist/cjs/types/objects/elements/Image.js +17 -0
  89. package/dist/cjs/types/objects/elements/InputPanel.js +16 -0
  90. package/dist/cjs/types/objects/elements/Label.js +17 -0
  91. package/dist/cjs/types/objects/elements/PropertiesType.js +17 -0
  92. package/dist/cjs/types/objects/elements/Screen.js +17 -0
  93. package/dist/cjs/types/objects/elements/ScrollView.js +17 -0
  94. package/dist/cjs/types/objects/elements/ScrollbarBox.js +17 -0
  95. package/dist/cjs/types/objects/elements/ScrollbarTrack.js +17 -0
  96. package/dist/cjs/types/objects/elements/SelectionWheel.js +17 -0
  97. package/dist/cjs/types/objects/elements/Slider.js +17 -0
  98. package/dist/cjs/types/objects/elements/SliderBox.js +17 -0
  99. package/dist/cjs/types/objects/elements/StackPanel.js +16 -0
  100. package/dist/cjs/types/objects/elements/Toggle.js +17 -0
  101. package/dist/cjs/types/objects/elements/TooltipTrigger.js +16 -0
  102. package/dist/cjs/types/objects/elements/panel.js +16 -0
  103. package/dist/cjs/types/objects/properties/Buttons.js +16 -0
  104. package/dist/cjs/types/objects/properties/CollectionIndexs.js +16 -0
  105. package/dist/cjs/types/objects/properties/Collections.js +16 -0
  106. package/dist/cjs/types/objects/properties/Controls.js +16 -0
  107. package/dist/cjs/types/objects/properties/Dropdowns.js +16 -0
  108. package/dist/cjs/types/objects/properties/Focus.js +16 -0
  109. package/dist/cjs/types/objects/properties/FocusContainerCustom.js +16 -0
  110. package/dist/cjs/types/objects/properties/Grids.js +16 -0
  111. package/dist/cjs/types/objects/properties/Inputs.js +16 -0
  112. package/dist/cjs/types/objects/properties/Layouts.js +16 -0
  113. package/dist/cjs/types/objects/properties/Properties.js +16 -0
  114. package/dist/cjs/types/objects/properties/Renderers.js +16 -0
  115. package/dist/cjs/types/objects/properties/Screens.js +16 -0
  116. package/dist/cjs/types/objects/properties/ScrollViews.js +16 -0
  117. package/dist/cjs/types/objects/properties/SelectionWheels.js +16 -0
  118. package/dist/cjs/types/objects/properties/SliderBoxs.js +16 -0
  119. package/dist/cjs/types/objects/properties/Sliders.js +16 -0
  120. package/dist/cjs/types/objects/properties/Sounds.js +16 -0
  121. package/dist/cjs/types/objects/properties/Specials.js +16 -0
  122. package/dist/cjs/types/objects/properties/Sprites.js +16 -0
  123. package/dist/cjs/types/objects/properties/StackPanels.js +16 -0
  124. package/dist/cjs/types/objects/properties/TTS.js +16 -0
  125. package/dist/cjs/types/objects/properties/TextEdits.js +16 -0
  126. package/dist/cjs/types/objects/properties/Texts.js +16 -0
  127. package/dist/cjs/types/objects/properties/Toggles.js +16 -0
  128. package/dist/cjs/types/objects/properties/TooltipTriggers.js +16 -0
  129. package/dist/cjs/types/objects/properties/Variables.js +16 -0
  130. package/dist/cjs/types/values/Any.js +16 -0
  131. package/dist/cjs/types/values/Binding.js +16 -0
  132. package/dist/cjs/types/values/Bool.js +16 -0
  133. package/dist/cjs/types/values/ColorVector.js +16 -0
  134. package/dist/cjs/types/values/ElementPath.js +16 -0
  135. package/dist/cjs/types/values/Hex.js +16 -0
  136. package/dist/cjs/types/values/Number.js +16 -0
  137. package/dist/cjs/types/values/RangeVector.js +16 -0
  138. package/dist/cjs/types/values/Str.js +16 -0
  139. package/dist/cjs/types/values/StringVector.js +16 -0
  140. package/dist/cjs/types/values/TargetElementPath.js +16 -0
  141. package/dist/cjs/types/values/Variable.js +16 -0
  142. package/dist/cjs/types/values/Vector.js +16 -0
  143. package/dist/esm/index.js +68470 -0
  144. package/dist/esm/package.json +1 -0
  145. package/dist/types/compilers/BindingCompiler.d.ts +44 -0
  146. package/dist/types/compilers/BindingFunctions.d.ts +10 -0
  147. package/dist/types/compilers/Compiler.d.ts +3 -0
  148. package/dist/types/compilers/Compress.d.ts +1 -0
  149. package/dist/types/compilers/Config.d.ts +95 -0
  150. package/dist/types/compilers/Encoder.d.ts +11 -0
  151. package/dist/types/compilers/Installer.d.ts +14 -0
  152. package/dist/types/compilers/PreCompile.d.ts +4 -0
  153. package/dist/types/compilers/generator/GenerateDir.d.ts +1 -0
  154. package/dist/types/compilers/generator/JsonBuilder.d.ts +28 -0
  155. package/dist/types/compilers/generator/LangBuilder.d.ts +4 -0
  156. package/dist/types/compilers/generator/Log.d.ts +9 -0
  157. package/dist/types/compilers/generator/Manifest.d.ts +21 -0
  158. package/dist/types/compilers/generator/Save.d.ts +16 -0
  159. package/dist/types/compilers/generator/SearchFiles.d.ts +11 -0
  160. package/dist/types/compilers/generator/Sounds.d.ts +5 -0
  161. package/dist/types/compilers/generator/Template.d.ts +1 -0
  162. package/dist/types/compilers/generator/UIBuilder.d.ts +9 -0
  163. package/dist/types/compilers/reader/Audio.d.ts +1 -0
  164. package/dist/types/compilers/reader/Color.d.ts +5 -0
  165. package/dist/types/compilers/reader/CurrentLine.d.ts +1 -0
  166. package/dist/types/compilers/reader/Env.d.ts +1 -0
  167. package/dist/types/compilers/reader/GlobalVariables.d.ts +1 -0
  168. package/dist/types/compilers/reader/Object.d.ts +11 -0
  169. package/dist/types/compilers/reader/ReadBinding.d.ts +6 -0
  170. package/dist/types/compilers/reader/ReadProperties.d.ts +3 -0
  171. package/dist/types/components/AddCollectionChill.d.ts +6 -0
  172. package/dist/types/components/Animation.d.ts +15 -0
  173. package/dist/types/components/AnimationKeyFrame.d.ts +10 -0
  174. package/dist/types/components/Class.d.ts +68 -0
  175. package/dist/types/components/LocalizeText.d.ts +21 -0
  176. package/dist/types/components/Modify.d.ts +30 -0
  177. package/dist/types/components/Random.d.ts +20 -0
  178. package/dist/types/components/UI.d.ts +89 -0
  179. package/dist/types/components/Vanilla.d.ts +19729 -0
  180. package/dist/types/index.d.ts +136 -0
  181. package/dist/types/template.d.ts +4 -0
  182. package/dist/types/types/components/ChildIdentifier.d.ts +11 -0
  183. package/dist/types/types/components/Identifier.d.ts +4 -0
  184. package/dist/types/types/components/NameCallback.d.ts +3 -0
  185. package/dist/types/types/components/UIIdentifier.d.ts +4 -0
  186. package/dist/types/types/components/UIInterface.d.ts +16 -0
  187. package/dist/types/types/enums/Anchor.d.ts +11 -0
  188. package/dist/types/types/enums/AnimTypes.d.ts +11 -0
  189. package/dist/types/types/enums/BindingCondition.d.ts +8 -0
  190. package/dist/types/types/enums/BindingName.d.ts +4180 -0
  191. package/dist/types/types/enums/BindingType.d.ts +7 -0
  192. package/dist/types/types/enums/ClipDirecion.d.ts +7 -0
  193. package/dist/types/types/enums/Collection.d.ts +174 -0
  194. package/dist/types/types/enums/Direction.d.ts +5 -0
  195. package/dist/types/types/enums/EasingTypes.d.ts +34 -0
  196. package/dist/types/types/enums/EnumColor.d.ts +9 -0
  197. package/dist/types/types/enums/FocusNavigationMode.d.ts +6 -0
  198. package/dist/types/types/enums/FontSize.d.ts +6 -0
  199. package/dist/types/types/enums/FontType.d.ts +7 -0
  200. package/dist/types/types/enums/GlobalVariables.d.ts +317 -0
  201. package/dist/types/types/enums/InputModeCondition.d.ts +5 -0
  202. package/dist/types/types/enums/ItemAuxID.d.ts +3 -0
  203. package/dist/types/types/enums/JsonUIArrayName.d.ts +7 -0
  204. package/dist/types/types/enums/MappingFrom.d.ts +53 -0
  205. package/dist/types/types/enums/MappingTo.d.ts +220 -0
  206. package/dist/types/types/enums/MappingTypes.d.ts +6 -0
  207. package/dist/types/types/enums/Orientation.d.ts +4 -0
  208. package/dist/types/types/enums/Renderer.d.ts +40 -0
  209. package/dist/types/types/enums/Rotation.d.ts +5 -0
  210. package/dist/types/types/enums/Scope.d.ts +4 -0
  211. package/dist/types/types/enums/TextTypes.d.ts +5 -0
  212. package/dist/types/types/enums/TextureFileSystem.d.ts +13 -0
  213. package/dist/types/types/enums/Types.d.ts +29 -0
  214. package/dist/types/types/objects/Animation.d.ts +36 -0
  215. package/dist/types/types/objects/BindingHook.d.ts +1 -0
  216. package/dist/types/types/objects/BindingInterface.d.ts +21 -0
  217. package/dist/types/types/objects/ButtonMapping.d.ts +18 -0
  218. package/dist/types/types/objects/Factory.d.ts +2 -0
  219. package/dist/types/types/objects/Installer.d.ts +26 -0
  220. package/dist/types/types/objects/Manifest.d.ts +74 -0
  221. package/dist/types/types/objects/Modify.d.ts +52 -0
  222. package/dist/types/types/objects/PropertyBag.d.ts +2 -0
  223. package/dist/types/types/objects/Sound.d.ts +8 -0
  224. package/dist/types/types/objects/Variables.d.ts +1 -0
  225. package/dist/types/types/objects/elements/Button.d.ts +4 -0
  226. package/dist/types/types/objects/elements/CollectionPanel.d.ts +4 -0
  227. package/dist/types/types/objects/elements/Custom.d.ts +5 -0
  228. package/dist/types/types/objects/elements/Dropdown.d.ts +4 -0
  229. package/dist/types/types/objects/elements/EditBox.d.ts +4 -0
  230. package/dist/types/types/objects/elements/Grid.d.ts +4 -0
  231. package/dist/types/types/objects/elements/Image.d.ts +4 -0
  232. package/dist/types/types/objects/elements/InputPanel.d.ts +7 -0
  233. package/dist/types/types/objects/elements/Label.d.ts +4 -0
  234. package/dist/types/types/objects/elements/PropertiesType.d.ts +45 -0
  235. package/dist/types/types/objects/elements/Screen.d.ts +4 -0
  236. package/dist/types/types/objects/elements/ScrollView.d.ts +5 -0
  237. package/dist/types/types/objects/elements/ScrollbarBox.d.ts +4 -0
  238. package/dist/types/types/objects/elements/ScrollbarTrack.d.ts +4 -0
  239. package/dist/types/types/objects/elements/SelectionWheel.d.ts +4 -0
  240. package/dist/types/types/objects/elements/Slider.d.ts +4 -0
  241. package/dist/types/types/objects/elements/SliderBox.d.ts +5 -0
  242. package/dist/types/types/objects/elements/StackPanel.d.ts +7 -0
  243. package/dist/types/types/objects/elements/Toggle.d.ts +4 -0
  244. package/dist/types/types/objects/elements/TooltipTrigger.d.ts +8 -0
  245. package/dist/types/types/objects/elements/panel.d.ts +6 -0
  246. package/dist/types/types/objects/properties/Buttons.d.ts +5 -0
  247. package/dist/types/types/objects/properties/CollectionIndexs.d.ts +4 -0
  248. package/dist/types/types/objects/properties/Collections.d.ts +6 -0
  249. package/dist/types/types/objects/properties/Controls.d.ts +27 -0
  250. package/dist/types/types/objects/properties/Dropdowns.d.ts +6 -0
  251. package/dist/types/types/objects/properties/Focus.d.ts +28 -0
  252. package/dist/types/types/objects/properties/FocusContainerCustom.d.ts +5 -0
  253. package/dist/types/types/objects/properties/Grids.d.ts +15 -0
  254. package/dist/types/types/objects/properties/Inputs.d.ts +13 -0
  255. package/dist/types/types/objects/properties/Layouts.d.ts +35 -0
  256. package/dist/types/types/objects/properties/Properties.d.ts +27 -0
  257. package/dist/types/types/objects/properties/Renderers.d.ts +5 -0
  258. package/dist/types/types/objects/properties/Screens.d.ts +23 -0
  259. package/dist/types/types/objects/properties/ScrollViews.d.ts +17 -0
  260. package/dist/types/types/objects/properties/SelectionWheels.d.ts +13 -0
  261. package/dist/types/types/objects/properties/SliderBoxs.d.ts +6 -0
  262. package/dist/types/types/objects/properties/Sliders.d.ts +23 -0
  263. package/dist/types/types/objects/properties/Sounds.d.ts +10 -0
  264. package/dist/types/types/objects/properties/Specials.d.ts +60 -0
  265. package/dist/types/types/objects/properties/Sprites.d.ts +33 -0
  266. package/dist/types/types/objects/properties/StackPanels.d.ts +5 -0
  267. package/dist/types/types/objects/properties/TTS.d.ts +24 -0
  268. package/dist/types/types/objects/properties/TextEdits.d.ts +19 -0
  269. package/dist/types/types/objects/properties/Texts.d.ts +26 -0
  270. package/dist/types/types/objects/properties/Toggles.d.ts +24 -0
  271. package/dist/types/types/objects/properties/TooltipTriggers.d.ts +7 -0
  272. package/dist/types/types/objects/properties/Variables.d.ts +3 -0
  273. package/dist/types/types/values/Any.d.ts +4 -0
  274. package/dist/types/types/values/Binding.d.ts +2 -0
  275. package/dist/types/types/values/Bool.d.ts +2 -0
  276. package/dist/types/types/values/ColorVector.d.ts +6 -0
  277. package/dist/types/types/values/ElementPath.d.ts +2 -0
  278. package/dist/types/types/values/Hex.d.ts +1 -0
  279. package/dist/types/types/values/Number.d.ts +4 -0
  280. package/dist/types/types/values/RangeVector.d.ts +5 -0
  281. package/dist/types/types/values/Str.d.ts +2 -0
  282. package/dist/types/types/values/StringVector.d.ts +6 -0
  283. package/dist/types/types/values/TargetElementPath.d.ts +1 -0
  284. package/dist/types/types/values/Variable.d.ts +1 -0
  285. package/dist/types/types/values/Vector.d.ts +5 -0
  286. package/package.json +4 -4
@@ -0,0 +1,4 @@
1
+ import { Collections } from "../properties/Collections";
2
+ import { Panel } from "./panel";
3
+ export interface CollectionPanel extends Panel, Collections {
4
+ }
@@ -0,0 +1,5 @@
1
+ import { Renderers } from "../properties/Renderers";
2
+ import { Special } from "../properties/Specials";
3
+ import { Panel } from "./panel";
4
+ export interface Custom extends Panel, Renderers, Special {
5
+ }
@@ -0,0 +1,4 @@
1
+ import { Dropdowns } from "../properties/Dropdowns";
2
+ import { Toggle } from "./Toggle";
3
+ export interface Dropdown extends Toggle, Dropdowns {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { TextEdits } from "../properties/TextEdits";
2
+ import { Button } from "./Button";
3
+ export interface EditBox extends Button, TextEdits {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { Grids } from "../properties/Grids";
2
+ import { CollectionPanel } from "./CollectionPanel";
3
+ export interface Grid extends CollectionPanel, Grids {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { Sprites } from "../properties/Sprites";
2
+ import { Panel } from "./panel";
3
+ export interface Image extends Panel, Sprites {
4
+ }
@@ -0,0 +1,7 @@
1
+ import { Collections } from "../properties/Collections";
2
+ import { Focus } from "../properties/Focus";
3
+ import { Inputs } from "../properties/Inputs";
4
+ import { Sounds } from "../properties/Sounds";
5
+ import { Panel } from "./panel";
6
+ export interface InputPanel extends Panel, Collections, Inputs, Sounds, Focus {
7
+ }
@@ -0,0 +1,4 @@
1
+ import { Texts } from "../properties/Texts";
2
+ import { Panel } from "./panel";
3
+ export interface Label extends Panel, Texts {
4
+ }
@@ -0,0 +1,45 @@
1
+ import { Types } from "../../enums/Types";
2
+ import { Properties } from "../properties/Properties";
3
+ import { Button } from "./Button";
4
+ import { CollectionPanel } from "./CollectionPanel";
5
+ import { Custom } from "./Custom";
6
+ import { Dropdown } from "./Dropdown";
7
+ import { EditBox } from "./EditBox";
8
+ import { Grid } from "./Grid";
9
+ import { Image } from "./Image";
10
+ import { InputPanel } from "./InputPanel";
11
+ import { Label } from "./Label";
12
+ import { Panel } from "./panel";
13
+ import { Screen } from "./Screen";
14
+ import { ScrollbarBox } from "./ScrollbarBox";
15
+ import { ScrollbarTrack } from "./ScrollbarTrack";
16
+ import { ScrollView } from "./ScrollView";
17
+ import { SelectionWheel } from "./SelectionWheel";
18
+ import { Slider } from "./Slider";
19
+ import { SliderBox } from "./SliderBox";
20
+ import { StackPanel } from "./StackPanel";
21
+ import { Toggle } from "./Toggle";
22
+ import { TooltipTrigger } from "./TooltipTrigger";
23
+ export interface PropertiesType {
24
+ [Types.Panel]: Panel;
25
+ [Types.StackPanel]: StackPanel;
26
+ [Types.InputPanel]: InputPanel;
27
+ [Types.CollectionPanel]: CollectionPanel;
28
+ [Types.Button]: Button;
29
+ [Types.Custom]: Custom;
30
+ [Types.Dropdown]: Dropdown;
31
+ [Types.EditBox]: EditBox;
32
+ [Types.Grid]: Grid;
33
+ [Types.Image]: Image;
34
+ [Types.Label]: Label;
35
+ [Types.Screen]: Screen;
36
+ [Types.ScrollView]: ScrollView;
37
+ [Types.ScrollbarBox]: ScrollbarBox;
38
+ [Types.ScrollbarTrack]: ScrollbarTrack;
39
+ [Types.SelectionWheel]: SelectionWheel;
40
+ [Types.Slider]: Slider;
41
+ [Types.SliderBox]: SliderBox;
42
+ [Types.Toggle]: Toggle;
43
+ [Types.TooltipTrigger]: TooltipTrigger;
44
+ [Types.Any]: Properties;
45
+ }
@@ -0,0 +1,4 @@
1
+ import { Screens } from "../properties/Screens";
2
+ import { Panel } from "./panel";
3
+ export interface Screen extends Panel, Screens {
4
+ }
@@ -0,0 +1,5 @@
1
+ import { Inputs } from "../properties/Inputs";
2
+ import { ScrollViews } from "../properties/ScrollViews";
3
+ import { Panel } from "./panel";
4
+ export interface ScrollView extends Panel, Inputs, ScrollViews {
5
+ }
@@ -0,0 +1,4 @@
1
+ import { Inputs } from "../properties/Inputs";
2
+ import { Panel } from "./panel";
3
+ export interface ScrollbarBox extends Panel, Inputs {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { Inputs } from "../properties/Inputs";
2
+ import { Panel } from "./panel";
3
+ export interface ScrollbarTrack extends Panel, Inputs {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { SelectionWheels } from "../properties/SelectionWheels";
2
+ import { InputPanel } from "./InputPanel";
3
+ export interface SelectionWheel extends InputPanel, SelectionWheels {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { Sliders } from "../properties/Sliders";
2
+ import { InputPanel } from "./InputPanel";
3
+ export interface Slider extends InputPanel, Sliders {
4
+ }
@@ -0,0 +1,5 @@
1
+ import { Inputs } from "../properties/Inputs";
2
+ import { SliderBoxs } from "../properties/SliderBoxs";
3
+ import { Panel } from "./panel";
4
+ export interface SliderBox extends Panel, Inputs, SliderBoxs {
5
+ }
@@ -0,0 +1,7 @@
1
+ import { Str } from "../../values/Str";
2
+ import { Collections } from "../properties/Collections";
3
+ import { StackPanels } from "../properties/StackPanels";
4
+ import { Panel } from "./panel";
5
+ export interface StackPanel extends Panel, StackPanels, Collections {
6
+ control_name?: Str;
7
+ }
@@ -0,0 +1,4 @@
1
+ import { Toggles } from "../properties/Toggles";
2
+ import { InputPanel } from "./InputPanel";
3
+ export interface Toggle extends InputPanel, Toggles {
4
+ }
@@ -0,0 +1,8 @@
1
+ import { Controls } from "../properties/Controls";
2
+ import { Focus } from "../properties/Focus";
3
+ import { Inputs } from "../properties/Inputs";
4
+ import { Layouts } from "../properties/Layouts";
5
+ import { TooltipTriggers } from "../properties/TooltipTriggers";
6
+ import { TTS } from "../properties/TTS";
7
+ export interface TooltipTrigger extends TooltipTriggers, Controls, Layouts, Focus, Inputs, TTS {
8
+ }
@@ -0,0 +1,6 @@
1
+ import { Controls } from "../properties/Controls";
2
+ import { Layouts } from "../properties/Layouts";
3
+ import { Variables } from "../properties/Variables";
4
+ import { BindingPropertyBag } from "../PropertyBag";
5
+ export interface Panel extends Variables, Controls, Layouts, BindingPropertyBag {
6
+ }
@@ -0,0 +1,5 @@
1
+ import { Str } from "../../values/Str";
2
+ import { SliderBoxs } from "./SliderBoxs";
3
+ export interface Buttons extends SliderBoxs {
4
+ pressed_control?: Str;
5
+ }
@@ -0,0 +1,4 @@
1
+ import { Int } from "../../values/Number";
2
+ export interface CollectionIndexs {
3
+ collection_index?: Int;
4
+ }
@@ -0,0 +1,6 @@
1
+ import { Collection } from "../../enums/Collection";
2
+ import { Var } from "../../values/Variable";
3
+ export interface Collections {
4
+ collection?: Var | string | Collection;
5
+ collection_name?: Var | string | Collection;
6
+ }
@@ -0,0 +1,27 @@
1
+ import { Bool } from "../../values/Bool";
2
+ import { Int, RangeFloat } from "../../values/Number";
3
+ import { Str } from "../../values/Str";
4
+ import { Vector2 } from "../../values/Vector";
5
+ import { Factory } from "../Factory";
6
+ import { PropertyBag } from "../PropertyBag";
7
+ export interface Controls {
8
+ visible?: Bool;
9
+ enabled?: Bool;
10
+ layer?: Int;
11
+ alpha?: RangeFloat;
12
+ propagate_alpha?: Bool;
13
+ clips_children?: Bool;
14
+ allow_clipping?: Bool;
15
+ clip_offset?: Vector2;
16
+ clip_state_change_event?: Str;
17
+ enable_scissor_test?: Bool;
18
+ property_bag?: PropertyBag;
19
+ selected?: Bool;
20
+ use_child_anchors?: Bool;
21
+ disable_anim_fast_forward?: Bool;
22
+ animation_reset_name?: Str;
23
+ ignored?: Bool;
24
+ grid_position?: Vector2;
25
+ collection_index?: Int;
26
+ factory?: Factory;
27
+ }
@@ -0,0 +1,6 @@
1
+ import { Str } from "../../values/Str";
2
+ export interface Dropdowns {
3
+ dropdown_name?: Str;
4
+ dropdown_content_control?: Str;
5
+ dropdown_area?: Str;
6
+ }
@@ -0,0 +1,28 @@
1
+ import { FocusContainerCustom } from "./FocusContainerCustom";
2
+ import { FocusNavigationMode } from "../../enums/FocusNavigationMode";
3
+ import { Bool } from "../../values/Bool";
4
+ import { Int } from "../../values/Number";
5
+ import { Var } from "../../values/Variable";
6
+ import { Str } from "../../values/Str";
7
+ export interface Focus {
8
+ default_focus_precedence?: Int;
9
+ focus_enabled?: Bool;
10
+ focus_wrap_enabled?: Bool;
11
+ focus_magnet_enabled?: Bool;
12
+ focus_identifier?: Str;
13
+ focus_change_down?: Str;
14
+ focus_change_up?: Str;
15
+ focus_change_left?: Str;
16
+ focus_change_right?: Str;
17
+ focus_mapping?: Var | Array<any>;
18
+ focus_container?: Bool;
19
+ use_last_focus?: Bool;
20
+ focus_navigation_mode_left?: Var | FocusNavigationMode;
21
+ focus_navigation_mode_right?: Var | FocusNavigationMode;
22
+ focus_navigation_mode_down?: Var | FocusNavigationMode;
23
+ focus_navigation_mode_up?: Var | FocusNavigationMode;
24
+ focus_container_custom_left?: FocusContainerCustom[];
25
+ focus_container_custom_right?: FocusContainerCustom[];
26
+ focus_container_custom_down?: FocusContainerCustom[];
27
+ focus_container_custom_up?: FocusContainerCustom[];
28
+ }
@@ -0,0 +1,5 @@
1
+ import { Str } from "../../values/Str";
2
+ export interface FocusContainerCustom {
3
+ other_focus_container_name?: Str;
4
+ focus_id_inside?: Str;
5
+ }
@@ -0,0 +1,15 @@
1
+ import { Direction } from "readline";
2
+ import { Binding } from "../../values/Binding";
3
+ import { Int } from "../../values/Number";
4
+ import { Var } from "../../values/Variable";
5
+ import { Vector2 } from "../../values/Vector";
6
+ import { ElementPath } from "../../values/ElementPath";
7
+ export interface Grids {
8
+ grid_dimensions?: Vector2;
9
+ maximum_grid_items?: Int;
10
+ grid_dimension_binding?: Binding;
11
+ grid_rescaling_type?: Var | Direction;
12
+ grid_fill_direction?: Var | Direction;
13
+ grid_item_template?: ElementPath;
14
+ precached_grid_item_count?: Int;
15
+ }
@@ -0,0 +1,13 @@
1
+ import { Bool } from "../../values/Bool";
2
+ export interface Inputs {
3
+ modal?: Bool;
4
+ inline_modal?: Bool;
5
+ always_listen_to_input?: Bool;
6
+ always_handle_pointer?: Bool;
7
+ always_handle_controller_direction?: Bool;
8
+ hover_enabled?: Bool;
9
+ prevent_touch_input?: Bool;
10
+ consume_event?: Bool;
11
+ consume_hover_events?: Bool;
12
+ gesture_tracking_button?: Bool;
13
+ }
@@ -0,0 +1,35 @@
1
+ import { Direction } from "readline";
2
+ import { Anchor } from "../../enums/Anchor";
3
+ import { Color } from "../../enums/EnumColor";
4
+ import { Bool } from "../../values/Bool";
5
+ import { StringVector2 } from "../../values/StringVector";
6
+ import { Float, Int } from "../../values/Number";
7
+ import { Var } from "../../values/Variable";
8
+ import { Str } from "../../values/Str";
9
+ export interface Layouts {
10
+ size?: Str | Float | StringVector2;
11
+ visible?: Bool;
12
+ ignored?: Bool;
13
+ layer?: Int;
14
+ max_size?: Str | Float | StringVector2;
15
+ min_size?: Str | Float | StringVector2;
16
+ offset?: StringVector2;
17
+ anchor?: Var | Anchor;
18
+ anchor_from?: Var | Anchor;
19
+ anchor_to?: Var | Anchor;
20
+ inherit_max_sibling_width?: Bool;
21
+ inherit_max_sibling_height?: Bool;
22
+ use_anchored_offset?: Bool;
23
+ contained?: Bool;
24
+ draggable?: Var | Direction;
25
+ follows_cursor?: Bool;
26
+ debug?: Var | Color;
27
+ min_w?: Float | Str;
28
+ min_h?: Float | Str;
29
+ max_w?: Float | Str;
30
+ max_h?: Float | Str;
31
+ w?: Float | Str;
32
+ h?: Float | Str;
33
+ x?: Float | Str;
34
+ y?: Float | Str;
35
+ }
@@ -0,0 +1,27 @@
1
+ import { Buttons } from "./Buttons";
2
+ import { CollectionIndexs } from "./CollectionIndexs";
3
+ import { Collections } from "./Collections";
4
+ import { Controls } from "./Controls";
5
+ import { Dropdowns } from "./Dropdowns";
6
+ import { Focus } from "./Focus";
7
+ import { Grids } from "./Grids";
8
+ import { Inputs } from "./Inputs";
9
+ import { Layouts } from "./Layouts";
10
+ import { Renderers } from "./Renderers";
11
+ import { Screens } from "./Screens";
12
+ import { ScrollViews } from "./ScrollViews";
13
+ import { SelectionWheels } from "./SelectionWheels";
14
+ import { SliderBoxs } from "./SliderBoxs";
15
+ import { Sliders } from "./Sliders";
16
+ import { Sounds } from "./Sounds";
17
+ import { Special } from "./Specials";
18
+ import { Sprites } from "./Sprites";
19
+ import { StackPanels } from "./StackPanels";
20
+ import { TextEdits } from "./TextEdits";
21
+ import { Texts } from "./Texts";
22
+ import { Toggles } from "./Toggles";
23
+ import { TooltipTriggers } from "./TooltipTriggers";
24
+ import { TTS } from "./TTS";
25
+ import { Variables } from "./Variables";
26
+ export interface Properties extends Buttons, CollectionIndexs, Collections, Controls, Dropdowns, Focus, Grids, Inputs, Renderers, Screens, ScrollViews, SelectionWheels, SliderBoxs, Sliders, Sounds, Special, Sprites, StackPanels, TextEdits, Texts, Toggles, Layouts, TooltipTriggers, TTS, Variables {
27
+ }
@@ -0,0 +1,5 @@
1
+ import { Renderer } from "../../enums/Renderer";
2
+ import { Var } from "../../values/Variable";
3
+ export interface Renderers {
4
+ renderer?: Var | Renderer;
5
+ }
@@ -0,0 +1,23 @@
1
+ import { Bool } from "../../values/Bool";
2
+ import { StackPanels } from "./StackPanels";
3
+ export interface Screens extends StackPanels {
4
+ render_only_when_topmost?: Bool;
5
+ screen_not_flushable?: Bool;
6
+ always_accepts_input?: Bool;
7
+ render_game_behind?: Bool;
8
+ absorbs_input?: Bool;
9
+ is_showing_menu?: Bool;
10
+ is_modal?: Bool;
11
+ should_steal_mouse?: Bool;
12
+ low_frequency_rendering?: Bool;
13
+ screen_draws_last?: Bool;
14
+ vr_mode?: Bool;
15
+ force_render_below?: Bool;
16
+ send_telemetry?: Bool;
17
+ close_on_player_hurt?: Bool;
18
+ cache_screen?: Bool;
19
+ load_screen_immediately?: Bool;
20
+ gamepad_cursor?: Bool;
21
+ gamepad_cursor_deflection_mode?: Bool;
22
+ should_be_skipped_during_automation?: Bool;
23
+ }
@@ -0,0 +1,17 @@
1
+ import { Bool } from "../../values/Bool";
2
+ import { Float } from "../../values/Number";
3
+ import { Str } from "../../values/Str";
4
+ export interface ScrollViews {
5
+ scrollbar_track_button?: Str;
6
+ scrollbar_touch_button?: Str;
7
+ scroll_speed?: Float;
8
+ gesture_control_enabled?: Bool;
9
+ always_handle_scrolling?: Bool;
10
+ touch_mode?: Bool;
11
+ scrollbar_box?: Str;
12
+ scrollbar_track?: Str;
13
+ scroll_view_port?: Str;
14
+ scroll_content?: Str;
15
+ scroll_box_and_track_panel?: Str;
16
+ jump_to_bottom_on_update?: Bool;
17
+ }
@@ -0,0 +1,13 @@
1
+ import { Float } from "../../values/Number";
2
+ import { Str } from "../../values/Str";
3
+ import { Var } from "../../values/Variable";
4
+ export interface SelectionWheels {
5
+ inner_radius?: Float;
6
+ outer_radius?: Float;
7
+ state_controls?: Var | Array<string>;
8
+ slice_count?: Float;
9
+ button_name?: Str;
10
+ iterate_left_button_name?: Str;
11
+ iterate_right_button_name?: Str;
12
+ initial_button_slice?: Float;
13
+ }
@@ -0,0 +1,6 @@
1
+ import { Str } from "../../values/Str";
2
+ export interface SliderBoxs {
3
+ default_control?: Str;
4
+ hover_control?: Str;
5
+ locked_control?: Str;
6
+ }
@@ -0,0 +1,23 @@
1
+ import { Orientation } from "../../enums/Orientation";
2
+ import { Bool } from "../../values/Bool";
3
+ import { Float } from "../../values/Number";
4
+ import { Str } from "../../values/Str";
5
+ import { Var } from "../../values/Variable";
6
+ export interface Sliders {
7
+ slider_track_button?: Str;
8
+ slider_small_decrease_button?: Str;
9
+ slider_small_increase_button?: Str;
10
+ slider_steps?: Float;
11
+ slider_direction?: Var | Orientation;
12
+ slider_timeout?: Float;
13
+ slider_collection_name?: Str;
14
+ slider_name?: Str;
15
+ slider_select_on_hover?: Bool;
16
+ slider_selected_button?: Str;
17
+ slider_deselected_button?: Str;
18
+ slider_box_control?: Str;
19
+ background_control?: Str;
20
+ background_hover_control?: Str;
21
+ progress_control?: Str;
22
+ progress_hover_control?: Str;
23
+ }
@@ -0,0 +1,10 @@
1
+ import { Float } from "../../values/Number";
2
+ import { Str } from "../../values/Str";
3
+ import { Sound } from "../Sound";
4
+ export interface Sounds {
5
+ sound_path?: string;
6
+ sound_name?: Str;
7
+ sound_volume?: Float;
8
+ sound_pitch?: Float;
9
+ sounds?: Array<Sound>;
10
+ }
@@ -0,0 +1,60 @@
1
+ import { Orientation } from "../../enums/Orientation";
2
+ import { Renderer } from "../../enums/Renderer";
3
+ import { Rotation } from "../../enums/Rotation";
4
+ import { Bool } from "../../values/Bool";
5
+ import { ColorVector4 } from "../../values/ColorVector";
6
+ import { Float } from "../../values/Number";
7
+ import { Var } from "../../values/Variable";
8
+ export interface Special {
9
+ gradient_direction?: Var | Orientation;
10
+ color1?: ColorVector4;
11
+ color2?: ColorVector4;
12
+ text_color?: ColorVector4;
13
+ background_color?: ColorVector4;
14
+ primary_color?: ColorVector4;
15
+ secondary_color?: ColorVector4;
16
+ camera_tilt_degrees?: Float;
17
+ starting_rotation?: Bool;
18
+ use_uuid?: Bool;
19
+ use_skin_gui_scale?: Bool;
20
+ use_player_paperdoll?: Bool;
21
+ rotation?: Var | Rotation;
22
+ end_event?: string;
23
+ }
24
+ interface Gradient {
25
+ gradient_direction?: Var | Orientation;
26
+ color1?: ColorVector4;
27
+ color2?: ColorVector4;
28
+ }
29
+ interface Nametag {
30
+ text_color?: ColorVector4;
31
+ background_color?: ColorVector4;
32
+ }
33
+ interface ProgessBar {
34
+ primary_color?: ColorVector4;
35
+ secondary_color?: ColorVector4;
36
+ }
37
+ interface PaperDoll {
38
+ camera_tilt_degrees?: Float;
39
+ starting_rotation?: Bool;
40
+ use_uuid?: Bool;
41
+ use_skin_gui_scale?: Bool;
42
+ use_player_paperdoll?: Bool;
43
+ rotation?: Var | Rotation;
44
+ }
45
+ interface Panorama {
46
+ rotation?: Var | Rotation;
47
+ }
48
+ interface Credits {
49
+ end_event?: string;
50
+ }
51
+ export type Specials = {
52
+ [Renderer.Gradient]: Gradient;
53
+ [Renderer.NameTag]: Nametag;
54
+ [Renderer.ProgressBar]: ProgessBar;
55
+ [Renderer.PaperDoll]: PaperDoll;
56
+ [Renderer.Panorama]: Panorama;
57
+ [Renderer.Credits]: Credits;
58
+ [key: string]: object;
59
+ };
60
+ export {};
@@ -0,0 +1,33 @@
1
+ import { ClipDirection } from "../../enums/ClipDirecion";
2
+ import { FontType } from "../../enums/FontType";
3
+ import { TextureFileSystem } from "../../enums/TextureFileSystem";
4
+ import { Bool } from "../../values/Bool";
5
+ import { ColorVector3 } from "../../values/ColorVector";
6
+ import { Float, Int } from "../../values/Number";
7
+ import { Str } from "../../values/Str";
8
+ import { Var } from "../../values/Variable";
9
+ import { Vector2, Vector4 } from "../../values/Vector";
10
+ export interface Sprites {
11
+ texture?: Str;
12
+ allow_debug_missing_texture?: Bool;
13
+ color?: ColorVector3;
14
+ locked_color?: ColorVector3;
15
+ uv?: Vector2;
16
+ uv_size?: Vector2;
17
+ texture_file_system?: Var | TextureFileSystem;
18
+ nineslice_size?: Vector2 | Vector4 | Int;
19
+ tiled?: Bool | Vector2;
20
+ tiled_scale?: Vector2;
21
+ clip_direction?: Var | ClipDirection;
22
+ clip_ratio?: Float;
23
+ clip_pixelperfect?: Bool;
24
+ keep_ratio?: Bool;
25
+ bilinear?: Bool;
26
+ fill?: Bool;
27
+ font_type?: Var | FontType;
28
+ $fit_to_width?: Bool;
29
+ zip_folder?: Str;
30
+ grayscale?: Bool;
31
+ force_texture_reload?: Bool;
32
+ base_size?: Vector2;
33
+ }
@@ -0,0 +1,5 @@
1
+ import { Orientation } from "../../enums/Orientation";
2
+ import { Var } from "../../values/Variable";
3
+ export interface StackPanels {
4
+ orientation?: Var | Orientation;
5
+ }
@@ -0,0 +1,24 @@
1
+ import { Bool } from "../../values/Bool";
2
+ import { Int } from "../../values/Number";
3
+ import { Str } from "../../values/Str";
4
+ export interface TTS {
5
+ tts_name?: Str;
6
+ tts_control_header?: Str;
7
+ tts_section_header?: Str;
8
+ tts_control_type_order_priority?: Int;
9
+ tts_index_priority?: Int;
10
+ tts_toggle_on?: Str;
11
+ tts_toggle_off?: Str;
12
+ tts_override_control_value?: Str;
13
+ tts_inherit_siblings?: Bool;
14
+ tts_value_changed?: Str;
15
+ ttsSectionContainer?: Bool;
16
+ tts_ignore_count?: Bool;
17
+ tts_skip_message?: Bool;
18
+ tts_value_order_priority?: Int;
19
+ tts_play_on_unchanged_focus_control?: Bool;
20
+ tts_ignore_subsections?: Bool;
21
+ text_tts?: Str;
22
+ use_priority?: Bool;
23
+ priority?: Bool;
24
+ }
@@ -0,0 +1,19 @@
1
+ import { Collection } from "../../enums/Collection";
2
+ import { TextType } from "../../enums/TextTypes";
3
+ import { Bool } from "../../values/Bool";
4
+ import { Int } from "../../values/Number";
5
+ import { Str } from "../../values/Str";
6
+ import { Var } from "../../values/Variable";
7
+ export interface TextEdits {
8
+ text_box_name?: Str;
9
+ text_edit_box_grid_collection_name?: Var | Collection;
10
+ constrain_to_rect?: Bool;
11
+ enabled_newline?: Bool;
12
+ text_type?: TextType;
13
+ max_length?: Int;
14
+ text_control?: Str;
15
+ place_holder_control?: Str;
16
+ can_be_deselected?: Bool;
17
+ always_listening?: Bool;
18
+ virtual_keyboard_buffer_control?: Str;
19
+ }
@@ -0,0 +1,26 @@
1
+ import { LocalizeText } from "../../../components/LocalizeText";
2
+ import { Anchor } from "../../enums/Anchor";
3
+ import { FontSize } from "../../enums/FontSize";
4
+ import { FontType } from "../../enums/FontType";
5
+ import { Bool } from "../../values/Bool";
6
+ import { ColorVector3 } from "../../values/ColorVector";
7
+ import { Float } from "../../values/Number";
8
+ import { Str } from "../../values/Str";
9
+ import { Var } from "../../values/Variable";
10
+ export interface Texts {
11
+ text?: Str | LocalizeText;
12
+ color?: ColorVector3;
13
+ locked_color?: ColorVector3;
14
+ shadow?: Bool;
15
+ hide_hyphen?: Bool;
16
+ notify_on_ellipses?: Str | Array<string>;
17
+ enable_profanity_filter?: Bool;
18
+ locked_alpha?: Float;
19
+ font_scale_factor?: Float;
20
+ localize?: Bool;
21
+ line_padding?: Float;
22
+ font_size?: Var | FontSize;
23
+ font_type?: Var | FontType;
24
+ backup_font_type?: Var | FontType;
25
+ text_alignment?: Var | Anchor;
26
+ }