@elliemae/ds-decision-graph 3.57.0-next.9 → 3.57.0-rc.1

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.
@@ -85,7 +85,7 @@ export declare const useDecisionGraph: (propsFromUser: DSDecisionGraphT.Props) =
85
85
  onBlurCapture?: React.FocusEventHandler<HTMLDivElement> | undefined;
86
86
  onChange?: React.FormEventHandler<HTMLDivElement> | undefined;
87
87
  onChangeCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
88
- onBeforeInput?: React.FormEventHandler<HTMLDivElement> | undefined;
88
+ onBeforeInput?: React.InputEventHandler<HTMLDivElement> | undefined;
89
89
  onBeforeInputCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
90
90
  onInput?: React.FormEventHandler<HTMLDivElement> | undefined;
91
91
  onInputCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-decision-graph",
3
- "version": "3.57.0-next.9",
3
+ "version": "3.57.0-rc.1",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Decision Graph",
6
6
  "files": [
@@ -35,41 +35,38 @@
35
35
  "reportFile": "tests.xml",
36
36
  "indent": 4
37
37
  },
38
+ "scripts": {
39
+ "dev": "cross-env NODE_ENV=development node ../../../scripts/build/build.mjs --watch",
40
+ "test": "pui-cli test --passWithNoTests --coverage=\"false\"",
41
+ "lint": "node ../../../scripts/lint.mjs --fix",
42
+ "lint:strict": "node ../../../scripts/lint-strict.mjs",
43
+ "dts": "node ../../../scripts/dts.mjs",
44
+ "build": "cross-env NODE_ENV=production node ../../../scripts/build/build.mjs",
45
+ "checkDeps": "npm exec ../../util/ds-codemods -- check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
46
+ },
38
47
  "dependencies": {
39
- "@xstyled/styled-components": "~3.7.3",
40
- "ajv": "^8.17.1",
41
- "mermaid": "^11.6.0",
42
- "uid": "^2.0.2",
43
- "@elliemae/ds-button": "3.57.0-next.9",
44
- "@elliemae/ds-grid": "3.57.0-next.9",
45
- "@elliemae/ds-system": "3.57.0-next.9",
46
- "@elliemae/ds-props-helpers": "3.57.0-next.9"
48
+ "@elliemae/ds-grid": "3.57.0-rc.1",
49
+ "@elliemae/ds-props-helpers": "3.57.0-rc.1",
50
+ "@elliemae/ds-system": "3.57.0-rc.1",
51
+ "ajv": "catalog:",
52
+ "mermaid": "catalog:",
53
+ "uid": "catalog:"
47
54
  },
48
55
  "devDependencies": {
49
- "@elliemae/pui-cli": "9.0.0-next.65",
50
- "@xstyled/system": "~3.7.3",
51
- "jest": "~29.7.0",
52
- "lodash-es": "^4.17.21",
53
- "styled-components": "~5.3.9",
54
- "@elliemae/ds-monorepo-devops": "3.57.0-next.9"
56
+ "@elliemae/ds-monorepo-devops": "3.57.0-rc.1",
57
+ "@elliemae/pui-cli": "catalog:",
58
+ "@xstyled/system": "catalog:",
59
+ "jest": "catalog:"
55
60
  },
56
61
  "peerDependencies": {
57
- "lodash-es": "^4.17.21",
58
- "react": "^18.3.1",
59
- "react-dom": "^18.3.1",
60
- "styled-components": "~5.3.9"
62
+ "lodash-es": "catalog:",
63
+ "react": "catalog:",
64
+ "react-dom": "catalog:",
65
+ "styled-components": "catalog:"
61
66
  },
62
67
  "publishConfig": {
63
68
  "access": "public",
64
69
  "typeSafety": false
65
70
  },
66
- "scripts": {
67
- "dev": "cross-env NODE_ENV=development node ../../../scripts/build/build.mjs --watch",
68
- "test": "pui-cli test --passWithNoTests --coverage=\"false\"",
69
- "lint": "node ../../../scripts/lint.mjs --fix",
70
- "lint:strict": "node ../../../scripts/lint-strict.mjs",
71
- "dts": "node ../../../scripts/dts.mjs",
72
- "build": "cross-env NODE_ENV=production node ../../../scripts/build/build.mjs",
73
- "checkDeps": "npm exec ../../util/ds-codemods -- check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
74
- }
75
- }
71
+ "gitHead": "d0d7cac7600d5ba2b1c5c80cba7573e6acc11a96"
72
+ }