@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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useParseHref.d.ts","sourceRoot":"","sources":["../../../src/utils/hooks/useParseHref.tsx"],"names":[],"mappings":"AAEA,wBAAgB,YAAY,CAAC,IAAI,EAAE,MAAM;;;;;EAUxC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useZoomLevel.d.ts","sourceRoot":"","sources":["../../../src/utils/hooks/useZoomLevel.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY,cA6BxB,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * from "./CheckboxInput";
|
|
2
|
+
export * from "./colorVariant";
|
|
3
|
+
export * from "./context";
|
|
4
|
+
export * from "./date";
|
|
5
|
+
export * from "./download";
|
|
6
|
+
export * from "./downloadPrintHtml";
|
|
7
|
+
export * from "./file";
|
|
8
|
+
export * from "./helper";
|
|
9
|
+
export * from "./hooks";
|
|
10
|
+
export * from "./regex";
|
|
11
|
+
export * from "./theme/colorPaletteUI";
|
|
12
|
+
export * from "./theme/theme";
|
|
13
|
+
export * from "./types";
|
|
14
|
+
export * from "./urlToNestedObject";
|
|
15
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,qBAAqB,CAAC;AACpC,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AACxB,cAAc,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const monthYearRegex: RegExp;
|
|
2
|
+
export declare const isoDateRegex: RegExp;
|
|
3
|
+
export declare const noSpecialCharacterRegex: RegExp;
|
|
4
|
+
export declare const emailRegex: RegExp;
|
|
5
|
+
export declare const timeRegex: RegExp;
|
|
6
|
+
export declare const accessorFnRegex: RegExp;
|
|
7
|
+
export declare const hslaRegex: RegExp;
|
|
8
|
+
export declare const highlightWordsRegex: RegExp;
|
|
9
|
+
export declare const numericRegex: RegExp;
|
|
10
|
+
//# sourceMappingURL=regex.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"regex.d.ts","sourceRoot":"","sources":["../../src/utils/regex.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,cAAc,QAAkB,CAAC;AAE9C,eAAO,MAAM,YAAY,QAAwB,CAAC;AAElD,eAAO,MAAM,uBAAuB,QAAoB,CAAC;AAEzD,eAAO,MAAM,UAAU,QACmvB,CAAC;AAE3wB,eAAO,MAAM,SAAS,QAA6B,CAAC;AAEpD,eAAO,MAAM,eAAe,QACqD,CAAC;AAElF,eAAO,MAAM,SAAS,QAAqD,CAAC;AAE5E,eAAO,MAAM,mBAAmB,QAAwB,CAAC;AAEzD,eAAO,MAAM,YAAY,QAAkB,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { Color } from "@mui/material";
|
|
2
|
+
export type ColorPalette = {
|
|
3
|
+
lightSlateBlue: Color;
|
|
4
|
+
lipstickRed: Color;
|
|
5
|
+
darkOrange: Color;
|
|
6
|
+
deepAqua: Color;
|
|
7
|
+
sapphireBlue: Color;
|
|
8
|
+
darkMint: Color;
|
|
9
|
+
butterflyBlue: Color;
|
|
10
|
+
orchid: Color;
|
|
11
|
+
mirage: Color;
|
|
12
|
+
iron: Color;
|
|
13
|
+
slate: Color;
|
|
14
|
+
red: Color;
|
|
15
|
+
lightBlue: Color;
|
|
16
|
+
black: Color;
|
|
17
|
+
violet: Color;
|
|
18
|
+
purple: Color;
|
|
19
|
+
brown: Color;
|
|
20
|
+
darkOrchid: Color;
|
|
21
|
+
claude: Color;
|
|
22
|
+
};
|
|
23
|
+
export declare const colorPalette: ColorPalette;
|
|
24
|
+
//# sourceMappingURL=colorPalette.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colorPalette.d.ts","sourceRoot":"","sources":["../../../src/utils/theme/colorPalette.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;AAE3C,MAAM,MAAM,YAAY,GAAG;IACzB,cAAc,EAAE,KAAK,CAAC;IACtB,WAAW,EAAE,KAAK,CAAC;IACnB,UAAU,EAAE,KAAK,CAAC;IAClB,QAAQ,EAAE,KAAK,CAAC;IAChB,YAAY,EAAE,KAAK,CAAC;IACpB,QAAQ,EAAE,KAAK,CAAC;IAChB,aAAa,EAAE,KAAK,CAAC;IACrB,MAAM,EAAE,KAAK,CAAC;IACd,MAAM,EAAE,KAAK,CAAC;IACd,IAAI,EAAE,KAAK,CAAC;IACZ,KAAK,EAAE,KAAK,CAAC;IACb,GAAG,EAAE,KAAK,CAAC;IACX,SAAS,EAAE,KAAK,CAAC;IACjB,KAAK,EAAE,KAAK,CAAC;IACb,MAAM,EAAE,KAAK,CAAC;IACd,MAAM,EAAE,KAAK,CAAC;IACd,KAAK,EAAE,KAAK,CAAC;IACb,UAAU,EAAE,KAAK,CAAC;IAClB,MAAM,EAAE,KAAK,CAAC;CACf,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,YAiT1B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colorPaletteUI.d.ts","sourceRoot":"","sources":["../../../src/utils/theme/colorPaletteUI.tsx"],"names":[],"mappings":"AA6BA,eAAO,MAAM,cAAc,+CAkB1B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"paletteDark.d.ts","sourceRoot":"","sources":["../../../src/utils/theme/paletteDark.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW;;;;;;CAOvB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"paletteLight.d.ts","sourceRoot":"","sources":["../../../src/utils/theme/paletteLight.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE3D,eAAO,MAAM,YAAY,EAAE,cA2B1B,CAAC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { type PaletteMode, type ThemeOptions } from "@mui/material";
|
|
2
|
+
import "./types";
|
|
3
|
+
export declare const Theme: {
|
|
4
|
+
readonly light: "light";
|
|
5
|
+
readonly dark: "dark";
|
|
6
|
+
};
|
|
7
|
+
export type ThemeVariant = keyof typeof Theme;
|
|
8
|
+
export declare const getPaletteByTheme: (mode: PaletteMode) => {
|
|
9
|
+
palette: {
|
|
10
|
+
app: {
|
|
11
|
+
color: import("./colorPalette").ColorPalette;
|
|
12
|
+
paperBoxShadow: string;
|
|
13
|
+
};
|
|
14
|
+
divider: string;
|
|
15
|
+
mode: PaletteMode;
|
|
16
|
+
} | {
|
|
17
|
+
primary?: import("@mui/material").PaletteColorOptions;
|
|
18
|
+
secondary?: import("@mui/material").PaletteColorOptions;
|
|
19
|
+
error?: import("@mui/material").PaletteColorOptions;
|
|
20
|
+
warning?: import("@mui/material").PaletteColorOptions;
|
|
21
|
+
info?: import("@mui/material").PaletteColorOptions;
|
|
22
|
+
success?: import("@mui/material").PaletteColorOptions;
|
|
23
|
+
mode: PaletteMode;
|
|
24
|
+
tonalOffset?: import("@mui/material/styles/createPalette").PaletteTonalOffset;
|
|
25
|
+
contrastThreshold?: number;
|
|
26
|
+
common?: Partial<import("@mui/material").CommonColors>;
|
|
27
|
+
grey?: import("@mui/material/styles/createPalette").ColorPartial;
|
|
28
|
+
text?: Partial<import("@mui/material").TypeText>;
|
|
29
|
+
divider?: string;
|
|
30
|
+
action?: Partial<import("@mui/material").TypeAction>;
|
|
31
|
+
background?: Partial<import("@mui/material").TypeBackground>;
|
|
32
|
+
getContrastText?: (background: string) => string;
|
|
33
|
+
app: import("./types").AppPalette;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
export declare function appTheme(theme: PaletteMode): ThemeOptions;
|
|
37
|
+
//# sourceMappingURL=theme.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../src/utils/theme/theme.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,WAAW,EAChB,KAAK,YAAY,EAClB,MAAM,eAAe,CAAC;AAIvB,OAAO,SAAS,CAAC;AAGjB,eAAO,MAAM,KAAK;;;CAGR,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,MAAM,OAAO,KAAK,CAAC;AAE9C,eAAO,MAAM,iBAAiB,GAAI,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKjD,CAAC;AAqBH,wBAAgB,QAAQ,CAAC,KAAK,EAAE,WAAW,GAAG,YAAY,CAqVzD"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { ColorPalette } from "./colorPalette";
|
|
2
|
+
export type AppPalette = {
|
|
3
|
+
color: ColorPalette;
|
|
4
|
+
paperBoxShadow: string;
|
|
5
|
+
};
|
|
6
|
+
declare module "@mui/material/styles" {
|
|
7
|
+
interface Palette {
|
|
8
|
+
app: AppPalette;
|
|
9
|
+
}
|
|
10
|
+
interface PaletteOptions {
|
|
11
|
+
app: AppPalette;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/utils/theme/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEnD,MAAM,MAAM,UAAU,GAAG;IACvB,KAAK,EAAE,YAAY,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,OAAO,QAAQ,sBAAsB,CAAC;IAEpC,UAAU,OAAO;QACf,GAAG,EAAE,UAAU,CAAC;KACjB;IAGD,UAAU,cAAc;QACtB,GAAG,EAAE,UAAU,CAAC;KACjB;CACF"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { FontStyleOptions, TypographyOptions, TypographyStyleOptions, Variant } from "@mui/material/styles/createTypography";
|
|
2
|
+
import type { TypographyPropsVariantOverrides } from "@mui/material/Typography";
|
|
3
|
+
type TypographyVariant = keyof TypographyPropsVariantOverrides;
|
|
4
|
+
type TypographyActiveVariants = {
|
|
5
|
+
[K in TypographyVariant]: TypographyPropsVariantOverrides[K] extends true ? K : never;
|
|
6
|
+
}[TypographyVariant];
|
|
7
|
+
export declare const typographyFontStyleOptions: FontStyleOptions;
|
|
8
|
+
export declare const typographyOptions: Partial<Record<Variant, TypographyStyleOptions>>;
|
|
9
|
+
export declare const typographyVariantMapping: Record<TypographyActiveVariants, string>;
|
|
10
|
+
export declare const typographyThemeOptions: TypographyOptions;
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=typography.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../src/utils/theme/typography.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,gBAAgB,EAChB,iBAAiB,EACjB,sBAAsB,EACtB,OAAO,EACR,MAAM,uCAAuC,CAAC;AAC/C,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,0BAA0B,CAAC;AAEhF,KAAK,iBAAiB,GAAG,MAAM,+BAA+B,CAAC;AAC/D,KAAK,wBAAwB,GAAG;KAC7B,CAAC,IAAI,iBAAiB,GAAG,+BAA+B,CAAC,CAAC,CAAC,SAAS,IAAI,GACrE,CAAC,GACD,KAAK;CACV,CAAC,iBAAiB,CAAC,CAAC;AAErB,eAAO,MAAM,0BAA0B,EAAE,gBAGxC,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,OAAO,CACrC,MAAM,CAAC,OAAO,EAAE,sBAAsB,CAAC,CA8CxC,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,MAAM,CAC3C,wBAAwB,EACxB,MAAM,CAQP,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,iBAGpC,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { IconButtonProps } from "@mui/material/IconButton";
|
|
2
|
+
export type OnAction<Args = void, Return = void> = [Args] extends [void] ? () => Return : (props: Args) => Return;
|
|
3
|
+
export type Styling = "custom" | "default";
|
|
4
|
+
export type ActionButtonProps = IconButtonProps & {
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
href?: string;
|
|
7
|
+
target?: string;
|
|
8
|
+
};
|
|
9
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/utils/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAEhE,MAAM,MAAM,QAAQ,CAAC,IAAI,GAAG,IAAI,EAAE,MAAM,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,GACpE,MAAM,MAAM,GACZ,CAAC,KAAK,EAAE,IAAI,KAAK,MAAM,CAAC;AAE5B,MAAM,MAAM,OAAO,GAAG,QAAQ,GAAG,SAAS,CAAC;AAE3C,MAAM,MAAM,iBAAiB,GAAG,eAAe,GAAG;IAChD,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"urlToNestedObject.d.ts","sourceRoot":"","sources":["../../src/utils/urlToNestedObject.ts"],"names":[],"mappings":"AAEA,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,MAAM,MAM5C"}
|