@elliemae/ds-mobile 3.22.0-next.2 → 3.22.0-next.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-mobile",
3
- "version": "3.22.0-next.2",
3
+ "version": "3.22.0-next.3",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - System",
6
6
  "files": [
@@ -439,31 +439,33 @@
439
439
  "prop-types": "~15.8.1",
440
440
  "react-window": "~1.8.8",
441
441
  "react-window-infinite-loader": "~1.0.8",
442
- "@elliemae/ds-accordion": "3.22.0-next.2",
443
- "@elliemae/ds-backdrop": "3.22.0-next.2",
444
- "@elliemae/ds-button-v2": "3.22.0-next.2",
445
- "@elliemae/ds-button": "3.22.0-next.2",
446
- "@elliemae/ds-circular-progress-indicator": "3.22.0-next.2",
447
- "@elliemae/ds-form": "3.22.0-next.2",
448
- "@elliemae/ds-grid": "3.22.0-next.2",
449
- "@elliemae/ds-icon": "3.22.0-next.2",
450
- "@elliemae/ds-icons": "3.22.0-next.2",
451
- "@elliemae/ds-form-checkbox": "3.22.0-next.2",
452
- "@elliemae/ds-props-helpers": "3.22.0-next.2",
453
- "@elliemae/ds-indeterminate-progress-indicator": "3.22.0-next.2",
454
- "@elliemae/ds-shared": "3.22.0-next.2",
455
- "@elliemae/ds-system": "3.22.0-next.2",
456
- "@elliemae/ds-truncated-expandable-text": "3.22.0-next.2",
457
- "@elliemae/ds-utilities": "3.22.0-next.2",
458
- "@elliemae/ds-tabs": "3.22.0-next.2"
442
+ "@elliemae/ds-accordion": "3.22.0-next.3",
443
+ "@elliemae/ds-backdrop": "3.22.0-next.3",
444
+ "@elliemae/ds-button": "3.22.0-next.3",
445
+ "@elliemae/ds-button-v2": "3.22.0-next.3",
446
+ "@elliemae/ds-circular-progress-indicator": "3.22.0-next.3",
447
+ "@elliemae/ds-form": "3.22.0-next.3",
448
+ "@elliemae/ds-form-checkbox": "3.22.0-next.3",
449
+ "@elliemae/ds-grid": "3.22.0-next.3",
450
+ "@elliemae/ds-icon": "3.22.0-next.3",
451
+ "@elliemae/ds-icons": "3.22.0-next.3",
452
+ "@elliemae/ds-props-helpers": "3.22.0-next.3",
453
+ "@elliemae/ds-indeterminate-progress-indicator": "3.22.0-next.3",
454
+ "@elliemae/ds-shared": "3.22.0-next.3",
455
+ "@elliemae/ds-system": "3.22.0-next.3",
456
+ "@elliemae/ds-tabs": "3.22.0-next.3",
457
+ "@elliemae/ds-utilities": "3.22.0-next.3",
458
+ "@elliemae/ds-truncated-expandable-text": "3.22.0-next.3"
459
459
  },
460
460
  "devDependencies": {
461
+ "@elliemae/pui-cli": "~9.0.0-next.17",
461
462
  "@elliemae/pui-theme": "~2.7.0",
462
463
  "@testing-library/jest-dom": "~5.16.5",
463
464
  "@testing-library/react": "~12.1.3",
464
465
  "@testing-library/user-event": "~13.5.0",
465
466
  "styled-components": "~5.3.9",
466
- "styled-system": "~5.1.5"
467
+ "styled-system": "~5.1.5",
468
+ "@elliemae/ds-monorepo-devops": "3.22.0-next.3"
467
469
  },
468
470
  "peerDependencies": {
469
471
  "@elliemae/pui-theme": "^2.6.0",
@@ -474,7 +476,7 @@
474
476
  "styled-system": "^5.1.5"
475
477
  },
