├── apps └── mantine-react-table-docs │ ├── pages │ └── docs │ │ ├── guides │ │ ├── row-pinning.mdx │ │ ├── cell-actions.mdx │ │ └── column-grouping.mdx │ │ └── examples │ │ ├── detail-panel.mdx │ │ ├── lazy-sub-rows.mdx │ │ ├── chart-detail-panel.mdx │ │ ├── dynamic-columns.mdx │ │ ├── lazy-detail-panel.mdx │ │ ├── row-virtualization.mdx │ │ ├── column-virtualization.mdx │ │ └── expanding-tree-flat-parse.mdx │ ├── typings.d.ts │ ├── examples │ ├── minimal │ │ └── sandbox │ │ │ ├── typings.d.ts │ │ │ ├── src │ │ │ ├── vite.env.d.ts │ │ │ └── CSS.module.css │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── basic │ │ └── sandbox │ │ │ ├── src │ │ │ ├── vite.env.d.ts │ │ │ └── main.tsx │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── remote │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── advanced │ │ └── sandbox │ │ │ ├── src │ │ │ ├── vite.env.d.ts │ │ │ └── main.tsx │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── loading │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── progress │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── react-query │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── virtualized │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── column-alignment │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── custom-headless │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── editing-crud-row │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── export-to-csv │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── export-to-pdf │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── external-toolbar │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── mantine-theme │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── manual-selection │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── multi-sorting │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── persistent-state │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── aggregation-multi │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── alternate-pagination │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── column-actions-space │ │ └── sandbox │ │ │ ├── src │ │ │ ├── vite.env.d.ts │ │ │ └── makeData.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── custom-column-actions │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── custom-top-toolbar │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── disable-column-hiding │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── editing-crud-cell │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── editing-crud-modal │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── editing-crud-table │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── editing-crud-tree │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── enable-click-to-copy │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-column-pinning │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-detail-panel │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── enable-editing-cell │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── enable-editing-modal │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-editing-row │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── enable-editing-table │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-expanding-tree │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-row-dragging │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── enable-row-ordering │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── enable-row-selection │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-sticky-header │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── font-awesome-icons │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── infinite-scrolling │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── localization-i18n-ar │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-bg │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-cs │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-da │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-de │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-en │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-es │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-et │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-fi │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-fr │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-hu │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-id │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-it │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-ja │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-ko │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-nl │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-no │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-pl │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-pt │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-ro │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-ru │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-sk │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-sv │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-tr │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-uk │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-vi │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── row-actions-buttons │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── single-row-selection │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── aggregation-and-grouping │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── alternate-column-filtering │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── alternate-detail-panel │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.js │ │ │ └── index.html │ ├── custom-column-filtering-ui │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── customize-css-variables │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── customize-display-columns │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── customize-filter-modes │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── customize-filter-variants │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── customize-row-selection │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── customize-table-styles │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── disable-column-actions │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── disable-column-filters │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── disable-density-toggle │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-column-grouping │ │ └── sandbox │ │ │ ├── src │ │ │ ├── vite.env.d.ts │ │ │ └── main.tsx │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-column-ordering │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-column-resizing │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-filter-facet-values │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-row-numbers-static │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-row-pinning-select │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-row-pinning-static │ │ └── sandbox │ │ │ ├── src │ │ │ ├── vite.env.d.ts │ │ │ └── main.tsx │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-row-pinning-sticky │ │ └── sandbox │ │ │ ├── src │ │ │ ├── vite.env.d.ts │ │ │ └── main.tsx │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-row-virtualization │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── expanding-tree-expanded │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-pt-BR │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-zh-hans │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-zh-hant │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── row-actions-menu-items │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── customize-filter-components │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-column-resizing-no-grow │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-column-virtualization │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-row-numbers-original │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── enable-row-selection-switch │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── expanding-tree-root-expanded │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-sr-Cyrl-RS │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── localization-i18n-sr-Latn-RS │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ ├── customize-global-filter-component │ │ └── sandbox │ │ │ ├── src │ │ │ └── vite.env.d.ts │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.js │ └── localization-i18n-fa │ │ └── sandbox │ │ ├── .gitignore │ │ ├── README.md │ │ ├── tsconfig.node.json │ │ └── vite.config.js │ ├── components │ └── mdx │ │ ├── FAQs.module.css │ │ ├── PopularDocs.module.css │ │ ├── StatBadges.module.css │ │ ├── Paragraph.module.css │ │ ├── Blockquote.tsx │ │ ├── ComparisonTable.module.css │ │ ├── Paragraph.tsx │ │ ├── Blockquote.module.css │ │ ├── BlogAuthor.module.css │ │ └── FeatureTable.module.css │ ├── public │ ├── banner.png │ ├── mrt_logo.png │ ├── contributors │ │ ├── kevinvancott.jpg │ │ ├── ryankholousi.jpeg │ │ └── danielhumphrey.jpeg │ ├── sitemap.xml │ └── robots.txt │ ├── next-env.d.ts │ └── postcss.config.cjs ├── pnpm-workspace.yaml ├── packages └── mantine-react-table │ ├── src │ ├── typings.d.ts │ ├── components │ │ ├── inputs │ │ │ ├── MRT_FilterCheckBox.module.css │ │ │ ├── MRT_FilterRangeFields.module.css │ │ │ ├── MRT_FilterRangeSlider.module.css │ │ │ └── MRT_GlobalFilterTextInput.module.css │ │ ├── buttons │ │ │ ├── MRT_EditActionButtons.module.css │ │ │ ├── MRT_GrabHandleButton.module.css │ │ │ └── MRT_ColumnPinningButtons.module.css │ │ ├── menus │ │ │ ├── MRT_ColumnActionMenu.module.css │ │ │ ├── MRT_FilterOptionMenu.module.css │ │ │ └── MRT_ShowHideColumnsMenu.module.css │ │ ├── toolbar │ │ │ ├── MRT_ToolbarInternalButtons.module.css │ │ │ ├── MRT_ProgressBar.module.css │ │ │ └── common.styles.module.css │ │ ├── head │ │ │ ├── MRT_TableHeadCellFilterContainer.module.css │ │ │ └── MRT_TableHeadRow.module.css │ │ ├── table │ │ │ └── MRT_Table.module.css │ │ └── footer │ │ │ ├── MRT_TableFooterRow.module.css │ │ │ └── MRT_TableFooter.module.css │ ├── fns │ │ └── aggregationFns.ts │ └── utils │ │ └── utils.ts │ ├── index.ts │ ├── vite.config.ts │ ├── tsconfig.node.json │ └── postcss.config.cjs ├── .npmrc ├── .github └── FUNDING.yml ├── .prettierrc ├── .prettierignore ├── .vscode ├── settings.json └── extensions.json └── .editorconfig /apps/mantine-react-table-docs/pages/docs/guides/row-pinning.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/pages/docs/examples/detail-panel.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/pages/docs/examples/lazy-sub-rows.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/pages/docs/guides/cell-actions.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/pages/docs/guides/column-grouping.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/pages/docs/examples/chart-detail-panel.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/pages/docs/examples/dynamic-columns.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/pages/docs/examples/lazy-detail-panel.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/pages/docs/examples/row-virtualization.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - "apps/*" 3 | - "packages/*" 4 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/pages/docs/examples/column-virtualization.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/typings.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.module.css'; 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/pages/docs/examples/expanding-tree-flat-parse.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mantine-react-table/src/typings.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.module.css'; 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | prefer-workspace-packages=true 2 | @fortawesome:registry=https://registry.npmjs.org -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: KevinVandy 4 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/minimal/sandbox/typings.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.module.css'; 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/components/mdx/FAQs.module.css: -------------------------------------------------------------------------------- 1 | .panel { 2 | line-height: 2rem; 3 | } 4 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/basic/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/remote/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/advanced/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/loading/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/minimal/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/progress/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/react-query/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/virtualized/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 80, 3 | "semi": true, 4 | "singleQuote": true, 5 | "trailingComma": "all" 6 | } 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/column-alignment/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-headless/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-row/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/export-to-csv/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/export-to-pdf/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/external-toolbar/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/mantine-theme/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/manual-selection/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/multi-sorting/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/persistent-state/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/aggregation-multi/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-pagination/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/basic/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/column-actions-space/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-column-actions/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-top-toolbar/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-hiding/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-cell/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-modal/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-table/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-tree/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-click-to-copy/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-pinning/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-detail-panel/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-cell/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-modal/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-row/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-table/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-expanding-tree/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-dragging/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-ordering/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-selection/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-sticky-header/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/font-awesome-icons/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/infinite-scrolling/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ar/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-bg/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-cs/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-da/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-de/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-en/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-es/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-et/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-fi/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-fr/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-hu/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-id/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-it/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ja/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ko/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-nl/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-no/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pl/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pt/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ro/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ru/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sk/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sv/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-tr/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-uk/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-vi/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/row-actions-buttons/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/single-row-selection/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/advanced/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/aggregation-and-grouping/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-column-filtering/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-detail-panel/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-column-filtering-ui/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-css-variables/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-display-columns/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-modes/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-variants/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-row-selection/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-table-styles/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-actions/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-filters/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-density-toggle/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-grouping/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-ordering/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-resizing/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-filter-facet-values/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-numbers-static/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-select/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-static/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-sticky/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-virtualization/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/expanding-tree-expanded/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/loading/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pt-BR/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-zh-hans/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-zh-hant/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/minimal/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/progress/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/remote/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/row-actions-menu-items/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | storybook-static 3 | node_modules 4 | types 5 | *.json 6 | .next 7 | *.md 8 | apps/mantine-react-table-docs/.next -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-headless/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-components/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-resizing-no-grow/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-virtualization/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-numbers-original/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-selection-switch/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/expanding-tree-root-expanded/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/export-to-csv/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/export-to-pdf/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/mantine-theme/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/multi-sorting/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/react-query/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/virtualized/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/aggregation-multi/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-pagination/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/column-actions-space/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/column-alignment/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-top-toolbar/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-global-filter-component/sandbox/src/vite.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-cell/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-modal/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-row/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-table/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-tree/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-click-to-copy/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-detail-panel/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-cell/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-modal/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-row/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-table/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-dragging/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-ordering/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-selection/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-sticky-header/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/external-toolbar/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/font-awesome-icons/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/infinite-scrolling/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ar/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-bg/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-cs/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-da/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-de/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-en/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-es/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-et/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-fa/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-fi/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-fr/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-hu/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-id/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-it/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ja/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ko/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-nl/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-no/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pl/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pt/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ro/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ru/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sk/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sv/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-tr/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-uk/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-vi/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/manual-selection/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/minimal/sandbox/src/CSS.module.css: -------------------------------------------------------------------------------- 1 | .table { 2 | th { 3 | font-style: italic; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/persistent-state/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/row-actions-buttons/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/single-row-selection/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/aggregation-and-grouping/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-detail-panel/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-column-actions/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-css-variables/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-display-columns/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-modes/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-variants/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-row-selection/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-table-styles/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-actions/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-filters/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-hiding/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-density-toggle/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-grouping/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-ordering/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-pinning/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-resizing/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-expanding-tree/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-numbers-static/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-select/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-static/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-sticky/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-virtualization/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/expanding-tree-expanded/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pt-BR/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-zh-hans/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-zh-hant/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/row-actions-menu-items/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-column-filtering/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-column-filtering-ui/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-components/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-resizing-no-grow/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-virtualization/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-filter-facet-values/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-numbers-original/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-selection-switch/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/expanding-tree-root-expanded/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /packages/mantine-react-table/index.ts: -------------------------------------------------------------------------------- 1 | // This just for docs real-time development when the `dist` folder is also deleted. 2 | export * from './src'; 3 | -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/inputs/MRT_FilterCheckBox.module.css: -------------------------------------------------------------------------------- 1 | .root { 2 | font-weight: normal; 3 | margin-top: 8px; 4 | } 5 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-global-filter-component/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/public/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinVandy/mantine-react-table/HEAD/apps/mantine-react-table-docs/public/banner.png -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/public/mrt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinVandy/mantine-react-table/HEAD/apps/mantine-react-table-docs/public/mrt_logo.png -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/buttons/MRT_EditActionButtons.module.css: -------------------------------------------------------------------------------- 1 | .root { 2 | display: flex; 3 | gap: var(--mantine-spacing-xs); 4 | } 5 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {"cssVariables.lookupFiles": [ 2 | "**/*.css", 3 | "**/*.scss", 4 | "**/*.sass", 5 | "**/*.less", 6 | "node_modules/@mantine/core/esm/index.css" 7 | ]} -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/advanced/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/basic/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/loading/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/minimal/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/progress/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/remote/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/buttons/MRT_GrabHandleButton.module.css: -------------------------------------------------------------------------------- 1 | .grab-icon { 2 | cursor: grab; 3 | &:active { 4 | cursor: grabbing; 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/inputs/MRT_FilterRangeFields.module.css: -------------------------------------------------------------------------------- 1 | .root { 2 | display: grid; 3 | grid-template-columns: 6fr 6fr; 4 | gap: 16px; 5 | } 6 | -------------------------------------------------------------------------------- /packages/mantine-react-table/src/fns/aggregationFns.ts: -------------------------------------------------------------------------------- 1 | import { aggregationFns } from '@tanstack/react-table'; 2 | 3 | export const MRT_AggregationFns = { ...aggregationFns }; 4 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/export-to-csv/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/export-to-pdf/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/mantine-theme/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/multi-sorting/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/react-query/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/virtualized/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/aggregation-multi/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/column-alignment/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-headless/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-top-toolbar/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-cell/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-modal/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-row/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-table/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-tree/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-detail-panel/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-cell/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-row/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-dragging/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-ordering/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/external-toolbar/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/font-awesome-icons/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/infinite-scrolling/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/manual-selection/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/persistent-state/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/row-actions-buttons/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/aggregation-and-grouping/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-detail-panel/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-pagination/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/column-actions-space/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-column-actions/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-css-variables/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-modes/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-row-selection/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-table-styles/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-actions/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-filters/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-hiding/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-density-toggle/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-click-to-copy/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-grouping/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-ordering/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-pinning/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-resizing/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-modal/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-table/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-expanding-tree/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-selection/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-sticky-header/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/expanding-tree-expanded/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ar/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-bg/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-cs/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-da/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-de/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-en/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-es/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-et/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-fa/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-fi/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-fr/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-hu/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-id/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-it/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ja/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ko/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-nl/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-no/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pl/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pt-BR/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pt/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ro/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ru/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sk/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sv/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-tr/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-uk/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-vi/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/row-actions-menu-items/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/single-row-selection/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/public/contributors/kevinvancott.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinVandy/mantine-react-table/HEAD/apps/mantine-react-table-docs/public/contributors/kevinvancott.jpg -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/menus/MRT_ColumnActionMenu.module.css: -------------------------------------------------------------------------------- 1 | .left { 2 | transform: rotate(90deg); 3 | } 4 | 5 | .right { 6 | transform: rotate(-90deg); 7 | } 8 | -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/toolbar/MRT_ToolbarInternalButtons.module.css: -------------------------------------------------------------------------------- 1 | .root { 2 | align-items: center; 3 | gap: 2px; 4 | z-index: 3; 5 | margin-left: 4px; 6 | } 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-column-filtering/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-column-filtering-ui/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-display-columns/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-components/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-variants/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-virtualization/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-filter-facet-values/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-numbers-original/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-numbers-static/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-select/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-static/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-sticky/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-selection-switch/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-virtualization/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/expanding-tree-root-expanded/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-zh-hans/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-zh-hant/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/public/contributors/ryankholousi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinVandy/mantine-react-table/HEAD/apps/mantine-react-table-docs/public/contributors/ryankholousi.jpeg -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/head/MRT_TableHeadCellFilterContainer.module.css: -------------------------------------------------------------------------------- 1 | .filter-mode-label { 2 | white-space: nowrap; 3 | margin-top: 4px; 4 | font-size: 10px; 5 | } 6 | -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/table/MRT_Table.module.css: -------------------------------------------------------------------------------- 1 | .root { 2 | background-color: var(--mrt-base-background-color); 3 | } 4 | 5 | .root-grid { 6 | display: grid; 7 | } 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-global-filter-component/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-resizing-no-grow/sandbox/README.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | To run this example: 4 | 5 | - `npm install` or `yarn` 6 | - `npm run start` or `yarn start` 7 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/public/contributors/danielhumphrey.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinVandy/mantine-react-table/HEAD/apps/mantine-react-table-docs/public/contributors/danielhumphrey.jpeg -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/inputs/MRT_FilterRangeSlider.module.css: -------------------------------------------------------------------------------- 1 | .root { 2 | margin: auto; 3 | margin-top: 16px; 4 | margin-bottom: 6px; 5 | width: calc(100% - 8px); 6 | } 7 | -------------------------------------------------------------------------------- /packages/mantine-react-table/src/utils/utils.ts: -------------------------------------------------------------------------------- 1 | export const parseFromValuesOrFunc = ( 2 | fn: ((arg: U) => T) | T | undefined, 3 | arg: U, 4 | ): T | undefined => (fn instanceof Function ? fn(arg) : fn); 5 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "pakwoon.css-modules-intellisense", 4 | "henriiik.vscode-sort", 5 | "csstools.postcss", 6 | "unifiedjs.vscode-mdx", 7 | "dbaeumer.vscode-eslint" 8 | ] 9 | } -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/menus/MRT_FilterOptionMenu.module.css: -------------------------------------------------------------------------------- 1 | .symbol { 2 | font-size: var(--mantine-font-size-xl); 3 | text-align: center; 4 | width: 2ch; 5 | transform: translateY(-0.1em); 6 | } 7 | -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/toolbar/MRT_ProgressBar.module.css: -------------------------------------------------------------------------------- 1 | .collapse { 2 | position: absolute; 3 | width: 100%; 4 | top: 0; 5 | } 6 | 7 | .collapse-top { 8 | bottom: 0; 9 | top: unset; 10 | } 11 | -------------------------------------------------------------------------------- /packages/mantine-react-table/vite.config.ts: -------------------------------------------------------------------------------- 1 | import react from '@vitejs/plugin-react'; 2 | import { defineConfig } from 'vite'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/advanced/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/basic/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/loading/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/minimal/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/progress/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/remote/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/export-to-csv/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/export-to-pdf/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/mantine-theme/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/multi-sorting/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/react-query/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/virtualized/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/aggregation-multi/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/column-alignment/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-headless/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-top-toolbar/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-cell/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-modal/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-row/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-table/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-tree/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-row/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/external-toolbar/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/font-awesome-icons/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/infinite-scrolling/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/manual-selection/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/persistent-state/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-detail-panel/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-pagination/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/basic/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/column-actions-space/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-column-actions/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-css-variables/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-modes/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-row-selection/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-table-styles/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-actions/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-filters/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-hiding/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-density-toggle/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-click-to-copy/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-grouping/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-ordering/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-pinning/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-resizing/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-detail-panel/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-cell/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-modal/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-table/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-expanding-tree/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-dragging/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-ordering/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-selection/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-sticky-header/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/expanding-tree-expanded/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/loading/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ar/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-bg/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-cs/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-da/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-de/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-en/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-es/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-et/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-fa/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-fi/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-fr/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-hu/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-id/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-it/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ja/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ko/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-nl/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-no/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pl/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pt-BR/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pt/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ro/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ru/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sk/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sv/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-tr/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-uk/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-vi/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/minimal/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/remote/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/row-actions-buttons/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/row-actions-menu-items/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/single-row-selection/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/public/sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | https://www.mantine-react-table.com/sitemap-0.xml 4 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/advanced/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/aggregation-and-grouping/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-column-filtering/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-column-filtering-ui/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-display-columns/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-components/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-variants/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-virtualization/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-filter-facet-values/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-numbers-original/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-numbers-static/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-select/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-static/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-sticky/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-selection-switch/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-virtualization/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/expanding-tree-root-expanded/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-zh-hans/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-zh-hant/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/progress/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/react-query/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/virtualized/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/components/mdx/PopularDocs.module.css: -------------------------------------------------------------------------------- 1 | .container { 2 | display: grid; 3 | grid-template-columns: 1fr 1fr 1fr 1fr; 4 | gap: 0.9rem; 5 | @media (max-width: 1024px) { 6 | grid-template-columns: 1fr 1fr; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/aggregation-multi/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/column-alignment/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-headless/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-global-filter-component/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-cell/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-row/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-tree/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-resizing-no-grow/sandbox/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/export-to-csv/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/export-to-pdf/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/external-toolbar/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/mantine-theme/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/manual-selection/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/multi-sorting/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/persistent-state/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/components/mdx/StatBadges.module.css: -------------------------------------------------------------------------------- 1 | .statBadges { 2 | display: flex; 3 | gap: 16px; 4 | justify-content: center; 5 | flex-wrap: wrap; 6 | margin: 16px; 7 | 8 | & img { 9 | image-rendering: pixelated; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-detail-panel/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-pagination/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/column-actions-space/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-column-actions/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-top-toolbar/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-modes/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-table-styles/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-actions/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-filters/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-column-hiding/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/disable-density-toggle/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-modal/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-table/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-click-to-copy/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-grouping/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-ordering/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-pinning/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-resizing/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-detail-panel/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-cell/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-modal/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-row/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-table/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-expanding-tree/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-dragging/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-ordering/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-selection/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-sticky-header/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/font-awesome-icons/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/infinite-scrolling/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ar/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-bg/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-cs/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-da/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-de/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-en/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-es/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-et/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-fa/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-fi/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-fr/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-hu/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-id/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-it/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ja/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ko/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-nl/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-no/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pl/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pt/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ro/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-ru/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sk/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sv/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-tr/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-uk/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-vi/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/row-actions-buttons/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/row-actions-menu-items/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/single-row-selection/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/inputs/MRT_GlobalFilterTextInput.module.css: -------------------------------------------------------------------------------- 1 | .root { 2 | z-index: 2; 3 | position: relative; 4 | } 5 | 6 | .collapse { 7 | display: flex; 8 | align-items: center; 9 | gap: 4px; 10 | flex-wrap: nowrap; 11 | } 12 | -------------------------------------------------------------------------------- /packages/mantine-react-table/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node", 6 | "allowSyntheticDefaultImports": true 7 | }, 8 | "include": ["vite.config.ts"] 9 | } 10 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/aggregation-and-grouping/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-column-filtering/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-column-filtering-ui/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-css-variables/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-display-columns/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-components/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-filter-variants/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-row-selection/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-filter-facet-values/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-numbers-original/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-numbers-static/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-select/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-static/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-sticky/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-selection-switch/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-virtualization/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/expanding-tree-expanded/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-pt-BR/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-zh-hans/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-zh-hant/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/components/mdx/Paragraph.module.css: -------------------------------------------------------------------------------- 1 | .paragraph { 2 | text-align: left; 3 | line-height: 1.75rem; 4 | margin: 12px 0; 5 | 6 | /* TODO: CHECK width for md */ 7 | @media (min-width: 768px) { 8 | text-align: justify; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-resizing-no-grow/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-virtualization/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/expanding-tree-root-expanded/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/public/robots.txt: -------------------------------------------------------------------------------- 1 | # * 2 | User-agent: * 3 | Allow: / 4 | Disallow: /api/data 5 | Disallow: /proxy 6 | 7 | # Host 8 | Host: https://www.mantine-react-table.com 9 | 10 | # Sitemaps 11 | Sitemap: https://www.mantine-react-table.com/sitemap.xml 12 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/customize-global-filter-component/sandbox/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }); 8 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | 4 | // NOTE: This file should not be edited 5 | // see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information. 6 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/column-actions-space/sandbox/src/makeData.ts: -------------------------------------------------------------------------------- 1 | export const data = [ 2 | { 3 | id: 1, 4 | firstName: 'Dillon', 5 | lastName: 'Howler', 6 | }, 7 | { 8 | id: 2, 9 | firstName: 'Ross', 10 | lastName: 'Everest', 11 | }, 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/head/MRT_TableHeadRow.module.css: -------------------------------------------------------------------------------- 1 | .root { 2 | background-color: var(--mrt-base-background-color); 3 | display: table-row; 4 | &.layout-mode-grid { 5 | display: flex; 6 | } 7 | } 8 | 9 | .sticky { 10 | position: sticky; 11 | top: 0; 12 | } 13 | -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/buttons/MRT_ColumnPinningButtons.module.css: -------------------------------------------------------------------------------- 1 | .root { 2 | min-width: 70px; 3 | align-content: center; 4 | justify-content: center; 5 | .left { 6 | transform: rotate(90deg); 7 | } 8 | .right { 9 | transform: rotate(-90deg); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/menus/MRT_ShowHideColumnsMenu.module.css: -------------------------------------------------------------------------------- 1 | .root { 2 | max-height: calc(80vh - 100px); 3 | overflow-y: auto; 4 | .content { 5 | padding-top: rem(4px); 6 | padding-bottom: rem(4px); 7 | gap: rem(8px); 8 | justify-content: space-between; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/components/mdx/Blockquote.tsx: -------------------------------------------------------------------------------- 1 | import { Blockquote as MantineBlockquote } from '@mantine/core'; 2 | import classes from './Blockquote.module.css'; 3 | 4 | export const Blockquote = (props) => { 5 | return ( 6 | 7 | ); 8 | }; 9 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/components/mdx/ComparisonTable.module.css: -------------------------------------------------------------------------------- 1 | .libraryAnchor { 2 | color: var(--TODO); 3 | font-weight: bold; 4 | text-decoration: none; 5 | &:hover { 6 | text-decoration: underline; 7 | } 8 | } 9 | 10 | .bundleSize { 11 | display: flex; 12 | align-items: center; 13 | gap: 1ch; 14 | } 15 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/components/mdx/Paragraph.tsx: -------------------------------------------------------------------------------- 1 | import { Text } from '@mantine/core'; 2 | import clsx from 'clsx'; 3 | import classes from './Paragraph.module.css'; 4 | 5 | export function Paragraph(props: any) { 6 | return ( 7 | 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/components/mdx/Blockquote.module.css: -------------------------------------------------------------------------------- 1 | .blockquote { 2 | border-left: solid 8px var(--mantine-primary-color-filled); 3 | padding: 8px 16px; 4 | background-color: var(--mantine-primary-color-light); 5 | border-radius: 4px; 6 | margin: 3rem; 7 | @media (max-width: 720px) { 8 | margin: 16px; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/components/mdx/BlogAuthor.module.css: -------------------------------------------------------------------------------- 1 | .blogauthor { 2 | display: grid; 3 | grid-template-columns: auto 50px; 4 | gap: 1rem; 5 | justify-content: flex-start; 6 | align-items: center; 7 | } 8 | 9 | .anchor { 10 | text-decoration: none; 11 | 12 | &:hover { 13 | text-decoration: underline; 14 | } 15 | } -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/toolbar/common.styles.module.css: -------------------------------------------------------------------------------- 1 | .common-toolbar-styles { 2 | align-items: flex-start; 3 | display: grid; 4 | flex-wrap: wrap-reverse; 5 | min-height: calc(3.5rem * var(--mantine-scale)); 6 | overflow: visible; 7 | padding: 0; 8 | transition: all 150ms ease-in-out; 9 | z-index: 3; 10 | } 11 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-static/sandbox/src/main.tsx: -------------------------------------------------------------------------------- 1 | import { StrictMode } from 'react'; 2 | import ReactDOM from 'react-dom/client'; 3 | import Example from './TS'; 4 | 5 | ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( 6 | 7 | 8 | , 9 | ); 10 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-pinning-sticky/sandbox/src/main.tsx: -------------------------------------------------------------------------------- 1 | import { StrictMode } from 'react'; 2 | import ReactDOM from 'react-dom/client'; 3 | import Example from './TS'; 4 | 5 | ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( 6 | 7 | 8 | , 9 | ); 10 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-column-grouping/sandbox/src/main.tsx: -------------------------------------------------------------------------------- 1 | import { StrictMode } from 'react'; 2 | import ReactDOM from 'react-dom/client'; 3 | import ExampleGrouping from './TS'; 4 | 5 | ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( 6 | 7 | 8 | , 9 | ); 10 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/components/mdx/FeatureTable.module.css: -------------------------------------------------------------------------------- 1 | .mantineReactTable { 2 | width: 100%; 3 | border-collapse: collapse; 4 | caption-side: top; 5 | @mixin dark { 6 | color: var(--mantine-color-white); 7 | } 8 | @mixin light { 9 | color: var(--mantine-color-black); 10 | } 11 | line-height: 1.55; 12 | display: table; 13 | } 14 | -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/footer/MRT_TableFooterRow.module.css: -------------------------------------------------------------------------------- 1 | .root { 2 | width: 100%; 3 | display: table-row; 4 | &.layout-mode-grid { 5 | display: flex; 6 | } 7 | background-color: light-dark(var(--light-bg-color), var(--dark-bg-color)); 8 | border-top: 1px solid 9 | light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-4)); 10 | } 11 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/advanced/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/basic/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/loading/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/minimal/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/progress/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/remote/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/export-to-csv/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/export-to-pdf/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/mantine-theme/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/multi-sorting/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/react-query/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/virtualized/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/aggregation-multi/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/basic/sandbox/src/main.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom/client'; 3 | import Example from './TS'; 4 | import { MantineProvider } from '@mantine/core'; 5 | 6 | ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( 7 | 8 | 9 | 10 | 11 | , 12 | ); 13 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/column-alignment/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-headless/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/custom-top-toolbar/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-cell/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-modal/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-row/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-table/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/editing-crud-tree/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Material React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-detail-panel/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-cell/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-editing-row/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-dragging/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/enable-row-ordering/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/external-toolbar/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/font-awesome-icons/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/infinite-scrolling/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/manual-selection/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/persistent-state/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/row-actions-buttons/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | 'postcss-preset-mantine': {}, 4 | 'postcss-simple-vars': { 5 | variables: { 6 | 'mantine-breakpoint-xs': '36em', 7 | 'mantine-breakpoint-sm': '48em', 8 | 'mantine-breakpoint-md': '62em', 9 | 'mantine-breakpoint-lg': '75em', 10 | 'mantine-breakpoint-xl': '88em', 11 | }, 12 | }, 13 | }, 14 | }; -------------------------------------------------------------------------------- /packages/mantine-react-table/postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | 'postcss-preset-mantine': {}, 4 | 'postcss-simple-vars': { 5 | variables: { 6 | 'mantine-breakpoint-xs': '36em', 7 | 'mantine-breakpoint-sm': '48em', 8 | 'mantine-breakpoint-md': '62em', 9 | 'mantine-breakpoint-lg': '75em', 10 | 'mantine-breakpoint-xl': '88em', 11 | }, 12 | }, 13 | }, 14 | }; -------------------------------------------------------------------------------- /packages/mantine-react-table/src/components/footer/MRT_TableFooter.module.css: -------------------------------------------------------------------------------- 1 | .root { 2 | background-color: var(--mrt-base-background-color); 3 | display: table-row-group; 4 | } 5 | 6 | .grid { 7 | display: grid; 8 | } 9 | 10 | .sticky { 11 | bottom: 0; 12 | opacity: 0.97; 13 | position: sticky; 14 | z-index: 1; 15 | outline: 1px solid 16 | light-dark(var(--mantine-color-gray-3), var(--mantine-color-gray-7)); 17 | } 18 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/advanced/sandbox/src/main.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom/client'; 3 | import Example from './TS'; 4 | import { MantineProvider } from '@mantine/core'; 5 | 6 | ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( 7 | 8 | 9 | 10 | 11 | , 12 | ); 13 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/aggregation-and-grouping/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/mantine-react-table-docs/examples/alternate-detail-panel/sandbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mantine React Table Example 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | --------------------------------------------------------------------------------