rotion 1.13.0 → 1.13.2

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 (28) hide show
  1. package/README.ja.md +117 -0
  2. package/README.md +101 -11
  3. package/dist/ui/cjs/index.js +1 -1
  4. package/dist/ui/cjs/index.js.map +1 -1
  5. package/dist/ui/cjs/types/ui/components/Page/BulletedListBlock/BulletedListBlock.d.ts +2 -2
  6. package/dist/ui/cjs/types/ui/components/Page/ListBlocks/ListBlocks.types.d.ts +1 -0
  7. package/dist/ui/cjs/types/ui/components/Page/NumberedListBlock/NumberedListBlock.d.ts +2 -2
  8. package/dist/ui/cjs/types/ui/components/Page/Page.d.ts +2 -2
  9. package/dist/ui/cjs/types/ui/components/Page/PageHandler.d.ts +2 -2
  10. package/dist/ui/cjs/types/ui/components/Page/TextBlock/TextBlock.types.d.ts +1 -0
  11. package/dist/ui/esm/index.js +1 -1
  12. package/dist/ui/esm/index.js.map +1 -1
  13. package/dist/ui/esm/types/ui/components/Page/BulletedListBlock/BulletedListBlock.d.ts +2 -2
  14. package/dist/ui/esm/types/ui/components/Page/ListBlocks/ListBlocks.types.d.ts +1 -0
  15. package/dist/ui/esm/types/ui/components/Page/NumberedListBlock/NumberedListBlock.d.ts +2 -2
  16. package/dist/ui/esm/types/ui/components/Page/Page.d.ts +2 -2
  17. package/dist/ui/esm/types/ui/components/Page/PageHandler.d.ts +2 -2
  18. package/dist/ui/esm/types/ui/components/Page/TextBlock/TextBlock.types.d.ts +1 -0
  19. package/dist/ui/types.d.ts +6 -5
  20. package/dist/ui/umd/index.js +1 -1
  21. package/dist/ui/umd/index.js.map +1 -1
  22. package/dist/ui/umd/types/ui/components/Page/BulletedListBlock/BulletedListBlock.d.ts +2 -2
  23. package/dist/ui/umd/types/ui/components/Page/ListBlocks/ListBlocks.types.d.ts +1 -0
  24. package/dist/ui/umd/types/ui/components/Page/NumberedListBlock/NumberedListBlock.d.ts +2 -2
  25. package/dist/ui/umd/types/ui/components/Page/Page.d.ts +2 -2
  26. package/dist/ui/umd/types/ui/components/Page/PageHandler.d.ts +2 -2
  27. package/dist/ui/umd/types/ui/components/Page/TextBlock/TextBlock.types.d.ts +1 -0
  28. package/package.json +3 -4
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import { JSX } from 'react';
2
2
  import type { BulletedListBlockProps } from './BulletedListBlock.types';
3
3
  import '../../tokens.css';
4
4
  import './BulletedListBlock.css';
5
- declare const BulletedListBlock: ({ block, href, link, query }: BulletedListBlockProps) => React.JSX.Element;
5
+ declare const BulletedListBlock: ({ block, href, link, query }: BulletedListBlockProps) => JSX.Element;
6
6
  export default BulletedListBlock;
@@ -1,3 +1,4 @@
1
+ import type { JSX } from 'react';
1
2
  import type { Link } from '../../types';
2
3
  import type { BlockObjectResponse } from '../../../../exporter';
3
4
  import type { ParsedUrlQueryInput } from 'node:querystring';
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import { JSX } from 'react';
2
2
  import type { NumberedListBlockProps } from './NumberedListBlock.types';
3
3
  import '../../tokens.css';
4
4
  import './NumberedListBlock.css';
5
- declare const NumberedListBlock: ({ block, href, link, query }: NumberedListBlockProps) => React.JSX.Element;
5
+ declare const NumberedListBlock: ({ block, href, link, query }: NumberedListBlockProps) => JSX.Element;
6
6
  export default NumberedListBlock;
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import { JSX } from 'react';
2
2
  import type { PageProps } from './Page.types';
3
- export declare const Page: ({ blocks, href, link, query, breadcrumb_hrefs }: PageProps) => React.JSX.Element;
3
+ export declare const Page: ({ blocks, href, link, query, breadcrumb_hrefs }: PageProps) => JSX.Element;
4
4
  export default Page;
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import { JSX } from 'react';
2
2
  import type { HandlerProps } from './PageHandler.types';
3
3
  export declare const blockType: {
4
4
  heading_1: string;
@@ -11,5 +11,5 @@ export declare const blockType: {
11
11
  code: string;
12
12
  quote: string;
13
13
  };
14
- export declare const PageHandler: ({ block, href, link, query, breadcrumb_hrefs }: HandlerProps) => React.JSX.Element;
14
+ export declare const PageHandler: ({ block, href, link, query, breadcrumb_hrefs }: HandlerProps) => JSX.Element;
15
15
  export default PageHandler;
@@ -1,3 +1,4 @@
1
+ import type { JSX } from 'react';
1
2
  import type { ParagraphBlockObjectResponseEx, Heading1BlockObjectResponse, Heading2BlockObjectResponse, Heading3BlockObjectResponse, QuoteBlockObjectResponse, DividerBlockObjectResponse } from '../../../../exporter';
2
3
  export interface TextBlockProps {
3
4
  tag: keyof JSX.IntrinsicElements;