476
478
  "scripts": {
477
- "test": "node ../../scripts/testing/test.mjs",
479
+ "test": "pui-cli test --passWithNoTests",
478
480
  "lint": "node ../../scripts/lint.mjs",
479
481
  "eslint:fix": "eslint --ext='.js,.jsx,.test.js,.ts,.tsx' --fix --config='../../.eslintrc.js' src/",
480
482
  "dts": "exit 0 | echo",
@@ -1,13 +0,0 @@
1
- import React from 'react';
2
- import PropTypes from 'prop-types';
3
- declare const DSMobileLoadingPage: React.ForwardRefExoticComponent<{
4
- children?: PropTypes.ReactElementLike | null | undefined;
5
- type?: string | undefined;
6
- zIndex?: number | null | undefined;
7
- backdropZIndex?: number | null | undefined;
8
- loader?: (PropTypes.ReactElementLike | null | undefined)[] | null | undefined;
9
- loading?: boolean | null | undefined;
10
- } & {
11
- theme?: import("styled-components").DefaultTheme | undefined;
12
- }>;
13
- export { DSMobileLoadingPage };
@@ -1,18 +0,0 @@
1
- import React from 'react';
2
- import ToolbarItem from './MobileActionToolbarItem.js';
3
- declare const DSMobileActionToolbar: React.ForwardRefExoticComponent<{
4
- [x: string]: any;
5
- [x: number]: any;
6
- [x: symbol]: any;
7
- } & {
8
- theme?: import("styled-components").DefaultTheme | undefined;
9
- }>;
10
- declare const DSMobileActionToolbarWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
11
- [x: string]: any;
12
- [x: number]: any;
13
- [x: symbol]: any;
14
- } & {
15
- theme?: import("styled-components").DefaultTheme | undefined;
16
- }>;
17
- export { ToolbarItem, DSMobileActionToolbarWithSchema };
18
- export default DSMobileActionToolbar;
@@ -1,21 +0,0 @@
1
- import React from 'react';
2
- import type { MobileCardProps } from './props.js';
3
- declare const DSMobileCardWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<MobileCardProps>;
4
- export { DSMobileCardWithSchema };
5
- declare const _default: React.ForwardRefExoticComponent<{
6
- height: "m" | "s";
7
- children: React.ReactNode | React.ReactNode[];
8
- value: number;
9
- details: string[];
10
- leftProp: JSX.Element | JSX.Element[];
11
- rightProp: JSX.Element[];
12
- leftAddOn: JSX.Element | JSX.Element[];
13
- subText: string[];
14
- subIcons: JSX.Element | JSX.Element[];
15
- expandable: boolean;
16
- expandedContent: JSX.Element | JSX.Element[];
17
- cardContent: JSX.Element | JSX.Element[];
18
- } & {
19
- theme?: import("styled-components").DefaultTheme | undefined;
20
- }>;
21
- export default _default;
@@ -1,19 +0,0 @@
1
- import React from 'react';
2
- declare const DSMobileCardGroupWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
3
- children: any;
4
- theme: any;
5
- title: any;
6
- action: any;
7
- activeValue: any;
8
- allowMultipleOpen?: boolean | undefined;
9
- onChange?: (() => null) | undefined;
10
- }>;
11
- export { DSMobileCardGroupWithSchema };
12
- declare const _default: React.ForwardRefExoticComponent<{
13
- [x: string]: any;
14
- [x: number]: any;
15
- [x: symbol]: any;
16
- } & {
17
- theme?: import("styled-components").DefaultTheme | undefined;
18
- }>;
19
- export default _default;
@@ -1,23 +0,0 @@
1
- /// <reference types="react" />
2
- import MobileCard, { DSMobileCardWithSchema } from './Card.js';
3
- import { DSMobileCardGroupWithSchema } from './Group.js';
4
- import { ActionAddon } from './ActionAddon.js';
5
- declare const DSMobileCard: import("react").ForwardRefExoticComponent<{
6
- height: "m" | "s";
7
- children: import("react").ReactNode | import("react").ReactNode[];
8
- value: number;
9
- details: string[];
10
- leftProp: JSX.Element | JSX.Element[];
11
- rightProp: JSX.Element[];
12
- leftAddOn: JSX.Element | JSX.Element[];
13
- subText: string[];
14
- subIcons: JSX.Element | JSX.Element[];
15
- expandable: boolean;
16
- expandedContent: JSX.Element | JSX.Element[];
17
- cardContent: JSX.Element | JSX.Element[];
18
- } & {
19
- theme?: import("styled-components").DefaultTheme | undefined;
20
- }>;
21
- export { DSMobileCard, ActionAddon, DSMobileCardWithSchema, DSMobileCardGroupWithSchema };
22
- export * from './CardIcons.js';
23
- export default MobileCard;
@@ -1,16 +0,0 @@
1
- import React from 'react';
2
- declare const DSMobileContextMenu: React.ForwardRefExoticComponent<{
3
- [x: string]: any;
4
- [x: number]: any;
5
- [x: symbol]: any;
6
- } & {
7
- theme?: import("styled-components").DefaultTheme | undefined;
8
- }>;
9
- declare const DSMobileContextMenuWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
10
- [x: string]: any;
11
- [x: number]: any;
12
- [x: symbol]: any;
13
- } & {
14
- theme?: import("styled-components").DefaultTheme | undefined;
15
- }>;
16
- export { DSMobileContextMenu, DSMobileContextMenuWithSchema };
@@ -1,17 +0,0 @@
1
- import React from 'react';
2
- declare const DSMobileListItem: React.ForwardRefExoticComponent<{
3
- [x: string]: any;
4
- [x: number]: any;
5
- [x: symbol]: any;
6
- } & {
7
- theme?: import("styled-components").DefaultTheme | undefined;
8
- }>;
9
- declare const ListItemWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").DocumentedReactComponent<{
10
- leftAddon?: null | undefined;
11
- rightAddon?: null | undefined;
12
- title?: string | undefined;
13
- value?: string | undefined;
14
- dataTestid?: string | undefined;
15
- theme: any;
16
- }>;
17
- export { DSMobileListItem, ListItemWithSchema };
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- declare const PageHeaderWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
3
- pageTitle?: null | undefined;
4
- withBlueBorder?: boolean | undefined;
5
- contextMenu?: null | undefined;
6
- firstAction?: null | undefined;
7
- secondAction?: null | undefined;
8
- backArrow?: null | undefined;
9
- breadCrumb?: null | undefined;
10
- onOpenContextMenu?: (() => null) | undefined;
11
- value: any;
12
- label: any;
13
- theme: any;
14
- }>;
15
- declare const DSMobilePageHeader: React.ForwardRefExoticComponent<{
16
- [x: string]: any;
17
- [x: number]: any;
18
- [x: symbol]: any;
19
- } & {
20
- theme?: import("styled-components").DefaultTheme | undefined;
21
- }>;
22
- export { DSMobilePageHeader, PageHeaderWithSchema };
@@ -1,19 +0,0 @@
1
- import React from 'react';
2
- import PropTypes from 'prop-types';
3
- declare const DSMobileSelectList: React.ForwardRefExoticComponent<{
4
- children?: (PropTypes.ReactElementLike | null | undefined)[] | null | undefined;
5
- multiple?: boolean | undefined;
6
- open?: boolean | undefined;
7
- onChange?: ((...args: any[]) => void) | undefined;
8
- zIndex?: number | undefined;
9
- header?: null | undefined;
10
- dataTestid?: string | undefined;
11
- buttonFooter?: null | undefined;
12
- onApply?: ((...args: any[]) => void) | undefined;
13
- selecteds?: never[] | undefined;
14
- useSearch?: boolean | null | undefined;
15
- onSearch?: ((...args: any[]) => void) | undefined;
16
- } & {
17
- theme?: import("styled-components").DefaultTheme | undefined;
18
- }>;
19
- export { DSMobileSelectList };
@@ -1,8 +0,0 @@
1
- import React from 'react';
2
- declare const DSMobileTouchable: React.ForwardRefExoticComponent<{
3
- [x: string]: any;
4
- [x: number]: any;
5
- } & {
6
- theme?: import("styled-components").DefaultTheme | undefined;
7
- }>;
8
- export { DSMobileTouchable };
@@ -1,16 +0,0 @@
1
- import React from 'react';
2
- declare const DSMobilePageList: React.ForwardRefExoticComponent<{
3
- [x: string]: any;
4
- [x: number]: any;
5
- [x: symbol]: any;
6
- } & {
7
- theme?: import("styled-components").DefaultTheme | undefined;
8
- }>;
9
- declare const DSPageList: React.ForwardRefExoticComponent<{
10
- [x: string]: any;
11
- [x: number]: any;
12
- [x: symbol]: any;
13
- } & {
14
- theme?: import("styled-components").DefaultTheme | undefined;
15
- }>;
16
- export { DSPageList, DSMobilePageList };
@@ -1,16 +0,0 @@
1
- import React from 'react';
2
- declare const DSMobilePageSearch: React.ForwardRefExoticComponent<{
3
- [x: string]: any;
4
- [x: number]: any;
5
- [x: symbol]: any;
6
- } & {
7
- theme?: import("styled-components").DefaultTheme | undefined;
8
- }>;
9
- declare const DSPageSearch: React.ForwardRefExoticComponent<{
10
- [x: string]: any;
11
- [x: number]: any;
12
- [x: symbol]: any;
13
- } & {
14
- theme?: import("styled-components").DefaultTheme | undefined;
15
- }>;
16
- export { DSPageSearch, DSMobilePageSearch };