poi-plugin-quest-info-2 0.5.9 → 0.6.1

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 (36) hide show
  1. package/.eslintrc.js +1 -1
  2. package/build/kcQuestsData/DATA_VERSION +1 -1
  3. package/build/kcQuestsData/index.ts +1 -1
  4. package/build/kcQuestsData/quests-scn.json +1121 -1100
  5. package/build/kcanotifyGamedata/DATA_VERSION +1 -1
  6. package/build/kcanotifyGamedata/index.ts +1 -1
  7. package/build/kcanotifyGamedata/quests-en.json +60 -36
  8. package/build/kcanotifyGamedata/quests-jp.json +506 -482
  9. package/build/kcanotifyGamedata/quests-ko.json +101 -77
  10. package/build/kcanotifyGamedata/quests-scn.json +274 -251
  11. package/build/kcanotifyGamedata/quests-tcn.json +274 -251
  12. package/i18n/en-US.json +2 -1
  13. package/i18n/ja-JP.json +2 -1
  14. package/i18n/ko-KR.json +1 -0
  15. package/i18n/zh-CN.json +2 -1
  16. package/i18n/zh-TW.json +1 -0
  17. package/package.json +2 -2
  18. package/scripts/convertAssets.ts +2 -7
  19. package/scripts/downloadKcQuestsData.ts +17 -10
  20. package/scripts/downloadKcanotifyGamedata.ts +14 -11
  21. package/scripts/downloadSprites.ts +2 -7
  22. package/scripts/utils.ts +8 -0
  23. package/src/Toolbar.tsx +42 -37
  24. package/src/__tests__/kcanotifyData.spec.ts +1 -1
  25. package/src/__tests__/kcwikiData.spec.ts +1 -1
  26. package/src/components/PreTaskTag.tsx +40 -0
  27. package/src/components/QuestCard/MinimalQuestCard.tsx +48 -0
  28. package/src/components/QuestCard/index.tsx +71 -0
  29. package/src/components/QuestCard/styles.ts +42 -0
  30. package/src/components/QuestCard/utils.tsx +68 -0
  31. package/src/components/QuestList.tsx +2 -1
  32. package/src/questHelper.ts +1 -0
  33. package/src/store/filterTags.ts +44 -0
  34. package/src/store/search.ts +17 -0
  35. package/src/store/store.tsx +25 -2
  36. package/src/components/QuestCard.tsx +0 -213
package/.eslintrc.js CHANGED
@@ -41,7 +41,7 @@ module.exports = {
41
41
  'no-console': ['warn', { allow: ['warn', 'error'] }],
42
42
  'prettier/prettier': 'warn',
43
43
  // fix https://github.com/yannickcr/eslint-plugin-react/issues/2834
44
- 'react/react-in-jsx-scope': 'off',
44
+ // 'react/react-in-jsx-scope': 'off',
45
45
  },
46
46
  ignorePatterns: ['*.js', 'packages/*/build/**/*.ts', 'examples/spa/**'],
47
47
  settings: {
@@ -1 +1 @@
1
- 7e8ee6c176e45f71c6af4c10d66c708d40d938e2
1
+ 56b37a6d0a5ee58e8b88be58f7d7efff31ac6e28
@@ -4,4 +4,4 @@ export const KcwikiQuestData = {
4
4
  'zh-CN': zh_CN,
5
5
  }
6
6
 
7
- export const version = '7e8ee6c176e45f71c6af4c10d66c708d40d938e2'
7
+ export const version = '56b37a6d0a5ee58e8b88be58f7d7efff31ac6e28'