@elliemae/ds-mobile 3.70.0-next.53 → 3.70.0-next.58

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.
Files changed (43) hide show
  1. package/dist/cjs/package.json +1 -4
  2. package/dist/esm/package.json +1 -4
  3. package/dist/types/Accordion/DSMobileAccordion.d.ts +2 -2
  4. package/dist/types/CategoryBox/CategoryBox.d.ts +2 -1
  5. package/dist/types/CollectionBox/CollectionBox.d.ts +2 -1
  6. package/dist/types/FullPageContainer/FullPageContainer.d.ts +1 -1
  7. package/dist/types/FullPageContainer/FullPageContainerScroll.d.ts +1 -1
  8. package/dist/types/GlobalHeader/MobileGlobalHeader.d.ts +2 -1
  9. package/dist/types/GroupBox/GroupBox.d.ts +2 -1
  10. package/dist/types/Icons/EM_logo.d.ts +2 -1
  11. package/dist/types/InfiniteLoader/Infiniteloader.d.ts +1 -1
  12. package/dist/types/InfiniteLoader/Loader.d.ts +1 -1
  13. package/dist/types/InfiniteLoader/VirtualizedInfiniteLoader.d.ts +2 -1
  14. package/dist/types/MobileActionToolbar/MobileActionToolbarItem.d.ts +2 -1
  15. package/dist/types/MobileBanner/MobileBanner.d.ts +2 -1
  16. package/dist/types/MobileBanner/utils/icons.d.ts +5 -4
  17. package/dist/types/MobileCard/ActionAddon.d.ts +1 -1
  18. package/dist/types/MobileCard/CardIcons.d.ts +1 -1
  19. package/dist/types/MobileCard/ExpandChevron.d.ts +1 -1
  20. package/dist/types/MobileCard/ExpandableRegion.d.ts +1 -1
  21. package/dist/types/MobileContextMenu/MobileContextMenuGroup.d.ts +2 -1
  22. package/dist/types/MobileDatePicker/Input.d.ts +2 -1
  23. package/dist/types/MobileDatePicker/MobileDatePicker.d.ts +2 -1
  24. package/dist/types/MobileFilterbar/Filterbar.d.ts +2 -1
  25. package/dist/types/MobileFilterbar/FilterbarItem.d.ts +2 -1
  26. package/dist/types/MobileFilterbar/FilterbarSort.d.ts +2 -1
  27. package/dist/types/MobileFooter/Action.d.ts +2 -1
  28. package/dist/types/MobileFooter/Footer.d.ts +2 -1
  29. package/dist/types/MobileFooter/Text.d.ts +2 -1
  30. package/dist/types/MobileSelectList/styled.d.ts +3 -3
  31. package/dist/types/MobileSeparator/Separator.d.ts +2 -1
  32. package/dist/types/MobileTimePicker/Input.d.ts +2 -1
  33. package/dist/types/MobileTimePicker/MobileTimePicker.d.ts +2 -1
  34. package/dist/types/Modal/Modal.d.ts +2 -1
  35. package/dist/types/PageFilter/PageFilter.d.ts +1 -1
  36. package/dist/types/PageForm/PageForm.d.ts +2 -2
  37. package/dist/types/PageSummary/PageSummary.d.ts +1 -1
  38. package/dist/types/SideNav/SideNav.d.ts +2 -1
  39. package/dist/types/SwipeToRefresh/ProgressIndicator.d.ts +1 -1
  40. package/dist/types/SwipeToRefresh/ProgressLoader.d.ts +2 -1
  41. package/dist/types/SwipeToRefresh/SwipeToRefresh.d.ts +2 -1
  42. package/dist/types/Tabs/index.d.ts +2 -2
  43. package/package.json +20 -20
@@ -3,8 +3,5 @@
3
3
  "sideEffects": [
4
4
  "*.css",
5
5
  "*.scss"
6
- ],
7
- "publishConfig": {
8
- "access": "public"
9
- }
6
+ ]
10
7
  }
