We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f67f5f commit 72edaf7Copy full SHA for 72edaf7
2 files changed
apps/demos/.eslintrc.js
@@ -294,6 +294,14 @@ module.exports = {
294
'no-only-tests/no-only-tests': 'error',
295
'react-hooks/rules-of-hooks': 'error',
296
'react-hooks/exhaustive-deps': 'warn',
297
+ "no-restricted-imports": [
298
+ "error",
299
+ {
300
+ "patterns": [
301
+ "devextreme-*/cjs/*",
302
+ ]
303
+ }
304
305
},
306
extends: [
307
'eslint:recommended',
apps/demos/Demos/FilterBuilder/WithDataGrid/Vue/data.ts
@@ -1,4 +1,4 @@
1
-import { type DxDataGridTypes } from "devextreme-vue/data-grid";
+import { type DxDataGridTypes } from "devextreme-vue/cjs/data-grid";
2
import { type DxFilterBuilderTypes } from 'devextreme-vue/filter-builder';
3
4
export const filter = [
0 commit comments