mirror of
https://github.com/Baboo7/strapi-plugin-import-export-entries.git
synced 2025-07-29 00:03:55 -04:00
Compare commits
No commits in common. "da0a5d3633faad041e8d410a621783fdc0535489" and "ee7fc354f4aa008fac2aa72ba67bd92322ca06f9" have entirely different histories.
da0a5d3633
...
ee7fc354f4
@ -2,8 +2,6 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||||
|
|
||||||
### [1.23.1](https://github.com/Baboo7/strapi-plugin-import-export-entries/compare/v1.23.0...v1.23.1) (2023-12-27)
|
|
||||||
|
|
||||||
## [1.23.0](https://github.com/Baboo7/strapi-plugin-import-export-entries/compare/v1.22.2...v1.23.0) (2023-12-23)
|
## [1.23.0](https://github.com/Baboo7/strapi-plugin-import-export-entries/compare/v1.22.2...v1.23.0) (2023-12-23)
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Button } from '@strapi/design-system';
|
import { Button } from '@strapi/design-system/Button';
|
||||||
import { CheckPermissions } from '@strapi/helper-plugin';
|
import { CheckPermissions } from '@strapi/helper-plugin';
|
||||||
import Download from '@strapi/icons/Download';
|
import Download from '@strapi/icons/Download';
|
||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
import './style.css';
|
import './style.css';
|
||||||
|
|
||||||
import { Button, Checkbox, Flex, Grid, GridItem, Loader, ModalBody, ModalFooter, ModalHeader, ModalLayout, Option, Portal, Select, Typography } from '@strapi/design-system';
|
import { Button } from '@strapi/design-system/Button';
|
||||||
|
import { Checkbox } from '@strapi/design-system/Checkbox';
|
||||||
|
import { Flex } from '@strapi/design-system/Flex';
|
||||||
|
import { Grid, GridItem } from '@strapi/design-system/Grid';
|
||||||
|
import { Loader } from '@strapi/design-system/Loader';
|
||||||
|
import { ModalBody, ModalFooter, ModalHeader, ModalLayout } from '@strapi/design-system/ModalLayout';
|
||||||
|
import { Portal } from '@strapi/design-system/Portal';
|
||||||
|
import { Option, Select } from '@strapi/design-system/Select';
|
||||||
|
import { Typography } from '@strapi/design-system/Typography';
|
||||||
import pick from 'lodash/pick';
|
import pick from 'lodash/pick';
|
||||||
import range from 'lodash/range';
|
import range from 'lodash/range';
|
||||||
import qs from 'qs';
|
import qs from 'qs';
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { BaseHeaderLayout, Box } from '@strapi/design-system';
|
import { Box } from '@strapi/design-system/Box';
|
||||||
|
import { BaseHeaderLayout } from '@strapi/design-system/Layout';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
import { useI18n } from '../../hooks/useI18n';
|
import { useI18n } from '../../hooks/useI18n';
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Button } from '@strapi/design-system';
|
import { Button } from '@strapi/design-system/Button';
|
||||||
import { CheckPermissions } from '@strapi/helper-plugin';
|
import { CheckPermissions } from '@strapi/helper-plugin';
|
||||||
import Upload from '@strapi/icons/Upload';
|
import Upload from '@strapi/icons/Upload';
|
||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
|
@ -1,6 +1,13 @@
|
|||||||
import './style.css';
|
import './style.css';
|
||||||
|
|
||||||
import { Button, EmptyStateLayout, Flex, Icon, Loader, ModalBody, ModalFooter, ModalHeader, ModalLayout, Portal, Typography } from '@strapi/design-system';
|
import { Button } from '@strapi/design-system/Button';
|
||||||
|
import { EmptyStateLayout } from '@strapi/design-system/EmptyStateLayout';
|
||||||
|
import { Flex } from '@strapi/design-system/Flex';
|
||||||
|
import { Icon } from '@strapi/design-system/Icon';
|
||||||
|
import { Loader } from '@strapi/design-system/Loader';
|
||||||
|
import { ModalBody, ModalFooter, ModalHeader, ModalLayout } from '@strapi/design-system/ModalLayout';
|
||||||
|
import { Portal } from '@strapi/design-system/Portal';
|
||||||
|
import { Typography } from '@strapi/design-system/Typography';
|
||||||
import CheckCircle from '@strapi/icons/CheckCircle';
|
import CheckCircle from '@strapi/icons/CheckCircle';
|
||||||
import IconCode from '@strapi/icons/Code';
|
import IconCode from '@strapi/icons/Code';
|
||||||
import IconFile from '@strapi/icons/File';
|
import IconFile from '@strapi/icons/File';
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
import { Box, Option, Select, Tab, TabGroup, TabPanel, TabPanels, Tabs, Typography } from '@strapi/design-system';
|
import { Box } from '@strapi/design-system/Box';
|
||||||
|
import { Option, Select } from '@strapi/design-system/Select';
|
||||||
|
import { Tab, TabGroup, TabPanel, TabPanels, Tabs } from '@strapi/design-system/Tabs';
|
||||||
|
import { Typography } from '@strapi/design-system/Typography';
|
||||||
import React, { useEffect, useState } from 'react';
|
import React, { useEffect, useState } from 'react';
|
||||||
|
|
||||||
import { api } from '../../../../api';
|
import { api } from '../../../../api';
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import './style.css';
|
import './style.css';
|
||||||
|
|
||||||
import { Alert, Portal } from '@strapi/design-system';
|
import { Alert } from '@strapi/design-system/Alert';
|
||||||
|
import { Portal } from '@strapi/design-system/Portal';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
import { useAlerts } from '../../../hooks/useAlerts';
|
import { useAlerts } from '../../../hooks/useAlerts';
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
import { Box, Divider, Flex, Typography } from '@strapi/design-system';
|
import { Box } from '@strapi/design-system/Box';
|
||||||
|
import { Divider } from '@strapi/design-system/Divider';
|
||||||
|
import { Flex } from '@strapi/design-system/Flex';
|
||||||
|
import { Typography } from '@strapi/design-system/Typography';
|
||||||
import { CheckPermissions } from '@strapi/helper-plugin';
|
import { CheckPermissions } from '@strapi/helper-plugin';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { useIntl } from 'react-intl';
|
import { useIntl } from 'react-intl';
|
||||||
|
@ -1,4 +1,10 @@
|
|||||||
import { Box, Checkbox, ContentLayout, Flex, Link, Option, Select, Typography } from '@strapi/design-system';
|
import { Box } from '@strapi/design-system/Box';
|
||||||
|
import { Checkbox } from '@strapi/design-system/Checkbox';
|
||||||
|
import { Flex } from '@strapi/design-system/Flex';
|
||||||
|
import { ContentLayout } from '@strapi/design-system/Layout';
|
||||||
|
import { Link } from '@strapi/design-system/Link';
|
||||||
|
import { Option, Select } from '@strapi/design-system/Select';
|
||||||
|
import { Typography } from '@strapi/design-system/Typography';
|
||||||
import { CheckPagePermissions } from '@strapi/helper-plugin';
|
import { CheckPagePermissions } from '@strapi/helper-plugin';
|
||||||
import range from 'lodash/range';
|
import range from 'lodash/range';
|
||||||
import React, { memo, useState } from 'react';
|
import React, { memo, useState } from 'react';
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-plugin-import-export-entries",
|
"name": "strapi-plugin-import-export-entries",
|
||||||
"version": "1.23.1",
|
"version": "1.23.0",
|
||||||
"description": "Import/Export data from and to your database in just few clicks.",
|
"description": "Import/Export data from and to your database in just few clicks.",
|
||||||
"strapi": {
|
"strapi": {
|
||||||
"name": "import-export-entries",
|
"name": "import-export-entries",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user