@hedia/recommendation-screen 3.7.0 → 3.8.0-alpha.0
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/lib/commonjs/Recommendation.js +111 -122
- package/lib/commonjs/Recommendation.js.map +1 -1
- package/lib/commonjs/assets/icons/Apple.js +11 -9
- package/lib/commonjs/assets/icons/Apple.js.map +1 -1
- package/lib/commonjs/assets/icons/ArrowDown.js +15 -13
- package/lib/commonjs/assets/icons/ArrowDown.js.map +1 -1
- package/lib/commonjs/assets/icons/Blood.js +11 -9
- package/lib/commonjs/assets/icons/Blood.js.map +1 -1
- package/lib/commonjs/assets/icons/CheckmarkGradient.js +32 -27
- package/lib/commonjs/assets/icons/CheckmarkGradient.js.map +1 -1
- package/lib/commonjs/assets/icons/ChevronDown.js +9 -7
- package/lib/commonjs/assets/icons/ChevronDown.js.map +1 -1
- package/lib/commonjs/assets/icons/ChevronUp.js +9 -7
- package/lib/commonjs/assets/icons/ChevronUp.js.map +1 -1
- package/lib/commonjs/assets/icons/Edit.js +16 -14
- package/lib/commonjs/assets/icons/Edit.js.map +1 -1
- package/lib/commonjs/assets/icons/Run.js +23 -20
- package/lib/commonjs/assets/icons/Run.js.map +1 -1
- package/lib/commonjs/components/AttentionMessages.js +25 -19
- package/lib/commonjs/components/AttentionMessages.js.map +1 -1
- package/lib/commonjs/components/CarbsRecommendationDisplay.js +17 -11
- package/lib/commonjs/components/CarbsRecommendationDisplay.js.map +1 -1
- package/lib/commonjs/components/DottedLine.js +8 -7
- package/lib/commonjs/components/DottedLine.js.map +1 -1
- package/lib/commonjs/components/ExpandableContainer/ExpandableContainer.js +35 -33
- package/lib/commonjs/components/ExpandableContainer/ExpandableContainer.js.map +1 -1
- package/lib/commonjs/components/ExpandableContainer/ExpandableItem.js +32 -22
- package/lib/commonjs/components/ExpandableContainer/ExpandableItem.js.map +1 -1
- package/lib/commonjs/components/Footer.js +21 -15
- package/lib/commonjs/components/Footer.js.map +1 -1
- package/lib/commonjs/components/Header.js +40 -32
- package/lib/commonjs/components/Header.js.map +1 -1
- package/lib/commonjs/components/InsulinRecommendationDisplay.js +37 -28
- package/lib/commonjs/components/InsulinRecommendationDisplay.js.map +1 -1
- package/lib/commonjs/components/Modals/DeleteModal.js +37 -27
- package/lib/commonjs/components/Modals/DeleteModal.js.map +1 -1
- package/lib/commonjs/components/Modals/DeleteModalFailure.js +26 -19
- package/lib/commonjs/components/Modals/DeleteModalFailure.js.map +1 -1
- package/lib/commonjs/components/Modals/EditModalFailure.js +26 -19
- package/lib/commonjs/components/Modals/EditModalFailure.js.map +1 -1
- package/lib/commonjs/components/Modals/LimitationMessageModal.js +25 -18
- package/lib/commonjs/components/Modals/LimitationMessageModal.js.map +1 -1
- package/lib/commonjs/components/Modals/SaveModalFailure.js +26 -19
- package/lib/commonjs/components/Modals/SaveModalFailure.js.map +1 -1
- package/lib/commonjs/components/Modals/TimeoutModal.js +54 -44
- package/lib/commonjs/components/Modals/TimeoutModal.js.map +1 -1
- package/lib/commonjs/components/ScrollHintButton.js +31 -24
- package/lib/commonjs/components/ScrollHintButton.js.map +1 -1
- package/lib/commonjs/components/Text.js +6 -4
- package/lib/commonjs/components/Text.js.map +1 -1
- package/lib/commonjs/components/WheelPicker/WheelPicker.js +89 -88
- package/lib/commonjs/components/WheelPicker/WheelPicker.js.map +1 -1
- package/lib/commonjs/components/WheelPicker/WheelPickerItem.js +13 -9
- package/lib/commonjs/components/WheelPicker/WheelPickerItem.js.map +1 -1
- package/lib/commonjs/components/WheelPicker/WheelPickerModal.js +40 -30
- package/lib/commonjs/components/WheelPicker/WheelPickerModal.js.map +1 -1
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/providers/language.js +5 -3
- package/lib/commonjs/providers/language.js.map +1 -1
- package/lib/typescript/App.d.ts.map +1 -1
- package/lib/typescript/src/Recommendation.d.ts +0 -5
- package/lib/typescript/src/Recommendation.d.ts.map +1 -1
- package/lib/typescript/src/__tests__/__data__/index.d.ts.map +1 -1
- package/lib/typescript/src/components/ExpandableContainer/ExpandableContainer.d.ts +1 -2
- package/lib/typescript/src/components/ExpandableContainer/ExpandableContainer.d.ts.map +1 -1
- package/lib/typescript/src/components/Modals/TimeoutModal.d.ts +1 -2
- package/lib/typescript/src/components/Modals/TimeoutModal.d.ts.map +1 -1
- package/package.json +26 -21
|
@@ -51,12 +51,7 @@ export interface IRecommendationProps {
|
|
|
51
51
|
suggested: number;
|
|
52
52
|
entered: number;
|
|
53
53
|
}, recommendationDate: Date, activeInsulin: number, activityReduction: number | null): void;
|
|
54
|
-
/** To be called when the user wants to view the recommendation in the logbook after the Timeout event took place */
|
|
55
54
|
closeCalculationViewInlogbook(): void;
|
|
56
|
-
/** To be called when the recommendation timeout event took place */
|
|
57
|
-
trackExpandDetails(): void;
|
|
58
|
-
/** To be called when the calculation details button is pressed*/
|
|
59
|
-
trackRecommendationTimeout(): void;
|
|
60
55
|
}
|
|
61
56
|
export declare const RecommendationScreen: (props: Readonly<IRecommendationProps>) => React.JSX.Element;
|
|
62
57
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Recommendation.d.ts","sourceRoot":"","sources":["../../../src/Recommendation.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4D,MAAM,OAAO,CAAC;AAgBjF,OAAO,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC;AAG5D,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,qBAAqB,EAAE,SAAS,EAAgB,MAAM,cAAc,CAAC;AA4BjH,oEAAoE;AACpE,oBAAY,UAAU;IACrB,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,OAAO,YAAY;CACnB;AAED,mGAAmG;AACnG,MAAM,WAAW,OAAO;IACvB,2EAA2E;IAC3E,SAAS,EAAE,MAAM,CAAC;IAClB,wEAAwE;IACxE,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB;AAED,MAAM,WAAW,oBAAoB;IACpC,qDAAqD;IACrD,UAAU,EAAE,UAAU,CAAC;IACvB,yDAAyD;IACzD,YAAY,EAAE,UAAU,CAAC;IACzB,uDAAuD;IACvD,UAAU,EAAE,UAAU,CAAC;IACvB,0DAA0D;IAC1D,MAAM,EAAE,UAAU,CAAC;IACnB,gEAAgE;IAChE,gBAAgB,EAAE,gBAAgB,CAAC;IACnC,qCAAqC;IACrC,QAAQ,EAAE,MAAM,OAAO,SAAS,CAAC;IACjC,uEAAuE;IACvE,gBAAgB,EAAE,qBAAqB,CAAC;IACxC,6GAA6G;IAC7G,eAAe,EAAE,eAAe,CAAC;IACjC,+CAA+C;IAC/C,sBAAsB,IAAI,IAAI,CAAC;IAC/B,4DAA4D;IAC5D,4BAA4B,IAAI,IAAI,CAAC;IACrC,iFAAiF;IACjF,iBAAiB,IAAI,IAAI,CAAC;IAC1B;;;;;;OAMG;IACH,4BAA4B,CAC3B,KAAK,EAAE;QAAE,SAAS,EAAE,MAAM,CAAA;KAAE,EAC5B,OAAO,EAAE;QAAE,SAAS,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,EAC/C,kBAAkB,EAAE,IAAI,EACxB,aAAa,EAAE,MAAM,EACrB,iBAAiB,EAAE,MAAM,GAAG,IAAI,GAC9B,IAAI,CAAC;IACR,
|
|
1
|
+
{"version":3,"file":"Recommendation.d.ts","sourceRoot":"","sources":["../../../src/Recommendation.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4D,MAAM,OAAO,CAAC;AAgBjF,OAAO,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC;AAG5D,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,qBAAqB,EAAE,SAAS,EAAgB,MAAM,cAAc,CAAC;AA4BjH,oEAAoE;AACpE,oBAAY,UAAU;IACrB,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,OAAO,YAAY;CACnB;AAED,mGAAmG;AACnG,MAAM,WAAW,OAAO;IACvB,2EAA2E;IAC3E,SAAS,EAAE,MAAM,CAAC;IAClB,wEAAwE;IACxE,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB;AAED,MAAM,WAAW,oBAAoB;IACpC,qDAAqD;IACrD,UAAU,EAAE,UAAU,CAAC;IACvB,yDAAyD;IACzD,YAAY,EAAE,UAAU,CAAC;IACzB,uDAAuD;IACvD,UAAU,EAAE,UAAU,CAAC;IACvB,0DAA0D;IAC1D,MAAM,EAAE,UAAU,CAAC;IACnB,gEAAgE;IAChE,gBAAgB,EAAE,gBAAgB,CAAC;IACnC,qCAAqC;IACrC,QAAQ,EAAE,MAAM,OAAO,SAAS,CAAC;IACjC,uEAAuE;IACvE,gBAAgB,EAAE,qBAAqB,CAAC;IACxC,6GAA6G;IAC7G,eAAe,EAAE,eAAe,CAAC;IACjC,+CAA+C;IAC/C,sBAAsB,IAAI,IAAI,CAAC;IAC/B,4DAA4D;IAC5D,4BAA4B,IAAI,IAAI,CAAC;IACrC,iFAAiF;IACjF,iBAAiB,IAAI,IAAI,CAAC;IAC1B;;;;;;OAMG;IACH,4BAA4B,CAC3B,KAAK,EAAE;QAAE,SAAS,EAAE,MAAM,CAAA;KAAE,EAC5B,OAAO,EAAE;QAAE,SAAS,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,EAC/C,kBAAkB,EAAE,IAAI,EACxB,aAAa,EAAE,MAAM,EACrB,iBAAiB,EAAE,MAAM,GAAG,IAAI,GAC9B,IAAI,CAAC;IACR,6BAA6B,IAAI,IAAI,CAAC;CACtC;AAED,eAAO,MAAM,oBAAoB,UAAW,SAAS,oBAAoB,CAAC,sBA4ezE,CAAC;AAEF;;;;GAIG;AACH,QAAA,MAAM,2BAA2B,UAAW,oBAAoB,sBAM/D,CAAC;AAEF;;GAEG;AACH,eAAe,2BAA2B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/__tests__/__data__/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAGN,eAAe,EAEf,qBAAqB,EACrB,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,oBAAoB,EAAc,MAAM,sBAAsB,CAAC;AAExE,wBAAgB,sBAAsB,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC,oBAAoB,CAAC,GAAG,oBAAoB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/__tests__/__data__/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAGN,eAAe,EAEf,qBAAqB,EACrB,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,oBAAoB,EAAc,MAAM,sBAAsB,CAAC;AAExE,wBAAgB,sBAAsB,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC,oBAAoB,CAAC,GAAG,oBAAoB,CAgBrG;AAED,wBAAgB,+BAA+B,IAAI,qBAAqB,CAmBvE;AAED,wBAAgB,qBAAqB,IAAI,eAAe,CAOvD;AAED,wBAAgB,+BAA+B,IAAI,eAAe,CAAC,kBAAkB,CAAC,CAQrF"}
|
|
@@ -7,14 +7,13 @@ export interface ExpandableProps {
|
|
|
7
7
|
bloodGlucoseMMOLL: number | null;
|
|
8
8
|
bloodGlucoseUnit: BloodGlucoseUnit;
|
|
9
9
|
};
|
|
10
|
-
trackExpandDetails: () => void;
|
|
11
10
|
activity?: {
|
|
12
11
|
activityDuration: number;
|
|
13
12
|
activityIntensity: ActivityIntensity | null;
|
|
14
13
|
activityReduction: number | null;
|
|
15
14
|
};
|
|
16
15
|
}
|
|
17
|
-
declare function ExpandableContainer({ carbIntakeValue, activeInsulin, bloodGlucose, activity
|
|
16
|
+
declare function ExpandableContainer({ carbIntakeValue, activeInsulin, bloodGlucose, activity }: Readonly<ExpandableProps>): React.JSX.Element;
|
|
18
17
|
export default ExpandableContainer;
|
|
19
18
|
export declare const styles: {
|
|
20
19
|
container: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ExpandableContainer.d.ts","sourceRoot":"","sources":["../../../../../src/components/ExpandableContainer/ExpandableContainer.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"ExpandableContainer.d.ts","sourceRoot":"","sources":["../../../../../src/components/ExpandableContainer/ExpandableContainer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAyC,MAAM,OAAO,CAAC;AAG9D,OAAO,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAUnE,MAAM,WAAW,eAAe;IAC/B,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE;QAAE,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,gBAAgB,EAAE,gBAAgB,CAAA;KAAE,CAAC;IACvF,QAAQ,CAAC,EAAE;QACV,gBAAgB,EAAE,MAAM,CAAC;QACzB,iBAAiB,EAAE,iBAAiB,GAAG,IAAI,CAAC;QAC5C,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;KACjC,CAAC;CACF;AAED,iBAAS,mBAAmB,CAAC,EAAE,eAAe,EAAE,aAAa,EAAE,YAAY,EAAE,QAAQ,EAAE,EAAE,QAAQ,CAAC,eAAe,CAAC,qBAuFjH;AAED,eAAe,mBAAmB,CAAC;AAEnC,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;CAsBjB,CAAC"}
|
|
@@ -5,12 +5,11 @@ export interface TimeoutModalProps {
|
|
|
5
5
|
onPressViewInLogbook: () => void;
|
|
6
6
|
onPressCancel: () => void;
|
|
7
7
|
onModalHide: () => void;
|
|
8
|
-
onModalShow: () => void;
|
|
9
8
|
}
|
|
10
9
|
/**
|
|
11
10
|
* Modal that appears when the recommendation was visible for a certain amount.
|
|
12
11
|
* It informs the user that the recommendation was saved and gives the option to view it in the logbook.
|
|
13
12
|
*/
|
|
14
|
-
declare function TimeoutModal({ isVisible, bottomInset, onPressViewInLogbook, onPressCancel, onModalHide,
|
|
13
|
+
declare function TimeoutModal({ isVisible, bottomInset, onPressViewInLogbook, onPressCancel, onModalHide, }: Readonly<TimeoutModalProps>): React.JSX.Element;
|
|
15
14
|
export default TimeoutModal;
|
|
16
15
|
//# sourceMappingURL=TimeoutModal.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TimeoutModal.d.ts","sourceRoot":"","sources":["../../../../../src/components/Modals/TimeoutModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,MAAM,WAAW,iBAAiB;IACjC,SAAS,EAAE,OAAO,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,oBAAoB,EAAE,MAAM,IAAI,CAAC;IACjC,aAAa,EAAE,MAAM,IAAI,CAAC;IAC1B,WAAW,EAAE,MAAM,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"TimeoutModal.d.ts","sourceRoot":"","sources":["../../../../../src/components/Modals/TimeoutModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,MAAM,WAAW,iBAAiB;IACjC,SAAS,EAAE,OAAO,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,oBAAoB,EAAE,MAAM,IAAI,CAAC;IACjC,aAAa,EAAE,MAAM,IAAI,CAAC;IAC1B,WAAW,EAAE,MAAM,IAAI,CAAC;CACxB;AAED;;;GAGG;AACH,iBAAS,YAAY,CAAC,EACrB,SAAS,EACT,WAAW,EACX,oBAAoB,EACpB,aAAa,EACb,WAAW,GACX,EAAE,QAAQ,CAAC,iBAAiB,CAAC,qBA8D7B;AAED,eAAe,YAAY,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hedia/recommendation-screen",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.8.0-alpha.0",
|
|
4
4
|
"description": "Hedia Recommendation Screen for Bolus and Carbohydrates",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"types": "lib/typescript/src/index.d.ts",
|
|
@@ -10,8 +10,10 @@
|
|
|
10
10
|
"engines": {
|
|
11
11
|
"node": ">=20"
|
|
12
12
|
},
|
|
13
|
-
"packageManager": "yarn@3.6.4",
|
|
14
13
|
"scripts": {
|
|
14
|
+
"start": "react-native start",
|
|
15
|
+
"ios": "npx react-native run-ios",
|
|
16
|
+
"android": "npx react-native run-android --active-arch-only",
|
|
15
17
|
"test": "jest --coverage --detectOpenHandles",
|
|
16
18
|
"tsc": "tsc --noEmit",
|
|
17
19
|
"eslint": "eslint \"./src/**/**.{ts,tsx}\"",
|
|
@@ -21,7 +23,6 @@
|
|
|
21
23
|
"pkg-json-lint": "npmPkgJsonLint .",
|
|
22
24
|
"package-audit": "yarn npm audit --severity critical",
|
|
23
25
|
"validate": "yarn tsc && yarn eslint && yarn pkg-json-lint && yarn prettier && yarn package-audit && yarn test",
|
|
24
|
-
"start": "react-native start",
|
|
25
26
|
"typedoc": "npx typedoc",
|
|
26
27
|
"prepack": "bob build"
|
|
27
28
|
},
|
|
@@ -48,19 +49,22 @@
|
|
|
48
49
|
"zod": "*"
|
|
49
50
|
},
|
|
50
51
|
"devDependencies": {
|
|
51
|
-
"@babel/core": "7.
|
|
52
|
-
"@babel/preset-env": "7.
|
|
53
|
-
"@babel/runtime": "7.
|
|
52
|
+
"@babel/core": "7.25.2",
|
|
53
|
+
"@babel/preset-env": "7.25.3",
|
|
54
|
+
"@babel/runtime": "7.25.0",
|
|
54
55
|
"@hedia/eslint-config": "2.0.1",
|
|
55
56
|
"@hedia/hedia-app-translations": "1.3.7",
|
|
56
57
|
"@hedia/npm-audit-pipeline": "0.5.0",
|
|
57
|
-
"@hedia/prettier-config": "1.2.
|
|
58
|
+
"@hedia/prettier-config": "1.2.3",
|
|
58
59
|
"@hedia/recommendation-calculator": "2.0.16",
|
|
59
|
-
"@hedia/tsconfig": "2.1.
|
|
60
|
+
"@hedia/tsconfig": "2.1.3",
|
|
60
61
|
"@hedia/types": "2.4.2",
|
|
61
|
-
"@lottiefiles/react-lottie-player": "3.
|
|
62
|
-
"@react-native/
|
|
63
|
-
"@react-native/
|
|
62
|
+
"@lottiefiles/react-lottie-player": "3.6.0",
|
|
63
|
+
"@react-native-community/cli": "15.0.1",
|
|
64
|
+
"@react-native-community/cli-platform-android": "15.0.1",
|
|
65
|
+
"@react-native-community/cli-platform-ios": "15.0.1",
|
|
66
|
+
"@react-native/babel-preset": "0.76.6",
|
|
67
|
+
"@react-native/metro-config": "0.76.6",
|
|
64
68
|
"@testing-library/jest-native": "5.4.3",
|
|
65
69
|
"@testing-library/react-native": "12.9.0",
|
|
66
70
|
"@types/jest": "29.5.14",
|
|
@@ -73,22 +77,22 @@
|
|
|
73
77
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
74
78
|
"eslint-plugin-simple-import-sort": "10.0.0",
|
|
75
79
|
"jest": "29.6.3",
|
|
76
|
-
"lottie-react-native": "
|
|
77
|
-
"npm-package-json-lint": "
|
|
80
|
+
"lottie-react-native": "7.2.2",
|
|
81
|
+
"npm-package-json-lint": "8.0.0",
|
|
78
82
|
"prettier": "3.4.2",
|
|
79
|
-
"react": "18.
|
|
80
|
-
"react-native": "0.
|
|
81
|
-
"react-native-builder-bob": "0.
|
|
83
|
+
"react": "18.3.1",
|
|
84
|
+
"react-native": "0.76.6",
|
|
85
|
+
"react-native-builder-bob": "0.35.2",
|
|
82
86
|
"react-native-linear-gradient": "2.8.3",
|
|
83
87
|
"react-native-modal": "13.0.1",
|
|
84
88
|
"react-native-reanimated": "3.16.3",
|
|
85
|
-
"react-native-safe-area-context": "
|
|
86
|
-
"react-native-svg": "
|
|
87
|
-
"react-test-renderer": "18.
|
|
89
|
+
"react-native-safe-area-context": "5.1.0",
|
|
90
|
+
"react-native-svg": "15.10.1",
|
|
91
|
+
"react-test-renderer": "18.3.1",
|
|
88
92
|
"typedoc": "0.25.7",
|
|
89
93
|
"typedoc-plugin-rename-defaults": "0.7.0",
|
|
90
94
|
"typescript": "5.3.3",
|
|
91
|
-
"zod": "3.
|
|
95
|
+
"zod": "3.24.1"
|
|
92
96
|
},
|
|
93
97
|
"react-native-builder-bob": {
|
|
94
98
|
"source": "src",
|
|
@@ -101,5 +105,6 @@
|
|
|
101
105
|
"eslintIgnore": [
|
|
102
106
|
"node_modules/",
|
|
103
107
|
"lib/"
|
|
104
|
-
]
|
|
108
|
+
],
|
|
109
|
+
"packageManager": "yarn@3.6.4"
|
|
105
110
|
}
|