@elliemae/ds-props-helpers 3.53.0-next.9 → 3.54.0-beta.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.
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
import type { AllPropTypes, ParametizedPropTypes, ReactDescT } from './types.js';
|
|
1
|
+
import type { AllPropTypes, ArrayOfT, ExactT, InstanceOfT, ObjectOfT, OneOfT, OneOfTypeT, ParametizedPropTypes, ReactDescT, ShapeT } from './types.js';
|
|
3
2
|
export declare const hasArguments: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is ParametizedPropTypes;
|
|
4
|
-
export declare const isOneOfType: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is
|
|
5
|
-
export declare const isArrayOf: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is
|
|
6
|
-
export declare const isShape: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is
|
|
7
|
-
export declare const isInstanceOf: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is
|
|
8
|
-
export declare const isOneOf: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is
|
|
9
|
-
export declare const isObjectOf: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is
|
|
10
|
-
export declare const isExact: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is
|
|
3
|
+
export declare const isOneOfType: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is OneOfTypeT;
|
|
4
|
+
export declare const isArrayOf: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is ArrayOfT;
|
|
5
|
+
export declare const isShape: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is ShapeT;
|
|
6
|
+
export declare const isInstanceOf: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is InstanceOfT;
|
|
7
|
+
export declare const isOneOf: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is OneOfT;
|
|
8
|
+
export declare const isObjectOf: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is ObjectOfT;
|
|
9
|
+
export declare const isExact: (propType: ReactDescT, realPropType: AllPropTypes) => realPropType is ExactT;
|
|
11
10
|
export declare const isReactDesc: (reactDesc: object) => reactDesc is ReactDescT;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-props-helpers",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.54.0-beta.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Props Helpers",
|
|
6
6
|
"files": [
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"fast-deep-equal": "~3.1.3",
|
|
37
37
|
"prop-types": "~15.8.1",
|
|
38
|
-
"@elliemae/ds-system": "3.
|
|
39
|
-
"@elliemae/ds-typescript-helpers": "3.
|
|
38
|
+
"@elliemae/ds-system": "3.54.0-beta.1",
|
|
39
|
+
"@elliemae/ds-typescript-helpers": "3.54.0-beta.1"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@elliemae/pui-cli": "9.0.0-next.
|
|
42
|
+
"@elliemae/pui-cli": "9.0.0-next.65",
|
|
43
43
|
"jest": "~29.7.0",
|
|
44
44
|
"jest-cli": "~29.7.0",
|
|
45
|
-
"@elliemae/ds-monorepo-devops": "3.
|
|
45
|
+
"@elliemae/ds-monorepo-devops": "3.54.0-beta.1"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"lodash-es": "^4.17.21",
|