@elliemae/ds-typography 3.17.0-next.1 → 3.17.0-next.11

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,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { DSTypographyT } from '../react-desc-prop-types.js';
2
3
  export declare const useDefaultProps: ({ variant, as: userAs }: DSTypographyT.Props) => {
3
4
  as: keyof JSX.IntrinsicElements;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-typography",
3
- "version": "3.17.0-next.1",
3
+ "version": "3.17.0-next.11",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Typography",
6
6
  "files": [
@@ -35,16 +35,18 @@
35
35
  "indent": 4
36
36
  },
37
37
  "dependencies": {
38
- "@elliemae/ds-props-helpers": "3.17.0-next.1",
39
- "@elliemae/ds-system": "3.17.0-next.1",
40
- "@elliemae/ds-utilities": "3.17.0-next.1"
38
+ "@xstyled/system": "~3.7.3",
39
+ "@xstyled/util": "3.7.0",
40
+ "@elliemae/ds-props-helpers": "3.17.0-next.11",
41
+ "@elliemae/ds-utilities": "3.17.0-next.11",
42
+ "@elliemae/ds-system": "3.17.0-next.11"
41
43
  },
42
44
  "devDependencies": {
43
45
  "@testing-library/jest-dom": "~5.16.5",
44
46
  "@testing-library/react": "~12.1.3",
45
- "@testing-library/user-event": "~13.5.0",
46
47
  "react": "^17.0.2",
47
- "react-dom": "^17.0.2"
48
+ "react-dom": "^17.0.2",
49
+ "react-test-renderer": "~17.0.2"
48
50
  },
49
51
  "peerDependencies": {
50
52
  "react": "^17.0.2",
@@ -56,12 +58,14 @@
56
58
  "typeSafety": false
57
59
  },
58
60
  "scripts": {
59
- "dev": "cross-env NODE_ENV=development node ../../scripts/build/build.mjs --watch",
60
61
  "test": "node ../../scripts/testing/test.mjs",
61
62
  "lint": "node ../../scripts/lint.mjs",
62
63
  "eslint:fix": "eslint --ext='.js,.jsx,.test.js,.ts,.tsx' --fix --config='../../.eslintrc.js' src/",
63
64
  "dts": "node ../../scripts/dts.mjs",
65
+ "build": "cross-env NODE_ENV=production node ../../scripts/build/build.mjs",
64
66
  "dev:build": "pnpm --filter {.}... build",
65
- "build": "cross-env NODE_ENV=production node ../../scripts/build/build.mjs"
67
+ "dev:install": "pnpm --filter {.}... i --no-lockfile && pnpm run dev:build",
68
+ "checkDeps": "npx -yes ../ds-codemods check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\"",
69
+ "dev": "cross-env NODE_ENV=development node ../../scripts/build/build.mjs --watch"
66
70
  }
67
71
  }