@up42/up-components 3.3.0 → 4.0.0

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.
@@ -1,5 +1,5 @@
1
1
  import { DataGridPremiumProps as MuiDataGridProps } from '@mui/x-data-grid-premium';
2
- export { type GridColDef, type GridRenderCellParams, type GridRowId, type GridRowSelectionModel, type GridSortModel, GridRow, GridCell, GridFooter, GridLoadingOverlay, GridNoRowsOverlay, GridPagination, GridRowCount, GridSelectedRowCount, gridColumnDefinitionsSelector, gridColumnVisibilityModelSelector, useGridApiContext, useGridSelector, } from '@mui/x-data-grid-premium';
2
+ export { type GridColDef, type GridRenderCellParams, type GridRowId, type GridRowParams, type GridRowSelectionModel, type GridRowsProp, type GridSortModel, GridRow, GridCell, GridFooter, GridLoadingOverlay, GridNoRowsOverlay, GridPagination, GridRowCount, GridSelectedRowCount, gridColumnDefinitionsSelector, gridColumnVisibilityModelSelector, gridDetailPanelExpandedRowIdsSelector, gridDetailPanelExpandedRowsContentCacheSelector, gridRowsLookupSelector, GRID_DETAIL_PANEL_TOGGLE_COL_DEF, GRID_DETAIL_PANEL_TOGGLE_FIELD, useGridApiContext, useGridApiRef, useGridSelector, } from '@mui/x-data-grid-premium';
3
3
  import React from 'react';
4
4
  import { MUIGlobalOmit } from '@global/utils/types';
5
5
  export type DataGridProps = MUIGlobalOmit<MuiDataGridProps>;
@@ -47,7 +47,7 @@ export { DocumentationPopover, type DocumentationPopoverProps, } from './compone
47
47
  export { CodeInline, type CodeInlineProps } from './components/CodeInline/CodeInline';
48
48
  export { CodeSnippet, type CodeSnippetProps, type CodeSnippetItemProps } from './components/CodeSnippet/CodeSnippet';
49
49
  export { Table, TableBody, TableCell, TableHead, TableContainer, TableRow, TableFooter, TablePagination, TableSortLabel, type TableProps, type TableBodyProps, type TableCellProps, type TableHeadProps, type TableContainerProps, type TableRowProps, type TableFooterProps, type TablePaginationProps, type TableSortLabelProps, } from './components/Table/Table';
50
- export { DataGrid, GridRow, GridCell, GridFooter, GridLoadingOverlay, GridNoRowsOverlay, GridPagination, GridRowCount, GridSelectedRowCount, gridColumnDefinitionsSelector, gridColumnVisibilityModelSelector, useGridApiContext, useGridSelector, type DataGridProps, type GridColDef, type GridRenderCellParams, type GridRowId, type GridRowSelectionModel, type GridSortModel, } from './components/DataGrid/DataGrid';
50
+ export { DataGrid, GridRow, GridCell, GridFooter, GridLoadingOverlay, GridNoRowsOverlay, GridPagination, GridRowCount, GridSelectedRowCount, gridColumnDefinitionsSelector, gridColumnVisibilityModelSelector, gridDetailPanelExpandedRowIdsSelector, gridDetailPanelExpandedRowsContentCacheSelector, gridRowsLookupSelector, GRID_DETAIL_PANEL_TOGGLE_COL_DEF, GRID_DETAIL_PANEL_TOGGLE_FIELD, useGridApiContext, useGridApiRef, useGridSelector, type GridColDef, type GridRenderCellParams, type GridRowId, type GridRowParams, type GridRowSelectionModel, type GridRowsProp, type GridSortModel, } from './components/DataGrid/DataGrid';
51
51
  export { capitalize } from './utils/helpers/capitalize';
52
52
  export { copyToClipboard } from './utils/helpers/copyToClipboard';
53
53
  export { formatNumber } from './utils/helpers/formatNumber';
package/dist/index.d.ts CHANGED
@@ -21,7 +21,8 @@ import { TablePaginationProps as TablePaginationProps$1 } from '@mui/material/Ta
21
21
  import { TableSortLabelProps as TableSortLabelProps$1 } from '@mui/material/TableSortLabel';
22
22
  import { TableFooterProps as TableFooterProps$1 } from '@mui/material/TableFooter';
23
23
  import { DataGridPremiumProps } from '@mui/x-data-grid-premium';