@@ -3,8 +3,5 @@
3
3
  "sideEffects": [
4
4
  "*.css",
5
5
  "*.scss"
6
- ],
7
- "publishConfig": {
8
- "access": "public"
9
- }
6
+ ]
10
7
  }
@@ -1,11 +1,11 @@
1
1
  import type { DSAccordionT } from '@elliemae/ds-accordion';
2
2
  type DSMobileAccordionPropsT = Omit<DSAccordionT.Props, 'isDSMobile'>;
3
3
  export declare const DSMobileAccordion: {
4
- ({ children, ...props }: DSMobileAccordionPropsT): import("react/jsx-runtime.js").JSX.Element;
4
+ ({ children, ...props }: DSMobileAccordionPropsT): import("react").JSX.Element;
5
5
  displayName: string;
6
6
  };
7
7
  export declare const DSMobileAccordionItem: {
8
- ({ children, ...props }: DSAccordionT.ItemProps): import("react/jsx-runtime.js").JSX.Element;
8
+ ({ children, ...props }: DSAccordionT.ItemProps): import("react").JSX.Element;
9
9
  displayName: string;
10
10
  };
11
11
  declare const DSMobileAccordionItemWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<DSAccordionT.ItemProps>;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  declare const DSCategoryBox: {
2
3
  ({ borderTop, actionsRight, title, headerLevel, children }: {
3
4
  borderTop?: boolean | undefined;
@@ -5,7 +6,7 @@ declare const DSCategoryBox: {
5
6
  title: any;
6
7
  headerLevel?: number | undefined;
7
8
  children: any;
8
- }): import("react/jsx-runtime").JSX.Element;
9
+ }): React.JSX.Element;
9
10
  displayName: string;
10
11
  };
11
12
  declare const DSCategoryBoxWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").DocumentedReactComponent<{
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  declare const DSCollectionBox: {
2
3
  ({ body, title, headerAction, footerAction, headerLevel }: {
3
4
  body: any;
@@ -5,7 +6,7 @@ declare const DSCollectionBox: {
5
6
  headerAction: any;
6
7
  footerAction: any;
7
8
  headerLevel?: number | undefined;
8
- }): import("react/jsx-runtime").JSX.Element;
9
+ }): React.JSX.Element;
9
10
  displayName: string;
10
11
  };
11
12
  declare const DSCollectionBoxWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").DocumentedReactComponent<{
@@ -1,5 +1,5 @@
1
1
  declare const DSFullPageContainer: ({ children, ...props }: {
2
2
  [x: string]: any;
3
3
  children: any;
4
- }) => import("react/jsx-runtime.js").JSX.Element;
4
+ }) => import("react").JSX.Element;
5
5
  export { DSFullPageContainer };
@@ -2,5 +2,5 @@ declare const DSFullPageContainerScroll: ({ style, children, ...props }: {
2
2
  [x: string]: any;
3
3
  style?: {} | undefined;
4
4
  children: any;
5
- }) => import("react/jsx-runtime").JSX.Element;
5
+ }) => import("react").JSX.Element;
6
6
  export { DSFullPageContainerScroll };
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  declare const DSGlobalHeader: {
2
3
  ({ containerProps, title, lastIcon, onSearchChange, topMenuItems, bottomMenuItems, }: {
3
4
  containerProps?: {} | undefined;
@@ -6,7 +7,7 @@ declare const DSGlobalHeader: {
6
7
  onSearchChange?: ((...args: any[]) => void) | undefined;
7
8
  topMenuItems: any;
8
9
  bottomMenuItems: any;
9
- }): import("react/jsx-runtime.js").JSX.Element;
10
+ }): React.JSX.Element;
10
11
  displayName: string;
11
12
  };
