rotion 0.3.1 → 0.3.3

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 (35) hide show
  1. package/README.md +0 -138
  2. package/dist/exporter/api.js +1 -1
  3. package/dist/exporter/api.js.map +1 -1
  4. package/dist/exporter/blocks.js +5 -2
  5. package/dist/exporter/blocks.js.map +1 -1
  6. package/dist/exporter/database.js +11 -2
  7. package/dist/exporter/database.js.map +1 -1
  8. package/dist/exporter/files.d.ts +1 -1
  9. package/dist/exporter/files.js +3 -3
  10. package/dist/exporter/files.js.map +1 -1
  11. package/dist/exporter/page.js +5 -2
  12. package/dist/exporter/page.js.map +1 -1
  13. package/dist/exporter/variables.d.ts +1 -0
  14. package/dist/exporter/variables.js +1 -0
  15. package/dist/exporter/variables.js.map +1 -1
  16. package/dist/ui/cjs/index.css +1 -1
  17. package/dist/ui/cjs/index.js +1 -1
  18. package/dist/ui/cjs/index.js.map +1 -1
  19. package/dist/ui/cjs/types/exporter/files.d.ts +1 -1
  20. package/dist/ui/cjs/types/exporter/variables.d.ts +1 -0
  21. package/dist/ui/cjs/types/ui/components/Page/TableBlock/TableBlock.types.d.ts +1 -1
  22. package/dist/ui/esm/index.css +1 -1
  23. package/dist/ui/esm/index.js +1 -1
  24. package/dist/ui/esm/index.js.map +1 -1
  25. package/dist/ui/esm/types/exporter/files.d.ts +1 -1
  26. package/dist/ui/esm/types/exporter/variables.d.ts +1 -0
  27. package/dist/ui/esm/types/ui/components/Page/TableBlock/TableBlock.types.d.ts +1 -1
  28. package/dist/ui/style-without-dark.css +1 -1
  29. package/dist/ui/umd/index.css +1 -1
  30. package/dist/ui/umd/index.js +1 -1
  31. package/dist/ui/umd/index.js.map +1 -1
  32. package/dist/ui/umd/types/exporter/files.d.ts +1 -1
  33. package/dist/ui/umd/types/exporter/variables.d.ts +1 -0
  34. package/dist/ui/umd/types/ui/components/Page/TableBlock/TableBlock.types.d.ts +1 -1
  35. package/package.json +1 -1
@@ -5,7 +5,7 @@ export declare const atoh: (a: string) => string;
5
5
  export declare const createDirWhenNotfound: (dir: string) => Promise<void>;
6
6
  export declare function readCache<T>(f: string): Promise<T>;
7
7
  export declare function writeCache(f: string, data: unknown): Promise<void>;
8
- export declare function isAvailableCache(f: string, seconds: number): Promise<boolean>;
8
+ export declare function isAvailableCache(f: string): Promise<boolean>;
9
9
  export declare function saveFile(fileUrl: string, prefix: string): Promise<{
10
10
  src: string;
11
11
  size: number;
@@ -2,6 +2,7 @@ export declare const cacheDir: string;
2
2
  export declare const waitingTimeSec: number;
3
3
  export declare const waitTimeSecAfterLimit: number;
4
4
  export declare const incrementalCache: boolean;
5
+ export declare const cacheAvailableDuration: number;
5
6
  export declare const auth: string | undefined;
6
7
  export declare const googleMapKey: string | undefined;
7
8
  export declare const docRoot: string;
@@ -8,6 +8,6 @@ export interface TrProps {
8
8
  children: ReactNode;
9
9
  }
10
10
  export interface ThTdProps {
11
- cell: RichTextItemResponse;
11
+ richTexts: RichTextItemResponse[];
12
12
  key: string;
13
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rotion",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "license": "MIT",
5
5
  "repository": "linyows/rotion",
6
6
  "description": "This is react components that uses the notion API to display the notion's database and page.",