@syllst/ka 0.3.8 → 0.3.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +14 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +33 -6
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +34 -8
- package/dist/index.umd.cjs.map +1 -1
- package/dist/syllabi/alphabet/index.d.ts +2 -2
- package/dist/syllabi/alphabet/index.d.ts.map +1 -1
- package/dist/syllabi/dialogue/index.d.ts +2 -2
- package/dist/syllabi/dialogue/index.d.ts.map +1 -1
- package/dist/syllabi/essentials/index.d.ts +2 -2
- package/dist/syllabi/essentials/index.d.ts.map +1 -1
- package/dist/syllabi/grammar/index.d.ts +2 -2
- package/dist/syllabi/grammar/index.d.ts.map +1 -1
- package/dist/syllabi/numbers/index.d.ts +2 -2
- package/dist/syllabi/numbers/index.d.ts.map +1 -1
- package/dist/syllabi/reading/index.d.ts +2 -2
- package/dist/syllabi/reading/index.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { config as alphabetConfig, loader as alphabetLoader } from './syllabi/alphabet';
|
|
2
|
+
import { config as numbersConfig, loader as numbersLoader } from './syllabi/numbers';
|
|
3
|
+
import { config as essentialsConfig, loader as essentialsLoader } from './syllabi/essentials';
|
|
4
|
+
import { config as grammarConfig, loader as grammarLoader } from './syllabi/grammar';
|
|
5
|
+
import { config as dialogueConfig, loader as dialogueLoader } from './syllabi/dialogue';
|
|
6
|
+
import { config as readingConfig, loader as readingLoader } from './syllabi/reading';
|
|
7
|
+
export { alphabetConfig, alphabetLoader };
|
|
8
|
+
export { numbersConfig, numbersLoader };
|
|
9
|
+
export { essentialsConfig, essentialsLoader };
|
|
10
|
+
export { grammarConfig, grammarLoader };
|
|
11
|
+
export { dialogueConfig, dialogueLoader };
|
|
12
|
+
export { readingConfig, readingLoader };
|
|
13
|
+
export declare const allConfigs: import('@syllst/core').SyllabusConfig[];
|
|
14
|
+
export declare function getConfigById(id: string): import('@syllst/core').SyllabusConfig | undefined;
|
|
7
15
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,MAAM,IAAI,cAAc,EAAE,MAAM,IAAI,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACxF,OAAO,EAAE,MAAM,IAAI,aAAa,EAAE,MAAM,IAAI,aAAa,EAAE,MAAM,mBAAmB,CAAC;AACrF,OAAO,EAAE,MAAM,IAAI,gBAAgB,EAAE,MAAM,IAAI,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAC9F,OAAO,EAAE,MAAM,IAAI,aAAa,EAAE,MAAM,IAAI,aAAa,EAAE,MAAM,mBAAmB,CAAC;AACrF,OAAO,EAAE,MAAM,IAAI,cAAc,EAAE,MAAM,IAAI,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACxF,OAAO,EAAE,MAAM,IAAI,aAAa,EAAE,MAAM,IAAI,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAGrF,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,CAAC;AACxC,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,CAAC;AACxC,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,CAAC;AAGxC,eAAO,MAAM,UAAU,yCAOtB,CAAC;AAGF,wBAAgB,aAAa,CAAC,EAAE,EAAE,MAAM,qDAEvC"}
|
package/dist/index.js
CHANGED
|
@@ -6,40 +6,67 @@ const config$5 = {
|
|
|
6
6
|
language: "ka",
|
|
7
7
|
script: "mkhedruli"
|
|
8
8
|
};
|
|
9
|
-
createLoader(config$5);
|
|
9
|
+
const loader$5 = createLoader(config$5);
|
|
10
10
|
const config$4 = {
|
|
11
11
|
id: "numbers",
|
|
12
12
|
title: "Numbers",
|
|
13
13
|
description: "Learn Georgian numbers and counting",
|
|
14
14
|
language: "ka"
|
|
15
15
|
};
|
|
16
|
-
createLoader(config$4);
|
|
16
|
+
const loader$4 = createLoader(config$4);
|
|
17
17
|
const config$3 = {
|
|
18
18
|
id: "essentials",
|
|
19
19
|
title: "Essentials",
|
|
20
20
|
description: "Essential Georgian phrases and vocabulary",
|
|
21
21
|
language: "ka"
|
|
22
22
|
};
|
|
23
|
-
createLoader(config$3);
|
|
23
|
+
const loader$3 = createLoader(config$3);
|
|
24
24
|
const config$2 = {
|
|
25
25
|
id: "grammar",
|
|
26
26
|
title: "Grammar",
|
|
27
27
|
description: "Georgian grammar fundamentals",
|
|
28
28
|
language: "ka"
|
|
29
29
|
};
|
|
30
|
-
createLoader(config$2);
|
|
30
|
+
const loader$2 = createLoader(config$2);
|
|
31
31
|
const config$1 = {
|
|
32
32
|
id: "dialogue",
|
|
33
33
|
title: "Dialogue",
|
|
34
34
|
description: "Georgian conversation dialogues",
|
|
35
35
|
language: "ka"
|
|
36
36
|
};
|
|
37
|
-
createLoader(config$1);
|
|
37
|
+
const loader$1 = createLoader(config$1);
|
|
38
38
|
const config = {
|
|
39
39
|
id: "reading",
|
|
40
40
|
title: "Reading",
|
|
41
41
|
description: "Georgian reading comprehension",
|
|
42
42
|
language: "ka"
|
|
43
43
|
};
|
|
44
|
-
createLoader(config);
|
|
44
|
+
const loader = createLoader(config);
|
|
45
|
+
const allConfigs = [
|
|
46
|
+
config$5,
|
|
47
|
+
config$4,
|
|
48
|
+
config$3,
|
|
49
|
+
config$2,
|
|
50
|
+
config$1,
|
|
51
|
+
config
|
|
52
|
+
];
|
|
53
|
+
function getConfigById(id) {
|
|
54
|
+
return allConfigs.find((config2) => config2.id === id);
|
|
55
|
+
}
|
|
56
|
+
export {
|
|
57
|
+
allConfigs,
|
|
58
|
+
config$5 as alphabetConfig,
|
|
59
|
+
loader$5 as alphabetLoader,
|
|
60
|
+
config$1 as dialogueConfig,
|
|
61
|
+
loader$1 as dialogueLoader,
|
|
62
|
+
config$3 as essentialsConfig,
|
|
63
|
+
loader$3 as essentialsLoader,
|
|
64
|
+
getConfigById,
|
|
65
|
+
config$2 as grammarConfig,
|
|
66
|
+
loader$2 as grammarLoader,
|
|
67
|
+
config$4 as numbersConfig,
|
|
68
|
+
loader$4 as numbersLoader,
|
|
69
|
+
config as readingConfig,
|
|
70
|
+
loader as readingLoader
|
|
71
|
+
};
|
|
45
72
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/syllabi/alphabet/index.ts","../src/syllabi/numbers/index.ts","../src/syllabi/essentials/index.ts","../src/syllabi/grammar/index.ts","../src/syllabi/dialogue/index.ts","../src/syllabi/reading/index.ts"],"sourcesContent":["import {
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/syllabi/alphabet/index.ts","../src/syllabi/numbers/index.ts","../src/syllabi/essentials/index.ts","../src/syllabi/grammar/index.ts","../src/syllabi/dialogue/index.ts","../src/syllabi/reading/index.ts","../src/index.ts"],"sourcesContent":["import { createLoader } from '@syllst/processor';\nimport type { SyllabusConfig } from '@syllst/core/types';\n\nexport const config: SyllabusConfig = {\n id: 'alphabet',\n title: 'Alphabet',\n description: 'Georgian alphabet (Mkhedruli script)',\n language: 'ka',\n script: 'mkhedruli',\n};\n\n// Create loader - lessons are loaded at runtime from the lessons directory\nexport const loader = createLoader(config);\n","import { createLoader } from '@syllst/processor';\nimport type { SyllabusConfig } from '@syllst/core/types';\n\nexport const config: SyllabusConfig = {\n id: 'numbers',\n title: 'Numbers',\n description: 'Learn Georgian numbers and counting',\n language: 'ka',\n};\n\n// Create loader - lessons are loaded at runtime from the lessons directory\nexport const loader = createLoader(config);\n","import { createLoader } from '@syllst/processor';\nimport type { SyllabusConfig } from '@syllst/core/types';\n\nexport const config: SyllabusConfig = {\n id: 'essentials',\n title: 'Essentials',\n description: 'Essential Georgian phrases and vocabulary',\n language: 'ka',\n};\n\n// Create loader - lessons are loaded at runtime from the lessons directory\nexport const loader = createLoader(config);\n","import { createLoader } from '@syllst/processor';\nimport type { SyllabusConfig } from '@syllst/core/types';\n\nexport const config: SyllabusConfig = {\n id: 'grammar',\n title: 'Grammar',\n description: 'Georgian grammar fundamentals',\n language: 'ka',\n};\n\n// Create loader - lessons are loaded at runtime from the lessons directory\nexport const loader = createLoader(config);\n","import { createLoader } from '@syllst/processor';\nimport type { SyllabusConfig } from '@syllst/core/types';\n\nexport const config: SyllabusConfig = {\n id: 'dialogue',\n title: 'Dialogue',\n description: 'Georgian conversation dialogues',\n language: 'ka',\n};\n\n// Create loader - lessons are loaded at runtime from the lessons directory\nexport const loader = createLoader(config);\n","import { createLoader } from '@syllst/processor';\nimport type { SyllabusConfig } from '@syllst/core/types';\n\nexport const config: SyllabusConfig = {\n id: 'reading',\n title: 'Reading',\n description: 'Georgian reading comprehension',\n language: 'ka',\n};\n\n// Create loader - lessons are loaded at runtime from the lessons directory\nexport const loader = createLoader(config);\n","/**\r\n * @syllst/ka\r\n *\r\n * Georgian language learning content for the syllabus framework.\r\n */\r\n\r\n// Import syllabi with unique names\r\nimport { config as alphabetConfig, loader as alphabetLoader } from './syllabi/alphabet';\r\nimport { config as numbersConfig, loader as numbersLoader } from './syllabi/numbers';\r\nimport { config as essentialsConfig, loader as essentialsLoader } from './syllabi/essentials';\r\nimport { config as grammarConfig, loader as grammarLoader } from './syllabi/grammar';\r\nimport { config as dialogueConfig, loader as dialogueLoader } from './syllabi/dialogue';\r\nimport { config as readingConfig, loader as readingLoader } from './syllabi/reading';\r\n\r\n// Re-export configs and loaders\r\nexport { alphabetConfig, alphabetLoader };\r\nexport { numbersConfig, numbersLoader };\r\nexport { essentialsConfig, essentialsLoader };\r\nexport { grammarConfig, grammarLoader };\r\nexport { dialogueConfig, dialogueLoader };\r\nexport { readingConfig, readingLoader };\r\n\r\n// Helper function to get all configs\r\nexport const allConfigs = [\r\n alphabetConfig,\r\n numbersConfig,\r\n essentialsConfig,\r\n grammarConfig,\r\n dialogueConfig,\r\n readingConfig,\r\n];\r\n\r\n// Helper function to get config by ID\r\nexport function getConfigById(id: string) {\r\n return allConfigs.find((config) => config.id === id);\r\n}\r\n"],"names":["config","loader","alphabetConfig","numbersConfig","essentialsConfig","grammarConfig","dialogueConfig","readingConfig"],"mappings":";AAGO,MAAMA,WAAyB;AAAA,EACpC,IAAI;AAAA,EACJ,OAAO;AAAA,EACP,aAAa;AAAA,EACb,UAAU;AAAA,EACV,QAAQ;AACV;AAGO,MAAMC,WAAS,aAAaD,QAAM;ACTlC,MAAMA,WAAyB;AAAA,EACpC,IAAI;AAAA,EACJ,OAAO;AAAA,EACP,aAAa;AAAA,EACb,UAAU;AACZ;AAGO,MAAMC,WAAS,aAAaD,QAAM;ACRlC,MAAMA,WAAyB;AAAA,EACpC,IAAI;AAAA,EACJ,OAAO;AAAA,EACP,aAAa;AAAA,EACb,UAAU;AACZ;AAGO,MAAMC,WAAS,aAAaD,QAAM;ACRlC,MAAMA,WAAyB;AAAA,EACpC,IAAI;AAAA,EACJ,OAAO;AAAA,EACP,aAAa;AAAA,EACb,UAAU;AACZ;AAGO,MAAMC,WAAS,aAAaD,QAAM;ACRlC,MAAMA,WAAyB;AAAA,EACpC,IAAI;AAAA,EACJ,OAAO;AAAA,EACP,aAAa;AAAA,EACb,UAAU;AACZ;AAGO,MAAMC,WAAS,aAAaD,QAAM;ACRlC,MAAM,SAAyB;AAAA,EACpC,IAAI;AAAA,EACJ,OAAO;AAAA,EACP,aAAa;AAAA,EACb,UAAU;AACZ;AAGO,MAAM,SAAS,aAAa,MAAM;ACYlC,MAAM,aAAa;AAAA,EACxBE;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AAAAA,EACAC;AACF;AAGO,SAAS,cAAc,IAAY;AACxC,SAAO,WAAW,KAAK,CAACP,YAAWA,QAAO,OAAO,EAAE;AACrD;"}
|
package/dist/index.umd.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
(function(global, factory) {
|
|
2
|
-
typeof exports === "object" && typeof module !== "undefined" ? factory(require("@syllst/processor")) : typeof define === "function" && define.amd ? define(["@syllst/processor"], factory) : (global = typeof globalThis !== "undefined" ? globalThis : global || self, factory(global.syllstProcessor));
|
|
3
|
-
})(this, (function(processor) {
|
|
2
|
+
typeof exports === "object" && typeof module !== "undefined" ? factory(exports, require("@syllst/processor")) : typeof define === "function" && define.amd ? define(["exports", "@syllst/processor"], factory) : (global = typeof globalThis !== "undefined" ? globalThis : global || self, factory(global["syllst-ka"] = {}, global.syllstProcessor));
|
|
3
|
+
})(this, (function(exports2, processor) {
|
|
4
4
|
"use strict";
|
|
5
5
|
const config$5 = {
|
|
6
6
|
id: "alphabet",
|
|
@@ -9,41 +9,67 @@
|
|
|
9
9
|
language: "ka",
|
|
10
10
|
script: "mkhedruli"
|
|
11
11
|
};
|
|
12
|
-
processor.createLoader(config$5);
|
|
12
|
+
const loader$5 = processor.createLoader(config$5);
|
|
13
13
|
const config$4 = {
|
|
14
14
|
id: "numbers",
|
|
15
15
|
title: "Numbers",
|
|
16
16
|
description: "Learn Georgian numbers and counting",
|
|
17
17
|
language: "ka"
|
|
18
18
|
};
|
|
19
|
-
processor.createLoader(config$4);
|
|
19
|
+
const loader$4 = processor.createLoader(config$4);
|
|
20
20
|
const config$3 = {
|
|
21
21
|
id: "essentials",
|
|
22
22
|
title: "Essentials",
|
|
23
23
|
description: "Essential Georgian phrases and vocabulary",
|
|
24
24
|
language: "ka"
|
|
25
25
|
};
|
|
26
|
-
processor.createLoader(config$3);
|
|
26
|
+
const loader$3 = processor.createLoader(config$3);
|
|
27
27
|
const config$2 = {
|
|
28
28
|
id: "grammar",
|
|
29
29
|
title: "Grammar",
|
|
30
30
|
description: "Georgian grammar fundamentals",
|
|
31
31
|
language: "ka"
|
|
32
32
|
};
|
|
33
|
-
processor.createLoader(config$2);
|
|
33
|
+
const loader$2 = processor.createLoader(config$2);
|
|
34
34
|
const config$1 = {
|
|
35
35
|
id: "dialogue",
|
|
36
36
|
title: "Dialogue",
|
|
37
37
|
description: "Georgian conversation dialogues",
|
|
38
38
|
language: "ka"
|
|
39
39
|
};
|
|
40
|
-
processor.createLoader(config$1);
|
|
40
|
+
const loader$1 = processor.createLoader(config$1);
|
|
41
41
|
const config = {
|
|
42
42
|
id: "reading",
|
|
43
43
|
title: "Reading",
|
|
44
44
|
description: "Georgian reading comprehension",
|
|
45
45
|
language: "ka"
|
|
46
46
|
};
|
|
47
|
-
processor.createLoader(config);
|
|
47
|
+
const loader = processor.createLoader(config);
|
|
48
|
+
const allConfigs = [
|
|
49
|
+
config$5,
|
|
50
|
+
config$4,
|
|
51
|
+
config$3,
|
|
52
|
+
config$2,
|
|
53
|
+
config$1,
|
|
54
|
+
config
|
|
55
|
+
];
|
|
56
|
+
function getConfigById(id) {
|
|
57
|
+
return allConfigs.find((config2) => config2.id === id);
|
|
58
|
+
}
|
|
59
|
+
exports2.allConfigs = allConfigs;
|
|
60
|
+
exports2.alphabetConfig = config$5;
|
|
61
|
+
exports2.alphabetLoader = loader$5;
|
|
62
|
+
exports2.dialogueConfig = config$1;
|
|
63
|
+
exports2.dialogueLoader = loader$1;
|
|
64
|
+
exports2.essentialsConfig = config$3;
|
|
65
|
+
exports2.essentialsLoader = loader$3;
|
|
66
|
+
exports2.getConfigById = getConfigById;
|
|
67
|
+
exports2.grammarConfig = config$2;
|
|
68
|
+
exports2.grammarLoader = loader$2;
|
|
69
|
+
exports2.numbersConfig = config$4;
|
|
70
|
+
exports2.numbersLoader = loader$4;
|
|
71
|
+
exports2.readingConfig = config;
|
|
72
|
+
exports2.readingLoader = loader;
|
|
73
|
+
Object.defineProperty(exports2, Symbol.toStringTag, { value: "Module" });
|
|
48
74
|
}));
|
|
49
75
|
//# sourceMappingURL=index.umd.cjs.map
|
package/dist/index.umd.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.umd.cjs","sources":["../src/syllabi/alphabet/index.ts","../src/syllabi/numbers/index.ts","../src/syllabi/essentials/index.ts","../src/syllabi/grammar/index.ts","../src/syllabi/dialogue/index.ts","../src/syllabi/reading/index.ts"],"sourcesContent":["import {
|
|
1
|
+
{"version":3,"file":"index.umd.cjs","sources":["../src/syllabi/alphabet/index.ts","../src/syllabi/numbers/index.ts","../src/syllabi/essentials/index.ts","../src/syllabi/grammar/index.ts","../src/syllabi/dialogue/index.ts","../src/syllabi/reading/index.ts","../src/index.ts"],"sourcesContent":["import { createLoader } from '@syllst/processor';\nimport type { SyllabusConfig } from '@syllst/core/types';\n\nexport const config: SyllabusConfig = {\n id: 'alphabet',\n title: 'Alphabet',\n description: 'Georgian alphabet (Mkhedruli script)',\n language: 'ka',\n script: 'mkhedruli',\n};\n\n// Create loader - lessons are loaded at runtime from the lessons directory\nexport const loader = createLoader(config);\n","import { createLoader } from '@syllst/processor';\nimport type { SyllabusConfig } from '@syllst/core/types';\n\nexport const config: SyllabusConfig = {\n id: 'numbers',\n title: 'Numbers',\n description: 'Learn Georgian numbers and counting',\n language: 'ka',\n};\n\n// Create loader - lessons are loaded at runtime from the lessons directory\nexport const loader = createLoader(config);\n","import { createLoader } from '@syllst/processor';\nimport type { SyllabusConfig } from '@syllst/core/types';\n\nexport const config: SyllabusConfig = {\n id: 'essentials',\n title: 'Essentials',\n description: 'Essential Georgian phrases and vocabulary',\n language: 'ka',\n};\n\n// Create loader - lessons are loaded at runtime from the lessons directory\nexport const loader = createLoader(config);\n","import { createLoader } from '@syllst/processor';\nimport type { SyllabusConfig } from '@syllst/core/types';\n\nexport const config: SyllabusConfig = {\n id: 'grammar',\n title: 'Grammar',\n description: 'Georgian grammar fundamentals',\n language: 'ka',\n};\n\n// Create loader - lessons are loaded at runtime from the lessons directory\nexport const loader = createLoader(config);\n","import { createLoader } from '@syllst/processor';\nimport type { SyllabusConfig } from '@syllst/core/types';\n\nexport const config: SyllabusConfig = {\n id: 'dialogue',\n title: 'Dialogue',\n description: 'Georgian conversation dialogues',\n language: 'ka',\n};\n\n// Create loader - lessons are loaded at runtime from the lessons directory\nexport const loader = createLoader(config);\n","import { createLoader } from '@syllst/processor';\nimport type { SyllabusConfig } from '@syllst/core/types';\n\nexport const config: SyllabusConfig = {\n id: 'reading',\n title: 'Reading',\n description: 'Georgian reading comprehension',\n language: 'ka',\n};\n\n// Create loader - lessons are loaded at runtime from the lessons directory\nexport const loader = createLoader(config);\n","/**\r\n * @syllst/ka\r\n *\r\n * Georgian language learning content for the syllabus framework.\r\n */\r\n\r\n// Import syllabi with unique names\r\nimport { config as alphabetConfig, loader as alphabetLoader } from './syllabi/alphabet';\r\nimport { config as numbersConfig, loader as numbersLoader } from './syllabi/numbers';\r\nimport { config as essentialsConfig, loader as essentialsLoader } from './syllabi/essentials';\r\nimport { config as grammarConfig, loader as grammarLoader } from './syllabi/grammar';\r\nimport { config as dialogueConfig, loader as dialogueLoader } from './syllabi/dialogue';\r\nimport { config as readingConfig, loader as readingLoader } from './syllabi/reading';\r\n\r\n// Re-export configs and loaders\r\nexport { alphabetConfig, alphabetLoader };\r\nexport { numbersConfig, numbersLoader };\r\nexport { essentialsConfig, essentialsLoader };\r\nexport { grammarConfig, grammarLoader };\r\nexport { dialogueConfig, dialogueLoader };\r\nexport { readingConfig, readingLoader };\r\n\r\n// Helper function to get all configs\r\nexport const allConfigs = [\r\n alphabetConfig,\r\n numbersConfig,\r\n essentialsConfig,\r\n grammarConfig,\r\n dialogueConfig,\r\n readingConfig,\r\n];\r\n\r\n// Helper function to get config by ID\r\nexport function getConfigById(id: string) {\r\n return allConfigs.find((config) => config.id === id);\r\n}\r\n"],"names":["config","loader","createLoader","alphabetConfig","numbersConfig","essentialsConfig","grammarConfig","dialogueConfig","readingConfig"],"mappings":";;;;AAGO,QAAMA,WAAyB;AAAA,IACpC,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,aAAa;AAAA,IACb,UAAU;AAAA,IACV,QAAQ;AAAA,EACV;AAGO,QAAMC,WAASC,UAAAA,aAAaF,QAAM;ACTlC,QAAMA,WAAyB;AAAA,IACpC,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,aAAa;AAAA,IACb,UAAU;AAAA,EACZ;AAGO,QAAMC,WAASC,UAAAA,aAAaF,QAAM;ACRlC,QAAMA,WAAyB;AAAA,IACpC,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,aAAa;AAAA,IACb,UAAU;AAAA,EACZ;AAGO,QAAMC,WAASC,UAAAA,aAAaF,QAAM;ACRlC,QAAMA,WAAyB;AAAA,IACpC,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,aAAa;AAAA,IACb,UAAU;AAAA,EACZ;AAGO,QAAMC,WAASC,UAAAA,aAAaF,QAAM;ACRlC,QAAMA,WAAyB;AAAA,IACpC,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,aAAa;AAAA,IACb,UAAU;AAAA,EACZ;AAGO,QAAMC,WAASC,UAAAA,aAAaF,QAAM;ACRlC,QAAM,SAAyB;AAAA,IACpC,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,aAAa;AAAA,IACb,UAAU;AAAA,EACZ;AAGO,QAAM,SAASE,UAAAA,aAAa,MAAM;ACYlC,QAAM,aAAa;AAAA,IACxBC;AAAAA,IACAC;AAAAA,IACAC;AAAAA,IACAC;AAAAA,IACAC;AAAAA,IACAC;AAAAA,EACF;AAGO,WAAS,cAAc,IAAY;AACxC,WAAO,WAAW,KAAK,CAACR,YAAWA,QAAO,OAAO,EAAE;AAAA,EACrD;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SyllabusConfig } from '@syllst/core';
|
|
1
|
+
import { SyllabusConfig } from '@syllst/core/types';
|
|
2
2
|
export declare const config: SyllabusConfig;
|
|
3
|
-
export declare const loader:
|
|
3
|
+
export declare const loader: import('@syllst/processor').ContentLoader;
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/syllabi/alphabet/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/syllabi/alphabet/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAEzD,eAAO,MAAM,MAAM,EAAE,cAMpB,CAAC;AAGF,eAAO,MAAM,MAAM,2CAAuB,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SyllabusConfig } from '@syllst/core';
|
|
1
|
+
import { SyllabusConfig } from '@syllst/core/types';
|
|
2
2
|
export declare const config: SyllabusConfig;
|
|
3
|
-
export declare const loader:
|
|
3
|
+
export declare const loader: import('@syllst/processor').ContentLoader;
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/syllabi/dialogue/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/syllabi/dialogue/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAEzD,eAAO,MAAM,MAAM,EAAE,cAKpB,CAAC;AAGF,eAAO,MAAM,MAAM,2CAAuB,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SyllabusConfig } from '@syllst/core';
|
|
1
|
+
import { SyllabusConfig } from '@syllst/core/types';
|
|
2
2
|
export declare const config: SyllabusConfig;
|
|
3
|
-
export declare const loader:
|
|
3
|
+
export declare const loader: import('@syllst/processor').ContentLoader;
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/syllabi/essentials/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/syllabi/essentials/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAEzD,eAAO,MAAM,MAAM,EAAE,cAKpB,CAAC;AAGF,eAAO,MAAM,MAAM,2CAAuB,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SyllabusConfig } from '@syllst/core';
|
|
1
|
+
import { SyllabusConfig } from '@syllst/core/types';
|
|
2
2
|
export declare const config: SyllabusConfig;
|
|
3
|
-
export declare const loader:
|
|
3
|
+
export declare const loader: import('@syllst/processor').ContentLoader;
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/syllabi/grammar/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/syllabi/grammar/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAEzD,eAAO,MAAM,MAAM,EAAE,cAKpB,CAAC;AAGF,eAAO,MAAM,MAAM,2CAAuB,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SyllabusConfig } from '@syllst/core';
|
|
1
|
+
import { SyllabusConfig } from '@syllst/core/types';
|
|
2
2
|
export declare const config: SyllabusConfig;
|
|
3
|
-
export declare const loader:
|
|
3
|
+
export declare const loader: import('@syllst/processor').ContentLoader;
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/syllabi/numbers/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/syllabi/numbers/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAEzD,eAAO,MAAM,MAAM,EAAE,cAKpB,CAAC;AAGF,eAAO,MAAM,MAAM,2CAAuB,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SyllabusConfig } from '@syllst/core';
|
|
1
|
+
import { SyllabusConfig } from '@syllst/core/types';
|
|
2
2
|
export declare const config: SyllabusConfig;
|
|
3
|
-
export declare const loader:
|
|
3
|
+
export declare const loader: import('@syllst/processor').ContentLoader;
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/syllabi/reading/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/syllabi/reading/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAEzD,eAAO,MAAM,MAAM,EAAE,cAKpB,CAAC;AAGF,eAAO,MAAM,MAAM,2CAAuB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syllst/ka",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.11",
|
|
4
4
|
"description": "Georgian SYLLST content - Georgian alphabet (Mkhedruli script), numbers, and essentials syllabi",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
"remark-mdx": "^3.0.0"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
|
-
"@syllst/core": "
|
|
62
|
-
"@syllst/processor": "
|
|
61
|
+
"@syllst/core": "0.6.0",
|
|
62
|
+
"@syllst/processor": "0.5.6"
|
|
63
63
|
},
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|