@cloud-app-dev/vidc 3.2.15 → 3.2.16
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.
- package/es/DynamicGridList/index.d.ts +1 -1
- package/es/DynamicGridList/index.js +1 -1
- package/es/GridList/data.js +605 -605
- package/es/GridList/index.d.ts +1 -1
- package/es/GridList/index.js +1 -1
- package/es/ListWithSizeAnimate/demo.js +27 -26
- package/es/ListWithSizeAnimate/index.d.ts +2 -1
- package/es/ListWithSizeAnimate/index.js +14 -3
- package/es/ListWithSizeAnimate/index.less +5 -0
- package/es/ScreenPlayer/Live.js +2 -2
- package/es/ScreenPlayer/LiveTools.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { TData } from '../useInfiniteScroll';
|
|
3
2
|
import { GridListCell } from '../GridList/interface';
|
|
3
|
+
import { TData } from '../useInfiniteScroll';
|
|
4
4
|
export interface IDynamicGridListProps<T> {
|
|
5
5
|
itemHeight?: number;
|
|
6
6
|
className?: string;
|
|
@@ -6,8 +6,8 @@ function _objectWithoutProperties(source, excluded) { if (source == null) return
|
|
|
6
6
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
7
7
|
|
|
8
8
|
import React, { useMemo, useRef } from 'react';
|
|
9
|
-
import useInfiniteScroll from "../useInfiniteScroll";
|
|
10
9
|
import GridList from "../GridList";
|
|
10
|
+
import useInfiniteScroll from "../useInfiniteScroll";
|
|
11
11
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
12
12
|
|
|
13
13
|
function DynamicGridList(_ref) {
|