@jjlmoya/utils-tabletop 1.32.0 → 1.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/category/i18n/de.ts +1 -1
- package/src/category/i18n/es.ts +1 -1
- package/src/category/i18n/fr.ts +1 -1
- package/src/category/i18n/id.ts +1 -1
- package/src/category/i18n/it.ts +1 -1
- package/src/category/i18n/nl.ts +1 -1
- package/src/category/i18n/pl.ts +1 -1
- package/src/category/i18n/pt.ts +1 -1
- package/src/category/i18n/ru.ts +1 -1
- package/src/category/i18n/sv.ts +1 -1
- package/src/category/i18n/tr.ts +1 -1
- package/src/category/index.ts +25 -25
- package/src/components/PreviewNavSidebar.astro +1 -1
- package/src/components/PreviewToolbar.astro +1 -1
- package/src/entries.ts +43 -43
- package/src/env.d.ts +1 -1
- package/src/index.ts +24 -24
- package/src/layouts/PreviewLayout.astro +93 -93
- package/src/pages/[locale]/[slug].astro +143 -143
- package/src/pages/index.astro +1 -1
- package/src/tests/bibliography_wellformed_export.test.ts +46 -0
- package/src/tests/category_seo_quality.test.ts +74 -0
- package/src/tests/i18n_coverage.test.ts +36 -36
- package/src/tests/mocks/astro_mock.js +1 -1
- package/src/tests/no_em_dash.test.ts +47 -47
- package/src/tests/no_en_dash.test.ts +70 -70
- package/src/tests/seo_length.test.ts +3 -3
- package/src/tests/seo_parity.test.ts +2 -2
- package/src/tests/seo_wellformed_export.test.ts +65 -0
- package/src/tests/spanish_leakage.test.ts +175 -175
- package/src/tool/dungeon-map-generator/component.astro +135 -135
- package/src/tool/dungeon-map-generator/controller.ts +243 -243
- package/src/tool/dungeon-map-generator/dom-views.ts +144 -144
- package/src/tool/dungeon-map-generator/i18n/de.ts +172 -172
- package/src/tool/dungeon-map-generator/logic.ts +281 -281
- package/src/tool/dungeon-map-generator/random-dungeon-map-generator.css +692 -692
- package/src/tool/dungeon-map-generator/ui.ts +54 -54
- package/src/tool/fantasy-runes-translator/logic.ts +1 -1
- package/src/tool/first-player-selector/i18n/tr.ts +1 -1
- package/src/tool/investigation-board/i18n/ru.ts +209 -209
- package/src/tool/investigation-board/i18n/zh.ts +209 -209
- package/src/tool/lunar-tide-tracker/client.ts +264 -264
- package/src/tool/rpg-initiative-tracker/i18n/de.ts +3 -3
- package/src/tool/rpg-initiative-tracker/i18n/es.ts +1 -1
- package/src/tool/rpg-initiative-tracker/i18n/pl.ts +2 -2
- package/src/tool/rpg-initiative-tracker/i18n/ru.ts +1 -1
- package/src/tool/score-tracker/i18n/pt.ts +1 -1
- package/src/tool/score-tracker/i18n/sv.ts +1 -1
- package/src/tool/score-tracker/i18n/tr.ts +1 -1
- package/src/tool/score-tracker/i18n/zh.ts +1 -1
- package/src/tools.ts +25 -25
package/src/tools.ts
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
export { ALL_ENTRIES } from './entries';
|
|
2
|
-
import type { ToolDefinition } from './types';
|
|
3
|
-
import { DICE_ROLLER_SIMULATOR_TOOL } from './tool/dice-roller-simulator';
|
|
4
|
-
import { BOARD_GAME_TIMER_TOOL } from './tool/board-game-timer';
|
|
5
|
-
import { FIRST_PLAYER_SELECTOR_TOOL } from './tool/first-player-selector';
|
|
6
|
-
import { SCORE_TRACKER_TOOL } from './tool/score-tracker';
|
|
7
|
-
import { INITIATIVE_TRACKER_TOOL } from './tool/rpg-initiative-tracker';
|
|
8
|
-
import { FANTASY_RUNES_TRANSLATOR_TOOL } from './tool/fantasy-runes-translator';
|
|
9
|
-
import { DECISION_WHEEL_TOOL } from './tool/decision-wheel';
|
|
10
|
-
import { INVESTIGATION_BOARD_TOOL } from './tool/investigation-board';
|
|
11
|
-
import { LUNAR_TIDE_TRACKER_TOOL } from './tool/lunar-tide-tracker';
|
|
12
|
-
import { HIDDEN_ROLE_DEALER_TOOL } from './tool/hidden-role-dealer';
|
|
1
|
+
export { ALL_ENTRIES } from './entries';
|
|
2
|
+
import type { ToolDefinition } from './types';
|
|
3
|
+
import { DICE_ROLLER_SIMULATOR_TOOL } from './tool/dice-roller-simulator';
|
|
4
|
+
import { BOARD_GAME_TIMER_TOOL } from './tool/board-game-timer';
|
|
5
|
+
import { FIRST_PLAYER_SELECTOR_TOOL } from './tool/first-player-selector';
|
|
6
|
+
import { SCORE_TRACKER_TOOL } from './tool/score-tracker';
|
|
7
|
+
import { INITIATIVE_TRACKER_TOOL } from './tool/rpg-initiative-tracker';
|
|
8
|
+
import { FANTASY_RUNES_TRANSLATOR_TOOL } from './tool/fantasy-runes-translator';
|
|
9
|
+
import { DECISION_WHEEL_TOOL } from './tool/decision-wheel';
|
|
10
|
+
import { INVESTIGATION_BOARD_TOOL } from './tool/investigation-board';
|
|
11
|
+
import { LUNAR_TIDE_TRACKER_TOOL } from './tool/lunar-tide-tracker';
|
|
12
|
+
import { HIDDEN_ROLE_DEALER_TOOL } from './tool/hidden-role-dealer';
|
|
13
13
|
import { SCATTER_DIRECTION_SELECTOR_TOOL } from './tool/scatter-direction-selector';
|
|
14
14
|
import { DUNGEON_MAP_GENERATOR_TOOL } from './tool/dungeon-map-generator';
|
|
15
15
|
import { ENCOUNTER_DIFFICULTY_CALCULATOR_TOOL } from './tool/encounter-difficulty-calculator';
|
|
16
16
|
import { TOKEN_STAMP_STUDIO_TOOL } from './tool/token-stamp-studio';
|
|
17
17
|
import { MUS_SCOREBOARD_TOOL } from './tool/mus-scoreboard';
|
|
18
18
|
import { RPG_SETTLEMENT_EXPLORATION_MAP_GENERATOR_TOOL } from './tool/rpg-settlement-exploration-map-generator';
|
|
19
|
-
|
|
20
|
-
export const ALL_TOOLS: ToolDefinition[] = [
|
|
21
|
-
DICE_ROLLER_SIMULATOR_TOOL,
|
|
22
|
-
BOARD_GAME_TIMER_TOOL,
|
|
23
|
-
FIRST_PLAYER_SELECTOR_TOOL,
|
|
24
|
-
SCORE_TRACKER_TOOL,
|
|
25
|
-
INITIATIVE_TRACKER_TOOL,
|
|
26
|
-
FANTASY_RUNES_TRANSLATOR_TOOL,
|
|
27
|
-
DECISION_WHEEL_TOOL,
|
|
28
|
-
INVESTIGATION_BOARD_TOOL,
|
|
29
|
-
LUNAR_TIDE_TRACKER_TOOL,
|
|
30
|
-
HIDDEN_ROLE_DEALER_TOOL,
|
|
19
|
+
|
|
20
|
+
export const ALL_TOOLS: ToolDefinition[] = [
|
|
21
|
+
DICE_ROLLER_SIMULATOR_TOOL,
|
|
22
|
+
BOARD_GAME_TIMER_TOOL,
|
|
23
|
+
FIRST_PLAYER_SELECTOR_TOOL,
|
|
24
|
+
SCORE_TRACKER_TOOL,
|
|
25
|
+
INITIATIVE_TRACKER_TOOL,
|
|
26
|
+
FANTASY_RUNES_TRANSLATOR_TOOL,
|
|
27
|
+
DECISION_WHEEL_TOOL,
|
|
28
|
+
INVESTIGATION_BOARD_TOOL,
|
|
29
|
+
LUNAR_TIDE_TRACKER_TOOL,
|
|
30
|
+
HIDDEN_ROLE_DEALER_TOOL,
|
|
31
31
|
SCATTER_DIRECTION_SELECTOR_TOOL,
|
|
32
32
|
DUNGEON_MAP_GENERATOR_TOOL,
|
|
33
33
|
ENCOUNTER_DIFFICULTY_CALCULATOR_TOOL,
|
|
@@ -35,4 +35,4 @@ export const ALL_TOOLS: ToolDefinition[] = [
|
|
|
35
35
|
MUS_SCOREBOARD_TOOL,
|
|
36
36
|
RPG_SETTLEMENT_EXPLORATION_MAP_GENERATOR_TOOL,
|
|
37
37
|
];
|
|
38
|
-
|
|
38
|
+
|