asajs 3.0.2 → 3.0.5
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/dist/cjs/compilers/BindingCompiler.js +458 -0
- package/dist/cjs/compilers/BindingFunctions.js +267 -0
- package/dist/cjs/compilers/Compiler.js +158 -0
- package/dist/cjs/compilers/Compress.js +55 -0
- package/dist/cjs/compilers/Config.js +138 -0
- package/dist/cjs/compilers/Encoder.js +90 -0
- package/dist/cjs/compilers/Installer.js +123 -0
- package/dist/cjs/compilers/PreCompile.js +86 -0
- package/dist/cjs/compilers/generator/GenerateDir.js +51 -0
- package/dist/cjs/compilers/generator/JsonBuilder.js +66 -0
- package/dist/cjs/compilers/generator/LangBuilder.js +65 -0
- package/dist/cjs/compilers/generator/Log.js +45 -0
- package/dist/cjs/compilers/generator/Manifest.js +63 -0
- package/dist/cjs/compilers/generator/Save.js +87 -0
- package/dist/cjs/compilers/generator/SearchFiles.js +70 -0
- package/dist/cjs/compilers/generator/Sounds.js +91 -0
- package/dist/cjs/compilers/generator/Template.js +54 -0
- package/dist/cjs/compilers/generator/UIBuilder.js +123 -0
- package/dist/cjs/compilers/reader/Audio.js +81 -0
- package/dist/cjs/compilers/reader/Color.js +65 -0
- package/dist/cjs/compilers/reader/CurrentLine.js +36 -0
- package/dist/cjs/compilers/reader/Env.js +21 -0
- package/dist/cjs/compilers/reader/GlobalVariables.js +23 -0
- package/dist/cjs/compilers/reader/Object.js +44 -0
- package/dist/cjs/compilers/reader/ReadBinding.js +67 -0
- package/dist/cjs/compilers/reader/ReadProperties.js +118 -0
- package/dist/cjs/components/AddCollectionChill.js +41 -0
- package/dist/cjs/components/Animation.js +127 -0
- package/dist/cjs/components/AnimationKeyFrame.js +49 -0
- package/dist/cjs/components/Class.js +95 -0
- package/dist/cjs/components/LocalizeText.js +59 -0
- package/dist/cjs/components/Modify.js +377 -0
- package/dist/cjs/components/Random.js +104 -0
- package/dist/cjs/components/UI.js +387 -0
- package/dist/cjs/components/Vanilla.js +57915 -0
- package/dist/cjs/index.js +291 -0
- package/dist/cjs/package.json +1 -0
- package/dist/cjs/template.js +37 -0
- package/dist/cjs/types/components/ChildIdentifier.js +16 -0
- package/dist/cjs/types/components/Identifier.js +17 -0
- package/dist/cjs/types/components/NameCallback.js +16 -0
- package/dist/cjs/types/components/UIIdentifier.js +16 -0
- package/dist/cjs/types/components/UIInterface.js +16 -0
- package/dist/cjs/types/enums/Anchor.js +39 -0
- package/dist/cjs/types/enums/AnimTypes.js +39 -0
- package/dist/cjs/types/enums/BindingCondition.js +36 -0
- package/dist/cjs/types/enums/BindingName.js +4208 -0
- package/dist/cjs/types/enums/BindingType.js +35 -0
- package/dist/cjs/types/enums/ClipDirecion.js +35 -0
- package/dist/cjs/types/enums/Collection.js +202 -0
- package/dist/cjs/types/enums/Direction.js +33 -0
- package/dist/cjs/types/enums/EasingTypes.js +62 -0
- package/dist/cjs/types/enums/EnumColor.js +37 -0
- package/dist/cjs/types/enums/FocusNavigationMode.js +34 -0
- package/dist/cjs/types/enums/FontSize.js +34 -0
- package/dist/cjs/types/enums/FontType.js +35 -0
- package/dist/cjs/types/enums/GlobalVariables.js +345 -0
- package/dist/cjs/types/enums/InputModeCondition.js +33 -0
- package/dist/cjs/types/enums/ItemAuxID.js +31 -0
- package/dist/cjs/types/enums/JsonUIArrayName.js +36 -0
- package/dist/cjs/types/enums/MappingFrom.js +81 -0
- package/dist/cjs/types/enums/MappingTo.js +248 -0
- package/dist/cjs/types/enums/MappingTypes.js +34 -0
- package/dist/cjs/types/enums/Orientation.js +32 -0
- package/dist/cjs/types/enums/Renderer.js +68 -0
- package/dist/cjs/types/enums/Rotation.js +33 -0
- package/dist/cjs/types/enums/Scope.js +32 -0
- package/dist/cjs/types/enums/TextTypes.js +33 -0
- package/dist/cjs/types/enums/TextureFileSystem.js +41 -0
- package/dist/cjs/types/enums/Types.js +57 -0
- package/dist/cjs/types/objects/Animation.js +16 -0
- package/dist/cjs/types/objects/BindingHook.js +16 -0
- package/dist/cjs/types/objects/BindingInterface.js +16 -0
- package/dist/cjs/types/objects/ButtonMapping.js +16 -0
- package/dist/cjs/types/objects/Factory.js +16 -0
- package/dist/cjs/types/objects/Installer.js +53 -0
- package/dist/cjs/types/objects/Manifest.js +56 -0
- package/dist/cjs/types/objects/Modify.js +16 -0
- package/dist/cjs/types/objects/PropertyBag.js +16 -0
- package/dist/cjs/types/objects/Sound.js +16 -0
- package/dist/cjs/types/objects/Variables.js +16 -0
- package/dist/cjs/types/objects/elements/Button.js +17 -0
- package/dist/cjs/types/objects/elements/CollectionPanel.js +17 -0
- package/dist/cjs/types/objects/elements/Custom.js +17 -0
- package/dist/cjs/types/objects/elements/Dropdown.js +17 -0
- package/dist/cjs/types/objects/elements/EditBox.js +17 -0
- package/dist/cjs/types/objects/elements/Grid.js +16 -0
- package/dist/cjs/types/objects/elements/Image.js +17 -0
- package/dist/cjs/types/objects/elements/InputPanel.js +16 -0
- package/dist/cjs/types/objects/elements/Label.js +17 -0
- package/dist/cjs/types/objects/elements/PropertiesType.js +17 -0
- package/dist/cjs/types/objects/elements/Screen.js +17 -0
- package/dist/cjs/types/objects/elements/ScrollView.js +17 -0
- package/dist/cjs/types/objects/elements/ScrollbarBox.js +17 -0
- package/dist/cjs/types/objects/elements/ScrollbarTrack.js +17 -0
- package/dist/cjs/types/objects/elements/SelectionWheel.js +17 -0
- package/dist/cjs/types/objects/elements/Slider.js +17 -0
- package/dist/cjs/types/objects/elements/SliderBox.js +17 -0
- package/dist/cjs/types/objects/elements/StackPanel.js +16 -0
- package/dist/cjs/types/objects/elements/Toggle.js +17 -0
- package/dist/cjs/types/objects/elements/TooltipTrigger.js +16 -0
- package/dist/cjs/types/objects/elements/panel.js +16 -0
- package/dist/cjs/types/objects/properties/Buttons.js +16 -0
- package/dist/cjs/types/objects/properties/CollectionIndexs.js +16 -0
- package/dist/cjs/types/objects/properties/Collections.js +16 -0
- package/dist/cjs/types/objects/properties/Controls.js +16 -0
- package/dist/cjs/types/objects/properties/Dropdowns.js +16 -0
- package/dist/cjs/types/objects/properties/Focus.js +16 -0
- package/dist/cjs/types/objects/properties/FocusContainerCustom.js +16 -0
- package/dist/cjs/types/objects/properties/Grids.js +16 -0
- package/dist/cjs/types/objects/properties/Inputs.js +16 -0
- package/dist/cjs/types/objects/properties/Layouts.js +16 -0
- package/dist/cjs/types/objects/properties/Properties.js +16 -0
- package/dist/cjs/types/objects/properties/Renderers.js +16 -0
- package/dist/cjs/types/objects/properties/Screens.js +16 -0
- package/dist/cjs/types/objects/properties/ScrollViews.js +16 -0
- package/dist/cjs/types/objects/properties/SelectionWheels.js +16 -0
- package/dist/cjs/types/objects/properties/SliderBoxs.js +16 -0
- package/dist/cjs/types/objects/properties/Sliders.js +16 -0
- package/dist/cjs/types/objects/properties/Sounds.js +16 -0
- package/dist/cjs/types/objects/properties/Specials.js +16 -0
- package/dist/cjs/types/objects/properties/Sprites.js +16 -0
- package/dist/cjs/types/objects/properties/StackPanels.js +16 -0
- package/dist/cjs/types/objects/properties/TTS.js +16 -0
- package/dist/cjs/types/objects/properties/TextEdits.js +16 -0
- package/dist/cjs/types/objects/properties/Texts.js +16 -0
- package/dist/cjs/types/objects/properties/Toggles.js +16 -0
- package/dist/cjs/types/objects/properties/TooltipTriggers.js +16 -0
- package/dist/cjs/types/objects/properties/Variables.js +16 -0
- package/dist/cjs/types/values/Any.js +16 -0
- package/dist/cjs/types/values/Binding.js +16 -0
- package/dist/cjs/types/values/Bool.js +16 -0
- package/dist/cjs/types/values/ColorVector.js +16 -0
- package/dist/cjs/types/values/ElementPath.js +16 -0
- package/dist/cjs/types/values/Hex.js +16 -0
- package/dist/cjs/types/values/Number.js +16 -0
- package/dist/cjs/types/values/RangeVector.js +16 -0
- package/dist/cjs/types/values/Str.js +16 -0
- package/dist/cjs/types/values/StringVector.js +16 -0
- package/dist/cjs/types/values/TargetElementPath.js +16 -0
- package/dist/cjs/types/values/Variable.js +16 -0
- package/dist/cjs/types/values/Vector.js +16 -0
- package/dist/esm/index.js +68470 -0
- package/dist/esm/package.json +1 -0
- package/dist/types/compilers/BindingCompiler.d.ts +44 -0
- package/dist/types/compilers/BindingFunctions.d.ts +10 -0
- package/dist/types/compilers/Compiler.d.ts +3 -0
- package/dist/types/compilers/Compress.d.ts +1 -0
- package/dist/types/compilers/Config.d.ts +95 -0
- package/dist/types/compilers/Encoder.d.ts +11 -0
- package/dist/types/compilers/Installer.d.ts +14 -0
- package/dist/types/compilers/PreCompile.d.ts +4 -0
- package/dist/types/compilers/generator/GenerateDir.d.ts +1 -0
- package/dist/types/compilers/generator/JsonBuilder.d.ts +28 -0
- package/dist/types/compilers/generator/LangBuilder.d.ts +4 -0
- package/dist/types/compilers/generator/Log.d.ts +9 -0
- package/dist/types/compilers/generator/Manifest.d.ts +21 -0
- package/dist/types/compilers/generator/Save.d.ts +16 -0
- package/dist/types/compilers/generator/SearchFiles.d.ts +11 -0
- package/dist/types/compilers/generator/Sounds.d.ts +5 -0
- package/dist/types/compilers/generator/Template.d.ts +1 -0
- package/dist/types/compilers/generator/UIBuilder.d.ts +9 -0
- package/dist/types/compilers/reader/Audio.d.ts +1 -0
- package/dist/types/compilers/reader/Color.d.ts +5 -0
- package/dist/types/compilers/reader/CurrentLine.d.ts +1 -0
- package/dist/types/compilers/reader/Env.d.ts +1 -0
- package/dist/types/compilers/reader/GlobalVariables.d.ts +1 -0
- package/dist/types/compilers/reader/Object.d.ts +11 -0
- package/dist/types/compilers/reader/ReadBinding.d.ts +6 -0
- package/dist/types/compilers/reader/ReadProperties.d.ts +3 -0
- package/dist/types/components/AddCollectionChill.d.ts +6 -0
- package/dist/types/components/Animation.d.ts +15 -0
- package/dist/types/components/AnimationKeyFrame.d.ts +10 -0
- package/dist/types/components/Class.d.ts +68 -0
- package/dist/types/components/LocalizeText.d.ts +21 -0
- package/dist/types/components/Modify.d.ts +30 -0
- package/dist/types/components/Random.d.ts +20 -0
- package/dist/types/components/UI.d.ts +89 -0
- package/dist/types/components/Vanilla.d.ts +19729 -0
- package/dist/types/index.d.ts +136 -0
- package/dist/types/template.d.ts +4 -0
- package/dist/types/types/components/ChildIdentifier.d.ts +11 -0
- package/dist/types/types/components/Identifier.d.ts +4 -0
- package/dist/types/types/components/NameCallback.d.ts +3 -0
- package/dist/types/types/components/UIIdentifier.d.ts +4 -0
- package/dist/types/types/components/UIInterface.d.ts +16 -0
- package/dist/types/types/enums/Anchor.d.ts +11 -0
- package/dist/types/types/enums/AnimTypes.d.ts +11 -0
- package/dist/types/types/enums/BindingCondition.d.ts +8 -0
- package/dist/types/types/enums/BindingName.d.ts +4180 -0
- package/dist/types/types/enums/BindingType.d.ts +7 -0
- package/dist/types/types/enums/ClipDirecion.d.ts +7 -0
- package/dist/types/types/enums/Collection.d.ts +174 -0
- package/dist/types/types/enums/Direction.d.ts +5 -0
- package/dist/types/types/enums/EasingTypes.d.ts +34 -0
- package/dist/types/types/enums/EnumColor.d.ts +9 -0
- package/dist/types/types/enums/FocusNavigationMode.d.ts +6 -0
- package/dist/types/types/enums/FontSize.d.ts +6 -0
- package/dist/types/types/enums/FontType.d.ts +7 -0
- package/dist/types/types/enums/GlobalVariables.d.ts +317 -0
- package/dist/types/types/enums/InputModeCondition.d.ts +5 -0
- package/dist/types/types/enums/ItemAuxID.d.ts +3 -0
- package/dist/types/types/enums/JsonUIArrayName.d.ts +7 -0
- package/dist/types/types/enums/MappingFrom.d.ts +53 -0
- package/dist/types/types/enums/MappingTo.d.ts +220 -0
- package/dist/types/types/enums/MappingTypes.d.ts +6 -0
- package/dist/types/types/enums/Orientation.d.ts +4 -0
- package/dist/types/types/enums/Renderer.d.ts +40 -0
- package/dist/types/types/enums/Rotation.d.ts +5 -0
- package/dist/types/types/enums/Scope.d.ts +4 -0
- package/dist/types/types/enums/TextTypes.d.ts +5 -0
- package/dist/types/types/enums/TextureFileSystem.d.ts +13 -0
- package/dist/types/types/enums/Types.d.ts +29 -0
- package/dist/types/types/objects/Animation.d.ts +36 -0
- package/dist/types/types/objects/BindingHook.d.ts +1 -0
- package/dist/types/types/objects/BindingInterface.d.ts +21 -0
- package/dist/types/types/objects/ButtonMapping.d.ts +18 -0
- package/dist/types/types/objects/Factory.d.ts +2 -0
- package/dist/types/types/objects/Installer.d.ts +26 -0
- package/dist/types/types/objects/Manifest.d.ts +74 -0
- package/dist/types/types/objects/Modify.d.ts +52 -0
- package/dist/types/types/objects/PropertyBag.d.ts +2 -0
- package/dist/types/types/objects/Sound.d.ts +8 -0
- package/dist/types/types/objects/Variables.d.ts +1 -0
- package/dist/types/types/objects/elements/Button.d.ts +4 -0
- package/dist/types/types/objects/elements/CollectionPanel.d.ts +4 -0
- package/dist/types/types/objects/elements/Custom.d.ts +5 -0
- package/dist/types/types/objects/elements/Dropdown.d.ts +4 -0
- package/dist/types/types/objects/elements/EditBox.d.ts +4 -0
- package/dist/types/types/objects/elements/Grid.d.ts +4 -0
- package/dist/types/types/objects/elements/Image.d.ts +4 -0
- package/dist/types/types/objects/elements/InputPanel.d.ts +7 -0
- package/dist/types/types/objects/elements/Label.d.ts +4 -0
- package/dist/types/types/objects/elements/PropertiesType.d.ts +45 -0
- package/dist/types/types/objects/elements/Screen.d.ts +4 -0
- package/dist/types/types/objects/elements/ScrollView.d.ts +5 -0
- package/dist/types/types/objects/elements/ScrollbarBox.d.ts +4 -0
- package/dist/types/types/objects/elements/ScrollbarTrack.d.ts +4 -0
- package/dist/types/types/objects/elements/SelectionWheel.d.ts +4 -0
- package/dist/types/types/objects/elements/Slider.d.ts +4 -0
- package/dist/types/types/objects/elements/SliderBox.d.ts +5 -0
- package/dist/types/types/objects/elements/StackPanel.d.ts +7 -0
- package/dist/types/types/objects/elements/Toggle.d.ts +4 -0
- package/dist/types/types/objects/elements/TooltipTrigger.d.ts +8 -0
- package/dist/types/types/objects/elements/panel.d.ts +6 -0
- package/dist/types/types/objects/properties/Buttons.d.ts +5 -0
- package/dist/types/types/objects/properties/CollectionIndexs.d.ts +4 -0
- package/dist/types/types/objects/properties/Collections.d.ts +6 -0
- package/dist/types/types/objects/properties/Controls.d.ts +27 -0
- package/dist/types/types/objects/properties/Dropdowns.d.ts +6 -0
- package/dist/types/types/objects/properties/Focus.d.ts +28 -0
- package/dist/types/types/objects/properties/FocusContainerCustom.d.ts +5 -0
- package/dist/types/types/objects/properties/Grids.d.ts +15 -0
- package/dist/types/types/objects/properties/Inputs.d.ts +13 -0
- package/dist/types/types/objects/properties/Layouts.d.ts +35 -0
- package/dist/types/types/objects/properties/Properties.d.ts +27 -0
- package/dist/types/types/objects/properties/Renderers.d.ts +5 -0
- package/dist/types/types/objects/properties/Screens.d.ts +23 -0
- package/dist/types/types/objects/properties/ScrollViews.d.ts +17 -0
- package/dist/types/types/objects/properties/SelectionWheels.d.ts +13 -0
- package/dist/types/types/objects/properties/SliderBoxs.d.ts +6 -0
- package/dist/types/types/objects/properties/Sliders.d.ts +23 -0
- package/dist/types/types/objects/properties/Sounds.d.ts +10 -0
- package/dist/types/types/objects/properties/Specials.d.ts +60 -0
- package/dist/types/types/objects/properties/Sprites.d.ts +33 -0
- package/dist/types/types/objects/properties/StackPanels.d.ts +5 -0
- package/dist/types/types/objects/properties/TTS.d.ts +24 -0
- package/dist/types/types/objects/properties/TextEdits.d.ts +19 -0
- package/dist/types/types/objects/properties/Texts.d.ts +26 -0
- package/dist/types/types/objects/properties/Toggles.d.ts +24 -0
- package/dist/types/types/objects/properties/TooltipTriggers.d.ts +7 -0
- package/dist/types/types/objects/properties/Variables.d.ts +3 -0
- package/dist/types/types/values/Any.d.ts +4 -0
- package/dist/types/types/values/Binding.d.ts +2 -0
- package/dist/types/types/values/Bool.d.ts +2 -0
- package/dist/types/types/values/ColorVector.d.ts +6 -0
- package/dist/types/types/values/ElementPath.d.ts +2 -0
- package/dist/types/types/values/Hex.d.ts +1 -0
- package/dist/types/types/values/Number.d.ts +4 -0
- package/dist/types/types/values/RangeVector.d.ts +5 -0
- package/dist/types/types/values/Str.d.ts +2 -0
- package/dist/types/types/values/StringVector.d.ts +6 -0
- package/dist/types/types/values/TargetElementPath.d.ts +1 -0
- package/dist/types/types/values/Variable.d.ts +1 -0
- package/dist/types/types/values/Vector.d.ts +5 -0
- package/package.json +4 -4
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import "./compilers/PreCompile";
|
|
2
|
+
import "./compilers/generator/Template";
|
|
3
|
+
export * from "./compilers/Config";
|
|
4
|
+
export * from "./components/AddCollectionChill";
|
|
5
|
+
export * from "./components/Random";
|
|
6
|
+
export * from "./components/Animation";
|
|
7
|
+
export * from "./components/Modify";
|
|
8
|
+
export * from "./components/Vanilla";
|
|
9
|
+
export * from "./components/AnimationKeyFrame";
|
|
10
|
+
export * from "./components/UI";
|
|
11
|
+
export * from "./components/LocalizeText";
|
|
12
|
+
export * from "./types/components/Identifier";
|
|
13
|
+
export * from "./types/components/UIInterface";
|
|
14
|
+
export * from "./types/components/ChildIdentifier";
|
|
15
|
+
export * from "./types/components/UIIdentifier";
|
|
16
|
+
export * from "./types/components/NameCallback";
|
|
17
|
+
export * from "./types/enums/MappingTo";
|
|
18
|
+
export * from "./types/enums/Types";
|
|
19
|
+
export * from "./types/enums/FontType";
|
|
20
|
+
export * from "./types/enums/BindingType";
|
|
21
|
+
export * from "./types/enums/EasingTypes";
|
|
22
|
+
export * from "./types/enums/Rotation";
|
|
23
|
+
export * from "./types/enums/Direction";
|
|
24
|
+
export * from "./types/enums/InputModeCondition";
|
|
25
|
+
export * from "./types/enums/BindingName";
|
|
26
|
+
export * from "./types/enums/Scope";
|
|
27
|
+
export * from "./types/enums/FocusNavigationMode";
|
|
28
|
+
export * from "./types/enums/JsonUIArrayName";
|
|
29
|
+
export * from "./types/enums/TextTypes";
|
|
30
|
+
export * from "./types/enums/Collection";
|
|
31
|
+
export * from "./types/enums/EnumColor";
|
|
32
|
+
export * from "./types/enums/BindingCondition";
|
|
33
|
+
export * from "./types/enums/Orientation";
|
|
34
|
+
export * from "./types/enums/MappingTypes";
|
|
35
|
+
export * from "./types/enums/FontSize";
|
|
36
|
+
export * from "./types/enums/ClipDirecion";
|
|
37
|
+
export * from "./types/enums/TextureFileSystem";
|
|
38
|
+
export * from "./types/enums/Renderer";
|
|
39
|
+
export * from "./types/enums/MappingFrom";
|
|
40
|
+
export * from "./types/enums/Anchor";
|
|
41
|
+
export * from "./types/enums/AnimTypes";
|
|
42
|
+
export * from "./types/objects/Manifest";
|
|
43
|
+
export * from "./types/objects/Factory";
|
|
44
|
+
export * from "./types/objects/properties/Sliders";
|
|
45
|
+
export * from "./types/objects/properties/TooltipTriggers";
|
|
46
|
+
export * from "./types/objects/properties/StackPanels";
|
|
47
|
+
export * from "./types/objects/properties/CollectionIndexs";
|
|
48
|
+
export * from "./types/objects/properties/Sounds";
|
|
49
|
+
export * from "./types/objects/properties/Screens";
|
|
50
|
+
export * from "./types/objects/properties/Collections";
|
|
51
|
+
export * from "./types/objects/properties/Inputs";
|
|
52
|
+
export * from "./types/objects/properties/ScrollViews";
|
|
53
|
+
export * from "./types/objects/properties/Focus";
|
|
54
|
+
export * from "./types/objects/properties/Properties";
|
|
55
|
+
export * from "./types/objects/properties/SelectionWheels";
|
|
56
|
+
export * from "./types/objects/properties/Texts";
|
|
57
|
+
export * from "./types/objects/properties/Grids";
|
|
58
|
+
export * from "./types/objects/properties/Specials";
|
|
59
|
+
export * from "./types/objects/properties/FocusContainerCustom";
|
|
60
|
+
export * from "./types/objects/properties/TTS";
|
|
61
|
+
export * from "./types/objects/properties/Renderers";
|
|
62
|
+
export * from "./types/objects/properties/SliderBoxs";
|
|
63
|
+
export * from "./types/objects/properties/Sprites";
|
|
64
|
+
export * from "./types/objects/properties/Layouts";
|
|
65
|
+
export * from "./types/objects/properties/Variables";
|
|
66
|
+
export * from "./types/objects/properties/Buttons";
|
|
67
|
+
export * from "./types/objects/properties/Toggles";
|
|
68
|
+
export * from "./types/objects/properties/Controls";
|
|
69
|
+
export * from "./types/objects/properties/Dropdowns";
|
|
70
|
+
export * from "./types/objects/properties/TextEdits";
|
|
71
|
+
export * from "./types/objects/Animation";
|
|
72
|
+
export * from "./types/objects/Modify";
|
|
73
|
+
export * from "./types/objects/ButtonMapping";
|
|
74
|
+
export * from "./types/objects/BindingInterface";
|
|
75
|
+
export * from "./types/objects/elements/Label";
|
|
76
|
+
export * from "./types/objects/elements/EditBox";
|
|
77
|
+
export * from "./types/objects/elements/Grid";
|
|
78
|
+
export * from "./types/objects/elements/Screen";
|
|
79
|
+
export * from "./types/objects/elements/TooltipTrigger";
|
|
80
|
+
export * from "./types/objects/elements/Slider";
|
|
81
|
+
export * from "./types/objects/elements/PropertiesType";
|
|
82
|
+
export * from "./types/objects/elements/Button";
|
|
83
|
+
export * from "./types/objects/elements/InputPanel";
|
|
84
|
+
export * from "./types/objects/elements/ScrollView";
|
|
85
|
+
export * from "./types/objects/elements/StackPanel";
|
|
86
|
+
export * from "./types/objects/elements/panel";
|
|
87
|
+
export * from "./types/objects/elements/ScrollbarTrack";
|
|
88
|
+
export * from "./types/objects/elements/SelectionWheel";
|
|
89
|
+
export * from "./types/objects/elements/SliderBox";
|
|
90
|
+
export * from "./types/objects/elements/Toggle";
|
|
91
|
+
export * from "./types/objects/elements/Custom";
|
|
92
|
+
export * from "./types/objects/elements/ScrollbarBox";
|
|
93
|
+
export * from "./types/objects/elements/Dropdown";
|
|
94
|
+
export * from "./types/objects/elements/CollectionPanel";
|
|
95
|
+
export * from "./types/objects/elements/Image";
|
|
96
|
+
export * from "./types/objects/PropertyBag";
|
|
97
|
+
export * from "./types/objects/Variables";
|
|
98
|
+
export * from "./types/objects/Sound";
|
|
99
|
+
export * from "./types/objects/BindingHook";
|
|
100
|
+
export * from "./types/objects/Installer";
|
|
101
|
+
export * from "./types/values/Number";
|
|
102
|
+
export * from "./types/values/Binding";
|
|
103
|
+
export * from "./types/values/TargetElementPath";
|
|
104
|
+
export * from "./types/values/Variable";
|
|
105
|
+
export * from "./types/values/Hex";
|
|
106
|
+
export * from "./types/values/Str";
|
|
107
|
+
export * from "./types/values/ElementPath";
|
|
108
|
+
export * from "./types/values/ColorVector";
|
|
109
|
+
export * from "./types/values/Bool";
|
|
110
|
+
export * from "./types/values/RangeVector";
|
|
111
|
+
export * from "./types/values/Any";
|
|
112
|
+
export * from "./types/values/StringVector";
|
|
113
|
+
export * from "./types/values/Vector";
|
|
114
|
+
export * from "./compilers/reader/ReadProperties";
|
|
115
|
+
export * from "./compilers/reader/CurrentLine";
|
|
116
|
+
export * from "./compilers/reader/ReadBinding";
|
|
117
|
+
export * from "./compilers/reader/Object";
|
|
118
|
+
export * from "./compilers/reader/Color";
|
|
119
|
+
export * from "./compilers/reader/Audio";
|
|
120
|
+
export * from "./compilers/BindingCompiler";
|
|
121
|
+
export * from "./compilers/Compiler";
|
|
122
|
+
export * from "./compilers/BindingFunctions";
|
|
123
|
+
export * from "./compilers/Compress";
|
|
124
|
+
export * from "./compilers/Encoder";
|
|
125
|
+
export * from "./compilers/Installer";
|
|
126
|
+
export * from "./compilers/generator/Manifest";
|
|
127
|
+
export * from "./compilers/generator/Sounds";
|
|
128
|
+
export * from "./compilers/generator/GenerateDir";
|
|
129
|
+
export * from "./compilers/generator/Save";
|
|
130
|
+
export * from "./compilers/generator/LangBuilder";
|
|
131
|
+
export * from "./compilers/generator/UIBuilder";
|
|
132
|
+
export * from "./compilers/generator/Log";
|
|
133
|
+
export * from "./compilers/generator/JsonBuilder";
|
|
134
|
+
export * from "./compilers/generator/SearchFiles";
|
|
135
|
+
export * from "./compilers/reader/Env";
|
|
136
|
+
export * from "./compilers/reader/GlobalVariables";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const env = "const env = {};\n\nmodule.exports = { env };";
|
|
2
|
+
export declare const globalVariables = "const {} = require(\"asajs\");\n\nconst global_variables = {};\n\nmodule.exports = { global_variables };";
|
|
3
|
+
export declare const config = "/**\n * Configuration object for the AsaJS build process.\n * @type {import('asajs').Config}\n */\nconst config = {\n compiler: {\n autoCompress: false,\n fileExtension: \"json\",\n encodeJson: false,\n UI: {\n nameLength: 32,\n namespaceAmount: 16,\n namespaceLength: 32,\n obfuscateName: false,\n obfuscateType: false,\n },\n },\n installer: {\n autoInstall: true,\n developEvironment: true,\n previewVersion: false,\n customPath: false,\n installPath: \"/your/minecraft/data/path\",\n },\n manifest: {\n name: \"AsaJS\",\n description: \"Build with AsaJS <3\",\n },\n};\n\nmodule.exports = { config }";
|
|
4
|
+
export declare const gitignore = "# Node packages\nnode_modules\n\n# Build Folders\n.minecraft\n.build\n.save\n\n# Build variables\nasakiyuki.env.cjs\n\n# Compress package\nMinecraft-UIBuild.mcpack";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { UI } from "../../components/UI";
|
|
2
|
+
import { Properties } from "../objects/properties/Properties";
|
|
3
|
+
import { Identifier } from "./Identifier";
|
|
4
|
+
export interface ChildIdentifier {
|
|
5
|
+
name?: string;
|
|
6
|
+
properties?: Properties;
|
|
7
|
+
extend?: string | UI | Identifier;
|
|
8
|
+
}
|
|
9
|
+
export interface ChildElement {
|
|
10
|
+
[key: string]: Properties | {};
|
|
11
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Modify } from "../../components/Modify";
|
|
2
|
+
import { UI } from "../../components/UI";
|
|
3
|
+
import { Types } from "../enums/Types";
|
|
4
|
+
import { Properties } from "../objects/properties/Properties";
|
|
5
|
+
import { Identifier } from "./Identifier";
|
|
6
|
+
export interface UIInterface extends StaticUIInterface {
|
|
7
|
+
type?: Types;
|
|
8
|
+
extends?: string | Identifier | UI | Modify;
|
|
9
|
+
}
|
|
10
|
+
export interface StaticUIInterface extends ExtendInterface {
|
|
11
|
+
properties?: Properties;
|
|
12
|
+
}
|
|
13
|
+
export interface ExtendInterface {
|
|
14
|
+
name?: string;
|
|
15
|
+
namespace?: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare enum Anchor {
|
|
2
|
+
TopLeft = "top_left",
|
|
3
|
+
TopMiddle = "top_middle",
|
|
4
|
+
TopRight = "top_right",
|
|
5
|
+
LeftMiddle = "left_middle",
|
|
6
|
+
Center = "center",
|
|
7
|
+
RightMiddle = "right_middle",
|
|
8
|
+
BottomLeft = "bottom_left",
|
|
9
|
+
BottomMiddle = "bottom_middle",
|
|
10
|
+
BottomRight = "bottom_right"
|
|
11
|
+
}
|