@willwade/aac-processors 0.1.10 → 0.1.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.
Files changed (52) hide show
  1. package/dist/browser/processors/gridsetProcessor.js +2 -2
  2. package/dist/processors/gridsetProcessor.js +2 -2
  3. package/examples/example-images/FileMap.xml +51 -0
  4. package/examples/example-images/Grids/Start/0-1-0-text-0.png +0 -0
  5. package/examples/example-images/Grids/Start/0-2-0-text-0.jpeg +0 -0
  6. package/examples/example-images/Grids/Start/0-3-0-text-0.jpeg +0 -0
  7. package/examples/example-images/Grids/Start/0-4-0-text-0.jpeg +0 -0
  8. package/examples/example-images/Grids/Start/0-5-0-text-0.jpeg +0 -0
  9. package/examples/example-images/Grids/Start/1-1-0-text-0.jpeg +0 -0
  10. package/examples/example-images/Grids/Start/1-2-0-text-0.jpeg +0 -0
  11. package/examples/example-images/Grids/Start/1-3-0-text-0.jpeg +0 -0
  12. package/examples/example-images/Grids/Start/1-4-0-text-0.jpeg +0 -0
  13. package/examples/example-images/Grids/Start/1-5-0-text-0.jpeg +0 -0
  14. package/examples/example-images/Grids/Start/10-3-0-text-0.jpeg +0 -0
  15. package/examples/example-images/Grids/Start/10-4-0-text-0.jpeg +0 -0
  16. package/examples/example-images/Grids/Start/11-3-0-text-0.jpeg +0 -0
  17. package/examples/example-images/Grids/Start/11-4-0-text-0.jpeg +0 -0
  18. package/examples/example-images/Grids/Start/2-1-0-text-0.jpeg +0 -0
  19. package/examples/example-images/Grids/Start/2-2-0-text-0.jpeg +0 -0
  20. package/examples/example-images/Grids/Start/2-3-0-text-0.jpeg +0 -0
  21. package/examples/example-images/Grids/Start/2-4-0-text-0.jpeg +0 -0
  22. package/examples/example-images/Grids/Start/2-5-0-text-0.jpeg +0 -0
  23. package/examples/example-images/Grids/Start/3-1-0-text-0.jpeg +0 -0
  24. package/examples/example-images/Grids/Start/3-3-0-text-0.jpeg +0 -0
  25. package/examples/example-images/Grids/Start/3-4-0-text-0.jpeg +0 -0
  26. package/examples/example-images/Grids/Start/3-5-0-text-0.jpeg +0 -0
  27. package/examples/example-images/Grids/Start/4-1-0-text-0.jpeg +0 -0
  28. package/examples/example-images/Grids/Start/4-3-0-text-0.jpeg +0 -0
  29. package/examples/example-images/Grids/Start/4-4-0-text-0.jpeg +0 -0
  30. package/examples/example-images/Grids/Start/4-5-0-text-0.jpeg +0 -0
  31. package/examples/example-images/Grids/Start/5-4-0-text-0.jpeg +0 -0
  32. package/examples/example-images/Grids/Start/5-5-0-text-0.jpeg +0 -0
  33. package/examples/example-images/Grids/Start/6-3-0-text-0.jpeg +0 -0
  34. package/examples/example-images/Grids/Start/6-4-0-text-0.jpeg +0 -0
  35. package/examples/example-images/Grids/Start/7-1-0-text-0.jpeg +0 -0
  36. package/examples/example-images/Grids/Start/7-2-0-text-0.jpeg +0 -0
  37. package/examples/example-images/Grids/Start/7-3-0-text-0.jpeg +0 -0
  38. package/examples/example-images/Grids/Start/7-4-0-text-0.jpeg +0 -0
  39. package/examples/example-images/Grids/Start/8-1-0-text-0.jpeg +0 -0
  40. package/examples/example-images/Grids/Start/8-2-0-text-0.jpeg +0 -0
  41. package/examples/example-images/Grids/Start/8-3-0-text-0.jpeg +0 -0
  42. package/examples/example-images/Grids/Start/8-4-0-text-0.jpeg +0 -0
  43. package/examples/example-images/Grids/Start/9-1.png +0 -0
  44. package/examples/example-images/Grids/Start/9-2.png +0 -0
  45. package/examples/example-images/Grids/Start/9-3-0-text-0.jpeg +0 -0
  46. package/examples/example-images/Grids/Start/9-4-0-text-0.jpeg +0 -0
  47. package/examples/example-images/Grids/Start/grid.xml +1325 -0
  48. package/examples/example-images/Settings0/Styles/styles.xml +39 -0
  49. package/examples/example-images/Settings0/WebBrowser/webbrowserextensions.xml +3 -0
  50. package/examples/example-images/Settings0/settings.xml +16 -0
  51. package/examples/example-images.zip +0 -0
  52. package/package.json +1 -1
