@codezee-org/sixtify-smartgrid 0.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 +95 -0
- package/package.json +109 -0
- package/packages/shared-components/dist/Button/ActionButton.d.ts +7 -0
- package/packages/shared-components/dist/Button/ActionButton.d.ts.map +1 -0
- package/packages/shared-components/dist/Button/Button.d.ts +14 -0
- package/packages/shared-components/dist/Button/Button.d.ts.map +1 -0
- package/packages/shared-components/dist/Button/ButtonGroup.d.ts +22 -0
- package/packages/shared-components/dist/Button/ButtonGroup.d.ts.map +1 -0
- package/packages/shared-components/dist/Button/SplitButton.d.ts +30 -0
- package/packages/shared-components/dist/Button/SplitButton.d.ts.map +1 -0
- package/packages/shared-components/dist/Button/index.d.ts +5 -0
- package/packages/shared-components/dist/Button/index.d.ts.map +1 -0
- package/packages/shared-components/dist/Button/types.d.ts +2 -0
- package/packages/shared-components/dist/Button/types.d.ts.map +1 -0
- package/packages/shared-components/dist/FormFields/index.d.ts +2 -0
- package/packages/shared-components/dist/FormFields/index.d.ts.map +1 -0
- package/packages/shared-components/dist/FormFields/types.d.ts +5 -0
- package/packages/shared-components/dist/FormFields/types.d.ts.map +1 -0
- package/packages/shared-components/dist/Loader/FacebookCircularProgress.d.ts +3 -0
- package/packages/shared-components/dist/Loader/FacebookCircularProgress.d.ts.map +1 -0
- package/packages/shared-components/dist/Loader/index.d.ts +2 -0
- package/packages/shared-components/dist/Loader/index.d.ts.map +1 -0
- package/packages/shared-components/dist/PadBox/PadBox.d.ts +6 -0
- package/packages/shared-components/dist/PadBox/PadBox.d.ts.map +1 -0
- package/packages/shared-components/dist/PadBox/index.d.ts +2 -0
- package/packages/shared-components/dist/PadBox/index.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/CellRenderer.d.ts +12 -0
- package/packages/shared-components/dist/SmartGrid/Components/CellRenderer.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/CircularLoader.d.ts +2 -0
- package/packages/shared-components/dist/SmartGrid/Components/CircularLoader.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/ColumnArranger.d.ts +21 -0
- package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/ColumnArranger.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/ColumnArrangerDialog.d.ts +18 -0
- package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/ColumnArrangerDialog.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/ColumnArrangerForm.d.ts +18 -0
- package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/ColumnArrangerForm.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/ColumnItem.d.ts +17 -0
- package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/ColumnItem.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/LockedColumnItem.d.ts +6 -0
- package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/LockedColumnItem.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/hooks/useRefinedColumns.d.ts +13 -0
- package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/hooks/useRefinedColumns.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/DataNotFound.d.ts +8 -0
- package/packages/shared-components/dist/SmartGrid/Components/DataNotFound.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/EditableFields/SmartSelectField.d.ts +7 -0
- package/packages/shared-components/dist/SmartGrid/Components/EditableFields/SmartSelectField.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/EditableFields/SmartTextField.d.ts +5 -0
- package/packages/shared-components/dist/SmartGrid/Components/EditableFields/SmartTextField.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/EditableFields/SmartTooltip.d.ts +9 -0
- package/packages/shared-components/dist/SmartGrid/Components/EditableFields/SmartTooltip.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/EditableFields/index.d.ts +4 -0
- package/packages/shared-components/dist/SmartGrid/Components/EditableFields/index.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/FacetedFilter/FacetedFilter.d.ts +8 -0
- package/packages/shared-components/dist/SmartGrid/Components/FacetedFilter/FacetedFilter.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/FacetedFilter/VirtualCheckboxList.d.ts +8 -0
- package/packages/shared-components/dist/SmartGrid/Components/FacetedFilter/VirtualCheckboxList.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/FacetedFilter/hooks/useGetDynamicOptionData.d.ts +11 -0
- package/packages/shared-components/dist/SmartGrid/Components/FacetedFilter/hooks/useGetDynamicOptionData.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/FilterStatusPanel.d.ts +9 -0
- package/packages/shared-components/dist/SmartGrid/Components/FilterStatusPanel.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/Grouped/GroupAreaOverlay.d.ts +12 -0
- package/packages/shared-components/dist/SmartGrid/Components/Grouped/GroupAreaOverlay.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/Grouped/GroupChip.d.ts +10 -0
- package/packages/shared-components/dist/SmartGrid/Components/Grouped/GroupChip.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/Grouped/GroupedColumn.d.ts +8 -0
- package/packages/shared-components/dist/SmartGrid/Components/Grouped/GroupedColumn.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/Grouped/GroupedPanel.d.ts +10 -0
- package/packages/shared-components/dist/SmartGrid/Components/Grouped/GroupedPanel.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/HeaderCells/DraggableHeaderCell.d.ts +11 -0
- package/packages/shared-components/dist/SmartGrid/Components/HeaderCells/DraggableHeaderCell.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/HeaderCells/DraggableHeaderGroupRows.d.ts +13 -0
- package/packages/shared-components/dist/SmartGrid/Components/HeaderCells/DraggableHeaderGroupRows.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/HeaderCells/HeaderCell.d.ts +20 -0
- package/packages/shared-components/dist/SmartGrid/Components/HeaderCells/HeaderCell.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/IndeterminateCheckbox.d.ts +11 -0
- package/packages/shared-components/dist/SmartGrid/Components/IndeterminateCheckbox.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/SearchFilterRow/DateRangeInput/DateRangeInput.d.ts +8 -0
- package/packages/shared-components/dist/SmartGrid/Components/SearchFilterRow/DateRangeInput/DateRangeInput.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/SearchFilterRow/DateRangeInput/StyleDateRangeWrapper.d.ts +6 -0
- package/packages/shared-components/dist/SmartGrid/Components/SearchFilterRow/DateRangeInput/StyleDateRangeWrapper.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/SearchFilterRow/DebouncedInput.d.ts +12 -0
- package/packages/shared-components/dist/SmartGrid/Components/SearchFilterRow/DebouncedInput.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/SearchFilterRow/GetRenderInputs.d.ts +9 -0
- package/packages/shared-components/dist/SmartGrid/Components/SearchFilterRow/GetRenderInputs.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/SearchFilterRow/SearchFilterRow.d.ts +8 -0
- package/packages/shared-components/dist/SmartGrid/Components/SearchFilterRow/SearchFilterRow.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/SmartAlignments.d.ts +9 -0
- package/packages/shared-components/dist/SmartGrid/Components/SmartAlignments.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/SmartButton.d.ts +7 -0
- package/packages/shared-components/dist/SmartGrid/Components/SmartButton.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/SmartDialog.d.ts +12 -0
- package/packages/shared-components/dist/SmartGrid/Components/SmartDialog.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/SmartSwitch.d.ts +7 -0
- package/packages/shared-components/dist/SmartGrid/Components/SmartSwitch.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/Svgs/ColumnArrangerSvg.d.ts +3 -0
- package/packages/shared-components/dist/SmartGrid/Components/Svgs/ColumnArrangerSvg.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/Svgs/HideIcon.d.ts +3 -0
- package/packages/shared-components/dist/SmartGrid/Components/Svgs/HideIcon.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/Svgs/HideIconSvg.d.ts +3 -0
- package/packages/shared-components/dist/SmartGrid/Components/Svgs/HideIconSvg.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/TableFooterComponent/TableFooterComponent.d.ts +9 -0
- package/packages/shared-components/dist/SmartGrid/Components/TableFooterComponent/TableFooterComponent.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/TableFooterComponent/components/FooterCell.d.ts +11 -0
- package/packages/shared-components/dist/SmartGrid/Components/TableFooterComponent/components/FooterCell.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/TableRowComponent.d.ts +24 -0
- package/packages/shared-components/dist/SmartGrid/Components/TableRowComponent.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/Components/index.d.ts +2 -0
- package/packages/shared-components/dist/SmartGrid/Components/index.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/SmartGrid.d.ts +6 -0
- package/packages/shared-components/dist/SmartGrid/SmartGrid.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/context/CellSelectionContext.d.ts +23 -0
- package/packages/shared-components/dist/SmartGrid/context/CellSelectionContext.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/exportUtils/helper.d.ts +9 -0
- package/packages/shared-components/dist/SmartGrid/exportUtils/helper.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/exportUtils/index.d.ts +3 -0
- package/packages/shared-components/dist/SmartGrid/exportUtils/index.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/exportUtils/types.d.ts +49 -0
- package/packages/shared-components/dist/SmartGrid/exportUtils/types.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/hooks/index.d.ts +2 -0
- package/packages/shared-components/dist/SmartGrid/hooks/index.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useCellSelection.d.ts +19 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useCellSelection.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useCopyToClipboard.d.ts +12 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useCopyToClipboard.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useExportToExcel.d.ts +7 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useExportToExcel.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetColumnWidth.d.ts +13 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetColumnWidth.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetDragMethods.d.ts +13 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetDragMethods.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetFacetedFilter.d.ts +13 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetFacetedFilter.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetGroupedColumn.d.ts +23 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetGroupedColumn.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetPinStyle.d.ts +4 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetPinStyle.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetPinningColumns.d.ts +11 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetPinningColumns.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetRowSelection.d.ts +11 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetRowSelection.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetSortedColumn.d.ts +11 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useGetSortedColumn.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useTableState.d.ts +5 -0
- package/packages/shared-components/dist/SmartGrid/hooks/useTableState.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/index.d.ts +5 -0
- package/packages/shared-components/dist/SmartGrid/index.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/types/index.d.ts +160 -0
- package/packages/shared-components/dist/SmartGrid/types/index.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/utils/helper.d.ts +3 -0
- package/packages/shared-components/dist/SmartGrid/utils/helper.d.ts.map +1 -0
- package/packages/shared-components/dist/SmartGrid/utils/summaryCalculations.d.ts +10 -0
- package/packages/shared-components/dist/SmartGrid/utils/summaryCalculations.d.ts.map +1 -0
- package/packages/shared-components/dist/Toast/Toast.d.ts +10 -0
- package/packages/shared-components/dist/Toast/Toast.d.ts.map +1 -0
- package/packages/shared-components/dist/Toast/ToastBody.d.ts +4 -0
- package/packages/shared-components/dist/Toast/ToastBody.d.ts.map +1 -0
- package/packages/shared-components/dist/Toast/ToastFooterLink.d.ts +4 -0
- package/packages/shared-components/dist/Toast/ToastFooterLink.d.ts.map +1 -0
- package/packages/shared-components/dist/Toast/Toaster.d.ts +2 -0
- package/packages/shared-components/dist/Toast/Toaster.d.ts.map +1 -0
- package/packages/shared-components/dist/Toast/Toaster.styled.d.ts +6 -0
- package/packages/shared-components/dist/Toast/Toaster.styled.d.ts.map +1 -0
- package/packages/shared-components/dist/Toast/index.d.ts +3 -0
- package/packages/shared-components/dist/Toast/index.d.ts.map +1 -0
- package/packages/shared-components/dist/Toast/toasts.d.ts +3 -0
- package/packages/shared-components/dist/Toast/toasts.d.ts.map +1 -0
- package/packages/shared-components/dist/Toast/types.d.ts +15 -0
- package/packages/shared-components/dist/Toast/types.d.ts.map +1 -0
- package/packages/shared-components/dist/Tooltip/Tooltip.d.ts +11 -0
- package/packages/shared-components/dist/Tooltip/Tooltip.d.ts.map +1 -0
- package/packages/shared-components/dist/Tooltip/index.d.ts +2 -0
- package/packages/shared-components/dist/Tooltip/index.d.ts.map +1 -0
- package/packages/shared-components/dist/index.cjs.js +2 -0
- package/packages/shared-components/dist/index.cjs.js.map +1 -0
- package/packages/shared-components/dist/index.d.ts +9 -0
- package/packages/shared-components/dist/index.d.ts.map +1 -0
- package/packages/shared-components/dist/index.esm.js +2 -0
- package/packages/shared-components/dist/index.esm.js.map +1 -0
- package/packages/shared-components/dist/utils/CheckboxInput.d.ts +4 -0
- package/packages/shared-components/dist/utils/CheckboxInput.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/colorVariant.d.ts +6 -0
- package/packages/shared-components/dist/utils/colorVariant.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/context/NavigationKeyContext.d.ts +13 -0
- package/packages/shared-components/dist/utils/context/NavigationKeyContext.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/context/NavigationRouterContext.d.ts +18 -0
- package/packages/shared-components/dist/utils/context/NavigationRouterContext.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/context/index.d.ts +4 -0
- package/packages/shared-components/dist/utils/context/index.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/date.d.ts +5 -0
- package/packages/shared-components/dist/utils/date.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/download.d.ts +2 -0
- package/packages/shared-components/dist/utils/download.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/downloadPrintHtml.d.ts +2 -0
- package/packages/shared-components/dist/utils/downloadPrintHtml.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/file.d.ts +5 -0
- package/packages/shared-components/dist/utils/file.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/helper.d.ts +10 -0
- package/packages/shared-components/dist/utils/helper.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/hooks/index.d.ts +7 -0
- package/packages/shared-components/dist/utils/hooks/index.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/hooks/useAutocompleteScrollToSelected.d.ts +5 -0
- package/packages/shared-components/dist/utils/hooks/useAutocompleteScrollToSelected.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/hooks/useDialogActions.d.ts +16 -0
- package/packages/shared-components/dist/utils/hooks/useDialogActions.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/hooks/useFormFieldFocus.d.ts +15 -0
- package/packages/shared-components/dist/utils/hooks/useFormFieldFocus.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/hooks/useGetDeviceType.d.ts +8 -0
- package/packages/shared-components/dist/utils/hooks/useGetDeviceType.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/hooks/useGlobalKeyboardShortcut.d.ts +12 -0
- package/packages/shared-components/dist/utils/hooks/useGlobalKeyboardShortcut.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/hooks/useParseHref.d.ts +7 -0
- package/packages/shared-components/dist/utils/hooks/useParseHref.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/hooks/useZoomLevel.d.ts +2 -0
- package/packages/shared-components/dist/utils/hooks/useZoomLevel.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/index.d.ts +15 -0
- package/packages/shared-components/dist/utils/index.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/regex.d.ts +10 -0
- package/packages/shared-components/dist/utils/regex.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/theme/colorPalette.d.ts +24 -0
- package/packages/shared-components/dist/utils/theme/colorPalette.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/theme/colorPaletteUI.d.ts +2 -0
- package/packages/shared-components/dist/utils/theme/colorPaletteUI.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/theme/paletteDark.d.ts +8 -0
- package/packages/shared-components/dist/utils/theme/paletteDark.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/theme/paletteLight.d.ts +3 -0
- package/packages/shared-components/dist/utils/theme/paletteLight.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/theme/theme.d.ts +37 -0
- package/packages/shared-components/dist/utils/theme/theme.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/theme/types.d.ts +14 -0
- package/packages/shared-components/dist/utils/theme/types.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/theme/typography.d.ts +12 -0
- package/packages/shared-components/dist/utils/theme/typography.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/types.d.ts +9 -0
- package/packages/shared-components/dist/utils/types.d.ts.map +1 -0
- package/packages/shared-components/dist/utils/urlToNestedObject.d.ts +2 -0
- package/packages/shared-components/dist/utils/urlToNestedObject.d.ts.map +1 -0
package/README.md
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# @codezee/sixtify-smartgrid
|
|
2
|
+
|
|
3
|
+
A React package that simplifies form creation and table management!
|
|
4
|
+
This package leverages react-hook-form and AG Grid to provide a comprehensive set of input fields and components for building dynamic and powerful forms.
|
|
5
|
+
It also includes a complete Storybook for all components to help you explore and integrate them easily.
|
|
6
|
+
|
|
7
|
+
## Features
|
|
8
|
+
- Integrates seamlessly with react-hook-form for form handling.
|
|
9
|
+
- Includes AG Grid for powerful table management.
|
|
10
|
+
- A wide variety of input components to suit all your needs.
|
|
11
|
+
- Fully documented with Storybook.
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
This package is 100% [TypeScript](https://www.typescriptlang.org/).
|
|
15
|
+
|
|
16
|
+
### Utilities
|
|
17
|
+
|
|
18
|
+
This Turborepo has some additional tools already setup for you:
|
|
19
|
+
|
|
20
|
+
- [TypeScript](https://www.typescriptlang.org/) for static type checking
|
|
21
|
+
- [ESLint](https://eslint.org/) for code linting
|
|
22
|
+
- [Prettier](https://prettier.io) for code formatting
|
|
23
|
+
|
|
24
|
+
### Remote Caching
|
|
25
|
+
|
|
26
|
+
Turborepo can use a technique known as [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching) to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines.
|
|
27
|
+
|
|
28
|
+
By default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following commands:
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
cd my-turborepo
|
|
32
|
+
npx turbo login
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
This will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview).
|
|
36
|
+
|
|
37
|
+
Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your Turborepo:
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
npx turbo link
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Useful Links
|
|
44
|
+
|
|
45
|
+
Learn more about the power of Turborepo:
|
|
46
|
+
|
|
47
|
+
- [Tasks](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks)
|
|
48
|
+
- [Caching](https://turbo.build/repo/docs/core-concepts/caching)
|
|
49
|
+
- [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching)
|
|
50
|
+
- [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering)
|
|
51
|
+
- [Configuration Options](https://turbo.build/repo/docs/reference/configuration)
|
|
52
|
+
- [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
## Installation
|
|
58
|
+
|
|
59
|
+
Install the package using pnpm:
|
|
60
|
+
|
|
61
|
+
```sh
|
|
62
|
+
pnpm install @codezee/sixtify-smartgrid
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Usage
|
|
66
|
+
|
|
67
|
+
Import the package in your React component:
|
|
68
|
+
|
|
69
|
+
```jsx
|
|
70
|
+
import { Smartgrid } from '@codezee/sixtify-smartgrid' ;
|
|
71
|
+
import { useForm } from 'react-hook-form';
|
|
72
|
+
|
|
73
|
+
function MyComponent() {
|
|
74
|
+
const { control } = useForm({
|
|
75
|
+
defaultValues: {
|
|
76
|
+
name: 'John Doe',
|
|
77
|
+
},
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
return (
|
|
81
|
+
<Smartgrid name="name" label="Name" control={control} />
|
|
82
|
+
);
|
|
83
|
+
}
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
## Documentation
|
|
88
|
+
|
|
89
|
+
For detailed usage and examples, check out the full documentation:
|
|
90
|
+
[See Documentation](https://hardikranpariya.github.io/sixtify-brahma/)
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
<!-- Security scan triggered at 2025-09-02 02:28:41 -->
|
|
94
|
+
|
|
95
|
+
<!-- Security scan triggered at 2025-09-09 05:35:08 -->
|
package/package.json
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codezee-org/sixtify-smartgrid",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "git+https://github.com/hardikranpariya/Sixtify-SmartGrid.git"
|
|
7
|
+
},
|
|
8
|
+
"publishConfig": {
|
|
9
|
+
"access": "public"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"lint": "turbo lint",
|
|
13
|
+
"format": "turbo format",
|
|
14
|
+
"prepare": "husky install",
|
|
15
|
+
"build": "turbo build",
|
|
16
|
+
"dev": "turbo dev -- -p 4201",
|
|
17
|
+
"clean": "turbo clean",
|
|
18
|
+
"check:types": "turbo check:types",
|
|
19
|
+
"check:format": "turbo check:format",
|
|
20
|
+
"start": "turbo start"
|
|
21
|
+
},
|
|
22
|
+
"main": "packages/shared-components/dist/index.cjs.js",
|
|
23
|
+
"module": "packages/shared-components/dist/index.esm.js",
|
|
24
|
+
"types": "packages/shared-components/dist/index.d.ts",
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"import": {
|
|
28
|
+
"types": "./packages/shared-components/dist/index.d.ts",
|
|
29
|
+
"default": "./packages/shared-components/dist/index.esm.js"
|
|
30
|
+
},
|
|
31
|
+
"require": {
|
|
32
|
+
"types": "./packages/shared-components/dist/index.d.ts",
|
|
33
|
+
"default": "./packages/shared-components/dist/index.cjs.js"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"sideEffects": false,
|
|
38
|
+
"files": [
|
|
39
|
+
"packages/shared-components/dist"
|
|
40
|
+
],
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"next": "^14.2.5",
|
|
43
|
+
"@commitlint/cli": "^19.3.0",
|
|
44
|
+
"@commitlint/config-conventional": "^19.2.2",
|
|
45
|
+
"@types/lodash": "^4.17.5",
|
|
46
|
+
"@types/luxon": "^3.4.2",
|
|
47
|
+
"@types/node": "^22.10.0",
|
|
48
|
+
"@types/react-date-range": "^1.4.9",
|
|
49
|
+
"@types/uuid": "^10.0.0",
|
|
50
|
+
"eslint-config-prettier": "^9.1.0",
|
|
51
|
+
"eslint-import-resolver-typescript": "^4.3.4",
|
|
52
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
53
|
+
"husky": "^8.0.0",
|
|
54
|
+
"lint-staged": "^15.2.7",
|
|
55
|
+
"prettier": "^3.2.5",
|
|
56
|
+
"turbo": "1.10.12",
|
|
57
|
+
"typescript": "^5.4.5"
|
|
58
|
+
},
|
|
59
|
+
"packageManager": "pnpm@8.15.6",
|
|
60
|
+
"engines": {
|
|
61
|
+
"node": ">=18"
|
|
62
|
+
},
|
|
63
|
+
"peerDependencies": {
|
|
64
|
+
"next": ">=13.0.0",
|
|
65
|
+
"react": "^17.0.0 || ^18.0.0",
|
|
66
|
+
"react-dom": "^17.0.0 || ^18.0.0",
|
|
67
|
+
"react-hook-form": "^7.51.5"
|
|
68
|
+
},
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"@dnd-kit/core": "^6.3.1",
|
|
71
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
72
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
73
|
+
"@emotion/react": "^11.11.4",
|
|
74
|
+
"@emotion/styled": "^11.11.5",
|
|
75
|
+
"@hookform/resolvers": "^3.6.0",
|
|
76
|
+
"@mui/icons-material": "^5.15.20",
|
|
77
|
+
"@mui/material": "^5.15.20",
|
|
78
|
+
"@mui/styled-engine-sc": "6.0.0-alpha.18",
|
|
79
|
+
"@mui/x-charts": "^8.12.0",
|
|
80
|
+
"@mui/x-date-pickers": "^7.8.0",
|
|
81
|
+
"@tanstack/react-table": "^8.21.3",
|
|
82
|
+
"@tanstack/react-virtual": "^3.13.12",
|
|
83
|
+
"@types/file-saver": "^2.0.7",
|
|
84
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
85
|
+
"ag-grid-community": "^34.3.1",
|
|
86
|
+
"ag-grid-react": "^34.3.1",
|
|
87
|
+
"date-fns": "^4.1.0",
|
|
88
|
+
"eslint-plugin-sonarjs": "1.0.4-alpha.1",
|
|
89
|
+
"exceljs": "^4.4.0",
|
|
90
|
+
"file-saver": "^2.0.5",
|
|
91
|
+
"file64": "1.0.1",
|
|
92
|
+
"gh-pages": "^6.3.0",
|
|
93
|
+
"html2canvas": "^1.4.1",
|
|
94
|
+
"iconoir-react": "^7.11.0",
|
|
95
|
+
"lodash": "^4.17.21",
|
|
96
|
+
"luxon": "^3.4.4",
|
|
97
|
+
"react-date-range": "^2.0.1",
|
|
98
|
+
"react-i18next": "^14.1.2",
|
|
99
|
+
"react-number-format": "^5.4.4",
|
|
100
|
+
"react-phone-input-2": "^2.15.1",
|
|
101
|
+
"react-syntax-highlighter": "^16.1.0",
|
|
102
|
+
"react-toastify": "^10.0.5",
|
|
103
|
+
"react-webcam": "7.2.0",
|
|
104
|
+
"styled-components": "^6.1.11",
|
|
105
|
+
"usehooks-ts": "^3.1.0",
|
|
106
|
+
"uuid": "^10.0.0",
|
|
107
|
+
"zod": "^3.23.8"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { ButtonProps as MuiButtonProps } from "@mui/material/Button";
|
|
2
|
+
type ActionButtonProps = MuiButtonProps & {
|
|
3
|
+
loading?: boolean;
|
|
4
|
+
};
|
|
5
|
+
export declare const ActionButton: ({ loading, children, ...rest }: ActionButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export {};
|
|
7
|
+
//# sourceMappingURL=ActionButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ActionButton.d.ts","sourceRoot":"","sources":["../../src/Button/ActionButton.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,WAAW,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE1E,KAAK,iBAAiB,GAAG,cAAc,GAAG;IACxC,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,eAAO,MAAM,YAAY,GAAI,gCAI1B,iBAAiB,4CAoBnB,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type ModifierType } from "../utils";
|
|
2
|
+
import type { OnAction } from "../utils/types";
|
|
3
|
+
import type { ButtonProps as MuiButtonProps } from "@mui/material/Button";
|
|
4
|
+
export type ButtonProps = MuiButtonProps & {
|
|
5
|
+
loading?: boolean;
|
|
6
|
+
enableKeyboardShortcut?: boolean;
|
|
7
|
+
shortcutKey?: string;
|
|
8
|
+
modifierKeys?: ModifierType[];
|
|
9
|
+
onClick?: OnAction;
|
|
10
|
+
href?: string;
|
|
11
|
+
target?: string;
|
|
12
|
+
};
|
|
13
|
+
export declare const Button: ({ loading, children, disabled, enableKeyboardShortcut, shortcutKey, modifierKeys, onClick, href, target, size, ...rest }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../src/Button/Button.tsx"],"names":[],"mappings":"AAIA,OAAO,EAGL,KAAK,YAAY,EAClB,MAAM,UAAU,CAAC;AAElB,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,EAAE,WAAW,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE1E,MAAM,MAAM,WAAW,GAAG,cAAc,GAAG;IACzC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,YAAY,EAAE,CAAC;IAC9B,OAAO,CAAC,EAAE,QAAQ,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,eAAO,MAAM,MAAM,GAAI,0HAYpB,WAAW,4CAqDb,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { SizeType } from "./types";
|
|
2
|
+
import type { OnAction } from "../utils/types";
|
|
3
|
+
import type { SxProps } from "@mui/material/styles";
|
|
4
|
+
import type { ReactNode } from "react";
|
|
5
|
+
type ButtonObject = {
|
|
6
|
+
icon: ReactNode;
|
|
7
|
+
value: string;
|
|
8
|
+
label: string;
|
|
9
|
+
selected: boolean;
|
|
10
|
+
onClick?: OnAction<string>;
|
|
11
|
+
size?: SizeType;
|
|
12
|
+
href?: string;
|
|
13
|
+
target?: string;
|
|
14
|
+
};
|
|
15
|
+
type ButtonGroupProps = {
|
|
16
|
+
renderButtons: ButtonObject[];
|
|
17
|
+
sx?: SxProps;
|
|
18
|
+
containerSx?: SxProps;
|
|
19
|
+
};
|
|
20
|
+
export declare const ButtonGroup: ({ renderButtons, sx, containerSx, }: ButtonGroupProps) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
export {};
|
|
22
|
+
//# sourceMappingURL=ButtonGroup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ButtonGroup.d.ts","sourceRoot":"","sources":["../../src/Button/ButtonGroup.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACxC,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,KAAK,YAAY,GAAG;IAClB,IAAI,EAAE,SAAS,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC3B,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,KAAK,gBAAgB,GAAG;IACtB,aAAa,EAAE,YAAY,EAAE,CAAC;IAC9B,EAAE,CAAC,EAAE,OAAO,CAAC;IACb,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,qCAIzB,gBAAgB,4CA0ClB,CAAC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { type SxProps } from "@mui/material/styles";
|
|
2
|
+
import { type ReactNode } from "react";
|
|
3
|
+
import type { SizeType } from "./types";
|
|
4
|
+
import type { OnAction } from "../utils/types";
|
|
5
|
+
export type SplitButtonMenuItem = {
|
|
6
|
+
key: string;
|
|
7
|
+
label: string;
|
|
8
|
+
onClick: OnAction;
|
|
9
|
+
divider?: boolean;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
hidden?: boolean;
|
|
12
|
+
};
|
|
13
|
+
export type SplitButtonProps = {
|
|
14
|
+
icon?: ReactNode;
|
|
15
|
+
label: string;
|
|
16
|
+
size?: SizeType;
|
|
17
|
+
onClick?: OnAction;
|
|
18
|
+
menuItems?: SplitButtonMenuItem[];
|
|
19
|
+
disabled?: boolean;
|
|
20
|
+
mainDisabled?: boolean;
|
|
21
|
+
arrowDisabled?: boolean;
|
|
22
|
+
hidden?: boolean;
|
|
23
|
+
mainHidden?: boolean;
|
|
24
|
+
loading?: boolean;
|
|
25
|
+
sx?: SxProps;
|
|
26
|
+
containerSx?: SxProps;
|
|
27
|
+
variant?: "contained" | "text";
|
|
28
|
+
};
|
|
29
|
+
export declare const SplitButton: ({ icon, label, size, onClick, menuItems, sx, containerSx, variant, disabled, mainDisabled, arrowDisabled, hidden, mainHidden, loading, }: SplitButtonProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
30
|
+
//# sourceMappingURL=SplitButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SplitButton.d.ts","sourceRoot":"","sources":["../../src/Button/SplitButton.tsx"],"names":[],"mappings":"AAYA,OAAO,EAAE,KAAK,OAAO,EAAE,MAAM,sBAAsB,CAAC;AAGpD,OAAO,EAA6B,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAElE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACxC,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAE/C,MAAM,MAAM,mBAAmB,GAAG;IAChC,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,QAAQ,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,OAAO,CAAC,EAAE,QAAQ,CAAC;IACnB,SAAS,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAElC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,EAAE,CAAC,EAAE,OAAO,CAAC;IACb,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,OAAO,CAAC,EAAE,WAAW,GAAG,MAAM,CAAC;CAChC,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,0IAgBzB,gBAAgB,mDAoNlB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Button/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/Button/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,QAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/FormFields/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/FormFields/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,MAAM,GAAG;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FacebookCircularProgress.d.ts","sourceRoot":"","sources":["../../src/Loader/FacebookCircularProgress.tsx"],"names":[],"mappings":"AACA,OAAyB,EACvB,KAAK,qBAAqB,EAC3B,MAAM,gCAAgC,CAAC;AAGxC,wBAAgB,wBAAwB,CACtC,KAAK,EAAE,QAAQ,CAAC,qBAAqB,CAAC,2CAgCvC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Loader/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { SxProps } from "@mui/material";
|
|
2
|
+
import type { PropsWithChildren } from "react";
|
|
3
|
+
export declare const PadBox: ({ children, padding, }: PropsWithChildren<{
|
|
4
|
+
padding: SxProps;
|
|
5
|
+
}>) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
//# sourceMappingURL=PadBox.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PadBox.d.ts","sourceRoot":"","sources":["../../src/PadBox/PadBox.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AAC7C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAE/C,eAAO,MAAM,MAAM,GAAI,wBAGpB,iBAAiB,CAAC;IACnB,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC,4CAYD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/PadBox/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { SummaryRecord } from "../types";
|
|
2
|
+
import type { Cell, Row } from "@tanstack/react-table";
|
|
3
|
+
type CellRendererProps<T> = {
|
|
4
|
+
cell: Cell<T, unknown>;
|
|
5
|
+
isSummaryRow: boolean;
|
|
6
|
+
row: Row<T>;
|
|
7
|
+
summaryData?: SummaryRecord<T>;
|
|
8
|
+
isGroupColumn?: boolean;
|
|
9
|
+
};
|
|
10
|
+
export declare const CellRenderer: <T>({ cell, isSummaryRow, row, summaryData, isGroupColumn, }: CellRendererProps<T>) => string | number | bigint | boolean | Iterable<import("react").ReactNode> | Promise<import("react").AwaitedReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined;
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=CellRenderer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CellRenderer.d.ts","sourceRoot":"","sources":["../../../src/SmartGrid/Components/CellRenderer.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAEvD,KAAK,iBAAiB,CAAC,CAAC,IAAI;IAC1B,IAAI,EAAE,IAAI,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC;IACvB,YAAY,EAAE,OAAO,CAAC;IACtB,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC;IACZ,WAAW,CAAC,EAAE,aAAa,CAAC,CAAC,CAAC,CAAC;IAC/B,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB,CAAC;AAEF,eAAO,MAAM,YAAY,GAAI,CAAC,EAAG,0DAM9B,iBAAiB,CAAC,CAAC,CAAC,sLAsEtB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CircularLoader.d.ts","sourceRoot":"","sources":["../../../src/SmartGrid/Components/CircularLoader.tsx"],"names":[],"mappings":"AAIA,eAAO,MAAM,cAAc,+CAiB1B,CAAC"}
|
package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/ColumnArranger.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { type Control, type UseFieldArrayReturn, type UseFormSetValue } from "react-hook-form";
|
|
2
|
+
import type { AppColumnDef } from "../../types";
|
|
3
|
+
type ColumnArrangerProps<T> = {
|
|
4
|
+
lockedColumns: AppColumnDef<T>[];
|
|
5
|
+
fields: UseFieldArrayReturn<{
|
|
6
|
+
columns: AppColumnDef<T>[];
|
|
7
|
+
}, "columns">["fields"];
|
|
8
|
+
control: Control<{
|
|
9
|
+
columns: AppColumnDef<T>[];
|
|
10
|
+
}>;
|
|
11
|
+
setValue: UseFormSetValue<{
|
|
12
|
+
columns: AppColumnDef<T>[];
|
|
13
|
+
}>;
|
|
14
|
+
filterVisibleOnly?: boolean;
|
|
15
|
+
searchTerm?: string;
|
|
16
|
+
grouping?: string[];
|
|
17
|
+
isHeaderEditable: boolean;
|
|
18
|
+
};
|
|
19
|
+
export declare const ColumnArranger: <T>({ lockedColumns, fields, control, setValue, filterVisibleOnly, searchTerm, grouping, isHeaderEditable, }: Readonly<ColumnArrangerProps<T>>) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=ColumnArranger.d.ts.map
|
package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/ColumnArranger.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ColumnArranger.d.ts","sourceRoot":"","sources":["../../../../src/SmartGrid/Components/ColumnChooser/ColumnArranger.tsx"],"names":[],"mappings":"AACA,OAAO,EACL,KAAK,OAAO,EACZ,KAAK,mBAAmB,EACxB,KAAK,eAAe,EAErB,MAAM,iBAAiB,CAAC;AAKzB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD,KAAK,mBAAmB,CAAC,CAAC,IAAI;IAC5B,aAAa,EAAE,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC;IACjC,MAAM,EAAE,mBAAmB,CACzB;QAAE,OAAO,EAAE,YAAY,CAAC,CAAC,CAAC,EAAE,CAAA;KAAE,EAC9B,SAAS,CACV,CAAC,QAAQ,CAAC,CAAC;IACZ,OAAO,EAAE,OAAO,CAAC;QAAE,OAAO,EAAE,YAAY,CAAC,CAAC,CAAC,EAAE,CAAA;KAAE,CAAC,CAAC;IACjD,QAAQ,EAAE,eAAe,CAAC;QAAE,OAAO,EAAE,YAAY,CAAC,CAAC,CAAC,EAAE,CAAA;KAAE,CAAC,CAAC;IAC1D,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,gBAAgB,EAAE,OAAO,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,cAAc,GAAI,CAAC,EAAG,0GAShC,QAAQ,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAAC,4CA0ElC,CAAC"}
|
package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/ColumnArrangerDialog.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { OnAction } from "../../../utils/types";
|
|
2
|
+
import type { AppColumnDef, SmartColumnAlignmentType } from "../../types";
|
|
3
|
+
type ColumnArrangerDialogProps<T> = {
|
|
4
|
+
open: boolean;
|
|
5
|
+
isHeaderEditable: boolean;
|
|
6
|
+
onClose: OnAction;
|
|
7
|
+
title?: string;
|
|
8
|
+
columns?: AppColumnDef<T>[];
|
|
9
|
+
grouping?: string[];
|
|
10
|
+
onSave: (args: Record<string, {
|
|
11
|
+
hide: boolean;
|
|
12
|
+
align: SmartColumnAlignmentType;
|
|
13
|
+
header: string;
|
|
14
|
+
}>) => void;
|
|
15
|
+
};
|
|
16
|
+
export declare const ColumnArrangerDialog: <T>({ open, isHeaderEditable, onClose, title, columns, grouping, onSave, }: ColumnArrangerDialogProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export {};
|
|
18
|
+
//# sourceMappingURL=ColumnArrangerDialog.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ColumnArrangerDialog.d.ts","sourceRoot":"","sources":["../../../../src/SmartGrid/Components/ColumnChooser/ColumnArrangerDialog.tsx"],"names":[],"mappings":"AAcA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,KAAK,EAAE,YAAY,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAE1E,KAAK,yBAAyB,CAAC,CAAC,IAAI;IAClC,IAAI,EAAE,OAAO,CAAC;IACd,gBAAgB,EAAE,OAAO,CAAC;IAC1B,OAAO,EAAE,QAAQ,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC;IAC5B,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,MAAM,EAAE,CACN,IAAI,EAAE,MAAM,CACV,MAAM,EACN;QACE,IAAI,EAAE,OAAO,CAAC;QACd,KAAK,EAAE,wBAAwB,CAAC;QAChC,MAAM,EAAE,MAAM,CAAC;KAChB,CACF,KACE,IAAI,CAAC;CACX,CAAC;AAEF,eAAO,MAAM,oBAAoB,GAAI,CAAC,EAAG,wEAQtC,yBAAyB,CAAC,CAAC,CAAC,4CAmM9B,CAAC"}
|
package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/ColumnArrangerForm.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { type ReactNode } from "react";
|
|
2
|
+
import type { AppColumnDef } from "../../types";
|
|
3
|
+
export type ColumnArrangerFormProps<T> = {
|
|
4
|
+
columns: AppColumnDef<T>[];
|
|
5
|
+
isHeaderEditable: boolean;
|
|
6
|
+
filterVisibleOnly?: boolean;
|
|
7
|
+
searchTerm?: string;
|
|
8
|
+
grouping?: string[];
|
|
9
|
+
children: (args: {
|
|
10
|
+
columnList: ReactNode;
|
|
11
|
+
reset: (values?: AppColumnDef<T> | Record<string, unknown>) => void;
|
|
12
|
+
getValues: () => {
|
|
13
|
+
columns: AppColumnDef<T>[];
|
|
14
|
+
};
|
|
15
|
+
}) => JSX.Element;
|
|
16
|
+
};
|
|
17
|
+
export declare const ColumnArrangerForm: <T>({ columns, isHeaderEditable, filterVisibleOnly, searchTerm, children, grouping, }: ColumnArrangerFormProps<T>) => JSX.Element;
|
|
18
|
+
//# sourceMappingURL=ColumnArrangerForm.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ColumnArrangerForm.d.ts","sourceRoot":"","sources":["../../../../src/SmartGrid/Components/ColumnChooser/ColumnArrangerForm.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAsB,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAK3D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAMhD,MAAM,MAAM,uBAAuB,CAAC,CAAC,IAAI;IACvC,OAAO,EAAE,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC;IAC3B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,QAAQ,EAAE,CAAC,IAAI,EAAE;QACf,UAAU,EAAE,SAAS,CAAC;QACtB,KAAK,EAAE,CAAC,MAAM,CAAC,EAAE,YAAY,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;QACpE,SAAS,EAAE,MAAM;YAAE,OAAO,EAAE,YAAY,CAAC,CAAC,CAAC,EAAE,CAAA;SAAE,CAAC;KACjD,KAAK,GAAG,CAAC,OAAO,CAAC;CACnB,CAAC;AAEF,eAAO,MAAM,kBAAkB,GAAI,CAAC,EAAG,mFAOpC,uBAAuB,CAAC,CAAC,CAAC,gBAgE5B,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { type Control, type FieldArrayWithId, type UseFormSetValue } from "react-hook-form";
|
|
2
|
+
import type { AppColumnDef } from "../../types";
|
|
3
|
+
export type ColumnItemProps<T> = {
|
|
4
|
+
field: FieldArrayWithId<{
|
|
5
|
+
columns: AppColumnDef<T>[];
|
|
6
|
+
}, "columns">;
|
|
7
|
+
control: Control<{
|
|
8
|
+
columns: AppColumnDef<T>[];
|
|
9
|
+
}>;
|
|
10
|
+
index: number;
|
|
11
|
+
setValue: UseFormSetValue<{
|
|
12
|
+
columns: AppColumnDef<T>[];
|
|
13
|
+
}>;
|
|
14
|
+
isHeaderEditable: boolean;
|
|
15
|
+
};
|
|
16
|
+
export declare function ColumnItem<T>({ field, control, index, setValue, isHeaderEditable, }: Readonly<ColumnItemProps<T>>): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
//# sourceMappingURL=ColumnItem.d.ts.map
|
package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/ColumnItem.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ColumnItem.d.ts","sourceRoot":"","sources":["../../../../src/SmartGrid/Components/ColumnChooser/ColumnItem.tsx"],"names":[],"mappings":"AASA,OAAO,EAEL,KAAK,OAAO,EACZ,KAAK,gBAAgB,EACrB,KAAK,eAAe,EACrB,MAAM,iBAAiB,CAAC;AAMzB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD,MAAM,MAAM,eAAe,CAAC,CAAC,IAAI;IAC/B,KAAK,EAAE,gBAAgB,CAAC;QAAE,OAAO,EAAE,YAAY,CAAC,CAAC,CAAC,EAAE,CAAA;KAAE,EAAE,SAAS,CAAC,CAAC;IACnE,OAAO,EAAE,OAAO,CAAC;QAAE,OAAO,EAAE,YAAY,CAAC,CAAC,CAAC,EAAE,CAAA;KAAE,CAAC,CAAC;IACjD,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,eAAe,CAAC;QAAE,OAAO,EAAE,YAAY,CAAC,CAAC,CAAC,EAAE,CAAA;KAAE,CAAC,CAAC;IAC1D,gBAAgB,EAAE,OAAO,CAAC;CAC3B,CAAC;AAEF,wBAAgB,UAAU,CAAC,CAAC,EAAE,EAC5B,KAAK,EACL,OAAO,EACP,KAAK,EACL,QAAQ,EACR,gBAAgB,GACjB,EAAE,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,2CAgM9B"}
|
package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/LockedColumnItem.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { AppColumnDef } from "../../types";
|
|
2
|
+
export type LockedColumnItemProps<T> = {
|
|
3
|
+
column: AppColumnDef<T>;
|
|
4
|
+
};
|
|
5
|
+
export declare function LockedColumnItem<T>({ column, }: Readonly<LockedColumnItemProps<T>>): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
//# sourceMappingURL=LockedColumnItem.d.ts.map
|
package/packages/shared-components/dist/SmartGrid/Components/ColumnChooser/LockedColumnItem.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LockedColumnItem.d.ts","sourceRoot":"","sources":["../../../../src/SmartGrid/Components/ColumnChooser/LockedColumnItem.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD,MAAM,MAAM,qBAAqB,CAAC,CAAC,IAAI;IAAE,MAAM,EAAE,YAAY,CAAC,CAAC,CAAC,CAAA;CAAE,CAAC;AAEnE,wBAAgB,gBAAgB,CAAC,CAAC,EAAE,EAClC,MAAM,GACP,EAAE,QAAQ,CAAC,qBAAqB,CAAC,CAAC,CAAC,CAAC,2CAsBpC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { AppColumnDef } from "../../../types";
|
|
2
|
+
type RefinedColumn = {
|
|
3
|
+
accessorKey: string;
|
|
4
|
+
hide?: boolean;
|
|
5
|
+
header: string;
|
|
6
|
+
align?: "left" | "center" | "right";
|
|
7
|
+
};
|
|
8
|
+
type useRefinedColumnsArgs<T> = {
|
|
9
|
+
columns: AppColumnDef<T>[];
|
|
10
|
+
};
|
|
11
|
+
export declare const useRefinedColumns: <T>({ columns }: useRefinedColumnsArgs<T>) => RefinedColumn[];
|
|
12
|
+
export {};
|
|
13
|
+
//# sourceMappingURL=useRefinedColumns.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useRefinedColumns.d.ts","sourceRoot":"","sources":["../../../../../src/SmartGrid/Components/ColumnChooser/hooks/useRefinedColumns.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEnD,KAAK,aAAa,GAAG;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;CACrC,CAAC;AAEF,KAAK,qBAAqB,CAAC,CAAC,IAAI;IAC9B,OAAO,EAAE,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC;CAC5B,CAAC;AACF,eAAO,MAAM,iBAAiB,GAAI,CAAC,EAAE,aAAa,qBAAqB,CAAC,CAAC,CAAC,oBAqBzE,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
type DataNotFoundProps = {
|
|
3
|
+
message?: string;
|
|
4
|
+
};
|
|
5
|
+
export declare const DataNotFound: ({ message, }: DataNotFoundProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare const MemoizedDataNotFound: React.MemoExoticComponent<({ message, }: DataNotFoundProps) => import("react/jsx-runtime").JSX.Element>;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=DataNotFound.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataNotFound.d.ts","sourceRoot":"","sources":["../../../src/SmartGrid/Components/DataNotFound.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,KAAK,iBAAiB,GAAG;IACvB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,eAAO,MAAM,YAAY,GAAI,cAE1B,iBAAiB,4CAqBnB,CAAC;AAEF,eAAO,MAAM,oBAAoB,2CAvB9B,iBAAiB,6CAuBwC,CAAC"}
|
package/packages/shared-components/dist/SmartGrid/Components/EditableFields/SmartSelectField.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Option } from "../../../FormFields";
|
|
2
|
+
import type { SelectHTMLAttributes } from "react";
|
|
3
|
+
export declare const SmartSelectField: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
|
|
4
|
+
errorMessage?: string;
|
|
5
|
+
options: Option[];
|
|
6
|
+
} & SelectHTMLAttributes<HTMLSelectElement> & import("react").RefAttributes<HTMLSelectElement>>>;
|
|
7
|
+
//# sourceMappingURL=SmartSelectField.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SmartSelectField.d.ts","sourceRoot":"","sources":["../../../../src/SmartGrid/Components/EditableFields/SmartSelectField.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,OAAO,CAAC;AA+FlD,eAAO,MAAM,gBAAgB;mBA5FZ,MAAM;aACZ,MAAM,EAAE;gGAsGlB,CAAC"}
|
package/packages/shared-components/dist/SmartGrid/Components/EditableFields/SmartTextField.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { InputHTMLAttributes } from "react";
|
|
2
|
+
export declare const SmartTextField: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
|
|
3
|
+
errorMessage?: string;
|
|
4
|
+
} & InputHTMLAttributes<HTMLInputElement> & import("react").RefAttributes<HTMLInputElement>>>;
|
|
5
|
+
//# sourceMappingURL=SmartTextField.d.ts.map
|
package/packages/shared-components/dist/SmartGrid/Components/EditableFields/SmartTextField.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SmartTextField.d.ts","sourceRoot":"","sources":["../../../../src/SmartGrid/Components/EditableFields/SmartTextField.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,OAAO,CAAC;AA+EjD,eAAO,MAAM,cAAc;mBA5EV,MAAM;6FAwFtB,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type SmartTooltipProps = {
|
|
2
|
+
children: React.ReactNode;
|
|
3
|
+
title: string;
|
|
4
|
+
position?: "top" | "bottom" | "left" | "right";
|
|
5
|
+
delay?: number;
|
|
6
|
+
};
|
|
7
|
+
export declare const SmartTooltip: ({ children, title, position, delay, }: SmartTooltipProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=SmartTooltip.d.ts.map
|
package/packages/shared-components/dist/SmartGrid/Components/EditableFields/SmartTooltip.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SmartTooltip.d.ts","sourceRoot":"","sources":["../../../../src/SmartGrid/Components/EditableFields/SmartTooltip.tsx"],"names":[],"mappings":"AAMA,KAAK,iBAAiB,GAAG;IACvB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,KAAK,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC;IAC/C,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAsGF,eAAO,MAAM,YAAY,GAAI,uCAK1B,iBAAiB,4CAsDnB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/SmartGrid/Components/EditableFields/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Header } from "@tanstack/react-table";
|
|
2
|
+
type FacetedFilterProps<T> = {
|
|
3
|
+
header: Header<T, unknown>;
|
|
4
|
+
resetAllFilters: boolean;
|
|
5
|
+
};
|
|
6
|
+
export declare const FacetedFilter: <T>({ header, resetAllFilters, }: FacetedFilterProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=FacetedFilter.d.ts.map
|
package/packages/shared-components/dist/SmartGrid/Components/FacetedFilter/FacetedFilter.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FacetedFilter.d.ts","sourceRoot":"","sources":["../../../../src/SmartGrid/Components/FacetedFilter/FacetedFilter.tsx"],"names":[],"mappings":"AAkBA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAEpD,KAAK,kBAAkB,CAAC,CAAC,IAAI;IAC3B,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC;IAC3B,eAAe,EAAE,OAAO,CAAC;CAC1B,CAAC;AAEF,eAAO,MAAM,aAAa,GAAI,CAAC,EAAG,8BAG/B,kBAAkB,CAAC,CAAC,CAAC,4CAgVvB,CAAC"}
|
package/packages/shared-components/dist/SmartGrid/Components/FacetedFilter/VirtualCheckboxList.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type VirtualCheckboxListProps = {
|
|
2
|
+
checkedMap: Record<string, boolean>;
|
|
3
|
+
onToggle: (value: string) => void;
|
|
4
|
+
options: string[];
|
|
5
|
+
};
|
|
6
|
+
export declare const VirtualCheckboxList: import("react").MemoExoticComponent<({ checkedMap, onToggle, options }: VirtualCheckboxListProps) => import("react/jsx-runtime").JSX.Element>;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=VirtualCheckboxList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VirtualCheckboxList.d.ts","sourceRoot":"","sources":["../../../../src/SmartGrid/Components/FacetedFilter/VirtualCheckboxList.tsx"],"names":[],"mappings":"AAMA,KAAK,wBAAwB,GAAG;IAC9B,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACpC,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB,CAAC;AAEF,eAAO,MAAM,mBAAmB,0EACM,wBAAwB,6CAgN7D,CAAC"}
|