12
13
  declare const DSGlobalHeaderWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  declare const DSGroupBox: {
2
3
  ({ children, title, background, headerLevel, actionsRight, borderTop }: {
3
4
  children: any;
@@ -6,7 +7,7 @@ declare const DSGroupBox: {
6
7
  headerLevel?: number | undefined;
7
8
  actionsRight?: never[] | undefined;
8
9
  borderTop: any;
9
- }): import("react/jsx-runtime").JSX.Element;
10
+ }): React.JSX.Element;
10
11
  displayName: string;
11
12
  };
12
13
  declare const DSGroupBoxWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").DocumentedReactComponent<{
@@ -1,3 +1,4 @@
1
- declare const SvgIcon: () => import("react/jsx-runtime").JSX.Element;
1
+ import React from 'react';
2
+ declare const SvgIcon: () => React.JSX.Element;
2
3
  export { SvgIcon };
3
4
  export default SvgIcon;
@@ -6,6 +6,6 @@ interface Props {
6
6
  children: React.ReactNode;
7
7
  height?: number | string;
8
8
  }
9
- declare const InfiniteLoader: ({ isFetching, fetchData, children, height, hasMoreItems }: Props) => import("react/jsx-runtime.js").JSX.Element;
9
+ declare const InfiniteLoader: ({ isFetching, fetchData, children, height, hasMoreItems }: Props) => React.JSX.Element;
10
10
  declare const InfiniteLoaderWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<Props>;
11
11
  export { InfiniteLoader, InfiniteLoaderWithSchema };
@@ -1,5 +1,5 @@
1
1
  interface Props {
2
2
  isOpen: boolean;
3
3
  }
4
- export declare const Loader: ({ isOpen }: Props) => import("react/jsx-runtime.js").JSX.Element;
4
+ export declare const Loader: ({ isOpen }: Props) => import("react").JSX.Element;
5
5
  export {};
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  declare const VirtualizedInfiniteLoader: {
2
3
  ({ moreItemsLoading, hasNextPage, isItemLoaded, loadMoreItems, getItemSize, height, item: Row, }: {
3
4
  moreItemsLoading?: boolean | undefined;
@@ -7,7 +8,7 @@ declare const VirtualizedInfiniteLoader: {
7
8
  getItemSize?: (() => number) | undefined;
8
9
  height: any;
9
10
  item: any;
10
- }): import("react/jsx-runtime").JSX.Element;
11
+ }): React.JSX.Element;
11
12
  displayName: string;
12
13
  };
13
14
  declare const VirtualizedInfiniteLoaderWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").DocumentedReactComponent<{
@@ -1,8 +1,9 @@
1
+ import React from 'react';
1
2
  declare const ToolbarItem: {
2
3
  ({ icon, ...otherProps }: {
3
4
  [x: string]: any;
4
5
  icon: any;
5
- }): import("react/jsx-runtime").JSX.Element;
6
+ }): React.JSX.Element;
6
7
  displayName: string;
7
8
  };
8
9
  declare const DSToolbarItemWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").DocumentedReactComponent<{
@@ -1,6 +1,7 @@
1
+ import React from 'react';
1
2
  import type { DSMobileBannerT } from './propTypes.js';
2
3
  declare const DSMobileBanner: {
3
- (props: DSMobileBannerT.Props): import("react/jsx-runtime.js").JSX.Element | null;
4
+ (props: DSMobileBannerT.Props): React.JSX.Element | null;
4
5
  displayName: string;
5
6
  };
6
7
  declare const DSMobileBannerWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<DSMobileBannerT.Props>;
@@ -1,6 +1,7 @@
1
+ import React from 'react';
1
2
  export declare const icons: {
2
- success: import("react/jsx-runtime").JSX.Element;
3
- info: import("react/jsx-runtime").JSX.Element;
4
- error: import("react/jsx-runtime").JSX.Element;
5
- warning: import("react/jsx-runtime").JSX.Element;
3
+ success: React.JSX.Element;
4
+ info: React.JSX.Element;
5
+ error: React.JSX.Element;
6
+ warning: React.JSX.Element;
6
7
  };
