@jjlmoya/utils-language 1.4.0 → 1.5.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjlmoya/utils-language",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -1,11 +1,15 @@
1
1
  import type { ToolDefinition } from '../../types';
2
2
  import {
3
- LANGUAGE_LEARNING_STUDY_PLAN_PLANNER_TOOL as languageLearningStudyPlanPlannerDefinition,
3
+ languageLearningStudyPlanPlanner,
4
4
  } from './entry';
5
5
 
6
- export { languageLearningStudyPlanPlanner } from './entry';
7
6
  export type { LanguagePlannerUI, LanguageLearningStudyPlanPlannerLocaleContent } from './entry';
8
7
  export { calculateStudyPlan, GUIDED_HOURS_FROM_BEGINNER, LEVEL_LABELS, PRIORITY_ALLOCATIONS, STUDY_LEVELS } from './logic';
9
8
  export type { LanguagePlannerInputs, PlanStatus, SkillAllocation, StudyLevel, StudyMilestone, StudyPlan } from './types';
10
9
 
11
- export const LANGUAGE_LEARNING_STUDY_PLAN_PLANNER_TOOL: ToolDefinition = languageLearningStudyPlanPlannerDefinition;
10
+ export const LANGUAGE_LEARNING_STUDY_PLAN_PLANNER_TOOL: ToolDefinition = {
11
+ entry: languageLearningStudyPlanPlanner,
12
+ Component: () => import('./component.astro'),
13
+ SEOComponent: () => import('./seo.astro'),
14
+ BibliographyComponent: () => import('./bibliography.astro'),
15
+ };