24
- export { GridCell, GridColDef, GridFooter, GridLoadingOverlay, GridNoRowsOverlay, GridPagination, GridRenderCellParams, GridRow, GridRowCount, GridRowId, GridRowSelectionModel, GridSelectedRowCount, GridSortModel, gridColumnDefinitionsSelector, gridColumnVisibilityModelSelector, useGridApiContext, useGridSelector } from '@mui/x-data-grid-premium';
24
+ export { GRID_DETAIL_PANEL_TOGGLE_COL_DEF, GRID_DETAIL_PANEL_TOGGLE_FIELD, GridCell, GridFooter, GridLoadingOverlay, GridNoRowsOverlay, GridPagination, GridRow, GridRowCount, GridSelectedRowCount, gridColumnDefinitionsSelector, gridColumnVisibilityModelSelector, gridDetailPanelExpandedRowIdsSelector, gridDetailPanelExpandedRowsContentCacheSelector, gridRowsLookupSelector, useGridApiContext, useGridApiRef, useGridSelector } from '@mui/x-data-grid-premium';
25
+ export type { GridColDef, GridRenderCellParams, GridRowId, GridRowParams, GridRowSelectionModel, GridRowsProp, GridSortModel } from '@mui/x-data-grid-premium';
25
26
 
26
27
  interface UpComponentsProviderProps extends Omit<ThemeProviderProps, 'theme'> {
27
28
  licenseKey: string;
@@ -180,11 +181,15 @@ type DatePickerWrapperProps = {
180
181
  helperText?: string;
181
182
  };
182
183
 
184
+
185
+
183
186
  type DatePickerDateType = Dayjs | null | undefined;
184
187
  type NonGenericMuiDatePickerProps$1 = DatePickerProps<DatePickerDateType>;
185
188
  type FormDatePickerProps = NonGenericMuiDatePickerProps$1 & DatePickerWrapperProps;
186
189
  declare const FormDatePicker: React__default.ForwardRefExoticComponent<NonGenericMuiDatePickerProps$1 & DatePickerWrapperProps & React__default.RefAttributes<HTMLDivElement>>;
187
190
 
191
+
192
+
188
193
  type NonGenericMuiDatePickerProps = DatePickerProps<DatePickerDateType>;
189
194
  type FormDateRangePickerProps = Omit<MUIGlobalOmit<NonGenericMuiDatePickerProps>, 'value' | 'onChange'> & {
190
195
  start: DatePickerDateType;
@@ -204,6 +209,8 @@ type FormDateRangePickerProps = Omit<MUIGlobalOmit<NonGenericMuiDatePickerProps>
204
209
  */
205
210
  declare const FormDateRangePicker: ({ start, onStartChange, end, onEndChange, label, minDate, maxDate, startPickerProps, endPickerProps, ...props }: FormDateRangePickerProps) => React__default.JSX.Element;
206
211
 
212
+
213
+
207
214
  type NonGenericMuiDateTimePickerProps = DateTimePickerProps<Dayjs | null | undefined>;
208
215
  type FormDateTimePickerProps = NonGenericMuiDateTimePickerProps & DatePickerWrapperProps;
209
216
  declare const FormDateTimePicker: React__default.ForwardRefExoticComponent<NonGenericMuiDateTimePickerProps & DatePickerWrapperProps & React__default.RefAttributes<HTMLDivElement>>;
@@ -4434,7 +4441,203 @@ var SvgZoomOut = function SvgZoomOut(props) {
4434
4441
  };
4435
4442
 
4436
4443
  declare namespace icons {
4437
- export { SvgAccessTime as AccessTime, SvgAdd as Add, SvgAddCircleFilled as AddCircleFilled, SvgAddPlusCircle as AddPlusCircle, SvgAlarmBell as AlarmBell, SvgAlertCircleFilled as AlertCircleFilled, SvgAlertTriangle as AlertTriangle, SvgAngle as Angle, SvgAppWindowCode as AppWindowCode, SvgArrowBack as ArrowBack, SvgArrowBackIos as ArrowBackIos, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowDownward as ArrowDownward, SvgArrowForward as ArrowForward, SvgArrowTopLeft as ArrowTopLeft, SvgArrowTopRight as ArrowTopRight, SvgArrowUpward as ArrowUpward, SvgAttachment as Attachment, SvgAutoStoriesOutlined as AutoStoriesOutlined, SvgBalance as Balance, SvgBin as Bin, SvgBlock as Block, SvgBlocked as Blocked, SvgBoxes as Boxes, SvgBoxesGrid as BoxesGrid, SvgBrightness1 as Brightness1, SvgCalendar as Calendar, SvgCalendarAdd as CalendarAdd, SvgCalendarCheck as CalendarCheck, SvgCalendarDate as CalendarDate, SvgCalendarEdit as CalendarEdit, SvgCalendarRemove as CalendarRemove, SvgCalendarSearchDate as CalendarSearchDate, SvgCampaignOutlined as CampaignOutlined, SvgCaretCircleFilledDown as CaretCircleFilledDown, SvgCaretCircleFilledLeft as CaretCircleFilledLeft, SvgCaretCircleFilledRight as CaretCircleFilledRight, SvgCaretCircleFilledUp as CaretCircleFilledUp, SvgCatalog as Catalog, SvgCheckCircleFilled as CheckCircleFilled, SvgCheckList as CheckList, SvgCheckMark as CheckMark, SvgChevronCircleFilledDown as ChevronCircleFilledDown, SvgChevronCircleFilledLeft as ChevronCircleFilledLeft, SvgChevronCircleFilledRight as ChevronCircleFilledRight, SvgChevronCircleFilledUp as ChevronCircleFilledUp, SvgClose as Close, SvgCloseCircle as CloseCircle, SvgCloseCircleFilled as CloseCircleFilled, SvgCloud as Cloud, SvgCloudCheck as CloudCheck, SvgCloudDownload as CloudDownload, SvgCloudOff as CloudOff, SvgCloudRemove as CloudRemove, SvgCloudSearch as CloudSearch, SvgCloudSync as CloudSync, SvgCloudUpload as CloudUpload, SvgCloudWarning as CloudWarning, SvgCoin as Coin, SvgCoinEuro as CoinEuro, SvgCompass as Compass, SvgContactSupportOutlined as ContactSupportOutlined, SvgContentCut as ContentCut, SvgContentPaste as ContentPaste, SvgCopy as Copy, SvgCredit as Credit, SvgDashboard as Dashboard, SvgDataTransferVertical as DataTransferVertical, SvgDollarCoinCircleFilled as DollarCoinCircleFilled, SvgDottedLines as DottedLines, SvgDownload as Download, SvgDownloadCircle as DownloadCircle, SvgEditPencil as EditPencil, SvgEuroCoinCircleFilled as EuroCoinCircleFilled, SvgExitLeaveBack as ExitLeaveBack, SvgExternalLink as ExternalLink, SvgEyeCircleFilled as EyeCircleFilled, SvgFlagQuestion as FlagQuestion, SvgFolderEmpty as FolderEmpty, SvgFootprint as Footprint, SvgHeadphonesQuestion as HeadphonesQuestion, SvgHeart as Heart, SvgHeartCircleFilled as HeartCircleFilled, SvgHyperlink as Hyperlink, SvgImageResolution as ImageResolution, SvgInvoice as Invoice, SvgKeyboardArrowDown as KeyboardArrowDown, SvgKeyboardArrowLeft as KeyboardArrowLeft, SvgKeyboardArrowRight as KeyboardArrowRight, SvgKeyboardArrowUp as KeyboardArrowUp, SvgLayers as Layers, SvgLibrary as Library, SvgLightbulb as Lightbulb, SvgLightbulbOutlined as LightbulbOutlined, SvgLocalOfferOutlined as LocalOfferOutlined, SvgLock as Lock, SvgLockCircleFilled as LockCircleFilled, SvgLockShield as LockShield, SvgLogo as Logo, SvgMap as Map, SvgMapPin as MapPin, SvgMapSearch as MapSearch, SvgMarketplace as Marketplace, SvgMenuCircleFilledHorizontal as MenuCircleFilledHorizontal, SvgMenuCircleFilledVertical as MenuCircleFilledVertical, SvgMenuOpenHorizontal as MenuOpenHorizontal, SvgMenuOpenVertical as MenuOpenVertical, SvgMinusCircleFilled as MinusCircleFilled, SvgModule as Module, SvgModule2 as Module2, SvgModuleThree as ModuleThree, SvgMoreHoriz as MoreHoriz, SvgMultipleUsers as MultipleUsers, SvgNotificationError as NotificationError, SvgNotificationInfo as NotificationInfo, SvgNotificationSuccess as NotificationSuccess, SvgNotificationWarning as NotificationWarning, SvgPenCircleFilled as PenCircleFilled, SvgPencil as Pencil, SvgPercentCircle as PercentCircle, SvgPerson as Person, SvgPin as Pin, SvgPolygon as Polygon, SvgProjects as Projects, SvgQuestionBubble as QuestionBubble, SvgQuestionCircle as QuestionCircle, SvgQuestionCircleFilled as QuestionCircleFilled, SvgQuestionMark as QuestionMark, SvgRectangle as Rectangle, SvgRectangleAoi as RectangleAOI, SvgRedo as Redo, SvgRemove as Remove, SvgResolution as Resolution, SvgSatellite$1 as Satellite, SvgSave as Save, SvgScissors as Scissors, SvgSearch as Search, SvgServerCheck as ServerCheck, SvgServerDeny as ServerDeny, SvgServerDownload as ServerDownload, SvgServerEdit as ServerEdit, SvgServerError as ServerError, SvgServerLock as ServerLock, SvgServerMinus as ServerMinus, SvgServerQuestion as ServerQuestion, SvgServerRefresh as ServerRefresh, SvgServerSearch as ServerSearch, SvgServerSync as ServerSync, SvgServerUpload as ServerUpload, SvgServerWarning as ServerWarning, SvgSettingsCog as SettingsCog, SvgSettingsCog2 as SettingsCog2, SvgSettingsSliderHorizontal as SettingsSliderHorizontal, SvgSettingsVertical as SettingsVertical, SvgShare as Share, SvgShareNetwork as ShareNetwork, SvgShield as Shield, SvgShieldWithLock as ShieldWithLock, SvgShoppingCartCheck as ShoppingCartCheck, SvgShoppingCartClose as ShoppingCartClose, SvgShoppingCartMinus as ShoppingCartMinus, SvgShoppingCartOutlined as ShoppingCartOutlined, SvgShoppingCartPlus as ShoppingCartPlus, SvgStorage as Storage, SvgSupport as Support, SvgSupportClear as SupportClear, SvgSupportHeadphones as SupportHeadphones, SvgSystem as System, SvgTag as Tag, SvgTagAlert as TagAlert, SvgTagCheck as TagCheck, SvgTagDouble as TagDouble, SvgTagEdit as TagEdit, SvgTagMinus as TagMinus, SvgTagPlus as TagPlus, SvgTagSearch as TagSearch, SvgTagX as TagX, SvgTarget as Target, SvgTransaction as Transaction, SvgTrashBin as TrashBin, SvgUndo as Undo, SvgUnlock as Unlock, SvgUpgradeShield as UpgradeShield, SvgUpload as Upload, SvgUploadCircle as UploadCircle, SvgUser as User, SvgVisibilityOffOutlined as VisibilityOffOutlined, SvgVisibilityOutlined as VisibilityOutlined, SvgWeatherCloud as WeatherCloud, SvgWebhooks as Webhooks, SvgWorkflow as Workflow, SvgWorkflowPencil as WorkflowPencil, SvgZoomIn as ZoomIn, SvgZoomOut as ZoomOut };
4444
+ export {
4445
+ SvgAccessTime as AccessTime,
4446
+ SvgAdd as Add,
4447
+ SvgAddCircleFilled as AddCircleFilled,
4448
+ SvgAddPlusCircle as AddPlusCircle,
4449
+ SvgAlarmBell as AlarmBell,
4450
+ SvgAlertCircleFilled as AlertCircleFilled,
4451
+ SvgAlertTriangle as AlertTriangle,
4452
+ SvgAngle as Angle,
4453
+ SvgAppWindowCode as AppWindowCode,
4454
+ SvgArrowBack as ArrowBack,
4455
+ SvgArrowBackIos as ArrowBackIos,
4456
+ SvgArrowDownLeft as ArrowDownLeft,
4457
+ SvgArrowDownRight as ArrowDownRight,
4458
+ SvgArrowDownward as ArrowDownward,
4459
+ SvgArrowForward as ArrowForward,
4460
+ SvgArrowTopLeft as ArrowTopLeft,
4461
+ SvgArrowTopRight as ArrowTopRight,
4462
+ SvgArrowUpward as ArrowUpward,
4463
+ SvgAttachment as Attachment,
4464
+ SvgAutoStoriesOutlined as AutoStoriesOutlined,
4465
+ SvgBalance as Balance,
4466
+ SvgBin as Bin,
4467
+ SvgBlock as Block,
4468
+ SvgBlocked as Blocked,
4469
+ SvgBoxes as Boxes,
4470
+ SvgBoxesGrid as BoxesGrid,
4471
+ SvgBrightness1 as Brightness1,
4472
+ SvgCalendar as Calendar,
4473
+ SvgCalendarAdd as CalendarAdd,
4474
+ SvgCalendarCheck as CalendarCheck,
4475
+ SvgCalendarDate as CalendarDate,
4476
+ SvgCalendarEdit as CalendarEdit,
4477
+ SvgCalendarRemove as CalendarRemove,
4478
+ SvgCalendarSearchDate as CalendarSearchDate,
4479
+ SvgCampaignOutlined as CampaignOutlined,
4480
+ SvgCaretCircleFilledDown as CaretCircleFilledDown,
4481
+ SvgCaretCircleFilledLeft as CaretCircleFilledLeft,
4482
+ SvgCaretCircleFilledRight as CaretCircleFilledRight,
4483
+ SvgCaretCircleFilledUp as CaretCircleFilledUp,
4484
+ SvgCatalog as Catalog,
4485
+ SvgCheckCircleFilled as CheckCircleFilled,
4486
+ SvgCheckList as CheckList,
4487
+ SvgCheckMark as CheckMark,
4488
+ SvgChevronCircleFilledDown as ChevronCircleFilledDown,
4489
+ SvgChevronCircleFilledLeft as ChevronCircleFilledLeft,
4490
+ SvgChevronCircleFilledRight as ChevronCircleFilledRight,
4491
+ SvgChevronCircleFilledUp as ChevronCircleFilledUp,
4492
+ SvgClose as Close,
4493
+ SvgCloseCircle as CloseCircle,
4494
+ SvgCloseCircleFilled as CloseCircleFilled,
4495
+ SvgCloud as Cloud,
4496
+ SvgCloudCheck as CloudCheck,
4497
+ SvgCloudDownload as CloudDownload,
4498
+ SvgCloudOff as CloudOff,
4499
+ SvgCloudRemove as CloudRemove,
4500
+ SvgCloudSearch as CloudSearch,
4501
+ SvgCloudSync as CloudSync,
4502
+ SvgCloudUpload as CloudUpload,
4503
+ SvgCloudWarning as CloudWarning,
4504
+ SvgCoin as Coin,
4505
+ SvgCoinEuro as CoinEuro,
4506
+ SvgCompass as Compass,
4507
+ SvgContactSupportOutlined as ContactSupportOutlined,
4508
+ SvgContentCut as ContentCut,
4509
+ SvgContentPaste as ContentPaste,
4510
+ SvgCopy as Copy,
4511
+ SvgCredit as Credit,
4512
+ SvgDashboard as Dashboard,
4513
+ SvgDataTransferVertical as DataTransferVertical,
4514
+ SvgDollarCoinCircleFilled as DollarCoinCircleFilled,
4515
+ SvgDottedLines as DottedLines,
4516
+ SvgDownload as Download,
4517
+ SvgDownloadCircle as DownloadCircle,
4518
+ SvgEditPencil as EditPencil,
4519
+ SvgEuroCoinCircleFilled as EuroCoinCircleFilled,
4520
+ SvgExitLeaveBack as ExitLeaveBack,
4521
+ SvgExternalLink as ExternalLink,
4522
+ SvgEyeCircleFilled as EyeCircleFilled,
4523
+ SvgFlagQuestion as FlagQuestion,
4524
+ SvgFolderEmpty as FolderEmpty,
4525
+ SvgFootprint as Footprint,
4526
+ SvgHeadphonesQuestion as HeadphonesQuestion,
4527
+ SvgHeart as Heart,
4528
+ SvgHeartCircleFilled as HeartCircleFilled,
4529
+ SvgHyperlink as Hyperlink,
4530
+ SvgImageResolution as ImageResolution,
4531
+ SvgInvoice as Invoice,
4532
+ SvgKeyboardArrowDown as KeyboardArrowDown,
4533
+ SvgKeyboardArrowLeft as KeyboardArrowLeft,
4534
+ SvgKeyboardArrowRight as KeyboardArrowRight,
4535
+ SvgKeyboardArrowUp as KeyboardArrowUp,
4536
+ SvgLayers as Layers,
4537
+ SvgLibrary as Library,
4538
+ SvgLightbulb as Lightbulb,
4539
+ SvgLightbulbOutlined as LightbulbOutlined,
4540
+ SvgLocalOfferOutlined as LocalOfferOutlined,
4541
+ SvgLock as Lock,
4542
+ SvgLockCircleFilled as LockCircleFilled,
4543
+ SvgLockShield as LockShield,
4544
+ SvgLogo as Logo,
4545
+ SvgMap as Map,
4546
+ SvgMapPin as MapPin,
4547
+ SvgMapSearch as MapSearch,
4548
+ SvgMarketplace as Marketplace,
4549
+ SvgMenuCircleFilledHorizontal as MenuCircleFilledHorizontal,
4550
+ SvgMenuCircleFilledVertical as MenuCircleFilledVertical,
4551
+ SvgMenuOpenHorizontal as MenuOpenHorizontal,
4552
+ SvgMenuOpenVertical as MenuOpenVertical,
4553
+ SvgMinusCircleFilled as MinusCircleFilled,
4554
+ SvgModule as Module,
4555
+ SvgModule2 as Module2,
4556
+ SvgModuleThree as ModuleThree,
4557
+ SvgMoreHoriz as MoreHoriz,
4558
+ SvgMultipleUsers as MultipleUsers,
4559
+ SvgNotificationError as NotificationError,
4560
+ SvgNotificationInfo as NotificationInfo,
4561
+ SvgNotificationSuccess as NotificationSuccess,
4562
+ SvgNotificationWarning as NotificationWarning,
4563
+ SvgPenCircleFilled as PenCircleFilled,
4564
+ SvgPencil as Pencil,
4565
+ SvgPercentCircle as PercentCircle,
4566
+ SvgPerson as Person,
4567
+ SvgPin as Pin,
4568
+ SvgPolygon as Polygon,
4569
+ SvgProjects as Projects,
4570
+ SvgQuestionBubble as QuestionBubble,
4571
+ SvgQuestionCircle as QuestionCircle,
4572
+ SvgQuestionCircleFilled as QuestionCircleFilled,
4573
+ SvgQuestionMark as QuestionMark,
4574
+ SvgRectangle as Rectangle,
4575
+ SvgRectangleAoi as RectangleAOI,
4576
+ SvgRedo as Redo,
4577
+ SvgRemove as Remove,
4578
+ SvgResolution as Resolution,
4579
+ SvgSatellite$1 as Satellite,
4580
+ SvgSave as Save,
4581
+ SvgScissors as Scissors,
4582
+ SvgSearch as Search,
4583
+ SvgServerCheck as ServerCheck,
4584
+ SvgServerDeny as ServerDeny,
4585
+ SvgServerDownload as ServerDownload,
4586
+ SvgServerEdit as ServerEdit,
4587
+ SvgServerError as ServerError,
4588
+ SvgServerLock as ServerLock,
4589
+ SvgServerMinus as ServerMinus,
4590
+ SvgServerQuestion as ServerQuestion,
4591
+ SvgServerRefresh as ServerRefresh,
4592
+ SvgServerSearch as ServerSearch,
4593
+ SvgServerSync as ServerSync,
4594
+ SvgServerUpload as ServerUpload,
4595
+ SvgServerWarning as ServerWarning,
4596
+ SvgSettingsCog as SettingsCog,
4597
+ SvgSettingsCog2 as SettingsCog2,
4598
+ SvgSettingsSliderHorizontal as SettingsSliderHorizontal,
4599
+ SvgSettingsVertical as SettingsVertical,
4600
+ SvgShare as Share,
4601
+ SvgShareNetwork as ShareNetwork,
4602
+ SvgShield as Shield,
4603
+ SvgShieldWithLock as ShieldWithLock,
4604
+ SvgShoppingCartCheck as ShoppingCartCheck,
4605
+ SvgShoppingCartClose as ShoppingCartClose,
4606
+ SvgShoppingCartMinus as ShoppingCartMinus,
4607
+ SvgShoppingCartOutlined as ShoppingCartOutlined,
4608
+ SvgShoppingCartPlus as ShoppingCartPlus,
4609
+ SvgStorage as Storage,
4610
+ SvgSupport as Support,
4611
+ SvgSupportClear as SupportClear,
4612
+ SvgSupportHeadphones as SupportHeadphones,
4613
+ SvgSystem as System,
4614
+ SvgTag as Tag,
4615
+ SvgTagAlert as TagAlert,
4616
+ SvgTagCheck as TagCheck,
4617
+ SvgTagDouble as TagDouble,
4618
+ SvgTagEdit as TagEdit,
4619
+ SvgTagMinus as TagMinus,
4620
+ SvgTagPlus as TagPlus,
4621
+ SvgTagSearch as TagSearch,
4622
+ SvgTagX as TagX,
4623
+ SvgTarget as Target,
4624
+ SvgTransaction as Transaction,
4625
+ SvgTrashBin as TrashBin,
4626
+ SvgUndo as Undo,
4627
+ SvgUnlock as Unlock,
4628
+ SvgUpgradeShield as UpgradeShield,
4629
+ SvgUpload as Upload,
4630
+ SvgUploadCircle as UploadCircle,
4631
+ SvgUser as User,
4632
+ SvgVisibilityOffOutlined as VisibilityOffOutlined,
4633
+ SvgVisibilityOutlined as VisibilityOutlined,
4634
+ SvgWeatherCloud as WeatherCloud,
4635
+ SvgWebhooks as Webhooks,
4636
+ SvgWorkflow as Workflow,
4637
+ SvgWorkflowPencil as WorkflowPencil,
4638
+ SvgZoomIn as ZoomIn,
4639
+ SvgZoomOut as ZoomOut,
4640
+ };
4438
4641
  }
4439
4642
 
4440
4643
  type IconProps = {
@@ -4793,7 +4996,13 @@ var SvgApproveDoc = function SvgApproveDoc(props) {
4793
4996
  // Custom SVG
4794
4997
 
4795
4998
  declare namespace illustrations {
4796
- export { SvgApproveDoc as ApproveDoc, SvgEmailCheck as EmailCheck, SvgFloppyDisk as FloppyDisk, SvgRocketFixing as RocketFixing, SvgSatellite as Satellite };
4999
+ export {
5000
+ SvgApproveDoc as ApproveDoc,
5001
+ SvgEmailCheck as EmailCheck,
5002
+ SvgFloppyDisk as FloppyDisk,
5003
+ SvgRocketFixing as RocketFixing,
5004
+ SvgSatellite as Satellite,
5005
+ };
4797
5006
  }
4798
5007
 
4799
5008
  type IllustrationProps = {
@@ -4947,7 +5156,14 @@ declare const TableSortLabel: ({ children, ...props }: TableSortLabelProps) => R
4947
5156
  type TableFooterProps = MUIGlobalOmit<TableFooterProps$1>;
4948
5157
  declare const TableFooter: ({ children, ...props }: TableFooterProps) => React__default.JSX.Element;
4949
5158
 
4950
- type DataGridProps = MUIGlobalOmit<DataGridPremiumProps>;
5159
+
5160
+
5161
+
5162
+
5163
+
5164
+
5165
+
5166
+
4951
5167
  /**
4952
5168
  * Documentation: https://up-components.up42.com/?path=/docs/data-display-datagrid--docs
4953
5169
  */
@@ -5120,4 +5336,73 @@ type ContextState = {
5120
5336
  */
5121
5337
  declare const useAlert: () => ContextState;
5122
5338
 
5123
- export { Alert, type AlertProps, Avatar, type AvatarProps, Badge, type BadgeProps, Banner, type BannerProps, Button, type ButtonProps, Checkbox, type CheckboxProps, CodeInline, type CodeInlineProps, CodeSnippet, type CodeSnippetItemProps, type CodeSnippetProps, ContactBox, type ContactBoxProps, ControlButton, type ControlButtonProps, CopyButton, type CopyButtonProps, type CreateAlertProps, type CreateSnackbarProps, type CursorPaginatedResponse, DataGrid, type DataGridProps, type DatePickerDateType, DateTime, type DateTimeProps, Divider, type DividerProps, DocumentationPopover, type DocumentationPopoverProps, EmptyState, type EmptyStateProps, FormCheckbox, type FormCheckboxProps, FormDatePicker, type FormDatePickerProps, FormDateRangePicker, type FormDateRangePickerProps, FormDateTimePicker, type FormDateTimePickerProps, FormInput, type FormInputProps, FormRadio, type FormRadioProps, FormSelect, type FormSelectProps, FormSwitch, type FormSwitchProps, GridContainer, type GridContainerProps, GridItem, type GridItemProps, Icon, type IconProps, Illustration, type IllustrationProps, InfoCard, type InfoCardProps, InfoModal, type InfoModalProps, InfoPopover, type InfoPopoverProps, Input, type InputProps, Link, type LinkProps, Loading, type LoadingProps, NotFound, type NotFoundProps, PageContainer, type PageContainerProps, PageHeader, type PageHeaderProps, type PaginatedResponse, Radio, type RadioProps, Select, type SelectProps, Slider, type SliderProps, Switch, type SwitchProps, Tab, TabGroup, type TabGroupProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableProps, TableRow, type TableRowProps, TableSortLabel, type TableSortLabelProps, Tabs, type TabsProps, Tag, type TagProps, Typography, type TypographyProps, UpComponentsProvider, capitalize, copyToClipboard, formatDate, formatFileSize, formatNumber, theme, useAlert, useCursorPagination, useDebounce, useQueryParams, useRemotePagination };
5339
+
5340
+
5341
+
5342
+
5343
+
5344
+
5345
+
5346
+
5347
+
5348
+
5349
+
5350
+
5351
+
5352
+
5353
+
5354
+
5355
+
5356
+
5357
+
5358
+
5359
+
5360
+
5361
+
5362
+
5363
+
5364
+
5365
+
5366
+
5367
+
5368
+
5369
+
5370
+
5371
+
5372
+
5373
+
5374
+
5375
+
5376
+
5377
+
5378
+
5379
+
5380
+
5381
+
5382
+
5383
+
5384
+
5385
+
5386
+
5387
+
5388
+
5389
+
5390
+
5391
+
5392
+
5393
+
5394
+
5395
+
5396
+
5397
+
5398
+
5399
+
5400
+
5401
+
5402
+
5403
+
5404
+
5405
+
5406
+
5407
+ export { Alert, Avatar, Badge, Banner, Button, Checkbox, CodeInline, CodeSnippet, ContactBox, ControlButton, CopyButton, DataGrid, DateTime, Divider, DocumentationPopover, EmptyState, FormCheckbox, FormDatePicker, FormDateRangePicker, FormDateTimePicker, FormInput, FormRadio, FormSelect, FormSwitch, GridContainer, GridItem, Icon, Illustration, InfoCard, InfoModal, InfoPopover, Input, Link, Loading, NotFound, PageContainer, PageHeader, Radio, Select, Slider, Switch, Tab, TabGroup, Table, TableBody, TableCell, TableContainer, TableFooter, TableHead, TablePagination, TableRow, TableSortLabel, Tabs, Tag, Typography, UpComponentsProvider, capitalize, copyToClipboard, formatDate, formatFileSize, formatNumber, theme, useAlert, useCursorPagination, useDebounce, useQueryParams, useRemotePagination };
5408
+ export type { AlertProps, AvatarProps, BadgeProps, BannerProps, ButtonProps, CheckboxProps, CodeInlineProps, CodeSnippetItemProps, CodeSnippetProps, ContactBoxProps, ControlButtonProps, CopyButtonProps, CreateAlertProps, CreateSnackbarProps, CursorPaginatedResponse, DatePickerDateType, DateTimeProps, DividerProps, DocumentationPopoverProps, EmptyStateProps, FormCheckboxProps, FormDatePickerProps, FormDateRangePickerProps, FormDateTimePickerProps, FormInputProps, FormRadioProps, FormSelectProps, FormSwitchProps, GridContainerProps, GridItemProps, IconProps, IllustrationProps, InfoCardProps, InfoModalProps, InfoPopoverProps, InputProps, LinkProps, LoadingProps, NotFoundProps, PageContainerProps, PageHeaderProps, PaginatedResponse, RadioProps, SelectProps, SliderProps, SwitchProps, TabGroupProps, TabProps, TableBodyProps, TableCellProps, TableContainerProps, TableFooterProps, TableHeadProps, TablePaginationProps, TableProps, TableRowProps, TableSortLabelProps, TabsProps, TagProps, TypographyProps };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@up42/up-components",
3
- "version": "3.3.0",
3
+ "version": "4.0.0",
4
4
  "description": "UP42 Component Library",
5
5
  "author": "Axel Fuhrmann axel.fuhrmann@up42.com",
6
6
  "license": "ISC",
@@ -119,7 +119,7 @@
119
119
  "homepage": "https://github.com/up42/up-components#readme",
120
120
  "access": "private",
121
121
  "engines": {
122
- "node": ">= 18",
122
+ "node": ">= 22",
123
123
  "npm": ">= 8"
124
124
  },
125
125
  "commit-and-tag-version": {