@@ -2,4 +2,4 @@ export declare const ActionAddon: ({ label, onClick, icon }: {
2
2
  label: any;
3
3
  onClick: any;
4
4
  icon: any;
5
- }) => import("react/jsx-runtime").JSX.Element;
5
+ }) => import("react").JSX.Element;
@@ -1,4 +1,4 @@
1
1
  export declare const SubIcons: ({ icons, colors }: {
2
2
  icons?: never[] | undefined;
3
3
  colors?: never[] | undefined;
4
- }) => import("react/jsx-runtime").JSX.Element;
4
+ }) => import("react").JSX.Element;
@@ -2,4 +2,4 @@ export declare const ExpandChevron: ({ isExpanded, onClick, align }: {
2
2
  isExpanded: any;
3
3
  onClick: any;
4
4
  align: any;
5
- }) => import("react/jsx-runtime").JSX.Element;
5
+ }) => import("react").JSX.Element;
@@ -1,4 +1,4 @@
1
1
  export declare const ExpandableRegion: ({ show, content }: {
2
2
  show: boolean;
3
3
  content: JSX.Element | JSX.Element[];
4
- }) => import("react/jsx-runtime").JSX.Element;
4
+ }) => import("react").JSX.Element;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  declare const DSMobileContextMenuGroup: {
2
3
  ({ title, isMulti, singleSelect, children, value: groupValue, selectedItems }: {
3
4
  title: any;
@@ -6,7 +7,7 @@ declare const DSMobileContextMenuGroup: {
6
7
  children: any;
7
8
  value: any;
8
9
  selectedItems: any;
9
- }): import("react/jsx-runtime").JSX.Element;
10
+ }): React.JSX.Element;
10
11
  componentType: string;
11
12
  displayName: string;
12
13
  };
@@ -1,4 +1,5 @@
1
+ import React from 'react';
1
2
  export declare const Input: ({ innerRef, ...props }: {
2
3
  [x: string]: any;
3
4
  innerRef: any;
4
- }) => import("react/jsx-runtime").JSX.Element;
5
+ }) => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  declare const DSMobileDatePicker: {
2
3
  ({ disabled, value, tabIndex, placeholder, onChange }: {
3
4
  disabled: any;
@@ -5,7 +6,7 @@ declare const DSMobileDatePicker: {
5
6
  tabIndex: any;
6
7
  placeholder: any;
7
8
  onChange: any;
8
- }): import("react/jsx-runtime.js").JSX.Element;
9
+ }): React.JSX.Element;
9
10
  defaultProps: {
10
11
  disabled: boolean;
11
12
  tabIndex: number;
@@ -1,7 +1,8 @@
1
+ import React from 'react';
1
2
  declare const DSMobileFilterbar: {
2
3
  ({ children }: {
3
4
  children: any;
4
- }): import("react/jsx-runtime.js").JSX.Element;
5
+ }): React.JSX.Element;
5
6
  displayName: string;
6
7
  };
7
8
  declare const FilterbarWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
@@ -1,9 +1,10 @@
1
+ import React from 'react';
1
2
  declare const DSMobileFilterbarItem: {
2
3
  ({ children, onClick, cols }: {
3
4
  children: any;
4
5
  onClick: any;
5
6
  cols?: string[] | undefined;
6
- }): import("react/jsx-runtime").JSX.Element;
7
+ }): React.JSX.Element;
7
8
  displayName: string;
8
9
  };
9
10
  declare const FilterbarItemWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").DocumentedReactComponent<{
@@ -1,7 +1,8 @@
1
+ import React from 'react';
1
2
  declare const DSMobileFilterbarSort: {
2
3
  ({ children }: {
3
4
  children: any;
4
- }): import("react/jsx-runtime.js").JSX.Element;
5
+ }): React.JSX.Element;
5
6
  displayName: string;
6
7
  };
7
8
  declare const FilterbarSortWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
