Merge branch 'master' into msyavuz/chore/react-18

This commit is contained in:
Mehmet Salih Yavuz
2025-09-13 02:35:38 +03:00
128 changed files with 3586 additions and 1821 deletions

View File

@@ -17,23 +17,7 @@
* under the License.
*/
import { debounce } from 'lodash';
import { formatSelectOptions } from '@superset-ui/chart-controls';
import { Constants } from '@superset-ui/core/components';
import { t } from '@superset-ui/core';
export const PAGE_SIZE_OPTIONS = formatSelectOptions<number>([
[0, t('page_size.all')],
1,
2,
3,
4,
5,
10,
20,
50,
100,
200,
]);
export const debounceFunc = debounce(
(func: (val: string) => void, source: string) => func(source),