generaltranslation 7.8.0 → 7.9.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.
Files changed (30) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/id.d.ts +1 -1
  3. package/dist/index.cjs.min.cjs.map +1 -1
  4. package/dist/index.d.ts +1 -1
  5. package/dist/index.esm.min.mjs.map +1 -1
  6. package/dist/internal.cjs.min.cjs +1 -1
  7. package/dist/internal.cjs.min.cjs.map +1 -1
  8. package/dist/internal.d.ts +3 -2
  9. package/dist/internal.esm.min.mjs +1 -1
  10. package/dist/internal.esm.min.mjs.map +1 -1
  11. package/dist/types-dir/{enqueueEntries.d.ts → api/enqueueEntries.d.ts} +1 -1
  12. package/dist/types-dir/{enqueueFiles.d.ts → api/enqueueFiles.d.ts} +1 -1
  13. package/dist/types-dir/{entry.d.ts → api/entry.d.ts} +1 -1
  14. package/dist/types-dir/{translate.d.ts → api/translate.d.ts} +1 -1
  15. package/dist/types-dir/{uploadFiles.d.ts → api/uploadFiles.d.ts} +1 -1
  16. package/dist/types-dir/{variables.d.ts → jsx/variables.d.ts} +1 -1
  17. package/dist/types-dir/transformations.d.ts +6 -0
  18. package/dist/types.cjs.min.cjs.map +1 -1
  19. package/dist/types.d.ts +9 -7
  20. package/dist/types.esm.min.mjs.map +1 -1
  21. package/package.json +1 -1
  22. /package/dist/types-dir/{checkFileTranslations.d.ts → api/checkFileTranslations.d.ts} +0 -0
  23. /package/dist/types-dir/{downloadFile.d.ts → api/downloadFile.d.ts} +0 -0
  24. /package/dist/types-dir/{downloadFileBatch.d.ts → api/downloadFileBatch.d.ts} +0 -0
  25. /package/dist/types-dir/{fetchTranslations.d.ts → api/fetchTranslations.d.ts} +0 -0
  26. /package/dist/types-dir/{file.d.ts → api/file.d.ts} +0 -0
  27. /package/dist/types-dir/{project.d.ts → api/project.d.ts} +0 -0
  28. /package/dist/types-dir/{translateMany.d.ts → api/translateMany.d.ts} +0 -0
  29. /package/dist/types-dir/{translationStatus.d.ts → api/translationStatus.d.ts} +0 -0
  30. /package/dist/types-dir/{content.d.ts → jsx/content.d.ts} +0 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # generaltranslation
2
2
 
3
+ ## 7.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#784](https://github.com/generaltranslation/gt/pull/784) [`93881f1`](https://github.com/generaltranslation/gt/commit/93881f159455a9bbc13d14e7fec9befa60998ba3) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: support for <Static> component in core
8
+
3
9
  ## 7.8.0
4
10
 
5
11
  ### Minor Changes
package/dist/id.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- type VariableType = 'v' | 'n' | 'd' | 'c';
1
+ type VariableType = 'v' | 'n' | 'd' | 'c' | 's';
2
2
  /**
3
3
  * Variables are used to store the variable name and type.
4
4
  */