@@ -1,9 +1,10 @@
1
+ import React from 'react';
1
2
  declare const DSMobileFooterAction: {
2
3
  ({ label, icon, onClick }: {
3
4
  label: any;
4
5
  icon: any;
5
6
  onClick: any;
6
- }): import("react/jsx-runtime").JSX.Element;
7
+ }): React.JSX.Element;
7
8
  displayName: string;
8
9
  };
9
10
  declare const DSMobileFooterActionWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").DocumentedReactComponent<{
@@ -1,7 +1,8 @@
1
+ import React from 'react';
1
2
  declare const MobileFooter: {
2
3
  ({ children }: {
3
4
  children: any;
4
- }): import("react/jsx-runtime.js").JSX.Element;
5
+ }): React.JSX.Element;
5
6
  displayName: string;
6
7
  };
7
8
  declare const MobileFooterWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
@@ -1,7 +1,8 @@
1
+ import React from 'react';
1
2
  declare const DSMobileFooterText: {
2
3
  ({ children }: {
3
4
  children: any;
4
- }): import("react/jsx-runtime").JSX.Element;
5
+ }): React.JSX.Element;
5
6
  displayName: string;
6
7
  };
7
8
  declare const DSMobileFooterTextWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").DocumentedReactComponent<{
@@ -11,6 +11,6 @@ export declare const ListContainer: import("styled-components").StyledComponent<
11
11
  } & {
12
12
  theme?: import("styled-components").DefaultTheme | undefined;
13
13
  } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
14
- export declare const checkbox: import("react/jsx-runtime.js").JSX.Element;
15
- export declare const checked: import("react/jsx-runtime.js").JSX.Element;
16
- export declare const selectedMark: import("react/jsx-runtime.js").JSX.Element;
14
+ export declare const checkbox: React.JSX.Element;
15
+ export declare const checked: React.JSX.Element;
16
+ export declare const selectedMark: React.JSX.Element;
@@ -1,10 +1,11 @@
1
+ import React from 'react';
1
2
  declare const MobileSeparator: {
2
3
  ({ color, direction, type, margin }: {
3
4
  color?: string[] | undefined;
4
5
  direction?: string | undefined;
5
6
  type?: string | undefined;
6
7
  margin?: string | undefined;
7
- }): import("react/jsx-runtime").JSX.Element;
8
+ }): React.JSX.Element;
8
9
  displayName: string;
9
10
  };
10
11
  declare const MobileSeparatorWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").DocumentedReactComponent<{
@@ -1,4 +1,5 @@
1
+ import React from 'react';
1
2
  export declare const Input: ({ innerRef, ...props }: {
2
3
  [x: string]: any;
3
4
  innerRef: any;
4
- }) => import("react/jsx-runtime").JSX.Element;
5
+ }) => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  declare const DSMobileTimePicker: {
2
3
  ({ disabled, value, tabIndex, placeholder, onChange }: {
3
4
  disabled: any;
@@ -5,7 +6,7 @@ declare const DSMobileTimePicker: {
5
6
  tabIndex: any;
6
7
  placeholder: any;
7
8
  onChange: any;
8
- }): import("react/jsx-runtime.js").JSX.Element;
9
+ }): React.JSX.Element;
9
10
  defaultProps: {
10
11
  disabled: boolean;
11
12
  tabIndex: number;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  declare const Modal: {
2
3
  ({ zIndex, title, description, onClose, showSecondaryAction, secondaryActionProps, primaryActionProps, isOpen, children, }: {
3
4
  zIndex?: number | undefined;
@@ -15,7 +16,7 @@ declare const Modal: {
15
16
  } | undefined;
16
17
  isOpen?: boolean | undefined;
17
18
  children?: undefined;
18
- }): import("react/jsx-runtime.js").JSX.Element | null;
19
+ }): React.JSX.Element | null;
19
20
  displayName: string;
20
21
  };
21
22
  declare const ModalWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
