mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 11:54:10 +00:00 
			
		
		
		
	Merge branch 'main' into fix/sanitization-throw-instead-of-filter
This commit is contained in:
		
						commit
						a77d8cfc0b
					
				@ -1,6 +1,6 @@
 | 
			
		||||
module.exports = {
 | 
			
		||||
  root: true,
 | 
			
		||||
  extends: ['custom/front/typescript'],
 | 
			
		||||
  extends: ['custom/front/typescript', 'plugin:storybook/recommended'],
 | 
			
		||||
  parserOptions: {
 | 
			
		||||
    project: ['./tsconfig.eslint.json'],
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
@ -1,10 +0,0 @@
 | 
			
		||||
module.exports = {
 | 
			
		||||
  stories: ['../*.stories.mdx', '../src/**/*.stories.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
 | 
			
		||||
  addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
 | 
			
		||||
  core: {
 | 
			
		||||
    builder: 'webpack5',
 | 
			
		||||
  },
 | 
			
		||||
  typescript: {
 | 
			
		||||
    check: false,
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
							
								
								
									
										47
									
								
								packages/core/helper-plugin/.storybook/main.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										47
									
								
								packages/core/helper-plugin/.storybook/main.ts
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,47 @@
 | 
			
		||||
import type { StorybookConfig } from '@storybook/react-vite';
 | 
			
		||||
import { nodeResolve } from '@rollup/plugin-node-resolve';
 | 
			
		||||
import { dirname, join } from 'path';
 | 
			
		||||
import { mergeConfig } from 'vite';
 | 
			
		||||
 | 
			
		||||
const config: StorybookConfig = {
 | 
			
		||||
  stories: ['../*.stories.mdx', '../src/**/*.stories.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
 | 
			
		||||
 | 
			
		||||
  addons: [
 | 
			
		||||
    getAbsolutePath('@storybook/addon-links'),
 | 
			
		||||
    getAbsolutePath('@storybook/addon-essentials'),
 | 
			
		||||
    getAbsolutePath('@storybook/addon-mdx-gfm'),
 | 
			
		||||
  ],
 | 
			
		||||
 | 
			
		||||
  core: {
 | 
			
		||||
    builder: '@storybook/builder-vite',
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
  typescript: {
 | 
			
		||||
    check: false,
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
  framework: {
 | 
			
		||||
    name: getAbsolutePath('@storybook/react-vite'),
 | 
			
		||||
    options: {},
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
  docs: {
 | 
			
		||||
    autodocs: true,
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
  async viteFinal(config) {
 | 
			
		||||
    // Merge custom configuration into the default config
 | 
			
		||||
    return mergeConfig(config, {
 | 
			
		||||
      /**
 | 
			
		||||
       * This is required to support the import from "@strapi/design-system/v2"
 | 
			
		||||
       */
 | 
			
		||||
      plugins: [nodeResolve()],
 | 
			
		||||
    });
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
function getAbsolutePath<T extends string>(value: T): T {
 | 
			
		||||
  return dirname(require.resolve(join(value, 'package.json'))) as T;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default config;
 | 
			
		||||
@ -1,27 +0,0 @@
 | 
			
		||||
import { DesignSystemProvider } from '@strapi/design-system';
 | 
			
		||||
import { IntlProvider } from 'react-intl';
 | 
			
		||||
import { MemoryRouter } from 'react-router-dom';
 | 
			
		||||
 | 
			
		||||
export const parameters = {
 | 
			
		||||
  actions: { argTypesRegex: '^on[A-Z].*' },
 | 
			
		||||
  controls: {
 | 
			
		||||
    matchers: {
 | 
			
		||||
      color: /(background|color)$/i,
 | 
			
		||||
      date: /Date$/,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export const decorators = [
 | 
			
		||||
  (Story) => (
 | 
			
		||||
    <MemoryRouter>
 | 
			
		||||
      <DesignSystemProvider locale="en">
 | 
			
		||||
        <IntlProvider messages={{}} textComponent="span" locale="en">
 | 
			
		||||
          <main>
 | 
			
		||||
            <Story />
 | 
			
		||||
          </main>
 | 
			
		||||
        </IntlProvider>
 | 
			
		||||
      </DesignSystemProvider>
 | 
			
		||||
    </MemoryRouter>
 | 
			
		||||
  ),
 | 
			
		||||
];
 | 
			
		||||
							
								
								
									
										32
									
								
								packages/core/helper-plugin/.storybook/preview.tsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								packages/core/helper-plugin/.storybook/preview.tsx
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,32 @@
 | 
			
		||||
import React from 'react';
 | 
			
		||||
import { DesignSystemProvider } from '@strapi/design-system';
 | 
			
		||||
import { IntlProvider } from 'react-intl';
 | 
			
		||||
import { MemoryRouter } from 'react-router-dom';
 | 
			
		||||
import { Preview } from '@storybook/react';
 | 
			
		||||
 | 
			
		||||
const preview: Preview = {
 | 
			
		||||
  parameters: {
 | 
			
		||||
    actions: { argTypesRegex: '^on[A-Z].*' },
 | 
			
		||||
    controls: {
 | 
			
		||||
      matchers: {
 | 
			
		||||
        color: /(background|color)$/i,
 | 
			
		||||
        date: /Date$/,
 | 
			
		||||
      },
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  decorators: [
 | 
			
		||||
    (Story) => (
 | 
			
		||||
      <MemoryRouter>
 | 
			
		||||
        <DesignSystemProvider locale="en">
 | 
			
		||||
          <IntlProvider messages={{}} textComponent="span" locale="en">
 | 
			
		||||
            <main>
 | 
			
		||||
              <Story />
 | 
			
		||||
            </main>
 | 
			
		||||
          </IntlProvider>
 | 
			
		||||
        </DesignSystemProvider>
 | 
			
		||||
      </MemoryRouter>
 | 
			
		||||
    ),
 | 
			
		||||
  ],
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export default preview;
 | 
			
		||||
@ -34,9 +34,9 @@
 | 
			
		||||
  "scripts": {
 | 
			
		||||
    "prebuild": "rimraf build",
 | 
			
		||||
    "build": "cross-env NODE_ENV=production webpack-cli",
 | 
			
		||||
    "build-storybook": "build-storybook",
 | 
			
		||||
    "build-storybook": "storybook build",
 | 
			
		||||
    "prepublishOnly": "npm run build",
 | 
			
		||||
    "storybook": "start-storybook -p 6006",
 | 
			
		||||
    "storybook": "storybook dev -p 6006",
 | 
			
		||||
    "test:front": "run -T jest --config ./jest.config.front.js",
 | 
			
		||||
    "test:front:cov": "run -T jest --config ./jest.config.front.js --coverage",
 | 
			
		||||
    "test:front:watch": "run -T jest --config ./jest.config.front.js --watchAll",
 | 
			
		||||
@ -57,12 +57,13 @@
 | 
			
		||||
    "react-select": "5.7.0"
 | 
			
		||||
  },
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "@storybook/addon-actions": "6.5.10",
 | 
			
		||||
    "@storybook/addon-essentials": "6.5.10",
 | 
			
		||||
    "@storybook/addon-links": "6.5.10",
 | 
			
		||||
    "@storybook/builder-webpack5": "6.5.15",
 | 
			
		||||
    "@storybook/manager-webpack5": "6.5.15",
 | 
			
		||||
    "@storybook/react": "^6.5.16",
 | 
			
		||||
    "@rollup/plugin-node-resolve": "15.1.0",
 | 
			
		||||
    "@storybook/addon-actions": "7.2.2",
 | 
			
		||||
    "@storybook/addon-essentials": "7.2.2",
 | 
			
		||||
    "@storybook/addon-links": "7.2.2",
 | 
			
		||||
    "@storybook/addon-mdx-gfm": "7.2.2",
 | 
			
		||||
    "@storybook/builder-vite": "7.2.2",
 | 
			
		||||
    "@storybook/react-vite": "7.2.2",
 | 
			
		||||
    "@strapi/design-system": "1.9.0",
 | 
			
		||||
    "@strapi/icons": "1.9.0",
 | 
			
		||||
    "@testing-library/react": "14.0.0",
 | 
			
		||||
@ -75,13 +76,16 @@
 | 
			
		||||
    "cross-env": "^7.0.3",
 | 
			
		||||
    "esbuild-loader": "^2.21.0",
 | 
			
		||||
    "eslint-config-custom": "4.12.1",
 | 
			
		||||
    "eslint-plugin-storybook": "0.6.13",
 | 
			
		||||
    "msw": "1.2.1",
 | 
			
		||||
    "react": "^18.2.0",
 | 
			
		||||
    "react-dom": "^18.2.0",
 | 
			
		||||
    "react-router-dom": "5.3.4",
 | 
			
		||||
    "rimraf": "3.0.2",
 | 
			
		||||
    "storybook": "7.2.2",
 | 
			
		||||
    "styled-components": "5.3.3",
 | 
			
		||||
    "typescript": "5.1.3",
 | 
			
		||||
    "vite": "4.4.9",
 | 
			
		||||
    "webpack": "^5.88.1",
 | 
			
		||||
    "webpack-cli": "^5.1.0"
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
<!--- AnErrorOccurred.stories.mdx --->
 | 
			
		||||
{/* - AnErrorOccurred.stories.mdx - */}
 | 
			
		||||
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
import { Main, Row, Button } from '@strapi/design-system';
 | 
			
		||||
import { Main, Button } from '@strapi/design-system';
 | 
			
		||||
import { AnErrorOccurred } from './AnErrorOccurred';
 | 
			
		||||
 | 
			
		||||
<Meta title="components/AnErrorOccurred" />
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- CheckPagePermissions.stories.mdx --->
 | 
			
		||||
{/*- CheckPagePermissions.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { ArgsTable, Meta } from '@storybook/addon-docs';
 | 
			
		||||
import { CheckPagePermissions } from './CheckPagePermissions';
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- CheckPermissions.stories.mdx --->
 | 
			
		||||
{/*- CheckPermissions.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { ArgsTable, Meta } from '@storybook/addon-docs';
 | 
			
		||||
import { CheckPermissions } from './CheckPermissions';
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- ConfirmDialog.stories.mdx --->
 | 
			
		||||
{/*- ConfirmDialog.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { useState } from 'react';
 | 
			
		||||
import { ArgsTable, Meta, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- ContentBox.stories.mdx --->
 | 
			
		||||
{/*- ContentBox.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { useState } from 'react';
 | 
			
		||||
import { ArgsTable, Meta, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- DateTimePicker.stories.mdx --->
 | 
			
		||||
{/*- DateTimePicker.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { useState } from 'react';
 | 
			
		||||
import { Meta, Story, Canvas } from '@storybook/addon-docs/blocks';
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- DynamicTable.stories.mdx --->
 | 
			
		||||
{/*- DynamicTable.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { useEffect } from 'react';
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
@ -1,16 +1,7 @@
 | 
			
		||||
<!--- EmptyBodyTable.stories.mdx --->
 | 
			
		||||
{/* - EmptyBodyTable.stories.mdx - */}
 | 
			
		||||
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
import {
 | 
			
		||||
  BaseCheckbox,
 | 
			
		||||
  Box,
 | 
			
		||||
  Main,
 | 
			
		||||
  Table,
 | 
			
		||||
  TableLabel,
 | 
			
		||||
  Th,
 | 
			
		||||
  Thead,
 | 
			
		||||
  VisuallyHidden,
 | 
			
		||||
} from '@strapi/design-system';
 | 
			
		||||
import { BaseCheckbox, Box, Main, Table, Th, Thead, VisuallyHidden } from '@strapi/design-system';
 | 
			
		||||
import { EmptyBodyTable } from './EmptyBodyTable';
 | 
			
		||||
 | 
			
		||||
<Meta title="components/EmptyBodyTable" />
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
<!--- EmptyStateLayout.stories.mdx --->
 | 
			
		||||
{/* - EmptyStateLayout.stories.mdx - */}
 | 
			
		||||
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
import { Main, Row } from '@strapi/design-system';
 | 
			
		||||
import { Main } from '@strapi/design-system';
 | 
			
		||||
import { EmptyStateLayout } from './EmptyStateLayout';
 | 
			
		||||
 | 
			
		||||
<Meta title="components/EmptyStateLayout" />
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- FilterListURLQuery.stories.mdx --->
 | 
			
		||||
{/*- FilterListURLQuery.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { useEffect } from 'react';
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- FilterPopoverURLQuery.stories.mdx --->
 | 
			
		||||
{/*- FilterPopoverURLQuery.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { useEffect, useState, useRef } from 'react';
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
<!--- EmptyStateLayout.stories.mdx --->
 | 
			
		||||
{/* - Form.stories.mdx - */}
 | 
			
		||||
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
import { Main, Row } from '@strapi/design-system';
 | 
			
		||||
import { Main } from '@strapi/design-system';
 | 
			
		||||
import { TextInput } from '@strapi/design-system';
 | 
			
		||||
import { Button } from '@strapi/design-system';
 | 
			
		||||
import { Box } from '@strapi/design-system';
 | 
			
		||||
@ -92,4 +92,4 @@ Make sure to run this story in detached mode. The embeded iframe breaks the focu
 | 
			
		||||
 | 
			
		||||
### Props
 | 
			
		||||
 | 
			
		||||
<ArgsTable of={EmptyStateLayout} />
 | 
			
		||||
<ArgsTable of={Form} />
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- GenericInput.stories.mdx --->
 | 
			
		||||
{/*- GenericInput.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { useState } from 'react';
 | 
			
		||||
import { Meta, Story, Canvas } from '@storybook/addon-docs/blocks';
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- Link.stories.mdx --->
 | 
			
		||||
{/*- Link.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta, Story, Canvas } from '@storybook/addon-docs/blocks';
 | 
			
		||||
import { Box } from '@strapi/design-system';
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- LinkButton.stories.mdx --->
 | 
			
		||||
{/*- LinkButton.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta, Story, Canvas } from '@storybook/addon-docs/blocks';
 | 
			
		||||
import { Box } from '@strapi/design-system';
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- LoadingIndicatorPage.stories.mdx --->
 | 
			
		||||
{/*- LoadingIndicatorPage.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta, Story, Canvas } from '@storybook/addon-docs/blocks';
 | 
			
		||||
import { LoadingIndicatorPage } from './LoadingIndicatorPage';
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
<!--- EmptyStateLayout.stories.mdx --->
 | 
			
		||||
{/* - EmptyStateLayout.stories.mdx - */}
 | 
			
		||||
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
import { Main, Row, Button } from '@strapi/design-system';
 | 
			
		||||
import { Main, Button } from '@strapi/design-system';
 | 
			
		||||
import { NoContent } from './NoContent';
 | 
			
		||||
 | 
			
		||||
<Meta title="components/NoContent" />
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
<!--- EmptyStateLayout.stories.mdx --->
 | 
			
		||||
{/* - EmptyStateLayout.stories.mdx - */}
 | 
			
		||||
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
import { Main, Row, Button } from '@strapi/design-system';
 | 
			
		||||
import { Main, Button } from '@strapi/design-system';
 | 
			
		||||
import { NoMedia } from './NoMedia';
 | 
			
		||||
 | 
			
		||||
<Meta title="components/NoMedia" />
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
<!--- EmptyStateLayout.stories.mdx --->
 | 
			
		||||
{/* - EmptyStateLayout.stories.mdx - */}
 | 
			
		||||
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
import { Main, Row } from '@strapi/design-system';
 | 
			
		||||
import { Main } from '@strapi/design-system';
 | 
			
		||||
import { NoPermissions } from './NoPermissions';
 | 
			
		||||
 | 
			
		||||
<Meta title="components/NoPermissions" />
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- PageSizeURLQuery.stories.mdx --->
 | 
			
		||||
{/*- PageSizeURLQuery.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { useEffect } from 'react';
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- PaginationURLQuery.stories.mdx --->
 | 
			
		||||
{/*- PaginationURLQuery.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { useEffect } from 'react';
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
<!--- RelativeTime.stories.mdx --->
 | 
			
		||||
{/* - RelativeTime.stories.mdx - */}
 | 
			
		||||
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
import { Main, Row, Button } from '@strapi/design-system';
 | 
			
		||||
import { Main, Button } from '@strapi/design-system';
 | 
			
		||||
import { RelativeTime } from './RelativeTime';
 | 
			
		||||
 | 
			
		||||
<Meta title="components/RelativeTime" />
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- Search.stories.mdx --->
 | 
			
		||||
{/*- Search.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { ArgsTable, Meta, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
import { Flex } from '@strapi/design-system';
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- Status.stories.mdx --->
 | 
			
		||||
{/*- Status.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
import { Flex } from '@strapi/design-system';
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- Table.stories.mdx --->
 | 
			
		||||
{/*- Table.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Table, useTableContext } from './Table';
 | 
			
		||||
import { Tbody, Td, Th, Tr, Typography, BaseCheckbox, Button, Flex } from '@strapi/design-system';
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
<!--- useCMEditViewDataManager.stories.mdx --->
 | 
			
		||||
{/* - useCMEditViewDataManager.stories.mdx - */}
 | 
			
		||||
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
import { Main, Row, Button } from '@strapi/design-system';
 | 
			
		||||
import { Main, Button } from '@strapi/design-system';
 | 
			
		||||
 | 
			
		||||
<Meta title="content-manager/hooks/useCMEditViewDataManager" />
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- formatContentTypeData.stories.mdx --->
 | 
			
		||||
{/*- formatContentTypeData.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- useCustomFields.stories.mdx --->
 | 
			
		||||
{/*- useCustomFields.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- GuidedTourProvider.stories.mdx --->
 | 
			
		||||
{/*- GuidedTourProvider.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- useNotification.stories.mdx --->
 | 
			
		||||
{/*- useNotification.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,3 +1,4 @@
 | 
			
		||||
/* eslint-disable check-file/filename-naming-convention */ // this is disabled because the file name is correct however, we do use JSX in this file.
 | 
			
		||||
import React from 'react';
 | 
			
		||||
 | 
			
		||||
import { useIntl } from 'react-intl';
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- useFocusWhenNavigate.stories.mdx --->
 | 
			
		||||
{/*- useFocusWhenNavigate.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- useLockScroll.stories.mdx --->
 | 
			
		||||
{/*- useLockScroll.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- useLockScroll.stories.mdx --->
 | 
			
		||||
{/*- useLockScroll.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- RemoveRoundedButton.stories.mdx --->
 | 
			
		||||
{/*- RemoveRoundedButton.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
import { RemoveRoundedButton } from './RemoveRoundedButton';
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- SortIcon.stories.mdx --->
 | 
			
		||||
{/*- SortIcon.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
import { Typography } from '@strapi/design-system';
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- EmptyStateLayout.stories.mdx --->
 | 
			
		||||
{/*- EmptyStateLayout.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta, ArgsTable, Canvas, Story } from '@storybook/addon-docs';
 | 
			
		||||
import {
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- auth.stories.mdx --->
 | 
			
		||||
{/*- auth.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- await-to-js.stories.mdx --->
 | 
			
		||||
{/*- await-to-js.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- difference.stories.mdx --->
 | 
			
		||||
{/*- difference.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- getFileExtension.stories.mdx --->
 | 
			
		||||
{/*- getFileExtension.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- hasPermissions.stories.mdx --->
 | 
			
		||||
{/*- hasPermissions.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- prefixFileUrlWithBackendUrl.stories.mdx --->
 | 
			
		||||
{/*- prefixFileUrlWithBackendUrl.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- pxToRem.stories.mdx --->
 | 
			
		||||
{/*- pxToRem.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- setHexOpacity.stories.mdx --->
 | 
			
		||||
{/*- setHexOpacity.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
<!--- translatedErrors.stories.mdx --->
 | 
			
		||||
{/*- translatedErrors.stories.mdx -*/}
 | 
			
		||||
 | 
			
		||||
import { Meta } from '@storybook/addon-docs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user