@elliemae/ds-card-navigation 2.3.0-alpha.3 → 2.3.0-alpha.8

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.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,27 +1,30 @@
1
1
  {
2
2
  "name": "@elliemae/ds-card-navigation",
3
- "version": "2.3.0-alpha.3",
3
+ "version": "2.3.0-alpha.8",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Card Navigation",
6
- "module": "./esm/index.js",
7
- "main": "./cjs/index.js",
8
- "types": "./types/index.d.ts",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "module": "./dist/esm/index.js",
10
+ "main": "./dist/cjs/index.js",
11
+ "types": "./dist/types/index.d.ts",
9
12
  "exports": {
10
13
  ".": {
11
- "import": "./esm/index.js",
12
- "require": "./cjs/index.js"
14
+ "import": "./dist/esm/index.js",
15
+ "require": "./dist/cjs/index.js"
13
16
  },
14
17
  "./style": {
15
- "import": "./esm/style.js",
16
- "require": "./cjs/style.js"
18
+ "import": "./dist/esm/style.js",
19
+ "require": "./dist/cjs/style.js"
17
20
  },
18
21
  "./DSCardNavigation": {
19
- "import": "./esm/DSCardNavigation.js",
20
- "require": "./cjs/DSCardNavigation.js"
22
+ "import": "./dist/esm/DSCardNavigation.js",
23
+ "require": "./dist/cjs/DSCardNavigation.js"
21
24
  },
22
25
  "./components/types": {
23
- "import": "./esm/components/types.js",
24
- "require": "./cjs/components/types.js"
26
+ "import": "./dist/esm/components/types.js",
27
+ "require": "./dist/cjs/components/types.js"
25
28
  }
26
29
  },
27
30
  "sideEffects": [
@@ -33,27 +36,21 @@
33
36
  "url": "https://git.elliemae.io/platform-ui/dimsum.git"
34
37
  },
35
38
  "engines": {
36
- "npm": ">=7",
37
- "node": ">=14"
39
+ "pnpm": ">=6",
40
+ "node": ">=16"
38
41
  },
39
42
  "author": "ICE MT",
40
- "scripts": {
41
- "dev": "cross-env NODE_ENV=development && node ../../scripts/build/build.js -w",
42
- "prebuild": "exit 0",
43
- "predev": "exit 0",
44
- "build": "node ../../scripts/build/build.js"
45
- },
46
43
  "dependencies": {
47
- "@elliemae/ds-button": "2.3.0-alpha.3",
48
- "@elliemae/ds-icons": "2.3.0-alpha.3",
49
- "@elliemae/ds-truncated-tooltip-text": "2.3.0-alpha.3",
44
+ "@elliemae/ds-button": "2.3.0-alpha.8",
45
+ "@elliemae/ds-icons": "2.3.0-alpha.8",
46
+ "@elliemae/ds-truncated-tooltip-text": "2.3.0-alpha.8",
50
47
  "react-desc": "~4.1.3"
51
48
  },
52
49
  "devDependencies": {
53
- "@elliemae/pui-theme": "~2.2.5",
54
- "@testing-library/jest-dom": "~5.15.0",
50
+ "@elliemae/pui-theme": "~2.3.0",
51
+ "@testing-library/jest-dom": "~5.15.1",
55
52
  "@testing-library/react": "~12.1.2",
56
- "styled-components": "~5.3.0"
53
+ "styled-components": "~5.3.3"
57
54
  },
58
55
  "peerDependencies": {
59
56
  "@elliemae/pui-theme": "^2.2.5",
@@ -64,7 +61,12 @@
64
61
  },
65
62
  "publishConfig": {
66
63
  "access": "public",
67
- "directory": "dist",
68
- "generateSubmodules": true
64
+ "typeSafety": false
65
+ },
66
+ "scripts": {
67
+ "dev": "cross-env NODE_ENV=development && node ../../scripts/build/build.js -w",
68
+ "prebuild": "exit 0",
69
+ "predev": "exit 0",
70
+ "build": "node ../../scripts/build/build.js"
69
71
  }
70
72
  }
@@ -1,69 +0,0 @@
1
- /// <reference path="../../../../shared/typings/react-desc.d.ts" />
2
- /// <reference types="react" />
3
- import { CardNavigationTypes, CardNavigationTypesValues } from './components/types';
4
- declare const DSCardNavigation: {
5
- ({ containerProps, title, description, type, Icon, actions, ...rest }: {
6
- [x: string]: any;
7
- containerProps?: {} | undefined;
8
- title?: string | undefined;
9
- description?: string | undefined;
10
- type: any;
11
- Icon: any;
12
- actions?: never[] | undefined;
13
- }): JSX.Element;
14
- defaultProps: {
15
- type: string;
16
- Icon: (rest: any) => JSX.Element;
17
- };
18
- propTypes: {
19
- /** props to inject to card navigation wrapper */
20
- containerProps: {
21
- defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
22
- deprecated: import("react-desc").PropTypesDescValidator;
23
- };
24
- isRequired: import("react-desc").PropTypesDescValue;
25
- };
26
- /** card navigation title */
27
- title: {
28
- defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
29
- deprecated: import("react-desc").PropTypesDescValidator;
30
- };
31
- isRequired: import("react-desc").PropTypesDescValue;
32
- };
33
- /** card navigation main icon */
34
- Icon: {
35
- defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
36
- deprecated: import("react-desc").PropTypesDescValidator;
37
- };
38
- isRequired: import("react-desc").PropTypesDescValue;
39
- };
40
- /** card navigation description */
41
- description: {
42
- defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
43
- deprecated: import("react-desc").PropTypesDescValidator;
44
- };
45
- isRequired: import("react-desc").PropTypesDescValue;
46
- };
47
- /** card navigation type */
48
- type: {
49
- defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
50
- deprecated: import("react-desc").PropTypesDescValidator;
51
- };
52
- isRequired: import("react-desc").PropTypesDescValue;
53
- };
54
- /** card navigation actions array */
55
- actions: {
56
- defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
57
- deprecated: import("react-desc").PropTypesDescValidator;
58
- };
59
- isRequired: import("react-desc").PropTypesDescValue;
60
- };
61
- };
62
- };
63
- declare const DSCardNavigationWithSchema: {
64
- (props?: unknown): JSX.Element;
65
- propTypes: unknown;
66
- toTypescript: () => import("react-desc").TypescriptSchema;
67
- };
68
- export { CardNavigationTypes, CardNavigationTypesValues, DSCardNavigationWithSchema };
69
- export default DSCardNavigation;
@@ -1,7 +0,0 @@
1
- export declare const CardNavigationTypes: {
2
- BORROWER: string;
3
- FINANCIAL: string;
4
- LOAN: string;
5
- REGULATORY: string;
6
- };
7
- export declare const CardNavigationTypesValues: string[];
package/types/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export { default } from './DSCardNavigation';
2
- export * from './DSCardNavigation';
package/types/style.d.ts DELETED
@@ -1,9 +0,0 @@
1
- export declare const StyledCardNavigationContentTitle: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
2
- export declare const StyledCardNavigationContentDescription: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
3
- export declare const StyledCardNavigationContentTitleWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
4
- export declare const StyledCardNavigationContent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
5
- export declare const StyledCardNavigationCentralContent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
6
- export declare const StyledCardNavigationBoxWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
7
- export declare const StyledCardNavigationIcon: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
8
- export declare const StyledCardNavigationActions: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
9
- export declare const StyledCardNavigationAction: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
@@ -1 +0,0 @@
1
- export {};