sheet-i18n 1.9.3 → 1.9.5

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 (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -533,7 +533,10 @@ const App = () => {
533
533
  return (
534
534
  // StorageBasedIntlProvider automatically re-render
535
535
  // if storage local data is changed
536
- <StorageBasedIntlProvider storageManager={localeStorageManager}>
536
+ <StorageBasedIntlProvider
537
+ storageManager={localeStorageManager}
538
+ fallbackUI={<div>Loading...</div>} // optional
539
+ >
537
540
  <YourApp />
538
541
  </StorageBasedIntlProvider>
539
542
  );
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sheet-i18n",
3
3
  "description": "All-in-one i18n toolchain: seamlessly integrate Google Sheets, CLI, and react-i18n for easy translation workflows.",
4
- "version": "1.9.3",
4
+ "version": "1.9.5",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/chltjdrhd777/sheet-i18n"
@@ -50,9 +50,9 @@
50
50
  "license": "ISC",
51
51
  "homepage": "https://github.com/chltjdrhd777/sheet-i18n",
52
52
  "dependencies": {
53
+ "@sheet-i18n/typescript": "0.2.2",
53
54
  "@sheet-i18n/react": "1.5.2",
54
- "@sheet-i18n/importer": "1.9.2",
55
- "@sheet-i18n/typescript": "0.2.1"
55
+ "@sheet-i18n/importer": "1.9.3"
56
56
  },
57
57
  "devDependencies": {
58
58
  "tsup": "^6.0.0",