@@ -5,5 +5,5 @@ declare const DSPageFilter: ({ children, breadCrumb, pageTitle, leftProp, rightP
5
5
  leftProp?: null | undefined;
6
6
  rightProp?: null | undefined;
7
7
  footerButton?: null | undefined;
8
- }) => import("react/jsx-runtime.js").JSX.Element;
8
+ }) => import("react").JSX.Element;
9
9
  export { DSPageFilter };
@@ -2,10 +2,10 @@ declare const DSPageForm: ({ header, body, footer }: {
2
2
  header?: null | undefined;
3
3
  body?: null | undefined;
4
4
  footer?: null | undefined;
5
- }) => import("react/jsx-runtime.js").JSX.Element;
5
+ }) => import("react").JSX.Element;
6
6
  declare const DSMobilePageForm: ({ header, body, footer }: {
7
7
  header?: null | undefined;
8
8
  body?: null | undefined;
9
9
  footer?: null | undefined;
10
- }) => import("react/jsx-runtime.js").JSX.Element;
10
+ }) => import("react").JSX.Element;
11
11
  export { DSMobilePageForm, DSPageForm };
@@ -5,5 +5,5 @@ declare const DSPageSummary: ({ header, headerZIndex, bodyPrimary, actions, acti
5
5
  actions?: null | undefined;
6
6
  actionsZIndex?: number | undefined;
7
7
  bodySecondary?: null | undefined;
8
- }) => import("react/jsx-runtime.js").JSX.Element;
8
+ }) => import("react").JSX.Element;
9
9
  export { DSPageSummary };
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  declare const DSSideNav: {
2
3
  ({ containerProps, title, onClose, menuItems, bottomMenuItems }: {
3
4
  containerProps?: {} | undefined;
@@ -5,7 +6,7 @@ declare const DSSideNav: {
5
6
  onClose?: ((...args: any[]) => void) | undefined;
6
7
  menuItems?: never[] | undefined;
7
8
  bottomMenuItems?: never[] | undefined;
8
- }): import("react/jsx-runtime.js").JSX.Element;
9
+ }): React.JSX.Element;
9
10
  displayName: string;
10
11
  };
11
12
  declare const DSSideNavWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
@@ -1,3 +1,3 @@
1
1
  export declare const ProgressIndicator: ({ progress }: {
2
2
  progress?: number | undefined;
3
- }) => import("react/jsx-runtime").JSX.Element;
3
+ }) => import("react").JSX.Element;
@@ -1 +1,2 @@
1
- export declare const ProgressLoader: () => import("react/jsx-runtime").JSX.Element;
1
+ import React from 'react';
2
+ export declare const ProgressLoader: () => React.JSX.Element;
@@ -1,9 +1,10 @@
1
+ import React from 'react';
1
2
  declare const SwipeToRefresh: {
2
3
  ({ children, loading, onRefresh }: {
3
4
  children: any;
4
5
  loading: any;
5
6
  onRefresh: any;
6
- }): import("react/jsx-runtime.js").JSX.Element;
7
+ }): React.JSX.Element;
7
8
  displayName: string;
8
9
  };
9
10
  declare const SwipeToRefreshWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
@@ -1,9 +1,9 @@
1
1
  import type { DSTabsT, DSTabT } from '@elliemae/ds-tabs';
2
2
  type DSMobileTabsPropsT = Omit<DSTabsT.Props, 'animated' | 'enableMouseEvents' | 'allowTextSelection' | 'type' | 'isDSMobile' | 'withCarousel'>;
3
3
  type DSMobileTabPropsT = Omit<DSTabT.Props, 'isDSMobile'>;
4
- declare const DSMobileTabs: (props: DSMobileTabsPropsT) => import("react/jsx-runtime").JSX.Element;
4
+ declare const DSMobileTabs: (props: DSMobileTabsPropsT) => import("react").JSX.Element;
5
5
  declare const DSMobileTab: {
6
- (props: DSMobileTabPropsT): import("react/jsx-runtime").JSX.Element;
6
+ (props: DSMobileTabPropsT): import("react").JSX.Element;
7
7
  displayName: string;
8
8
  };
