@wayward/types 2.11.3-beta.dev.20220123.2 → 2.11.4-beta

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 (1200) hide show
  1. package/LICENSE +20 -20
  2. package/README.md +10 -10
  3. package/definitions/cplusplus/index.d.ts +126 -126
  4. package/definitions/game/IGlobal.d.ts +91 -91
  5. package/definitions/game/Init.d.ts +20 -20
  6. package/definitions/game/Production.d.ts +10 -10
  7. package/definitions/game/audio/Audio.d.ts +76 -76
  8. package/definitions/game/audio/DefaultMusicHandler.d.ts +21 -21
  9. package/definitions/game/audio/IAudio.d.ts +76 -76
  10. package/definitions/game/audio/IMusic.d.ts +15 -15
  11. package/definitions/game/audio/Music.d.ts +13 -13
  12. package/definitions/game/audio/SoundEffects.d.ts +13 -13
  13. package/definitions/game/command/CommandManager.d.ts +35 -35
  14. package/definitions/game/command/Commands.d.ts +13 -13
  15. package/definitions/game/command/ICommand.d.ts +31 -31
  16. package/definitions/game/command/ICommandManager.d.ts +16 -16
  17. package/definitions/game/command/commands/Backup.d.ts +13 -13
  18. package/definitions/game/command/commands/Ban.d.ts +13 -13
  19. package/definitions/game/command/commands/Banned.d.ts +13 -13
  20. package/definitions/game/command/commands/Commands.d.ts +13 -13
  21. package/definitions/game/command/commands/Kick.d.ts +13 -13
  22. package/definitions/game/command/commands/Pause.d.ts +13 -13
  23. package/definitions/game/command/commands/Ping.d.ts +13 -13
  24. package/definitions/game/command/commands/Players.d.ts +13 -13
  25. package/definitions/game/command/commands/Save.d.ts +13 -13
  26. package/definitions/game/command/commands/Sync.d.ts +13 -13
  27. package/definitions/game/command/commands/Unban.d.ts +13 -13
  28. package/definitions/game/event/EventBuses.d.ts +115 -115
  29. package/definitions/game/event/EventEmitter.d.ts +95 -95
  30. package/definitions/game/event/EventManager.d.ts +45 -45
  31. package/definitions/game/game/Game.d.ts +168 -168
  32. package/definitions/game/game/IGame.d.ts +263 -263
  33. package/definitions/game/game/ILoot.d.ts +16 -16
  34. package/definitions/game/game/IObject.d.ts +54 -54
  35. package/definitions/game/game/ItemDoodadGroups.d.ts +14 -14
  36. package/definitions/game/game/ObjectManager.d.ts +31 -31
  37. package/definitions/game/game/VotingManager.d.ts +44 -44
  38. package/definitions/game/game/WorldZ.d.ts +16 -16
  39. package/definitions/game/game/biome/Biomes.d.ts +12 -12
  40. package/definitions/game/game/biome/IBiome.d.ts +74 -74
  41. package/definitions/game/game/biome/arid/Arid.d.ts +23 -23
  42. package/definitions/game/game/biome/arid/mapGen/2.10.0.d.ts +12 -12
  43. package/definitions/game/game/biome/arid/mapGen/2.11.0.d.ts +12 -12
  44. package/definitions/game/game/biome/arid/mapGen/2.9.0.d.ts +12 -12
  45. package/definitions/game/game/biome/coastal/Coastal.d.ts +23 -23
  46. package/definitions/game/game/biome/coastal/mapGen/2.10.0.d.ts +12 -12
  47. package/definitions/game/game/biome/coastal/mapGen/2.11.0.d.ts +12 -12
  48. package/definitions/game/game/biome/coastal/mapGen/2.9.0.d.ts +12 -12
  49. package/definitions/game/game/biome/iceCap/IceCap.d.ts +23 -23
  50. package/definitions/game/game/biome/iceCap/mapGen/2.10.0.d.ts +12 -12
  51. package/definitions/game/game/biome/iceCap/mapGen/2.11.0.d.ts +12 -12
  52. package/definitions/game/game/biome/iceCap/mapGen/2.9.0.d.ts +12 -12
  53. package/definitions/game/game/biome/volcanic/Volcanic.d.ts +23 -23
  54. package/definitions/game/game/biome/volcanic/mapGen/2.11.0.d.ts +12 -12
  55. package/definitions/game/game/doodad/Doodad.d.ts +280 -280
  56. package/definitions/game/game/doodad/DoodadInfo.d.ts +24 -24
  57. package/definitions/game/game/doodad/DoodadManager.d.ts +92 -92
  58. package/definitions/game/game/doodad/Doodads.d.ts +15 -15
  59. package/definitions/game/game/doodad/IDoodad.d.ts +334 -334
  60. package/definitions/game/game/entity/Entity.d.ts +147 -147
  61. package/definitions/game/game/entity/EntityManager.d.ts +32 -36
  62. package/definitions/game/game/entity/Human.d.ts +165 -154
  63. package/definitions/game/game/entity/IEntity.d.ts +172 -172
  64. package/definitions/game/game/entity/IEntityManager.d.ts +22 -23
  65. package/definitions/game/game/entity/IHuman.d.ts +266 -231
  66. package/definitions/game/game/entity/IStats.d.ts +174 -174
  67. package/definitions/game/game/entity/StatFactory.d.ts +136 -136
  68. package/definitions/game/game/entity/Stats.d.ts +167 -167
  69. package/definitions/game/game/entity/StatusEffects.d.ts +35 -35
  70. package/definitions/game/game/entity/action/Action.d.ts +89 -89
  71. package/definitions/game/game/entity/action/ActionArguments.d.ts +16 -16
  72. package/definitions/game/game/entity/action/ActionExecutor.d.ts +102 -102
  73. package/definitions/game/game/entity/action/Actions.d.ts +119 -119
  74. package/definitions/game/game/entity/action/IAction.d.ts +349 -349
  75. package/definitions/game/game/entity/action/actions/AddFuel.d.ts +14 -14
  76. package/definitions/game/game/entity/action/actions/Alter.d.ts +14 -14
  77. package/definitions/game/game/entity/action/actions/Apply.d.ts +12 -12
  78. package/definitions/game/game/entity/action/actions/AttachContainer.d.ts +14 -14
  79. package/definitions/game/game/entity/action/actions/Attack.d.ts +17 -17
  80. package/definitions/game/game/entity/action/actions/Build.d.ts +14 -14
  81. package/definitions/game/game/entity/action/actions/Butcher.d.ts +14 -14
  82. package/definitions/game/game/entity/action/actions/Cast.d.ts +15 -15
  83. package/definitions/game/game/entity/action/actions/Chop.d.ts +12 -12
  84. package/definitions/game/game/entity/action/actions/CloseContainer.d.ts +12 -12
  85. package/definitions/game/game/entity/action/actions/CloseDoor.d.ts +12 -12
  86. package/definitions/game/game/entity/action/actions/ConsumeItem.d.ts +14 -14
  87. package/definitions/game/game/entity/action/actions/CopyMap.d.ts +24 -24
  88. package/definitions/game/game/entity/action/actions/Craft.d.ts +14 -14
  89. package/definitions/game/game/entity/action/actions/CraftNew.d.ts +16 -16
  90. package/definitions/game/game/entity/action/actions/Cure.d.ts +12 -12
  91. package/definitions/game/game/entity/action/actions/DetachContainer.d.ts +13 -13
  92. package/definitions/game/game/entity/action/actions/Dig.d.ts +15 -15
  93. package/definitions/game/game/entity/action/actions/Disassemble.d.ts +15 -15
  94. package/definitions/game/game/entity/action/actions/Dismantle.d.ts +15 -15
  95. package/definitions/game/game/entity/action/actions/DrawMap.d.ts +14 -14
  96. package/definitions/game/game/entity/action/actions/DrinkInFront.d.ts +13 -13
  97. package/definitions/game/game/entity/action/actions/DrinkItem.d.ts +12 -12
  98. package/definitions/game/game/entity/action/actions/Drop.d.ts +15 -15
  99. package/definitions/game/game/entity/action/actions/Eat.d.ts +12 -12
  100. package/definitions/game/game/entity/action/actions/Enchant.d.ts +14 -14
  101. package/definitions/game/game/entity/action/actions/Enhance.d.ts +14 -14
  102. package/definitions/game/game/entity/action/actions/Equip.d.ts +14 -14
  103. package/definitions/game/game/entity/action/actions/Extinguish.d.ts +14 -14
  104. package/definitions/game/game/entity/action/actions/Fire.d.ts +12 -12
  105. package/definitions/game/game/entity/action/actions/Gather.d.ts +19 -19
  106. package/definitions/game/game/entity/action/actions/GatherLiquid.d.ts +14 -14
  107. package/definitions/game/game/entity/action/actions/GrabAll.d.ts +12 -12
  108. package/definitions/game/game/entity/action/actions/Grasp.d.ts +14 -14
  109. package/definitions/game/game/entity/action/actions/Harvest.d.ts +14 -14
  110. package/definitions/game/game/entity/action/actions/Heal.d.ts +12 -12
  111. package/definitions/game/game/entity/action/actions/HealOther.d.ts +14 -14
  112. package/definitions/game/game/entity/action/actions/Hitch.d.ts +12 -12
  113. package/definitions/game/game/entity/action/actions/Idle.d.ts +13 -13
  114. package/definitions/game/game/entity/action/actions/Ignite.d.ts +14 -14
  115. package/definitions/game/game/entity/action/actions/InterruptResponse.d.ts +14 -14
  116. package/definitions/game/game/entity/action/actions/Jump.d.ts +13 -13
  117. package/definitions/game/game/entity/action/actions/Learn.d.ts +14 -14
  118. package/definitions/game/game/entity/action/actions/Lockpick.d.ts +14 -14
  119. package/definitions/game/game/entity/action/actions/Melee.d.ts +12 -12
  120. package/definitions/game/game/entity/action/actions/Mine.d.ts +12 -12
  121. package/definitions/game/game/entity/action/actions/Move.d.ts +15 -15
  122. package/definitions/game/game/entity/action/actions/MoveItem.d.ts +17 -17
  123. package/definitions/game/game/entity/action/actions/MoveTo.d.ts +16 -16
  124. package/definitions/game/game/entity/action/actions/Navigate.d.ts +15 -15
  125. package/definitions/game/game/entity/action/actions/Offer.d.ts +14 -14
  126. package/definitions/game/game/entity/action/actions/OpenBottle.d.ts +14 -14
  127. package/definitions/game/game/entity/action/actions/OpenContainer.d.ts +12 -12
  128. package/definitions/game/game/entity/action/actions/OpenDoor.d.ts +12 -12
  129. package/definitions/game/game/entity/action/actions/Paddle.d.ts +14 -14
  130. package/definitions/game/game/entity/action/actions/Pet.d.ts +13 -13
  131. package/definitions/game/game/entity/action/actions/Pickup.d.ts +15 -15
  132. package/definitions/game/game/entity/action/actions/PickupAllItems.d.ts +13 -13
  133. package/definitions/game/game/entity/action/actions/PickupExcrement.d.ts +14 -14
  134. package/definitions/game/game/entity/action/actions/PickupItem.d.ts +13 -13
  135. package/definitions/game/game/entity/action/actions/PlaceDown.d.ts +12 -12
  136. package/definitions/game/game/entity/action/actions/Plant.d.ts +14 -14
  137. package/definitions/game/game/entity/action/actions/Pour.d.ts +14 -14
  138. package/definitions/game/game/entity/action/actions/PourOnYourself.d.ts +14 -14
  139. package/definitions/game/game/entity/action/actions/Preserve.d.ts +14 -14
  140. package/definitions/game/game/entity/action/actions/ProtectItem.d.ts +12 -12
  141. package/definitions/game/game/entity/action/actions/Read.d.ts +14 -14
  142. package/definitions/game/game/entity/action/actions/ReadMap.d.ts +14 -14
  143. package/definitions/game/game/entity/action/actions/Refine.d.ts +14 -14
  144. package/definitions/game/game/entity/action/actions/Reinforce.d.ts +14 -14
  145. package/definitions/game/game/entity/action/actions/Release.d.ts +13 -13
  146. package/definitions/game/game/entity/action/actions/Rename.d.ts +16 -16
  147. package/definitions/game/game/entity/action/actions/RenameIsland.d.ts +14 -14
  148. package/definitions/game/game/entity/action/actions/Repair.d.ts +16 -16
  149. package/definitions/game/game/entity/action/actions/Respawn.d.ts +13 -13
  150. package/definitions/game/game/entity/action/actions/Rest.d.ts +15 -15
  151. package/definitions/game/game/entity/action/actions/Rub.d.ts +14 -14
  152. package/definitions/game/game/entity/action/actions/RubClockwise.d.ts +12 -12
  153. package/definitions/game/game/entity/action/actions/RubCounterClockwise.d.ts +12 -12
  154. package/definitions/game/game/entity/action/actions/SailToCivilization.d.ts +14 -14
  155. package/definitions/game/game/entity/action/actions/SailToIsland.d.ts +106 -106
  156. package/definitions/game/game/entity/action/actions/SetDown.d.ts +14 -14
  157. package/definitions/game/game/entity/action/actions/Shoot.d.ts +12 -12
  158. package/definitions/game/game/entity/action/actions/Sleep.d.ts +12 -12
  159. package/definitions/game/game/entity/action/actions/SmotherFire.d.ts +14 -14
  160. package/definitions/game/game/entity/action/actions/Squeeze.d.ts +14 -14
  161. package/definitions/game/game/entity/action/actions/StartFire.d.ts +15 -15
  162. package/definitions/game/game/entity/action/actions/StokeFire.d.ts +14 -14
  163. package/definitions/game/game/entity/action/actions/Tame.d.ts +13 -13
  164. package/definitions/game/game/entity/action/actions/Teleport.d.ts +14 -14
  165. package/definitions/game/game/entity/action/actions/TellTime.d.ts +14 -14
  166. package/definitions/game/game/entity/action/actions/TestDepth.d.ts +14 -14
  167. package/definitions/game/game/entity/action/actions/Throw.d.ts +12 -12
  168. package/definitions/game/game/entity/action/actions/Till.d.ts +14 -14
  169. package/definitions/game/game/entity/action/actions/ToggleContainer.d.ts +14 -14
  170. package/definitions/game/game/entity/action/actions/ToggleDoor.d.ts +13 -13
  171. package/definitions/game/game/entity/action/actions/ToggleHitch.d.ts +13 -13
  172. package/definitions/game/game/entity/action/actions/ToggleProtectItem.d.ts +14 -14
  173. package/definitions/game/game/entity/action/actions/Trade.d.ts +14 -14
  174. package/definitions/game/game/entity/action/actions/Transmogrify.d.ts +14 -14
  175. package/definitions/game/game/entity/action/actions/Unequip.d.ts +14 -14
  176. package/definitions/game/game/entity/action/actions/Unhitch.d.ts +12 -12
  177. package/definitions/game/game/entity/action/actions/UnprotectItem.d.ts +12 -12
  178. package/definitions/game/game/entity/action/actions/UpdateDirection.d.ts +14 -14
  179. package/definitions/game/game/entity/action/actions/UpdateItemOrder.d.ts +14 -14
  180. package/definitions/game/game/entity/action/actions/UpdateItemQuickSlot.d.ts +14 -14
  181. package/definitions/game/game/entity/action/actions/UpdateOption.d.ts +14 -14
  182. package/definitions/game/game/entity/action/actions/Upgrade.d.ts +15 -15
  183. package/definitions/game/game/entity/action/actions/UseItem.d.ts +14 -14
  184. package/definitions/game/game/entity/action/actions/helper/ConsumeItemType.d.ts +17 -17
  185. package/definitions/game/game/entity/action/actions/helper/GatherTreasure.d.ts +23 -23
  186. package/definitions/game/game/entity/action/actions/helper/Inventories.d.ts +19 -19
  187. package/definitions/game/game/entity/action/actions/map/GetObfuscation.d.ts +17 -17
  188. package/definitions/game/game/entity/action/actions/map/MapQuality.d.ts +20 -20
  189. package/definitions/game/game/entity/creature/Creature.d.ts +138 -135
  190. package/definitions/game/game/entity/creature/CreatureManager.d.ts +86 -86
  191. package/definitions/game/game/entity/creature/CreatureSpawning.d.ts +33 -33
  192. package/definitions/game/game/entity/creature/Creatures.d.ts +16 -16
  193. package/definitions/game/game/entity/creature/ICreature.d.ts +265 -265
  194. package/definitions/game/game/entity/creature/ICreatureManager.d.ts +15 -20
  195. package/definitions/game/game/entity/creature/Pathing.d.ts +30 -30
  196. package/definitions/game/game/entity/creature/corpse/Corpse.d.ts +55 -55
  197. package/definitions/game/game/entity/creature/corpse/CorpseManager.d.ts +28 -28
  198. package/definitions/game/game/entity/creature/corpse/Corpses.d.ts +14 -14
  199. package/definitions/game/game/entity/creature/corpse/ICorpse.d.ts +41 -41
  200. package/definitions/game/game/entity/flowfield/FlowField.d.ts +42 -42
  201. package/definitions/game/game/entity/flowfield/FlowFieldDebugRenderer.d.ts +23 -23
  202. package/definitions/game/game/entity/flowfield/FlowFieldManager.d.ts +49 -49
  203. package/definitions/game/game/entity/flowfield/IFlowFieldDebugRenderer.d.ts +13 -13
  204. package/definitions/game/game/entity/flowfield/IFlowFieldManager.d.ts +11 -11
  205. package/definitions/game/game/entity/npc/INPC.d.ts +13 -13
  206. package/definitions/game/game/entity/npc/INPCs.d.ts +14 -14
  207. package/definitions/game/game/entity/npc/NPC.d.ts +132 -135
  208. package/definitions/game/game/entity/npc/NPCManager.d.ts +32 -32
  209. package/definitions/game/game/entity/npc/NPCS.d.ts +18 -18
  210. package/definitions/game/game/entity/npc/npcs/DeathKnight.d.ts +24 -24
  211. package/definitions/game/game/entity/npc/npcs/IMerchant.d.ts +12 -12
  212. package/definitions/game/game/entity/npc/npcs/Merchant.d.ts +30 -30
  213. package/definitions/game/game/entity/player/Customizations.d.ts +23 -23
  214. package/definitions/game/game/entity/player/IMessageManager.d.ts +128 -128
  215. package/definitions/game/game/entity/player/IPlayer.d.ts +361 -391
  216. package/definitions/game/game/entity/player/MessageManager.d.ts +116 -116
  217. package/definitions/game/game/entity/player/Player.d.ts +284 -286
  218. package/definitions/game/game/entity/player/PlayerDefense.d.ts +17 -17
  219. package/definitions/game/game/entity/player/PlayerManager.d.ts +58 -58
  220. package/definitions/game/game/entity/player/note/Corpse.d.ts +13 -13
  221. package/definitions/game/game/entity/player/note/NoteManager.d.ts +48 -48
  222. package/definitions/game/game/entity/player/quest/QuestManager.d.ts +94 -94
  223. package/definitions/game/game/entity/player/quest/Quests.d.ts +15 -15
  224. package/definitions/game/game/entity/player/quest/Requirements.d.ts +36 -36
  225. package/definitions/game/game/entity/player/quest/quest/Challenge.d.ts +47 -47
  226. package/definitions/game/game/entity/player/quest/quest/IQuest.d.ts +20 -20
  227. package/definitions/game/game/entity/player/quest/quest/Quest.d.ts +62 -62
  228. package/definitions/game/game/entity/player/quest/requirement/BuildRequirement.d.ts +15 -15
  229. package/definitions/game/game/entity/player/quest/requirement/CollectItemRequirement.d.ts +14 -14
  230. package/definitions/game/game/entity/player/quest/requirement/CraftRequirement.d.ts +16 -16
  231. package/definitions/game/game/entity/player/quest/requirement/DiscoverTreasureRequirement.d.ts +15 -15
  232. package/definitions/game/game/entity/player/quest/requirement/DismantleRequirement.d.ts +16 -16
  233. package/definitions/game/game/entity/player/quest/requirement/EquipRequirement.d.ts +15 -15
  234. package/definitions/game/game/entity/player/quest/requirement/IRequirement.d.ts +44 -44
  235. package/definitions/game/game/entity/player/quest/requirement/KillCreatureRequirement.d.ts +17 -17
  236. package/definitions/game/game/entity/player/quest/requirement/KillCreaturesRequirement.d.ts +16 -16
  237. package/definitions/game/game/entity/player/quest/requirement/LearnAnySkillRequirement.d.ts +13 -13
  238. package/definitions/game/game/entity/player/quest/requirement/LearnSkillRequirement.d.ts +14 -14
  239. package/definitions/game/game/entity/player/quest/requirement/LearnSkillsRequirement.d.ts +13 -13
  240. package/definitions/game/game/entity/player/quest/requirement/Requirement.d.ts +41 -41
  241. package/definitions/game/game/entity/player/quest/requirement/TameCreatureRequirement.d.ts +17 -17
  242. package/definitions/game/game/entity/player/quest/requirement/TameCreaturesRequirement.d.ts +16 -16
  243. package/definitions/game/game/entity/player/quest/requirement/helpers/IsCreatureKilledByHost.d.ts +15 -15
  244. package/definitions/game/game/entity/player/quest/requirement/helpers/IsItemMatch.d.ts +13 -13
  245. package/definitions/game/game/entity/skill/ISkills.d.ts +24 -24
  246. package/definitions/game/game/entity/skill/SkillManager.d.ts +88 -88
  247. package/definitions/game/game/entity/status/StatusEffect.d.ts +122 -122
  248. package/definitions/game/game/entity/status/handler/BadTemperatureEffect.d.ts +29 -29
  249. package/definitions/game/game/entity/status/handler/Bleeding.d.ts +23 -23
  250. package/definitions/game/game/entity/status/handler/Burned.d.ts +22 -22
  251. package/definitions/game/game/entity/status/handler/Dehydrated.d.ts +21 -21
  252. package/definitions/game/game/entity/status/handler/Encumbered.d.ts +27 -27
  253. package/definitions/game/game/entity/status/handler/Exhausted.d.ts +30 -30
  254. package/definitions/game/game/entity/status/handler/Freezing.d.ts +19 -19
  255. package/definitions/game/game/entity/status/handler/Frostbitten.d.ts +22 -22
  256. package/definitions/game/game/entity/status/handler/IBadTemperature.d.ts +17 -17
  257. package/definitions/game/game/entity/status/handler/IExhausted.d.ts +16 -16
  258. package/definitions/game/game/entity/status/handler/Overheating.d.ts +19 -19
  259. package/definitions/game/game/entity/status/handler/Poisoned.d.ts +22 -22
  260. package/definitions/game/game/entity/status/handler/Starving.d.ts +21 -21
  261. package/definitions/game/game/inspection/IInfoProvider.d.ts +38 -38
  262. package/definitions/game/game/inspection/IInspection.d.ts +44 -44
  263. package/definitions/game/game/inspection/InfoProvider.d.ts +135 -135
  264. package/definitions/game/game/inspection/InfoProviderContext.d.ts +21 -21
  265. package/definitions/game/game/inspection/Inspection.d.ts +36 -36
  266. package/definitions/game/game/inspection/InspectionTypeMap.d.ts +69 -69
  267. package/definitions/game/game/inspection/InspectionsHandler.d.ts +33 -33
  268. package/definitions/game/game/inspection/handlers/TilePositionInspection.d.ts +43 -43
  269. package/definitions/game/game/inspection/infoProviders/CollapsableInfoProvider.d.ts +34 -34
  270. package/definitions/game/game/inspection/infoProviders/ContainedItems.d.ts +28 -28
  271. package/definitions/game/game/inspection/infoProviders/Fire.d.ts +23 -23
  272. package/definitions/game/game/inspection/infoProviders/ILevel.d.ts +18 -18
  273. package/definitions/game/game/inspection/infoProviders/LabelledValue.d.ts +46 -46
  274. package/definitions/game/game/inspection/infoProviders/LevelValue.d.ts +43 -43
  275. package/definitions/game/game/inspection/infoProviders/MagicalDamageReduction.d.ts +12 -12
  276. package/definitions/game/game/inspection/infoProviders/MagicalDamageRegeneration.d.ts +12 -12
  277. package/definitions/game/game/inspection/infoProviders/MagicalProperties.d.ts +28 -28
  278. package/definitions/game/game/inspection/infoProviders/MagicalPropertyValue.d.ts +74 -74
  279. package/definitions/game/game/inspection/infoProviders/ObscuredValue.d.ts +64 -64
  280. package/definitions/game/game/inspection/infoProviders/Quality.d.ts +27 -27
  281. package/definitions/game/game/inspection/infoProviders/UnlockableRowInfoProvider.d.ts +29 -29
  282. package/definitions/game/game/inspection/infoProviders/UseInfo.d.ts +75 -75
  283. package/definitions/game/game/inspection/infoProviders/Uses.d.ts +40 -40
  284. package/definitions/game/game/inspection/infoProviders/creature/Aberrant.d.ts +21 -21
  285. package/definitions/game/game/inspection/infoProviders/creature/CreatureHealth.d.ts +17 -17
  286. package/definitions/game/game/inspection/infoProviders/creature/Happiness.d.ts +22 -22
  287. package/definitions/game/game/inspection/infoProviders/creature/ResistancesAndVulnerabilities.d.ts +25 -25
  288. package/definitions/game/game/inspection/infoProviders/doodad/DoodadCapacity.d.ts +20 -20
  289. package/definitions/game/game/inspection/infoProviders/doodad/DoodadDetails.d.ts +21 -21
  290. package/definitions/game/game/inspection/infoProviders/doodad/DoodadDurability.d.ts +23 -23
  291. package/definitions/game/game/inspection/infoProviders/doodad/DoodadUses.d.ts +21 -21
  292. package/definitions/game/game/inspection/infoProviders/doodad/Fertility.d.ts +25 -25
  293. package/definitions/game/game/inspection/infoProviders/doodad/GrowthStage.d.ts +22 -22
  294. package/definitions/game/game/inspection/infoProviders/doodad/Harvestability.d.ts +26 -26
  295. package/definitions/game/game/inspection/infoProviders/doodad/IDurability.d.ts +16 -16
  296. package/definitions/game/game/inspection/infoProviders/doodad/StillWater.d.ts +23 -23
  297. package/definitions/game/game/inspection/infoProviders/entity/Health.d.ts +23 -23
  298. package/definitions/game/game/inspection/infoProviders/item/ItemDetails.d.ts +26 -26
  299. package/definitions/game/game/inspection/infoProviders/item/ItemDurability.d.ts +27 -27
  300. package/definitions/game/game/inspection/infoProviders/item/ItemProtected.d.ts +27 -27
  301. package/definitions/game/game/inspection/infoProviders/item/ItemUses.d.ts +173 -173
  302. package/definitions/game/game/inspection/infoProviders/item/ItemWeight.d.ts +22 -22
  303. package/definitions/game/game/inspection/infoProviders/item/ItemWorth.d.ts +24 -24
  304. package/definitions/game/game/inspection/infoProviders/item/MagicalSourceTooltip.d.ts +16 -16
  305. package/definitions/game/game/inspection/infoProviders/item/SkillSourceTooltip.d.ts +13 -13
  306. package/definitions/game/game/inspection/infoProviders/item/use/ItemBuildInfo.d.ts +37 -37
  307. package/definitions/game/game/inspection/infoProviders/item/use/ItemConsumeInfo.d.ts +35 -35
  308. package/definitions/game/game/inspection/infoProviders/item/use/ItemCraftInfo.d.ts +24 -24
  309. package/definitions/game/game/inspection/infoProviders/item/use/ItemDisassembleInfo.d.ts +27 -27
  310. package/definitions/game/game/inspection/infoProviders/item/use/ItemDismantleInfo.d.ts +44 -44
  311. package/definitions/game/game/inspection/infoProviders/item/use/ItemEquipInfo.d.ts +43 -43
  312. package/definitions/game/game/inspection/infoProviders/item/use/ItemOfferInfo.d.ts +24 -24
  313. package/definitions/game/game/inspection/infoProviders/item/use/ItemRangedInfo.d.ts +25 -25
  314. package/definitions/game/game/inspection/infoProviders/item/use/ItemShootInfo.d.ts +25 -25
  315. package/definitions/game/game/inspection/infoProviders/item/use/ItemStokeInfo.d.ts +25 -25
  316. package/definitions/game/game/inspection/infoProviders/item/use/ItemTelescopyInfo.d.ts +25 -25
  317. package/definitions/game/game/inspection/infoProviders/item/use/ItemThrowInfo.d.ts +15 -15
  318. package/definitions/game/game/inspection/infoProviders/item/use/ItemTrapDamageInfo.d.ts +25 -25
  319. package/definitions/game/game/inspection/infoProviders/recipe/AdditionalRequirements.d.ts +12 -12
  320. package/definitions/game/game/inspection/infoProviders/shared/SharedLightSourceInfo.d.ts +37 -37
  321. package/definitions/game/game/inspection/infoProviders/skill/MagicalItemBonuses.d.ts +22 -22
  322. package/definitions/game/game/inspection/infoProviders/stat/DefenseInfo.d.ts +24 -24
  323. package/definitions/game/game/inspection/inspections/CorpseInspection.d.ts +25 -25
  324. package/definitions/game/game/inspection/inspections/CorpsesInspection.d.ts +24 -24
  325. package/definitions/game/game/inspection/inspections/CreatureInspection.d.ts +26 -26
  326. package/definitions/game/game/inspection/inspections/DoodadInspection.d.ts +29 -29
  327. package/definitions/game/game/inspection/inspections/EntityInspection.d.ts +18 -18
  328. package/definitions/game/game/inspection/inspections/HumanInspection.d.ts +20 -20
  329. package/definitions/game/game/inspection/inspections/IslandInspection.d.ts +30 -30
  330. package/definitions/game/game/inspection/inspections/ItemInspection.d.ts +55 -55
  331. package/definitions/game/game/inspection/inspections/ItemsInspection.d.ts +29 -29
  332. package/definitions/game/game/inspection/inspections/ListInspection.d.ts +19 -19
  333. package/definitions/game/game/inspection/inspections/MilestoneInspection.d.ts +30 -30
  334. package/definitions/game/game/inspection/inspections/NPCInspection.d.ts +20 -19
  335. package/definitions/game/game/inspection/inspections/PlayerInspection.d.ts +24 -24
  336. package/definitions/game/game/inspection/inspections/RecipeInspection.d.ts +29 -29
  337. package/definitions/game/game/inspection/inspections/SelfInspection.d.ts +33 -33
  338. package/definitions/game/game/inspection/inspections/SkillInspection.d.ts +30 -30
  339. package/definitions/game/game/inspection/inspections/StatInspection.d.ts +24 -24
  340. package/definitions/game/game/inspection/inspections/TileEventInspection.d.ts +40 -40
  341. package/definitions/game/game/inspection/inspections/TileInspection.d.ts +27 -27
  342. package/definitions/game/game/island/IIsland.d.ts +124 -124
  343. package/definitions/game/game/island/Island.d.ts +287 -281
  344. package/definitions/game/game/island/IslandManager.d.ts +45 -45
  345. package/definitions/game/game/item/IItem.d.ts +1204 -1204
  346. package/definitions/game/game/item/IItemManager.d.ts +98 -72
  347. package/definitions/game/game/item/Item.d.ts +290 -291
  348. package/definitions/game/game/item/ItemManager.d.ts +270 -270
  349. package/definitions/game/game/item/ItemMapManager.d.ts +72 -72
  350. package/definitions/game/game/item/ItemRecipeRequirementChecker.d.ts +61 -61
  351. package/definitions/game/game/item/ItemReference.d.ts +38 -38
  352. package/definitions/game/game/item/ItemReferenceManager.d.ts +21 -21
  353. package/definitions/game/game/item/Items.d.ts +16 -16
  354. package/definitions/game/game/item/LootGroups.d.ts +25 -25
  355. package/definitions/game/game/item/recipe/Crafter.d.ts +93 -93
  356. package/definitions/game/game/item/recipe/Recipe.d.ts +50 -50
  357. package/definitions/game/game/item/recipe/RecipeOutput.d.ts +19 -19
  358. package/definitions/game/game/item/recipe/RecipeOutputs.d.ts +17 -17
  359. package/definitions/game/game/item/recipe/RecipeRegistry.d.ts +23 -23
  360. package/definitions/game/game/item/recipe/RecipeRequirement.d.ts +44 -44
  361. package/definitions/game/game/item/recipe/RecipeRequirements.d.ts +23 -23
  362. package/definitions/game/game/item/recipe/output/ItemOutput.d.ts +46 -46
  363. package/definitions/game/game/item/recipe/requirement/DoodadRequirement.d.ts +28 -28
  364. package/definitions/game/game/item/recipe/requirement/FireRequirement.d.ts +20 -20
  365. package/definitions/game/game/item/recipe/requirement/ItemRequirement.d.ts +82 -82
  366. package/definitions/game/game/item/recipe/requirement/ToolRequirement.d.ts +15 -15
  367. package/definitions/game/game/magic/MagicalPropertyManager.d.ts +232 -232
  368. package/definitions/game/game/magic/MagicalPropertyType.d.ts +58 -58
  369. package/definitions/game/game/mapgen/IMapGen.d.ts +72 -72
  370. package/definitions/game/game/mapgen/MapGen.d.ts +17 -17
  371. package/definitions/game/game/mapgen/MapGenHelpers.d.ts +265 -265
  372. package/definitions/game/game/mapgen/version/2.0.0.d.ts +16 -16
  373. package/definitions/game/game/mapgen/version/2.1.0.d.ts +16 -16
  374. package/definitions/game/game/mapgen/version/2.10.0.d.ts +16 -16
  375. package/definitions/game/game/mapgen/version/2.11.0.d.ts +16 -16
  376. package/definitions/game/game/mapgen/version/2.2.0.d.ts +16 -16
  377. package/definitions/game/game/mapgen/version/2.3.0.d.ts +16 -16
  378. package/definitions/game/game/mapgen/version/2.4.0.d.ts +16 -16
  379. package/definitions/game/game/mapgen/version/2.5.0.d.ts +16 -16
  380. package/definitions/game/game/mapgen/version/2.6.0.d.ts +16 -16
  381. package/definitions/game/game/mapgen/version/2.7.0.d.ts +16 -16
  382. package/definitions/game/game/mapgen/version/2.8.0.d.ts +24 -24
  383. package/definitions/game/game/mapgen/version/2.9.0.d.ts +16 -16
  384. package/definitions/game/game/mapping/Background.d.ts +20 -20
  385. package/definitions/game/game/mapping/DrawnMap.d.ts +145 -145
  386. package/definitions/game/game/mapping/IMapConfig.d.ts +23 -23
  387. package/definitions/game/game/mapping/IMapRender.d.ts +31 -31
  388. package/definitions/game/game/mapping/IMapTile.d.ts +55 -55
  389. package/definitions/game/game/mapping/MapSprites.d.ts +28 -28
  390. package/definitions/game/game/mapping/MapTileRenderStrategies.d.ts +14 -14
  391. package/definitions/game/game/mapping/Obfuscation.d.ts +19 -19
  392. package/definitions/game/game/mapping/SavedTilesSerializer.d.ts +19 -19
  393. package/definitions/game/game/mapping/strategies/Land.d.ts +12 -12
  394. package/definitions/game/game/mapping/strategies/Random2x2Strategy.d.ts +17 -17
  395. package/definitions/game/game/mapping/strategies/Wall.d.ts +33 -33
  396. package/definitions/game/game/mapping/strategies/Water.d.ts +12 -12
  397. package/definitions/game/game/meta/AutoSave.d.ts +16 -16
  398. package/definitions/game/game/meta/DedicatedServerManager.d.ts +18 -18
  399. package/definitions/game/game/meta/IAutoSave.d.ts +18 -18
  400. package/definitions/game/game/meta/Loading.d.ts +176 -176
  401. package/definitions/game/game/meta/SaveLoad.d.ts +40 -40
  402. package/definitions/game/game/meta/prompt/IPrompt.d.ts +184 -184
  403. package/definitions/game/game/meta/prompt/PromptDescriptions.d.ts +129 -129
  404. package/definitions/game/game/meta/prompt/Prompts.d.ts +39 -39
  405. package/definitions/game/game/milestones/IMilestone.d.ts +108 -108
  406. package/definitions/game/game/milestones/MilestoneDefinition.d.ts +52 -52
  407. package/definitions/game/game/milestones/MilestoneManager.d.ts +53 -53
  408. package/definitions/game/game/milestones/Milestones.d.ts +15 -15
  409. package/definitions/game/game/options/GameOptions.d.ts +44 -44
  410. package/definitions/game/game/options/IGameOptions.d.ts +333 -333
  411. package/definitions/game/game/options/modifiers/GameplayModifier.d.ts +40 -40
  412. package/definitions/game/game/options/modifiers/GameplayModifiersManager.d.ts +34 -34
  413. package/definitions/game/game/options/modifiers/challenge/ChallengeModifier.d.ts +30 -30
  414. package/definitions/game/game/options/modifiers/challenge/ChallengeModifiers.d.ts +25 -25
  415. package/definitions/game/game/options/modifiers/challenge/IChallenge.d.ts +30 -30
  416. package/definitions/game/game/options/modifiers/challenge/modifiers/BenignityRate.d.ts +16 -16
  417. package/definitions/game/game/options/modifiers/challenge/modifiers/EternalNight.d.ts +16 -16
  418. package/definitions/game/game/options/modifiers/challenge/modifiers/HungerRate.d.ts +16 -16
  419. package/definitions/game/game/options/modifiers/challenge/modifiers/MalignityRate.d.ts +16 -16
  420. package/definitions/game/game/options/modifiers/challenge/modifiers/NoHealthRegeneration.d.ts +16 -16
  421. package/definitions/game/game/options/modifiers/challenge/modifiers/NoStaminaRegeneration.d.ts +16 -16
  422. package/definitions/game/game/options/modifiers/challenge/modifiers/NoStartingItems.d.ts +16 -16
  423. package/definitions/game/game/options/modifiers/challenge/modifiers/PermanentlyBleeding.d.ts +16 -16
  424. package/definitions/game/game/options/modifiers/challenge/modifiers/PermanentlyBurning.d.ts +16 -16
  425. package/definitions/game/game/options/modifiers/challenge/modifiers/PermanentlyPoisoned.d.ts +16 -16
  426. package/definitions/game/game/options/modifiers/challenge/modifiers/StartingMalignity.d.ts +16 -16
  427. package/definitions/game/game/options/modifiers/challenge/modifiers/ThirstRate.d.ts +16 -16
  428. package/definitions/game/game/options/modifiers/island/IslandModifier.d.ts +38 -38
  429. package/definitions/game/game/options/modifiers/island/IslandModifiers.d.ts +25 -25
  430. package/definitions/game/game/options/modifiers/island/modifiers/OverrunWithCreature.d.ts +17 -17
  431. package/definitions/game/game/options/modifiers/milestone/MilestoneModifier.d.ts +45 -45
  432. package/definitions/game/game/options/modifiers/milestone/MilestoneModifiersManager.d.ts +26 -26
  433. package/definitions/game/game/options/modifiers/milestone/modifiers/Abnormalizer.d.ts +16 -16
  434. package/definitions/game/game/options/modifiers/milestone/modifiers/Apocryphal.d.ts +16 -16
  435. package/definitions/game/game/options/modifiers/milestone/modifiers/Artificer.d.ts +16 -16
  436. package/definitions/game/game/options/modifiers/milestone/modifiers/Benevolent.d.ts +16 -16
  437. package/definitions/game/game/options/modifiers/milestone/modifiers/Boundless.d.ts +18 -18
  438. package/definitions/game/game/options/modifiers/milestone/modifiers/Challenger.d.ts +22 -22
  439. package/definitions/game/game/options/modifiers/milestone/modifiers/Chef.d.ts +16 -16
  440. package/definitions/game/game/options/modifiers/milestone/modifiers/Collector.d.ts +16 -16
  441. package/definitions/game/game/options/modifiers/milestone/modifiers/Contender.d.ts +16 -16
  442. package/definitions/game/game/options/modifiers/milestone/modifiers/Crafter.d.ts +16 -16
  443. package/definitions/game/game/options/modifiers/milestone/modifiers/DestroyerOfMagi.d.ts +16 -16
  444. package/definitions/game/game/options/modifiers/milestone/modifiers/Diverse.d.ts +16 -16
  445. package/definitions/game/game/options/modifiers/milestone/modifiers/Doctor.d.ts +16 -16
  446. package/definitions/game/game/options/modifiers/milestone/modifiers/DragonSlayer.d.ts +16 -16
  447. package/definitions/game/game/options/modifiers/milestone/modifiers/Explorer.d.ts +16 -16
  448. package/definitions/game/game/options/modifiers/milestone/modifiers/Exterminator.d.ts +18 -18
  449. package/definitions/game/game/options/modifiers/milestone/modifiers/Friendly.d.ts +15 -15
  450. package/definitions/game/game/options/modifiers/milestone/modifiers/Gardener.d.ts +16 -16
  451. package/definitions/game/game/options/modifiers/milestone/modifiers/Gatherer.d.ts +16 -16
  452. package/definitions/game/game/options/modifiers/milestone/modifiers/Grandmaster.d.ts +18 -18
  453. package/definitions/game/game/options/modifiers/milestone/modifiers/Helmsman.d.ts +16 -16
  454. package/definitions/game/game/options/modifiers/milestone/modifiers/Hunter.d.ts +16 -16
  455. package/definitions/game/game/options/modifiers/milestone/modifiers/Huntsman.d.ts +16 -16
  456. package/definitions/game/game/options/modifiers/milestone/modifiers/Locksmith.d.ts +16 -16
  457. package/definitions/game/game/options/modifiers/milestone/modifiers/Malevolent.d.ts +16 -16
  458. package/definitions/game/game/options/modifiers/milestone/modifiers/MasterOfAll.d.ts +16 -16
  459. package/definitions/game/game/options/modifiers/milestone/modifiers/Merchant.d.ts +16 -16
  460. package/definitions/game/game/options/modifiers/milestone/modifiers/Multitasker.d.ts +16 -16
  461. package/definitions/game/game/options/modifiers/milestone/modifiers/Navigator.d.ts +16 -16
  462. package/definitions/game/game/options/modifiers/milestone/modifiers/Notekeeper.d.ts +16 -16
  463. package/definitions/game/game/options/modifiers/milestone/modifiers/Operator.d.ts +16 -16
  464. package/definitions/game/game/options/modifiers/milestone/modifiers/Pacifier.d.ts +15 -15
  465. package/definitions/game/game/options/modifiers/milestone/modifiers/Prepared.d.ts +16 -16
  466. package/definitions/game/game/options/modifiers/milestone/modifiers/Pulchritudinous.d.ts +16 -16
  467. package/definitions/game/game/options/modifiers/milestone/modifiers/ReaperOfSouls.d.ts +16 -16
  468. package/definitions/game/game/options/modifiers/milestone/modifiers/Seafarer.d.ts +16 -16
  469. package/definitions/game/game/options/modifiers/milestone/modifiers/Seasoned.d.ts +14 -14
  470. package/definitions/game/game/options/modifiers/milestone/modifiers/Survivor.d.ts +14 -14
  471. package/definitions/game/game/options/modifiers/milestone/modifiers/Talented.d.ts +16 -16
  472. package/definitions/game/game/options/modifiers/milestone/modifiers/Thrower.d.ts +16 -16
  473. package/definitions/game/game/options/modifiers/milestone/modifiers/Traitor.d.ts +16 -16
  474. package/definitions/game/game/options/modifiers/milestone/modifiers/Trapper.d.ts +16 -16
  475. package/definitions/game/game/options/modifiers/milestone/modifiers/TreasureHunter.d.ts +16 -16
  476. package/definitions/game/game/options/modifiers/milestone/modifiers/Treasurer.d.ts +16 -16
  477. package/definitions/game/game/options/modifiers/milestone/modifiers/Weathered.d.ts +14 -14
  478. package/definitions/game/game/options/modifiers/milestone/modifiers/shared/StatBonusMilestoneModifier.d.ts +17 -17
  479. package/definitions/game/game/options/modifiers/milestone/modifiers/shared/TamedCreatureMilestoneModifier.d.ts +25 -25
  480. package/definitions/game/game/reference/IReferenceManager.d.ts +32 -32
  481. package/definitions/game/game/reference/ReferenceManager.d.ts +58 -58
  482. package/definitions/game/game/riddle/Riddle.d.ts +14 -14
  483. package/definitions/game/game/riddle/types/Treasure.d.ts +13 -13
  484. package/definitions/game/game/temperature/ITemperature.d.ts +106 -106
  485. package/definitions/game/game/temperature/TemperatureManager.d.ts +164 -164
  486. package/definitions/game/game/tile/ITerrain.d.ts +278 -278
  487. package/definitions/game/game/tile/ITileEvent.d.ts +110 -110
  488. package/definitions/game/game/tile/TerrainResources.d.ts +24 -24
  489. package/definitions/game/game/tile/TerrainTemplates.d.ts +13 -13
  490. package/definitions/game/game/tile/Terrains.d.ts +19 -19
  491. package/definitions/game/game/tile/TileEvent.d.ts +71 -71
  492. package/definitions/game/game/tile/TileEventManager.d.ts +81 -81
  493. package/definitions/game/game/tile/TileEvents.d.ts +14 -14
  494. package/definitions/game/game/tile/events/Acid.d.ts +12 -12
  495. package/definitions/game/game/tile/events/Blood.d.ts +13 -13
  496. package/definitions/game/game/tile/events/Excrement.d.ts +16 -16
  497. package/definitions/game/game/tile/events/Fire.d.ts +13 -13
  498. package/definitions/game/game/tile/events/Fungus.d.ts +13 -13
  499. package/definitions/game/game/tile/events/IFire.d.ts +39 -39
  500. package/definitions/game/game/tile/events/MeltingTile.d.ts +29 -29
  501. package/definitions/game/game/tile/events/Puddles.d.ts +22 -22
  502. package/definitions/game/game/tile/events/Tumbleweed.d.ts +13 -13
  503. package/definitions/game/game/time/ITimeManager.d.ts +47 -47
  504. package/definitions/game/game/time/TimeManager.d.ts +138 -138
  505. package/definitions/game/language/Dictionary.d.ts +107 -107
  506. package/definitions/game/language/DictionaryMap.d.ts +377 -377
  507. package/definitions/game/language/English.d.ts +13 -13
  508. package/definitions/game/language/ITranslation.d.ts +41 -41
  509. package/definitions/game/language/Language.d.ts +15 -15
  510. package/definitions/game/language/LanguageExtension.d.ts +14 -14
  511. package/definitions/game/language/LanguageJsonSchemaGenerator.d.ts +133 -133
  512. package/definitions/game/language/LanguageManager.d.ts +95 -95
  513. package/definitions/game/language/Translation.d.ts +127 -127
  514. package/definitions/game/language/TranslationsProvider.d.ts +53 -53
  515. package/definitions/game/language/dictionary/GameEndMessage.d.ts +14 -14
  516. package/definitions/game/language/dictionary/HumanName.d.ts +16 -16
  517. package/definitions/game/language/dictionary/InterruptChoice.d.ts +30 -30
  518. package/definitions/game/language/dictionary/Message.d.ts +899 -899
  519. package/definitions/game/language/dictionary/Misc.d.ts +129 -129
  520. package/definitions/game/language/dictionary/MultiplayerCompatibility.d.ts +16 -16
  521. package/definitions/game/language/dictionary/Note.d.ts +42 -42
  522. package/definitions/game/language/dictionary/UiTranslation.d.ts +786 -786
  523. package/definitions/game/language/english/DamageTypes.d.ts +13 -13
  524. package/definitions/game/language/english/Stats.d.ts +13 -13
  525. package/definitions/game/language/english/StatusEffects.d.ts +13 -13
  526. package/definitions/game/language/english/Terrains.d.ts +13 -13
  527. package/definitions/game/language/english/TileEvents.d.ts +13 -13
  528. package/definitions/game/language/english/creature/Corpses.d.ts +13 -13
  529. package/definitions/game/language/english/creature/Creatures.d.ts +13 -13
  530. package/definitions/game/language/english/doodad/DoodadGroups.d.ts +13 -13
  531. package/definitions/game/language/english/doodad/Doodads.d.ts +13 -13
  532. package/definitions/game/language/english/doodad/Growth.d.ts +12 -12
  533. package/definitions/game/language/english/doodad/GrowthFungus.d.ts +12 -12
  534. package/definitions/game/language/english/game/Actions.d.ts +13 -13
  535. package/definitions/game/language/english/game/Biomes.d.ts +13 -13
  536. package/definitions/game/language/english/game/Challenges.d.ts +13 -13
  537. package/definitions/game/language/english/game/Directions.d.ts +13 -13
  538. package/definitions/game/language/english/game/DurabilityLevels.d.ts +13 -13
  539. package/definitions/game/language/english/game/FireStages.d.ts +13 -13
  540. package/definitions/game/language/english/game/GameModes.d.ts +13 -13
  541. package/definitions/game/language/english/game/IslandModifiers.d.ts +13 -13
  542. package/definitions/game/language/english/game/MapQualities.d.ts +13 -13
  543. package/definitions/game/language/english/game/Messages.d.ts +13 -13
  544. package/definitions/game/language/english/game/PartsOfDay.d.ts +13 -13
  545. package/definitions/game/language/english/game/Qualities.d.ts +13 -13
  546. package/definitions/game/language/english/game/Riddles.d.ts +13 -13
  547. package/definitions/game/language/english/game/TemperatureTypes.d.ts +13 -13
  548. package/definitions/game/language/english/game/WorldLayers.d.ts +13 -13
  549. package/definitions/game/language/english/game/islandName/IslandName.d.ts +17 -17
  550. package/definitions/game/language/english/game/islandName/IslandNameBiomeDescriptors.d.ts +13 -13
  551. package/definitions/game/language/english/game/islandName/IslandNameModifierDescriptors.d.ts +13 -13
  552. package/definitions/game/language/english/game/islandName/IslandNameOverrunWithCreatureDescriptors.d.ts +13 -13
  553. package/definitions/game/language/english/item/Books.d.ts +13 -13
  554. package/definitions/game/language/english/item/CraftEfficacies.d.ts +13 -13
  555. package/definitions/game/language/english/item/ItemGroups.d.ts +13 -13
  556. package/definitions/game/language/english/item/Items.d.ts +13 -13
  557. package/definitions/game/language/english/item/MagicalPropertyTypes.d.ts +13 -13
  558. package/definitions/game/language/english/item/RecipeLevels.d.ts +13 -13
  559. package/definitions/game/language/english/misc/Commands.d.ts +13 -13
  560. package/definitions/game/language/english/misc/InspectTypes.d.ts +13 -13
  561. package/definitions/game/language/english/misc/MiscTranslations.d.ts +13 -13
  562. package/definitions/game/language/english/misc/ModProvides.d.ts +13 -13
  563. package/definitions/game/language/english/misc/ModTypes.d.ts +13 -13
  564. package/definitions/game/language/english/misc/Numbers.d.ts +55 -55
  565. package/definitions/game/language/english/misc/Sources.d.ts +13 -13
  566. package/definitions/game/language/english/npc/NPCs.d.ts +13 -13
  567. package/definitions/game/language/english/player/BadTemperatureLevels.d.ts +13 -13
  568. package/definitions/game/language/english/player/EquipEffects.d.ts +13 -13
  569. package/definitions/game/language/english/player/ExhaustionLevels.d.ts +13 -13
  570. package/definitions/game/language/english/player/Milestones.d.ts +14 -14
  571. package/definitions/game/language/english/player/Names.d.ts +13 -13
  572. package/definitions/game/language/english/player/Notes.d.ts +12 -12
  573. package/definitions/game/language/english/player/Skills.d.ts +13 -13
  574. package/definitions/game/language/english/player/Slot.d.ts +13 -13
  575. package/definitions/game/language/english/player/WeightStatuses.d.ts +13 -13
  576. package/definitions/game/language/english/player/quest/Quests.d.ts +13 -13
  577. package/definitions/game/language/english/player/quest/Requirements.d.ts +13 -13
  578. package/definitions/game/language/english/ui/AutoSaveOptions.d.ts +13 -13
  579. package/definitions/game/language/english/ui/BindableTypes.d.ts +13 -13
  580. package/definitions/game/language/english/ui/Bindables.d.ts +13 -13
  581. package/definitions/game/language/english/ui/ChangelogSections.d.ts +13 -13
  582. package/definitions/game/language/english/ui/Dialogs.d.ts +13 -13
  583. package/definitions/game/language/english/ui/DrawnMapThemes.d.ts +13 -13
  584. package/definitions/game/language/english/ui/GameEndMessages.d.ts +13 -13
  585. package/definitions/game/language/english/ui/HelpArticles.d.ts +13 -13
  586. package/definitions/game/language/english/ui/InfoDisplayLevels.d.ts +13 -13
  587. package/definitions/game/language/english/ui/Inputs.d.ts +12 -12
  588. package/definitions/game/language/english/ui/Levels.d.ts +13 -13
  589. package/definitions/game/language/english/ui/Macros.d.ts +12 -12
  590. package/definitions/game/language/english/ui/MenuBarButtons.d.ts +13 -13
  591. package/definitions/game/language/english/ui/MessagesDefaultFilters.d.ts +13 -13
  592. package/definitions/game/language/english/ui/MessagesTimestampModes.d.ts +13 -13
  593. package/definitions/game/language/english/ui/MilestoneModifierGroups.d.ts +13 -13
  594. package/definitions/game/language/english/ui/ModLoadErrors.d.ts +13 -13
  595. package/definitions/game/language/english/ui/MultiplayerCompatibilities.d.ts +13 -13
  596. package/definitions/game/language/english/ui/MusicPlaylists.d.ts +13 -13
  597. package/definitions/game/language/english/ui/PowerModes.d.ts +13 -13
  598. package/definitions/game/language/english/ui/TeamMemberResponsibilities.d.ts +13 -13
  599. package/definitions/game/language/english/ui/UiTranslations.d.ts +13 -13
  600. package/definitions/game/language/english/ui/UnlockedRecipesStrategies.d.ts +13 -13
  601. package/definitions/game/language/english/ui/Websites.d.ts +13 -13
  602. package/definitions/game/language/english/ui/interrupt/InterruptChoices.d.ts +13 -13
  603. package/definitions/game/language/english/ui/interrupt/Loading.d.ts +13 -13
  604. package/definitions/game/language/english/ui/interrupt/ModLoadFailureReasons.d.ts +13 -13
  605. package/definitions/game/language/english/ui/interrupt/MultiplayerDisconnectReasons.d.ts +13 -13
  606. package/definitions/game/language/english/ui/interrupt/MultiplayerJoinServerRetryReason.d.ts +13 -13
  607. package/definitions/game/language/english/ui/interrupt/MultiplayerUnableToJoinReason.d.ts +13 -13
  608. package/definitions/game/language/english/ui/interrupt/Prompts.d.ts +13 -13
  609. package/definitions/game/language/english/ui/interrupt/SaveImportErrorReasons.d.ts +13 -13
  610. package/definitions/game/language/english/ui/quadrant/QuadrantComponentContextMenuActions.d.ts +13 -13
  611. package/definitions/game/language/english/ui/quadrant/QuadrantComponentMap.d.ts +21 -21
  612. package/definitions/game/language/english/ui/quadrant/QuadrantComponents.d.ts +13 -13
  613. package/definitions/game/language/english/ui/quadrant/UiQuadrants.d.ts +13 -13
  614. package/definitions/game/language/english/ui/sort/CharacterSorts.d.ts +13 -13
  615. package/definitions/game/language/english/ui/sort/HighscoreSorts.d.ts +13 -13
  616. package/definitions/game/language/english/ui/sort/ModSorts.d.ts +13 -13
  617. package/definitions/game/language/english/ui/sort/SaveSlotSorts.d.ts +13 -13
  618. package/definitions/game/language/impl/TranslationImpl.d.ts +115 -115
  619. package/definitions/game/language/segment/BindSegment.d.ts +13 -13
  620. package/definitions/game/language/segment/CapitalizationSegment.d.ts +20 -20
  621. package/definitions/game/language/segment/ColorSegment.d.ts +17 -17
  622. package/definitions/game/language/segment/FormatListSegment.d.ts +17 -17
  623. package/definitions/game/language/segment/HeadingSegment.d.ts +16 -16
  624. package/definitions/game/language/segment/InterpolateArgumentSegment.d.ts +13 -13
  625. package/definitions/game/language/segment/LinkSegment.d.ts +19 -19
  626. package/definitions/game/language/segment/ListSegment.d.ts +16 -16
  627. package/definitions/game/language/segment/NumberSegment.d.ts +27 -27
  628. package/definitions/game/language/segment/RandomizationSegment.d.ts +13 -13
  629. package/definitions/game/language/segment/ReformatSegment.d.ts +13 -13
  630. package/definitions/game/language/segment/Segments.d.ts +40 -40
  631. package/definitions/game/language/segment/TextDecorationSegments.d.ts +23 -23
  632. package/definitions/game/language/segment/TooltipSegment.d.ts +18 -18
  633. package/definitions/game/language/segment/TranslationSegment.d.ts +23 -23
  634. package/definitions/game/language/utility/TranslationSorter.d.ts +49 -49
  635. package/definitions/game/mod/BaseMod.d.ts +167 -167
  636. package/definitions/game/mod/IMod.d.ts +64 -64
  637. package/definitions/game/mod/IModInfo.d.ts +98 -98
  638. package/definitions/game/mod/IModManager.d.ts +44 -44
  639. package/definitions/game/mod/InterModRegistry.d.ts +21 -21
  640. package/definitions/game/mod/InterModRegistryManager.d.ts +20 -20
  641. package/definitions/game/mod/Mod.d.ts +101 -101
  642. package/definitions/game/mod/ModManager.d.ts +121 -121
  643. package/definitions/game/mod/ModRegistry.d.ts +715 -715
  644. package/definitions/game/multiplayer/IMultiplayer.d.ts +211 -208
  645. package/definitions/game/multiplayer/Multiplayer.d.ts +197 -197
  646. package/definitions/game/multiplayer/dedicatedServer/ssh/DefaultShell.d.ts +34 -34
  647. package/definitions/game/multiplayer/dedicatedServer/ssh/ISsh.d.ts +27 -26
  648. package/definitions/game/multiplayer/dedicatedServer/ssh/ISshCommand.d.ts +52 -52
  649. package/definitions/game/multiplayer/dedicatedServer/ssh/ISshCommandManager.d.ts +16 -16
  650. package/definitions/game/multiplayer/dedicatedServer/ssh/ISshShell.d.ts +20 -20
  651. package/definitions/game/multiplayer/dedicatedServer/ssh/Shell.d.ts +47 -47
  652. package/definitions/game/multiplayer/dedicatedServer/ssh/SshCommand.d.ts +27 -27
  653. package/definitions/game/multiplayer/dedicatedServer/ssh/SshCommandManager.d.ts +23 -23
  654. package/definitions/game/multiplayer/dedicatedServer/ssh/SshServer.d.ts +24 -23
  655. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Backup.d.ts +14 -14
  656. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Ban.d.ts +14 -14
  657. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Chat.d.ts +14 -14
  658. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/End.d.ts +14 -14
  659. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Exit.d.ts +14 -14
  660. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Help.d.ts +14 -14
  661. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Kick.d.ts +14 -14
  662. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Load.d.ts +14 -14
  663. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Ls.d.ts +14 -14
  664. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Motd.d.ts +14 -14
  665. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/New.d.ts +14 -14
  666. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Save.d.ts +14 -14
  667. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Send.d.ts +14 -14
  668. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Shutdown.d.ts +14 -14
  669. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Status.d.ts +14 -14
  670. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Sync.d.ts +14 -14
  671. package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Unban.d.ts +14 -14
  672. package/definitions/game/multiplayer/matchmaking/IMatchmaking.d.ts +96 -96
  673. package/definitions/game/multiplayer/matchmaking/Matchmaking.d.ts +25 -25
  674. package/definitions/game/multiplayer/networking/Connection.d.ts +83 -83
  675. package/definitions/game/multiplayer/networking/IConnection.d.ts +74 -74
  676. package/definitions/game/multiplayer/networking/SmartConnection.d.ts +46 -46
  677. package/definitions/game/multiplayer/networking/SteamNetworkConnection.d.ts +36 -36
  678. package/definitions/game/multiplayer/networking/WebRTCConnection.d.ts +34 -34
  679. package/definitions/game/multiplayer/networking/WebSocketConnection.d.ts +25 -25
  680. package/definitions/game/multiplayer/packets/BasePacket.d.ts +100 -100
  681. package/definitions/game/multiplayer/packets/ClientPacket.d.ts +15 -15
  682. package/definitions/game/multiplayer/packets/EntityTargetedSharedPacket.d.ts +18 -18
  683. package/definitions/game/multiplayer/packets/IPacket.d.ts +63 -63
  684. package/definitions/game/multiplayer/packets/IndexedPacket.d.ts +77 -77
  685. package/definitions/game/multiplayer/packets/Packet.d.ts +40 -40
  686. package/definitions/game/multiplayer/packets/Packets.d.ts +18 -18
  687. package/definitions/game/multiplayer/packets/PlayerTargetedClientPacket.d.ts +18 -18
  688. package/definitions/game/multiplayer/packets/PlayerTargetedPacket.d.ts +18 -18
  689. package/definitions/game/multiplayer/packets/PlayerTargetedServerPacket.d.ts +16 -16
  690. package/definitions/game/multiplayer/packets/PlayerTargetedSharedPacket.d.ts +18 -18
  691. package/definitions/game/multiplayer/packets/ServerPacket.d.ts +15 -15
  692. package/definitions/game/multiplayer/packets/SharedPacket.d.ts +15 -15
  693. package/definitions/game/multiplayer/packets/client/AddPlayerPacket.d.ts +17 -17
  694. package/definitions/game/multiplayer/packets/client/CaughtUpPacket.d.ts +19 -19
  695. package/definitions/game/multiplayer/packets/client/ClearSyncPacketWaitingPacket.d.ts +18 -18
  696. package/definitions/game/multiplayer/packets/client/DisplayInterruptPacket.d.ts +19 -19
  697. package/definitions/game/multiplayer/packets/client/EmitPlayerEventPacket.d.ts +20 -20
  698. package/definitions/game/multiplayer/packets/client/HideLoadingScreenPacket.d.ts +18 -18
  699. package/definitions/game/multiplayer/packets/client/LoadIslandPacket.d.ts +18 -18
  700. package/definitions/game/multiplayer/packets/client/PausePacket.d.ts +18 -18
  701. package/definitions/game/multiplayer/packets/client/PongPacket.d.ts +16 -16
  702. package/definitions/game/multiplayer/packets/client/ReadyPlayerPacket.d.ts +15 -15
  703. package/definitions/game/multiplayer/packets/client/RemovePlayerPacket.d.ts +17 -17
  704. package/definitions/game/multiplayer/packets/client/SendMessagePacket.d.ts +20 -20
  705. package/definitions/game/multiplayer/packets/client/SetPlayerZPacket.d.ts +16 -16
  706. package/definitions/game/multiplayer/packets/client/ShowLoadingScreenPacket.d.ts +20 -20
  707. package/definitions/game/multiplayer/packets/client/SynchronizeGameStatePacket.d.ts +18 -18
  708. package/definitions/game/multiplayer/packets/client/SynchronizeStatesPacket.d.ts +17 -17
  709. package/definitions/game/multiplayer/packets/client/TickPacket.d.ts +17 -17
  710. package/definitions/game/multiplayer/packets/client/WorldPacket.d.ts +20 -20
  711. package/definitions/game/multiplayer/packets/server/AddMessageHistoryPacket.d.ts +19 -19
  712. package/definitions/game/multiplayer/packets/server/ConnectPacket.d.ts +20 -20
  713. package/definitions/game/multiplayer/packets/server/ConnectedPacket.d.ts +22 -22
  714. package/definitions/game/multiplayer/packets/server/DesyncPacket.d.ts +27 -27
  715. package/definitions/game/multiplayer/packets/server/KeepAlivePacket.d.ts +21 -21
  716. package/definitions/game/multiplayer/packets/server/LogsPacket.d.ts +19 -0
  717. package/definitions/game/multiplayer/packets/server/PingPacket.d.ts +17 -17
  718. package/definitions/game/multiplayer/packets/server/ReadyPacket.d.ts +22 -22
  719. package/definitions/game/multiplayer/packets/server/UiDataUpdatePacket.d.ts +18 -18
  720. package/definitions/game/multiplayer/packets/server/UpdateDialogInfoPacket.d.ts +20 -20
  721. package/definitions/game/multiplayer/packets/server/UpdateMovementIntentPacket.d.ts +18 -18
  722. package/definitions/game/multiplayer/packets/server/UpdateQuickSlotInfoPacket.d.ts +20 -20
  723. package/definitions/game/multiplayer/packets/shared/ActionPacket.d.ts +27 -27
  724. package/definitions/game/multiplayer/packets/shared/ChatMessagePacket.d.ts +18 -18
  725. package/definitions/game/multiplayer/packets/shared/DisconnectPacket.d.ts +19 -19
  726. package/definitions/game/multiplayer/packets/shared/DiscoverRecipePacket.d.ts +21 -21
  727. package/definitions/game/multiplayer/packets/shared/LogsPacket.d.ts +20 -20
  728. package/definitions/game/multiplayer/packets/shared/MarkAsExploredPacket.d.ts +18 -18
  729. package/definitions/game/multiplayer/packets/shared/UpdateMovementIntentPacket.d.ts +18 -0
  730. package/definitions/game/multiplayer/packets/shared/UpdateMultiplayerOptionsPacket.d.ts +18 -18
  731. package/definitions/game/multiplayer/packets/shared/UpdateWalkPathPacket.d.ts +20 -20
  732. package/definitions/game/renderer/CompiledProgram.d.ts +30 -30
  733. package/definitions/game/renderer/Decorations.d.ts +83 -83
  734. package/definitions/game/renderer/IRenderer.d.ts +107 -106
  735. package/definitions/game/renderer/ISpriteInfo.d.ts +20 -20
  736. package/definitions/game/renderer/ITextureDebugRenderer.d.ts +14 -14
  737. package/definitions/game/renderer/Overlays.d.ts +16 -16
  738. package/definitions/game/renderer/Renderer.d.ts +81 -81
  739. package/definitions/game/renderer/RendererConstants.d.ts +19 -19
  740. package/definitions/game/renderer/Shaders.d.ts +13 -13
  741. package/definitions/game/renderer/StatusEffectRenderer.d.ts +71 -71
  742. package/definitions/game/renderer/WebGlContext.d.ts +40 -40
  743. package/definitions/game/renderer/context/BaseRendererContext.d.ts +18 -18
  744. package/definitions/game/renderer/context/RendererContext.d.ts +22 -22
  745. package/definitions/game/renderer/context/RendererOrigin.d.ts +60 -59
  746. package/definitions/game/renderer/exploreMap/ByteGrid.d.ts +22 -22
  747. package/definitions/game/renderer/exploreMap/ExploreMap.d.ts +22 -22
  748. package/definitions/game/renderer/fieldOfView/FieldOfView.d.ts +85 -84
  749. package/definitions/game/renderer/fieldOfView/FieldOfViewDebugRenderer.d.ts +23 -23
  750. package/definitions/game/renderer/fieldOfView/IByteGrid.d.ts +21 -21
  751. package/definitions/game/renderer/fieldOfView/IFieldOfView.d.ts +25 -25
  752. package/definitions/game/renderer/notifier/INotifier.d.ts +50 -49
  753. package/definitions/game/renderer/notifier/Notifier.d.ts +45 -45
  754. package/definitions/game/renderer/particle/IParticle.d.ts +16 -16
  755. package/definitions/game/renderer/particle/Particle.d.ts +41 -41
  756. package/definitions/game/renderer/particle/Particles.d.ts +14 -14
  757. package/definitions/game/renderer/spriteBatch/ISpriteBatch.d.ts +13 -13
  758. package/definitions/game/renderer/spriteBatch/SpriteBatch.d.ts +40 -40
  759. package/definitions/game/renderer/tile/TerrainTileInfo.d.ts +67 -67
  760. package/definitions/game/renderer/tile/TileAdaptors.d.ts +45 -45
  761. package/definitions/game/renderer/tile/TileLayer.d.ts +61 -61
  762. package/definitions/game/renderer/tile/adaptors/Default.d.ts +21 -21
  763. package/definitions/game/renderer/tile/adaptors/Fence.d.ts +18 -18
  764. package/definitions/game/renderer/tile/adaptors/Floor.d.ts +18 -18
  765. package/definitions/game/renderer/tile/adaptors/Lava.d.ts +18 -18
  766. package/definitions/game/renderer/tile/adaptors/Mountain.d.ts +20 -20
  767. package/definitions/game/renderer/tile/adaptors/MountainGround.d.ts +18 -18
  768. package/definitions/game/renderer/tile/adaptors/Till.d.ts +17 -17
  769. package/definitions/game/renderer/tile/adaptors/Wall.d.ts +18 -18
  770. package/definitions/game/renderer/tile/adaptors/Water.d.ts +19 -19
  771. package/definitions/game/renderer/tile/atlas/ITileAtlas.d.ts +52 -52
  772. package/definitions/game/renderer/tile/atlas/TileAtlas.d.ts +58 -58
  773. package/definitions/game/renderer/world/IWorldLayer.d.ts +41 -41
  774. package/definitions/game/renderer/world/IWorldRenderer.d.ts +54 -54
  775. package/definitions/game/renderer/world/World.d.ts +41 -41
  776. package/definitions/game/renderer/world/WorldLayer.d.ts +52 -52
  777. package/definitions/game/renderer/world/WorldLayerRenderer.d.ts +82 -82
  778. package/definitions/game/renderer/world/WorldRenderer.d.ts +225 -225
  779. package/definitions/game/replay/IReplayLogEntry.d.ts +28 -28
  780. package/definitions/game/replay/ReplayLogEntry.d.ts +31 -31
  781. package/definitions/game/replay/ReplayManager.d.ts +43 -43
  782. package/definitions/game/resource/IResourceLoader.d.ts +56 -56
  783. package/definitions/game/resource/IResourcePath.d.ts +22 -22
  784. package/definitions/game/resource/ISpriteAtlas.d.ts +12 -12
  785. package/definitions/game/resource/ImageOverrides.d.ts +15 -15
  786. package/definitions/game/resource/ResourceLoader.d.ts +77 -77
  787. package/definitions/game/resource/ResourcePath.d.ts +66 -66
  788. package/definitions/game/resource/SpriteAtlas.d.ts +36 -36
  789. package/definitions/game/resource/SpriteInfo.d.ts +21 -21
  790. package/definitions/game/resource/SpritePack.d.ts +23 -23
  791. package/definitions/game/resource/SpritePacker.d.ts +50 -50
  792. package/definitions/game/save/ISaveManager.d.ts +90 -90
  793. package/definitions/game/save/SaveManager.d.ts +135 -135
  794. package/definitions/game/save/clientStore/ClientData.d.ts +15 -15
  795. package/definitions/game/save/clientStore/ClientStore.d.ts +20 -20
  796. package/definitions/game/save/clientStore/IClientStore.d.ts +25 -25
  797. package/definitions/game/save/clientStore/clientData/ExploredMap.d.ts +23 -23
  798. package/definitions/game/save/clientStore/clientData/UiData.d.ts +19 -19
  799. package/definitions/game/save/data/ISaveDataGlobal.d.ts +152 -152
  800. package/definitions/game/save/data/SaveData.d.ts +42 -42
  801. package/definitions/game/save/data/SaveDataGlobal.d.ts +53 -53
  802. package/definitions/game/save/datastorage/FileDataStorage.d.ts +29 -29
  803. package/definitions/game/save/datastorage/IAsyncDataStorage.d.ts +23 -23
  804. package/definitions/game/save/datastorage/IDataStorage.d.ts +16 -16
  805. package/definitions/game/save/datastorage/IndexedDbDataStorage.d.ts +40 -40
  806. package/definitions/game/save/datastorage/LocalStorageDataStorage.d.ts +29 -29
  807. package/definitions/game/save/serializer/ISerializer.d.ts +146 -146
  808. package/definitions/game/save/serializer/IStringTokenizer.d.ts +12 -12
  809. package/definitions/game/save/serializer/PropertiesToSerialize.d.ts +19 -19
  810. package/definitions/game/save/serializer/Serializer.d.ts +67 -67
  811. package/definitions/game/save/serializer/StringTokenizer.d.ts +44 -44
  812. package/definitions/game/save/upgrade/UpgradeGame.d.ts +11 -11
  813. package/definitions/game/save/upgrade/UpgradeIsland.d.ts +16 -16
  814. package/definitions/game/save/upgrade/UpgradePlayer.d.ts +17 -17
  815. package/definitions/game/save/upgrade/UpgradeSaveDataGlobal.d.ts +12 -12
  816. package/definitions/game/steamworks/ISteamworks.d.ts +43 -43
  817. package/definitions/game/steamworks/Steamworks.d.ts +192 -192
  818. package/definitions/game/typings/jquery.d.ts +2960 -2960
  819. package/definitions/game/typings/jqueryui.d.ts +1618 -1618
  820. package/definitions/game/ui/IUi.d.ts +47 -47
  821. package/definitions/game/ui/LoadingBridge.d.ts +22 -22
  822. package/definitions/game/ui/PromptsBridge.d.ts +28 -28
  823. package/definitions/game/ui/SaveDropHandler.d.ts +33 -33
  824. package/definitions/game/ui/ServerJoinHandler.d.ts +17 -17
  825. package/definitions/game/ui/Ui.d.ts +100 -100
  826. package/definitions/game/ui/UiExperiments.d.ts +24 -24
  827. package/definitions/game/ui/component/Article.d.ts +14 -14
  828. package/definitions/game/ui/component/Block.d.ts +18 -18
  829. package/definitions/game/ui/component/BlockRow.d.ts +20 -20
  830. package/definitions/game/ui/component/Button.d.ts +42 -42
  831. package/definitions/game/ui/component/CheckButton.d.ts +39 -39
  832. package/definitions/game/ui/component/CheckButtonRange.d.ts +35 -35
  833. package/definitions/game/ui/component/ChoiceList.d.ts +48 -48
  834. package/definitions/game/ui/component/Component.d.ts +332 -332
  835. package/definitions/game/ui/component/ContextMenu.d.ts +67 -67
  836. package/definitions/game/ui/component/Details.d.ts +27 -27
  837. package/definitions/game/ui/component/Divider.d.ts +14 -14
  838. package/definitions/game/ui/component/Dropdown.d.ts +80 -80
  839. package/definitions/game/ui/component/EnableDisableAllRow.d.ts +21 -21
  840. package/definitions/game/ui/component/EnumContextMenu.d.ts +27 -27
  841. package/definitions/game/ui/component/FilterRow.d.ts +14 -14
  842. package/definitions/game/ui/component/GameIcons.d.ts +57 -57
  843. package/definitions/game/ui/component/GroupDropdown.d.ts +48 -48
  844. package/definitions/game/ui/component/HorizontalLine.d.ts +14 -14
  845. package/definitions/game/ui/component/IComponent.d.ts +124 -124
  846. package/definitions/game/ui/component/IThreeStateButton.d.ts +19 -19
  847. package/definitions/game/ui/component/Input.d.ts +91 -91
  848. package/definitions/game/ui/component/InputButton.d.ts +34 -34
  849. package/definitions/game/ui/component/InputRow.d.ts +31 -31
  850. package/definitions/game/ui/component/LabelledRow.d.ts +22 -22
  851. package/definitions/game/ui/component/Lightbox.d.ts +26 -26
  852. package/definitions/game/ui/component/List.d.ts +22 -22
  853. package/definitions/game/ui/component/RangeInput.d.ts +47 -47
  854. package/definitions/game/ui/component/RangeInputValueDisplay.d.ts +18 -18
  855. package/definitions/game/ui/component/RangeRow.d.ts +41 -41
  856. package/definitions/game/ui/component/Refreshable.d.ts +16 -16
  857. package/definitions/game/ui/component/RowSection.d.ts +14 -14
  858. package/definitions/game/ui/component/SortRow.d.ts +44 -44
  859. package/definitions/game/ui/component/Text.d.ts +76 -76
  860. package/definitions/game/ui/component/Textarea.d.ts +14 -14
  861. package/definitions/game/ui/component/ThreeStateButton.d.ts +46 -46
  862. package/definitions/game/ui/component/WarningRow.d.ts +24 -24
  863. package/definitions/game/ui/component/dropdown/CorpseDropdown.d.ts +17 -17
  864. package/definitions/game/ui/component/dropdown/CreatureDropdown.d.ts +16 -16
  865. package/definitions/game/ui/component/dropdown/DoodadDropdown.d.ts +19 -19
  866. package/definitions/game/ui/component/dropdown/EnumDropdown.d.ts +28 -28
  867. package/definitions/game/ui/component/dropdown/IslandDropdown.d.ts +23 -23
  868. package/definitions/game/ui/component/dropdown/ItemDropdown.d.ts +20 -20
  869. package/definitions/game/ui/component/dropdown/NPCDropdown.d.ts +16 -16
  870. package/definitions/game/ui/component/dropdown/PlayerDropdown.d.ts +17 -17
  871. package/definitions/game/ui/component/dropdown/SkillDropdown.d.ts +17 -17
  872. package/definitions/game/ui/component/dropdown/TerrainDropdown.d.ts +16 -16
  873. package/definitions/game/ui/component/dropdown/TileEventDropdown.d.ts +17 -17
  874. package/definitions/game/ui/input/Bind.d.ts +162 -162
  875. package/definitions/game/ui/input/Bindable.d.ts +150 -150
  876. package/definitions/game/ui/input/Bindables.d.ts +18 -18
  877. package/definitions/game/ui/input/Bindings.d.ts +32 -32
  878. package/definitions/game/ui/input/Defaults.d.ts +14 -14
  879. package/definitions/game/ui/input/IInput.d.ts +73 -73
  880. package/definitions/game/ui/input/InputManager.d.ts +142 -142
  881. package/definitions/game/ui/input/Macros.d.ts +24 -24
  882. package/definitions/game/ui/old/IOldUi.d.ts +86 -86
  883. package/definitions/game/ui/old/OldUi.d.ts +77 -77
  884. package/definitions/game/ui/old/functional/FunctionalSortable.d.ts +37 -37
  885. package/definitions/game/ui/old/functional/FunctionalTooltip.d.ts +11 -11
  886. package/definitions/game/ui/old/functional/IFunctionalSortable.d.ts +51 -51
  887. package/definitions/game/ui/old/functional/IFunctionalTooltip.d.ts +37 -37
  888. package/definitions/game/ui/old/screens/BaseScreen.d.ts +32 -32
  889. package/definitions/game/ui/old/screens/InGameScreen.d.ts +275 -275
  890. package/definitions/game/ui/screen/IScreen.d.ts +35 -35
  891. package/definitions/game/ui/screen/Screen.d.ts +66 -66
  892. package/definitions/game/ui/screen/ScreenManager.d.ts +96 -96
  893. package/definitions/game/ui/screen/ScreenMap.d.ts +27 -27
  894. package/definitions/game/ui/screen/screens/GameScreen.d.ts +136 -136
  895. package/definitions/game/ui/screen/screens/InterruptScreen.d.ts +22 -22
  896. package/definitions/game/ui/screen/screens/MainMenuScreen.d.ts +15 -15
  897. package/definitions/game/ui/screen/screens/SplashScreen.d.ts +19 -19
  898. package/definitions/game/ui/screen/screens/game/DialogManager.d.ts +31 -31
  899. package/definitions/game/ui/screen/screens/game/DialogMap.d.ts +40 -40
  900. package/definitions/game/ui/screen/screens/game/Dialogs.d.ts +54 -54
  901. package/definitions/game/ui/screen/screens/game/IGameScreenApi.d.ts +42 -42
  902. package/definitions/game/ui/screen/screens/game/IMessages.d.ts +24 -24
  903. package/definitions/game/ui/screen/screens/game/InspectionHandlers.d.ts +16 -16
  904. package/definitions/game/ui/screen/screens/game/InspectionsTooltipHandler.d.ts +40 -40
  905. package/definitions/game/ui/screen/screens/game/ReferenceTooltipHandler.d.ts +32 -32
  906. package/definitions/game/ui/screen/screens/game/WorldTooltipHandler.d.ts +19 -19
  907. package/definitions/game/ui/screen/screens/game/component/CanvasDialog.d.ts +114 -114
  908. package/definitions/game/ui/screen/screens/game/component/Dialog.d.ts +304 -304
  909. package/definitions/game/ui/screen/screens/game/component/GameDetails.d.ts +49 -49
  910. package/definitions/game/ui/screen/screens/game/component/IQuadrantComponent.d.ts +27 -27
  911. package/definitions/game/ui/screen/screens/game/component/InspectionsList.d.ts +48 -48
  912. package/definitions/game/ui/screen/screens/game/component/Item.d.ts +16 -16
  913. package/definitions/game/ui/screen/screens/game/component/PrerenderedCanvasDialog.d.ts +18 -18
  914. package/definitions/game/ui/screen/screens/game/component/QuadrantComponent.d.ts +77 -77
  915. package/definitions/game/ui/screen/screens/game/component/QuadrantComponentContextMenuAction.d.ts +10 -10
  916. package/definitions/game/ui/screen/screens/game/component/StaticComponent.d.ts +14 -14
  917. package/definitions/game/ui/screen/screens/game/component/TabDialog.d.ts +62 -62
  918. package/definitions/game/ui/screen/screens/game/component/TabDialogPanel.d.ts +24 -24
  919. package/definitions/game/ui/screen/screens/game/component/TileInspectionsList.d.ts +23 -23
  920. package/definitions/game/ui/screen/screens/game/dialog/BookDialog.d.ts +26 -26
  921. package/definitions/game/ui/screen/screens/game/dialog/CraftingDialog.d.ts +28 -28
  922. package/definitions/game/ui/screen/screens/game/dialog/InspectDialog.d.ts +33 -33
  923. package/definitions/game/ui/screen/screens/game/dialog/IslandsDialog.d.ts +65 -65
  924. package/definitions/game/ui/screen/screens/game/dialog/MapDialog.d.ts +53 -53
  925. package/definitions/game/ui/screen/screens/game/dialog/MessagesDialog.d.ts +18 -18
  926. package/definitions/game/ui/screen/screens/game/dialog/MessagesEditFiltersDialog.d.ts +34 -34
  927. package/definitions/game/ui/screen/screens/game/dialog/MilestonesDialog.d.ts +22 -22
  928. package/definitions/game/ui/screen/screens/game/dialog/NotesDialog.d.ts +38 -38
  929. package/definitions/game/ui/screen/screens/game/dialog/QuestDialog.d.ts +35 -35
  930. package/definitions/game/ui/screen/screens/game/dialog/QuickSettingsDialog.d.ts +18 -18
  931. package/definitions/game/ui/screen/screens/game/dialog/SkillsDialog.d.ts +26 -26
  932. package/definitions/game/ui/screen/screens/game/dialog/crafting/RecipeButton.d.ts +21 -21
  933. package/definitions/game/ui/screen/screens/game/dialog/crafting/RecipeCache.d.ts +32 -32
  934. package/definitions/game/ui/screen/screens/game/dialog/islands/IIslandsDialog.d.ts +23 -23
  935. package/definitions/game/ui/screen/screens/game/static/MenuBar.d.ts +42 -42
  936. package/definitions/game/ui/screen/screens/game/static/Messages.d.ts +133 -133
  937. package/definitions/game/ui/screen/screens/game/static/Placeholder.d.ts +20 -20
  938. package/definitions/game/ui/screen/screens/game/static/Quickslots.d.ts +20 -20
  939. package/definitions/game/ui/screen/screens/game/static/Stats.d.ts +42 -42
  940. package/definitions/game/ui/screen/screens/game/static/menubar/IMenuBarButton.d.ts +83 -83
  941. package/definitions/game/ui/screen/screens/game/static/menubar/MenuBarButton.d.ts +22 -22
  942. package/definitions/game/ui/screen/screens/game/static/menubar/MenuBarButtonDescriptions.d.ts +14 -14
  943. package/definitions/game/ui/screen/screens/game/static/menubar/descriptions/IslandsButtonDescription.d.ts +30 -30
  944. package/definitions/game/ui/screen/screens/game/static/menubar/descriptions/NotesButtonDescription.d.ts +26 -26
  945. package/definitions/game/ui/screen/screens/game/static/menubar/descriptions/QuestsButtonDescription.d.ts +10 -10
  946. package/definitions/game/ui/screen/screens/game/static/stats/Attack.d.ts +13 -13
  947. package/definitions/game/ui/screen/screens/game/static/stats/Defense.d.ts +13 -13
  948. package/definitions/game/ui/screen/screens/game/static/stats/IStatDisplayDescription.d.ts +53 -53
  949. package/definitions/game/ui/screen/screens/game/static/stats/Reputation.d.ts +13 -13
  950. package/definitions/game/ui/screen/screens/game/static/stats/StatDisplayDescriptions.d.ts +38 -38
  951. package/definitions/game/ui/screen/screens/game/static/stats/component/Stat.d.ts +98 -98
  952. package/definitions/game/ui/screen/screens/game/static/stats/component/StatusEffects.d.ts +27 -27
  953. package/definitions/game/ui/screen/screens/game/util/item/ItemStylesheet.d.ts +27 -27
  954. package/definitions/game/ui/screen/screens/game/util/item/SpriteGlow.d.ts +31 -31
  955. package/definitions/game/ui/screen/screens/game/util/movement/MovementHandler.d.ts +58 -58
  956. package/definitions/game/ui/screen/screens/game/util/movement/PathOverlayArrows.d.ts +13 -13
  957. package/definitions/game/ui/screen/screens/game/util/movement/PathOverlayFootPrints.d.ts +13 -13
  958. package/definitions/game/ui/screen/screens/game/util/movement/PathOverlayWalkDots.d.ts +13 -13
  959. package/definitions/game/ui/screen/screens/game/util/movement/WalkToTileHandler.d.ts +78 -78
  960. package/definitions/game/ui/screen/screens/menu/MenuManager.d.ts +53 -53
  961. package/definitions/game/ui/screen/screens/menu/MenuMap.d.ts +49 -49
  962. package/definitions/game/ui/screen/screens/menu/component/ChoiceListTurnModes.d.ts +22 -22
  963. package/definitions/game/ui/screen/screens/menu/component/HighscoreRow.d.ts +35 -35
  964. package/definitions/game/ui/screen/screens/menu/component/IMenu.d.ts +35 -35
  965. package/definitions/game/ui/screen/screens/menu/component/Menu.d.ts +102 -102
  966. package/definitions/game/ui/screen/screens/menu/component/MilestoneModifierCheckButton.d.ts +15 -15
  967. package/definitions/game/ui/screen/screens/menu/component/MilestoneModifiers.d.ts +28 -28
  968. package/definitions/game/ui/screen/screens/menu/component/MilestonesNotUnlockableWarning.d.ts +19 -19
  969. package/definitions/game/ui/screen/screens/menu/component/SelectionHandler.d.ts +43 -43
  970. package/definitions/game/ui/screen/screens/menu/component/Spacer.d.ts +14 -14
  971. package/definitions/game/ui/screen/screens/menu/menus/CharacterSelectionMenu.d.ts +25 -25
  972. package/definitions/game/ui/screen/screens/menu/menus/GameEndMenu.d.ts +32 -32
  973. package/definitions/game/ui/screen/screens/menu/menus/HelpArticle.d.ts +16 -16
  974. package/definitions/game/ui/screen/screens/menu/menus/HelpMenu.d.ts +22 -22
  975. package/definitions/game/ui/screen/screens/menu/menus/HighscoresMenu.d.ts +22 -22
  976. package/definitions/game/ui/screen/screens/menu/menus/InterruptMenu.d.ts +51 -51
  977. package/definitions/game/ui/screen/screens/menu/menus/JoinServerChooseModifiersMenu.d.ts +21 -21
  978. package/definitions/game/ui/screen/screens/menu/menus/JoinServerMenu.d.ts +24 -24
  979. package/definitions/game/ui/screen/screens/menu/menus/LoadGameMenu.d.ts +39 -39
  980. package/definitions/game/ui/screen/screens/menu/menus/MainMenu.d.ts +43 -43
  981. package/definitions/game/ui/screen/screens/menu/menus/MilestoneModifiersMenu.d.ts +32 -32
  982. package/definitions/game/ui/screen/screens/menu/menus/ModsMenu.d.ts +54 -54
  983. package/definitions/game/ui/screen/screens/menu/menus/MultiplayerMenu.d.ts +28 -28
  984. package/definitions/game/ui/screen/screens/menu/menus/NewGameMenu.d.ts +44 -44
  985. package/definitions/game/ui/screen/screens/menu/menus/OptionsMenu.d.ts +17 -17
  986. package/definitions/game/ui/screen/screens/menu/menus/PauseMenu.d.ts +45 -45
  987. package/definitions/game/ui/screen/screens/menu/menus/character/Character.d.ts +20 -20
  988. package/definitions/game/ui/screen/screens/menu/menus/character/CharacterButton.d.ts +25 -25
  989. package/definitions/game/ui/screen/screens/menu/menus/character/CharacterCreationMenu.d.ts +37 -37
  990. package/definitions/game/ui/screen/screens/menu/menus/character/CharacterPreview.d.ts +43 -43
  991. package/definitions/game/ui/screen/screens/menu/menus/character/HairstyleChoice.d.ts +33 -33
  992. package/definitions/game/ui/screen/screens/menu/menus/character/Swatch.d.ts +22 -22
  993. package/definitions/game/ui/screen/screens/menu/menus/help/HelpArticleDescriptions.d.ts +55 -55
  994. package/definitions/game/ui/screen/screens/menu/menus/highscores/IHighscoresMenu.d.ts +15 -15
  995. package/definitions/game/ui/screen/screens/menu/menus/loadgame/SaveSlot.d.ts +82 -82
  996. package/definitions/game/ui/screen/screens/menu/menus/main/AboutMenu.d.ts +14 -14
  997. package/definitions/game/ui/screen/screens/menu/menus/main/ChangelogMenu.d.ts +32 -32
  998. package/definitions/game/ui/screen/screens/menu/menus/main/IAbout.d.ts +39 -39
  999. package/definitions/game/ui/screen/screens/menu/menus/main/NewsMenu.d.ts +32 -32
  1000. package/definitions/game/ui/screen/screens/menu/menus/main/component/IWebsite.d.ts +21 -21
  1001. package/definitions/game/ui/screen/screens/menu/menus/main/component/SocialRow.d.ts +14 -14
  1002. package/definitions/game/ui/screen/screens/menu/menus/mods/EditInternalModsMenu.d.ts +17 -17
  1003. package/definitions/game/ui/screen/screens/menu/menus/mods/IModsMenu.d.ts +17 -17
  1004. package/definitions/game/ui/screen/screens/menu/menus/mods/ModButtonInserter.d.ts +28 -28
  1005. package/definitions/game/ui/screen/screens/menu/menus/mods/ModInfoMenu.d.ts +26 -26
  1006. package/definitions/game/ui/screen/screens/menu/menus/mods/ModMetadataInserter.d.ts +21 -21
  1007. package/definitions/game/ui/screen/screens/menu/menus/mods/ModRow.d.ts +33 -33
  1008. package/definitions/game/ui/screen/screens/menu/menus/multiplayer/ServerRow.d.ts +39 -39
  1009. package/definitions/game/ui/screen/screens/menu/menus/newgame/CustomGameOptionsMenu.d.ts +25 -25
  1010. package/definitions/game/ui/screen/screens/menu/menus/newgame/TabGameMode.d.ts +43 -43
  1011. package/definitions/game/ui/screen/screens/menu/menus/newgame/TabGameplayModifiers.d.ts +26 -26
  1012. package/definitions/game/ui/screen/screens/menu/menus/newgame/TabMultiplayer.d.ts +32 -32
  1013. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/CustomGameOptionsTab.d.ts +28 -28
  1014. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/Multiplier.d.ts +12 -12
  1015. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabCreatures.d.ts +24 -24
  1016. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabGeneral.d.ts +15 -15
  1017. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabInventory.d.ts +15 -15
  1018. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabIsland.d.ts +15 -15
  1019. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabReputation.d.ts +15 -15
  1020. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabSkills.d.ts +23 -23
  1021. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabStats.d.ts +15 -15
  1022. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabStatusEffects.d.ts +15 -15
  1023. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabTime.d.ts +28 -28
  1024. package/definitions/game/ui/screen/screens/menu/menus/options/BindRow.d.ts +48 -48
  1025. package/definitions/game/ui/screen/screens/menu/menus/options/BindingsMenu.d.ts +23 -23
  1026. package/definitions/game/ui/screen/screens/menu/menus/options/IOptionsTabs.d.ts +23 -23
  1027. package/definitions/game/ui/screen/screens/menu/menus/options/TabAudio.d.ts +23 -23
  1028. package/definitions/game/ui/screen/screens/menu/menus/options/TabControls.d.ts +18 -18
  1029. package/definitions/game/ui/screen/screens/menu/menus/options/TabDeveloper.d.ts +39 -39
  1030. package/definitions/game/ui/screen/screens/menu/menus/options/TabGameplay.d.ts +20 -20
  1031. package/definitions/game/ui/screen/screens/menu/menus/options/TabLanguage.d.ts +22 -22
  1032. package/definitions/game/ui/screen/screens/menu/menus/options/TabMods.d.ts +22 -22
  1033. package/definitions/game/ui/screen/screens/menu/menus/options/TabOther.d.ts +18 -18
  1034. package/definitions/game/ui/screen/screens/menu/menus/options/TabPerformance.d.ts +22 -22
  1035. package/definitions/game/ui/screen/screens/menu/menus/options/TabSaveData.d.ts +34 -34
  1036. package/definitions/game/ui/screen/screens/menu/menus/options/TabTooltips.d.ts +19 -19
  1037. package/definitions/game/ui/screen/screens/menu/menus/options/TabVideo.d.ts +25 -25
  1038. package/definitions/game/ui/screen/screens/menu/menus/pause/GameOptionsIcons.d.ts +40 -40
  1039. package/definitions/game/ui/screen/screens/menu/menus/pause/ModesMenu.d.ts +21 -21
  1040. package/definitions/game/ui/screen/screens/menu/menus/pause/MultiplayerOptionsMenu.d.ts +42 -42
  1041. package/definitions/game/ui/tooltip/Tooltip.d.ts +49 -49
  1042. package/definitions/game/ui/tooltip/TooltipManager.d.ts +41 -41
  1043. package/definitions/game/ui/util/ComponentManipulator.d.ts +106 -106
  1044. package/definitions/game/ui/util/Draggable.d.ts +35 -35
  1045. package/definitions/game/ui/util/HighlightManager.d.ts +39 -39
  1046. package/definitions/game/ui/util/IInterrupt.d.ts +36 -36
  1047. package/definitions/game/ui/util/ImagePath.d.ts +30 -30
  1048. package/definitions/game/ui/util/InterruptFactory.d.ts +42 -42
  1049. package/definitions/game/ui/util/Misc.d.ts +20 -20
  1050. package/definitions/game/ui/util/ScaleManager.d.ts +38 -38
  1051. package/definitions/game/ui/util/ScrollableHandler.d.ts +20 -20
  1052. package/definitions/game/ui/util/Sortable.d.ts +37 -37
  1053. package/definitions/game/utilities/Clipboard.d.ts +14 -14
  1054. package/definitions/game/utilities/Color.d.ts +42 -42
  1055. package/definitions/game/utilities/CommandLine.d.ts +15 -15
  1056. package/definitions/game/utilities/Decorators.d.ts +34 -34
  1057. package/definitions/game/utilities/Encoding.d.ts +15 -15
  1058. package/definitions/game/utilities/Errors.d.ts +18 -18
  1059. package/definitions/game/utilities/Files.d.ts +40 -40
  1060. package/definitions/game/utilities/Log.d.ts +199 -199
  1061. package/definitions/game/utilities/Registrar.d.ts +25 -25
  1062. package/definitions/game/utilities/SearchParams.d.ts +15 -0
  1063. package/definitions/game/utilities/StackTrace.d.ts +11 -11
  1064. package/definitions/game/utilities/Time.d.ts +25 -25
  1065. package/definitions/game/utilities/Timer.d.ts +25 -25
  1066. package/definitions/game/utilities/UUID.d.ts +16 -16
  1067. package/definitions/game/utilities/Uint1Array.d.ts +20 -20
  1068. package/definitions/game/utilities/Version.d.ts +37 -37
  1069. package/definitions/game/utilities/WebAssemblyHelpers.d.ts +35 -35
  1070. package/definitions/game/utilities/WebWorkerHelpers.d.ts +26 -26
  1071. package/definitions/game/utilities/class/Classes.d.ts +15 -15
  1072. package/definitions/game/utilities/class/Inject.d.ts +82 -82
  1073. package/definitions/game/utilities/collection/Arrays.d.ts +94 -94
  1074. package/definitions/game/utilities/collection/Graceful.d.ts +21 -21
  1075. package/definitions/game/utilities/collection/Iterables.d.ts +17 -17
  1076. package/definitions/game/utilities/collection/map/DefaultMap.d.ts +20 -20
  1077. package/definitions/game/utilities/collection/map/HashMap.d.ts +49 -49
  1078. package/definitions/game/utilities/collection/map/PriorityMap.d.ts +45 -45
  1079. package/definitions/game/utilities/collection/map/StackMap.d.ts +15 -15
  1080. package/definitions/game/utilities/collection/queue/PriorityQueue.d.ts +25 -25
  1081. package/definitions/game/utilities/collection/queue/Queue.d.ts +20 -20
  1082. package/definitions/game/utilities/collection/set/HashSet.d.ts +45 -45
  1083. package/definitions/game/utilities/collection/sort/Sorter.d.ts +43 -43
  1084. package/definitions/game/utilities/dependency/DependencyManager.d.ts +21 -21
  1085. package/definitions/game/utilities/dev/Performance2.d.ts +18 -18
  1086. package/definitions/game/utilities/dev/Reflection.d.ts +57 -57
  1087. package/definitions/game/utilities/enum/EnumCursor.d.ts +103 -103
  1088. package/definitions/game/utilities/enum/EnumInfo.d.ts +20 -20
  1089. package/definitions/game/utilities/enum/EnumManager.d.ts +21 -21
  1090. package/definitions/game/utilities/enum/Enums.d.ts +89 -89
  1091. package/definitions/game/utilities/enum/IEnum.d.ts +76 -76
  1092. package/definitions/game/utilities/game/TileHelpers.d.ts +122 -122
  1093. package/definitions/game/utilities/game/TilePosition.d.ts +12 -12
  1094. package/definitions/game/utilities/generic/GenericManager.d.ts +25 -25
  1095. package/definitions/game/utilities/generic/IGenericManager.d.ts +19 -19
  1096. package/definitions/game/utilities/math/Bound3.d.ts +24 -24
  1097. package/definitions/game/utilities/math/Direction.d.ts +66 -66
  1098. package/definitions/game/utilities/math/IVector.d.ts +24 -24
  1099. package/definitions/game/utilities/math/Math2.d.ts +82 -82
  1100. package/definitions/game/utilities/math/Range.d.ts +33 -33
  1101. package/definitions/game/utilities/math/Rectangle.d.ts +30 -30
  1102. package/definitions/game/utilities/math/Sampler.d.ts +23 -23
  1103. package/definitions/game/utilities/math/Vector2.d.ts +111 -111
  1104. package/definitions/game/utilities/math/Vector3.d.ts +78 -78
  1105. package/definitions/game/utilities/math/Vector4.d.ts +20 -0
  1106. package/definitions/game/utilities/memory/GarbageCollection.d.ts +15 -15
  1107. package/definitions/game/utilities/memory/ILifetime.d.ts +20 -20
  1108. package/definitions/game/utilities/memory/IMemoryLeakDetector.d.ts +14 -14
  1109. package/definitions/game/utilities/memory/MemoryLeakDetector.d.ts +29 -29
  1110. package/definitions/game/utilities/object/Descriptions.d.ts +18 -18
  1111. package/definitions/game/utilities/object/FancyJsonSerializer.d.ts +32 -32
  1112. package/definitions/game/utilities/object/Instantiate.d.ts +19 -19
  1113. package/definitions/game/utilities/object/JsonC.d.ts +22 -22
  1114. package/definitions/game/utilities/object/JsonHelper.d.ts +25 -25
  1115. package/definitions/game/utilities/object/Merge.d.ts +53 -53
  1116. package/definitions/game/utilities/object/Objects.d.ts +49 -49
  1117. package/definitions/game/utilities/object/PrettyJsonStringify.d.ts +11 -11
  1118. package/definitions/game/utilities/promise/Async.d.ts +19 -19
  1119. package/definitions/game/utilities/promise/ResolvablePromise.d.ts +19 -19
  1120. package/definitions/game/utilities/prototype/Apply.d.ts +11 -11
  1121. package/definitions/game/utilities/prototype/Array.d.ts +27 -27
  1122. package/definitions/game/utilities/prototype/Define.d.ts +22 -22
  1123. package/definitions/game/utilities/prototype/Node.d.ts +13 -13
  1124. package/definitions/game/utilities/prototype/Promise.d.ts +16 -16
  1125. package/definitions/game/utilities/prototype/RegExp.d.ts +16 -16
  1126. package/definitions/game/utilities/random/Random.d.ts +137 -137
  1127. package/definitions/game/utilities/random/RandomValueGenerator.d.ts +22 -22
  1128. package/definitions/game/utilities/random/generators/RandomItem.d.ts +26 -26
  1129. package/definitions/game/utilities/random/generators/RandomRange.d.ts +26 -26
  1130. package/definitions/game/utilities/string/Interpolator.d.ts +89 -89
  1131. package/definitions/game/utilities/string/Strings.d.ts +43 -43
  1132. package/definitions/game/utilities/trello/ITrello.d.ts +63 -63
  1133. package/definitions/game/utilities/trello/Trello.d.ts +22 -22
  1134. package/definitions/game/utilities/types/Recursive.d.ts +21 -21
  1135. package/definitions/game/utilities/typesglobal/Class.d.ts +23 -23
  1136. package/definitions/game/utilities/typesglobal/Descriptions.d.ts +30 -30
  1137. package/definitions/game/utilities/typesglobal/Function.d.ts +32 -32
  1138. package/definitions/game/utilities/typesglobal/Iterables.d.ts +24 -24
  1139. package/definitions/game/utilities/typesglobal/Misc.d.ts +27 -27
  1140. package/definitions/game/utilities/typesglobal/Objects.d.ts +49 -49
  1141. package/definitions/game/utilities/typesglobal/Types.d.ts +24 -24
  1142. package/definitions/hosts/browser/browserLoader.d.ts +24 -24
  1143. package/definitions/hosts/browser/index.d.ts +13 -13
  1144. package/definitions/hosts/electron/main/cmd/mod.d.ts +11 -11
  1145. package/definitions/hosts/electron/main/index.d.ts +11 -11
  1146. package/definitions/hosts/electron/main/interfaces.d.ts +19 -19
  1147. package/definitions/hosts/electron/main/ipc/handlers/electron/electron.d.ts +31 -31
  1148. package/definitions/hosts/electron/main/ipc/handlers/fileSystem/fileSystem.d.ts +16 -16
  1149. package/definitions/hosts/electron/main/ipc/handlers/os/os.d.ts +18 -18
  1150. package/definitions/hosts/electron/main/ipc/interfaces.d.ts +16 -16
  1151. package/definitions/hosts/electron/main/ipc/ipc.d.ts +12 -12
  1152. package/definitions/hosts/electron/main/launchOptions.d.ts +45 -45
  1153. package/definitions/hosts/electron/main/util/file.d.ts +33 -33
  1154. package/definitions/hosts/electron/main/util/game.d.ts +11 -11
  1155. package/definitions/hosts/electron/main/util/objects.d.ts +18 -18
  1156. package/definitions/hosts/electron/preload/greenworks.d.ts +11 -11
  1157. package/definitions/hosts/electron/preload/index.d.ts +11 -11
  1158. package/definitions/hosts/electron/preload/ipc.d.ts +13 -13
  1159. package/definitions/hosts/electron/preload/wayward-napi.d.ts +11 -11
  1160. package/definitions/hosts/node/index.d.ts +11 -11
  1161. package/definitions/hosts/node/nodeLoader.d.ts +24 -24
  1162. package/definitions/hosts/shared/args.d.ts +21 -21
  1163. package/definitions/hosts/shared/baseLoader.d.ts +19 -19
  1164. package/definitions/hosts/shared/globalTypes.d.ts +30 -30
  1165. package/definitions/hosts/shared/globals.d.ts +13 -13
  1166. package/definitions/hosts/shared/interfaces.d.ts +259 -259
  1167. package/definitions/hosts/shared/ipc/electron.d.ts +25 -25
  1168. package/definitions/hosts/shared/ipc/fileSystem.d.ts +47 -47
  1169. package/definitions/hosts/shared/ipc/handlers/fileSystem/fileSystem.d.ts +51 -51
  1170. package/definitions/hosts/shared/ipc/handlers/fileSystem/logFile.d.ts +22 -22
  1171. package/definitions/hosts/shared/ipc/handlers/os/os.d.ts +21 -21
  1172. package/definitions/hosts/shared/ipc/os.d.ts +22 -22
  1173. package/definitions/hosts/shared/ipc.d.ts +14 -14
  1174. package/definitions/matchmakingserver/dedicatedServer.d.ts +27 -27
  1175. package/definitions/matchmakingserver/directoryConnection.d.ts +31 -31
  1176. package/definitions/matchmakingserver/globalMatchmaking.d.ts +24 -24
  1177. package/definitions/matchmakingserver/globalServerDirectory.d.ts +35 -35
  1178. package/definitions/matchmakingserver/index.d.ts +13 -13
  1179. package/definitions/matchmakingserver/server.d.ts +36 -36
  1180. package/definitions/matchmakingserver/shared.d.ts +148 -148
  1181. package/definitions/matchmakingserver/vps.d.ts +11 -11
  1182. package/definitions/test/core/application.d.ts +69 -69
  1183. package/definitions/test/core/applicationDom.d.ts +30 -30
  1184. package/definitions/test/core/applicationInteractions.d.ts +95 -95
  1185. package/definitions/test/core/applicationLogger.d.ts +20 -20
  1186. package/definitions/test/core/applicationManager.d.ts +86 -86
  1187. package/definitions/test/core/chromeDriver.d.ts +21 -21
  1188. package/definitions/test/index.d.ts +17 -17
  1189. package/definitions/test/interfaces.d.ts +46 -46
  1190. package/definitions/test/suite/functionalTests/multiplayer/Multiplayer.spec.d.ts +13 -13
  1191. package/definitions/test/suite/functionalTests/singleplayer/SaveImport.spec.d.ts +13 -13
  1192. package/definitions/test/suite/functionalTests/singleplayer/Singleplayer.spec.d.ts +13 -13
  1193. package/definitions/test/suite/unitTests/game/Island.spec.d.ts +13 -13
  1194. package/definitions/test/suite/unitTests/utilities/MagicalPropertyManager.spec.d.ts +13 -13
  1195. package/definitions/test/util/logs.d.ts +11 -11
  1196. package/definitions/test/util/mochaNUnitReporter.d.ts +38 -38
  1197. package/definitions/test/util/random.d.ts +13 -13
  1198. package/package.json +24 -24
  1199. package/tsconfig.json +7 -7
  1200. package/tsconfig.mod.base.json +44 -47
