@syook/react-tabulous 3.0.3 → 4.0.0-beta-0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +206 -197
- package/lib/index.esm.js +19 -0
- package/lib/index.esm.js.map +1 -0
- package/lib/index.js +19 -0
- package/lib/index.js.map +1 -0
- package/lib/types/App.d.ts +4 -0
- package/lib/types/__tests__/reactTabulous/components/base/gridBody.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/base/gridFooterPlaceholder.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/bulkAction/bulkActions.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/cell/columnCell.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/columnBody/columnBody.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/columnHeaders/columnHeaderCheckbox.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/columnHeaders/columnHeaderItem.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/columnHeaders/columnHeaderMenu.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/columnHeaders/columnHeaders.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/containers/gridRoot.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/filter/index.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/filter/inputCategories.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/gridHeader.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/pagination/pagination.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/toolbar/gridToolbar.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/toolbar/gridToolbarColumns.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/toolbar/gridToolbarDensity.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/toolbar/gridToolbarExport.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/toolbar/gridToolbarFilter.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/toolbar/gridToolbarQuickFilter.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/widgets/button/button.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/widgets/checkbox.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/widgets/divider.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/widgets/icon.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/widgets/iconButton/iconButton.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/widgets/input/input.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/widgets/inputError/index.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/widgets/inputLabel/index.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/widgets/loader.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/widgets/menu.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/widgets/popup/popup.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/widgets/select/select.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/widgets/switch.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/components/widgets/typography.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/context/dataGridContextProvider.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/helpers/classnames.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/helpers/debounce.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/helpers/getColumnsAndSearchKeys.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/helpers/toCamelCase.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/hooks/useDragHandler.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/hooks/useGridColumn.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/hooks/useGridColumnHeaders.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/hooks/useGridDensity.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/hooks/useGridExport.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/hooks/useGridFilter.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/hooks/useGridPagination.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/hooks/useGridPin.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/hooks/useGridResize.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/hooks/useGridRootProps.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/hooks/useGridRowSelection.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/hooks/useGridSearch.test.d.ts +1 -0
- package/lib/types/__tests__/reactTabulous/hooks/useGridSort.test.d.ts +1 -0
- package/lib/types/data/index.d.ts +83 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/reactTabulous/components/base/gridBody.d.ts +2 -0
- package/lib/types/reactTabulous/components/base/gridFooterPlaceholder.d.ts +2 -0
- package/lib/types/reactTabulous/components/base/index.d.ts +2 -0
- package/lib/types/reactTabulous/components/bulkAction/index.d.ts +9 -0
- package/lib/types/reactTabulous/components/cell/columnCell.d.ts +12 -0
- package/lib/types/reactTabulous/components/cell/gridActionsCellItem.d.ts +10 -0
- package/lib/types/reactTabulous/components/columnBody/columnBody.d.ts +2 -0
- package/lib/types/reactTabulous/components/columnBody/index.d.ts +1 -0
- package/lib/types/reactTabulous/components/columnHeaders/columnHeaderCheckbox.d.ts +7 -0
- package/lib/types/reactTabulous/components/columnHeaders/columnHeaderItem.d.ts +31 -0
- package/lib/types/reactTabulous/components/columnHeaders/columnHeaderMenu.d.ts +18 -0
- package/lib/types/reactTabulous/components/columnHeaders/columnHeaders.d.ts +2 -0
- package/lib/types/reactTabulous/components/columnHeaders/index.d.ts +1 -0
- package/lib/types/reactTabulous/components/containers/gridRoot.d.ts +2 -0
- package/lib/types/reactTabulous/components/containers/index.d.ts +1 -0
- package/lib/types/reactTabulous/components/filter/index.d.ts +13 -0
- package/lib/types/reactTabulous/components/filter/inputCategories.d.ts +13 -0
- package/lib/types/reactTabulous/components/gridHeader.d.ts +2 -0
- package/lib/types/reactTabulous/components/index.d.ts +3 -0
- package/lib/types/reactTabulous/components/overlayWrapper/index.d.ts +1 -0
- package/lib/types/reactTabulous/components/overlayWrapper/overlayWrapper.d.ts +6 -0
- package/lib/types/reactTabulous/components/pagination/index.d.ts +1 -0
- package/lib/types/reactTabulous/components/pagination/pagination.d.ts +2 -0
- package/lib/types/reactTabulous/components/toolbar/gridToolbar.d.ts +6 -0
- package/lib/types/reactTabulous/components/toolbar/gridToolbarColumns.d.ts +2 -0
- package/lib/types/reactTabulous/components/toolbar/gridToolbarDensity.d.ts +2 -0
- package/lib/types/reactTabulous/components/toolbar/gridToolbarExport.d.ts +2 -0
- package/lib/types/reactTabulous/components/toolbar/gridToolbarFilter.d.ts +2 -0
- package/lib/types/reactTabulous/components/toolbar/gridToolbarQuickFilter.d.ts +2 -0
- package/lib/types/reactTabulous/components/toolbar/index.d.ts +6 -0
- package/lib/types/reactTabulous/components/widgets/button/buttonStyle.d.ts +5 -0
- package/lib/types/reactTabulous/components/widgets/button/index.d.ts +21 -0
- package/lib/types/reactTabulous/components/widgets/checkbox.d.ts +7 -0
- package/lib/types/reactTabulous/components/widgets/divider.d.ts +2 -0
- package/lib/types/reactTabulous/components/widgets/icon.d.ts +41 -0
- package/lib/types/reactTabulous/components/widgets/iconButton/index.d.ts +12 -0
- package/lib/types/reactTabulous/components/widgets/index.d.ts +12 -0
- package/lib/types/reactTabulous/components/widgets/input/index.d.ts +26 -0
- package/lib/types/reactTabulous/components/widgets/input/inputStyle.d.ts +5 -0
- package/lib/types/reactTabulous/components/widgets/inputError/index.d.ts +8 -0
- package/lib/types/reactTabulous/components/widgets/inputLabel/index.d.ts +13 -0
- package/lib/types/reactTabulous/components/widgets/loader.d.ts +1 -0
- package/lib/types/reactTabulous/components/widgets/menu.d.ts +16 -0
- package/lib/types/reactTabulous/components/widgets/popup/index.d.ts +12 -0
- package/lib/types/reactTabulous/components/widgets/select/index.d.ts +13 -0
- package/lib/types/reactTabulous/components/widgets/select/selectStyle.d.ts +5 -0
- package/lib/types/reactTabulous/components/widgets/switch.d.ts +8 -0
- package/lib/types/reactTabulous/components/widgets/typography.d.ts +28 -0
- package/lib/types/reactTabulous/constant/index.d.ts +10 -0
- package/lib/types/reactTabulous/constant/noRowsOverlay.d.ts +2 -0
- package/lib/types/reactTabulous/context/dataGridContextProvider.d.ts +6 -0
- package/lib/types/reactTabulous/context/dataGridRootPropsContext.d.ts +3 -0
- package/lib/types/reactTabulous/context/index.d.ts +1 -0
- package/lib/types/reactTabulous/context/test-utils.d.ts +5 -0
- package/lib/types/reactTabulous/helpers/classnames.d.ts +2 -0
- package/lib/types/reactTabulous/helpers/debounce.d.ts +1 -0
- package/lib/types/reactTabulous/helpers/getColumnsAndSearchKeys.d.ts +5 -0
- package/lib/types/reactTabulous/helpers/toCamelCase.d.ts +1 -0
- package/lib/types/reactTabulous/hooks/useClickAwayListener.d.ts +2 -0
- package/lib/types/reactTabulous/hooks/useDragHandler.d.ts +8 -0
- package/lib/types/reactTabulous/hooks/useGridColumn.d.ts +1 -0
- package/lib/types/reactTabulous/hooks/useGridColumnHeaders.d.ts +1 -0
- package/lib/types/reactTabulous/hooks/useGridDensity.d.ts +1 -0
- package/lib/types/reactTabulous/hooks/useGridExport.d.ts +3 -0
- package/lib/types/reactTabulous/hooks/useGridFilter.d.ts +6 -0
- package/lib/types/reactTabulous/hooks/useGridPagination.d.ts +1 -0
- package/lib/types/reactTabulous/hooks/useGridPin.d.ts +1 -0
- package/lib/types/reactTabulous/hooks/useGridResize.d.ts +1 -0
- package/lib/types/reactTabulous/hooks/useGridRootProps.d.ts +48 -0
- package/lib/types/reactTabulous/hooks/useGridRowSelection.d.ts +1 -0
- package/lib/types/reactTabulous/hooks/useGridSearch.d.ts +5 -0
- package/lib/types/reactTabulous/hooks/useGridSort.d.ts +4 -0
- package/lib/types/reactTabulous/index.d.ts +2 -0
- package/lib/types/reactTabulous/models/columnDef/columnDef.d.ts +72 -0
- package/lib/types/reactTabulous/models/columnDef/columnPin.d.ts +48 -0
- package/lib/types/reactTabulous/models/columnDef/columnType.d.ts +2 -0
- package/lib/types/reactTabulous/models/columnDef/index.d.ts +3 -0
- package/lib/types/reactTabulous/models/gridDensity.d.ts +4 -0
- package/lib/types/reactTabulous/models/gridFiltersModel.d.ts +9 -0
- package/lib/types/reactTabulous/models/gridRows.d.ts +2 -0
- package/lib/types/reactTabulous/models/gridSortModel.d.ts +1 -0
- package/lib/types/reactTabulous/models/index.d.ts +7 -0
- package/lib/types/reactTabulous/models/logger.d.ts +6 -0
- package/lib/types/reactTabulous/models/props/dataGridProps.d.ts +158 -0
- package/lib/types/reactTabulous/models/props/index.d.ts +1 -0
- package/lib/types/reactTabulous/reactTabulous/index.d.ts +1 -0
- package/lib/types/reactTabulous/reactTabulous/reactTabulous.d.ts +5 -0
- package/lib/types/reactTabulous/reactTabulous/reactTabulousStyle.d.ts +5 -0
- package/lib/types/setupTests.d.ts +1 -0
- package/package.json +107 -75
- package/CHANGELOG.md +0 -27
- package/lib/react-tabulous.min.js +0 -2
- package/lib/react-tabulous.min.js.LICENSE.txt +0 -20
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
Copyright (c) 2015 Jed Watson.
|
|
3
|
-
Based on code that is Copyright 2013-2015, Facebook, Inc.
|
|
4
|
-
All rights reserved.
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
/*!
|
|
8
|
-
Copyright (c) 2018 Jed Watson.
|
|
9
|
-
Licensed under the MIT License (MIT), see
|
|
10
|
-
http://jedwatson.github.io/classnames
|
|
11
|
-
*/
|
|
12
|
-
|
|
13
|
-
/** @license React v16.13.1
|
|
14
|
-
* react-is.production.min.js
|
|
15
|
-
*
|
|
16
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
17
|
-
*
|
|
18
|
-
* This source code is licensed under the MIT license found in the
|
|
19
|
-
* LICENSE file in the root directory of this source tree.
|
|
20
|
-
*/
|