@evoke-platform/ui-components 1.10.0-dev.15 → 1.10.0-dev.17

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,2 +1,3 @@
1
1
  export { default as ViewOnlyEntryRenderer } from './InstanceEntryRenderer';
2
- export { default as ViewDetailsV2Container } from './ViewDetailsV2Renderer';
2
+ export { default as ViewDetailsV2Container } from './ViewDetailsV2Container';
3
+ export type { ViewDetailsV2ContainerProps } from './ViewDetailsV2Container';
@@ -1,2 +1,2 @@
1
1
  export { default as ViewOnlyEntryRenderer } from './InstanceEntryRenderer';
2
- export { default as ViewDetailsV2Container } from './ViewDetailsV2Renderer';
2
+ export { default as ViewDetailsV2Container } from './ViewDetailsV2Container';
@@ -15,3 +15,4 @@ export { ResponsiveOverflow } from './ResponsiveOverflow';
15
15
  export { RichTextViewer } from './RichTextViewer';
16
16
  export { UserAvatar } from './UserAvatar';
17
17
  export { ViewDetailsV2Container, ViewOnlyEntryRenderer } from './ViewDetailsV2';
18
+ export type { ViewDetailsV2ContainerProps } from './ViewDetailsV2';
@@ -1,15 +1,15 @@
1
1
  export { ClickAwayListener, createTheme, darken, lighten, styled, Toolbar, useMediaQuery, useTheme, } from '@mui/material';
2
+ export type { AutocompleteRenderGroupParams, ButtonBaseActions, ButtonBaseClasses, FormControlProps, FormHelperTextProps, GridSize, MenuItemClasses, TextFieldProps, Theme, } from '@mui/material';
3
+ export type { TouchRippleActions, TouchRippleProps } from '@mui/material/ButtonBase/TouchRipple';
4
+ export type { CommonProps } from '@mui/material/OverridableComponent';
5
+ export type { SxProps } from '@mui/system';
2
6
  export { CalendarPicker, DateTimePicker, MonthPicker, PickersDay, StaticDateTimePicker, StaticTimePicker, TimePicker, YearPicker, } from '@mui/x-date-pickers';
3
7
  export * from './colors';
4
8
  export * from './components/core';
5
9
  export { BuilderGrid, CriteriaBuilder, DataGrid, ErrorComponent, Form, FormContext, FormField, FormRenderer, FormRendererContainer, getReadableQuery, HistoryLog, MenuBar, MultiSelect, RecursiveEntryRenderer, RepeatableField, ResponsiveOverflow, RichTextViewer, UserAvatar, ViewDetailsV2Container, ViewOnlyEntryRenderer, } from './components/custom';
6
- export type { BodyProps, FooterProps, FormRef, GridSortModel, HeaderProps } from './components/custom';
10
+ export type { BodyProps, FooterProps, FormRef, GridSortModel, HeaderProps, ViewDetailsV2ContainerProps, } from './components/custom';
7
11
  export { NumericFormat } from './components/custom/FormField/InputFieldComponent';
8
12
  export { Box, Container, Grid, Stack } from './components/layout';
9
13
  export * from './theme';
10
14
  export * as EVOKE_TYPES from './types';
11
15
  export * from './util';
12
- export type { AutocompleteRenderGroupParams, ButtonBaseActions, ButtonBaseClasses, FormControlProps, FormHelperTextProps, GridSize, MenuItemClasses, TextFieldProps, Theme, } from '@mui/material';
13
- export type { TouchRippleActions, TouchRippleProps } from '@mui/material/ButtonBase/TouchRipple';
14
- export type { CommonProps } from '@mui/material/OverridableComponent';
15
- export type { SxProps } from '@mui/system';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evoke-platform/ui-components",
3
- "version": "1.10.0-dev.15",
3
+ "version": "1.10.0-dev.17",
4
4
  "description": "",
5
5
  "main": "dist/published/index.js",
6
6
  "module": "dist/published/index.js",
@@ -1,6 +1,6 @@
1
1
  import React, { ComponentType } from 'react';
2
- import { FormRendererProps } from '../FormV2/FormRenderer';
3
2
  import { BaseProps, SimpleEditorProps } from '../FormV2/components/types';
3
+ import { FormRendererProps } from '../FormV2/FormRenderer';
4
4
  export type ViewDetailsV2ContainerProps = BaseProps & {
5
5
  panelLayoutId?: string;
6
6
  instanceId?: string;