@trackunit/react-core-contexts-test 0.1.53 → 0.1.56
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/index2.cjs +2 -2
- package/index2.js +2 -2
- package/package.json +3 -3
- package/src/MockContextProviderBuilder.d.ts +2 -2
package/index2.cjs
CHANGED
|
@@ -246,7 +246,7 @@ class MockContextProviderBuilder {
|
|
|
246
246
|
/**
|
|
247
247
|
* Use this to pass in userSubscriptionPackage.
|
|
248
248
|
*
|
|
249
|
-
* @param
|
|
249
|
+
* @param userSubscriptionPackage - The developer settings context to use.
|
|
250
250
|
*/
|
|
251
251
|
userSubscriptionPackage(userSubscriptionPackage) {
|
|
252
252
|
if (userSubscriptionPackage) {
|
|
@@ -257,7 +257,7 @@ class MockContextProviderBuilder {
|
|
|
257
257
|
/**
|
|
258
258
|
* Use this to pass in SupportedFeatures.
|
|
259
259
|
*
|
|
260
|
-
* @param
|
|
260
|
+
* @param features - The developer settings context to use.
|
|
261
261
|
*/
|
|
262
262
|
supportedFeatures(features) {
|
|
263
263
|
if (features) {
|
package/index2.js
CHANGED
|
@@ -244,7 +244,7 @@ class MockContextProviderBuilder {
|
|
|
244
244
|
/**
|
|
245
245
|
* Use this to pass in userSubscriptionPackage.
|
|
246
246
|
*
|
|
247
|
-
* @param
|
|
247
|
+
* @param userSubscriptionPackage - The developer settings context to use.
|
|
248
248
|
*/
|
|
249
249
|
userSubscriptionPackage(userSubscriptionPackage) {
|
|
250
250
|
if (userSubscriptionPackage) {
|
|
@@ -255,7 +255,7 @@ class MockContextProviderBuilder {
|
|
|
255
255
|
/**
|
|
256
256
|
* Use this to pass in SupportedFeatures.
|
|
257
257
|
*
|
|
258
|
-
* @param
|
|
258
|
+
* @param features - The developer settings context to use.
|
|
259
259
|
*/
|
|
260
260
|
supportedFeatures(features) {
|
|
261
261
|
if (features) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-core-contexts-test",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.56",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"types": "./src/index.d.ts",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@apollo/client": "3.7.10",
|
|
12
|
-
"@trackunit/react-core-contexts-api": "0.2.
|
|
13
|
-
"@trackunit/react-core-hooks": "0.2.
|
|
12
|
+
"@trackunit/react-core-contexts-api": "0.2.29",
|
|
13
|
+
"@trackunit/react-core-hooks": "0.2.51",
|
|
14
14
|
"@trackunit/tailwind-styled-components": "0.0.56",
|
|
15
15
|
"graphql": "15.8.0",
|
|
16
16
|
"react": "18.2.0",
|
|
@@ -38,13 +38,13 @@ export declare class MockContextProviderBuilder {
|
|
|
38
38
|
/**
|
|
39
39
|
* Use this to pass in userSubscriptionPackage.
|
|
40
40
|
*
|
|
41
|
-
* @param
|
|
41
|
+
* @param userSubscriptionPackage - The developer settings context to use.
|
|
42
42
|
*/
|
|
43
43
|
userSubscriptionPackage(userSubscriptionPackage?: UserSubscriptionPackageType): this;
|
|
44
44
|
/**
|
|
45
45
|
* Use this to pass in SupportedFeatures.
|
|
46
46
|
*
|
|
47
|
-
* @param
|
|
47
|
+
* @param features - The developer settings context to use.
|
|
48
48
|
*/
|
|
49
49
|
supportedFeatures(features?: string[]): this;
|
|
50
50
|
/**
|