9
9
  declare const DSMobileTabsWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").DocumentedReactComponent<DSTabsT.Props>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-mobile",
3
- "version": "3.70.0-next.53",
3
+ "version": "3.70.0-next.58",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - System",
6
6
  "files": [
@@ -44,35 +44,35 @@
44
44
  "@elliemae/ds-legacy-form": "1.0.16",
45
45
  "react-window": "~1.8.8",
46
46
  "react-window-infinite-loader": "~1.0.8",
47
- "@elliemae/ds-accordion": "3.70.0-next.53",
48
- "@elliemae/ds-backdrop": "3.70.0-next.53",
49
- "@elliemae/ds-button-v2": "3.70.0-next.53",
50
- "@elliemae/ds-circular-progress-indicator": "3.70.0-next.53",
51
- "@elliemae/ds-grid": "3.70.0-next.53",
52
- "@elliemae/ds-icon": "3.70.0-next.53",
53
- "@elliemae/ds-form-checkbox": "3.70.0-next.53",
54
- "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.53",
55
- "@elliemae/ds-icons": "3.70.0-next.53",
56
- "@elliemae/ds-props-helpers": "3.70.0-next.53",
57
- "@elliemae/ds-system": "3.70.0-next.53",
58
- "@elliemae/ds-truncated-expandable-text": "3.70.0-next.53",
59
- "@elliemae/ds-tabs": "3.70.0-next.53",
60
- "@elliemae/ds-shared": "3.70.0-next.53"
47
+ "@elliemae/ds-accordion": "3.70.0-next.58",
48
+ "@elliemae/ds-circular-progress-indicator": "3.70.0-next.58",
49
+ "@elliemae/ds-form-checkbox": "3.70.0-next.58",
50
+ "@elliemae/ds-backdrop": "3.70.0-next.58",
51
+ "@elliemae/ds-button-v2": "3.70.0-next.58",
52
+ "@elliemae/ds-grid": "3.70.0-next.58",
53
+ "@elliemae/ds-icon": "3.70.0-next.58",
54
+ "@elliemae/ds-props-helpers": "3.70.0-next.58",
55
+ "@elliemae/ds-icons": "3.70.0-next.58",
56
+ "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.58",
57
+ "@elliemae/ds-shared": "3.70.0-next.58",
58
+ "@elliemae/ds-system": "3.70.0-next.58",
59
+ "@elliemae/ds-tabs": "3.70.0-next.58",
60
+ "@elliemae/ds-truncated-expandable-text": "3.70.0-next.58"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@elliemae/pui-theme": "~2.13.0",
64
64
  "jest": "^30.0.0",
65
- "styled-components": "~5.3.9",
65
+ "styled-components": "~5.3.11",
66
66
  "styled-system": "^5.1.5",
67
- "@elliemae/ds-monorepo-devops": "3.70.0-next.53",
68
- "@elliemae/ds-test-utils": "3.70.0-next.53"
67
+ "@elliemae/ds-monorepo-devops": "3.70.0-next.58",
68
+ "@elliemae/ds-test-utils": "3.70.0-next.58"
69
69
  },
70
70
  "peerDependencies": {
71
71
  "@elliemae/pui-theme": "~2.13.0",
72
72
  "lodash-es": "^4.18.1",
73
73
  "react": "^18.3.1",
74
74
  "react-dom": "^18.3.1",
75
- "styled-components": "~5.3.9",
75
+ "styled-components": "~5.3.11",
76
76
  "styled-system": "^5.1.5"
77
77
  },
78
78
  "scripts": {
@@ -84,4 +84,4 @@
84
84
  "checkDeps": "npx -yes ../../util/ds-codemods check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\"",
85
85
  "dev": "cross-env NODE_ENV=development node ../../../scripts/build/build.mjs --watch"
86
86
  }
87
- }
87
+ }