Skip to content

Commit

Permalink
Update vite version
Browse files Browse the repository at this point in the history
  • Loading branch information
juzser committed Jun 22, 2024
1 parent ab6df5e commit ce5d7c0
Show file tree
Hide file tree
Showing 4 changed files with 3,086 additions and 5,675 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"sass": "^1.69.5",
"typescript": "^5.3.3",
"url": "^0.11.3",
"vite": "^5.0.10",
"vite": "^5.3.1",
"vite-plugin-chunk-split": "^0.5.0",
"vite-plugin-dts": "^3.7.3",
"vite-plugin-eslint": "^1.8.1",
Expand Down
2 changes: 1 addition & 1 deletion src/components/ResourceItem/ResourceItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ import {
} from '@/components';
import { useBreakpoints } from '@/use/useBreakpoints';
import type { DisableableAction } from '@/utilities/types';
import { SELECT_ALL_ITEMS } from '@polaris/utilities/resource-list';
import { SELECT_ALL_ITEMS } from '@/components/IndexProvider/types';
import type { ResourceListSelectedItems, ResourceListContextType } from '@/utilities/types';
import type { InlineStackProps } from '../InlineStack/types';
import styles from '@polaris/components/ResourceItem/ResourceItem.module.css';
Expand Down
3 changes: 1 addition & 2 deletions src/components/ResourceList/ResourceList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ import {
} from '@/components';
import type { PaginationProps } from '@/components/Pagination/types';
import type { BulkActionsProps } from '@/components/BulkActions/types';
import { SELECT_ALL_ITEMS } from '@/components/IndexProvider/types';
import type { SelectOption } from '@/components/Select/types';
import styles from '@polaris/components/ResourceList/ResourceList.module.css';
import CheckboxIcon from '@icons/CheckboxIcon.svg';
Expand All @@ -151,8 +152,6 @@ const LARGE_SPINNER_HEIGHT = 45;
type ResourceListSelectedItems = string[] | 'All';
const SELECT_ALL_ITEMS = 'All';
interface ResourceListItemData {
[data: string]: any;
}
Expand Down
Loading

0 comments on commit ce5d7c0

Please sign in to comment.