├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build-linux.yml │ ├── build-mac.yml │ ├── build-windows.yml │ ├── main.yml │ ├── release.yml │ ├── sync_i18n.yml │ └── windows.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .prettierignore ├── .prettierrc ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── _config.yml ├── apps ├── keira-e2e │ ├── .eslintrc.json │ ├── main.spec.ts │ ├── playwright.config.ts │ ├── project.json │ └── tsconfig.e2e.json └── keira │ ├── .eslintrc.json │ ├── project.json │ └── src │ ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── routes.ts │ └── scss │ │ ├── _bootstrap5-overrides.scss │ │ ├── _content.scss │ │ ├── _editor.scss │ │ ├── _item-preview.scss │ │ ├── _item-select.scss │ │ ├── _login.scss │ │ ├── _ngx-bootstrap.scss │ │ ├── _ngx-datatable.scss │ │ ├── _preview.scss │ │ ├── _quest-preview.scss │ │ ├── _sidebar.scss │ │ ├── _utils.scss │ │ ├── _variables.scss │ │ ├── imports.scss │ │ ├── main-test.scss │ │ └── main.scss │ ├── assets │ ├── .gitkeep │ ├── i18n │ │ ├── de.json │ │ ├── el.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── it.json │ │ ├── ko.json │ │ ├── nl.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── ro.json │ │ ├── ru.json │ │ ├── sk.json │ │ ├── sv.json │ │ └── zh.json │ ├── img │ │ ├── ac.png │ │ ├── class │ │ │ ├── 1.gif │ │ │ ├── 11.gif │ │ │ ├── 2.gif │ │ │ ├── 3.gif │ │ │ ├── 4.gif │ │ │ ├── 5.gif │ │ │ ├── 6.gif │ │ │ ├── 7.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ │ ├── creature-icons │ │ │ ├── Attack.png │ │ │ ├── Buy.png │ │ │ ├── Directions.png │ │ │ ├── Driver.png │ │ │ ├── Gunner.png │ │ │ ├── Interact.png │ │ │ ├── LootAll.png │ │ │ ├── PVP.png │ │ │ ├── Pickup.png │ │ │ ├── Quest.png │ │ │ ├── Repair.png │ │ │ ├── Speak.png │ │ │ ├── Taxi.png │ │ │ ├── Trainer.png │ │ │ └── vehichleCursor.png │ │ ├── dmgschool │ │ │ ├── arcane.png │ │ │ ├── fire.png │ │ │ ├── frost.png │ │ │ ├── holy.png │ │ │ ├── nature.png │ │ │ ├── normal.png │ │ │ └── shadow.png │ │ ├── gossip │ │ │ ├── battle.png │ │ │ ├── chat.png │ │ │ ├── dot.png │ │ │ ├── interaction_wheel_1.png │ │ │ ├── interaction_wheel_2.png │ │ │ ├── money_bag.png │ │ │ ├── tabard.png │ │ │ ├── talk.png │ │ │ ├── taxi.png │ │ │ ├── trainer.png │ │ │ └── vendor.png │ │ ├── login-backgrounds │ │ │ ├── chromie.jpg │ │ │ ├── death-angel.jpg │ │ │ ├── illidan-1.jpg │ │ │ ├── ne-1.jpg │ │ │ ├── ne-2.jpg │ │ │ ├── ne-3.jpg │ │ │ ├── orc-1.jpg │ │ │ ├── orc-2.jpg │ │ │ ├── orc-campfire.jpg │ │ │ ├── ragnaros.jpg │ │ │ └── undead-1.jpg │ │ ├── money │ │ │ ├── copper.gif │ │ │ ├── gold.gif │ │ │ └── silver.gif │ │ ├── pvp │ │ │ └── arena.gif │ │ ├── quest │ │ │ ├── alliance.gif │ │ │ ├── horde.gif │ │ │ ├── quest_end.gif │ │ │ ├── quest_end_daily.gif │ │ │ ├── quest_start.gif │ │ │ └── quest_start_daily.gif │ │ ├── race │ │ │ ├── 1-0.gif │ │ │ ├── 1-1.gif │ │ │ ├── 10-0.gif │ │ │ ├── 10-1.gif │ │ │ ├── 11-0.gif │ │ │ ├── 11-1.gif │ │ │ ├── 2-0.gif │ │ │ ├── 2-1.gif │ │ │ ├── 3-0.gif │ │ │ ├── 3-1.gif │ │ │ ├── 4-0.gif │ │ │ ├── 4-1.gif │ │ │ ├── 5-0.gif │ │ │ ├── 5-1.gif │ │ │ ├── 6-0.gif │ │ │ ├── 6-1.gif │ │ │ ├── 7-0.gif │ │ │ ├── 7-1.gif │ │ │ ├── 8-0.gif │ │ │ ├── 8-1.gif │ │ │ ├── 9-0.gif │ │ │ └── 9-1.gif │ │ ├── reputation │ │ │ ├── exalted.png │ │ │ ├── friendly.png │ │ │ ├── hated.png │ │ │ ├── honored.png │ │ │ ├── hostile.png │ │ │ ├── neutral.png │ │ │ ├── revered.png │ │ │ └── unfriendly.png │ │ ├── sidebar-backgrounds │ │ │ ├── bg1.jpg │ │ │ ├── bg2.jpg │ │ │ ├── bg3.jpg │ │ │ ├── bg4.jpg │ │ │ ├── bg5.jpg │ │ │ ├── bg6.jpg │ │ │ └── bg7.jpg │ │ └── sockets │ │ │ ├── blue.gif │ │ │ ├── meta.gif │ │ │ ├── prismatic.gif │ │ │ ├── red.gif │ │ │ └── yellow.gif │ ├── item_display.db │ └── sqlite.db │ ├── environments │ ├── environment.dev.ts │ ├── environment.prod.ts │ ├── environment.ts │ └── environment.web.ts │ ├── favicon.256x256.png │ ├── favicon.512x512.png │ ├── favicon.icns │ ├── favicon.ico │ ├── favicon.png │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts ├── electron-builder.json ├── esbuild └── plugin.js ├── karma.conf.js ├── libs ├── features │ ├── conditions │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ │ ├── conditions-handler.service.spec.ts │ │ │ ├── conditions-handler.service.ts │ │ │ ├── edit-conditions │ │ │ │ ├── conditions-constants.ts │ │ │ │ ├── conditions.component.html │ │ │ │ ├── conditions.component.scss │ │ │ │ ├── conditions.component.ts │ │ │ │ ├── conditions.integration.spec.ts │ │ │ │ ├── conditions.service.spec.ts │ │ │ │ └── conditions.service.ts │ │ │ ├── index.ts │ │ │ └── select-conditions │ │ │ │ ├── select-conditions.component.html │ │ │ │ ├── select-conditions.component.scss │ │ │ │ ├── select-conditions.component.ts │ │ │ │ └── select-conditions.integration.spec.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── creature │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ │ ├── creature-equip-template │ │ │ │ ├── creature-equip-template.component.html │ │ │ │ ├── creature-equip-template.component.scss │ │ │ │ ├── creature-equip-template.component.ts │ │ │ │ ├── creature-equip-template.integration.spec.ts │ │ │ │ ├── creature-equip-template.service.spec.ts │ │ │ │ └── creature-equip-template.service.ts │ │ │ ├── creature-formations │ │ │ │ ├── creature-formations.component.html │ │ │ │ ├── creature-formations.component.ts │ │ │ │ ├── creature-formations.integration.spec.ts │ │ │ │ ├── creature-formations.service.spec.ts │ │ │ │ └── creature-formations.service.ts │ │ │ ├── creature-handler.service.spec.ts │ │ │ ├── creature-handler.service.ts │ │ │ ├── creature-loot-template │ │ │ │ ├── creature-loot-template.component.ts │ │ │ │ ├── creature-loot-template.integration.spec.ts │ │ │ │ ├── creature-loot-template.service.spec.ts │ │ │ │ └── creature-loot-template.service.ts │ │ │ ├── creature-onkill-reputation │ │ │ │ ├── creature-onkill-reputation.component.html │ │ │ │ ├── creature-onkill-reputation.component.scss │ │ │ │ ├── creature-onkill-reputation.component.ts │ │ │ │ ├── creature-onkill-reputation.integration.spec.ts │ │ │ │ ├── creature-onkill-reputation.service.spec.ts │ │ │ │ └── creature-onkill-reputation.service.ts │ │ │ ├── creature-questitem │ │ │ │ ├── creature-questitem.component.html │ │ │ │ ├── creature-questitem.component.scss │ │ │ │ ├── creature-questitem.component.ts │ │ │ │ ├── creature-questitem.integration.spec.ts │ │ │ │ ├── creature-questitem.service.spec.ts │ │ │ │ └── creature-questitem.service.ts │ │ │ ├── creature-spawn-addon │ │ │ │ ├── creature-spawn-addon.component.html │ │ │ │ ├── creature-spawn-addon.component.scss │ │ │ │ ├── creature-spawn-addon.component.ts │ │ │ │ ├── creature-spawn-addon.integration.spec.ts │ │ │ │ ├── creature-spawn-addon.service.spec.ts │ │ │ │ └── creature-spawn-addon.service.ts │ │ │ ├── creature-spawn │ │ │ │ ├── creature-spawn.component.html │ │ │ │ ├── creature-spawn.component.scss │ │ │ │ ├── creature-spawn.component.ts │ │ │ │ ├── creature-spawn.integration.spec.ts │ │ │ │ ├── creature-spawn.service.spec.ts │ │ │ │ └── creature-spawn.service.ts │ │ │ ├── creature-template-addon │ │ │ │ ├── creature-template-addon.component.html │ │ │ │ ├── creature-template-addon.component.scss │ │ │ │ ├── creature-template-addon.component.ts │ │ │ │ ├── creature-template-addon.integration.spec.ts │ │ │ │ ├── creature-template-addon.service.spec.ts │ │ │ │ └── creature-template-addon.service.ts │ │ │ ├── creature-template-model │ │ │ │ ├── creature-template-model.component.html │ │ │ │ ├── creature-template-model.component.scss │ │ │ │ ├── creature-template-model.component.ts │ │ │ │ ├── creature-template-model.integration.spec.ts │ │ │ │ ├── creature-template-model.service.spec.ts │ │ │ │ └── creature-template-model.service.ts │ │ │ ├── creature-template-movement │ │ │ │ ├── creature-template-movement.component.html │ │ │ │ ├── creature-template-movement.component.ts │ │ │ │ ├── creature-template-movement.integration.spec.ts │ │ │ │ ├── creature-template-movement.service.spec.ts │ │ │ │ └── creature-template-movement.service.ts │ │ │ ├── creature-template-resistance │ │ │ │ ├── creature-template-resistance.component.html │ │ │ │ ├── creature-template-resistance.component.ts │ │ │ │ ├── creature-template-resistance.integration.spec.ts │ │ │ │ ├── creature-template-resistance.service.spec.ts │ │ │ │ └── creature-template-resistance.service.ts │ │ │ ├── creature-template-spell │ │ │ │ ├── creature-template-spell.component.html │ │ │ │ ├── creature-template-spell.component.ts │ │ │ │ ├── creature-template-spell.integration.spec.ts │ │ │ │ ├── creature-template-spell.service.spec.ts │ │ │ │ └── creature-template-spell.service.ts │ │ │ ├── creature-template │ │ │ │ ├── creature-template.component.html │ │ │ │ ├── creature-template.component.ts │ │ │ │ ├── creature-template.integration.spec.ts │ │ │ │ ├── creature-template.service.spec.ts │ │ │ │ └── creature-template.service.ts │ │ │ ├── creature-text │ │ │ │ ├── creature-text.component.html │ │ │ │ ├── creature-text.component.ts │ │ │ │ ├── creature-text.integration.spec.ts │ │ │ │ ├── creature-text.service.spec.ts │ │ │ │ └── creature-text.service.ts │ │ │ ├── index.ts │ │ │ ├── npc-trainer │ │ │ │ ├── npc-trainer.component.html │ │ │ │ ├── npc-trainer.component.scss │ │ │ │ ├── npc-trainer.component.ts │ │ │ │ ├── npc-trainer.integration.spec.ts │ │ │ │ ├── npc-trainer.service.spec.ts │ │ │ │ └── npc-trainer.service.ts │ │ │ ├── npc-vendor │ │ │ │ ├── npc-vendor.component.html │ │ │ │ ├── npc-vendor.component.scss │ │ │ │ ├── npc-vendor.component.ts │ │ │ │ ├── npc-vendor.integration.spec.ts │ │ │ │ ├── npc-vendor.service.spec.ts │ │ │ │ └── npc-vendor.service.ts │ │ │ ├── pickpocketing-loot-template │ │ │ │ ├── pickpocketing-loot-template.component.ts │ │ │ │ ├── pickpocketing-loot-template.integration.spec.ts │ │ │ │ ├── pickpocketing-loot-template.service.spec.ts │ │ │ │ └── pickpocketing-loot-template.service.ts │ │ │ ├── sai-creature-handler.service.ts │ │ │ ├── sai-creature │ │ │ │ ├── sai-creature-editor.service.ts │ │ │ │ ├── sai-creature.component.integration.spec.ts │ │ │ │ ├── sai-creature.component.scss │ │ │ │ └── sai-creature.component.ts │ │ │ ├── select-creature │ │ │ │ ├── select-creature.component.html │ │ │ │ ├── select-creature.component.scss │ │ │ │ ├── select-creature.component.ts │ │ │ │ ├── select-creature.integration.spec.ts │ │ │ │ ├── select-creature.service.spec.ts │ │ │ │ └── select-creature.service.ts │ │ │ └── skinning-loot-template │ │ │ │ ├── skinning-loot-template.component.integration.spec.ts │ │ │ │ ├── skinning-loot-template.component.ts │ │ │ │ ├── skinning-loot-template.service.spec.ts │ │ │ │ └── skinning-loot-template.service.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── dashboard │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.scss │ │ │ ├── dashboard.component.spec.ts │ │ │ ├── dashboard.component.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── game-tele │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ │ ├── edit-game-tele │ │ │ │ ├── game-tele.component.html │ │ │ │ ├── game-tele.component.ts │ │ │ │ ├── game-tele.integration.spec.ts │ │ │ │ ├── game-tele.service.spec.ts │ │ │ │ └── game-tele.service.ts │ │ │ ├── game-tele-handler.service.spec.ts │ │ │ ├── game-tele-handler.service.ts │ │ │ ├── index.ts │ │ │ └── select-game-tele │ │ │ │ ├── select-game-tele.component.html │ │ │ │ ├── select-game-tele.component.ts │ │ │ │ ├── select-game-tele.integration.spec.ts │ │ │ │ └── select-game-tele.service.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── gameobject │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ │ ├── gameobject-handler.service.spec.ts │ │ │ ├── gameobject-handler.service.ts │ │ │ ├── gameobject-loot-template │ │ │ │ ├── gameobject-loot-template.component.html │ │ │ │ ├── gameobject-loot-template.component.scss │ │ │ │ ├── gameobject-loot-template.component.spec.ts │ │ │ │ ├── gameobject-loot-template.component.ts │ │ │ │ ├── gameobject-loot-template.integration.spec.ts │ │ │ │ ├── gameobject-loot-template.service.spec.ts │ │ │ │ └── gameobject-loot-template.service.ts │ │ │ ├── gameobject-questitem │ │ │ │ ├── gameobject-questitem.component.html │ │ │ │ ├── gameobject-questitem.component.scss │ │ │ │ ├── gameobject-questitem.component.ts │ │ │ │ ├── gameobject-questitem.integration.spec.ts │ │ │ │ ├── gameobject-questitem.service.spec.ts │ │ │ │ └── gameobject-questitem.service.ts │ │ │ ├── gameobject-spawn-addon │ │ │ │ ├── gameobject-spawn-addon.component.html │ │ │ │ ├── gameobject-spawn-addon.component.ts │ │ │ │ ├── gameobject-spawn-addon.integration.spec.ts │ │ │ │ ├── gameobject-spawn-addon.service.spec.ts │ │ │ │ └── gameobject-spawn-addon.service.ts │ │ │ ├── gameobject-spawn │ │ │ │ ├── gameobject-spawn.component.html │ │ │ │ ├── gameobject-spawn.component.ts │ │ │ │ ├── gameobject-spawn.integration.spec.ts │ │ │ │ ├── gameobject-spawn.service.spec.ts │ │ │ │ └── gameobject-spawn.service.ts │ │ │ ├── gameobject-template-addon │ │ │ │ ├── gameobject-template-addon.component.html │ │ │ │ ├── gameobject-template-addon.component.scss │ │ │ │ ├── gameobject-template-addon.component.ts │ │ │ │ ├── gameobject-template-addon.integration.spec.ts │ │ │ │ ├── gameobject-template-addon.service.spec.ts │ │ │ │ └── gameobject-template-addon.service.ts │ │ │ ├── gameobject-template │ │ │ │ ├── gameobject-template.component.html │ │ │ │ ├── gameobject-template.component.scss │ │ │ │ ├── gameobject-template.component.spec.ts │ │ │ │ ├── gameobject-template.component.ts │ │ │ │ ├── gameobject-template.integration.spec.ts │ │ │ │ ├── gameobject-template.service.spec.ts │ │ │ │ └── gameobject-template.service.ts │ │ │ ├── index.ts │ │ │ ├── sai-gameobject-handler.service.ts │ │ │ ├── sai-gameobject │ │ │ │ ├── sai-gameobject-editor.service.ts │ │ │ │ ├── sai-gameobject.component.integration.spec.ts │ │ │ │ ├── sai-gameobject.component.scss │ │ │ │ └── sai-gameobject.component.ts │ │ │ └── select-gameobject │ │ │ │ ├── select-gameobject.component.html │ │ │ │ ├── select-gameobject.component.ts │ │ │ │ ├── select-gameobject.integration.spec.ts │ │ │ │ ├── select-gameobject.service.spec.ts │ │ │ │ └── select-gameobject.service.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── gossip │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ │ ├── gossip-handler.service.spec.ts │ │ │ ├── gossip-handler.service.ts │ │ │ ├── gossip-menu-option-preview │ │ │ │ ├── gossip-menu-option-preview.component.html │ │ │ │ ├── gossip-menu-option-preview.component.scss │ │ │ │ └── gossip-menu-option-preview.component.ts │ │ │ ├── gossip-menu-option │ │ │ │ ├── gossip-menu-option.component.html │ │ │ │ ├── gossip-menu-option.component.ts │ │ │ │ ├── gossip-menu-option.integration.spec.ts │ │ │ │ ├── gossip-menu-option.service.spec.ts │ │ │ │ └── gossip-menu-option.service.ts │ │ │ ├── gossip-menu │ │ │ │ ├── gossip-menu.component.html │ │ │ │ ├── gossip-menu.component.scss │ │ │ │ ├── gossip-menu.component.ts │ │ │ │ ├── gossip-menu.integration.spec.ts │ │ │ │ ├── gossip-menu.service.spec.ts │ │ │ │ └── gossip-menu.service.ts │ │ │ ├── index.ts │ │ │ └── select-gossip │ │ │ │ ├── select-gossip.component.html │ │ │ │ ├── select-gossip.component.scss │ │ │ │ ├── select-gossip.component.ts │ │ │ │ ├── select-gossip.integration.spec.ts │ │ │ │ ├── select-gossip.service.spec.ts │ │ │ │ └── select-gossip.service.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── item │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ │ ├── disenchant-loot-template │ │ │ │ ├── disenchant-loot-template.component.ts │ │ │ │ ├── disenchant-loot-template.integration.spec.ts │ │ │ │ ├── disenchant-loot-template.service.spec.ts │ │ │ │ └── disenchant-loot-template.service.ts │ │ │ ├── index.ts │ │ │ ├── item-enchantment │ │ │ │ ├── item-enchantment-template.component.html │ │ │ │ ├── item-enchantment-template.component.scss │ │ │ │ ├── item-enchantment-template.component.ts │ │ │ │ ├── item-enchantment-template.integration.spec.ts │ │ │ │ ├── item-enchantment-template.service.spec.ts │ │ │ │ └── item-enchantment-template.service.ts │ │ │ ├── item-handler.service.spec.ts │ │ │ ├── item-handler.service.ts │ │ │ ├── item-loot-template │ │ │ │ ├── item-loot-template.component.ts │ │ │ │ ├── item-loot-template.integration.spec.ts │ │ │ │ ├── item-loot-template.service.spec.ts │ │ │ │ └── item-loot-template.service.ts │ │ │ ├── item-template │ │ │ │ ├── item-constants.ts │ │ │ │ ├── item-preview.service.spec.ts │ │ │ │ ├── item-preview.service.ts │ │ │ │ ├── item-preview.ts │ │ │ │ ├── item-template.component.html │ │ │ │ ├── item-template.component.scss │ │ │ │ ├── item-template.component.ts │ │ │ │ ├── item-template.integration.spec.ts │ │ │ │ ├── item-template.service.spec.ts │ │ │ │ └── item-template.service.ts │ │ │ ├── milling-loot-template │ │ │ │ ├── milling-loot-template.component.ts │ │ │ │ ├── milling-loot-template.integration.spec.ts │ │ │ │ ├── milling-loot-template.service.spec.ts │ │ │ │ └── milling-loot-template.service.ts │ │ │ ├── prospecting-loot-template │ │ │ │ ├── prospecting-loot-template.component.ts │ │ │ │ ├── prospecting-loot-template.integration.spec.ts │ │ │ │ ├── prospecting-loot-template.service.spec.ts │ │ │ │ └── prospecting-loot-template.service.ts │ │ │ └── select-item │ │ │ │ ├── select-item.component.html │ │ │ │ ├── select-item.component.scss │ │ │ │ ├── select-item.component.ts │ │ │ │ ├── select-item.integration.spec.ts │ │ │ │ ├── select-item.service.spec.ts │ │ │ │ └── select-item.service.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── other-loots │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ │ ├── fishing-loot │ │ │ │ ├── fishing-loot-handler.service.spec.ts │ │ │ │ ├── fishing-loot-handler.service.ts │ │ │ │ ├── fishing-loot-template.component.ts │ │ │ │ ├── fishing-loot-template.integration.spec.ts │ │ │ │ ├── fishing-loot-template.service.spec.ts │ │ │ │ ├── fishing-loot-template.service.ts │ │ │ │ ├── select-fishing-loot.component.ts │ │ │ │ ├── select-fishing-loot.integration.spec.ts │ │ │ │ ├── select-fishing-loot.service.spec.ts │ │ │ │ └── select-fishing-loot.service.ts │ │ │ ├── index.ts │ │ │ ├── mail-loot │ │ │ │ ├── mail-loot-handler.service.spec.ts │ │ │ │ ├── mail-loot-handler.service.ts │ │ │ │ ├── mail-loot-template.component.ts │ │ │ │ ├── mail-loot-template.integration.spec.ts │ │ │ │ ├── mail-loot-template.service.spec.ts │ │ │ │ ├── mail-loot-template.service.ts │ │ │ │ ├── select-mail-loot.component.ts │ │ │ │ ├── select-mail-loot.integration.spec.ts │ │ │ │ ├── select-mail-loot.service.spec.ts │ │ │ │ └── select-mail-loot.service.ts │ │ │ ├── reference-loot │ │ │ │ ├── reference-loot-handler.service.spec.ts │ │ │ │ ├── reference-loot-handler.service.ts │ │ │ │ ├── reference-loot-template.component.ts │ │ │ │ ├── reference-loot-template.integration.spec.ts │ │ │ │ ├── reference-loot-template.service.spec.ts │ │ │ │ ├── reference-loot-template.service.ts │ │ │ │ ├── select-reference-loot.component.ts │ │ │ │ ├── select-reference-loot.integration.spec.ts │ │ │ │ ├── select-reference-loot.service.spec.ts │ │ │ │ └── select-reference-loot.service.ts │ │ │ ├── select-loot.component.html │ │ │ └── spell-loot │ │ │ │ ├── select-spell-loot.component.ts │ │ │ │ ├── select-spell-loot.integration.spec.ts │ │ │ │ ├── select-spell-loot.service.spec.ts │ │ │ │ ├── select-spell-loot.service.ts │ │ │ │ ├── spell-loot-handler.service.spec.ts │ │ │ │ ├── spell-loot-handler.service.ts │ │ │ │ ├── spell-loot-template.component.ts │ │ │ │ ├── spell-loot-template.integration.spec.ts │ │ │ │ ├── spell-loot-template.service.spec.ts │ │ │ │ └── spell-loot-template.service.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── quest │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ │ ├── creature-questender │ │ │ │ ├── creature-questender.component.html │ │ │ │ ├── creature-questender.component.scss │ │ │ │ ├── creature-questender.component.ts │ │ │ │ ├── creature-questender.integration.spec.ts │ │ │ │ ├── creature-questender.service.spec.ts │ │ │ │ └── creature-questender.service.ts │ │ │ ├── creature-queststarter │ │ │ │ ├── creature-queststarter.component.html │ │ │ │ ├── creature-queststarter.component.scss │ │ │ │ ├── creature-queststarter.component.ts │ │ │ │ ├── creature-queststarter.integration.spec.ts │ │ │ │ ├── creature-queststarter.service.spec.ts │ │ │ │ └── creature-queststarter.service.ts │ │ │ ├── gameobject-questender │ │ │ │ ├── gameobject-questender.component.html │ │ │ │ ├── gameobject-questender.component.scss │ │ │ │ ├── gameobject-questender.component.ts │ │ │ │ ├── gameobject-questender.integration.spec.ts │ │ │ │ ├── gameobject-questender.service.spec.ts │ │ │ │ └── gameobject-questender.service.ts │ │ │ ├── gameobject-queststarter │ │ │ │ ├── gameobject-queststarter.component.html │ │ │ │ ├── gameobject-queststarter.component.scss │ │ │ │ ├── gameobject-queststarter.component.ts │ │ │ │ ├── gameobject-queststarter.integration.spec.ts │ │ │ │ ├── gameobject-queststarter.service.spec.ts │ │ │ │ └── gameobject-queststarter.service.ts │ │ │ ├── index.ts │ │ │ ├── quest-handler.service.spec.ts │ │ │ ├── quest-handler.service.ts │ │ │ ├── quest-offer-reward │ │ │ │ ├── quest-offer-reward.component.html │ │ │ │ ├── quest-offer-reward.component.scss │ │ │ │ ├── quest-offer-reward.component.ts │ │ │ │ ├── quest-offer-reward.integration.spec.ts │ │ │ │ ├── quest-offer-reward.service.spec.ts │ │ │ │ └── quest-offer-reward.service.ts │ │ │ ├── quest-preview │ │ │ │ ├── quest-preview.component.html │ │ │ │ ├── quest-preview.component.scss │ │ │ │ ├── quest-preview.component.spec.ts │ │ │ │ ├── quest-preview.component.ts │ │ │ │ ├── quest-preview.model.ts │ │ │ │ ├── quest-preview.service.spec.ts │ │ │ │ └── quest-preview.service.ts │ │ │ ├── quest-request-items │ │ │ │ ├── quest-request-items.component.html │ │ │ │ ├── quest-request-items.component.scss │ │ │ │ ├── quest-request-items.component.ts │ │ │ │ ├── quest-request-items.integration.spec.ts │ │ │ │ ├── quest-request-items.service.spec.ts │ │ │ │ └── quest-request-items.service.ts │ │ │ ├── quest-template-addon │ │ │ │ ├── quest-template-addon.component.html │ │ │ │ ├── quest-template-addon.component.scss │ │ │ │ ├── quest-template-addon.component.ts │ │ │ │ ├── quest-template-addon.integration.spec.ts │ │ │ │ ├── quest-template-addon.service.spec.ts │ │ │ │ └── quest-template-addon.service.ts │ │ │ ├── quest-template-locale │ │ │ │ ├── quest-template-locale.component.html │ │ │ │ ├── quest-template-locale.component.ts │ │ │ │ ├── quest-template-locale.integration.spec.ts │ │ │ │ ├── quest-template-locale.service.spec.ts │ │ │ │ └── quest-template-locale.service.ts │ │ │ ├── quest-template │ │ │ │ ├── quest-template.component.html │ │ │ │ ├── quest-template.component.scss │ │ │ │ ├── quest-template.component.ts │ │ │ │ ├── quest-template.integration.spec.ts │ │ │ │ ├── quest-template.service.spec.ts │ │ │ │ └── quest-template.service.ts │ │ │ └── select-quest │ │ │ │ ├── select-quest.component.html │ │ │ │ ├── select-quest.component.scss │ │ │ │ ├── select-quest.component.ts │ │ │ │ ├── select-quest.integration.spec.ts │ │ │ │ ├── select-quest.service.spec.ts │ │ │ │ └── select-quest.service.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── smart-scripts │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── sai-full-editor │ │ │ │ ├── sai-full-editor.component.html │ │ │ │ ├── sai-full-editor.component.scss │ │ │ │ └── sai-full-editor.component.ts │ │ │ ├── sai-search-entity │ │ │ │ ├── sai-search-entity.component.html │ │ │ │ ├── sai-search-entity.component.scss │ │ │ │ ├── sai-search-entity.component.spec.ts │ │ │ │ └── sai-search-entity.component.ts │ │ │ └── sai-search-existing │ │ │ │ ├── sai-search-existing.component.html │ │ │ │ ├── sai-search-existing.component.scss │ │ │ │ ├── sai-search-existing.component.ts │ │ │ │ └── sai-search-existing.integration.spec.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── spell │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── select-spell │ │ │ │ ├── select-spell.component.html │ │ │ │ ├── select-spell.component.integration.spec.ts │ │ │ │ ├── select-spell.component.ts │ │ │ │ ├── select-spell.service.spec.ts │ │ │ │ └── select-spell.service.ts │ │ │ ├── spell-dbc │ │ │ │ ├── base │ │ │ │ │ ├── spell-dbc-base.component.html │ │ │ │ │ ├── spell-dbc-base.component.spec.ts │ │ │ │ │ └── spell-dbc-base.component.ts │ │ │ │ ├── effects │ │ │ │ │ ├── spell-dbc-effects.component.html │ │ │ │ │ ├── spell-dbc-effects.component.spec.ts │ │ │ │ │ ├── spell-dbc-effects.component.ts │ │ │ │ │ └── spell-dbc-spell-effect │ │ │ │ │ │ ├── spell-dbc-spell-effect.component.html │ │ │ │ │ │ ├── spell-dbc-spell-effect.component.spec.ts │ │ │ │ │ │ ├── spell-dbc-spell-effect.component.ts │ │ │ │ │ │ └── spell-dbc-spell-effect.model.ts │ │ │ │ ├── flags │ │ │ │ │ ├── spell-dbc-flags.component.html │ │ │ │ │ ├── spell-dbc-flags.component.spec.ts │ │ │ │ │ └── spell-dbc-flags.component.ts │ │ │ │ ├── items │ │ │ │ │ ├── spell-dbc-items.component.html │ │ │ │ │ ├── spell-dbc-items.component.spec.ts │ │ │ │ │ └── spell-dbc-items.component.ts │ │ │ │ ├── misc │ │ │ │ │ ├── spell-dbc-misc.component.html │ │ │ │ │ ├── spell-dbc-misc.component.spec.ts │ │ │ │ │ └── spell-dbc-misc.component.ts │ │ │ │ ├── spell-dbc.component.html │ │ │ │ ├── spell-dbc.component.integration.spec.ts │ │ │ │ ├── spell-dbc.component.ts │ │ │ │ ├── spell-dbc.service.spec.ts │ │ │ │ ├── spell-dbc.service.ts │ │ │ │ └── texts │ │ │ │ │ ├── spell-dbc-locale │ │ │ │ │ ├── spell-dbc-locale.component.html │ │ │ │ │ ├── spell-dbc-locale.component.spec.ts │ │ │ │ │ └── spell-dbc-locale.component.ts │ │ │ │ │ ├── spell-dbc-texts.component.html │ │ │ │ │ ├── spell-dbc-texts.component.spec.ts │ │ │ │ │ ├── spell-dbc-texts.component.ts │ │ │ │ │ └── spell-dbc-texts.model.ts │ │ │ ├── spell-handler.service.spec.ts │ │ │ └── spell-handler.service.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── sql-editor │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── sql-editor.component.html │ │ │ ├── sql-editor.component.scss │ │ │ ├── sql-editor.component.spec.ts │ │ │ ├── sql-editor.component.ts │ │ │ ├── sql-editor.service.spec.ts │ │ │ └── sql-editor.service.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── texts │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ │ ├── acore-string │ │ │ │ ├── acore-string-handler.service.spec.ts │ │ │ │ ├── acore-string-handler.service.ts │ │ │ │ ├── acore-string.component.html │ │ │ │ ├── acore-string.component.ts │ │ │ │ ├── acore-string.integration.spec.ts │ │ │ │ ├── acore-string.service.spec.ts │ │ │ │ ├── acore-string.service.ts │ │ │ │ ├── select-acore-string.component.html │ │ │ │ ├── select-acore-string.component.ts │ │ │ │ ├── select-acore-string.integration.spec.ts │ │ │ │ ├── select-acore-string.service.spec.ts │ │ │ │ └── select-acore-string.service.ts │ │ │ ├── broadcast-text │ │ │ │ ├── broadcast-text-handler.service.spec.ts │ │ │ │ ├── broadcast-text-handler.service.ts │ │ │ │ ├── broadcast-text.component.html │ │ │ │ ├── broadcast-text.component.ts │ │ │ │ ├── broadcast-text.integration.spec.ts │ │ │ │ ├── broadcast-text.service.spec.ts │ │ │ │ ├── broadcast-text.service.ts │ │ │ │ ├── select-broadcast-text.component.html │ │ │ │ ├── select-broadcast-text.component.ts │ │ │ │ ├── select-broadcast-text.integration.spec.ts │ │ │ │ ├── select-broadcast-text.service.spec.ts │ │ │ │ └── select-broadcast-text.service.ts │ │ │ ├── index.ts │ │ │ ├── npc-text │ │ │ │ ├── npc-text-fields-group.component.html │ │ │ │ ├── npc-text-fields-group.component.spec.ts │ │ │ │ ├── npc-text-fields-group.component.ts │ │ │ │ ├── npc-text-handler.service.spec.ts │ │ │ │ ├── npc-text-handler.service.ts │ │ │ │ ├── npc-text.component.html │ │ │ │ ├── npc-text.component.ts │ │ │ │ ├── npc-text.integration.spec.ts │ │ │ │ ├── npc-text.service.spec.ts │ │ │ │ ├── npc-text.service.ts │ │ │ │ ├── select-npc-text.component.html │ │ │ │ ├── select-npc-text.component.ts │ │ │ │ ├── select-npc-text.integration.spec.ts │ │ │ │ ├── select-npc-text.service.spec.ts │ │ │ │ └── select-npc-text.service.ts │ │ │ └── page-text │ │ │ │ ├── page-text-handler.service.spec.ts │ │ │ │ ├── page-text-handler.service.ts │ │ │ │ ├── page-text.component.html │ │ │ │ ├── page-text.component.ts │ │ │ │ ├── page-text.integration.spec.ts │ │ │ │ ├── page-text.service.spec.ts │ │ │ │ ├── page-text.service.ts │ │ │ │ ├── select-page-text.component.html │ │ │ │ ├── select-page-text.component.ts │ │ │ │ ├── select-page-text.integration.spec.ts │ │ │ │ ├── select-page-text.service.spec.ts │ │ │ │ └── select-page-text.service.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── unused-guid-search │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ ├── unused-guid-search.component.html │ │ ├── unused-guid-search.component.scss │ │ ├── unused-guid-search.component.spec.ts │ │ ├── unused-guid-search.component.ts │ │ ├── unused-guid-search.service.spec.ts │ │ └── unused-guid-search.service.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── main │ ├── connection-window │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ │ ├── connection-window.component.html │ │ │ ├── connection-window.component.scss │ │ │ ├── connection-window.component.spec.ts │ │ │ ├── connection-window.component.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── main-window │ │ ├── .eslintrc.json │ │ ├── karma.conf.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ ├── main-window.component.html │ │ ├── main-window.component.scss │ │ ├── main-window.component.spec.ts │ │ ├── main-window.component.ts │ │ └── sidebar │ │ │ ├── logout-btn │ │ │ ├── logout-btn.component.html │ │ │ ├── logout-btn.component.scss │ │ │ ├── logout-btn.component.spec.ts │ │ │ └── logout-btn.component.ts │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.scss │ │ │ ├── sidebar.component.spec.ts │ │ │ ├── sidebar.component.ts │ │ │ ├── sidebar.service.spec.ts │ │ │ ├── sidebar.service.ts │ │ │ └── unsaved-icon │ │ │ ├── unsaved-icon.component.html │ │ │ ├── unsaved-icon.component.scss │ │ │ ├── unsaved-icon.component.spec.ts │ │ │ └── unsaved-icon.component.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json └── shared │ ├── acore-world-model │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── entities │ │ │ ├── acore-text.type.ts │ │ │ ├── area.type.ts │ │ │ ├── broadcast-text.type.ts │ │ │ ├── conditions.type.ts │ │ │ ├── creature-equip-template.type.ts │ │ │ ├── creature-formations.type.ts │ │ │ ├── creature-loot-template.type.ts │ │ │ ├── creature-onkill-reputation.type.ts │ │ │ ├── creature-questender.type.ts │ │ │ ├── creature-questitem.type.ts │ │ │ ├── creature-queststarter.type.ts │ │ │ ├── creature-spawn-addon.type.ts │ │ │ ├── creature-spawn.type.ts │ │ │ ├── creature-template-addon.type.ts │ │ │ ├── creature-template-model.type.ts │ │ │ ├── creature-template-movement.type.ts │ │ │ ├── creature-template-resistance.type.ts │ │ │ ├── creature-template-spell.type.ts │ │ │ ├── creature-template.type.ts │ │ │ ├── creature-text.type.ts │ │ │ ├── disenchant-loot-template.type.ts │ │ │ ├── faction.type.ts │ │ │ ├── fishing-loot-template.type.ts │ │ │ ├── game-tele.type.ts │ │ │ ├── gameobject-loot-template.type.ts │ │ │ ├── gameobject-questender.type.ts │ │ │ ├── gameobject-questitem.type.ts │ │ │ ├── gameobject-queststarter.type.ts │ │ │ ├── gameobject-spawn-addon.type.ts │ │ │ ├── gameobject-spawn.type.ts │ │ │ ├── gameobject-template-addon.type.ts │ │ │ ├── gameobject-template.type.ts │ │ │ ├── gossip-menu-option.type.ts │ │ │ ├── gossip-menu.type.ts │ │ │ ├── holiday.type.ts │ │ │ ├── item-enchantment-template.type.ts │ │ │ ├── item-enchantment.type.ts │ │ │ ├── item-extended-cost.type.ts │ │ │ ├── item-limit-category.type.ts │ │ │ ├── item-loot-template.type.ts │ │ │ ├── item-template.type.ts │ │ │ ├── language.type.ts │ │ │ ├── lock.type.ts │ │ │ ├── loot-template.type.ts │ │ │ ├── mail-loot-template.type.ts │ │ │ ├── map.type.ts │ │ │ ├── milling-loot-template.type.ts │ │ │ ├── npc-text.type.ts │ │ │ ├── npc-trainer.type.ts │ │ │ ├── npc-vendor.type.ts │ │ │ ├── page-text.type.ts │ │ │ ├── pickpocketing-loot-template.type.ts │ │ │ ├── prospecting-loot-template.type.ts │ │ │ ├── quest-offer-reward.type.ts │ │ │ ├── quest-request-items.type.ts │ │ │ ├── quest-template-addon.type.ts │ │ │ ├── quest-template-locale.type.ts │ │ │ ├── quest-template.type.ts │ │ │ ├── reference-loot-template.type.ts │ │ │ ├── skill.type.ts │ │ │ ├── skinning-loot-template.type.ts │ │ │ ├── smart-scripts.type.ts │ │ │ ├── sound-entries.type.ts │ │ │ ├── spell-dbc.type.ts │ │ │ ├── spell-loot-template.type.ts │ │ │ └── spell.type.ts │ │ ├── flags │ │ │ ├── allowable-classes.ts │ │ │ ├── allowable-races.ts │ │ │ ├── bag-family.ts │ │ │ ├── conditions.ts │ │ │ ├── creature-type-flags.ts │ │ │ ├── dynamic-flags.ts │ │ │ ├── event-phase-mask.ts │ │ │ ├── flags-extra.ts │ │ │ ├── gameobject-flags.ts │ │ │ ├── item-flags-custom.ts │ │ │ ├── item-flags-extra.ts │ │ │ ├── item-flags.ts │ │ │ ├── loot-mode.ts │ │ │ ├── mechanic-immune-mask.ts │ │ │ ├── npc-flags.ts │ │ │ ├── phase-mask.ts │ │ │ ├── quest-flags.ts │ │ │ ├── smart-event-flags.ts │ │ │ ├── socket-color.ts │ │ │ ├── spawn-mask.ts │ │ │ ├── special-flags.ts │ │ │ ├── spell-dbc-effect-flags.ts │ │ │ ├── spell-dbc-flags-flags.ts │ │ │ ├── spell-dbc-item-flags.ts │ │ │ ├── spell-school-mask.ts │ │ │ ├── unit-flags.ts │ │ │ └── unit-flags2.ts │ │ ├── index.ts │ │ └── options │ │ │ ├── conditions.ts │ │ │ ├── creature-addon-bytes1.ts │ │ │ ├── creature-addon-bytes2.ts │ │ │ ├── creature-ai-name.ts │ │ │ ├── creature-class.ts │ │ │ ├── creature-family.ts │ │ │ ├── creature-icon.ts │ │ │ ├── creature-race.ts │ │ │ ├── creature-template-resistance-school.ts │ │ │ ├── creature-type.ts │ │ │ ├── damage-type.ts │ │ │ ├── dispel-type.ts │ │ │ ├── emote.ts │ │ │ ├── expansion.ts │ │ │ ├── faction-rank.ts │ │ │ ├── foot-type.ts │ │ │ ├── gameobject-icon.ts │ │ │ ├── gameobject-type.ts │ │ │ ├── gossip-option-icon.ts │ │ │ ├── gossip-option-type.ts │ │ │ ├── inventory-type.ts │ │ │ ├── invisibility-type.ts │ │ │ ├── item-bonding.ts │ │ │ ├── item-class.ts │ │ │ ├── item-honorrank.ts │ │ │ ├── item-material.ts │ │ │ ├── item-quality.ts │ │ │ ├── item-sheath.ts │ │ │ ├── movement-type.ts │ │ │ ├── quest-info.ts │ │ │ ├── quest-locale.ts │ │ │ ├── quest-type.ts │ │ │ ├── rank.ts │ │ │ ├── spell-dbc-base-options.ts │ │ │ ├── spell-dbc-effects-options.ts │ │ │ ├── spell-mechanic.ts │ │ │ ├── stat-type.ts │ │ │ ├── text-range.ts │ │ │ ├── text-type.ts │ │ │ ├── totem-category.ts │ │ │ ├── trainer-type.ts │ │ │ └── unit-class.ts │ ├── tsconfig.json │ └── tsconfig.lib.json │ ├── base-abstract-classes │ ├── .eslintrc.json │ ├── README.md │ ├── karma.conf.js │ ├── project.json │ ├── src │ │ ├── components │ │ │ └── editors │ │ │ │ ├── editor.component.ts │ │ │ │ ├── loot-template │ │ │ │ ├── loot-template-id.component.html │ │ │ │ ├── loot-template-id.component.ts │ │ │ │ ├── loot-template.component.html │ │ │ │ └── loot-template.component.ts │ │ │ │ ├── multi-row-editor.component.ts │ │ │ │ ├── select-complex-key.component.ts │ │ │ │ ├── select.component.ts │ │ │ │ └── single-row-editor.component.ts │ │ ├── core.mock.ts │ │ ├── index.ts │ │ └── service │ │ │ ├── editors │ │ │ ├── editor.service.spec.ts │ │ │ ├── editor.service.ts │ │ │ ├── loot-editor-id.service.ts │ │ │ ├── multi-row-complex-key-editor.service.spec.ts │ │ │ ├── multi-row-complex-key-editor.service.ts │ │ │ ├── multi-row-editor.service.spec.ts │ │ │ ├── multi-row-editor.service.ts │ │ │ ├── multi-row-external-editor.service.spec.ts │ │ │ ├── multi-row-external-editor.service.ts │ │ │ ├── single-row-complex-key-editor.service.spec.ts │ │ │ ├── single-row-complex-key-editor.service.ts │ │ │ ├── single-row-editor.service.spec.ts │ │ │ └── single-row-editor.service.ts │ │ │ ├── handlers │ │ │ ├── complex-key.handler.service.ts │ │ │ ├── handler.service.spec.ts │ │ │ └── handler.service.ts │ │ │ └── select │ │ │ ├── search.service.spec.ts │ │ │ ├── search.service.ts │ │ │ ├── select.service.spec.ts │ │ │ └── select.service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json │ ├── base-editor-components │ ├── .eslintrc.json │ ├── karma.conf.js │ ├── project.json │ ├── src │ │ ├── create │ │ │ ├── create.component.html │ │ │ ├── create.component.spec.ts │ │ │ └── create.component.ts │ │ ├── editor-buttons │ │ │ ├── editor-buttons.component.html │ │ │ ├── editor-buttons.component.spec.ts │ │ │ └── editor-buttons.component.ts │ │ ├── highlightjs-wrapper │ │ │ ├── highlightjs-wrapper.component.html │ │ │ ├── highlightjs-wrapper.component.spec.ts │ │ │ └── highlightjs-wrapper.component.ts │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.scss │ │ │ ├── icon.component.spec.ts │ │ │ ├── icon.component.ts │ │ │ ├── icon.service.spec.ts │ │ │ └── icon.service.ts │ │ ├── index.ts │ │ ├── modal-confirm │ │ │ ├── modal-confirm.component.html │ │ │ ├── modal-confirm.component.spec.ts │ │ │ └── modal-confirm.component.ts │ │ ├── query-output │ │ │ ├── query-error │ │ │ │ ├── query-error.component.html │ │ │ │ ├── query-error.component.scss │ │ │ │ ├── query-error.component.spec.ts │ │ │ │ └── query-error.component.ts │ │ │ ├── query-output.component.html │ │ │ ├── query-output.component.scss │ │ │ ├── query-output.component.spec.ts │ │ │ └── query-output.component.ts │ │ └── top-bar │ │ │ ├── top-bar.component.html │ │ │ ├── top-bar.component.spec.ts │ │ │ └── top-bar.component.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json │ ├── common-services │ ├── .eslintrc.json │ ├── karma.conf.js │ ├── project.json │ ├── src │ │ ├── config.service.spec.ts │ │ ├── config.service.ts │ │ ├── electron.service.ts │ │ ├── index.ts │ │ ├── location.service.spec.ts │ │ └── location.service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json │ ├── config │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── app.config.mock.ts │ │ ├── app.config.ts │ │ ├── index.ts │ │ └── lib │ │ │ ├── datatable.config.ts │ │ │ ├── highlight.config.ts │ │ │ ├── squel.config.ts │ │ │ ├── toastr.config.ts │ │ │ └── ui-switch.config.ts │ ├── tsconfig.json │ └── tsconfig.lib.json │ ├── constants │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── constants │ │ │ ├── gameobject-types.ts │ │ │ ├── general.ts │ │ │ ├── preview.ts │ │ │ └── quest-preview.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── general.ts │ │ │ └── quest-reputation-reward.ts │ ├── tsconfig.json │ └── tsconfig.lib.json │ ├── db-layer │ ├── .eslintrc.json │ ├── karma.conf.js │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── mysql.model.ts │ │ ├── mysql.service.spec.ts │ │ ├── mysql.service.ts │ │ ├── query │ │ │ ├── base-query.service.spec.ts │ │ │ ├── base-query.service.ts │ │ │ ├── mysql-query.service.spec.ts │ │ │ ├── mysql-query.service.ts │ │ │ ├── sqlite-query.service.spec.ts │ │ │ └── sqlite-query.service.ts │ │ ├── sqlite.service.spec.ts │ │ └── sqlite.service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json │ ├── login-config │ ├── .eslintrc.json │ ├── karma.conf.js │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── local-storage.service.spec.ts │ │ ├── local-storage.service.ts │ │ ├── login-config.service.spec.ts │ │ └── login-config.service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json │ ├── loot-editor │ ├── .eslintrc.json │ ├── karma.conf.js │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── loot-editor.component.html │ │ ├── loot-editor.component.scss │ │ ├── loot-editor.component.ts │ │ ├── reference-viewer.component.html │ │ ├── reference-viewer.component.spec.ts │ │ ├── reference-viewer.component.ts │ │ ├── reference-viewer.service.spec.ts │ │ └── reference-viewer.service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json │ ├── model-3d-viewer │ ├── .eslintrc.json │ ├── karma.conf.js │ ├── project.json │ ├── src │ │ ├── helper.ts │ │ ├── index.ts │ │ ├── model-3d-viewer.component.html │ │ ├── model-3d-viewer.component.scss │ │ ├── model-3d-viewer.component.spec.ts │ │ ├── model-3d-viewer.component.ts │ │ ├── model-3d-viewer.model.ts │ │ ├── model-3d-viewer.service.spec.ts │ │ └── model-3d-viewer.service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json │ ├── preview │ ├── .eslintrc.json │ ├── karma.conf.js │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── preview-helper.service.spec.ts │ │ └── preview-helper.service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json │ ├── sai-editor │ ├── .eslintrc.json │ ├── karma.conf.js │ ├── project.json │ ├── src │ │ ├── constants │ │ │ ├── sai-actions.ts │ │ │ ├── sai-comments.ts │ │ │ ├── sai-constants.ts │ │ │ ├── sai-event.ts │ │ │ └── sai-targets.ts │ │ ├── index.ts │ │ ├── sai-comment-generator.service.spec.ts │ │ ├── sai-comment-generator.service.ts │ │ ├── sai-editor.component.html │ │ ├── sai-editor.component.integration.spec.ts │ │ ├── sai-editor.component.scss │ │ ├── sai-editor.component.spec.ts │ │ ├── sai-editor.component.ts │ │ ├── sai-editor.service.spec.ts │ │ ├── sai-editor.service.ts │ │ ├── sai-handler.service.spec.ts │ │ ├── sai-handler.service.ts │ │ ├── sai-top-bar │ │ │ ├── sai-top-bar.component.html │ │ │ ├── sai-top-bar.component.spec.ts │ │ │ └── sai-top-bar.component.ts │ │ └── timed-actionlist │ │ │ ├── timed-actionlist.component.html │ │ │ ├── timed-actionlist.component.scss │ │ │ ├── timed-actionlist.component.spec.ts │ │ │ └── timed-actionlist.component.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json │ ├── selectors │ ├── .eslintrc.json │ ├── karma.conf.js │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── search │ │ │ ├── area-search.service.spec.ts │ │ │ ├── area-search.service.ts │ │ │ ├── conditions-search.service.ts │ │ │ ├── creature-search.service.spec.ts │ │ │ ├── creature-search.service.ts │ │ │ ├── faction-search.service.spec.ts │ │ │ ├── faction-search.service.ts │ │ │ ├── game-tele-search.service.ts │ │ │ ├── gameobject-search.service.spec.ts │ │ │ ├── gameobject-search.service.ts │ │ │ ├── holiday-search.service.spec.ts │ │ │ ├── holiday-search.service.ts │ │ │ ├── item-enchantment-search.service.spec.ts │ │ │ ├── item-enchantment-search.service.ts │ │ │ ├── item-extended-cost-search.service.spec.ts │ │ │ ├── item-extended-cost-search.service.ts │ │ │ ├── item-limit-category-search.service.spec.ts │ │ │ ├── item-limit-category-search.service.ts │ │ │ ├── item-search.service.spec.ts │ │ │ ├── item-search.service.ts │ │ │ ├── language-search.service.spec.ts │ │ │ ├── language-search.service.ts │ │ │ ├── map-search.service.spec.ts │ │ │ ├── map-search.service.ts │ │ │ ├── npc-text-search.service.spec.ts │ │ │ ├── npc-text-search.service.ts │ │ │ ├── quest-search.service.spec.ts │ │ │ ├── quest-search.service.ts │ │ │ ├── sai-search.service.ts │ │ │ ├── skill-search.service.spec.ts │ │ │ ├── skill-search.service.ts │ │ │ ├── sound-entries-search.service.spec.ts │ │ │ ├── sound-entries-search.service.ts │ │ │ ├── spell-search.service.spec.ts │ │ │ └── spell-search.service.ts │ │ └── selectors │ │ │ ├── area-selector │ │ │ ├── area-selector-btn.component.spec.ts │ │ │ ├── area-selector-btn.component.ts │ │ │ ├── area-selector-modal.component.html │ │ │ ├── area-selector-modal.component.spec.ts │ │ │ └── area-selector-modal.component.ts │ │ │ ├── base-selector │ │ │ ├── base-selector-btn.component.html │ │ │ ├── base-selector-btn.component.scss │ │ │ ├── base-selector-btn.component.spec.ts │ │ │ ├── base-selector-btn.component.ts │ │ │ ├── base-selector-modal.component.spec.ts │ │ │ ├── base-selector-modal.component.ts │ │ │ ├── base-selector.model.ts │ │ │ ├── search-selector-modal.component.spec.ts │ │ │ └── search-selector-modal.component.ts │ │ │ ├── boolean-option-selector │ │ │ ├── boolean-option-selector.component.html │ │ │ ├── boolean-option-selector.component.spec.ts │ │ │ └── boolean-option-selector.component.ts │ │ │ ├── creature-selector │ │ │ ├── creature-selector-btn.component.spec.ts │ │ │ ├── creature-selector-btn.component.ts │ │ │ ├── creature-selector-modal.component.html │ │ │ ├── creature-selector-modal.component.spec.ts │ │ │ └── creature-selector-modal.component.ts │ │ │ ├── faction-selector │ │ │ ├── faction-selector-btn.component.spec.ts │ │ │ ├── faction-selector-btn.component.ts │ │ │ ├── faction-selector-modal.component.html │ │ │ ├── faction-selector-modal.component.spec.ts │ │ │ ├── faction-selector-modal.component.ts │ │ │ ├── quest-faction-selector-btn.component.spec.ts │ │ │ ├── quest-faction-selector-btn.component.ts │ │ │ ├── quest-faction-selector-modal.component.spec.ts │ │ │ └── quest-faction-selector-modal.component.ts │ │ │ ├── flags-selector │ │ │ ├── flags-selector-btn.component.spec.ts │ │ │ ├── flags-selector-btn.component.ts │ │ │ ├── flags-selector-modal.component.html │ │ │ ├── flags-selector-modal.component.scss │ │ │ ├── flags-selector-modal.component.spec.ts │ │ │ ├── flags-selector-modal.component.ts │ │ │ ├── flags-selector.model.ts │ │ │ ├── flags.service.spec.ts │ │ │ └── flags.service.ts │ │ │ ├── game-tele-selector │ │ │ ├── game-tele-selector-btn.component.spec.ts │ │ │ ├── game-tele-selector-btn.component.ts │ │ │ ├── game-tele-selector-modal.component.html │ │ │ ├── game-tele-selector-modal.component.spec.ts │ │ │ └── game-tele-selector-modal.component.ts │ │ │ ├── gameobject-selector │ │ │ ├── gameobject-selector-btn.component.spec.ts │ │ │ ├── gameobject-selector-btn.component.ts │ │ │ ├── gameobject-selector-modal.component.html │ │ │ ├── gameobject-selector-modal.component.spec.ts │ │ │ └── gameobject-selector-modal.component.ts │ │ │ ├── generic-option-selector │ │ │ ├── generic-option-selector.component.html │ │ │ ├── generic-option-selector.component.scss │ │ │ ├── generic-option-selector.component.spec.ts │ │ │ └── generic-option-selector.component.ts │ │ │ ├── holiday-selector │ │ │ ├── holiday-selector-btn.component.spec.ts │ │ │ ├── holiday-selector-btn.component.ts │ │ │ ├── holiday-selector-modal.component.html │ │ │ ├── holiday-selector-modal.component.spec.ts │ │ │ └── holiday-selector-modal.component.ts │ │ │ ├── icon-selector │ │ │ ├── icon-selector.component.html │ │ │ └── icon-selector.component.ts │ │ │ ├── item-enchantment-selector │ │ │ ├── item-enchantment-selector-btn.component.spec.ts │ │ │ ├── item-enchantment-selector-btn.component.ts │ │ │ ├── item-enchantment-selector-modal.component.html │ │ │ ├── item-enchantment-selector-modal.component.spec.ts │ │ │ └── item-enchantment-selector-modal.component.ts │ │ │ ├── item-extended-cost-selector │ │ │ ├── item-extended-cost-selector-btn.component.spec.ts │ │ │ ├── item-extended-cost-selector-btn.component.ts │ │ │ ├── item-extended-cost-selector-modal.component.html │ │ │ ├── item-extended-cost-selector-modal.component.spec.ts │ │ │ └── item-extended-cost-selector-modal.component.ts │ │ │ ├── item-limit-category-selector │ │ │ ├── item-limit-category-selector-btn.component.spec.ts │ │ │ ├── item-limit-category-selector-btn.component.ts │ │ │ ├── item-limit-category-selector-modal.component.html │ │ │ ├── item-limit-category-selector-modal.component.spec.ts │ │ │ └── item-limit-category-selector-modal.component.ts │ │ │ ├── item-selector │ │ │ ├── item-selector-btn.component.spec.ts │ │ │ ├── item-selector-btn.component.ts │ │ │ ├── item-selector-modal.component.html │ │ │ ├── item-selector-modal.component.spec.ts │ │ │ └── item-selector-modal.component.ts │ │ │ ├── language-selector │ │ │ ├── language-selector-btn.component.spec.ts │ │ │ ├── language-selector-btn.component.ts │ │ │ ├── language-selector-modal.component.html │ │ │ ├── language-selector-modal.component.spec.ts │ │ │ └── language-selector-modal.component.ts │ │ │ ├── map-selector │ │ │ ├── map-selector-btn.component.spec.ts │ │ │ ├── map-selector-btn.component.ts │ │ │ ├── map-selector-modal.component.html │ │ │ ├── map-selector-modal.component.spec.ts │ │ │ └── map-selector-modal.component.ts │ │ │ ├── npc-text-selector │ │ │ ├── npc-text-selector-btn.component.spec.ts │ │ │ ├── npc-text-selector-btn.component.ts │ │ │ ├── npc-text-selector-modal.component.html │ │ │ ├── npc-text-selector-modal.component.spec.ts │ │ │ └── npc-text-selector-modal.component.ts │ │ │ ├── quest-selector │ │ │ ├── quest-selector-btn.component.spec.ts │ │ │ ├── quest-selector-btn.component.ts │ │ │ ├── quest-selector-modal.component.html │ │ │ ├── quest-selector-modal.component.spec.ts │ │ │ └── quest-selector-modal.component.ts │ │ │ ├── single-value-selector │ │ │ ├── single-value-selector-btn.component.spec.ts │ │ │ ├── single-value-selector-btn.component.ts │ │ │ ├── single-value-selector-modal.component.html │ │ │ ├── single-value-selector-modal.component.scss │ │ │ ├── single-value-selector-modal.component.spec.ts │ │ │ ├── single-value-selector-modal.component.ts │ │ │ └── single-value-selector.model.ts │ │ │ ├── skill-selector │ │ │ ├── skill-selector-btn.component.spec.ts │ │ │ ├── skill-selector-btn.component.ts │ │ │ ├── skill-selector-modal.component.html │ │ │ ├── skill-selector-modal.component.spec.ts │ │ │ └── skill-selector-modal.component.ts │ │ │ ├── sound-entries-selector │ │ │ ├── sound-entries-selector-btn.component.spec.ts │ │ │ ├── sound-entries-selector-btn.component.ts │ │ │ ├── sound-entries-selector-modal.component.html │ │ │ ├── sound-entries-selector-modal.component.spec.ts │ │ │ └── sound-entries-selector-modal.component.ts │ │ │ └── spell-selector │ │ │ ├── spell-selector-btn.component.spec.ts │ │ │ ├── spell-selector-btn.component.ts │ │ │ ├── spell-selector-modal.component.html │ │ │ ├── spell-selector-modal.component.spec.ts │ │ │ └── spell-selector-modal.component.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json │ ├── switch-language │ ├── .eslintrc.json │ ├── karma.conf.js │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── switch-language.component.html │ │ ├── switch-language.component.scss │ │ ├── switch-language.component.spec.ts │ │ ├── switch-language.component.ts │ │ ├── switch-language.service.spec.ts │ │ └── switch-language.service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json │ ├── test-utils │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── editor-page-object.ts │ │ │ ├── keira-page-object.ts │ │ │ ├── multi-row-editor-page-object.ts │ │ │ ├── query-output-page-object.ts │ │ │ ├── select-page-object.ts │ │ │ ├── test-helpers.ts │ │ │ └── translate-module.ts │ ├── tsconfig.json │ └── tsconfig.lib.json │ └── utils │ ├── .eslintrc.json │ ├── README.md │ ├── karma.conf.js │ ├── project.json │ ├── src │ ├── helpers.spec.ts │ ├── helpers.ts │ ├── index.ts │ └── subscription-handler │ │ ├── subscription-handler.spec.ts │ │ └── subscription-handler.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── main.ts ├── nx.json ├── package.json ├── postcss.config.js ├── renovate.json ├── screenshot.png ├── scripts └── sync_i18n.py ├── tsconfig-serve.json └── tsconfig.base.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | karma.conf.js 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: www.paypal.me/francesco92dev 2 | -------------------------------------------------------------------------------- /.github/workflows/build-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/.github/workflows/build-linux.yml -------------------------------------------------------------------------------- /.github/workflows/build-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/.github/workflows/build-mac.yml -------------------------------------------------------------------------------- /.github/workflows/build-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/.github/workflows/build-windows.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/sync_i18n.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/.github/workflows/sync_i18n.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx pretty-quick --staged 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/_config.yml -------------------------------------------------------------------------------- /apps/keira-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/keira-e2e/main.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira-e2e/main.spec.ts -------------------------------------------------------------------------------- /apps/keira-e2e/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira-e2e/playwright.config.ts -------------------------------------------------------------------------------- /apps/keira-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira-e2e/project.json -------------------------------------------------------------------------------- /apps/keira-e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira-e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /apps/keira/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/.eslintrc.json -------------------------------------------------------------------------------- /apps/keira/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/project.json -------------------------------------------------------------------------------- /apps/keira/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/app.component.html -------------------------------------------------------------------------------- /apps/keira/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/app.component.scss -------------------------------------------------------------------------------- /apps/keira/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/keira/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/keira/src/app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/routes.ts -------------------------------------------------------------------------------- /apps/keira/src/app/scss/_bootstrap5-overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/_bootstrap5-overrides.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/_content.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/_editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/_editor.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/_item-preview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/_item-preview.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/_item-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/_item-select.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/_login.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/_ngx-bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/_ngx-bootstrap.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/_ngx-datatable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/_ngx-datatable.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/_preview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/_preview.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/_quest-preview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/_quest-preview.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/_sidebar.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/_utils.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/_variables.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/imports.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/main-test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/main-test.scss -------------------------------------------------------------------------------- /apps/keira/src/app/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/app/scss/main.scss -------------------------------------------------------------------------------- /apps/keira/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/de.json -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/el.json -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/en.json -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/es.json -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/fr.json -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/it.json -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/ko.json -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/nl.json -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/pl.json -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/pt.json -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/ro.json -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/ru.json -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/sk.json -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/sv.json -------------------------------------------------------------------------------- /apps/keira/src/assets/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/i18n/zh.json -------------------------------------------------------------------------------- /apps/keira/src/assets/img/ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/ac.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/class/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/class/1.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/class/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/class/11.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/class/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/class/2.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/class/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/class/3.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/class/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/class/4.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/class/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/class/5.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/class/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/class/6.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/class/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/class/7.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/class/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/class/8.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/class/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/class/9.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/Attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/Attack.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/Buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/Buy.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/Directions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/Directions.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/Driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/Driver.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/Gunner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/Gunner.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/Interact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/Interact.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/LootAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/LootAll.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/PVP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/PVP.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/Pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/Pickup.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/Quest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/Quest.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/Repair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/Repair.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/Speak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/Speak.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/Taxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/Taxi.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/Trainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/Trainer.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/creature-icons/vehichleCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/creature-icons/vehichleCursor.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/dmgschool/arcane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/dmgschool/arcane.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/dmgschool/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/dmgschool/fire.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/dmgschool/frost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/dmgschool/frost.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/dmgschool/holy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/dmgschool/holy.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/dmgschool/nature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/dmgschool/nature.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/dmgschool/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/dmgschool/normal.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/dmgschool/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/dmgschool/shadow.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/gossip/battle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/gossip/battle.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/gossip/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/gossip/chat.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/gossip/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/gossip/dot.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/gossip/interaction_wheel_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/gossip/interaction_wheel_1.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/gossip/interaction_wheel_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/gossip/interaction_wheel_2.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/gossip/money_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/gossip/money_bag.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/gossip/tabard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/gossip/tabard.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/gossip/talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/gossip/talk.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/gossip/taxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/gossip/taxi.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/gossip/trainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/gossip/trainer.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/gossip/vendor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/gossip/vendor.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/login-backgrounds/chromie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/login-backgrounds/chromie.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/login-backgrounds/death-angel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/login-backgrounds/death-angel.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/login-backgrounds/illidan-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/login-backgrounds/illidan-1.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/login-backgrounds/ne-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/login-backgrounds/ne-1.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/login-backgrounds/ne-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/login-backgrounds/ne-2.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/login-backgrounds/ne-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/login-backgrounds/ne-3.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/login-backgrounds/orc-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/login-backgrounds/orc-1.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/login-backgrounds/orc-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/login-backgrounds/orc-2.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/login-backgrounds/orc-campfire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/login-backgrounds/orc-campfire.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/login-backgrounds/ragnaros.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/login-backgrounds/ragnaros.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/login-backgrounds/undead-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/login-backgrounds/undead-1.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/money/copper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/money/copper.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/money/gold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/money/gold.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/money/silver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/money/silver.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/pvp/arena.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/pvp/arena.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/quest/alliance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/quest/alliance.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/quest/horde.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/quest/horde.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/quest/quest_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/quest/quest_end.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/quest/quest_end_daily.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/quest/quest_end_daily.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/quest/quest_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/quest/quest_start.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/quest/quest_start_daily.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/quest/quest_start_daily.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/1-0.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/1-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/1-1.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/10-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/10-0.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/10-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/10-1.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/11-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/11-0.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/11-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/11-1.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/2-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/2-0.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/2-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/2-1.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/3-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/3-0.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/3-1.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/4-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/4-0.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/4-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/4-1.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/5-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/5-0.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/5-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/5-1.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/6-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/6-0.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/6-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/6-1.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/7-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/7-0.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/7-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/7-1.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/8-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/8-0.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/8-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/8-1.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/9-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/9-0.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/race/9-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/race/9-1.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/reputation/exalted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/reputation/exalted.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/reputation/friendly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/reputation/friendly.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/reputation/hated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/reputation/hated.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/reputation/honored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/reputation/honored.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/reputation/hostile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/reputation/hostile.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/reputation/neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/reputation/neutral.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/reputation/revered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/reputation/revered.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/reputation/unfriendly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/reputation/unfriendly.png -------------------------------------------------------------------------------- /apps/keira/src/assets/img/sidebar-backgrounds/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/sidebar-backgrounds/bg1.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/sidebar-backgrounds/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/sidebar-backgrounds/bg2.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/sidebar-backgrounds/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/sidebar-backgrounds/bg3.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/sidebar-backgrounds/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/sidebar-backgrounds/bg4.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/sidebar-backgrounds/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/sidebar-backgrounds/bg5.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/sidebar-backgrounds/bg6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/sidebar-backgrounds/bg6.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/sidebar-backgrounds/bg7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/sidebar-backgrounds/bg7.jpg -------------------------------------------------------------------------------- /apps/keira/src/assets/img/sockets/blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/sockets/blue.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/sockets/meta.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/sockets/meta.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/sockets/prismatic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/sockets/prismatic.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/sockets/red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/sockets/red.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/img/sockets/yellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/img/sockets/yellow.gif -------------------------------------------------------------------------------- /apps/keira/src/assets/item_display.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/item_display.db -------------------------------------------------------------------------------- /apps/keira/src/assets/sqlite.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/assets/sqlite.db -------------------------------------------------------------------------------- /apps/keira/src/environments/environment.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/environments/environment.dev.ts -------------------------------------------------------------------------------- /apps/keira/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /apps/keira/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/keira/src/environments/environment.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/environments/environment.web.ts -------------------------------------------------------------------------------- /apps/keira/src/favicon.256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/favicon.256x256.png -------------------------------------------------------------------------------- /apps/keira/src/favicon.512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/favicon.512x512.png -------------------------------------------------------------------------------- /apps/keira/src/favicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/favicon.icns -------------------------------------------------------------------------------- /apps/keira/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/favicon.ico -------------------------------------------------------------------------------- /apps/keira/src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/favicon.png -------------------------------------------------------------------------------- /apps/keira/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/index.html -------------------------------------------------------------------------------- /apps/keira/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/karma.conf.js -------------------------------------------------------------------------------- /apps/keira/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/main.ts -------------------------------------------------------------------------------- /apps/keira/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/tsconfig.app.json -------------------------------------------------------------------------------- /apps/keira/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/keira/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/apps/keira/src/typings.d.ts -------------------------------------------------------------------------------- /electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/electron-builder.json -------------------------------------------------------------------------------- /esbuild/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/esbuild/plugin.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/karma.conf.js -------------------------------------------------------------------------------- /libs/features/conditions/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/conditions/.eslintrc.json -------------------------------------------------------------------------------- /libs/features/conditions/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/conditions/karma.conf.js -------------------------------------------------------------------------------- /libs/features/conditions/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/conditions/project.json -------------------------------------------------------------------------------- /libs/features/conditions/src/conditions-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/conditions/src/conditions-handler.service.spec.ts -------------------------------------------------------------------------------- /libs/features/conditions/src/conditions-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/conditions/src/conditions-handler.service.ts -------------------------------------------------------------------------------- /libs/features/conditions/src/edit-conditions/conditions.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/conditions/src/edit-conditions/conditions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/conditions/src/edit-conditions/conditions.service.ts -------------------------------------------------------------------------------- /libs/features/conditions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/conditions/src/index.ts -------------------------------------------------------------------------------- /libs/features/conditions/src/select-conditions/select-conditions.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/conditions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/conditions/tsconfig.json -------------------------------------------------------------------------------- /libs/features/conditions/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/conditions/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features/conditions/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/conditions/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features/creature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/.eslintrc.json -------------------------------------------------------------------------------- /libs/features/creature/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/karma.conf.js -------------------------------------------------------------------------------- /libs/features/creature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/project.json -------------------------------------------------------------------------------- /libs/features/creature/src/creature-equip-template/creature-equip-template.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/creature/src/creature-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/creature-handler.service.spec.ts -------------------------------------------------------------------------------- /libs/features/creature/src/creature-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/creature-handler.service.ts -------------------------------------------------------------------------------- /libs/features/creature/src/creature-onkill-reputation/creature-onkill-reputation.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/creature/src/creature-questitem/creature-questitem.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/creature/src/creature-spawn-addon/creature-spawn-addon.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/creature/src/creature-spawn/creature-spawn.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/creature/src/creature-spawn/creature-spawn.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/creature-spawn/creature-spawn.service.ts -------------------------------------------------------------------------------- /libs/features/creature/src/creature-template-addon/creature-template-addon.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/creature/src/creature-text/creature-text.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/creature-text/creature-text.component.ts -------------------------------------------------------------------------------- /libs/features/creature/src/creature-text/creature-text.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/creature-text/creature-text.service.ts -------------------------------------------------------------------------------- /libs/features/creature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/index.ts -------------------------------------------------------------------------------- /libs/features/creature/src/npc-trainer/npc-trainer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/npc-trainer/npc-trainer.component.html -------------------------------------------------------------------------------- /libs/features/creature/src/npc-trainer/npc-trainer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/creature/src/npc-trainer/npc-trainer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/npc-trainer/npc-trainer.component.ts -------------------------------------------------------------------------------- /libs/features/creature/src/npc-trainer/npc-trainer.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/npc-trainer/npc-trainer.service.spec.ts -------------------------------------------------------------------------------- /libs/features/creature/src/npc-trainer/npc-trainer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/npc-trainer/npc-trainer.service.ts -------------------------------------------------------------------------------- /libs/features/creature/src/npc-vendor/npc-vendor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/npc-vendor/npc-vendor.component.html -------------------------------------------------------------------------------- /libs/features/creature/src/npc-vendor/npc-vendor.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/creature/src/npc-vendor/npc-vendor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/npc-vendor/npc-vendor.component.ts -------------------------------------------------------------------------------- /libs/features/creature/src/npc-vendor/npc-vendor.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/npc-vendor/npc-vendor.service.spec.ts -------------------------------------------------------------------------------- /libs/features/creature/src/npc-vendor/npc-vendor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/npc-vendor/npc-vendor.service.ts -------------------------------------------------------------------------------- /libs/features/creature/src/sai-creature-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/sai-creature-handler.service.ts -------------------------------------------------------------------------------- /libs/features/creature/src/sai-creature/sai-creature.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/creature/src/sai-creature/sai-creature.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/src/sai-creature/sai-creature.component.ts -------------------------------------------------------------------------------- /libs/features/creature/src/select-creature/select-creature.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/creature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/tsconfig.json -------------------------------------------------------------------------------- /libs/features/creature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features/creature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/creature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features/dashboard/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/dashboard/.eslintrc.json -------------------------------------------------------------------------------- /libs/features/dashboard/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/dashboard/karma.conf.js -------------------------------------------------------------------------------- /libs/features/dashboard/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/dashboard/project.json -------------------------------------------------------------------------------- /libs/features/dashboard/src/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/dashboard/src/dashboard.component.html -------------------------------------------------------------------------------- /libs/features/dashboard/src/dashboard.component.scss: -------------------------------------------------------------------------------- 1 | p { 2 | margin-bottom: 8px; 3 | } 4 | -------------------------------------------------------------------------------- /libs/features/dashboard/src/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/dashboard/src/dashboard.component.spec.ts -------------------------------------------------------------------------------- /libs/features/dashboard/src/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/dashboard/src/dashboard.component.ts -------------------------------------------------------------------------------- /libs/features/dashboard/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dashboard.component'; 2 | -------------------------------------------------------------------------------- /libs/features/dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/dashboard/tsconfig.json -------------------------------------------------------------------------------- /libs/features/dashboard/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/dashboard/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features/dashboard/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/dashboard/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features/game-tele/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/game-tele/.eslintrc.json -------------------------------------------------------------------------------- /libs/features/game-tele/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/game-tele/karma.conf.js -------------------------------------------------------------------------------- /libs/features/game-tele/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/game-tele/project.json -------------------------------------------------------------------------------- /libs/features/game-tele/src/edit-game-tele/game-tele.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/game-tele/src/edit-game-tele/game-tele.component.html -------------------------------------------------------------------------------- /libs/features/game-tele/src/edit-game-tele/game-tele.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/game-tele/src/edit-game-tele/game-tele.component.ts -------------------------------------------------------------------------------- /libs/features/game-tele/src/edit-game-tele/game-tele.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/game-tele/src/edit-game-tele/game-tele.service.ts -------------------------------------------------------------------------------- /libs/features/game-tele/src/game-tele-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/game-tele/src/game-tele-handler.service.spec.ts -------------------------------------------------------------------------------- /libs/features/game-tele/src/game-tele-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/game-tele/src/game-tele-handler.service.ts -------------------------------------------------------------------------------- /libs/features/game-tele/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/game-tele/src/index.ts -------------------------------------------------------------------------------- /libs/features/game-tele/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/game-tele/tsconfig.json -------------------------------------------------------------------------------- /libs/features/game-tele/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/game-tele/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features/game-tele/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/game-tele/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features/gameobject/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gameobject/.eslintrc.json -------------------------------------------------------------------------------- /libs/features/gameobject/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gameobject/karma.conf.js -------------------------------------------------------------------------------- /libs/features/gameobject/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gameobject/project.json -------------------------------------------------------------------------------- /libs/features/gameobject/src/gameobject-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gameobject/src/gameobject-handler.service.spec.ts -------------------------------------------------------------------------------- /libs/features/gameobject/src/gameobject-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gameobject/src/gameobject-handler.service.ts -------------------------------------------------------------------------------- /libs/features/gameobject/src/gameobject-loot-template/gameobject-loot-template.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/gameobject/src/gameobject-questitem/gameobject-questitem.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/gameobject/src/gameobject-template-addon/gameobject-template-addon.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/gameobject/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gameobject/src/index.ts -------------------------------------------------------------------------------- /libs/features/gameobject/src/sai-gameobject-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gameobject/src/sai-gameobject-handler.service.ts -------------------------------------------------------------------------------- /libs/features/gameobject/src/sai-gameobject/sai-gameobject.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/gameobject/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gameobject/tsconfig.json -------------------------------------------------------------------------------- /libs/features/gameobject/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gameobject/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features/gameobject/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gameobject/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features/gossip/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/.eslintrc.json -------------------------------------------------------------------------------- /libs/features/gossip/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/karma.conf.js -------------------------------------------------------------------------------- /libs/features/gossip/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/project.json -------------------------------------------------------------------------------- /libs/features/gossip/src/gossip-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/src/gossip-handler.service.spec.ts -------------------------------------------------------------------------------- /libs/features/gossip/src/gossip-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/src/gossip-handler.service.ts -------------------------------------------------------------------------------- /libs/features/gossip/src/gossip-menu/gossip-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/src/gossip-menu/gossip-menu.component.html -------------------------------------------------------------------------------- /libs/features/gossip/src/gossip-menu/gossip-menu.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/gossip/src/gossip-menu/gossip-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/src/gossip-menu/gossip-menu.component.ts -------------------------------------------------------------------------------- /libs/features/gossip/src/gossip-menu/gossip-menu.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/src/gossip-menu/gossip-menu.service.spec.ts -------------------------------------------------------------------------------- /libs/features/gossip/src/gossip-menu/gossip-menu.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/src/gossip-menu/gossip-menu.service.ts -------------------------------------------------------------------------------- /libs/features/gossip/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/src/index.ts -------------------------------------------------------------------------------- /libs/features/gossip/src/select-gossip/select-gossip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/src/select-gossip/select-gossip.component.html -------------------------------------------------------------------------------- /libs/features/gossip/src/select-gossip/select-gossip.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/gossip/src/select-gossip/select-gossip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/src/select-gossip/select-gossip.component.ts -------------------------------------------------------------------------------- /libs/features/gossip/src/select-gossip/select-gossip.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/src/select-gossip/select-gossip.service.ts -------------------------------------------------------------------------------- /libs/features/gossip/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/tsconfig.json -------------------------------------------------------------------------------- /libs/features/gossip/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features/gossip/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/gossip/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features/item/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/.eslintrc.json -------------------------------------------------------------------------------- /libs/features/item/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/karma.conf.js -------------------------------------------------------------------------------- /libs/features/item/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/project.json -------------------------------------------------------------------------------- /libs/features/item/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/index.ts -------------------------------------------------------------------------------- /libs/features/item/src/item-enchantment/item-enchantment-template.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/item/src/item-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/item-handler.service.spec.ts -------------------------------------------------------------------------------- /libs/features/item/src/item-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/item-handler.service.ts -------------------------------------------------------------------------------- /libs/features/item/src/item-template/item-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/item-template/item-constants.ts -------------------------------------------------------------------------------- /libs/features/item/src/item-template/item-preview.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/item-template/item-preview.service.spec.ts -------------------------------------------------------------------------------- /libs/features/item/src/item-template/item-preview.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/item-template/item-preview.service.ts -------------------------------------------------------------------------------- /libs/features/item/src/item-template/item-preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/item-template/item-preview.ts -------------------------------------------------------------------------------- /libs/features/item/src/item-template/item-template.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/item-template/item-template.component.html -------------------------------------------------------------------------------- /libs/features/item/src/item-template/item-template.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/item-template/item-template.component.scss -------------------------------------------------------------------------------- /libs/features/item/src/item-template/item-template.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/item-template/item-template.component.ts -------------------------------------------------------------------------------- /libs/features/item/src/item-template/item-template.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/item-template/item-template.service.spec.ts -------------------------------------------------------------------------------- /libs/features/item/src/item-template/item-template.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/item-template/item-template.service.ts -------------------------------------------------------------------------------- /libs/features/item/src/select-item/select-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/select-item/select-item.component.html -------------------------------------------------------------------------------- /libs/features/item/src/select-item/select-item.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/item/src/select-item/select-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/select-item/select-item.component.ts -------------------------------------------------------------------------------- /libs/features/item/src/select-item/select-item.integration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/select-item/select-item.integration.spec.ts -------------------------------------------------------------------------------- /libs/features/item/src/select-item/select-item.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/select-item/select-item.service.spec.ts -------------------------------------------------------------------------------- /libs/features/item/src/select-item/select-item.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/src/select-item/select-item.service.ts -------------------------------------------------------------------------------- /libs/features/item/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/tsconfig.json -------------------------------------------------------------------------------- /libs/features/item/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features/item/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/item/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features/other-loots/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/other-loots/.eslintrc.json -------------------------------------------------------------------------------- /libs/features/other-loots/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/other-loots/karma.conf.js -------------------------------------------------------------------------------- /libs/features/other-loots/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/other-loots/project.json -------------------------------------------------------------------------------- /libs/features/other-loots/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/other-loots/src/index.ts -------------------------------------------------------------------------------- /libs/features/other-loots/src/mail-loot/select-mail-loot.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/other-loots/src/mail-loot/select-mail-loot.service.ts -------------------------------------------------------------------------------- /libs/features/other-loots/src/select-loot.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/other-loots/src/select-loot.component.html -------------------------------------------------------------------------------- /libs/features/other-loots/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/other-loots/tsconfig.json -------------------------------------------------------------------------------- /libs/features/other-loots/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/other-loots/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features/other-loots/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/other-loots/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features/quest/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/.eslintrc.json -------------------------------------------------------------------------------- /libs/features/quest/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/karma.conf.js -------------------------------------------------------------------------------- /libs/features/quest/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/project.json -------------------------------------------------------------------------------- /libs/features/quest/src/creature-questender/creature-questender.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/quest/src/creature-queststarter/creature-queststarter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/quest/src/gameobject-questender/gameobject-questender.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/quest/src/gameobject-queststarter/gameobject-queststarter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/quest/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/index.ts -------------------------------------------------------------------------------- /libs/features/quest/src/quest-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/quest-handler.service.spec.ts -------------------------------------------------------------------------------- /libs/features/quest/src/quest-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/quest-handler.service.ts -------------------------------------------------------------------------------- /libs/features/quest/src/quest-offer-reward/quest-offer-reward.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/quest/src/quest-preview/quest-preview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/quest-preview/quest-preview.component.html -------------------------------------------------------------------------------- /libs/features/quest/src/quest-preview/quest-preview.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/quest-preview/quest-preview.component.scss -------------------------------------------------------------------------------- /libs/features/quest/src/quest-preview/quest-preview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/quest-preview/quest-preview.component.ts -------------------------------------------------------------------------------- /libs/features/quest/src/quest-preview/quest-preview.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/quest-preview/quest-preview.model.ts -------------------------------------------------------------------------------- /libs/features/quest/src/quest-preview/quest-preview.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/quest-preview/quest-preview.service.spec.ts -------------------------------------------------------------------------------- /libs/features/quest/src/quest-preview/quest-preview.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/quest-preview/quest-preview.service.ts -------------------------------------------------------------------------------- /libs/features/quest/src/quest-request-items/quest-request-items.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/quest/src/quest-template-addon/quest-template-addon.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/quest/src/quest-template/quest-template.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/quest/src/quest-template/quest-template.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/quest-template/quest-template.component.ts -------------------------------------------------------------------------------- /libs/features/quest/src/quest-template/quest-template.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/quest-template/quest-template.service.ts -------------------------------------------------------------------------------- /libs/features/quest/src/select-quest/select-quest.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/select-quest/select-quest.component.html -------------------------------------------------------------------------------- /libs/features/quest/src/select-quest/select-quest.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/quest/src/select-quest/select-quest.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/select-quest/select-quest.component.ts -------------------------------------------------------------------------------- /libs/features/quest/src/select-quest/select-quest.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/select-quest/select-quest.service.spec.ts -------------------------------------------------------------------------------- /libs/features/quest/src/select-quest/select-quest.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/src/select-quest/select-quest.service.ts -------------------------------------------------------------------------------- /libs/features/quest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/tsconfig.json -------------------------------------------------------------------------------- /libs/features/quest/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features/quest/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/quest/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features/smart-scripts/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/smart-scripts/.eslintrc.json -------------------------------------------------------------------------------- /libs/features/smart-scripts/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/smart-scripts/karma.conf.js -------------------------------------------------------------------------------- /libs/features/smart-scripts/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/smart-scripts/project.json -------------------------------------------------------------------------------- /libs/features/smart-scripts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/smart-scripts/src/index.ts -------------------------------------------------------------------------------- /libs/features/smart-scripts/src/sai-full-editor/sai-full-editor.component.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/features/smart-scripts/src/sai-full-editor/sai-full-editor.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/smart-scripts/src/sai-search-entity/sai-search-entity.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/smart-scripts/src/sai-search-existing/sai-search-existing.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/features/smart-scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/smart-scripts/tsconfig.json -------------------------------------------------------------------------------- /libs/features/smart-scripts/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/smart-scripts/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features/smart-scripts/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/smart-scripts/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features/spell/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/.eslintrc.json -------------------------------------------------------------------------------- /libs/features/spell/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/karma.conf.js -------------------------------------------------------------------------------- /libs/features/spell/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/project.json -------------------------------------------------------------------------------- /libs/features/spell/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/src/index.ts -------------------------------------------------------------------------------- /libs/features/spell/src/select-spell/select-spell.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/src/select-spell/select-spell.component.html -------------------------------------------------------------------------------- /libs/features/spell/src/select-spell/select-spell.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/src/select-spell/select-spell.component.ts -------------------------------------------------------------------------------- /libs/features/spell/src/select-spell/select-spell.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/src/select-spell/select-spell.service.spec.ts -------------------------------------------------------------------------------- /libs/features/spell/src/select-spell/select-spell.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/src/select-spell/select-spell.service.ts -------------------------------------------------------------------------------- /libs/features/spell/src/spell-dbc/base/spell-dbc-base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/src/spell-dbc/base/spell-dbc-base.component.ts -------------------------------------------------------------------------------- /libs/features/spell/src/spell-dbc/misc/spell-dbc-misc.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/src/spell-dbc/misc/spell-dbc-misc.component.ts -------------------------------------------------------------------------------- /libs/features/spell/src/spell-dbc/spell-dbc.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/src/spell-dbc/spell-dbc.component.html -------------------------------------------------------------------------------- /libs/features/spell/src/spell-dbc/spell-dbc.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/src/spell-dbc/spell-dbc.component.ts -------------------------------------------------------------------------------- /libs/features/spell/src/spell-dbc/spell-dbc.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/src/spell-dbc/spell-dbc.service.spec.ts -------------------------------------------------------------------------------- /libs/features/spell/src/spell-dbc/spell-dbc.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/src/spell-dbc/spell-dbc.service.ts -------------------------------------------------------------------------------- /libs/features/spell/src/spell-dbc/texts/spell-dbc-texts.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/src/spell-dbc/texts/spell-dbc-texts.model.ts -------------------------------------------------------------------------------- /libs/features/spell/src/spell-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/src/spell-handler.service.spec.ts -------------------------------------------------------------------------------- /libs/features/spell/src/spell-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/src/spell-handler.service.ts -------------------------------------------------------------------------------- /libs/features/spell/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/tsconfig.json -------------------------------------------------------------------------------- /libs/features/spell/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features/spell/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/spell/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features/sql-editor/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/sql-editor/.eslintrc.json -------------------------------------------------------------------------------- /libs/features/sql-editor/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/sql-editor/karma.conf.js -------------------------------------------------------------------------------- /libs/features/sql-editor/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/sql-editor/project.json -------------------------------------------------------------------------------- /libs/features/sql-editor/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './sql-editor.component'; 2 | -------------------------------------------------------------------------------- /libs/features/sql-editor/src/sql-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/sql-editor/src/sql-editor.component.html -------------------------------------------------------------------------------- /libs/features/sql-editor/src/sql-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/sql-editor/src/sql-editor.component.scss -------------------------------------------------------------------------------- /libs/features/sql-editor/src/sql-editor.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/sql-editor/src/sql-editor.component.spec.ts -------------------------------------------------------------------------------- /libs/features/sql-editor/src/sql-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/sql-editor/src/sql-editor.component.ts -------------------------------------------------------------------------------- /libs/features/sql-editor/src/sql-editor.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/sql-editor/src/sql-editor.service.spec.ts -------------------------------------------------------------------------------- /libs/features/sql-editor/src/sql-editor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/sql-editor/src/sql-editor.service.ts -------------------------------------------------------------------------------- /libs/features/sql-editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/sql-editor/tsconfig.json -------------------------------------------------------------------------------- /libs/features/sql-editor/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/sql-editor/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features/sql-editor/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/sql-editor/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features/texts/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/.eslintrc.json -------------------------------------------------------------------------------- /libs/features/texts/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/karma.conf.js -------------------------------------------------------------------------------- /libs/features/texts/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/project.json -------------------------------------------------------------------------------- /libs/features/texts/src/acore-string/acore-string.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/acore-string/acore-string.component.html -------------------------------------------------------------------------------- /libs/features/texts/src/acore-string/acore-string.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/acore-string/acore-string.component.ts -------------------------------------------------------------------------------- /libs/features/texts/src/acore-string/acore-string.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/acore-string/acore-string.service.spec.ts -------------------------------------------------------------------------------- /libs/features/texts/src/acore-string/acore-string.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/acore-string/acore-string.service.ts -------------------------------------------------------------------------------- /libs/features/texts/src/acore-string/select-acore-string.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/acore-string/select-acore-string.service.ts -------------------------------------------------------------------------------- /libs/features/texts/src/broadcast-text/broadcast-text.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/broadcast-text/broadcast-text.component.ts -------------------------------------------------------------------------------- /libs/features/texts/src/broadcast-text/broadcast-text.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/broadcast-text/broadcast-text.service.ts -------------------------------------------------------------------------------- /libs/features/texts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/index.ts -------------------------------------------------------------------------------- /libs/features/texts/src/npc-text/npc-text-fields-group.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/npc-text/npc-text-fields-group.component.ts -------------------------------------------------------------------------------- /libs/features/texts/src/npc-text/npc-text-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/npc-text/npc-text-handler.service.ts -------------------------------------------------------------------------------- /libs/features/texts/src/npc-text/npc-text.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/npc-text/npc-text.component.html -------------------------------------------------------------------------------- /libs/features/texts/src/npc-text/npc-text.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/npc-text/npc-text.component.ts -------------------------------------------------------------------------------- /libs/features/texts/src/npc-text/npc-text.integration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/npc-text/npc-text.integration.spec.ts -------------------------------------------------------------------------------- /libs/features/texts/src/npc-text/npc-text.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/npc-text/npc-text.service.spec.ts -------------------------------------------------------------------------------- /libs/features/texts/src/npc-text/npc-text.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/npc-text/npc-text.service.ts -------------------------------------------------------------------------------- /libs/features/texts/src/npc-text/select-npc-text.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/npc-text/select-npc-text.component.html -------------------------------------------------------------------------------- /libs/features/texts/src/npc-text/select-npc-text.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/npc-text/select-npc-text.component.ts -------------------------------------------------------------------------------- /libs/features/texts/src/npc-text/select-npc-text.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/npc-text/select-npc-text.service.spec.ts -------------------------------------------------------------------------------- /libs/features/texts/src/npc-text/select-npc-text.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/npc-text/select-npc-text.service.ts -------------------------------------------------------------------------------- /libs/features/texts/src/page-text/page-text-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/page-text/page-text-handler.service.ts -------------------------------------------------------------------------------- /libs/features/texts/src/page-text/page-text.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/page-text/page-text.component.html -------------------------------------------------------------------------------- /libs/features/texts/src/page-text/page-text.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/page-text/page-text.component.ts -------------------------------------------------------------------------------- /libs/features/texts/src/page-text/page-text.integration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/page-text/page-text.integration.spec.ts -------------------------------------------------------------------------------- /libs/features/texts/src/page-text/page-text.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/page-text/page-text.service.spec.ts -------------------------------------------------------------------------------- /libs/features/texts/src/page-text/page-text.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/page-text/page-text.service.ts -------------------------------------------------------------------------------- /libs/features/texts/src/page-text/select-page-text.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/page-text/select-page-text.component.ts -------------------------------------------------------------------------------- /libs/features/texts/src/page-text/select-page-text.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/src/page-text/select-page-text.service.ts -------------------------------------------------------------------------------- /libs/features/texts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/tsconfig.json -------------------------------------------------------------------------------- /libs/features/texts/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features/texts/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/texts/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features/unused-guid-search/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/unused-guid-search/.eslintrc.json -------------------------------------------------------------------------------- /libs/features/unused-guid-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/unused-guid-search/README.md -------------------------------------------------------------------------------- /libs/features/unused-guid-search/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/unused-guid-search/karma.conf.js -------------------------------------------------------------------------------- /libs/features/unused-guid-search/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/unused-guid-search/project.json -------------------------------------------------------------------------------- /libs/features/unused-guid-search/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './unused-guid-search.component'; 2 | -------------------------------------------------------------------------------- /libs/features/unused-guid-search/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/unused-guid-search/tsconfig.json -------------------------------------------------------------------------------- /libs/features/unused-guid-search/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/unused-guid-search/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features/unused-guid-search/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/features/unused-guid-search/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/main/connection-window/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/connection-window/.eslintrc.json -------------------------------------------------------------------------------- /libs/main/connection-window/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/connection-window/karma.conf.js -------------------------------------------------------------------------------- /libs/main/connection-window/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/connection-window/project.json -------------------------------------------------------------------------------- /libs/main/connection-window/src/connection-window.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/connection-window/src/connection-window.component.html -------------------------------------------------------------------------------- /libs/main/connection-window/src/connection-window.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/connection-window/src/connection-window.component.scss -------------------------------------------------------------------------------- /libs/main/connection-window/src/connection-window.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/connection-window/src/connection-window.component.ts -------------------------------------------------------------------------------- /libs/main/connection-window/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './connection-window.component'; 2 | -------------------------------------------------------------------------------- /libs/main/connection-window/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/connection-window/tsconfig.json -------------------------------------------------------------------------------- /libs/main/connection-window/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/connection-window/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/main/connection-window/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/connection-window/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/main/main-window/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/.eslintrc.json -------------------------------------------------------------------------------- /libs/main/main-window/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/karma.conf.js -------------------------------------------------------------------------------- /libs/main/main-window/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/project.json -------------------------------------------------------------------------------- /libs/main/main-window/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main-window.component'; 2 | -------------------------------------------------------------------------------- /libs/main/main-window/src/main-window.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/src/main-window.component.html -------------------------------------------------------------------------------- /libs/main/main-window/src/main-window.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/main/main-window/src/main-window.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/src/main-window.component.spec.ts -------------------------------------------------------------------------------- /libs/main/main-window/src/main-window.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/src/main-window.component.ts -------------------------------------------------------------------------------- /libs/main/main-window/src/sidebar/logout-btn/logout-btn.component.scss: -------------------------------------------------------------------------------- 1 | button.btn-sm { 2 | font-size: 0.7rem; 3 | margin-top: 6px; 4 | } 5 | -------------------------------------------------------------------------------- /libs/main/main-window/src/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/src/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /libs/main/main-window/src/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/src/sidebar/sidebar.component.scss -------------------------------------------------------------------------------- /libs/main/main-window/src/sidebar/sidebar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/src/sidebar/sidebar.component.spec.ts -------------------------------------------------------------------------------- /libs/main/main-window/src/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/src/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /libs/main/main-window/src/sidebar/sidebar.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/src/sidebar/sidebar.service.spec.ts -------------------------------------------------------------------------------- /libs/main/main-window/src/sidebar/sidebar.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/src/sidebar/sidebar.service.ts -------------------------------------------------------------------------------- /libs/main/main-window/src/sidebar/unsaved-icon/unsaved-icon.component.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/main/main-window/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/tsconfig.json -------------------------------------------------------------------------------- /libs/main/main-window/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/main/main-window/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/main/main-window/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/acore-world-model/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/acore-world-model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/README.md -------------------------------------------------------------------------------- /libs/shared/acore-world-model/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/project.json -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/acore-text.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/acore-text.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/area.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/area.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/conditions.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/conditions.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/creature-text.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/creature-text.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/faction.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/faction.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/game-tele.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/game-tele.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/gossip-menu.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/gossip-menu.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/holiday.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/holiday.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/item-template.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/item-template.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/language.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/language.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/lock.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/lock.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/loot-template.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/loot-template.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/map.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/map.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/npc-text.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/npc-text.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/npc-trainer.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/npc-trainer.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/npc-vendor.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/npc-vendor.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/page-text.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/page-text.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/skill.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/skill.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/smart-scripts.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/smart-scripts.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/sound-entries.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/sound-entries.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/spell-dbc.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/spell-dbc.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/entities/spell.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/entities/spell.type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/allowable-classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/allowable-classes.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/allowable-races.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/allowable-races.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/bag-family.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/bag-family.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/conditions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/conditions.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/creature-type-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/creature-type-flags.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/dynamic-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/dynamic-flags.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/event-phase-mask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/event-phase-mask.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/flags-extra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/flags-extra.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/gameobject-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/gameobject-flags.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/item-flags-custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/item-flags-custom.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/item-flags-extra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/item-flags-extra.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/item-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/item-flags.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/loot-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/loot-mode.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/mechanic-immune-mask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/mechanic-immune-mask.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/npc-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/npc-flags.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/phase-mask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/phase-mask.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/quest-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/quest-flags.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/smart-event-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/smart-event-flags.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/socket-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/socket-color.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/spawn-mask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/spawn-mask.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/special-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/special-flags.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/spell-dbc-flags-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/spell-dbc-flags-flags.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/spell-dbc-item-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/spell-dbc-item-flags.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/spell-school-mask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/spell-school-mask.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/unit-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/unit-flags.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/flags/unit-flags2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/flags/unit-flags2.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/index.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/conditions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/conditions.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/creature-ai-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/creature-ai-name.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/creature-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/creature-class.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/creature-family.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/creature-family.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/creature-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/creature-icon.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/creature-race.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/creature-race.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/creature-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/creature-type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/damage-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/damage-type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/dispel-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/dispel-type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/emote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/emote.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/expansion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/expansion.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/faction-rank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/faction-rank.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/foot-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/foot-type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/gameobject-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/gameobject-icon.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/gameobject-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/gameobject-type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/gossip-option-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/gossip-option-icon.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/gossip-option-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/gossip-option-type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/inventory-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/inventory-type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/invisibility-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/invisibility-type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/item-bonding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/item-bonding.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/item-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/item-class.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/item-honorrank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/item-honorrank.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/item-material.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/item-material.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/item-quality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/item-quality.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/item-sheath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/item-sheath.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/movement-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/movement-type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/quest-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/quest-info.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/quest-locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/quest-locale.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/quest-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/quest-type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/rank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/rank.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/spell-mechanic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/spell-mechanic.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/stat-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/stat-type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/text-range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/text-range.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/text-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/text-type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/totem-category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/totem-category.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/trainer-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/trainer-type.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/src/options/unit-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/src/options/unit-class.ts -------------------------------------------------------------------------------- /libs/shared/acore-world-model/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/acore-world-model/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/acore-world-model/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/base-abstract-classes/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-abstract-classes/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/base-abstract-classes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-abstract-classes/README.md -------------------------------------------------------------------------------- /libs/shared/base-abstract-classes/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-abstract-classes/karma.conf.js -------------------------------------------------------------------------------- /libs/shared/base-abstract-classes/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-abstract-classes/project.json -------------------------------------------------------------------------------- /libs/shared/base-abstract-classes/src/core.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-abstract-classes/src/core.mock.ts -------------------------------------------------------------------------------- /libs/shared/base-abstract-classes/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-abstract-classes/src/index.ts -------------------------------------------------------------------------------- /libs/shared/base-abstract-classes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-abstract-classes/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/base-abstract-classes/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-abstract-classes/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/base-abstract-classes/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-abstract-classes/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/base-editor-components/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-editor-components/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/base-editor-components/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-editor-components/karma.conf.js -------------------------------------------------------------------------------- /libs/shared/base-editor-components/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-editor-components/project.json -------------------------------------------------------------------------------- /libs/shared/base-editor-components/src/icon/icon.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-editor-components/src/icon/icon.component.html -------------------------------------------------------------------------------- /libs/shared/base-editor-components/src/icon/icon.component.scss: -------------------------------------------------------------------------------- 1 | img { 2 | border-radius: 0.2em; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/base-editor-components/src/icon/icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-editor-components/src/icon/icon.component.ts -------------------------------------------------------------------------------- /libs/shared/base-editor-components/src/icon/icon.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-editor-components/src/icon/icon.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/base-editor-components/src/icon/icon.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-editor-components/src/icon/icon.service.ts -------------------------------------------------------------------------------- /libs/shared/base-editor-components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-editor-components/src/index.ts -------------------------------------------------------------------------------- /libs/shared/base-editor-components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-editor-components/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/base-editor-components/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-editor-components/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/base-editor-components/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/base-editor-components/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/common-services/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/common-services/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/common-services/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/common-services/karma.conf.js -------------------------------------------------------------------------------- /libs/shared/common-services/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/common-services/project.json -------------------------------------------------------------------------------- /libs/shared/common-services/src/config.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/common-services/src/config.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/common-services/src/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/common-services/src/config.service.ts -------------------------------------------------------------------------------- /libs/shared/common-services/src/electron.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/common-services/src/electron.service.ts -------------------------------------------------------------------------------- /libs/shared/common-services/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/common-services/src/index.ts -------------------------------------------------------------------------------- /libs/shared/common-services/src/location.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/common-services/src/location.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/common-services/src/location.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/common-services/src/location.service.ts -------------------------------------------------------------------------------- /libs/shared/common-services/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/common-services/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/common-services/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/common-services/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/common-services/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/common-services/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/config/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/config/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/config/README.md -------------------------------------------------------------------------------- /libs/shared/config/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/config/project.json -------------------------------------------------------------------------------- /libs/shared/config/src/app.config.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/config/src/app.config.mock.ts -------------------------------------------------------------------------------- /libs/shared/config/src/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/config/src/app.config.ts -------------------------------------------------------------------------------- /libs/shared/config/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/config/src/index.ts -------------------------------------------------------------------------------- /libs/shared/config/src/lib/datatable.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/config/src/lib/datatable.config.ts -------------------------------------------------------------------------------- /libs/shared/config/src/lib/highlight.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/config/src/lib/highlight.config.ts -------------------------------------------------------------------------------- /libs/shared/config/src/lib/squel.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/config/src/lib/squel.config.ts -------------------------------------------------------------------------------- /libs/shared/config/src/lib/toastr.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/config/src/lib/toastr.config.ts -------------------------------------------------------------------------------- /libs/shared/config/src/lib/ui-switch.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/config/src/lib/ui-switch.config.ts -------------------------------------------------------------------------------- /libs/shared/config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/config/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/config/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/config/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/constants/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/constants/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/constants/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/constants/README.md -------------------------------------------------------------------------------- /libs/shared/constants/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/constants/project.json -------------------------------------------------------------------------------- /libs/shared/constants/src/constants/gameobject-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/constants/src/constants/gameobject-types.ts -------------------------------------------------------------------------------- /libs/shared/constants/src/constants/general.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/constants/src/constants/general.ts -------------------------------------------------------------------------------- /libs/shared/constants/src/constants/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/constants/src/constants/preview.ts -------------------------------------------------------------------------------- /libs/shared/constants/src/constants/quest-preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/constants/src/constants/quest-preview.ts -------------------------------------------------------------------------------- /libs/shared/constants/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/constants/src/index.ts -------------------------------------------------------------------------------- /libs/shared/constants/src/types/general.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/constants/src/types/general.ts -------------------------------------------------------------------------------- /libs/shared/constants/src/types/quest-reputation-reward.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/constants/src/types/quest-reputation-reward.ts -------------------------------------------------------------------------------- /libs/shared/constants/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/constants/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/constants/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/constants/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/db-layer/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/db-layer/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/karma.conf.js -------------------------------------------------------------------------------- /libs/shared/db-layer/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/project.json -------------------------------------------------------------------------------- /libs/shared/db-layer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/src/index.ts -------------------------------------------------------------------------------- /libs/shared/db-layer/src/mysql.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/src/mysql.model.ts -------------------------------------------------------------------------------- /libs/shared/db-layer/src/mysql.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/src/mysql.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/db-layer/src/mysql.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/src/mysql.service.ts -------------------------------------------------------------------------------- /libs/shared/db-layer/src/query/base-query.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/src/query/base-query.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/db-layer/src/query/base-query.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/src/query/base-query.service.ts -------------------------------------------------------------------------------- /libs/shared/db-layer/src/query/mysql-query.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/src/query/mysql-query.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/db-layer/src/query/mysql-query.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/src/query/mysql-query.service.ts -------------------------------------------------------------------------------- /libs/shared/db-layer/src/query/sqlite-query.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/src/query/sqlite-query.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/db-layer/src/query/sqlite-query.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/src/query/sqlite-query.service.ts -------------------------------------------------------------------------------- /libs/shared/db-layer/src/sqlite.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/src/sqlite.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/db-layer/src/sqlite.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/src/sqlite.service.ts -------------------------------------------------------------------------------- /libs/shared/db-layer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/db-layer/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/db-layer/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/db-layer/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/login-config/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/login-config/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/login-config/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/login-config/karma.conf.js -------------------------------------------------------------------------------- /libs/shared/login-config/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/login-config/project.json -------------------------------------------------------------------------------- /libs/shared/login-config/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/login-config/src/index.ts -------------------------------------------------------------------------------- /libs/shared/login-config/src/local-storage.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/login-config/src/local-storage.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/login-config/src/local-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/login-config/src/local-storage.service.ts -------------------------------------------------------------------------------- /libs/shared/login-config/src/login-config.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/login-config/src/login-config.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/login-config/src/login-config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/login-config/src/login-config.service.ts -------------------------------------------------------------------------------- /libs/shared/login-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/login-config/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/login-config/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/login-config/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/login-config/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/login-config/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/loot-editor/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/loot-editor/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/karma.conf.js -------------------------------------------------------------------------------- /libs/shared/loot-editor/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/project.json -------------------------------------------------------------------------------- /libs/shared/loot-editor/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/src/index.ts -------------------------------------------------------------------------------- /libs/shared/loot-editor/src/loot-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/src/loot-editor.component.html -------------------------------------------------------------------------------- /libs/shared/loot-editor/src/loot-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/src/loot-editor.component.scss -------------------------------------------------------------------------------- /libs/shared/loot-editor/src/loot-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/src/loot-editor.component.ts -------------------------------------------------------------------------------- /libs/shared/loot-editor/src/reference-viewer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/src/reference-viewer.component.html -------------------------------------------------------------------------------- /libs/shared/loot-editor/src/reference-viewer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/src/reference-viewer.component.spec.ts -------------------------------------------------------------------------------- /libs/shared/loot-editor/src/reference-viewer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/src/reference-viewer.component.ts -------------------------------------------------------------------------------- /libs/shared/loot-editor/src/reference-viewer.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/src/reference-viewer.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/loot-editor/src/reference-viewer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/src/reference-viewer.service.ts -------------------------------------------------------------------------------- /libs/shared/loot-editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/loot-editor/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/loot-editor/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/loot-editor/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/model-3d-viewer/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/model-3d-viewer/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/model-3d-viewer/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/model-3d-viewer/karma.conf.js -------------------------------------------------------------------------------- /libs/shared/model-3d-viewer/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/model-3d-viewer/project.json -------------------------------------------------------------------------------- /libs/shared/model-3d-viewer/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/model-3d-viewer/src/helper.ts -------------------------------------------------------------------------------- /libs/shared/model-3d-viewer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/model-3d-viewer/src/index.ts -------------------------------------------------------------------------------- /libs/shared/model-3d-viewer/src/model-3d-viewer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/model-3d-viewer/src/model-3d-viewer.component.html -------------------------------------------------------------------------------- /libs/shared/model-3d-viewer/src/model-3d-viewer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/model-3d-viewer/src/model-3d-viewer.component.scss -------------------------------------------------------------------------------- /libs/shared/model-3d-viewer/src/model-3d-viewer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/model-3d-viewer/src/model-3d-viewer.component.ts -------------------------------------------------------------------------------- /libs/shared/model-3d-viewer/src/model-3d-viewer.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/model-3d-viewer/src/model-3d-viewer.model.ts -------------------------------------------------------------------------------- /libs/shared/model-3d-viewer/src/model-3d-viewer.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/model-3d-viewer/src/model-3d-viewer.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/model-3d-viewer/src/model-3d-viewer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/model-3d-viewer/src/model-3d-viewer.service.ts -------------------------------------------------------------------------------- /libs/shared/model-3d-viewer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/model-3d-viewer/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/model-3d-viewer/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/model-3d-viewer/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/model-3d-viewer/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/model-3d-viewer/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/preview/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/preview/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/preview/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/preview/karma.conf.js -------------------------------------------------------------------------------- /libs/shared/preview/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/preview/project.json -------------------------------------------------------------------------------- /libs/shared/preview/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/preview/src/index.ts -------------------------------------------------------------------------------- /libs/shared/preview/src/preview-helper.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/preview/src/preview-helper.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/preview/src/preview-helper.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/preview/src/preview-helper.service.ts -------------------------------------------------------------------------------- /libs/shared/preview/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/preview/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/preview/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/preview/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/preview/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/preview/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/sai-editor/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/sai-editor/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/karma.conf.js -------------------------------------------------------------------------------- /libs/shared/sai-editor/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/project.json -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/constants/sai-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/constants/sai-actions.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/constants/sai-comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/constants/sai-comments.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/constants/sai-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/constants/sai-constants.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/constants/sai-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/constants/sai-event.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/constants/sai-targets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/constants/sai-targets.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/index.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/sai-comment-generator.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/sai-comment-generator.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/sai-comment-generator.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/sai-comment-generator.service.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/sai-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/sai-editor.component.html -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/sai-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/sai-editor.component.scss -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/sai-editor.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/sai-editor.component.spec.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/sai-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/sai-editor.component.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/sai-editor.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/sai-editor.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/sai-editor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/sai-editor.service.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/sai-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/sai-handler.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/sai-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/sai-handler.service.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/sai-top-bar/sai-top-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/src/sai-top-bar/sai-top-bar.component.ts -------------------------------------------------------------------------------- /libs/shared/sai-editor/src/timed-actionlist/timed-actionlist.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/sai-editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/sai-editor/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/sai-editor/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/sai-editor/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/selectors/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/selectors/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/karma.conf.js -------------------------------------------------------------------------------- /libs/shared/selectors/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/project.json -------------------------------------------------------------------------------- /libs/shared/selectors/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/index.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/area-search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/area-search.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/area-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/area-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/conditions-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/conditions-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/creature-search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/creature-search.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/creature-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/creature-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/faction-search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/faction-search.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/faction-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/faction-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/game-tele-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/game-tele-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/gameobject-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/gameobject-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/holiday-search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/holiday-search.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/holiday-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/holiday-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/item-search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/item-search.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/item-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/item-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/language-search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/language-search.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/language-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/language-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/map-search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/map-search.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/map-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/map-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/npc-text-search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/npc-text-search.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/npc-text-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/npc-text-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/quest-search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/quest-search.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/quest-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/quest-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/sai-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/sai-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/skill-search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/skill-search.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/skill-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/skill-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/sound-entries-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/sound-entries-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/spell-search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/spell-search.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/search/spell-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/src/search/spell-search.service.ts -------------------------------------------------------------------------------- /libs/shared/selectors/src/selectors/base-selector/base-selector.model.ts: -------------------------------------------------------------------------------- 1 | export interface BaseModalConfig { 2 | name: string; 3 | } 4 | -------------------------------------------------------------------------------- /libs/shared/selectors/src/selectors/flags-selector/flags-selector-modal.component.scss: -------------------------------------------------------------------------------- 1 | .table-wrapper { 2 | max-height: 70vh; 3 | overflow-y: auto; 4 | } 5 | -------------------------------------------------------------------------------- /libs/shared/selectors/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/selectors/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/selectors/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/selectors/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/switch-language/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/switch-language/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/switch-language/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/switch-language/karma.conf.js -------------------------------------------------------------------------------- /libs/shared/switch-language/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/switch-language/project.json -------------------------------------------------------------------------------- /libs/shared/switch-language/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/switch-language/src/index.ts -------------------------------------------------------------------------------- /libs/shared/switch-language/src/switch-language.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/switch-language/src/switch-language.component.html -------------------------------------------------------------------------------- /libs/shared/switch-language/src/switch-language.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/switch-language/src/switch-language.component.scss -------------------------------------------------------------------------------- /libs/shared/switch-language/src/switch-language.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/switch-language/src/switch-language.component.ts -------------------------------------------------------------------------------- /libs/shared/switch-language/src/switch-language.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/switch-language/src/switch-language.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/switch-language/src/switch-language.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/switch-language/src/switch-language.service.ts -------------------------------------------------------------------------------- /libs/shared/switch-language/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/switch-language/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/switch-language/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/switch-language/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/switch-language/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/switch-language/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/test-utils/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/test-utils/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/test-utils/README.md: -------------------------------------------------------------------------------- 1 | # @keira/shared/test-utils 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/shared/test-utils/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/test-utils/project.json -------------------------------------------------------------------------------- /libs/shared/test-utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/test-utils/src/index.ts -------------------------------------------------------------------------------- /libs/shared/test-utils/src/lib/editor-page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/test-utils/src/lib/editor-page-object.ts -------------------------------------------------------------------------------- /libs/shared/test-utils/src/lib/keira-page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/test-utils/src/lib/keira-page-object.ts -------------------------------------------------------------------------------- /libs/shared/test-utils/src/lib/multi-row-editor-page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/test-utils/src/lib/multi-row-editor-page-object.ts -------------------------------------------------------------------------------- /libs/shared/test-utils/src/lib/query-output-page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/test-utils/src/lib/query-output-page-object.ts -------------------------------------------------------------------------------- /libs/shared/test-utils/src/lib/select-page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/test-utils/src/lib/select-page-object.ts -------------------------------------------------------------------------------- /libs/shared/test-utils/src/lib/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/test-utils/src/lib/test-helpers.ts -------------------------------------------------------------------------------- /libs/shared/test-utils/src/lib/translate-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/test-utils/src/lib/translate-module.ts -------------------------------------------------------------------------------- /libs/shared/test-utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/test-utils/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/test-utils/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/test-utils/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/utils/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/utils/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/utils/README.md: -------------------------------------------------------------------------------- 1 | # utils 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/shared/utils/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/utils/karma.conf.js -------------------------------------------------------------------------------- /libs/shared/utils/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/utils/project.json -------------------------------------------------------------------------------- /libs/shared/utils/src/helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/utils/src/helpers.spec.ts -------------------------------------------------------------------------------- /libs/shared/utils/src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/utils/src/helpers.ts -------------------------------------------------------------------------------- /libs/shared/utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/utils/src/index.ts -------------------------------------------------------------------------------- /libs/shared/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/utils/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/utils/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/utils/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/utils/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/libs/shared/utils/tsconfig.spec.json -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/main.ts -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/renovate.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/screenshot.png -------------------------------------------------------------------------------- /scripts/sync_i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/scripts/sync_i18n.py -------------------------------------------------------------------------------- /tsconfig-serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/tsconfig-serve.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/Keira3/HEAD/tsconfig.base.json --------------------------------------------------------------------------------