@@ -793,8 +793,8 @@ class GridsetProcessor extends BaseProcessor {
793
793
  const resolvedImageEntry = resolveGrid3CellImage(null, {
794
794
  baseDir,
795
795
  imageName: declaredImageName,
796
- x: cellX + 1,
797
- y: cellY + 1,
796
+ x: cellX,
797
+ y: cellY,
798
798
  dynamicFiles,
799
799
  }, entries) || undefined;
800
800
  // Check if image is a symbol library reference
@@ -819,8 +819,8 @@ class GridsetProcessor extends baseProcessor_1.BaseProcessor {
819
819
  const resolvedImageEntry = (0, resolver_1.resolveGrid3CellImage)(null, {
820
820
  baseDir,
821
821
  imageName: declaredImageName,
822
- x: cellX + 1,
823
- y: cellY + 1,
822
+ x: cellX,
823
+ y: cellY,
824
824
  dynamicFiles,
825
825
  }, entries) || undefined;
826
826
  // Check if image is a symbol library reference
@@ -0,0 +1,51 @@
1
+ <FileMap xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2
+ <Entries>
3
+ <Entry StaticFile="Grids\Start\grid.xml">
4
+ <DynamicFiles>
5
+ <File>Grids\Start\0-1-0-text-0.png</File>
6
+ <File>Grids\Start\0-2-0-text-0.jpeg</File>
7
+ <File>Grids\Start\0-3-0-text-0.jpeg</File>
8
+ <File>Grids\Start\0-4-0-text-0.jpeg</File>
9
+ <File>Grids\Start\0-5-0-text-0.jpeg</File>
10
+ <File>Grids\Start\1-1-0-text-0.jpeg</File>
11
+ <File>Grids\Start\1-2-0-text-0.jpeg</File>
12
+ <File>Grids\Start\1-3-0-text-0.jpeg</File>
13
+ <File>Grids\Start\1-4-0-text-0.jpeg</File>
14
+ <File>Grids\Start\1-5-0-text-0.jpeg</File>
15
+ <File>Grids\Start\10-3-0-text-0.jpeg</File>
16
+ <File>Grids\Start\10-4-0-text-0.jpeg</File>
17
+ <File>Grids\Start\11-3-0-text-0.jpeg</File>
18
+ <File>Grids\Start\11-4-0-text-0.jpeg</File>
19
+ <File>Grids\Start\2-1-0-text-0.jpeg</File>
20
+ <File>Grids\Start\2-2-0-text-0.jpeg</File>
21
+ <File>Grids\Start\2-3-0-text-0.jpeg</File>
22
+ <File>Grids\Start\2-4-0-text-0.jpeg</File>
23
+ <File>Grids\Start\2-5-0-text-0.jpeg</File>
24
+ <File>Grids\Start\3-1-0-text-0.jpeg</File>
25
+ <File>Grids\Start\3-3-0-text-0.jpeg</File>
26
+ <File>Grids\Start\3-4-0-text-0.jpeg</File>
27
+ <File>Grids\Start\3-5-0-text-0.jpeg</File>
28
+ <File>Grids\Start\4-1-0-text-0.jpeg</File>
29
+ <File>Grids\Start\4-3-0-text-0.jpeg</File>
30
+ <File>Grids\Start\4-4-0-text-0.jpeg</File>
31
+ <File>Grids\Start\4-5-0-text-0.jpeg</File>
32
+ <File>Grids\Start\5-4-0-text-0.jpeg</File>
33
+ <File>Grids\Start\5-5-0-text-0.jpeg</File>
34
+ <File>Grids\Start\6-3-0-text-0.jpeg</File>
35
+ <File>Grids\Start\6-4-0-text-0.jpeg</File>
36
+ <File>Grids\Start\7-1-0-text-0.jpeg</File>
37
+ <File>Grids\Start\7-2-0-text-0.jpeg</File>
38
+ <File>Grids\Start\7-3-0-text-0.jpeg</File>
39
+ <File>Grids\Start\7-4-0-text-0.jpeg</File>
40
+ <File>Grids\Start\8-1-0-text-0.jpeg</File>
41
+ <File>Grids\Start\8-2-0-text-0.jpeg</File>
42
+ <File>Grids\Start\8-3-0-text-0.jpeg</File>
43
+ <File>Grids\Start\8-4-0-text-0.jpeg</File>
44
+ <File>Grids\Start\9-1.png</File>
45
+ <File>Grids\Start\9-2.png</File>
46
+ <File>Grids\Start\9-3-0-text-0.jpeg</File>
47
+ <File>Grids\Start\9-4-0-text-0.jpeg</File>
48
+ </DynamicFiles>
49
+ </Entry>
50
+ </Entries>
51
+ </FileMap>