@@ -1,1618 +1,1618 @@
1
- declare const _default: {};
2
- export default _default;
3
- declare global {
4
- namespace JQueryUI {
5
- interface AccordionOptions extends AccordionEvents {
6
- active?: any;
7
- animate?: any;
8
- collapsible?: boolean;
9
- disabled?: boolean;
10
- event?: string;
11
- header?: string;
12
- heightStyle?: string;
13
- icons?: any;
14
- }
15
- interface AccordionUIParams {
16
- newHeader: JQuery;
17
- oldHeader: JQuery;
18
- newPanel: JQuery;
19
- oldPanel: JQuery;
20
- }
21
- interface AccordionEvent {
22
- (event: Event, ui: AccordionUIParams): void;
23
- }
24
- interface AccordionEvents {
25
- activate?: AccordionEvent;
26
- beforeActivate?: AccordionEvent;
27
- create?: AccordionEvent;
28
- }
29
- interface Accordion extends Widget, AccordionOptions {
30
- }
31
- interface AutocompleteOptions extends AutocompleteEvents {
32
- appendTo?: any;
33
- autoFocus?: boolean;
34
- delay?: number;
35
- disabled?: boolean;
36
- minLength?: number;
37
- position?: any;
38
- source?: any;
39
- }
40
- interface AutocompleteUIParams {
41
- /**
42
- * The item selected from the menu, if any. Otherwise the property is null
43
- */
44
- item?: any;
45
- }
46
- interface AutocompleteEvent {
47
- (event: Event, ui: AutocompleteUIParams): void;
48
- }
49
- interface AutocompleteEvents {
50
- change?: AutocompleteEvent;
51
- close?: AutocompleteEvent;
52
- create?: AutocompleteEvent;
53
- focus?: AutocompleteEvent;
54
- open?: AutocompleteEvent;
55
- response?: AutocompleteEvent;
56
- search?: AutocompleteEvent;
57
- select?: AutocompleteEvent;
58
- }
59
- interface Autocomplete extends Widget, AutocompleteOptions {
60
- escapeRegex: (value: string) => string;
61
- filter: (array: any, term: string) => any;
62
- }
63
- interface ButtonOptions {
64
- disabled?: boolean;
65
- icons?: any;
66
- label?: string;
67
- text?: string | boolean;
68
- click?: (event?: Event) => void;
69
- }
70
- interface Button extends Widget, ButtonOptions {
71
- }
72
- interface DatepickerOptions {
73
- /**
74
- * An input element that is to be updated with the selected date from the datepicker. Use the altFormat option to change the format of the date within this field. Leave as blank for no alternate field.
75
- */
76
- altField?: any;
77
- /**
78
- * The dateFormat to be used for the altField option. This allows one date format to be shown to the user for selection purposes, while a different format is actually sent behind the scenes. For a full list of the possible formats see the formatDate function
79
- */
80
- altFormat?: string;
81
- /**
82
- * The text to display after each date field, e.g., to show the required format.
83
- */
84
- appendText?: string;
85
- /**
86
- * Set to true to automatically resize the input field to accommodate dates in the current dateFormat.
87
- */
88
- autoSize?: boolean;
89
- /**
90
- * A function that takes an input field and current datepicker instance and returns an options object to update the datepicker with. It is called just before the datepicker is displayed.
91
- */
92
- beforeShow?: (input: Element, inst: any) => JQueryUI.DatepickerOptions;
93
- /**
94
- * A function that takes a date as a parameter and must return an array with:
95
- * [0]: true/false indicating whether or not this date is selectable
96
- * [1]: a CSS class name to add to the date's cell or "" for the default presentation
97
- * [2]: an optional popup tooltip for this date
98
- * The function is called for each day in the datepicker before it is displayed.
99
- */
100
- beforeShowDay?: (date: Date) => any[];
101
- /**
102
- * A URL of an image to use to display the datepicker when the showOn option is set to "button" or "both". If set, the buttonText option becomes the alt value and is not directly displayed.
103
- */
104
- buttonImage?: string;
105
- /**
106
- * Whether the button image should be rendered by itself instead of inside a button element. This option is only relevant if the buttonImage option has also been set.
107
- */
108
- buttonImageOnly?: boolean;
109
- /**
110
- * The text to display on the trigger button. Use in conjunction with the showOn option set to "button" or "both".
111
- */
112
- buttonText?: string;
113
- /**
114
- * A function to calculate the week of the year for a given date. The default implementation uses the ISO 8601 definition: weeks start on a Monday; the first week of the year contains the first Thursday of the year.
115
- */
116
- calculateWeek?: (date: Date) => string;
117
- /**
118
- * Whether the month should be rendered as a dropdown instead of text.
119
- */
120
- changeMonth?: boolean;
121
- /**
122
- * Whether the year should be rendered as a dropdown instead of text. Use the yearRange option to control which years are made available for selection.
123
- */
124
- changeYear?: boolean;
125
- /**
126
- * The text to display for the close link. Use the showButtonPanel option to display this button.
127
- */
128
- closeText?: string;
129
- /**
130
- * When true, entry in the input field is constrained to those characters allowed by the current dateFormat option.
131
- */
132
- constrainInput?: boolean;
133
- /**
134
- * The text to display for the current day link. Use the showButtonPanel option to display this button.
135
- */
136
- currentText?: string;
137
- /**
138
- * The format for parsed and displayed dates. For a full list of the possible formats see the formatDate function.
139
- */
140
- dateFormat?: string;
141
- /**
142
- * The list of long day names, starting from Sunday, for use as requested via the dateFormat option.
143
- */
144
- dayNames?: string[];
145
- /**
146
- * The list of minimised day names, starting from Sunday, for use as column headers within the datepicker.
147
- */
148
- dayNamesMin?: string[];
149
- /**
150
- * The list of abbreviated day names, starting from Sunday, for use as requested via the dateFormat option.
151
- */
152
- dayNamesShort?: string[];
153
- /**
154
- * Set the date to highlight on first opening if the field is blank. Specify either an actual date via a Date object or as a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +7d'), or null for today.
155
- * Multiple types supported:
156
- * Date: A date object containing the default date.
157
- * Number: A number of days from today. For example 2 represents two days from today and -1 represents yesterday.
158
- * String: A string in the format defined by the dateFormat option, or a relative date. Relative dates must contain value and period pairs; valid periods are "y" for years, "m" for months, "w" for weeks, and "d" for days. For example, "+1m +7d" represents one month and seven days from today.
159
- */
160
- defaultDate?: any;
161
- /**
162
- * Control the speed at which the datepicker appears, it may be a time in milliseconds or a string representing one of the three predefined speeds ("slow", "normal", "fast").
163
- */
164
- duration?: string;
165
- /**
166
- * Set the first day of the week: Sunday is 0, Monday is 1, etc.
167
- */
168
- firstDay?: number;
169
- /**
170
- * When true, the current day link moves to the currently selected date instead of today.
171
- */
172
- gotoCurrent?: boolean;
173
- /**
174
- * Normally the previous and next links are disabled when not applicable (see the minDate and maxDate options). You can hide them altogether by setting this attribute to true.
175
- */
176
- hideIfNoPrevNext?: boolean;
177
- /**
178
- * Whether the current language is drawn from right to left.
179
- */
180
- isRTL?: boolean;
181
- /**
182
- * The maximum selectable date. When set to null, there is no maximum.
183
- * Multiple types supported:
184
- * Date: A date object containing the maximum date.
185
- * Number: A number of days from today. For example 2 represents two days from today and -1 represents yesterday.
186
- * String: A string in the format defined by the dateFormat option, or a relative date. Relative dates must contain value and period pairs; valid periods are "y" for years, "m" for months, "w" for weeks, and "d" for days. For example, "+1m +7d" represents one month and seven days from today.
187
- */
188
- maxDate?: any;
189
- /**
190
- * The minimum selectable date. When set to null, there is no minimum.
191
- * Multiple types supported:
192
- * Date: A date object containing the minimum date.
193
- * Number: A number of days from today. For example 2 represents two days from today and -1 represents yesterday.
194
- * String: A string in the format defined by the dateFormat option, or a relative date. Relative dates must contain value and period pairs; valid periods are "y" for years, "m" for months, "w" for weeks, and "d" for days. For example, "+1m +7d" represents one month and seven days from today.
195
- */
196
- minDate?: any;
197
- /**
198
- * The list of full month names, for use as requested via the dateFormat option.
199
- */
200
- monthNames?: string[];
201
- /**
202
- * The list of abbreviated month names, as used in the month header on each datepicker and as requested via the dateFormat option.
203
- */
204
- monthNamesShort?: string[];
205
- /**
206
- * Whether the prevText and nextText options should be parsed as dates by the formatDate function, allowing them to display the target month names for example.
207
- */
208
- navigationAsDateFormat?: boolean;
209
- /**
210
- * The text to display for the next month link. With the standard ThemeRoller styling, this value is replaced by an icon.
211
- */
212
- nextText?: string;
213
- /**
214
- * The number of months to show at once.
215
- * Multiple types supported:
216
- * Number: The number of months to display in a single row.
217
- * Array: An array defining the number of rows and columns to display.
218
- */
219
- numberOfMonths?: any;
220
- /**
221
- * Called when the datepicker moves to a new month and/or year. The function receives the selected year, month (1-12), and the datepicker instance as parameters. this refers to the associated input field.
222
- */
223
- onChangeMonthYear?: (year: number, month: number, inst: any) => void;
224
- /**
225
- * Called when the datepicker is closed, whether or not a date is selected. The function receives the selected date as text ("" if none) and the datepicker instance as parameters. this refers to the associated input field.
226
- */
227
- onClose?: (dateText: string, inst: any) => void;
228
- /**
229
- * Called when the datepicker is selected. The function receives the selected date as text and the datepicker instance as parameters. this refers to the associated input field.
230
- */
231
- onSelect?: (dateText: string, inst: any) => void;
232
- /**
233
- * The text to display for the previous month link. With the standard ThemeRoller styling, this value is replaced by an icon.
234
- */
235
- prevText?: string;
236
- /**
237
- * Whether days in other months shown before or after the current month are selectable. This only applies if the showOtherMonths option is set to true.
238
- */
239
- selectOtherMonths?: boolean;
240
- /**
241
- * The cutoff year for determining the century for a date (used in conjunction with dateFormat 'y'). Any dates entered with a year value less than or equal to the cutoff year are considered to be in the current century, while those greater than it are deemed to be in the previous century.
242
- * Multiple types supported:
243
- * Number: A value between 0 and 99 indicating the cutoff year.
244
- * String: A relative number of years from the current year, e.g., "+3" or "-5".
245
- */
246
- shortYearCutoff?: any;
247
- /**
248
- * The name of the animation used to show and hide the datepicker. Use "show" (the default), "slideDown", "fadeIn", any of the jQuery UI effects. Set to an empty string to disable animation.
249
- */
250
- showAnim?: string;
251
- /**
252
- * Whether to display a button pane underneath the calendar. The button pane contains two buttons, a Today button that links to the current day, and a Done button that closes the datepicker. The buttons' text can be customized using the currentText and closeText options respectively.
253
- */
254
- showButtonPanel?: boolean;
255
- /**
256
- * When displaying multiple months via the numberOfMonths option, the showCurrentAtPos option defines which position to display the current month in.
257
- */
258
- showCurrentAtPos?: number;
259
- /**
260
- * Whether to show the month after the year in the header.
261
- */
262
- showMonthAfterYear?: boolean;
263
- /**
264
- * When the datepicker should appear. The datepicker can appear when the field receives focus ("focus"), when a button is clicked ("button"), or when either event occurs ("both").
265
- */
266
- showOn?: string;
267
- /**
268
- * If using one of the jQuery UI effects for the showAnim option, you can provide additional settings for that animation via this option.
269
- */
270
- showOptions?: any;
271
- /**
272
- * Whether to display dates in other months (non-selectable) at the start or end of the current month. To make these days selectable use the selectOtherMonths option.
273
- */
274
- showOtherMonths?: boolean;
275
- /**
276
- * When true, a column is added to show the week of the year. The calculateWeek option determines how the week of the year is calculated. You may also want to change the firstDay option.
277
- */
278
- showWeek?: boolean;
279
- /**
280
- * Set how many months to move when clicking the previous/next links.
281
- */
282
- stepMonths?: number;
283
- /**
284
- * The text to display for the week of the year column heading. Use the showWeek option to display this column.
285
- */
286
- weekHeader?: string;
287
- /**
288
- * The range of years displayed in the year drop-down: either relative to today's year ("-nn:+nn"), relative to the currently selected year ("c-nn:c+nn"), absolute ("nnnn:nnnn"), or combinations of these formats ("nnnn:-nn"). Note that this option only affects what appears in the drop-down, to restrict which dates may be selected use the minDate and/or maxDate options.
289
- */
290
- yearRange?: string;
291
- /**
292
- * Additional text to display after the year in the month headers.
293
- */
294
- yearSuffix?: string;
295
- }
296
- interface DatepickerFormatDateOptions {
297
- dayNamesShort?: string[];
298
- dayNames?: string[];
299
- monthNamesShort?: string[];
300
- monthNames?: string[];
301
- }
302
- interface Datepicker extends Widget, DatepickerOptions {
303
- regional: {
304
- [languageCod3: string]: any;
305
- };
306
- setDefaults(defaults: DatepickerOptions): void;
307
- formatDate(format: string, date: Date, settings?: DatepickerFormatDateOptions): string;
308
- parseDate(format: string, date: string, settings?: DatepickerFormatDateOptions): Date;
309
- iso8601Week(date: Date): number;
310
- noWeekends(date: Date): any[];
311
- }
312
- interface DialogOptions extends DialogEvents {
313
- autoOpen?: boolean;
314
- buttons?: {
315
- [buttonText: string]: (event?: Event) => void;
316
- } | DialogButtonOptions[];
317
- closeOnEscape?: boolean;
318
- closeText?: string;
319
- appendTo?: string;
320
- dialogClass?: string;
321
- disabled?: boolean;
322
- draggable?: boolean;
323
- height?: number | string;
324
- hide?: boolean | number | string | DialogShowHideOptions;
325
- maxHeight?: number;
326
- maxWidth?: number;
327
- minHeight?: number;
328
- minWidth?: number;
329
- modal?: boolean;
330
- position?: any;
331
- resizable?: boolean;
332
- show?: boolean | number | string | DialogShowHideOptions;
333
- stack?: boolean;
334
- title?: string;
335
- width?: any;
336
- zIndex?: number;
337
- open?: DialogEvent;
338
- close?: DialogEvent;
339
- }
340
- interface DialogButtonOptions {
341
- icons?: any;
342
- showText?: string | boolean;
343
- text?: string;
344
- click?: (eventObject: JQueryEventObject) => any;
345
- [attr: string]: any;
346
- }
347
- interface DialogShowHideOptions {
348
- effect: string;
349
- delay?: number;
350
- duration?: number;
351
- easing?: string;
352
- }
353
- interface DialogUIParams {
354
- }
355
- interface DialogEvent {
356
- (event: Event | null, ui: DialogUIParams | null): void;
357
- }
358
- interface DialogEvents {
359
- beforeClose?: DialogEvent;
360
- close?: DialogEvent;
361
- create?: DialogEvent;
362
- drag?: DialogEvent;
363
- dragStart?: DialogEvent;
364
- dragStop?: DialogEvent;
365
- focus?: DialogEvent;
366
- open?: DialogEvent;
367
- resize?: DialogEvent;
368
- resizeStart?: DialogEvent;
369
- resizeStop?: DialogEvent;
370
- }
371
- interface Dialog extends Widget, DialogOptions {
372
- }
373
- interface DraggableEventUIParams {
374
- helper: JQuery;
375
- position: {
376
- top: number;
377
- left: number;
378
- };
379
- offset: {
380
- top: number;
381
- left: number;
382
- };
383
- }
384
- interface DraggableEvent {
385
- (event: Event, ui: DraggableEventUIParams): void;
386
- }
387
- interface DraggableOptions extends DraggableEvents {
388
- disabled?: boolean;
389
- addClasses?: boolean;
390
- appendTo?: any;
391
- axis?: string;
392
- cancel?: string;
393
- connectToSortable?: string;
394
- containment?: any;
395
- cursor?: string;
396
- cursorAt?: any;
397
- delay?: number;
398
- distance?: number;
399
- grid?: number[];
400
- handle?: any;
401
- helper?: any;
402
- iframeFix?: any;
403
- opacity?: number;
404
- refreshPositions?: boolean;
405
- revert?: any;
406
- revertDuration?: number;
407
- scope?: string;
408
- scroll?: boolean;
409
- scrollSensitivity?: number;
410
- scrollSpeed?: number;
411
- snap?: any;
412
- snapMode?: string;
413
- snapTolerance?: number;
414
- stack?: string;
415
- zIndex?: number;
416
- }
417
- interface DraggableEvents {
418
- create?: DraggableEvent;
419
- start?: DraggableEvent;
420
- drag?: DraggableEvent;
421
- stop?: DraggableEvent;
422
- }
423
- interface Draggable extends Widget, DraggableOptions, DraggableEvent {
424
- }
425
- interface DroppableEventUIParam {
426
- draggable: JQuery;
427
- helper: JQuery;
428
- position: {
429
- top: number;
430
- left: number;
431
- };
432
- offset: {
433
- top: number;
434
- left: number;
435
- };
436
- }
437
- interface DroppableEvent {
438
- (event: Event, ui: DroppableEventUIParam): void;
439
- }
440
- interface DroppableOptions extends DroppableEvents {
441
- disabled?: boolean;
442
- accept?: any;
443
- activeClass?: string;
444
- greedy?: boolean;
445
- hoverClass?: string;
446
- scope?: string;
447
- tolerance?: string;
448
- }
449
- interface DroppableEvents {
450
- create?: DroppableEvent;
451
- activate?: DroppableEvent;
452
- deactivate?: DroppableEvent;
453
- over?: DroppableEvent;
454
- out?: DroppableEvent;
455
- drop?: DroppableEvent;
456
- }
457
- interface Droppable extends Widget, DroppableOptions {
458
- }
459
- interface MenuOptions extends MenuEvents {
460
- disabled?: boolean;
461
- icons?: any;
462
- menus?: string;
463
- position?: any;
464
- role?: string;
465
- }
466
- interface MenuUIParams {
467
- item?: JQuery;
468
- }
469
- interface MenuEvent {
470
- (event: Event, ui: MenuUIParams): void;
471
- }
472
- interface MenuEvents {
473
- blur?: MenuEvent;
474
- create?: MenuEvent;
475
- focus?: MenuEvent;
476
- select?: MenuEvent;
477
- }
478
- interface Menu extends Widget, MenuOptions {
479
- }
480
- interface ProgressbarOptions extends ProgressbarEvents {
481
- disabled?: boolean;
482
- value?: number | boolean;
483
- max?: number;
484
- }
485
- interface ProgressbarUIParams {
486
- }
487
- interface ProgressbarEvent {
488
- (event: Event, ui: ProgressbarUIParams): void;
489
- }
490
- interface ProgressbarEvents {
491
- change?: ProgressbarEvent;
492
- complete?: ProgressbarEvent;
493
- create?: ProgressbarEvent;
494
- }
495
- interface Progressbar extends Widget, ProgressbarOptions {
496
- }
497
- interface ResizableOptions extends ResizableEvents {
498
- alsoResize?: any;
499
- animate?: boolean;
500
- animateDuration?: any;
501
- animateEasing?: string;
502
- aspectRatio?: any;
503
- autoHide?: boolean;
504
- cancel?: string;
505
- containment?: any;
506
- delay?: number;
507
- disabled?: boolean;
508
- distance?: number;
509
- ghost?: boolean;
510
- grid?: any;
511
- handles?: any;
512
- helper?: string;
513
- maxHeight?: number;
514
- maxWidth?: number;
515
- minHeight?: number;
516
- minWidth?: number;
517
- }
518
- interface ResizableUIParams {
519
- element: JQuery;
520
- helper: JQuery;
521
- originalElement: JQuery;
522
- originalPosition: any;
523
- originalSize: any;
524
- position: any;
525
- size: any;
526
- }
527
- interface ResizableEvent {
528
- (event: Event, ui: ResizableUIParams): void;
529
- }
530
- interface ResizableEvents {
531
- resize?: ResizableEvent;
532
- start?: ResizableEvent;
533
- stop?: ResizableEvent;
534
- create?: ResizableEvents;
535
- }
536
- interface Resizable extends Widget, ResizableOptions {
537
- }
538
- interface SelectableOptions extends SelectableEvents {
539
- autoRefresh?: boolean;
540
- cancel?: string;
541
- delay?: number;
542
- disabled?: boolean;
543
- distance?: number;
544
- filter?: string;
545
- tolerance?: string;
546
- }
547
- interface SelectableEvents {
548
- selected?(event: Event, ui: {
549
- selected?: Element;
550
- }): void;
551
- selecting?(event: Event, ui: {
552
- selecting?: Element;
553
- }): void;
554
- start?(event: Event, ui: any): void;
555
- stop?(event: Event, ui: any): void;
556
- unselected?(event: Event, ui: {
557
- unselected: Element;
558
- }): void;
559
- unselecting?(event: Event, ui: {
560
- unselecting: Element;
561
- }): void;
562
- }
563
- interface Selectable extends Widget, SelectableOptions {
564
- }
565
- interface SliderOptions extends SliderEvents {
566
- animate?: any;
567
- disabled?: boolean;
568
- max?: number;
569
- min?: number;
570
- orientation?: string;
571
- range?: any;
572
- step?: number;
573
- value?: number;
574
- values?: number[];
575
- highlight?: boolean;
576
- }
577
- interface SliderUIParams {
578
- handle?: JQuery;
579
- value?: number;
580
- values?: number[];
581
- }
582
- interface SliderEvent {
583
- (event: Event, ui: SliderUIParams): void;
584
- }
585
- interface SliderEvents {
586
- change?: SliderEvent;
587
- create?: SliderEvent;
588
- slide?: SliderEvent;
589
- start?: SliderEvent;
590
- stop?: SliderEvent;
591
- }
592
- interface Slider extends Widget, SliderOptions {
593
- }
594
- interface SortableOptions extends SortableEvents {
595
- appendTo?: any;
596
- axis?: string;
597
- cancel?: any;
598
- connectWith?: any;
599
- containment?: any;
600
- cursor?: string;
601
- cursorAt?: any;
602
- delay?: number;
603
- disabled?: boolean;
604
- distance?: number;
605
- dropOnEmpty?: boolean;
606
- forceHelperSize?: boolean;
607
- forcePlaceholderSize?: boolean;
608
- grid?: number[];
609
- helper?: string | ((event: Event, element: Sortable) => Element);
610
- handle?: any;
611
- items?: any;
612
- opacity?: number;
613
- placeholder?: string;
614
- revert?: any;
615
- scroll?: boolean;
616
- scrollSensitivity?: number;
617
- scrollSpeed?: number;
618
- tolerance?: string;
619
- zIndex?: number;
620
- }
621
- interface SortableUIParams {
622
- helper: JQuery;
623
- item: JQuery;
624
- offset: any;
625
- position: any;
626
- originalPosition: any;
627
- sender: JQuery;
628
- placeholder: JQuery;
629
- }
630
- interface SortableEvent {
631
- (event: JQueryEventObject, ui: SortableUIParams): void;
632
- }
633
- interface SortableEvents {
634
- activate?: SortableEvent;
635
- beforeStop?: SortableEvent;
636
- change?: SortableEvent;
637
- deactivate?: SortableEvent;
638
- out?: SortableEvent;
639
- over?: SortableEvent;
640
- receive?: SortableEvent;
641
- remove?: SortableEvent;
642
- sort?: SortableEvent;
643
- start?: SortableEvent;
644
- stop?: SortableEvent;
645
- update?: SortableEvent;
646
- }
647
- interface Sortable extends Widget, SortableOptions, SortableEvents {
648
- }
649
- interface SpinnerOptions extends SpinnerEvents {
650
- culture?: string;
651
- disabled?: boolean;
652
- icons?: any;
653
- incremental?: any;
654
- max?: any;
655
- min?: any;
656
- numberFormat?: string;
657
- page?: number;
658
- step?: any;
659
- }
660
- interface SpinnerUIParam {
661
- value: number;
662
- }
663
- interface SpinnerEvent<T> {
664
- (event: Event, ui: T): void;
665
- }
666
- interface SpinnerEvents {
667
- change?: SpinnerEvent<{}>;
668
- create?: SpinnerEvent<{}>;
669
- spin?: SpinnerEvent<SpinnerUIParam>;
670
- start?: SpinnerEvent<{}>;
671
- stop?: SpinnerEvent<{}>;
672
- }
673
- interface Spinner extends Widget, SpinnerOptions {
674
- }
675
- interface TabsOptions extends TabsEvents {
676
- active?: any;
677
- collapsible?: boolean;
678
- disabled?: any;
679
- event?: string;
680
- heightStyle?: string;
681
- hide?: any;
682
- show?: any;
683
- }
684
- interface TabsActivationUIParams {
685
- newTab: JQuery;
686
- oldTab: JQuery;
687
- newPanel: JQuery;
688
- oldPanel: JQuery;
689
- }
690
- interface TabsBeforeLoadUIParams {
691
- tab: JQuery;
692
- panel: JQuery;
693
- jqXHR: JQueryXHR;
694
- ajaxSettings: any;
695
- }
696
- interface TabsCreateOrLoadUIParams {
697
- tab: JQuery;
698
- panel: JQuery;
699
- }
700
- interface TabsEvent<UI> {
701
- (event: Event, ui: UI): void;
702
- }
703
- interface TabsEvents {
704
- activate?: TabsEvent<TabsActivationUIParams>;
705
- beforeActivate?: TabsEvent<TabsActivationUIParams>;
706
- beforeLoad?: TabsEvent<TabsBeforeLoadUIParams>;
707
- load?: TabsEvent<TabsCreateOrLoadUIParams>;
708
- create?: TabsEvent<TabsCreateOrLoadUIParams>;
709
- }
710
- interface Tabs extends Widget, TabsOptions {
711
- }
712
- interface TooltipOptions extends TooltipEvents {
713
- content?: any;
714
- disabled?: boolean;
715
- hide?: any;
716
- items?: string;
717
- position?: any;
718
- show?: any;
719
- tooltipClass?: string;
720
- track?: boolean;
721
- }
722
- interface TooltipUIParams {
723
- }
724
- interface TooltipEvent {
725
- (event: Event, ui: TooltipUIParams): void;
726
- }
727
- interface TooltipEvents {
728
- close?: TooltipEvent;
729
- open?: TooltipEvent;
730
- }
731
- interface Tooltip extends Widget, TooltipOptions {
732
- }
733
- interface EffectOptions {
734
- effect: string;
735
- easing?: string;
736
- duration?: number;
737
- complete: Function;
738
- }
739
- interface BlindEffect {
740
- direction?: string;
741
- }
742
- interface BounceEffect {
743
- distance?: number;
744
- times?: number;
745
- }
746
- interface ClipEffect {
747
- direction?: number;
748
- }
749
- interface DropEffect {
750
- direction?: number;
751
- }
752
- interface ExplodeEffect {
753
- pieces?: number;
754
- }
755
- interface FadeEffect {
756
- }
757
- interface FoldEffect {
758
- size?: any;
759
- horizFirst?: boolean;
760
- }
761
- interface HighlightEffect {
762
- color?: string;
763
- }
764
- interface PuffEffect {
765
- percent?: number;
766
- }
767
- interface PulsateEffect {
768
- times?: number;
769
- }
770
- interface ScaleEffect {
771
- direction?: string;
772
- origin?: string[];
773
- percent?: number;
774
- scale?: string;
775
- }
776
- interface ShakeEffect {
777
- direction?: string;
778
- distance?: number;
779
- times?: number;
780
- }
781
- interface SizeEffect {
782
- to?: any;
783
- origin?: string[];
784
- scale?: string;
785
- }
786
- interface SlideEffect {
787
- direction?: string;
788
- distance?: number;
789
- }
790
- interface TransferEffect {
791
- className?: string;
792
- to?: string;
793
- }
794
- interface JQueryPositionOptions {
795
- my?: string;
796
- at?: string;
797
- of?: any;
798
- collision?: string;
799
- using?: Function;
800
- within?: any;
801
- }
802
- interface MouseOptions {
803
- cancel?: string;
804
- delay?: number;
805
- distance?: number;
806
- }
807
- interface KeyCode {
808
- BACKSPACE: number;
809
- COMMA: number;
810
- DELETE: number;
811
- DOWN: number;
812
- END: number;
813
- ENTER: number;
814
- ESCAPE: number;
815
- HOME: number;
816
- LEFT: number;
817
- NUMPAD_ADD: number;
818
- NUMPAD_DECIMAL: number;
819
- NUMPAD_DIVIDE: number;
820
- NUMPAD_ENTER: number;
821
- NUMPAD_MULTIPLY: number;
822
- NUMPAD_SUBTRACT: number;
823
- PAGE_DOWN: number;
824
- PAGE_UP: number;
825
- PERIOD: number;
826
- RIGHT: number;
827
- SPACE: number;
828
- TAB: number;
829
- UP: number;
830
- }
831
- interface UI {
832
- mouse(method: string): JQuery;
833
- mouse(options: MouseOptions): JQuery;
834
- mouse(optionLiteral: string, optionName: string, optionValue: any): JQuery;
835
- mouse(optionLiteral: string, optionValue: any): any;
836
- accordion: Accordion;
837
- autocomplete: Autocomplete;
838
- button: Button;
839
- buttonset: Button;
840
- datepicker: Datepicker;
841
- dialog: Dialog;
842
- keyCode: KeyCode;
843
- menu: Menu;
844
- progressbar: Progressbar;
845
- slider: Slider;
846
- spinner: Spinner;
847
- tabs: Tabs;
848
- tooltip: Tooltip;
849
- version: string;
850
- }
851
- interface WidgetOptions {
852
- disabled?: boolean;
853
- hide?: any;
854
- show?: any;
855
- }
856
- interface Widget {
857
- (methodName: string): JQuery;
858
- (options: WidgetOptions): JQuery;
859
- (options: AccordionOptions): JQuery;
860
- (optionLiteral: string, optionName: string): any;
861
- (optionLiteral: string, options: WidgetOptions): any;
862
- (optionLiteral: string, optionName: string, optionValue: any): JQuery;
863
- (name: string, prototype: any): JQuery;
864
- (name: string, base: Function, prototype: any): JQuery;
865
- }
866
- }
867
- interface JQuery {
868
- accordion(): JQuery;
869
- accordion(methodName: 'destroy'): void;
870
- accordion(methodName: 'disable'): void;
871
- accordion(methodName: 'enable'): void;
872
- accordion(methodName: 'refresh'): void;
873
- accordion(methodName: 'widget'): JQuery;
874
- accordion(methodName: string): JQuery;
875
- accordion(options: JQueryUI.AccordionOptions): JQuery;
876
- accordion(optionLiteral: string, optionName: string): any;
877
- accordion(optionLiteral: string, options: JQueryUI.AccordionOptions): any;
878
- accordion(optionLiteral: string, optionName: string, optionValue: any): JQuery;
879
- autocomplete(): JQuery;
880
- autocomplete(methodName: 'close'): void;
881
- autocomplete(methodName: 'destroy'): void;
882
- autocomplete(methodName: 'disable'): void;
883
- autocomplete(methodName: 'enable'): void;
884
- autocomplete(methodName: 'search', value?: string): void;
885
- autocomplete(methodName: 'widget'): JQuery;
886
- autocomplete(methodName: string): JQuery;
887
- autocomplete(options: JQueryUI.AutocompleteOptions): JQuery;
888
- autocomplete(optionLiteral: string, optionName: string): any;
889
- autocomplete(optionLiteral: string, options: JQueryUI.AutocompleteOptions): any;
890
- autocomplete(optionLiteral: string, optionName: string, optionValue: any): JQuery;
891
- button(): JQuery;
892
- button(methodName: 'destroy'): void;
893
- button(methodName: 'disable'): void;
894
- button(methodName: 'enable'): void;
895
- button(methodName: 'refresh'): void;
896
- button(methodName: 'widget'): JQuery;
897
- button(methodName: string): JQuery;
898
- button(options: JQueryUI.ButtonOptions): JQuery;
899
- button(optionLiteral: string, optionName: string): any;
900
- button(optionLiteral: string, options: JQueryUI.ButtonOptions): any;
901
- button(optionLiteral: string, optionName: string, optionValue: any): JQuery;
902
- buttonset(): JQuery;
903
- buttonset(methodName: 'destroy'): void;
904
- buttonset(methodName: 'disable'): void;
905
- buttonset(methodName: 'enable'): void;
906
- buttonset(methodName: 'refresh'): void;
907
- buttonset(methodName: 'widget'): JQuery;
908
- buttonset(methodName: string): JQuery;
909
- buttonset(options: JQueryUI.ButtonOptions): JQuery;
910
- buttonset(optionLiteral: string, optionName: string): any;
911
- buttonset(optionLiteral: string, options: JQueryUI.ButtonOptions): any;
912
- buttonset(optionLiteral: string, optionName: string, optionValue: any): JQuery;
913
- /**
914
- * Initialize a datepicker
915
- */
916
- datepicker(): JQuery;
917
- /**
918
- * Removes the datepicker functionality completely. This will return the element back to its pre-init state.
919
- *
920
- * @param methodName 'destroy'
921
- */
922
- datepicker(methodName: 'destroy'): JQuery;
923
- /**
924
- * Opens the datepicker in a dialog box.
925
- *
926
- * @param methodName 'dialog'
927
- * @param date The initial date.
928
- * @param onSelect A callback function when a date is selected. The function receives the date text and date picker instance as parameters.
929
- * @param settings The new settings for the date picker.
930
- * @param pos The position of the top/left of the dialog as [x, y] or a MouseEvent that contains the coordinates. If not specified the dialog is centered on the screen.
931
- */
932
- datepicker(methodName: 'dialog', date: Date, onSelect?: () => void, settings?: JQueryUI.DatepickerOptions, pos?: number[]): JQuery;
933
- /**
934
- * Opens the datepicker in a dialog box.
935
- *
936
- * @param methodName 'dialog'
937
- * @param date The initial date.
938
- * @param onSelect A callback function when a date is selected. The function receives the date text and date picker instance as parameters.
939
- * @param settings The new settings for the date picker.
940
- * @param pos The position of the top/left of the dialog as [x, y] or a MouseEvent that contains the coordinates. If not specified the dialog is centered on the screen.
941
- */
942
- datepicker(methodName: 'dialog', date: Date, onSelect?: () => void, settings?: JQueryUI.DatepickerOptions, pos?: MouseEvent): JQuery;
943
- /**
944
- * Opens the datepicker in a dialog box.
945
- *
946
- * @param methodName 'dialog'
947
- * @param date The initial date.
948
- * @param onSelect A callback function when a date is selected. The function receives the date text and date picker instance as parameters.
949
- * @param settings The new settings for the date picker.
950
- * @param pos The position of the top/left of the dialog as [x, y] or a MouseEvent that contains the coordinates. If not specified the dialog is centered on the screen.
951
- */
952
- datepicker(methodName: 'dialog', date: string, onSelect?: () => void, settings?: JQueryUI.DatepickerOptions, pos?: number[]): JQuery;
953
- /**
954
- * Opens the datepicker in a dialog box.
955
- *
956
- * @param methodName 'dialog'
957
- * @param date The initial date.
958
- * @param onSelect A callback function when a date is selected. The function receives the date text and date picker instance as parameters.
959
- * @param settings The new settings for the date picker.
960
- * @param pos The position of the top/left of the dialog as [x, y] or a MouseEvent that contains the coordinates. If not specified the dialog is centered on the screen.
961
- */
962
- datepicker(methodName: 'dialog', date: string, onSelect?: () => void, settings?: JQueryUI.DatepickerOptions, pos?: MouseEvent): JQuery;
963
- /**
964
- * Returns the current date for the datepicker or null if no date has been selected.
965
- *
966
- * @param methodName 'getDate'
967
- */
968
- datepicker(methodName: 'getDate'): Date;
969
- /**
970
- * Close a previously opened date picker.
971
- *
972
- * @param methodName 'hide'
973
- */
974
- datepicker(methodName: 'hide'): JQuery;
975
- /**
976
- * Determine whether a date picker has been disabled.
977
- *
978
- * @param methodName 'isDisabled'
979
- */
980
- datepicker(methodName: 'isDisabled'): boolean;
981
- /**
982
- * Redraw the date picker, after having made some external modifications.
983
- *
984
- * @param methodName 'refresh'
985
- */
986
- datepicker(methodName: 'refresh'): JQuery;
987
- /**
988
- * Sets the date for the datepicker. The new date may be a Date object or a string in the current date format (e.g., "01/26/2009"), a number of days from today (e.g., +7) or a string of values and periods ("y" for years, "m" for months, "w" for weeks, "d" for days, e.g., "+1m +7d"), or null to clear the selected date.
989
- *
990
- * @param methodName 'setDate'
991
- * @param date The new date.
992
- */
993
- datepicker(methodName: 'setDate', date: Date): JQuery;
994
- /**
995
- * Sets the date for the datepicker. The new date may be a Date object or a string in the current date format (e.g., "01/26/2009"), a number of days from today (e.g., +7) or a string of values and periods ("y" for years, "m" for months, "w" for weeks, "d" for days, e.g., "+1m +7d"), or null to clear the selected date.
996
- *
997
- * @param methodName 'setDate'
998
- * @param date The new date.
999
- */
1000
- datepicker(methodName: 'setDate', date: string): JQuery;
1001
- /**
1002
- * Open the date picker. If the datepicker is attached to an input, the input must be visible for the datepicker to be shown.
1003
- *
1004
- * @param methodName 'show'
1005
- */
1006
- datepicker(methodName: 'show'): JQuery;
1007
- /**
1008
- * Returns a jQuery object containing the datepicker.
1009
- *
1010
- * @param methodName 'widget'
1011
- */
1012
- datepicker(methodName: 'widget'): JQuery;
1013
- /**
1014
- * Get the altField option, after initialization
1015
- *
1016
- * @param methodName 'option'
1017
- * @param optionName 'altField'
1018
- */
1019
- datepicker(methodName: 'option', optionName: 'altField'): any;
1020
- /**
1021
- * Set the altField option, after initialization
1022
- *
1023
- * @param methodName 'option'
1024
- * @param optionName 'altField'
1025
- * @param altFieldValue An input element that is to be updated with the selected date from the datepicker. Use the altFormat option to change the format of the date within this field. Leave as blank for no alternate field.
1026
- */
1027
- datepicker(methodName: 'option', optionName: 'altField', altFieldValue: string): JQuery;
1028
- /**
1029
- * Set the altField option, after initialization
1030
- *
1031
- * @param methodName 'option'
1032
- * @param optionName 'altField'
1033
- * @param altFieldValue An input element that is to be updated with the selected date from the datepicker. Use the altFormat option to change the format of the date within this field. Leave as blank for no alternate field.
1034
- */
1035
- datepicker(methodName: 'option', optionName: 'altField', altFieldValue: JQuery): JQuery;
1036
- /**
1037
- * Set the altField option, after initialization
1038
- *
1039
- * @param methodName 'option'
1040
- * @param optionName 'altField'
1041
- * @param altFieldValue An input element that is to be updated with the selected date from the datepicker. Use the altFormat option to change the format of the date within this field. Leave as blank for no alternate field.
1042
- */
1043
- datepicker(methodName: 'option', optionName: 'altField', altFieldValue: Element): JQuery;
1044
- /**
1045
- * Get the altFormat option, after initialization
1046
- *
1047
- * @param methodName 'option'
1048
- * @param optionName 'altFormat'
1049
- */
1050
- datepicker(methodName: 'option', optionName: 'altFormat'): string;
1051
- /**
1052
- * Set the altFormat option, after initialization
1053
- *
1054
- * @param methodName 'option'
1055
- * @param optionName 'altFormat'
1056
- * @param altFormatValue The dateFormat to be used for the altField option. This allows one date format to be shown to the user for selection purposes, while a different format is actually sent behind the scenes. For a full list of the possible formats see the formatDate function
1057
- */
1058
- datepicker(methodName: 'option', optionName: 'altFormat', altFormatValue: string): JQuery;
1059
- /**
1060
- * Get the appendText option, after initialization
1061
- *
1062
- * @param methodName 'option'
1063
- * @param optionName 'appendText'
1064
- */
1065
- datepicker(methodName: 'option', optionName: 'appendText'): string;
1066
- /**
1067
- * Set the appendText option, after initialization
1068
- *
1069
- * @param methodName 'option'
1070
- * @param optionName 'appendText'
1071
- * @param appendTextValue The text to display after each date field, e.g., to show the required format.
1072
- */
1073
- datepicker(methodName: 'option', optionName: 'appendText', appendTextValue: string): JQuery;
1074
- /**
1075
- * Get the autoSize option, after initialization
1076
- *
1077
- * @param methodName 'option'
1078
- * @param optionName 'autoSize'
1079
- */
1080
- datepicker(methodName: 'option', optionName: 'autoSize'): boolean;
1081
- /**
1082
- * Set the autoSize option, after initialization
1083
- *
1084
- * @param methodName 'option'
1085
- * @param optionName 'autoSize'
1086
- * @param autoSizeValue Set to true to automatically resize the input field to accommodate dates in the current dateFormat.
1087
- */
1088
- datepicker(methodName: 'option', optionName: 'autoSize', autoSizeValue: boolean): JQuery;
1089
- /**
1090
- * Get the beforeShow option, after initialization
1091
- *
1092
- * @param methodName 'option'
1093
- * @param optionName 'beforeShow'
1094
- */
1095
- datepicker(methodName: 'option', optionName: 'beforeShow'): (input: Element, inst: any) => JQueryUI.DatepickerOptions;
1096
- /**
1097
- * Set the beforeShow option, after initialization
1098
- *
1099
- * @param methodName 'option'
1100
- * @param optionName 'beforeShow'
1101
- * @param beforeShowValue A function that takes an input field and current datepicker instance and returns an options object to update the datepicker with. It is called just before the datepicker is displayed.
1102
- */
1103
- datepicker(methodName: 'option', optionName: 'beforeShow', beforeShowValue: (input: Element, inst: any) => JQueryUI.DatepickerOptions): JQuery;
1104
- /**
1105
- * Get the beforeShow option, after initialization
1106
- *
1107
- * @param methodName 'option'
1108
- * @param optionName 'beforeShowDay'
1109
- */
1110
- datepicker(methodName: 'option', optionName: 'beforeShowDay'): (date: Date) => any[];
1111
- /**
1112
- * Set the beforeShow option, after initialization
1113
- *
1114
- * @param methodName 'option'
1115
- * @param optionName 'beforeShowDay'
1116
- * @param beforeShowDayValue A function that takes a date as a parameter and must return an array with:
1117
- * [0]: true/false indicating whether or not this date is selectable
1118
- * [1]: a CSS class name to add to the date's cell or "" for the default presentation
1119
- * [2]: an optional popup tooltip for this date
1120
- * The function is called for each day in the datepicker before it is displayed.
1121
- */
1122
- datepicker(methodName: 'option', optionName: 'beforeShowDay', beforeShowDayValue: (date: Date) => any[]): JQuery;
1123
- /**
1124
- * Get the buttonImage option, after initialization
1125
- *
1126
- * @param methodName 'option'
1127
- * @param optionName 'buttonImage'
1128
- */
1129
- datepicker(methodName: 'option', optionName: 'buttonImage'): string;
1130
- /**
1131
- * Set the buttonImage option, after initialization
1132
- *
1133
- * @param methodName 'option'
1134
- * @param optionName 'buttonImage'
1135
- * @param buttonImageValue A URL of an image to use to display the datepicker when the showOn option is set to "button" or "both". If set, the buttonText option becomes the alt value and is not directly displayed.
1136
- */
1137
- datepicker(methodName: 'option', optionName: 'buttonImage', buttonImageValue: string): JQuery;
1138
- /**
1139
- * Get the buttonImageOnly option, after initialization
1140
- *
1141
- * @param methodName 'option'
1142
- * @param optionName 'buttonImageOnly'
1143
- */
1144
- datepicker(methodName: 'option', optionName: 'buttonImageOnly'): boolean;
1145
- /**
1146
- * Set the buttonImageOnly option, after initialization
1147
- *
1148
- * @param methodName 'option'
1149
- * @param optionName 'buttonImageOnly'
1150
- * @param buttonImageOnlyValue Whether the button image should be rendered by itself instead of inside a button element. This option is only relevant if the buttonImage option has also been set.
1151
- */
1152
- datepicker(methodName: 'option', optionName: 'buttonImageOnly', buttonImageOnlyValue: boolean): JQuery;
1153
- /**
1154
- * Get the buttonText option, after initialization
1155
- *
1156
- * @param methodName 'option'
1157
- * @param optionName 'buttonText'
1158
- */
1159
- datepicker(methodName: 'option', optionName: 'buttonText'): string;
1160
- /**
1161
- * Set the buttonText option, after initialization
1162
- *
1163
- * @param methodName 'option'
1164
- * @param optionName 'buttonText'
1165
- * @param buttonTextValue The text to display on the trigger button. Use in conjunction with the showOn option set to "button" or "both".
1166
- */
1167
- datepicker(methodName: 'option', optionName: 'buttonText', buttonTextValue: string): JQuery;
1168
- /**
1169
- * Get the calculateWeek option, after initialization
1170
- *
1171
- * @param methodName 'option'
1172
- * @param optionName 'calculateWeek'
1173
- */
1174
- datepicker(methodName: 'option', optionName: 'calculateWeek'): (date: Date) => string;
1175
- /**
1176
- * Set the calculateWeek option, after initialization
1177
- *
1178
- * @param methodName 'option'
1179
- * @param optionName 'calculateWeek'
1180
- * @param calculateWeekValue A function to calculate the week of the year for a given date. The default implementation uses the ISO 8601 definition: weeks start on a Monday; the first week of the year contains the first Thursday of the year.
1181
- */
1182
- datepicker(methodName: 'option', optionName: 'calculateWeek', calculateWeekValue: (date: Date) => string): JQuery;
1183
- /**
1184
- * Get the changeMonth option, after initialization
1185
- *
1186
- * @param methodName 'option'
1187
- * @param optionName 'changeMonth'
1188
- */
1189
- datepicker(methodName: 'option', optionName: 'changeMonth'): boolean;
1190
- /**
1191
- * Set the changeMonth option, after initialization
1192
- *
1193
- * @param methodName 'option'
1194
- * @param optionName 'changeMonth'
1195
- * @param changeMonthValue Whether the month should be rendered as a dropdown instead of text.
1196
- */
1197
- datepicker(methodName: 'option', optionName: 'changeMonth', changeMonthValue: boolean): JQuery;
1198
- /**
1199
- * Get the changeYear option, after initialization
1200
- *
1201
- * @param methodName 'option'
1202
- * @param optionName 'changeYear'
1203
- */
1204
- datepicker(methodName: 'option', optionName: 'changeYear'): boolean;
1205
- /**
1206
- * Set the changeYear option, after initialization
1207
- *
1208
- * @param methodName 'option'
1209
- * @param optionName 'changeYear'
1210
- * @param changeYearValue Whether the year should be rendered as a dropdown instead of text. Use the yearRange option to control which years are made available for selection.
1211
- */
1212
- datepicker(methodName: 'option', optionName: 'changeYear', changeYearValue: boolean): JQuery;
1213
- /**
1214
- * Get the closeText option, after initialization
1215
- *
1216
- * @param methodName 'option'
1217
- * @param optionName 'closeText'
1218
- */
1219
- datepicker(methodName: 'option', optionName: 'closeText'): string;
1220
- /**
1221
- * Set the closeText option, after initialization
1222
- *
1223
- * @param methodName 'option'
1224
- * @param optionName 'closeText'
1225
- * @param closeTextValue The text to display for the close link. Use the showButtonPanel option to display this button.
1226
- */
1227
- datepicker(methodName: 'option', optionName: 'closeText', closeTextValue: string): JQuery;
1228
- /**
1229
- * Get the constrainInput option, after initialization
1230
- *
1231
- * @param methodName 'option'
1232
- * @param optionName 'constrainInput'
1233
- */
1234
- datepicker(methodName: 'option', optionName: 'constrainInput'): boolean;
1235
- /**
1236
- * Set the constrainInput option, after initialization
1237
- *
1238
- * @param methodName 'option'
1239
- * @param optionName 'constrainInput'
1240
- * @param constrainInputValue When true, entry in the input field is constrained to those characters allowed by the current dateFormat option.
1241
- */
1242
- datepicker(methodName: 'option', optionName: 'constrainInput', constrainInputValue: boolean): JQuery;
1243
- /**
1244
- * Get the currentText option, after initialization
1245
- *
1246
- * @param methodName 'option'
1247
- * @param optionName 'currentText'
1248
- */
1249
- datepicker(methodName: 'option', optionName: 'currentText'): string;
1250
- /**
1251
- * Set the currentText option, after initialization
1252
- *
1253
- * @param methodName 'option'
1254
- * @param optionName 'currentText'
1255
- * @param currentTextValue The text to display for the current day link. Use the showButtonPanel option to display this button.
1256
- */
1257
- datepicker(methodName: 'option', optionName: 'currentText', currentTextValue: string): JQuery;
1258
- /**
1259
- * Get the dateFormat option, after initialization
1260
- *
1261
- * @param methodName 'option'
1262
- * @param optionName 'dateFormat'
1263
- */
1264
- datepicker(methodName: 'option', optionName: 'dateFormat'): string;
1265
- /**
1266
- * Set the dateFormat option, after initialization
1267
- *
1268
- * @param methodName 'option'
1269
- * @param optionName 'dateFormat'
1270
- * @param dateFormatValue The format for parsed and displayed dates. For a full list of the possible formats see the formatDate function.
1271
- */
1272
- datepicker(methodName: 'option', optionName: 'dateFormat', dateFormatValue: string): JQuery;
1273
- /**
1274
- * Get the dayNames option, after initialization
1275
- *
1276
- * @param methodName 'option'
1277
- * @param optionName 'dayNames'
1278
- */
1279
- datepicker(methodName: 'option', optionName: 'dayNames'): string[];
1280
- /**
1281
- * Set the dayNames option, after initialization
1282
- *
1283
- * @param methodName 'option'
1284
- * @param optionName 'dayNames'
1285
- * @param dayNamesValue The list of long day names, starting from Sunday, for use as requested via the dateFormat option.
1286
- */
1287
- datepicker(methodName: 'option', optionName: 'dayNames', dayNamesValue: string[]): JQuery;
1288
- /**
1289
- * Get the dayNamesMin option, after initialization
1290
- *
1291
- * @param methodName 'option'
1292
- * @param optionName 'dayNamesMin'
1293
- */
1294
- datepicker(methodName: 'option', optionName: 'dayNamesMin'): string[];
1295
- /**
1296
- * Set the dayNamesMin option, after initialization
1297
- *
1298
- * @param methodName 'option'
1299
- * @param optionName 'dayNamesMin'
1300
- * @param dayNamesMinValue The list of minimised day names, starting from Sunday, for use as column headers within the datepicker.
1301
- */
1302
- datepicker(methodName: 'option', optionName: 'dayNamesMin', dayNamesMinValue: string[]): JQuery;
1303
- /**
1304
- * Get the dayNamesShort option, after initialization
1305
- *
1306
- * @param methodName 'option'
1307
- * @param optionName 'dayNamesShort'
1308
- */
1309
- datepicker(methodName: 'option', optionName: 'dayNamesShort'): string[];
1310
- /**
1311
- * Set the dayNamesShort option, after initialization
1312
- *
1313
- * @param methodName 'option'
1314
- * @param optionName 'dayNamesShort'
1315
- * @param dayNamesShortValue The list of abbreviated day names, starting from Sunday, for use as requested via the dateFormat option.
1316
- */
1317
- datepicker(methodName: 'option', optionName: 'dayNamesShort', dayNamesShortValue: string[]): JQuery;
1318
- /**
1319
- * Get the defaultDate option, after initialization
1320
- *
1321
- * @param methodName 'option'
1322
- * @param optionName 'defaultDate'
1323
- */
1324
- datepicker(methodName: 'option', optionName: 'defaultDate'): any;
1325
- /**
1326
- * Set the defaultDate option, after initialization
1327
- *
1328
- * @param methodName 'option'
1329
- * @param optionName 'defaultDate'
1330
- * @param defaultDateValue A date object containing the default date.
1331
- */
1332
- datepicker(methodName: 'option', optionName: 'defaultDate', defaultDateValue: Date): JQuery;
1333
- /**
1334
- * Set the defaultDate option, after initialization
1335
- *
1336
- * @param methodName 'option'
1337
- * @param optionName 'defaultDate'
1338
- * @param defaultDateValue A number of days from today. For example 2 represents two days from today and -1 represents yesterday.
1339
- */
1340
- datepicker(methodName: 'option', optionName: 'defaultDate', defaultDateValue: number): JQuery;
1341
- /**
1342
- * Set the defaultDate option, after initialization
1343
- *
1344
- * @param methodName 'option'
1345
- * @param optionName 'defaultDate'
1346
- * @param defaultDateValue A string in the format defined by the dateFormat option, or a relative date. Relative dates must contain value and period pairs; valid periods are "y" for years, "m" for months, "w" for weeks, and "d" for days. For example, "+1m +7d" represents one month and seven days from today.
1347
- */
1348
- datepicker(methodName: 'option', optionName: 'defaultDate', defaultDateValue: string): JQuery;
1349
- /**
1350
- * Get the duration option, after initialization
1351
- *
1352
- * @param methodName 'option'
1353
- * @param optionName 'duration'
1354
- */
1355
- datepicker(methodName: 'option', optionName: 'duration'): string;
1356
- /**
1357
- * Set the duration option, after initialization
1358
- *
1359
- * @param methodName 'option'
1360
- * @param optionName 'duration'
1361
- * @param durationValue Control the speed at which the datepicker appears, it may be a time in milliseconds or a string representing one of the three predefined speeds ("slow", "normal", "fast").
1362
- */
1363
- datepicker(methodName: 'option', optionName: 'duration', durationValue: string): JQuery;
1364
- /**
1365
- * Get the firstDay option, after initialization
1366
- *
1367
- * @param methodName 'option'
1368
- * @param optionName 'firstDay'
1369
- */
1370
- datepicker(methodName: 'option', optionName: 'firstDay'): number;
1371
- /**
1372
- * Set the firstDay option, after initialization
1373
- *
1374
- * @param methodName 'option'
1375
- * @param optionName 'firstDay'
1376
- * @param firstDayValue Set the first day of the week: Sunday is 0, Monday is 1, etc.
1377
- */
1378
- datepicker(methodName: 'option', optionName: 'firstDay', firstDayValue: number): JQuery;
1379
- /**
1380
- * Get the gotoCurrent option, after initialization
1381
- *
1382
- * @param methodName 'option'
1383
- * @param optionName 'gotoCurrent'
1384
- */
1385
- datepicker(methodName: 'option', optionName: 'gotoCurrent'): boolean;
1386
- /**
1387
- * Set the gotoCurrent option, after initialization
1388
- *
1389
- * @param methodName 'option'
1390
- * @param optionName 'gotoCurrent'
1391
- * @param gotoCurrentValue When true, the current day link moves to the currently selected date instead of today.
1392
- */
1393
- datepicker(methodName: 'option', optionName: 'gotoCurrent', gotoCurrentValue: boolean): JQuery;
1394
- /**
1395
- * Gets the value currently associated with the specified optionName.
1396
- *
1397
- * @param methodName 'option'
1398
- * @param optionName The name of the option to get.
1399
- */
1400
- datepicker(methodName: 'option', optionName: string): any;
1401
- datepicker(methodName: 'option', optionName: string, ...otherParams: any[]): any;
1402
- datepicker(methodName: string, ...otherParams: any[]): any;
1403
- /**
1404
- * Initialize a datepicker with the given options
1405
- */
1406
- datepicker(options: JQueryUI.DatepickerOptions): JQuery;
1407
- dialog(): JQuery;
1408
- dialog(methodName: 'close'): JQuery;
1409
- dialog(methodName: 'destroy'): JQuery;
1410
- dialog(methodName: 'isOpen'): boolean;
1411
- dialog(methodName: 'moveToTop'): JQuery;
1412
- dialog(methodName: 'open'): JQuery;
1413
- dialog(methodName: 'widget'): JQuery;
1414
- dialog(methodName: string): JQuery;
1415
- dialog(options: JQueryUI.DialogOptions): JQuery;
1416
- dialog(optionLiteral: string, optionName: string): any;
1417
- dialog(optionLiteral: string, options: JQueryUI.DialogOptions): any;
1418
- dialog(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1419
- draggable(): JQuery;
1420
- draggable(methodName: 'destroy'): void;
1421
- draggable(methodName: 'disable'): void;
1422
- draggable(methodName: 'enable'): void;
1423
- draggable(methodName: 'widget'): JQuery;
1424
- draggable(methodName: string): JQuery;
1425
- draggable(options: JQueryUI.DraggableOptions): JQuery;
1426
- draggable(optionLiteral: string, optionName: string): any;
1427
- draggable(optionLiteral: string, options: JQueryUI.DraggableOptions): any;
1428
- draggable(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1429
- droppable(): JQuery;
1430
- droppable(methodName: 'destroy'): void;
1431
- droppable(methodName: 'disable'): void;
1432
- droppable(methodName: 'enable'): void;
1433
- droppable(methodName: 'widget'): JQuery;
1434
- droppable(methodName: string): JQuery;
1435
- droppable(options: JQueryUI.DroppableOptions): JQuery;
1436
- droppable(optionLiteral: string, optionName: string): any;
1437
- droppable(optionLiteral: string, options: JQueryUI.DraggableOptions): any;
1438
- droppable(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1439
- menu: {
1440
- (): JQuery;
1441
- (methodName: 'blur'): void;
1442
- (methodName: 'collapse', event?: JQueryEventObject): void;
1443
- (methodName: 'collapseAll', event?: JQueryEventObject, all?: boolean): void;
1444
- (methodName: 'destroy'): void;
1445
- (methodName: 'disable'): void;
1446
- (methodName: 'enable'): void;
1447
- (methodName: string, event: JQueryEventObject, item: JQuery): void;
1448
- (methodName: 'focus', event: JQueryEventObject, item: JQuery): void;
1449
- (methodName: 'isFirstItem'): boolean;
1450
- (methodName: 'isLastItem'): boolean;
1451
- (methodName: 'next', event?: JQueryEventObject): void;
1452
- (methodName: 'nextPage', event?: JQueryEventObject): void;
1453
- (methodName: 'previous', event?: JQueryEventObject): void;
1454
- (methodName: 'previousPage', event?: JQueryEventObject): void;
1455
- (methodName: 'refresh'): void;
1456
- (methodName: 'select', event?: JQueryEventObject): void;
1457
- (methodName: 'widget'): JQuery;
1458
- (methodName: string): JQuery;
1459
- (options: JQueryUI.MenuOptions): JQuery;
1460
- (optionLiteral: string, optionName: string): any;
1461
- (optionLiteral: string, options: JQueryUI.MenuOptions): any;
1462
- (optionLiteral: string, optionName: string, optionValue: any): JQuery;
1463
- active: boolean;
1464
- };
1465
- progressbar(): JQuery;
1466
- progressbar(methodName: 'destroy'): void;
1467
- progressbar(methodName: 'disable'): void;
1468
- progressbar(methodName: 'enable'): void;
1469
- progressbar(methodName: 'refresh'): void;
1470
- progressbar(methodName: 'value'): any;
1471
- progressbar(methodName: 'value', value: number): void;
1472
- progressbar(methodName: 'value', value: boolean): void;
1473
- progressbar(methodName: 'widget'): JQuery;
1474
- progressbar(methodName: string): JQuery;
1475
- progressbar(options: JQueryUI.ProgressbarOptions): JQuery;
1476
- progressbar(optionLiteral: string, optionName: string): any;
1477
- progressbar(optionLiteral: string, options: JQueryUI.ProgressbarOptions): any;
1478
- progressbar(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1479
- resizable(): JQuery;
1480
- resizable(methodName: 'destroy'): void;
1481
- resizable(methodName: 'disable'): void;
1482
- resizable(methodName: 'enable'): void;
1483
- resizable(methodName: 'widget'): JQuery;
1484
- resizable(methodName: string): JQuery;
1485
- resizable(options: JQueryUI.ResizableOptions): JQuery;
1486
- resizable(optionLiteral: string, optionName: string): any;
1487
- resizable(optionLiteral: string, options: JQueryUI.ResizableOptions): any;
1488
- resizable(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1489
- selectable(): JQuery;
1490
- selectable(methodName: 'destroy'): void;
1491
- selectable(methodName: 'disable'): void;
1492
- selectable(methodName: 'enable'): void;
1493
- selectable(methodName: 'widget'): JQuery;
1494
- selectable(methodName: string): JQuery;
1495
- selectable(options: JQueryUI.SelectableOptions): JQuery;
1496
- selectable(optionLiteral: string, optionName: string): any;
1497
- selectable(optionLiteral: string, options: JQueryUI.SelectableOptions): any;
1498
- selectable(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1499
- slider(): JQuery;
1500
- slider(methodName: 'destroy'): void;
1501
- slider(methodName: 'disable'): void;
1502
- slider(methodName: 'enable'): void;
1503
- slider(methodName: 'refresh'): void;
1504
- slider(methodName: 'value'): number;
1505
- slider(methodName: 'value', value: number): void;
1506
- slider(methodName: 'values'): Array<number>;
1507
- slider(methodName: 'values', index: number): number;
1508
- slider(methodName: string, index: number, value: number): void;
1509
- slider(methodName: 'values', index: number, value: number): void;
1510
- slider(methodName: string, values: Array<number>): void;
1511
- slider(methodName: 'values', values: Array<number>): void;
1512
- slider(methodName: 'widget'): JQuery;
1513
- slider(methodName: string): JQuery;
1514
- slider(options: JQueryUI.SliderOptions): JQuery;
1515
- slider(optionLiteral: string, optionName: string): any;
1516
- slider(optionLiteral: string, options: JQueryUI.SliderOptions): any;
1517
- slider(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1518
- sortable(): JQuery;
1519
- sortable(methodName: 'destroy'): void;
1520
- sortable(methodName: 'disable'): void;
1521
- sortable(methodName: 'enable'): void;
1522
- sortable(methodName: 'widget'): JQuery;
1523
- sortable(methodName: 'toArray'): string[];
1524
- sortable(methodName: string): JQuery;
1525
- sortable(options: JQueryUI.SortableOptions): JQuery;
1526
- sortable(optionLiteral: string, optionName: string): any;
1527
- sortable(methodName: 'serialize', options?: {
1528
- key?: string;
1529
- attribute?: string;
1530
- expression?: RegExp;
1531
- }): string;
1532
- sortable(optionLiteral: string, options: JQueryUI.SortableOptions): any;
1533
- sortable(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1534
- spinner(): JQuery;
1535
- spinner(methodName: 'destroy'): void;
1536
- spinner(methodName: 'disable'): void;
1537
- spinner(methodName: 'enable'): void;
1538
- spinner(methodName: 'pageDown', pages?: number): void;
1539
- spinner(methodName: 'pageUp', pages?: number): void;
1540
- spinner(methodName: 'stepDown', steps?: number): void;
1541
- spinner(methodName: 'stepUp', steps?: number): void;
1542
- spinner(methodName: 'value'): number;
1543
- spinner(methodName: 'value', value: number): void;
1544
- spinner(methodName: 'widget'): JQuery;
1545
- spinner(methodName: string): JQuery;
1546
- spinner(options: JQueryUI.SpinnerOptions): JQuery;
1547
- spinner(optionLiteral: string, optionName: string): any;
1548
- spinner(optionLiteral: string, options: JQueryUI.SpinnerOptions): any;
1549
- spinner(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1550
- tabs(): JQuery;
1551
- tabs(methodName: 'destroy'): void;
1552
- tabs(methodName: 'disable'): void;
1553
- tabs(methodName: 'enable'): void;
1554
- tabs(methodName: 'load', index: number): void;
1555
- tabs(methodName: 'refresh'): void;
1556
- tabs(methodName: 'widget'): JQuery;
1557
- tabs(methodName: string): JQuery;
1558
- tabs(options: JQueryUI.TabsOptions): JQuery;
1559
- tabs(optionLiteral: string, optionName: string): any;
1560
- tabs(optionLiteral: string, options: JQueryUI.TabsOptions): any;
1561
- tabs(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1562
- tooltip(): JQuery;
1563
- tooltip(methodName: 'destroy'): void;
1564
- tooltip(methodName: 'disable'): void;
1565
- tooltip(methodName: 'enable'): void;
1566
- tooltip(methodName: 'open'): void;
1567
- tooltip(methodName: 'close'): void;
1568
- tooltip(methodName: 'widget'): JQuery;
1569
- tooltip(methodName: string): JQuery;
1570
- tooltip(options: JQueryUI.TooltipOptions): JQuery;
1571
- tooltip(optionLiteral: string, optionName: string): any;
1572
- tooltip(optionLiteral: string, options: JQueryUI.TooltipOptions): any;
1573
- tooltip(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1574
- addClass(classNames: string, speed?: number, callback?: Function): JQuery;
1575
- addClass(classNames: string, speed?: string, callback?: Function): JQuery;
1576
- addClass(classNames: string, speed?: number, easing?: string, callback?: Function): JQuery;
1577
- addClass(classNames: string, speed?: string, easing?: string, callback?: Function): JQuery;
1578
- removeClass(classNames: string, speed?: number, callback?: Function): JQuery;
1579
- removeClass(classNames: string, speed?: string, callback?: Function): JQuery;
1580
- removeClass(classNames: string, speed?: number, easing?: string, callback?: Function): JQuery;
1581
- removeClass(classNames: string, speed?: string, easing?: string, callback?: Function): JQuery;
1582
- switchClass(removeClassName: string, addClassName: string, duration?: number, easing?: string, complete?: Function): JQuery;
1583
- switchClass(removeClassName: string, addClassName: string, duration?: string, easing?: string, complete?: Function): JQuery;
1584
- toggleClass(className: string, duration?: number, easing?: string, complete?: Function): JQuery;
1585
- toggleClass(className: string, duration?: string, easing?: string, complete?: Function): JQuery;
1586
- toggleClass(className: string, aswitch?: boolean, duration?: number, easing?: string, complete?: Function): JQuery;
1587
- toggleClass(className: string, aswitch?: boolean, duration?: string, easing?: string, complete?: Function): JQuery;
1588
- effect(options: any): JQuery;
1589
- effect(effect: string, options?: any, duration?: number, complete?: Function): JQuery;
1590
- effect(effect: string, options?: any, duration?: string, complete?: Function): JQuery;
1591
- hide(options: any): JQuery;
1592
- hide(effect: string, options?: any, duration?: number, complete?: Function): JQuery;
1593
- hide(effect: string, options?: any, duration?: string, complete?: Function): JQuery;
1594
- show(options: any): JQuery;
1595
- show(effect: string, options?: any, duration?: number, complete?: Function): JQuery;
1596
- show(effect: string, options?: any, duration?: string, complete?: Function): JQuery;
1597
- toggle(options: any): JQuery;
1598
- toggle(effect: string, options?: any, duration?: number, complete?: Function): JQuery;
1599
- toggle(effect: string, options?: any, duration?: string, complete?: Function): JQuery;
1600
- position(options: JQueryUI.JQueryPositionOptions): JQuery;
1601
- enableSelection(): JQuery;
1602
- disableSelection(): JQuery;
1603
- focus(delay: number, callback?: Function): JQuery;
1604
- uniqueId(): JQuery;
1605
- removeUniqueId(): JQuery;
1606
- scrollParent(): JQuery;
1607
- zIndex(): JQuery;
1608
- zIndex(zIndex: number): JQuery;
1609
- widget: JQueryUI.Widget;
1610
- jQuery: JQueryStatic;
1611
- }
1612
- interface JQueryStatic {
1613
- ui: JQueryUI.UI;
1614
- datepicker: JQueryUI.Datepicker;
1615
- widget: JQueryUI.Widget;
1616
- Widget: JQueryUI.Widget;
1617
- }
1618
- }
1
+ declare const _default: {};
2
+ export default _default;
3
+ declare global {
4
+ namespace JQueryUI {
5
+ interface AccordionOptions extends AccordionEvents {
6
+ active?: any;
7
+ animate?: any;
8
+ collapsible?: boolean;
9
+ disabled?: boolean;
10
+ event?: string;
11
+ header?: string;
12
+ heightStyle?: string;
13
+ icons?: any;
14
+ }
15
+ interface AccordionUIParams {
16
+ newHeader: JQuery;
17
+ oldHeader: JQuery;
18
+ newPanel: JQuery;
19
+ oldPanel: JQuery;
20
+ }
21
+ interface AccordionEvent {
22
+ (event: Event, ui: AccordionUIParams): void;
23
+ }
24
+ interface AccordionEvents {
25
+ activate?: AccordionEvent;
26
+ beforeActivate?: AccordionEvent;
27
+ create?: AccordionEvent;
28
+ }
29
+ interface Accordion extends Widget, AccordionOptions {
30
+ }
31
+ interface AutocompleteOptions extends AutocompleteEvents {
32
+ appendTo?: any;
33
+ autoFocus?: boolean;
34
+ delay?: number;
35
+ disabled?: boolean;
36
+ minLength?: number;
37
+ position?: any;
38
+ source?: any;
39
+ }
40
+ interface AutocompleteUIParams {
41
+ /**
42
+ * The item selected from the menu, if any. Otherwise the property is null
43
+ */
44
+ item?: any;
45
+ }
46
+ interface AutocompleteEvent {
47
+ (event: Event, ui: AutocompleteUIParams): void;
48
+ }
49
+ interface AutocompleteEvents {
50
+ change?: AutocompleteEvent;
51
+ close?: AutocompleteEvent;
52
+ create?: AutocompleteEvent;
53
+ focus?: AutocompleteEvent;
54
+ open?: AutocompleteEvent;
55
+ response?: AutocompleteEvent;
56
+ search?: AutocompleteEvent;
57
+ select?: AutocompleteEvent;
58
+ }
59
+ interface Autocomplete extends Widget, AutocompleteOptions {
60
+ escapeRegex: (value: string) => string;
61
+ filter: (array: any, term: string) => any;
62
+ }
63
+ interface ButtonOptions {
64
+ disabled?: boolean;
65
+ icons?: any;
66
+ label?: string;
67
+ text?: string | boolean;
68
+ click?: (event?: Event) => void;
69
+ }
70
+ interface Button extends Widget, ButtonOptions {
71
+ }
72
+ interface DatepickerOptions {
73
+ /**
74
+ * An input element that is to be updated with the selected date from the datepicker. Use the altFormat option to change the format of the date within this field. Leave as blank for no alternate field.
75
+ */
76
+ altField?: any;
77
+ /**
78
+ * The dateFormat to be used for the altField option. This allows one date format to be shown to the user for selection purposes, while a different format is actually sent behind the scenes. For a full list of the possible formats see the formatDate function
79
+ */
80
+ altFormat?: string;
81
+ /**
82
+ * The text to display after each date field, e.g., to show the required format.
83
+ */
84
+ appendText?: string;
85
+ /**
86
+ * Set to true to automatically resize the input field to accommodate dates in the current dateFormat.
87
+ */
88
+ autoSize?: boolean;
89
+ /**
90
+ * A function that takes an input field and current datepicker instance and returns an options object to update the datepicker with. It is called just before the datepicker is displayed.
91
+ */
92
+ beforeShow?: (input: Element, inst: any) => JQueryUI.DatepickerOptions;
93
+ /**
94
+ * A function that takes a date as a parameter and must return an array with:
95
+ * [0]: true/false indicating whether or not this date is selectable
96
+ * [1]: a CSS class name to add to the date's cell or "" for the default presentation
97
+ * [2]: an optional popup tooltip for this date
98
+ * The function is called for each day in the datepicker before it is displayed.
99
+ */
100
+ beforeShowDay?: (date: Date) => any[];
101
+ /**
102
+ * A URL of an image to use to display the datepicker when the showOn option is set to "button" or "both". If set, the buttonText option becomes the alt value and is not directly displayed.
103
+ */
104
+ buttonImage?: string;
105
+ /**
106
+ * Whether the button image should be rendered by itself instead of inside a button element. This option is only relevant if the buttonImage option has also been set.
107
+ */
108
+ buttonImageOnly?: boolean;
109
+ /**
110
+ * The text to display on the trigger button. Use in conjunction with the showOn option set to "button" or "both".
111
+ */
112
+ buttonText?: string;
113
+ /**
114
+ * A function to calculate the week of the year for a given date. The default implementation uses the ISO 8601 definition: weeks start on a Monday; the first week of the year contains the first Thursday of the year.
115
+ */
116
+ calculateWeek?: (date: Date) => string;
117
+ /**
118
+ * Whether the month should be rendered as a dropdown instead of text.
119
+ */
120
+ changeMonth?: boolean;
121
+ /**
122
+ * Whether the year should be rendered as a dropdown instead of text. Use the yearRange option to control which years are made available for selection.
123
+ */
124
+ changeYear?: boolean;
125
+ /**
126
+ * The text to display for the close link. Use the showButtonPanel option to display this button.
127
+ */
128
+ closeText?: string;
129
+ /**
130
+ * When true, entry in the input field is constrained to those characters allowed by the current dateFormat option.
131
+ */
132
+ constrainInput?: boolean;
133
+ /**
134
+ * The text to display for the current day link. Use the showButtonPanel option to display this button.
135
+ */
136
+ currentText?: string;
137
+ /**
138
+ * The format for parsed and displayed dates. For a full list of the possible formats see the formatDate function.
139
+ */
140
+ dateFormat?: string;
141
+ /**
142
+ * The list of long day names, starting from Sunday, for use as requested via the dateFormat option.
143
+ */
144
+ dayNames?: string[];
145
+ /**
146
+ * The list of minimised day names, starting from Sunday, for use as column headers within the datepicker.
147
+ */
148
+ dayNamesMin?: string[];
149
+ /**
150
+ * The list of abbreviated day names, starting from Sunday, for use as requested via the dateFormat option.
151
+ */
152
+ dayNamesShort?: string[];
153
+ /**
154
+ * Set the date to highlight on first opening if the field is blank. Specify either an actual date via a Date object or as a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +7d'), or null for today.
155
+ * Multiple types supported:
156
+ * Date: A date object containing the default date.
157
+ * Number: A number of days from today. For example 2 represents two days from today and -1 represents yesterday.
158
+ * String: A string in the format defined by the dateFormat option, or a relative date. Relative dates must contain value and period pairs; valid periods are "y" for years, "m" for months, "w" for weeks, and "d" for days. For example, "+1m +7d" represents one month and seven days from today.
159
+ */
160
+ defaultDate?: any;
161
+ /**
162
+ * Control the speed at which the datepicker appears, it may be a time in milliseconds or a string representing one of the three predefined speeds ("slow", "normal", "fast").
163
+ */
164
+ duration?: string;
165
+ /**
166
+ * Set the first day of the week: Sunday is 0, Monday is 1, etc.
167
+ */
168
+ firstDay?: number;
169
+ /**
170
+ * When true, the current day link moves to the currently selected date instead of today.
171
+ */
172
+ gotoCurrent?: boolean;
173
+ /**
174
+ * Normally the previous and next links are disabled when not applicable (see the minDate and maxDate options). You can hide them altogether by setting this attribute to true.
175
+ */
176
+ hideIfNoPrevNext?: boolean;
177
+ /**
178
+ * Whether the current language is drawn from right to left.
179
+ */
180
+ isRTL?: boolean;
181
+ /**
182
+ * The maximum selectable date. When set to null, there is no maximum.
183
+ * Multiple types supported:
184
+ * Date: A date object containing the maximum date.
185
+ * Number: A number of days from today. For example 2 represents two days from today and -1 represents yesterday.
186
+ * String: A string in the format defined by the dateFormat option, or a relative date. Relative dates must contain value and period pairs; valid periods are "y" for years, "m" for months, "w" for weeks, and "d" for days. For example, "+1m +7d" represents one month and seven days from today.
187
+ */
188
+ maxDate?: any;
189
+ /**
190
+ * The minimum selectable date. When set to null, there is no minimum.
191
+ * Multiple types supported:
192
+ * Date: A date object containing the minimum date.
193
+ * Number: A number of days from today. For example 2 represents two days from today and -1 represents yesterday.
194
+ * String: A string in the format defined by the dateFormat option, or a relative date. Relative dates must contain value and period pairs; valid periods are "y" for years, "m" for months, "w" for weeks, and "d" for days. For example, "+1m +7d" represents one month and seven days from today.
195
+ */
196
+ minDate?: any;
197
+ /**
198
+ * The list of full month names, for use as requested via the dateFormat option.
199
+ */
200
+ monthNames?: string[];
201
+ /**
202
+ * The list of abbreviated month names, as used in the month header on each datepicker and as requested via the dateFormat option.
203
+ */
204
+ monthNamesShort?: string[];
205
+ /**
206
+ * Whether the prevText and nextText options should be parsed as dates by the formatDate function, allowing them to display the target month names for example.
207
+ */
208
+ navigationAsDateFormat?: boolean;
209
+ /**
210
+ * The text to display for the next month link. With the standard ThemeRoller styling, this value is replaced by an icon.
211
+ */
212
+ nextText?: string;
213
+ /**
214
+ * The number of months to show at once.
215
+ * Multiple types supported:
216
+ * Number: The number of months to display in a single row.
217
+ * Array: An array defining the number of rows and columns to display.
218
+ */
219
+ numberOfMonths?: any;
220
+ /**
221
+ * Called when the datepicker moves to a new month and/or year. The function receives the selected year, month (1-12), and the datepicker instance as parameters. this refers to the associated input field.
222
+ */
223
+ onChangeMonthYear?: (year: number, month: number, inst: any) => void;
224
+ /**
225
+ * Called when the datepicker is closed, whether or not a date is selected. The function receives the selected date as text ("" if none) and the datepicker instance as parameters. this refers to the associated input field.
226
+ */
227
+ onClose?: (dateText: string, inst: any) => void;
228
+ /**
229
+ * Called when the datepicker is selected. The function receives the selected date as text and the datepicker instance as parameters. this refers to the associated input field.
230
+ */
231
+ onSelect?: (dateText: string, inst: any) => void;
232
+ /**
233
+ * The text to display for the previous month link. With the standard ThemeRoller styling, this value is replaced by an icon.
234
+ */
235
+ prevText?: string;
236
+ /**
237
+ * Whether days in other months shown before or after the current month are selectable. This only applies if the showOtherMonths option is set to true.
238
+ */
239
+ selectOtherMonths?: boolean;
240
+ /**
241
+ * The cutoff year for determining the century for a date (used in conjunction with dateFormat 'y'). Any dates entered with a year value less than or equal to the cutoff year are considered to be in the current century, while those greater than it are deemed to be in the previous century.
242
+ * Multiple types supported:
243
+ * Number: A value between 0 and 99 indicating the cutoff year.
244
+ * String: A relative number of years from the current year, e.g., "+3" or "-5".
245
+ */
246
+ shortYearCutoff?: any;
247
+ /**
248
+ * The name of the animation used to show and hide the datepicker. Use "show" (the default), "slideDown", "fadeIn", any of the jQuery UI effects. Set to an empty string to disable animation.
249
+ */
250
+ showAnim?: string;
251
+ /**
252
+ * Whether to display a button pane underneath the calendar. The button pane contains two buttons, a Today button that links to the current day, and a Done button that closes the datepicker. The buttons' text can be customized using the currentText and closeText options respectively.
253
+ */
254
+ showButtonPanel?: boolean;
255
+ /**
256
+ * When displaying multiple months via the numberOfMonths option, the showCurrentAtPos option defines which position to display the current month in.
257
+ */
258
+ showCurrentAtPos?: number;
259
+ /**
260
+ * Whether to show the month after the year in the header.
261
+ */
262
+ showMonthAfterYear?: boolean;
263
+ /**
264
+ * When the datepicker should appear. The datepicker can appear when the field receives focus ("focus"), when a button is clicked ("button"), or when either event occurs ("both").
265
+ */
266
+ showOn?: string;
267
+ /**
268
+ * If using one of the jQuery UI effects for the showAnim option, you can provide additional settings for that animation via this option.
269
+ */
270
+ showOptions?: any;
271
+ /**
272
+ * Whether to display dates in other months (non-selectable) at the start or end of the current month. To make these days selectable use the selectOtherMonths option.
273
+ */
274
+ showOtherMonths?: boolean;
275
+ /**
276
+ * When true, a column is added to show the week of the year. The calculateWeek option determines how the week of the year is calculated. You may also want to change the firstDay option.
277
+ */
278
+ showWeek?: boolean;
279
+ /**
280
+ * Set how many months to move when clicking the previous/next links.
281
+ */
282
+ stepMonths?: number;
283
+ /**
284
+ * The text to display for the week of the year column heading. Use the showWeek option to display this column.
285
+ */
286
+ weekHeader?: string;
287
+ /**
288
+ * The range of years displayed in the year drop-down: either relative to today's year ("-nn:+nn"), relative to the currently selected year ("c-nn:c+nn"), absolute ("nnnn:nnnn"), or combinations of these formats ("nnnn:-nn"). Note that this option only affects what appears in the drop-down, to restrict which dates may be selected use the minDate and/or maxDate options.
289
+ */
290
+ yearRange?: string;
291
+ /**
292
+ * Additional text to display after the year in the month headers.
293
+ */
294
+ yearSuffix?: string;
295
+ }
296
+ interface DatepickerFormatDateOptions {
297
+ dayNamesShort?: string[];
298
+ dayNames?: string[];
299
+ monthNamesShort?: string[];
300
+ monthNames?: string[];
301
+ }
302
+ interface Datepicker extends Widget, DatepickerOptions {
303
+ regional: {
304
+ [languageCod3: string]: any;
305
+ };
306
+ setDefaults(defaults: DatepickerOptions): void;
307
+ formatDate(format: string, date: Date, settings?: DatepickerFormatDateOptions): string;
308
+ parseDate(format: string, date: string, settings?: DatepickerFormatDateOptions): Date;
309
+ iso8601Week(date: Date): number;
310
+ noWeekends(date: Date): any[];
311
+ }
312
+ interface DialogOptions extends DialogEvents {
313
+ autoOpen?: boolean;
314
+ buttons?: {
315
+ [buttonText: string]: (event?: Event) => void;
316
+ } | DialogButtonOptions[];
317
+ closeOnEscape?: boolean;
318
+ closeText?: string;
319
+ appendTo?: string;
320
+ dialogClass?: string;
321
+ disabled?: boolean;
322
+ draggable?: boolean;
323
+ height?: number | string;
324
+ hide?: boolean | number | string | DialogShowHideOptions;
325
+ maxHeight?: number;
326
+ maxWidth?: number;
327
+ minHeight?: number;
328
+ minWidth?: number;
329
+ modal?: boolean;
330
+ position?: any;
331
+ resizable?: boolean;
332
+ show?: boolean | number | string | DialogShowHideOptions;
333
+ stack?: boolean;
334
+ title?: string;
335
+ width?: any;
336
+ zIndex?: number;
337
+ open?: DialogEvent;
338
+ close?: DialogEvent;
339
+ }
340
+ interface DialogButtonOptions {
341
+ icons?: any;
342
+ showText?: string | boolean;
343
+ text?: string;
344
+ click?: (eventObject: JQueryEventObject) => any;
345
+ [attr: string]: any;
346
+ }
347
+ interface DialogShowHideOptions {
348
+ effect: string;
349
+ delay?: number;
350
+ duration?: number;
351
+ easing?: string;
352
+ }
353
+ interface DialogUIParams {
354
+ }
355
+ interface DialogEvent {
356
+ (event: Event | null, ui: DialogUIParams | null): void;
357
+ }
358
+ interface DialogEvents {
359
+ beforeClose?: DialogEvent;
360
+ close?: DialogEvent;
361
+ create?: DialogEvent;
362
+ drag?: DialogEvent;
363
+ dragStart?: DialogEvent;
364
+ dragStop?: DialogEvent;
365
+ focus?: DialogEvent;
366
+ open?: DialogEvent;
367
+ resize?: DialogEvent;
368
+ resizeStart?: DialogEvent;
369
+ resizeStop?: DialogEvent;
370
+ }
371
+ interface Dialog extends Widget, DialogOptions {
372
+ }
373
+ interface DraggableEventUIParams {
374
+ helper: JQuery;
375
+ position: {
376
+ top: number;
377
+ left: number;
378
+ };
379
+ offset: {
380
+ top: number;
381
+ left: number;
382
+ };
383
+ }
384
+ interface DraggableEvent {
385
+ (event: Event, ui: DraggableEventUIParams): void;
386
+ }
387
+ interface DraggableOptions extends DraggableEvents {
388
+ disabled?: boolean;
389
+ addClasses?: boolean;
390
+ appendTo?: any;
391
+ axis?: string;
392
+ cancel?: string;
393
+ connectToSortable?: string;
394
+ containment?: any;
395
+ cursor?: string;
396
+ cursorAt?: any;
397
+ delay?: number;
398
+ distance?: number;
399
+ grid?: number[];
400
+ handle?: any;
401
+ helper?: any;
402
+ iframeFix?: any;
403
+ opacity?: number;
404
+ refreshPositions?: boolean;
405
+ revert?: any;
406
+ revertDuration?: number;
407
+ scope?: string;
408
+ scroll?: boolean;
409
+ scrollSensitivity?: number;
410
+ scrollSpeed?: number;
411
+ snap?: any;
412
+ snapMode?: string;
413
+ snapTolerance?: number;
414
+ stack?: string;
415
+ zIndex?: number;
416
+ }
417
+ interface DraggableEvents {
418
+ create?: DraggableEvent;
419
+ start?: DraggableEvent;
420
+ drag?: DraggableEvent;
421
+ stop?: DraggableEvent;
422
+ }
423
+ interface Draggable extends Widget, DraggableOptions, DraggableEvent {
424
+ }
425
+ interface DroppableEventUIParam {
426
+ draggable: JQuery;
427
+ helper: JQuery;
428
+ position: {
429
+ top: number;
430
+ left: number;
431
+ };
432
+ offset: {
433
+ top: number;
434
+ left: number;
435
+ };
436
+ }
437
+ interface DroppableEvent {
438
+ (event: Event, ui: DroppableEventUIParam): void;
439
+ }
440
+ interface DroppableOptions extends DroppableEvents {
441
+ disabled?: boolean;
442
+ accept?: any;
443
+ activeClass?: string;
444
+ greedy?: boolean;
445
+ hoverClass?: string;
446
+ scope?: string;
447
+ tolerance?: string;
448
+ }
449
+ interface DroppableEvents {
450
+ create?: DroppableEvent;
451
+ activate?: DroppableEvent;
452
+ deactivate?: DroppableEvent;
453
+ over?: DroppableEvent;
454
+ out?: DroppableEvent;
455
+ drop?: DroppableEvent;
456
+ }
457
+ interface Droppable extends Widget, DroppableOptions {
458
+ }
459
+ interface MenuOptions extends MenuEvents {
460
+ disabled?: boolean;
461
+ icons?: any;
462
+ menus?: string;
463
+ position?: any;
464
+ role?: string;
465
+ }
466
+ interface MenuUIParams {
467
+ item?: JQuery;
468
+ }
469
+ interface MenuEvent {
470
+ (event: Event, ui: MenuUIParams): void;
471
+ }
472
+ interface MenuEvents {
473
+ blur?: MenuEvent;
474
+ create?: MenuEvent;
475
+ focus?: MenuEvent;
476
+ select?: MenuEvent;
477
+ }
478
+ interface Menu extends Widget, MenuOptions {
479
+ }
480
+ interface ProgressbarOptions extends ProgressbarEvents {
481
+ disabled?: boolean;
482
+ value?: number | boolean;
483
+ max?: number;
484
+ }
485
+ interface ProgressbarUIParams {
486
+ }
487
+ interface ProgressbarEvent {
488
+ (event: Event, ui: ProgressbarUIParams): void;
489
+ }
490
+ interface ProgressbarEvents {
491
+ change?: ProgressbarEvent;
492
+ complete?: ProgressbarEvent;
493
+ create?: ProgressbarEvent;
494
+ }
495
+ interface Progressbar extends Widget, ProgressbarOptions {
496
+ }
497
+ interface ResizableOptions extends ResizableEvents {
498
+ alsoResize?: any;
499
+ animate?: boolean;
500
+ animateDuration?: any;
501
+ animateEasing?: string;
502
+ aspectRatio?: any;
503
+ autoHide?: boolean;
504
+ cancel?: string;
505
+ containment?: any;
506
+ delay?: number;
507
+ disabled?: boolean;
508
+ distance?: number;
509
+ ghost?: boolean;
510
+ grid?: any;
511
+ handles?: any;
512
+ helper?: string;
513
+ maxHeight?: number;
514
+ maxWidth?: number;
515
+ minHeight?: number;
516
+ minWidth?: number;
517
+ }
518
+ interface ResizableUIParams {
519
+ element: JQuery;
520
+ helper: JQuery;
521
+ originalElement: JQuery;
522
+ originalPosition: any;
523
+ originalSize: any;
524
+ position: any;
525
+ size: any;
526
+ }
527
+ interface ResizableEvent {
528
+ (event: Event, ui: ResizableUIParams): void;
529
+ }
530
+ interface ResizableEvents {
531
+ resize?: ResizableEvent;
532
+ start?: ResizableEvent;
533
+ stop?: ResizableEvent;
534
+ create?: ResizableEvents;
535
+ }
536
+ interface Resizable extends Widget, ResizableOptions {
537
+ }
538
+ interface SelectableOptions extends SelectableEvents {
539
+ autoRefresh?: boolean;
540
+ cancel?: string;
541
+ delay?: number;
542
+ disabled?: boolean;
543
+ distance?: number;
544
+ filter?: string;
545
+ tolerance?: string;
546
+ }
547
+ interface SelectableEvents {
548
+ selected?(event: Event, ui: {
549
+ selected?: Element;
550
+ }): void;
551
+ selecting?(event: Event, ui: {
552
+ selecting?: Element;
553
+ }): void;
554
+ start?(event: Event, ui: any): void;
555
+ stop?(event: Event, ui: any): void;
556
+ unselected?(event: Event, ui: {
557
+ unselected: Element;
558
+ }): void;
559
+ unselecting?(event: Event, ui: {
560
+ unselecting: Element;
561
+ }): void;
562
+ }
563
+ interface Selectable extends Widget, SelectableOptions {
564
+ }
565
+ interface SliderOptions extends SliderEvents {
566
+ animate?: any;
567
+ disabled?: boolean;
568
+ max?: number;
569
+ min?: number;
570
+ orientation?: string;
571
+ range?: any;
572
+ step?: number;
573
+ value?: number;
574
+ values?: number[];
575
+ highlight?: boolean;
576
+ }
577
+ interface SliderUIParams {
578
+ handle?: JQuery;
579
+ value?: number;
580
+ values?: number[];
581
+ }
582
+ interface SliderEvent {
583
+ (event: Event, ui: SliderUIParams): void;
584
+ }
585
+ interface SliderEvents {
586
+ change?: SliderEvent;
587
+ create?: SliderEvent;
588
+ slide?: SliderEvent;
589
+ start?: SliderEvent;
590
+ stop?: SliderEvent;
591
+ }
592
+ interface Slider extends Widget, SliderOptions {
593
+ }
594
+ interface SortableOptions extends SortableEvents {
595
+ appendTo?: any;
596
+ axis?: string;
597
+ cancel?: any;
598
+ connectWith?: any;
599
+ containment?: any;
600
+ cursor?: string;
601
+ cursorAt?: any;
602
+ delay?: number;
603
+ disabled?: boolean;
604
+ distance?: number;
605
+ dropOnEmpty?: boolean;
606
+ forceHelperSize?: boolean;
607
+ forcePlaceholderSize?: boolean;
608
+ grid?: number[];
609
+ helper?: string | ((event: Event, element: Sortable) => Element);
610
+ handle?: any;
611
+ items?: any;
612
+ opacity?: number;
613
+ placeholder?: string;
614
+ revert?: any;
615
+ scroll?: boolean;
616
+ scrollSensitivity?: number;
617
+ scrollSpeed?: number;
618
+ tolerance?: string;
619
+ zIndex?: number;
620
+ }
621
+ interface SortableUIParams {
622
+ helper: JQuery;
623
+ item: JQuery;
624
+ offset: any;
625
+ position: any;
626
+ originalPosition: any;
627
+ sender: JQuery;
628
+ placeholder: JQuery;
629
+ }
630
+ interface SortableEvent {
631
+ (event: JQueryEventObject, ui: SortableUIParams): void;
632
+ }
633
+ interface SortableEvents {
634
+ activate?: SortableEvent;
635
+ beforeStop?: SortableEvent;
636
+ change?: SortableEvent;
637
+ deactivate?: SortableEvent;
638
+ out?: SortableEvent;
639
+ over?: SortableEvent;
640
+ receive?: SortableEvent;
641
+ remove?: SortableEvent;
642
+ sort?: SortableEvent;
643
+ start?: SortableEvent;
644
+ stop?: SortableEvent;
645
+ update?: SortableEvent;
646
+ }
647
+ interface Sortable extends Widget, SortableOptions, SortableEvents {
648
+ }
649
+ interface SpinnerOptions extends SpinnerEvents {
650
+ culture?: string;
651
+ disabled?: boolean;
652
+ icons?: any;
653
+ incremental?: any;
654
+ max?: any;
655
+ min?: any;
656
+ numberFormat?: string;
657
+ page?: number;
658
+ step?: any;
659
+ }
660
+ interface SpinnerUIParam {
661
+ value: number;
662
+ }
663
+ interface SpinnerEvent<T> {
664
+ (event: Event, ui: T): void;
665
+ }
666
+ interface SpinnerEvents {
667
+ change?: SpinnerEvent<{}>;
668
+ create?: SpinnerEvent<{}>;
669
+ spin?: SpinnerEvent<SpinnerUIParam>;
670
+ start?: SpinnerEvent<{}>;
671
+ stop?: SpinnerEvent<{}>;
672
+ }
673
+ interface Spinner extends Widget, SpinnerOptions {
674
+ }
675
+ interface TabsOptions extends TabsEvents {
676
+ active?: any;
677
+ collapsible?: boolean;
678
+ disabled?: any;
679
+ event?: string;
680
+ heightStyle?: string;
681
+ hide?: any;
682
+ show?: any;
683
+ }
684
+ interface TabsActivationUIParams {
685
+ newTab: JQuery;
686
+ oldTab: JQuery;
687
+ newPanel: JQuery;
688
+ oldPanel: JQuery;
689
+ }
690
+ interface TabsBeforeLoadUIParams {
691
+ tab: JQuery;
692
+ panel: JQuery;
693
+ jqXHR: JQueryXHR;
694
+ ajaxSettings: any;
695
+ }
696
+ interface TabsCreateOrLoadUIParams {
697
+ tab: JQuery;
698
+ panel: JQuery;
699
+ }
700
+ interface TabsEvent<UI> {
701
+ (event: Event, ui: UI): void;
702
+ }
703
+ interface TabsEvents {
704
+ activate?: TabsEvent<TabsActivationUIParams>;
705
+ beforeActivate?: TabsEvent<TabsActivationUIParams>;
706
+ beforeLoad?: TabsEvent<TabsBeforeLoadUIParams>;
707
+ load?: TabsEvent<TabsCreateOrLoadUIParams>;
708
+ create?: TabsEvent<TabsCreateOrLoadUIParams>;
709
+ }
710
+ interface Tabs extends Widget, TabsOptions {
711
+ }
712
+ interface TooltipOptions extends TooltipEvents {
713
+ content?: any;
714
+ disabled?: boolean;
715
+ hide?: any;
716
+ items?: string;
717
+ position?: any;
718
+ show?: any;
719
+ tooltipClass?: string;
720
+ track?: boolean;
721
+ }
722
+ interface TooltipUIParams {
723
+ }
724
+ interface TooltipEvent {
725
+ (event: Event, ui: TooltipUIParams): void;
726
+ }
727
+ interface TooltipEvents {
728
+ close?: TooltipEvent;
729
+ open?: TooltipEvent;
730
+ }
731
+ interface Tooltip extends Widget, TooltipOptions {
732
+ }
733
+ interface EffectOptions {
734
+ effect: string;
735
+ easing?: string;
736
+ duration?: number;
737
+ complete: Function;
738
+ }
739
+ interface BlindEffect {
740
+ direction?: string;
741
+ }
742
+ interface BounceEffect {
743
+ distance?: number;
744
+ times?: number;
745
+ }
746
+ interface ClipEffect {
747
+ direction?: number;
748
+ }
749
+ interface DropEffect {
750
+ direction?: number;
751
+ }
752
+ interface ExplodeEffect {
753
+ pieces?: number;
754
+ }
755
+ interface FadeEffect {
756
+ }
757
+ interface FoldEffect {
758
+ size?: any;
759
+ horizFirst?: boolean;
760
+ }
761
+ interface HighlightEffect {
762
+ color?: string;
763
+ }
764
+ interface PuffEffect {
765
+ percent?: number;
766
+ }
767
+ interface PulsateEffect {
768
+ times?: number;
769
+ }
770
+ interface ScaleEffect {
771
+ direction?: string;
772
+ origin?: string[];
773
+ percent?: number;
774
+ scale?: string;
775
+ }
776
+ interface ShakeEffect {
777
+ direction?: string;
778
+ distance?: number;
779
+ times?: number;
780
+ }
781
+ interface SizeEffect {
782
+ to?: any;
783
+ origin?: string[];
784
+ scale?: string;
785
+ }
786
+ interface SlideEffect {
787
+ direction?: string;
788
+ distance?: number;
789
+ }
790
+ interface TransferEffect {
791
+ className?: string;
792
+ to?: string;
793
+ }
794
+ interface JQueryPositionOptions {
795
+ my?: string;
796
+ at?: string;
797
+ of?: any;
798
+ collision?: string;
799
+ using?: Function;
800
+ within?: any;
801
+ }
802
+ interface MouseOptions {
803
+ cancel?: string;
804
+ delay?: number;
805
+ distance?: number;
806
+ }
807
+ interface KeyCode {
808
+ BACKSPACE: number;
809
+ COMMA: number;
810
+ DELETE: number;
811
+ DOWN: number;
812
+ END: number;
813
+ ENTER: number;
814
+ ESCAPE: number;
815
+ HOME: number;
816
+ LEFT: number;
817
+ NUMPAD_ADD: number;
818
+ NUMPAD_DECIMAL: number;
819
+ NUMPAD_DIVIDE: number;
820
+ NUMPAD_ENTER: number;
821
+ NUMPAD_MULTIPLY: number;
822
+ NUMPAD_SUBTRACT: number;
823
+ PAGE_DOWN: number;
824
+ PAGE_UP: number;
825
+ PERIOD: number;
826
+ RIGHT: number;
827
+ SPACE: number;
828
+ TAB: number;
829
+ UP: number;
830
+ }
831
+ interface UI {
832
+ mouse(method: string): JQuery;
833
+ mouse(options: MouseOptions): JQuery;
834
+ mouse(optionLiteral: string, optionName: string, optionValue: any): JQuery;
835
+ mouse(optionLiteral: string, optionValue: any): any;
836
+ accordion: Accordion;
837
+ autocomplete: Autocomplete;
838
+ button: Button;
839
+ buttonset: Button;
840
+ datepicker: Datepicker;
841
+ dialog: Dialog;
842
+ keyCode: KeyCode;
843
+ menu: Menu;
844
+ progressbar: Progressbar;
845
+ slider: Slider;
846
+ spinner: Spinner;
847
+ tabs: Tabs;
848
+ tooltip: Tooltip;
849
+ version: string;
850
+ }
851
+ interface WidgetOptions {
852
+ disabled?: boolean;
853
+ hide?: any;
854
+ show?: any;
855
+ }
856
+ interface Widget {
857
+ (methodName: string): JQuery;
858
+ (options: WidgetOptions): JQuery;
859
+ (options: AccordionOptions): JQuery;
860
+ (optionLiteral: string, optionName: string): any;
861
+ (optionLiteral: string, options: WidgetOptions): any;
862
+ (optionLiteral: string, optionName: string, optionValue: any): JQuery;
863
+ (name: string, prototype: any): JQuery;
864
+ (name: string, base: Function, prototype: any): JQuery;
865
+ }
866
+ }
867
+ interface JQuery {
868
+ accordion(): JQuery;
869
+ accordion(methodName: 'destroy'): void;
870
+ accordion(methodName: 'disable'): void;
871
+ accordion(methodName: 'enable'): void;
872
+ accordion(methodName: 'refresh'): void;
873
+ accordion(methodName: 'widget'): JQuery;
874
+ accordion(methodName: string): JQuery;
875
+ accordion(options: JQueryUI.AccordionOptions): JQuery;
876
+ accordion(optionLiteral: string, optionName: string): any;
877
+ accordion(optionLiteral: string, options: JQueryUI.AccordionOptions): any;
878
+ accordion(optionLiteral: string, optionName: string, optionValue: any): JQuery;
879
+ autocomplete(): JQuery;
880
+ autocomplete(methodName: 'close'): void;
881
+ autocomplete(methodName: 'destroy'): void;
882
+ autocomplete(methodName: 'disable'): void;
883
+ autocomplete(methodName: 'enable'): void;
884
+ autocomplete(methodName: 'search', value?: string): void;
885
+ autocomplete(methodName: 'widget'): JQuery;
886
+ autocomplete(methodName: string): JQuery;
887
+ autocomplete(options: JQueryUI.AutocompleteOptions): JQuery;
888
+ autocomplete(optionLiteral: string, optionName: string): any;
889
+ autocomplete(optionLiteral: string, options: JQueryUI.AutocompleteOptions): any;
890
+ autocomplete(optionLiteral: string, optionName: string, optionValue: any): JQuery;
891
+ button(): JQuery;
892
+ button(methodName: 'destroy'): void;
893
+ button(methodName: 'disable'): void;
894
+ button(methodName: 'enable'): void;
895
+ button(methodName: 'refresh'): void;
896
+ button(methodName: 'widget'): JQuery;
897
+ button(methodName: string): JQuery;
898
+ button(options: JQueryUI.ButtonOptions): JQuery;
899
+ button(optionLiteral: string, optionName: string): any;
900
+ button(optionLiteral: string, options: JQueryUI.ButtonOptions): any;
901
+ button(optionLiteral: string, optionName: string, optionValue: any): JQuery;
902
+ buttonset(): JQuery;
903
+ buttonset(methodName: 'destroy'): void;
904
+ buttonset(methodName: 'disable'): void;
905
+ buttonset(methodName: 'enable'): void;
906
+ buttonset(methodName: 'refresh'): void;
907
+ buttonset(methodName: 'widget'): JQuery;
908
+ buttonset(methodName: string): JQuery;
909
+ buttonset(options: JQueryUI.ButtonOptions): JQuery;
910
+ buttonset(optionLiteral: string, optionName: string): any;
911
+ buttonset(optionLiteral: string, options: JQueryUI.ButtonOptions): any;
912
+ buttonset(optionLiteral: string, optionName: string, optionValue: any): JQuery;
913
+ /**
914
+ * Initialize a datepicker
915
+ */
916
+ datepicker(): JQuery;
917
+ /**
918
+ * Removes the datepicker functionality completely. This will return the element back to its pre-init state.
919
+ *
920
+ * @param methodName 'destroy'
921
+ */
922
+ datepicker(methodName: 'destroy'): JQuery;
923
+ /**
924
+ * Opens the datepicker in a dialog box.
925
+ *
926
+ * @param methodName 'dialog'
927
+ * @param date The initial date.
928
+ * @param onSelect A callback function when a date is selected. The function receives the date text and date picker instance as parameters.
929
+ * @param settings The new settings for the date picker.
930
+ * @param pos The position of the top/left of the dialog as [x, y] or a MouseEvent that contains the coordinates. If not specified the dialog is centered on the screen.
931
+ */
932
+ datepicker(methodName: 'dialog', date: Date, onSelect?: () => void, settings?: JQueryUI.DatepickerOptions, pos?: number[]): JQuery;
933
+ /**
934
+ * Opens the datepicker in a dialog box.
935
+ *
936
+ * @param methodName 'dialog'
937
+ * @param date The initial date.
938
+ * @param onSelect A callback function when a date is selected. The function receives the date text and date picker instance as parameters.
939
+ * @param settings The new settings for the date picker.
940
+ * @param pos The position of the top/left of the dialog as [x, y] or a MouseEvent that contains the coordinates. If not specified the dialog is centered on the screen.
941
+ */
942
+ datepicker(methodName: 'dialog', date: Date, onSelect?: () => void, settings?: JQueryUI.DatepickerOptions, pos?: MouseEvent): JQuery;
943
+ /**
944
+ * Opens the datepicker in a dialog box.
945
+ *
946
+ * @param methodName 'dialog'
947
+ * @param date The initial date.
948
+ * @param onSelect A callback function when a date is selected. The function receives the date text and date picker instance as parameters.
949
+ * @param settings The new settings for the date picker.
950
+ * @param pos The position of the top/left of the dialog as [x, y] or a MouseEvent that contains the coordinates. If not specified the dialog is centered on the screen.
951
+ */
952
+ datepicker(methodName: 'dialog', date: string, onSelect?: () => void, settings?: JQueryUI.DatepickerOptions, pos?: number[]): JQuery;
953
+ /**
954
+ * Opens the datepicker in a dialog box.
955
+ *
956
+ * @param methodName 'dialog'
957
+ * @param date The initial date.
958
+ * @param onSelect A callback function when a date is selected. The function receives the date text and date picker instance as parameters.
959
+ * @param settings The new settings for the date picker.
960
+ * @param pos The position of the top/left of the dialog as [x, y] or a MouseEvent that contains the coordinates. If not specified the dialog is centered on the screen.
961
+ */
962
+ datepicker(methodName: 'dialog', date: string, onSelect?: () => void, settings?: JQueryUI.DatepickerOptions, pos?: MouseEvent): JQuery;
963
+ /**
964
+ * Returns the current date for the datepicker or null if no date has been selected.
965
+ *
966
+ * @param methodName 'getDate'
967
+ */
968
+ datepicker(methodName: 'getDate'): Date;
969
+ /**
970
+ * Close a previously opened date picker.
971
+ *
972
+ * @param methodName 'hide'
973
+ */
974
+ datepicker(methodName: 'hide'): JQuery;
975
+ /**
976
+ * Determine whether a date picker has been disabled.
977
+ *
978
+ * @param methodName 'isDisabled'
979
+ */
980
+ datepicker(methodName: 'isDisabled'): boolean;
981
+ /**
982
+ * Redraw the date picker, after having made some external modifications.
983
+ *
984
+ * @param methodName 'refresh'
985
+ */
986
+ datepicker(methodName: 'refresh'): JQuery;
987
+ /**
988
+ * Sets the date for the datepicker. The new date may be a Date object or a string in the current date format (e.g., "01/26/2009"), a number of days from today (e.g., +7) or a string of values and periods ("y" for years, "m" for months, "w" for weeks, "d" for days, e.g., "+1m +7d"), or null to clear the selected date.
989
+ *
990
+ * @param methodName 'setDate'
991
+ * @param date The new date.
992
+ */
993
+ datepicker(methodName: 'setDate', date: Date): JQuery;
994
+ /**
995
+ * Sets the date for the datepicker. The new date may be a Date object or a string in the current date format (e.g., "01/26/2009"), a number of days from today (e.g., +7) or a string of values and periods ("y" for years, "m" for months, "w" for weeks, "d" for days, e.g., "+1m +7d"), or null to clear the selected date.
996
+ *
997
+ * @param methodName 'setDate'
998
+ * @param date The new date.
999
+ */
1000
+ datepicker(methodName: 'setDate', date: string): JQuery;
1001
+ /**
1002
+ * Open the date picker. If the datepicker is attached to an input, the input must be visible for the datepicker to be shown.
1003
+ *
1004
+ * @param methodName 'show'
1005
+ */
1006
+ datepicker(methodName: 'show'): JQuery;
1007
+ /**
1008
+ * Returns a jQuery object containing the datepicker.
1009
+ *
1010
+ * @param methodName 'widget'
1011
+ */
1012
+ datepicker(methodName: 'widget'): JQuery;
1013
+ /**
1014
+ * Get the altField option, after initialization
1015
+ *
1016
+ * @param methodName 'option'
1017
+ * @param optionName 'altField'
1018
+ */
1019
+ datepicker(methodName: 'option', optionName: 'altField'): any;
1020
+ /**
1021
+ * Set the altField option, after initialization
1022
+ *
1023
+ * @param methodName 'option'
1024
+ * @param optionName 'altField'
1025
+ * @param altFieldValue An input element that is to be updated with the selected date from the datepicker. Use the altFormat option to change the format of the date within this field. Leave as blank for no alternate field.
1026
+ */
1027
+ datepicker(methodName: 'option', optionName: 'altField', altFieldValue: string): JQuery;
1028
+ /**
1029
+ * Set the altField option, after initialization
1030
+ *
1031
+ * @param methodName 'option'
1032
+ * @param optionName 'altField'
1033
+ * @param altFieldValue An input element that is to be updated with the selected date from the datepicker. Use the altFormat option to change the format of the date within this field. Leave as blank for no alternate field.
1034
+ */
1035
+ datepicker(methodName: 'option', optionName: 'altField', altFieldValue: JQuery): JQuery;
1036
+ /**
1037
+ * Set the altField option, after initialization
1038
+ *
1039
+ * @param methodName 'option'
1040
+ * @param optionName 'altField'
1041
+ * @param altFieldValue An input element that is to be updated with the selected date from the datepicker. Use the altFormat option to change the format of the date within this field. Leave as blank for no alternate field.
1042
+ */
1043
+ datepicker(methodName: 'option', optionName: 'altField', altFieldValue: Element): JQuery;
1044
+ /**
1045
+ * Get the altFormat option, after initialization
1046
+ *
1047
+ * @param methodName 'option'
1048
+ * @param optionName 'altFormat'
1049
+ */
1050
+ datepicker(methodName: 'option', optionName: 'altFormat'): string;
1051
+ /**
1052
+ * Set the altFormat option, after initialization
1053
+ *
1054
+ * @param methodName 'option'
1055
+ * @param optionName 'altFormat'
1056
+ * @param altFormatValue The dateFormat to be used for the altField option. This allows one date format to be shown to the user for selection purposes, while a different format is actually sent behind the scenes. For a full list of the possible formats see the formatDate function
1057
+ */
1058
+ datepicker(methodName: 'option', optionName: 'altFormat', altFormatValue: string): JQuery;
1059
+ /**
1060
+ * Get the appendText option, after initialization
1061
+ *
1062
+ * @param methodName 'option'
1063
+ * @param optionName 'appendText'
1064
+ */
1065
+ datepicker(methodName: 'option', optionName: 'appendText'): string;
1066
+ /**
1067
+ * Set the appendText option, after initialization
1068
+ *
1069
+ * @param methodName 'option'
1070
+ * @param optionName 'appendText'
1071
+ * @param appendTextValue The text to display after each date field, e.g., to show the required format.
1072
+ */
1073
+ datepicker(methodName: 'option', optionName: 'appendText', appendTextValue: string): JQuery;
1074
+ /**
1075
+ * Get the autoSize option, after initialization
1076
+ *
1077
+ * @param methodName 'option'
1078
+ * @param optionName 'autoSize'
1079
+ */
1080
+ datepicker(methodName: 'option', optionName: 'autoSize'): boolean;
1081
+ /**
1082
+ * Set the autoSize option, after initialization
1083
+ *
1084
+ * @param methodName 'option'
1085
+ * @param optionName 'autoSize'
1086
+ * @param autoSizeValue Set to true to automatically resize the input field to accommodate dates in the current dateFormat.
1087
+ */
1088
+ datepicker(methodName: 'option', optionName: 'autoSize', autoSizeValue: boolean): JQuery;
1089
+ /**
1090
+ * Get the beforeShow option, after initialization
1091
+ *
1092
+ * @param methodName 'option'
1093
+ * @param optionName 'beforeShow'
1094
+ */
1095
+ datepicker(methodName: 'option', optionName: 'beforeShow'): (input: Element, inst: any) => JQueryUI.DatepickerOptions;
1096
+ /**
1097
+ * Set the beforeShow option, after initialization
1098
+ *
1099
+ * @param methodName 'option'
1100
+ * @param optionName 'beforeShow'
1101
+ * @param beforeShowValue A function that takes an input field and current datepicker instance and returns an options object to update the datepicker with. It is called just before the datepicker is displayed.
1102
+ */
1103
+ datepicker(methodName: 'option', optionName: 'beforeShow', beforeShowValue: (input: Element, inst: any) => JQueryUI.DatepickerOptions): JQuery;
1104
+ /**
1105
+ * Get the beforeShow option, after initialization
1106
+ *
1107
+ * @param methodName 'option'
1108
+ * @param optionName 'beforeShowDay'
1109
+ */
1110
+ datepicker(methodName: 'option', optionName: 'beforeShowDay'): (date: Date) => any[];
1111
+ /**
1112
+ * Set the beforeShow option, after initialization
1113
+ *
1114
+ * @param methodName 'option'
1115
+ * @param optionName 'beforeShowDay'
1116
+ * @param beforeShowDayValue A function that takes a date as a parameter and must return an array with:
1117
+ * [0]: true/false indicating whether or not this date is selectable
1118
+ * [1]: a CSS class name to add to the date's cell or "" for the default presentation
1119
+ * [2]: an optional popup tooltip for this date
1120
+ * The function is called for each day in the datepicker before it is displayed.
1121
+ */
1122
+ datepicker(methodName: 'option', optionName: 'beforeShowDay', beforeShowDayValue: (date: Date) => any[]): JQuery;
1123
+ /**
1124
+ * Get the buttonImage option, after initialization
1125
+ *
1126
+ * @param methodName 'option'
1127
+ * @param optionName 'buttonImage'
1128
+ */
1129
+ datepicker(methodName: 'option', optionName: 'buttonImage'): string;
1130
+ /**
1131
+ * Set the buttonImage option, after initialization
1132
+ *
1133
+ * @param methodName 'option'
1134
+ * @param optionName 'buttonImage'
1135
+ * @param buttonImageValue A URL of an image to use to display the datepicker when the showOn option is set to "button" or "both". If set, the buttonText option becomes the alt value and is not directly displayed.
1136
+ */
1137
+ datepicker(methodName: 'option', optionName: 'buttonImage', buttonImageValue: string): JQuery;
1138
+ /**
1139
+ * Get the buttonImageOnly option, after initialization
1140
+ *
1141
+ * @param methodName 'option'
1142
+ * @param optionName 'buttonImageOnly'
1143
+ */
1144
+ datepicker(methodName: 'option', optionName: 'buttonImageOnly'): boolean;
1145
+ /**
1146
+ * Set the buttonImageOnly option, after initialization
1147
+ *
1148
+ * @param methodName 'option'
1149
+ * @param optionName 'buttonImageOnly'
1150
+ * @param buttonImageOnlyValue Whether the button image should be rendered by itself instead of inside a button element. This option is only relevant if the buttonImage option has also been set.
1151
+ */
1152
+ datepicker(methodName: 'option', optionName: 'buttonImageOnly', buttonImageOnlyValue: boolean): JQuery;
1153
+ /**
1154
+ * Get the buttonText option, after initialization
1155
+ *
1156
+ * @param methodName 'option'
1157
+ * @param optionName 'buttonText'
1158
+ */
1159
+ datepicker(methodName: 'option', optionName: 'buttonText'): string;
1160
+ /**
1161
+ * Set the buttonText option, after initialization
1162
+ *
1163
+ * @param methodName 'option'
1164
+ * @param optionName 'buttonText'
1165
+ * @param buttonTextValue The text to display on the trigger button. Use in conjunction with the showOn option set to "button" or "both".
1166
+ */
1167
+ datepicker(methodName: 'option', optionName: 'buttonText', buttonTextValue: string): JQuery;
1168
+ /**
1169
+ * Get the calculateWeek option, after initialization
1170
+ *
1171
+ * @param methodName 'option'
1172
+ * @param optionName 'calculateWeek'
1173
+ */
1174
+ datepicker(methodName: 'option', optionName: 'calculateWeek'): (date: Date) => string;
1175
+ /**
1176
+ * Set the calculateWeek option, after initialization
1177
+ *
1178
+ * @param methodName 'option'
1179
+ * @param optionName 'calculateWeek'
1180
+ * @param calculateWeekValue A function to calculate the week of the year for a given date. The default implementation uses the ISO 8601 definition: weeks start on a Monday; the first week of the year contains the first Thursday of the year.
1181
+ */
1182
+ datepicker(methodName: 'option', optionName: 'calculateWeek', calculateWeekValue: (date: Date) => string): JQuery;
1183
+ /**
1184
+ * Get the changeMonth option, after initialization
1185
+ *
1186
+ * @param methodName 'option'
1187
+ * @param optionName 'changeMonth'
1188
+ */
1189
+ datepicker(methodName: 'option', optionName: 'changeMonth'): boolean;
1190
+ /**
1191
+ * Set the changeMonth option, after initialization
1192
+ *
1193
+ * @param methodName 'option'
1194
+ * @param optionName 'changeMonth'
1195
+ * @param changeMonthValue Whether the month should be rendered as a dropdown instead of text.
1196
+ */
1197
+ datepicker(methodName: 'option', optionName: 'changeMonth', changeMonthValue: boolean): JQuery;
1198
+ /**
1199
+ * Get the changeYear option, after initialization
1200
+ *
1201
+ * @param methodName 'option'
1202
+ * @param optionName 'changeYear'
1203
+ */
1204
+ datepicker(methodName: 'option', optionName: 'changeYear'): boolean;
1205
+ /**
1206
+ * Set the changeYear option, after initialization
1207
+ *
1208
+ * @param methodName 'option'
1209
+ * @param optionName 'changeYear'
1210
+ * @param changeYearValue Whether the year should be rendered as a dropdown instead of text. Use the yearRange option to control which years are made available for selection.
1211
+ */
1212
+ datepicker(methodName: 'option', optionName: 'changeYear', changeYearValue: boolean): JQuery;
1213
+ /**
1214
+ * Get the closeText option, after initialization
1215
+ *
1216
+ * @param methodName 'option'
1217
+ * @param optionName 'closeText'
1218
+ */
1219
+ datepicker(methodName: 'option', optionName: 'closeText'): string;
1220
+ /**
1221
+ * Set the closeText option, after initialization
1222
+ *
1223
+ * @param methodName 'option'
1224
+ * @param optionName 'closeText'
1225
+ * @param closeTextValue The text to display for the close link. Use the showButtonPanel option to display this button.
1226
+ */
1227
+ datepicker(methodName: 'option', optionName: 'closeText', closeTextValue: string): JQuery;
1228
+ /**
1229
+ * Get the constrainInput option, after initialization
1230
+ *
1231
+ * @param methodName 'option'
1232
+ * @param optionName 'constrainInput'
1233
+ */
1234
+ datepicker(methodName: 'option', optionName: 'constrainInput'): boolean;
1235
+ /**
1236
+ * Set the constrainInput option, after initialization
1237
+ *
1238
+ * @param methodName 'option'
1239
+ * @param optionName 'constrainInput'
1240
+ * @param constrainInputValue When true, entry in the input field is constrained to those characters allowed by the current dateFormat option.
1241
+ */
1242
+ datepicker(methodName: 'option', optionName: 'constrainInput', constrainInputValue: boolean): JQuery;
1243
+ /**
1244
+ * Get the currentText option, after initialization
1245
+ *
1246
+ * @param methodName 'option'
1247
+ * @param optionName 'currentText'
1248
+ */
1249
+ datepicker(methodName: 'option', optionName: 'currentText'): string;
1250
+ /**
1251
+ * Set the currentText option, after initialization
1252
+ *
1253
+ * @param methodName 'option'
1254
+ * @param optionName 'currentText'
1255
+ * @param currentTextValue The text to display for the current day link. Use the showButtonPanel option to display this button.
1256
+ */
1257
+ datepicker(methodName: 'option', optionName: 'currentText', currentTextValue: string): JQuery;
1258
+ /**
1259
+ * Get the dateFormat option, after initialization
1260
+ *
1261
+ * @param methodName 'option'
1262
+ * @param optionName 'dateFormat'
1263
+ */
1264
+ datepicker(methodName: 'option', optionName: 'dateFormat'): string;
1265
+ /**
1266
+ * Set the dateFormat option, after initialization
1267
+ *
1268
+ * @param methodName 'option'
1269
+ * @param optionName 'dateFormat'
1270
+ * @param dateFormatValue The format for parsed and displayed dates. For a full list of the possible formats see the formatDate function.
1271
+ */
1272
+ datepicker(methodName: 'option', optionName: 'dateFormat', dateFormatValue: string): JQuery;
1273
+ /**
1274
+ * Get the dayNames option, after initialization
1275
+ *
1276
+ * @param methodName 'option'
1277
+ * @param optionName 'dayNames'
1278
+ */
1279
+ datepicker(methodName: 'option', optionName: 'dayNames'): string[];
1280
+ /**
1281
+ * Set the dayNames option, after initialization
1282
+ *
1283
+ * @param methodName 'option'
1284
+ * @param optionName 'dayNames'
1285
+ * @param dayNamesValue The list of long day names, starting from Sunday, for use as requested via the dateFormat option.
1286
+ */
1287
+ datepicker(methodName: 'option', optionName: 'dayNames', dayNamesValue: string[]): JQuery;
1288
+ /**
1289
+ * Get the dayNamesMin option, after initialization
1290
+ *
1291
+ * @param methodName 'option'
1292
+ * @param optionName 'dayNamesMin'
1293
+ */
1294
+ datepicker(methodName: 'option', optionName: 'dayNamesMin'): string[];
1295
+ /**
1296
+ * Set the dayNamesMin option, after initialization
1297
+ *
1298
+ * @param methodName 'option'
1299
+ * @param optionName 'dayNamesMin'
1300
+ * @param dayNamesMinValue The list of minimised day names, starting from Sunday, for use as column headers within the datepicker.
1301
+ */
1302
+ datepicker(methodName: 'option', optionName: 'dayNamesMin', dayNamesMinValue: string[]): JQuery;
1303
+ /**
1304
+ * Get the dayNamesShort option, after initialization
1305
+ *
1306
+ * @param methodName 'option'
1307
+ * @param optionName 'dayNamesShort'
1308
+ */
1309
+ datepicker(methodName: 'option', optionName: 'dayNamesShort'): string[];
1310
+ /**
1311
+ * Set the dayNamesShort option, after initialization
1312
+ *
1313
+ * @param methodName 'option'
1314
+ * @param optionName 'dayNamesShort'
1315
+ * @param dayNamesShortValue The list of abbreviated day names, starting from Sunday, for use as requested via the dateFormat option.
1316
+ */
1317
+ datepicker(methodName: 'option', optionName: 'dayNamesShort', dayNamesShortValue: string[]): JQuery;
1318
+ /**
1319
+ * Get the defaultDate option, after initialization
1320
+ *
1321
+ * @param methodName 'option'
1322
+ * @param optionName 'defaultDate'
1323
+ */
1324
+ datepicker(methodName: 'option', optionName: 'defaultDate'): any;
1325
+ /**
1326
+ * Set the defaultDate option, after initialization
1327
+ *
1328
+ * @param methodName 'option'
1329
+ * @param optionName 'defaultDate'
1330
+ * @param defaultDateValue A date object containing the default date.
1331
+ */
1332
+ datepicker(methodName: 'option', optionName: 'defaultDate', defaultDateValue: Date): JQuery;
1333
+ /**
1334
+ * Set the defaultDate option, after initialization
1335
+ *
1336
+ * @param methodName 'option'
1337
+ * @param optionName 'defaultDate'
1338
+ * @param defaultDateValue A number of days from today. For example 2 represents two days from today and -1 represents yesterday.
1339
+ */
1340
+ datepicker(methodName: 'option', optionName: 'defaultDate', defaultDateValue: number): JQuery;
1341
+ /**
1342
+ * Set the defaultDate option, after initialization
1343
+ *
1344
+ * @param methodName 'option'
1345
+ * @param optionName 'defaultDate'
1346
+ * @param defaultDateValue A string in the format defined by the dateFormat option, or a relative date. Relative dates must contain value and period pairs; valid periods are "y" for years, "m" for months, "w" for weeks, and "d" for days. For example, "+1m +7d" represents one month and seven days from today.
1347
+ */
1348
+ datepicker(methodName: 'option', optionName: 'defaultDate', defaultDateValue: string): JQuery;
1349
+ /**
1350
+ * Get the duration option, after initialization
1351
+ *
1352
+ * @param methodName 'option'
1353
+ * @param optionName 'duration'
1354
+ */
1355
+ datepicker(methodName: 'option', optionName: 'duration'): string;
1356
+ /**
1357
+ * Set the duration option, after initialization
1358
+ *
1359
+ * @param methodName 'option'
1360
+ * @param optionName 'duration'
1361
+ * @param durationValue Control the speed at which the datepicker appears, it may be a time in milliseconds or a string representing one of the three predefined speeds ("slow", "normal", "fast").
1362
+ */
1363
+ datepicker(methodName: 'option', optionName: 'duration', durationValue: string): JQuery;
1364
+ /**
1365
+ * Get the firstDay option, after initialization
1366
+ *
1367
+ * @param methodName 'option'
1368
+ * @param optionName 'firstDay'
1369
+ */
1370
+ datepicker(methodName: 'option', optionName: 'firstDay'): number;
1371
+ /**
1372
+ * Set the firstDay option, after initialization
1373
+ *
1374
+ * @param methodName 'option'
1375
+ * @param optionName 'firstDay'
1376
+ * @param firstDayValue Set the first day of the week: Sunday is 0, Monday is 1, etc.
1377
+ */
1378
+ datepicker(methodName: 'option', optionName: 'firstDay', firstDayValue: number): JQuery;
1379
+ /**
1380
+ * Get the gotoCurrent option, after initialization
1381
+ *
1382
+ * @param methodName 'option'
1383
+ * @param optionName 'gotoCurrent'
1384
+ */
1385
+ datepicker(methodName: 'option', optionName: 'gotoCurrent'): boolean;
1386
+ /**
1387
+ * Set the gotoCurrent option, after initialization
1388
+ *
1389
+ * @param methodName 'option'
1390
+ * @param optionName 'gotoCurrent'
1391
+ * @param gotoCurrentValue When true, the current day link moves to the currently selected date instead of today.
1392
+ */
1393
+ datepicker(methodName: 'option', optionName: 'gotoCurrent', gotoCurrentValue: boolean): JQuery;
1394
+ /**
1395
+ * Gets the value currently associated with the specified optionName.
1396
+ *
1397
+ * @param methodName 'option'
1398
+ * @param optionName The name of the option to get.
1399
+ */
1400
+ datepicker(methodName: 'option', optionName: string): any;
1401
+ datepicker(methodName: 'option', optionName: string, ...otherParams: any[]): any;
1402
+ datepicker(methodName: string, ...otherParams: any[]): any;
1403
+ /**
1404
+ * Initialize a datepicker with the given options
1405
+ */
1406
+ datepicker(options: JQueryUI.DatepickerOptions): JQuery;
1407
+ dialog(): JQuery;
1408
+ dialog(methodName: 'close'): JQuery;
1409
+ dialog(methodName: 'destroy'): JQuery;
1410
+ dialog(methodName: 'isOpen'): boolean;
1411
+ dialog(methodName: 'moveToTop'): JQuery;
1412
+ dialog(methodName: 'open'): JQuery;
1413
+ dialog(methodName: 'widget'): JQuery;
1414
+ dialog(methodName: string): JQuery;
1415
+ dialog(options: JQueryUI.DialogOptions): JQuery;
1416
+ dialog(optionLiteral: string, optionName: string): any;
1417
+ dialog(optionLiteral: string, options: JQueryUI.DialogOptions): any;
1418
+ dialog(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1419
+ draggable(): JQuery;
1420
+ draggable(methodName: 'destroy'): void;
1421
+ draggable(methodName: 'disable'): void;
1422
+ draggable(methodName: 'enable'): void;
1423
+ draggable(methodName: 'widget'): JQuery;
1424
+ draggable(methodName: string): JQuery;
1425
+ draggable(options: JQueryUI.DraggableOptions): JQuery;
1426
+ draggable(optionLiteral: string, optionName: string): any;
1427
+ draggable(optionLiteral: string, options: JQueryUI.DraggableOptions): any;
1428
+ draggable(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1429
+ droppable(): JQuery;
1430
+ droppable(methodName: 'destroy'): void;
1431
+ droppable(methodName: 'disable'): void;
1432
+ droppable(methodName: 'enable'): void;
1433
+ droppable(methodName: 'widget'): JQuery;
1434
+ droppable(methodName: string): JQuery;
1435
+ droppable(options: JQueryUI.DroppableOptions): JQuery;
1436
+ droppable(optionLiteral: string, optionName: string): any;
1437
+ droppable(optionLiteral: string, options: JQueryUI.DraggableOptions): any;
1438
+ droppable(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1439
+ menu: {
1440
+ (): JQuery;
1441
+ (methodName: 'blur'): void;
1442
+ (methodName: 'collapse', event?: JQueryEventObject): void;
1443
+ (methodName: 'collapseAll', event?: JQueryEventObject, all?: boolean): void;
1444
+ (methodName: 'destroy'): void;
1445
+ (methodName: 'disable'): void;
1446
+ (methodName: 'enable'): void;
1447
+ (methodName: string, event: JQueryEventObject, item: JQuery): void;
1448
+ (methodName: 'focus', event: JQueryEventObject, item: JQuery): void;
1449
+ (methodName: 'isFirstItem'): boolean;
1450
+ (methodName: 'isLastItem'): boolean;
1451
+ (methodName: 'next', event?: JQueryEventObject): void;
1452
+ (methodName: 'nextPage', event?: JQueryEventObject): void;
1453
+ (methodName: 'previous', event?: JQueryEventObject): void;
1454
+ (methodName: 'previousPage', event?: JQueryEventObject): void;
1455
+ (methodName: 'refresh'): void;
1456
+ (methodName: 'select', event?: JQueryEventObject): void;
1457
+ (methodName: 'widget'): JQuery;
1458
+ (methodName: string): JQuery;
1459
+ (options: JQueryUI.MenuOptions): JQuery;
1460
+ (optionLiteral: string, optionName: string): any;
1461
+ (optionLiteral: string, options: JQueryUI.MenuOptions): any;
1462
+ (optionLiteral: string, optionName: string, optionValue: any): JQuery;
1463
+ active: boolean;
1464
+ };
1465
+ progressbar(): JQuery;
1466
+ progressbar(methodName: 'destroy'): void;
1467
+ progressbar(methodName: 'disable'): void;
1468
+ progressbar(methodName: 'enable'): void;
1469
+ progressbar(methodName: 'refresh'): void;
1470
+ progressbar(methodName: 'value'): any;
1471
+ progressbar(methodName: 'value', value: number): void;
1472
+ progressbar(methodName: 'value', value: boolean): void;
1473
+ progressbar(methodName: 'widget'): JQuery;
1474
+ progressbar(methodName: string): JQuery;
1475
+ progressbar(options: JQueryUI.ProgressbarOptions): JQuery;
1476
+ progressbar(optionLiteral: string, optionName: string): any;
1477
+ progressbar(optionLiteral: string, options: JQueryUI.ProgressbarOptions): any;
1478
+ progressbar(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1479
+ resizable(): JQuery;
1480
+ resizable(methodName: 'destroy'): void;
1481
+ resizable(methodName: 'disable'): void;
1482
+ resizable(methodName: 'enable'): void;
1483
+ resizable(methodName: 'widget'): JQuery;
1484
+ resizable(methodName: string): JQuery;
1485
+ resizable(options: JQueryUI.ResizableOptions): JQuery;
1486
+ resizable(optionLiteral: string, optionName: string): any;
1487
+ resizable(optionLiteral: string, options: JQueryUI.ResizableOptions): any;
1488
+ resizable(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1489
+ selectable(): JQuery;
1490
+ selectable(methodName: 'destroy'): void;
1491
+ selectable(methodName: 'disable'): void;
1492
+ selectable(methodName: 'enable'): void;
1493
+ selectable(methodName: 'widget'): JQuery;
1494
+ selectable(methodName: string): JQuery;
1495
+ selectable(options: JQueryUI.SelectableOptions): JQuery;
1496
+ selectable(optionLiteral: string, optionName: string): any;
1497
+ selectable(optionLiteral: string, options: JQueryUI.SelectableOptions): any;
1498
+ selectable(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1499
+ slider(): JQuery;
1500
+ slider(methodName: 'destroy'): void;
1501
+ slider(methodName: 'disable'): void;
1502
+ slider(methodName: 'enable'): void;
1503
+ slider(methodName: 'refresh'): void;
1504
+ slider(methodName: 'value'): number;
1505
+ slider(methodName: 'value', value: number): void;
1506
+ slider(methodName: 'values'): Array<number>;
1507
+ slider(methodName: 'values', index: number): number;
1508
+ slider(methodName: string, index: number, value: number): void;
1509
+ slider(methodName: 'values', index: number, value: number): void;
1510
+ slider(methodName: string, values: Array<number>): void;
1511
+ slider(methodName: 'values', values: Array<number>): void;
1512
+ slider(methodName: 'widget'): JQuery;
1513
+ slider(methodName: string): JQuery;
1514
+ slider(options: JQueryUI.SliderOptions): JQuery;
1515
+ slider(optionLiteral: string, optionName: string): any;
1516
+ slider(optionLiteral: string, options: JQueryUI.SliderOptions): any;
1517
+ slider(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1518
+ sortable(): JQuery;
1519
+ sortable(methodName: 'destroy'): void;
1520
+ sortable(methodName: 'disable'): void;
1521
+ sortable(methodName: 'enable'): void;
1522
+ sortable(methodName: 'widget'): JQuery;
1523
+ sortable(methodName: 'toArray'): string[];
1524
+ sortable(methodName: string): JQuery;
1525
+ sortable(options: JQueryUI.SortableOptions): JQuery;
1526
+ sortable(optionLiteral: string, optionName: string): any;
1527
+ sortable(methodName: 'serialize', options?: {
1528
+ key?: string;
1529
+ attribute?: string;
1530
+ expression?: RegExp;
1531
+ }): string;
1532
+ sortable(optionLiteral: string, options: JQueryUI.SortableOptions): any;
1533
+ sortable(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1534
+ spinner(): JQuery;
1535
+ spinner(methodName: 'destroy'): void;
1536
+ spinner(methodName: 'disable'): void;
1537
+ spinner(methodName: 'enable'): void;
1538
+ spinner(methodName: 'pageDown', pages?: number): void;
1539
+ spinner(methodName: 'pageUp', pages?: number): void;
1540
+ spinner(methodName: 'stepDown', steps?: number): void;
1541
+ spinner(methodName: 'stepUp', steps?: number): void;
1542
+ spinner(methodName: 'value'): number;
1543
+ spinner(methodName: 'value', value: number): void;
1544
+ spinner(methodName: 'widget'): JQuery;
1545
+ spinner(methodName: string): JQuery;
1546
+ spinner(options: JQueryUI.SpinnerOptions): JQuery;
1547
+ spinner(optionLiteral: string, optionName: string): any;
1548
+ spinner(optionLiteral: string, options: JQueryUI.SpinnerOptions): any;
1549
+ spinner(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1550
+ tabs(): JQuery;
1551
+ tabs(methodName: 'destroy'): void;
1552
+ tabs(methodName: 'disable'): void;
1553
+ tabs(methodName: 'enable'): void;
1554
+ tabs(methodName: 'load', index: number): void;
1555
+ tabs(methodName: 'refresh'): void;
1556
+ tabs(methodName: 'widget'): JQuery;
1557
+ tabs(methodName: string): JQuery;
1558
+ tabs(options: JQueryUI.TabsOptions): JQuery;
1559
+ tabs(optionLiteral: string, optionName: string): any;
1560
+ tabs(optionLiteral: string, options: JQueryUI.TabsOptions): any;
1561
+ tabs(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1562
+ tooltip(): JQuery;
1563
+ tooltip(methodName: 'destroy'): void;
1564
+ tooltip(methodName: 'disable'): void;
1565
+ tooltip(methodName: 'enable'): void;
1566
+ tooltip(methodName: 'open'): void;
1567
+ tooltip(methodName: 'close'): void;
1568
+ tooltip(methodName: 'widget'): JQuery;
1569
+ tooltip(methodName: string): JQuery;
1570
+ tooltip(options: JQueryUI.TooltipOptions): JQuery;
1571
+ tooltip(optionLiteral: string, optionName: string): any;
1572
+ tooltip(optionLiteral: string, options: JQueryUI.TooltipOptions): any;
1573
+ tooltip(optionLiteral: string, optionName: string, optionValue: any): JQuery;
1574
+ addClass(classNames: string, speed?: number, callback?: Function): JQuery;
1575
+ addClass(classNames: string, speed?: string, callback?: Function): JQuery;
1576
+ addClass(classNames: string, speed?: number, easing?: string, callback?: Function): JQuery;
1577
+ addClass(classNames: string, speed?: string, easing?: string, callback?: Function): JQuery;
1578
+ removeClass(classNames: string, speed?: number, callback?: Function): JQuery;
1579
+ removeClass(classNames: string, speed?: string, callback?: Function): JQuery;
1580
+ removeClass(classNames: string, speed?: number, easing?: string, callback?: Function): JQuery;
1581
+ removeClass(classNames: string, speed?: string, easing?: string, callback?: Function): JQuery;
1582
+ switchClass(removeClassName: string, addClassName: string, duration?: number, easing?: string, complete?: Function): JQuery;
1583
+ switchClass(removeClassName: string, addClassName: string, duration?: string, easing?: string, complete?: Function): JQuery;
1584
+ toggleClass(className: string, duration?: number, easing?: string, complete?: Function): JQuery;
1585
+ toggleClass(className: string, duration?: string, easing?: string, complete?: Function): JQuery;
1586
+ toggleClass(className: string, aswitch?: boolean, duration?: number, easing?: string, complete?: Function): JQuery;
1587
+ toggleClass(className: string, aswitch?: boolean, duration?: string, easing?: string, complete?: Function): JQuery;
1588
+ effect(options: any): JQuery;
1589
+ effect(effect: string, options?: any, duration?: number, complete?: Function): JQuery;
1590
+ effect(effect: string, options?: any, duration?: string, complete?: Function): JQuery;
1591
+ hide(options: any): JQuery;
1592
+ hide(effect: string, options?: any, duration?: number, complete?: Function): JQuery;
1593
+ hide(effect: string, options?: any, duration?: string, complete?: Function): JQuery;
1594
+ show(options: any): JQuery;
1595
+ show(effect: string, options?: any, duration?: number, complete?: Function): JQuery;
1596
+ show(effect: string, options?: any, duration?: string, complete?: Function): JQuery;
1597
+ toggle(options: any): JQuery;
1598
+ toggle(effect: string, options?: any, duration?: number, complete?: Function): JQuery;
1599
+ toggle(effect: string, options?: any, duration?: string, complete?: Function): JQuery;
1600
+ position(options: JQueryUI.JQueryPositionOptions): JQuery;
1601
+ enableSelection(): JQuery;
1602
+ disableSelection(): JQuery;
1603
+ focus(delay: number, callback?: Function): JQuery;
1604
+ uniqueId(): JQuery;
1605
+ removeUniqueId(): JQuery;
1606
+ scrollParent(): JQuery;
1607
+ zIndex(): JQuery;
1608
+ zIndex(zIndex: number): JQuery;
1609
+ widget: JQueryUI.Widget;
1610
+ jQuery: JQueryStatic;
1611
+ }
1612
+ interface JQueryStatic {
1613
+ ui: JQueryUI.UI;
1614
+ datepicker: JQueryUI.Datepicker;
1615
+ widget: JQueryUI.Widget;
1616
+ Widget: JQueryUI.Widget;
1617
+ }
1618
+ }