@wavemaker/app-rn-runtime 11.8.0-rc.5752 → 11.8.0-rc.5757
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.
|
@@ -59,6 +59,7 @@ BASE_THEME.registerStyle((themeVariables, addStyle) => {
|
|
|
59
59
|
addStyle('label-warning', '', getLabelStyles(themeVariables.labelWarningColor, themeVariables.labelWarningContrastColor));
|
|
60
60
|
addStyle('label-test', '', getLabelStyles('yellow', 'red'));
|
|
61
61
|
addStyle('label-test1', '', getLabelStyles('blue', 'orange'));
|
|
62
|
+
addStyle('label-test111', '', getLabelStyles('grey', 'red'));
|
|
62
63
|
const getTextStyles = color => {
|
|
63
64
|
return {
|
|
64
65
|
text: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["BASE_THEME","deepCopy","defineStyles","DEFAULT_CLASS","registerStyle","themeVariables","addStyle","defaultStyles","root","alignSelf","text","fontSize","color","labelDefaultColor","asterisk","labelAsteriskColor","marginLeft","skeleton","width","height","borderRadius","link","textDecorationLine","flexDirection","textAlign","getLabelStyles","textColor","backgroundColor","paddingLeft","paddingTop","paddingRight","paddingBottom","fontWeight","labelDangerColor","labelDangerContrastColor","labelDefaultContrastColor","labelInfoColor","labelInfoContrastColor","labelPrimaryColor","labelPrimaryContrastColor","labelSuccessColor","labelSuccessContrastColor","labelWarningColor","labelWarningContrastColor","getTextStyles","labelTextDangerColor","labelTextInfoColor","labelTextPrimaryColor","labelTextSuccessColor","labelTextWarningColor","getHeadingStyles","overrides","margin","labelHeaderColor","heading1FontSize","heading2FontSize","heading3FontSize","heading4FontSize","heading5FontSize","heading6FontSize","labelTextMutedColor"],"sources":["label.styles.ts"],"sourcesContent":["import BASE_THEME, { AllStyle } from '@wavemaker/app-rn-runtime/styles/theme';\nimport { deepCopy } from '@wavemaker/app-rn-runtime/core/utils';\nimport { BaseStyles, defineStyles } from '@wavemaker/app-rn-runtime/core/base.component';\nimport { WmSkeletonStyles } from '../skeleton/skeleton.styles';\nimport { WmAnchorStyles } from '../anchor/anchor.styles';\n\nexport type WmLabelStyles = BaseStyles & {\n asterisk: AllStyle,\n skeleton: WmSkeletonStyles \n link: WmAnchorStyles\n};\n\nexport const DEFAULT_CLASS = 'app-label';\nBASE_THEME.registerStyle((themeVariables, addStyle) => {\n const defaultStyles: WmLabelStyles = defineStyles({\n root: {\n alignSelf: 'flex-start'\n },\n text: {\n fontSize: 16,\n color: themeVariables.labelDefaultColor\n },\n asterisk: {\n color: themeVariables.labelAsteriskColor,\n marginLeft: 2\n },\n skeleton: {\n root:{\n width: '100%',\n height: 16,\n borderRadius: 4\n }\n } as any as WmSkeletonStyles,\n link: {\n text: {\n textDecorationLine: 'underline'\n }\n } as WmAnchorStyles\n });\n\n addStyle(DEFAULT_CLASS, '', defaultStyles);\n addStyle(DEFAULT_CLASS + '-rtl', '', {\n root : {\n flexDirection: 'row',\n textAlign: 'right'\n }\n });\n const getLabelStyles = (color: string, textColor: string): WmLabelStyles => {\n return {\n root: {\n backgroundColor: color,\n paddingLeft: 32,\n paddingTop: 16,\n paddingRight: 32,\n paddingBottom: 16,\n borderRadius: 6\n },\n text: {\n color: textColor,\n fontWeight: 'bold'\n }\n } as WmLabelStyles;\n };\n\n addStyle('label-danger', '', getLabelStyles(themeVariables.labelDangerColor, themeVariables.labelDangerContrastColor));\n addStyle('label-default', '', getLabelStyles(themeVariables.labelDefaultColor, themeVariables.labelDefaultContrastColor));\n addStyle('label-info', '', getLabelStyles(themeVariables.labelInfoColor, themeVariables.labelInfoContrastColor));\n addStyle('label-primary', '', getLabelStyles(themeVariables.labelPrimaryColor, themeVariables.labelPrimaryContrastColor));\n addStyle('label-success', '', getLabelStyles(themeVariables.labelSuccessColor, themeVariables.labelSuccessContrastColor));\n addStyle('label-warning', '', getLabelStyles(themeVariables.labelWarningColor, themeVariables.labelWarningContrastColor));\n addStyle('label-test', '', getLabelStyles('yellow', 'red'));\n addStyle('label-test1', '', getLabelStyles('blue', 'orange'));\n\n const getTextStyles = (color: string) => {\n return {\n text: {\n color: color\n }\n } as WmLabelStyles;\n };\n\n addStyle('text-danger', '', getTextStyles(themeVariables.labelTextDangerColor));\n addStyle('text-info', '', getTextStyles(themeVariables.labelTextInfoColor));\n addStyle('text-primary', '', getTextStyles(themeVariables.labelTextPrimaryColor));\n addStyle('text-success', '', getTextStyles(themeVariables.labelTextSuccessColor));\n addStyle('text-warning', '', getTextStyles(themeVariables.labelTextWarningColor));\n addStyle('text-center', '', {\n root: {\n textAlign: 'center'\n }\n } as WmLabelStyles);\n addStyle('text-left', '', {\n root: {\n textAlign: 'left'\n }\n } as WmLabelStyles);\n addStyle('text-right', '', {\n root: {\n textAlign: 'right'\n }\n } as WmLabelStyles);\n\n\n const getHeadingStyles = (fontSize: number, overrides?: WmLabelStyles) => {\n return deepCopy({\n text: {\n fontWeight: '400',\n fontSize: fontSize,\n margin: 4,\n color: themeVariables.labelHeaderColor\n }\n } as WmLabelStyles, overrides);\n };\n addStyle('h1', '', getHeadingStyles(themeVariables.heading1FontSize, {text: {fontWeight: 'bold'}} as WmLabelStyles));\n addStyle('h2', '', getHeadingStyles(themeVariables.heading2FontSize, {text: {fontWeight: '500'}} as WmLabelStyles));\n addStyle('h3', '', getHeadingStyles(themeVariables.heading3FontSize));\n addStyle('h4', '', getHeadingStyles(themeVariables.heading4FontSize));\n addStyle('h5', '', getHeadingStyles(themeVariables.heading5FontSize));\n addStyle('h6', '', getHeadingStyles(themeVariables.heading6FontSize));\n addStyle('media-heading', '', {\n text : {\n fontSize: 16\n }\n } as WmLabelStyles);\n addStyle('text-muted', '', {\n text : {\n color: themeVariables.labelTextMutedColor\n }\n } as WmLabelStyles);\n addStyle('p', '', {\n text : {\n fontSize: 12\n }\n } as WmLabelStyles);\n});\n"],"mappings":"AAAA,OAAOA,UAAU,MAAqB,wCAAwC;AAC9E,SAASC,QAAQ,QAAQ,sCAAsC;AAC/D,SAAqBC,YAAY,QAAQ,+CAA+C;AAUxF,OAAO,MAAMC,aAAa,GAAG,WAAW;AACxCH,UAAU,CAACI,aAAa,CAAC,CAACC,cAAc,EAAEC,QAAQ,KAAK;EACrD,MAAMC,aAA4B,GAAGL,YAAY,CAAC;IAC9CM,IAAI,EAAE;MACJC,SAAS,EAAE;IACb,CAAC;IACDC,IAAI,EAAE;MACJC,QAAQ,EAAE,EAAE;MACZC,KAAK,EAAEP,cAAc,CAACQ;IACxB,CAAC;IACDC,QAAQ,EAAE;MACRF,KAAK,EAAEP,cAAc,CAACU,kBAAkB;MACxCC,UAAU,EAAE;IACd,CAAC;IACDC,QAAQ,EAAE;MACRT,IAAI,EAAC;QACHU,KAAK,EAAE,MAAM;QACbC,MAAM,EAAE,EAAE;QACVC,YAAY,EAAE;MAChB;IACF,CAA4B;IAC5BC,IAAI,EAAE;MACJX,IAAI,EAAE;QACJY,kBAAkB,EAAE;MACtB;IACF;EACJ,CAAC,CAAC;EAEFhB,QAAQ,CAACH,aAAa,EAAE,EAAE,EAAEI,aAAa,CAAC;EAC1CD,QAAQ,CAACH,aAAa,GAAG,MAAM,EAAE,EAAE,EAAE;IACnCK,IAAI,EAAG;MACLe,aAAa,EAAE,KAAK;MACpBC,SAAS,EAAE;IACb;EACF,CAAC,CAAC;EACF,MAAMC,cAAc,GAAGA,CAACb,KAAa,EAAEc,SAAiB,KAAoB;IAC1E,OAAO;MACLlB,IAAI,EAAE;QACJmB,eAAe,EAAEf,KAAK;QACtBgB,WAAW,EAAE,EAAE;QACfC,UAAU,EAAE,EAAE;QACdC,YAAY,EAAE,EAAE;QAChBC,aAAa,EAAE,EAAE;QACjBX,YAAY,EAAE;MAChB,CAAC;MACDV,IAAI,EAAE;QACJE,KAAK,EAAEc,SAAS;QAChBM,UAAU,EAAE;MACd;IACF,CAAC;EACH,CAAC;EAED1B,QAAQ,CAAC,cAAc,EAAE,EAAE,EAAEmB,cAAc,CAACpB,cAAc,CAAC4B,gBAAgB,EAAE5B,cAAc,CAAC6B,wBAAwB,CAAC,CAAC;EACtH5B,QAAQ,CAAC,eAAe,EAAE,EAAE,EAAEmB,cAAc,CAACpB,cAAc,CAACQ,iBAAiB,EAAER,cAAc,CAAC8B,yBAAyB,CAAC,CAAC;EACzH7B,QAAQ,CAAC,YAAY,EAAE,EAAE,EAAEmB,cAAc,CAACpB,cAAc,CAAC+B,cAAc,EAAE/B,cAAc,CAACgC,sBAAsB,CAAC,CAAC;EAChH/B,QAAQ,CAAC,eAAe,EAAE,EAAE,EAAEmB,cAAc,CAACpB,cAAc,CAACiC,iBAAiB,EAAEjC,cAAc,CAACkC,yBAAyB,CAAC,CAAC;EACzHjC,QAAQ,CAAC,eAAe,EAAE,EAAE,EAAEmB,cAAc,CAACpB,cAAc,CAACmC,iBAAiB,EAAEnC,cAAc,CAACoC,yBAAyB,CAAC,CAAC;EACzHnC,QAAQ,CAAC,eAAe,EAAE,EAAE,EAAEmB,cAAc,CAACpB,cAAc,CAACqC,iBAAiB,EAAErC,cAAc,CAACsC,yBAAyB,CAAC,CAAC;EACzHrC,QAAQ,CAAC,YAAY,EAAE,EAAE,EAAEmB,cAAc,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;EAC3DnB,QAAQ,CAAC,aAAa,EAAE,EAAE,EAAEmB,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;
|
|
1
|
+
{"version":3,"names":["BASE_THEME","deepCopy","defineStyles","DEFAULT_CLASS","registerStyle","themeVariables","addStyle","defaultStyles","root","alignSelf","text","fontSize","color","labelDefaultColor","asterisk","labelAsteriskColor","marginLeft","skeleton","width","height","borderRadius","link","textDecorationLine","flexDirection","textAlign","getLabelStyles","textColor","backgroundColor","paddingLeft","paddingTop","paddingRight","paddingBottom","fontWeight","labelDangerColor","labelDangerContrastColor","labelDefaultContrastColor","labelInfoColor","labelInfoContrastColor","labelPrimaryColor","labelPrimaryContrastColor","labelSuccessColor","labelSuccessContrastColor","labelWarningColor","labelWarningContrastColor","getTextStyles","labelTextDangerColor","labelTextInfoColor","labelTextPrimaryColor","labelTextSuccessColor","labelTextWarningColor","getHeadingStyles","overrides","margin","labelHeaderColor","heading1FontSize","heading2FontSize","heading3FontSize","heading4FontSize","heading5FontSize","heading6FontSize","labelTextMutedColor"],"sources":["label.styles.ts"],"sourcesContent":["import BASE_THEME, { AllStyle } from '@wavemaker/app-rn-runtime/styles/theme';\nimport { deepCopy } from '@wavemaker/app-rn-runtime/core/utils';\nimport { BaseStyles, defineStyles } from '@wavemaker/app-rn-runtime/core/base.component';\nimport { WmSkeletonStyles } from '../skeleton/skeleton.styles';\nimport { WmAnchorStyles } from '../anchor/anchor.styles';\n\nexport type WmLabelStyles = BaseStyles & {\n asterisk: AllStyle,\n skeleton: WmSkeletonStyles \n link: WmAnchorStyles\n};\n\nexport const DEFAULT_CLASS = 'app-label';\nBASE_THEME.registerStyle((themeVariables, addStyle) => {\n const defaultStyles: WmLabelStyles = defineStyles({\n root: {\n alignSelf: 'flex-start'\n },\n text: {\n fontSize: 16,\n color: themeVariables.labelDefaultColor\n },\n asterisk: {\n color: themeVariables.labelAsteriskColor,\n marginLeft: 2\n },\n skeleton: {\n root:{\n width: '100%',\n height: 16,\n borderRadius: 4\n }\n } as any as WmSkeletonStyles,\n link: {\n text: {\n textDecorationLine: 'underline'\n }\n } as WmAnchorStyles\n });\n\n addStyle(DEFAULT_CLASS, '', defaultStyles);\n addStyle(DEFAULT_CLASS + '-rtl', '', {\n root : {\n flexDirection: 'row',\n textAlign: 'right'\n }\n });\n const getLabelStyles = (color: string, textColor: string): WmLabelStyles => {\n return {\n root: {\n backgroundColor: color,\n paddingLeft: 32,\n paddingTop: 16,\n paddingRight: 32,\n paddingBottom: 16,\n borderRadius: 6\n },\n text: {\n color: textColor,\n fontWeight: 'bold'\n }\n } as WmLabelStyles;\n };\n\n addStyle('label-danger', '', getLabelStyles(themeVariables.labelDangerColor, themeVariables.labelDangerContrastColor));\n addStyle('label-default', '', getLabelStyles(themeVariables.labelDefaultColor, themeVariables.labelDefaultContrastColor));\n addStyle('label-info', '', getLabelStyles(themeVariables.labelInfoColor, themeVariables.labelInfoContrastColor));\n addStyle('label-primary', '', getLabelStyles(themeVariables.labelPrimaryColor, themeVariables.labelPrimaryContrastColor));\n addStyle('label-success', '', getLabelStyles(themeVariables.labelSuccessColor, themeVariables.labelSuccessContrastColor));\n addStyle('label-warning', '', getLabelStyles(themeVariables.labelWarningColor, themeVariables.labelWarningContrastColor));\n addStyle('label-test', '', getLabelStyles('yellow', 'red'));\n addStyle('label-test1', '', getLabelStyles('blue', 'orange'));\n addStyle('label-test111', '', getLabelStyles('grey', 'red'));\n\n const getTextStyles = (color: string) => {\n return {\n text: {\n color: color\n }\n } as WmLabelStyles;\n };\n\n addStyle('text-danger', '', getTextStyles(themeVariables.labelTextDangerColor));\n addStyle('text-info', '', getTextStyles(themeVariables.labelTextInfoColor));\n addStyle('text-primary', '', getTextStyles(themeVariables.labelTextPrimaryColor));\n addStyle('text-success', '', getTextStyles(themeVariables.labelTextSuccessColor));\n addStyle('text-warning', '', getTextStyles(themeVariables.labelTextWarningColor));\n addStyle('text-center', '', {\n root: {\n textAlign: 'center'\n }\n } as WmLabelStyles);\n addStyle('text-left', '', {\n root: {\n textAlign: 'left'\n }\n } as WmLabelStyles);\n addStyle('text-right', '', {\n root: {\n textAlign: 'right'\n }\n } as WmLabelStyles);\n\n\n const getHeadingStyles = (fontSize: number, overrides?: WmLabelStyles) => {\n return deepCopy({\n text: {\n fontWeight: '400',\n fontSize: fontSize,\n margin: 4,\n color: themeVariables.labelHeaderColor\n }\n } as WmLabelStyles, overrides);\n };\n addStyle('h1', '', getHeadingStyles(themeVariables.heading1FontSize, {text: {fontWeight: 'bold'}} as WmLabelStyles));\n addStyle('h2', '', getHeadingStyles(themeVariables.heading2FontSize, {text: {fontWeight: '500'}} as WmLabelStyles));\n addStyle('h3', '', getHeadingStyles(themeVariables.heading3FontSize));\n addStyle('h4', '', getHeadingStyles(themeVariables.heading4FontSize));\n addStyle('h5', '', getHeadingStyles(themeVariables.heading5FontSize));\n addStyle('h6', '', getHeadingStyles(themeVariables.heading6FontSize));\n addStyle('media-heading', '', {\n text : {\n fontSize: 16\n }\n } as WmLabelStyles);\n addStyle('text-muted', '', {\n text : {\n color: themeVariables.labelTextMutedColor\n }\n } as WmLabelStyles);\n addStyle('p', '', {\n text : {\n fontSize: 12\n }\n } as WmLabelStyles);\n});\n"],"mappings":"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","ignoreList":[]}
|
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/app-rn-runtime",
|
|
3
|
-
"version": "11.8.0-rc.
|
|
3
|
+
"version": "11.8.0-rc.5757",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/app-rn-runtime",
|
|
9
|
-
"version": "11.8.0-rc.
|
|
9
|
+
"version": "11.8.0-rc.5757",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@expo/vector-icons": "14.0.0",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@react-navigation/drawer": "6.6.3",
|
|
20
20
|
"@react-navigation/native": "6.1.7",
|
|
21
21
|
"@react-navigation/stack": "6.3.29",
|
|
22
|
-
"@wavemaker/variables": "11.8.0-rc.
|
|
22
|
+
"@wavemaker/variables": "11.8.0-rc.5757",
|
|
23
23
|
"axios": "1.6.8",
|
|
24
24
|
"color": "4.2.3",
|
|
25
25
|
"cross-env": "7.0.3",
|
|
@@ -2307,17 +2307,17 @@
|
|
|
2307
2307
|
}
|
|
2308
2308
|
},
|
|
2309
2309
|
"node_modules/@commitlint/cli": {
|
|
2310
|
-
"version": "19.
|
|
2311
|
-
"resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-19.
|
|
2312
|
-
"integrity": "sha512-
|
|
2310
|
+
"version": "19.5.0",
|
|
2311
|
+
"resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-19.5.0.tgz",
|
|
2312
|
+
"integrity": "sha512-gaGqSliGwB86MDmAAKAtV9SV1SHdmN8pnGq4EJU4+hLisQ7IFfx4jvU4s+pk6tl0+9bv6yT+CaZkufOinkSJIQ==",
|
|
2313
2313
|
"dev": true,
|
|
2314
2314
|
"dependencies": {
|
|
2315
|
-
"@commitlint/format": "^19.
|
|
2316
|
-
"@commitlint/lint": "^19.
|
|
2317
|
-
"@commitlint/load": "^19.
|
|
2318
|
-
"@commitlint/read": "^19.
|
|
2319
|
-
"@commitlint/types": "^19.0
|
|
2320
|
-
"
|
|
2315
|
+
"@commitlint/format": "^19.5.0",
|
|
2316
|
+
"@commitlint/lint": "^19.5.0",
|
|
2317
|
+
"@commitlint/load": "^19.5.0",
|
|
2318
|
+
"@commitlint/read": "^19.5.0",
|
|
2319
|
+
"@commitlint/types": "^19.5.0",
|
|
2320
|
+
"tinyexec": "^0.3.0",
|
|
2321
2321
|
"yargs": "^17.0.0"
|
|
2322
2322
|
},
|
|
2323
2323
|
"bin": {
|
|
@@ -2341,140 +2341,6 @@
|
|
|
2341
2341
|
"node": ">=12"
|
|
2342
2342
|
}
|
|
2343
2343
|
},
|
|
2344
|
-
"node_modules/@commitlint/cli/node_modules/execa": {
|
|
2345
|
-
"version": "8.0.1",
|
|
2346
|
-
"resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz",
|
|
2347
|
-
"integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==",
|
|
2348
|
-
"dev": true,
|
|
2349
|
-
"dependencies": {
|
|
2350
|
-
"cross-spawn": "^7.0.3",
|
|
2351
|
-
"get-stream": "^8.0.1",
|
|
2352
|
-
"human-signals": "^5.0.0",
|
|
2353
|
-
"is-stream": "^3.0.0",
|
|
2354
|
-
"merge-stream": "^2.0.0",
|
|
2355
|
-
"npm-run-path": "^5.1.0",
|
|
2356
|
-
"onetime": "^6.0.0",
|
|
2357
|
-
"signal-exit": "^4.1.0",
|
|
2358
|
-
"strip-final-newline": "^3.0.0"
|
|
2359
|
-
},
|
|
2360
|
-
"engines": {
|
|
2361
|
-
"node": ">=16.17"
|
|
2362
|
-
},
|
|
2363
|
-
"funding": {
|
|
2364
|
-
"url": "https://github.com/sindresorhus/execa?sponsor=1"
|
|
2365
|
-
}
|
|
2366
|
-
},
|
|
2367
|
-
"node_modules/@commitlint/cli/node_modules/get-stream": {
|
|
2368
|
-
"version": "8.0.1",
|
|
2369
|
-
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz",
|
|
2370
|
-
"integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==",
|
|
2371
|
-
"dev": true,
|
|
2372
|
-
"engines": {
|
|
2373
|
-
"node": ">=16"
|
|
2374
|
-
},
|
|
2375
|
-
"funding": {
|
|
2376
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2377
|
-
}
|
|
2378
|
-
},
|
|
2379
|
-
"node_modules/@commitlint/cli/node_modules/human-signals": {
|
|
2380
|
-
"version": "5.0.0",
|
|
2381
|
-
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz",
|
|
2382
|
-
"integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==",
|
|
2383
|
-
"dev": true,
|
|
2384
|
-
"engines": {
|
|
2385
|
-
"node": ">=16.17.0"
|
|
2386
|
-
}
|
|
2387
|
-
},
|
|
2388
|
-
"node_modules/@commitlint/cli/node_modules/is-stream": {
|
|
2389
|
-
"version": "3.0.0",
|
|
2390
|
-
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz",
|
|
2391
|
-
"integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==",
|
|
2392
|
-
"dev": true,
|
|
2393
|
-
"engines": {
|
|
2394
|
-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
2395
|
-
},
|
|
2396
|
-
"funding": {
|
|
2397
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2398
|
-
}
|
|
2399
|
-
},
|
|
2400
|
-
"node_modules/@commitlint/cli/node_modules/mimic-fn": {
|
|
2401
|
-
"version": "4.0.0",
|
|
2402
|
-
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
|
|
2403
|
-
"integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==",
|
|
2404
|
-
"dev": true,
|
|
2405
|
-
"engines": {
|
|
2406
|
-
"node": ">=12"
|
|
2407
|
-
},
|
|
2408
|
-
"funding": {
|
|
2409
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2410
|
-
}
|
|
2411
|
-
},
|
|
2412
|
-
"node_modules/@commitlint/cli/node_modules/npm-run-path": {
|
|
2413
|
-
"version": "5.3.0",
|
|
2414
|
-
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz",
|
|
2415
|
-
"integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==",
|
|
2416
|
-
"dev": true,
|
|
2417
|
-
"dependencies": {
|
|
2418
|
-
"path-key": "^4.0.0"
|
|
2419
|
-
},
|
|
2420
|
-
"engines": {
|
|
2421
|
-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
2422
|
-
},
|
|
2423
|
-
"funding": {
|
|
2424
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2425
|
-
}
|
|
2426
|
-
},
|
|
2427
|
-
"node_modules/@commitlint/cli/node_modules/onetime": {
|
|
2428
|
-
"version": "6.0.0",
|
|
2429
|
-
"resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz",
|
|
2430
|
-
"integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==",
|
|
2431
|
-
"dev": true,
|
|
2432
|
-
"dependencies": {
|
|
2433
|
-
"mimic-fn": "^4.0.0"
|
|
2434
|
-
},
|
|
2435
|
-
"engines": {
|
|
2436
|
-
"node": ">=12"
|
|
2437
|
-
},
|
|
2438
|
-
"funding": {
|
|
2439
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2440
|
-
}
|
|
2441
|
-
},
|
|
2442
|
-
"node_modules/@commitlint/cli/node_modules/path-key": {
|
|
2443
|
-
"version": "4.0.0",
|
|
2444
|
-
"resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
|
|
2445
|
-
"integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
|
|
2446
|
-
"dev": true,
|
|
2447
|
-
"engines": {
|
|
2448
|
-
"node": ">=12"
|
|
2449
|
-
},
|
|
2450
|
-
"funding": {
|
|
2451
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2452
|
-
}
|
|
2453
|
-
},
|
|
2454
|
-
"node_modules/@commitlint/cli/node_modules/signal-exit": {
|
|
2455
|
-
"version": "4.1.0",
|
|
2456
|
-
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
2457
|
-
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
2458
|
-
"dev": true,
|
|
2459
|
-
"engines": {
|
|
2460
|
-
"node": ">=14"
|
|
2461
|
-
},
|
|
2462
|
-
"funding": {
|
|
2463
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
2464
|
-
}
|
|
2465
|
-
},
|
|
2466
|
-
"node_modules/@commitlint/cli/node_modules/strip-final-newline": {
|
|
2467
|
-
"version": "3.0.0",
|
|
2468
|
-
"resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz",
|
|
2469
|
-
"integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==",
|
|
2470
|
-
"dev": true,
|
|
2471
|
-
"engines": {
|
|
2472
|
-
"node": ">=12"
|
|
2473
|
-
},
|
|
2474
|
-
"funding": {
|
|
2475
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2476
|
-
}
|
|
2477
|
-
},
|
|
2478
2344
|
"node_modules/@commitlint/cli/node_modules/yargs": {
|
|
2479
2345
|
"version": "17.7.2",
|
|
2480
2346
|
"resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
|
|
@@ -2516,12 +2382,12 @@
|
|
|
2516
2382
|
}
|
|
2517
2383
|
},
|
|
2518
2384
|
"node_modules/@commitlint/config-validator": {
|
|
2519
|
-
"version": "19.0
|
|
2520
|
-
"resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.0.
|
|
2521
|
-
"integrity": "sha512-
|
|
2385
|
+
"version": "19.5.0",
|
|
2386
|
+
"resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.5.0.tgz",
|
|
2387
|
+
"integrity": "sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==",
|
|
2522
2388
|
"dev": true,
|
|
2523
2389
|
"dependencies": {
|
|
2524
|
-
"@commitlint/types": "^19.0
|
|
2390
|
+
"@commitlint/types": "^19.5.0",
|
|
2525
2391
|
"ajv": "^8.11.0"
|
|
2526
2392
|
},
|
|
2527
2393
|
"engines": {
|
|
@@ -2529,12 +2395,12 @@
|
|
|
2529
2395
|
}
|
|
2530
2396
|
},
|
|
2531
2397
|
"node_modules/@commitlint/ensure": {
|
|
2532
|
-
"version": "19.0
|
|
2533
|
-
"resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.0.
|
|
2534
|
-
"integrity": "sha512-
|
|
2398
|
+
"version": "19.5.0",
|
|
2399
|
+
"resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.5.0.tgz",
|
|
2400
|
+
"integrity": "sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==",
|
|
2535
2401
|
"dev": true,
|
|
2536
2402
|
"dependencies": {
|
|
2537
|
-
"@commitlint/types": "^19.0
|
|
2403
|
+
"@commitlint/types": "^19.5.0",
|
|
2538
2404
|
"lodash.camelcase": "^4.3.0",
|
|
2539
2405
|
"lodash.kebabcase": "^4.1.1",
|
|
2540
2406
|
"lodash.snakecase": "^4.1.1",
|
|
@@ -2546,21 +2412,21 @@
|
|
|
2546
2412
|
}
|
|
2547
2413
|
},
|
|
2548
2414
|
"node_modules/@commitlint/execute-rule": {
|
|
2549
|
-
"version": "19.
|
|
2550
|
-
"resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.
|
|
2551
|
-
"integrity": "sha512-
|
|
2415
|
+
"version": "19.5.0",
|
|
2416
|
+
"resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.5.0.tgz",
|
|
2417
|
+
"integrity": "sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==",
|
|
2552
2418
|
"dev": true,
|
|
2553
2419
|
"engines": {
|
|
2554
2420
|
"node": ">=v18"
|
|
2555
2421
|
}
|
|
2556
2422
|
},
|
|
2557
2423
|
"node_modules/@commitlint/format": {
|
|
2558
|
-
"version": "19.
|
|
2559
|
-
"resolved": "https://registry.npmjs.org/@commitlint/format/-/format-19.
|
|
2560
|
-
"integrity": "sha512-
|
|
2424
|
+
"version": "19.5.0",
|
|
2425
|
+
"resolved": "https://registry.npmjs.org/@commitlint/format/-/format-19.5.0.tgz",
|
|
2426
|
+
"integrity": "sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==",
|
|
2561
2427
|
"dev": true,
|
|
2562
2428
|
"dependencies": {
|
|
2563
|
-
"@commitlint/types": "^19.0
|
|
2429
|
+
"@commitlint/types": "^19.5.0",
|
|
2564
2430
|
"chalk": "^5.3.0"
|
|
2565
2431
|
},
|
|
2566
2432
|
"engines": {
|
|
@@ -2580,12 +2446,12 @@
|
|
|
2580
2446
|
}
|
|
2581
2447
|
},
|
|
2582
2448
|
"node_modules/@commitlint/is-ignored": {
|
|
2583
|
-
"version": "19.
|
|
2584
|
-
"resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.
|
|
2585
|
-
"integrity": "sha512-
|
|
2449
|
+
"version": "19.5.0",
|
|
2450
|
+
"resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.5.0.tgz",
|
|
2451
|
+
"integrity": "sha512-0XQ7Llsf9iL/ANtwyZ6G0NGp5Y3EQ8eDQSxv/SRcfJ0awlBY4tHFAvwWbw66FVUaWICH7iE5en+FD9TQsokZ5w==",
|
|
2586
2452
|
"dev": true,
|
|
2587
2453
|
"dependencies": {
|
|
2588
|
-
"@commitlint/types": "^19.0
|
|
2454
|
+
"@commitlint/types": "^19.5.0",
|
|
2589
2455
|
"semver": "^7.6.0"
|
|
2590
2456
|
},
|
|
2591
2457
|
"engines": {
|
|
@@ -2605,30 +2471,30 @@
|
|
|
2605
2471
|
}
|
|
2606
2472
|
},
|
|
2607
2473
|
"node_modules/@commitlint/lint": {
|
|
2608
|
-
"version": "19.
|
|
2609
|
-
"resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-19.
|
|
2610
|
-
"integrity": "sha512-
|
|
2474
|
+
"version": "19.5.0",
|
|
2475
|
+
"resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-19.5.0.tgz",
|
|
2476
|
+
"integrity": "sha512-cAAQwJcRtiBxQWO0eprrAbOurtJz8U6MgYqLz+p9kLElirzSCc0vGMcyCaA1O7AqBuxo11l1XsY3FhOFowLAAg==",
|
|
2611
2477
|
"dev": true,
|
|
2612
2478
|
"dependencies": {
|
|
2613
|
-
"@commitlint/is-ignored": "^19.
|
|
2614
|
-
"@commitlint/parse": "^19.0
|
|
2615
|
-
"@commitlint/rules": "^19.
|
|
2616
|
-
"@commitlint/types": "^19.0
|
|
2479
|
+
"@commitlint/is-ignored": "^19.5.0",
|
|
2480
|
+
"@commitlint/parse": "^19.5.0",
|
|
2481
|
+
"@commitlint/rules": "^19.5.0",
|
|
2482
|
+
"@commitlint/types": "^19.5.0"
|
|
2617
2483
|
},
|
|
2618
2484
|
"engines": {
|
|
2619
2485
|
"node": ">=v18"
|
|
2620
2486
|
}
|
|
2621
2487
|
},
|
|
2622
2488
|
"node_modules/@commitlint/load": {
|
|
2623
|
-
"version": "19.
|
|
2624
|
-
"resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.
|
|
2625
|
-
"integrity": "sha512-
|
|
2489
|
+
"version": "19.5.0",
|
|
2490
|
+
"resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.5.0.tgz",
|
|
2491
|
+
"integrity": "sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==",
|
|
2626
2492
|
"dev": true,
|
|
2627
2493
|
"dependencies": {
|
|
2628
|
-
"@commitlint/config-validator": "^19.0
|
|
2629
|
-
"@commitlint/execute-rule": "^19.
|
|
2630
|
-
"@commitlint/resolve-extends": "^19.
|
|
2631
|
-
"@commitlint/types": "^19.0
|
|
2494
|
+
"@commitlint/config-validator": "^19.5.0",
|
|
2495
|
+
"@commitlint/execute-rule": "^19.5.0",
|
|
2496
|
+
"@commitlint/resolve-extends": "^19.5.0",
|
|
2497
|
+
"@commitlint/types": "^19.5.0",
|
|
2632
2498
|
"chalk": "^5.3.0",
|
|
2633
2499
|
"cosmiconfig": "^9.0.0",
|
|
2634
2500
|
"cosmiconfig-typescript-loader": "^5.0.0",
|
|
@@ -2653,21 +2519,21 @@
|
|
|
2653
2519
|
}
|
|
2654
2520
|
},
|
|
2655
2521
|
"node_modules/@commitlint/message": {
|
|
2656
|
-
"version": "19.
|
|
2657
|
-
"resolved": "https://registry.npmjs.org/@commitlint/message/-/message-19.
|
|
2658
|
-
"integrity": "sha512-
|
|
2522
|
+
"version": "19.5.0",
|
|
2523
|
+
"resolved": "https://registry.npmjs.org/@commitlint/message/-/message-19.5.0.tgz",
|
|
2524
|
+
"integrity": "sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==",
|
|
2659
2525
|
"dev": true,
|
|
2660
2526
|
"engines": {
|
|
2661
2527
|
"node": ">=v18"
|
|
2662
2528
|
}
|
|
2663
2529
|
},
|
|
2664
2530
|
"node_modules/@commitlint/parse": {
|
|
2665
|
-
"version": "19.0
|
|
2666
|
-
"resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-19.0.
|
|
2667
|
-
"integrity": "sha512-
|
|
2531
|
+
"version": "19.5.0",
|
|
2532
|
+
"resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-19.5.0.tgz",
|
|
2533
|
+
"integrity": "sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==",
|
|
2668
2534
|
"dev": true,
|
|
2669
2535
|
"dependencies": {
|
|
2670
|
-
"@commitlint/types": "^19.0
|
|
2536
|
+
"@commitlint/types": "^19.5.0",
|
|
2671
2537
|
"conventional-changelog-angular": "^7.0.0",
|
|
2672
2538
|
"conventional-commits-parser": "^5.0.0"
|
|
2673
2539
|
},
|
|
@@ -2675,336 +2541,67 @@
|
|
|
2675
2541
|
"node": ">=v18"
|
|
2676
2542
|
}
|
|
2677
2543
|
},
|
|
2678
|
-
"node_modules/@commitlint/read": {
|
|
2679
|
-
"version": "19.
|
|
2680
|
-
"resolved": "https://registry.npmjs.org/@commitlint/read/-/read-19.
|
|
2681
|
-
"integrity": "sha512-
|
|
2682
|
-
"dev": true,
|
|
2683
|
-
"dependencies": {
|
|
2684
|
-
"@commitlint/top-level": "^19.0.0",
|
|
2685
|
-
"@commitlint/types": "^19.0.3",
|
|
2686
|
-
"execa": "^8.0.1",
|
|
2687
|
-
"git-raw-commits": "^4.0.0",
|
|
2688
|
-
"minimist": "^1.2.8"
|
|
2689
|
-
},
|
|
2690
|
-
"engines": {
|
|
2691
|
-
"node": ">=v18"
|
|
2692
|
-
}
|
|
2693
|
-
},
|
|
2694
|
-
"node_modules/@commitlint/read/node_modules/execa": {
|
|
2695
|
-
"version": "8.0.1",
|
|
2696
|
-
"resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz",
|
|
2697
|
-
"integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==",
|
|
2698
|
-
"dev": true,
|
|
2699
|
-
"dependencies": {
|
|
2700
|
-
"cross-spawn": "^7.0.3",
|
|
2701
|
-
"get-stream": "^8.0.1",
|
|
2702
|
-
"human-signals": "^5.0.0",
|
|
2703
|
-
"is-stream": "^3.0.0",
|
|
2704
|
-
"merge-stream": "^2.0.0",
|
|
2705
|
-
"npm-run-path": "^5.1.0",
|
|
2706
|
-
"onetime": "^6.0.0",
|
|
2707
|
-
"signal-exit": "^4.1.0",
|
|
2708
|
-
"strip-final-newline": "^3.0.0"
|
|
2709
|
-
},
|
|
2710
|
-
"engines": {
|
|
2711
|
-
"node": ">=16.17"
|
|
2712
|
-
},
|
|
2713
|
-
"funding": {
|
|
2714
|
-
"url": "https://github.com/sindresorhus/execa?sponsor=1"
|
|
2715
|
-
}
|
|
2716
|
-
},
|
|
2717
|
-
"node_modules/@commitlint/read/node_modules/get-stream": {
|
|
2718
|
-
"version": "8.0.1",
|
|
2719
|
-
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz",
|
|
2720
|
-
"integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==",
|
|
2721
|
-
"dev": true,
|
|
2722
|
-
"engines": {
|
|
2723
|
-
"node": ">=16"
|
|
2724
|
-
},
|
|
2725
|
-
"funding": {
|
|
2726
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2727
|
-
}
|
|
2728
|
-
},
|
|
2729
|
-
"node_modules/@commitlint/read/node_modules/human-signals": {
|
|
2730
|
-
"version": "5.0.0",
|
|
2731
|
-
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz",
|
|
2732
|
-
"integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==",
|
|
2733
|
-
"dev": true,
|
|
2734
|
-
"engines": {
|
|
2735
|
-
"node": ">=16.17.0"
|
|
2736
|
-
}
|
|
2737
|
-
},
|
|
2738
|
-
"node_modules/@commitlint/read/node_modules/is-stream": {
|
|
2739
|
-
"version": "3.0.0",
|
|
2740
|
-
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz",
|
|
2741
|
-
"integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==",
|
|
2742
|
-
"dev": true,
|
|
2743
|
-
"engines": {
|
|
2744
|
-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
2745
|
-
},
|
|
2746
|
-
"funding": {
|
|
2747
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2748
|
-
}
|
|
2749
|
-
},
|
|
2750
|
-
"node_modules/@commitlint/read/node_modules/mimic-fn": {
|
|
2751
|
-
"version": "4.0.0",
|
|
2752
|
-
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
|
|
2753
|
-
"integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==",
|
|
2754
|
-
"dev": true,
|
|
2755
|
-
"engines": {
|
|
2756
|
-
"node": ">=12"
|
|
2757
|
-
},
|
|
2758
|
-
"funding": {
|
|
2759
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2760
|
-
}
|
|
2761
|
-
},
|
|
2762
|
-
"node_modules/@commitlint/read/node_modules/npm-run-path": {
|
|
2763
|
-
"version": "5.3.0",
|
|
2764
|
-
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz",
|
|
2765
|
-
"integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==",
|
|
2766
|
-
"dev": true,
|
|
2767
|
-
"dependencies": {
|
|
2768
|
-
"path-key": "^4.0.0"
|
|
2769
|
-
},
|
|
2770
|
-
"engines": {
|
|
2771
|
-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
2772
|
-
},
|
|
2773
|
-
"funding": {
|
|
2774
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2775
|
-
}
|
|
2776
|
-
},
|
|
2777
|
-
"node_modules/@commitlint/read/node_modules/onetime": {
|
|
2778
|
-
"version": "6.0.0",
|
|
2779
|
-
"resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz",
|
|
2780
|
-
"integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==",
|
|
2781
|
-
"dev": true,
|
|
2782
|
-
"dependencies": {
|
|
2783
|
-
"mimic-fn": "^4.0.0"
|
|
2784
|
-
},
|
|
2785
|
-
"engines": {
|
|
2786
|
-
"node": ">=12"
|
|
2787
|
-
},
|
|
2788
|
-
"funding": {
|
|
2789
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2790
|
-
}
|
|
2791
|
-
},
|
|
2792
|
-
"node_modules/@commitlint/read/node_modules/path-key": {
|
|
2793
|
-
"version": "4.0.0",
|
|
2794
|
-
"resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
|
|
2795
|
-
"integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
|
|
2796
|
-
"dev": true,
|
|
2797
|
-
"engines": {
|
|
2798
|
-
"node": ">=12"
|
|
2799
|
-
},
|
|
2800
|
-
"funding": {
|
|
2801
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2802
|
-
}
|
|
2803
|
-
},
|
|
2804
|
-
"node_modules/@commitlint/read/node_modules/signal-exit": {
|
|
2805
|
-
"version": "4.1.0",
|
|
2806
|
-
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
2807
|
-
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
2808
|
-
"dev": true,
|
|
2809
|
-
"engines": {
|
|
2810
|
-
"node": ">=14"
|
|
2811
|
-
},
|
|
2812
|
-
"funding": {
|
|
2813
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
2814
|
-
}
|
|
2815
|
-
},
|
|
2816
|
-
"node_modules/@commitlint/read/node_modules/strip-final-newline": {
|
|
2817
|
-
"version": "3.0.0",
|
|
2818
|
-
"resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz",
|
|
2819
|
-
"integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==",
|
|
2820
|
-
"dev": true,
|
|
2821
|
-
"engines": {
|
|
2822
|
-
"node": ">=12"
|
|
2823
|
-
},
|
|
2824
|
-
"funding": {
|
|
2825
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2826
|
-
}
|
|
2827
|
-
},
|
|
2828
|
-
"node_modules/@commitlint/resolve-extends": {
|
|
2829
|
-
"version": "19.1.0",
|
|
2830
|
-
"resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.1.0.tgz",
|
|
2831
|
-
"integrity": "sha512-z2riI+8G3CET5CPgXJPlzftH+RiWYLMYv4C9tSLdLXdr6pBNimSKukYP9MS27ejmscqCTVA4almdLh0ODD2KYg==",
|
|
2832
|
-
"dev": true,
|
|
2833
|
-
"dependencies": {
|
|
2834
|
-
"@commitlint/config-validator": "^19.0.3",
|
|
2835
|
-
"@commitlint/types": "^19.0.3",
|
|
2836
|
-
"global-directory": "^4.0.1",
|
|
2837
|
-
"import-meta-resolve": "^4.0.0",
|
|
2838
|
-
"lodash.mergewith": "^4.6.2",
|
|
2839
|
-
"resolve-from": "^5.0.0"
|
|
2840
|
-
},
|
|
2841
|
-
"engines": {
|
|
2842
|
-
"node": ">=v18"
|
|
2843
|
-
}
|
|
2844
|
-
},
|
|
2845
|
-
"node_modules/@commitlint/rules": {
|
|
2846
|
-
"version": "19.4.1",
|
|
2847
|
-
"resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-19.4.1.tgz",
|
|
2848
|
-
"integrity": "sha512-AgctfzAONoVxmxOXRyxXIq7xEPrd7lK/60h2egp9bgGUMZK9v0+YqLOA+TH+KqCa63ZoCr8owP2YxoSSu7IgnQ==",
|
|
2849
|
-
"dev": true,
|
|
2850
|
-
"dependencies": {
|
|
2851
|
-
"@commitlint/ensure": "^19.0.3",
|
|
2852
|
-
"@commitlint/message": "^19.0.0",
|
|
2853
|
-
"@commitlint/to-lines": "^19.0.0",
|
|
2854
|
-
"@commitlint/types": "^19.0.3",
|
|
2855
|
-
"execa": "^8.0.1"
|
|
2856
|
-
},
|
|
2857
|
-
"engines": {
|
|
2858
|
-
"node": ">=v18"
|
|
2859
|
-
}
|
|
2860
|
-
},
|
|
2861
|
-
"node_modules/@commitlint/rules/node_modules/execa": {
|
|
2862
|
-
"version": "8.0.1",
|
|
2863
|
-
"resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz",
|
|
2864
|
-
"integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==",
|
|
2865
|
-
"dev": true,
|
|
2866
|
-
"dependencies": {
|
|
2867
|
-
"cross-spawn": "^7.0.3",
|
|
2868
|
-
"get-stream": "^8.0.1",
|
|
2869
|
-
"human-signals": "^5.0.0",
|
|
2870
|
-
"is-stream": "^3.0.0",
|
|
2871
|
-
"merge-stream": "^2.0.0",
|
|
2872
|
-
"npm-run-path": "^5.1.0",
|
|
2873
|
-
"onetime": "^6.0.0",
|
|
2874
|
-
"signal-exit": "^4.1.0",
|
|
2875
|
-
"strip-final-newline": "^3.0.0"
|
|
2876
|
-
},
|
|
2877
|
-
"engines": {
|
|
2878
|
-
"node": ">=16.17"
|
|
2879
|
-
},
|
|
2880
|
-
"funding": {
|
|
2881
|
-
"url": "https://github.com/sindresorhus/execa?sponsor=1"
|
|
2882
|
-
}
|
|
2883
|
-
},
|
|
2884
|
-
"node_modules/@commitlint/rules/node_modules/get-stream": {
|
|
2885
|
-
"version": "8.0.1",
|
|
2886
|
-
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz",
|
|
2887
|
-
"integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==",
|
|
2888
|
-
"dev": true,
|
|
2889
|
-
"engines": {
|
|
2890
|
-
"node": ">=16"
|
|
2891
|
-
},
|
|
2892
|
-
"funding": {
|
|
2893
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2894
|
-
}
|
|
2895
|
-
},
|
|
2896
|
-
"node_modules/@commitlint/rules/node_modules/human-signals": {
|
|
2897
|
-
"version": "5.0.0",
|
|
2898
|
-
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz",
|
|
2899
|
-
"integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==",
|
|
2900
|
-
"dev": true,
|
|
2901
|
-
"engines": {
|
|
2902
|
-
"node": ">=16.17.0"
|
|
2903
|
-
}
|
|
2904
|
-
},
|
|
2905
|
-
"node_modules/@commitlint/rules/node_modules/is-stream": {
|
|
2906
|
-
"version": "3.0.0",
|
|
2907
|
-
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz",
|
|
2908
|
-
"integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==",
|
|
2909
|
-
"dev": true,
|
|
2910
|
-
"engines": {
|
|
2911
|
-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
2912
|
-
},
|
|
2913
|
-
"funding": {
|
|
2914
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2915
|
-
}
|
|
2916
|
-
},
|
|
2917
|
-
"node_modules/@commitlint/rules/node_modules/mimic-fn": {
|
|
2918
|
-
"version": "4.0.0",
|
|
2919
|
-
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
|
|
2920
|
-
"integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==",
|
|
2921
|
-
"dev": true,
|
|
2922
|
-
"engines": {
|
|
2923
|
-
"node": ">=12"
|
|
2924
|
-
},
|
|
2925
|
-
"funding": {
|
|
2926
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2927
|
-
}
|
|
2928
|
-
},
|
|
2929
|
-
"node_modules/@commitlint/rules/node_modules/npm-run-path": {
|
|
2930
|
-
"version": "5.3.0",
|
|
2931
|
-
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz",
|
|
2932
|
-
"integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==",
|
|
2933
|
-
"dev": true,
|
|
2934
|
-
"dependencies": {
|
|
2935
|
-
"path-key": "^4.0.0"
|
|
2936
|
-
},
|
|
2937
|
-
"engines": {
|
|
2938
|
-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
2939
|
-
},
|
|
2940
|
-
"funding": {
|
|
2941
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2942
|
-
}
|
|
2943
|
-
},
|
|
2944
|
-
"node_modules/@commitlint/rules/node_modules/onetime": {
|
|
2945
|
-
"version": "6.0.0",
|
|
2946
|
-
"resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz",
|
|
2947
|
-
"integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==",
|
|
2544
|
+
"node_modules/@commitlint/read": {
|
|
2545
|
+
"version": "19.5.0",
|
|
2546
|
+
"resolved": "https://registry.npmjs.org/@commitlint/read/-/read-19.5.0.tgz",
|
|
2547
|
+
"integrity": "sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==",
|
|
2948
2548
|
"dev": true,
|
|
2949
2549
|
"dependencies": {
|
|
2950
|
-
"
|
|
2550
|
+
"@commitlint/top-level": "^19.5.0",
|
|
2551
|
+
"@commitlint/types": "^19.5.0",
|
|
2552
|
+
"git-raw-commits": "^4.0.0",
|
|
2553
|
+
"minimist": "^1.2.8",
|
|
2554
|
+
"tinyexec": "^0.3.0"
|
|
2951
2555
|
},
|
|
2952
2556
|
"engines": {
|
|
2953
|
-
"node": ">=
|
|
2954
|
-
},
|
|
2955
|
-
"funding": {
|
|
2956
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2557
|
+
"node": ">=v18"
|
|
2957
2558
|
}
|
|
2958
2559
|
},
|
|
2959
|
-
"node_modules/@commitlint/
|
|
2960
|
-
"version": "
|
|
2961
|
-
"resolved": "https://registry.npmjs.org/
|
|
2962
|
-
"integrity": "sha512-
|
|
2560
|
+
"node_modules/@commitlint/resolve-extends": {
|
|
2561
|
+
"version": "19.5.0",
|
|
2562
|
+
"resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.5.0.tgz",
|
|
2563
|
+
"integrity": "sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==",
|
|
2963
2564
|
"dev": true,
|
|
2964
|
-
"
|
|
2965
|
-
"
|
|
2565
|
+
"dependencies": {
|
|
2566
|
+
"@commitlint/config-validator": "^19.5.0",
|
|
2567
|
+
"@commitlint/types": "^19.5.0",
|
|
2568
|
+
"global-directory": "^4.0.1",
|
|
2569
|
+
"import-meta-resolve": "^4.0.0",
|
|
2570
|
+
"lodash.mergewith": "^4.6.2",
|
|
2571
|
+
"resolve-from": "^5.0.0"
|
|
2966
2572
|
},
|
|
2967
|
-
"funding": {
|
|
2968
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2969
|
-
}
|
|
2970
|
-
},
|
|
2971
|
-
"node_modules/@commitlint/rules/node_modules/signal-exit": {
|
|
2972
|
-
"version": "4.1.0",
|
|
2973
|
-
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
2974
|
-
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
2975
|
-
"dev": true,
|
|
2976
2573
|
"engines": {
|
|
2977
|
-
"node": ">=
|
|
2978
|
-
},
|
|
2979
|
-
"funding": {
|
|
2980
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
2574
|
+
"node": ">=v18"
|
|
2981
2575
|
}
|
|
2982
2576
|
},
|
|
2983
|
-
"node_modules/@commitlint/rules
|
|
2984
|
-
"version": "
|
|
2985
|
-
"resolved": "https://registry.npmjs.org/
|
|
2986
|
-
"integrity": "sha512-
|
|
2577
|
+
"node_modules/@commitlint/rules": {
|
|
2578
|
+
"version": "19.5.0",
|
|
2579
|
+
"resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-19.5.0.tgz",
|
|
2580
|
+
"integrity": "sha512-hDW5TPyf/h1/EufSHEKSp6Hs+YVsDMHazfJ2azIk9tHPXS6UqSz1dIRs1gpqS3eMXgtkT7JH6TW4IShdqOwhAw==",
|
|
2987
2581
|
"dev": true,
|
|
2988
|
-
"
|
|
2989
|
-
"
|
|
2582
|
+
"dependencies": {
|
|
2583
|
+
"@commitlint/ensure": "^19.5.0",
|
|
2584
|
+
"@commitlint/message": "^19.5.0",
|
|
2585
|
+
"@commitlint/to-lines": "^19.5.0",
|
|
2586
|
+
"@commitlint/types": "^19.5.0"
|
|
2990
2587
|
},
|
|
2991
|
-
"
|
|
2992
|
-
"
|
|
2588
|
+
"engines": {
|
|
2589
|
+
"node": ">=v18"
|
|
2993
2590
|
}
|
|
2994
2591
|
},
|
|
2995
2592
|
"node_modules/@commitlint/to-lines": {
|
|
2996
|
-
"version": "19.
|
|
2997
|
-
"resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.
|
|
2998
|
-
"integrity": "sha512-
|
|
2593
|
+
"version": "19.5.0",
|
|
2594
|
+
"resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.5.0.tgz",
|
|
2595
|
+
"integrity": "sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==",
|
|
2999
2596
|
"dev": true,
|
|
3000
2597
|
"engines": {
|
|
3001
2598
|
"node": ">=v18"
|
|
3002
2599
|
}
|
|
3003
2600
|
},
|
|
3004
2601
|
"node_modules/@commitlint/top-level": {
|
|
3005
|
-
"version": "19.
|
|
3006
|
-
"resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.
|
|
3007
|
-
"integrity": "sha512-
|
|
2602
|
+
"version": "19.5.0",
|
|
2603
|
+
"resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.5.0.tgz",
|
|
2604
|
+
"integrity": "sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==",
|
|
3008
2605
|
"dev": true,
|
|
3009
2606
|
"dependencies": {
|
|
3010
2607
|
"find-up": "^7.0.0"
|
|
@@ -3097,9 +2694,9 @@
|
|
|
3097
2694
|
}
|
|
3098
2695
|
},
|
|
3099
2696
|
"node_modules/@commitlint/types": {
|
|
3100
|
-
"version": "19.0
|
|
3101
|
-
"resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.0.
|
|
3102
|
-
"integrity": "sha512-
|
|
2697
|
+
"version": "19.5.0",
|
|
2698
|
+
"resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.5.0.tgz",
|
|
2699
|
+
"integrity": "sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==",
|
|
3103
2700
|
"dev": true,
|
|
3104
2701
|
"dependencies": {
|
|
3105
2702
|
"@types/conventional-commits-parser": "^5.0.0",
|
|
@@ -9803,9 +9400,9 @@
|
|
|
9803
9400
|
}
|
|
9804
9401
|
},
|
|
9805
9402
|
"node_modules/@wavemaker/variables": {
|
|
9806
|
-
"version": "11.8.0-rc.
|
|
9807
|
-
"resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.8.0-rc.
|
|
9808
|
-
"integrity": "sha512-
|
|
9403
|
+
"version": "11.8.0-rc.5757",
|
|
9404
|
+
"resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.8.0-rc.5757.tgz",
|
|
9405
|
+
"integrity": "sha512-DXQLFfwGVn7SiIDh/ejgb6mwLD4Tkry5yO1lKQCgU/qoRPOIel1p632kLkTzzonjFBy98nm905AaKHmUIoUtNg==",
|
|
9809
9406
|
"dependencies": {
|
|
9810
9407
|
"@metrichor/jmespath": "^0.3.1",
|
|
9811
9408
|
"he": "^1.2.0",
|
|
@@ -10748,11 +10345,169 @@
|
|
|
10748
10345
|
}
|
|
10749
10346
|
},
|
|
10750
10347
|
"node_modules/babel-plugin-react-compiler": {
|
|
10751
|
-
"version": "0.0.0",
|
|
10752
|
-
"resolved": "https://registry.npmjs.org/babel-plugin-react-compiler/-/babel-plugin-react-compiler-0.0.0.tgz",
|
|
10753
|
-
"integrity": "sha512-
|
|
10348
|
+
"version": "0.0.0-experimental-fe484b5-20240911",
|
|
10349
|
+
"resolved": "https://registry.npmjs.org/babel-plugin-react-compiler/-/babel-plugin-react-compiler-0.0.0-experimental-fe484b5-20240911.tgz",
|
|
10350
|
+
"integrity": "sha512-68t0K1tr9/q7rs2o2RAMvU+ytI4DaqFEEnfhGD++8JCnGQhl2FZKMPi5u9BcWPYPhSCOSuWYabpj4q5owQWwNA==",
|
|
10351
|
+
"peer": true,
|
|
10352
|
+
"dependencies": {
|
|
10353
|
+
"@babel/generator": "7.2.0",
|
|
10354
|
+
"@babel/types": "^7.19.0",
|
|
10355
|
+
"chalk": "4",
|
|
10356
|
+
"invariant": "^2.2.4",
|
|
10357
|
+
"pretty-format": "^24",
|
|
10358
|
+
"zod": "^3.22.4",
|
|
10359
|
+
"zod-validation-error": "^2.1.0"
|
|
10360
|
+
}
|
|
10361
|
+
},
|
|
10362
|
+
"node_modules/babel-plugin-react-compiler/node_modules/@babel/generator": {
|
|
10363
|
+
"version": "7.2.0",
|
|
10364
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.2.0.tgz",
|
|
10365
|
+
"integrity": "sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==",
|
|
10366
|
+
"peer": true,
|
|
10367
|
+
"dependencies": {
|
|
10368
|
+
"@babel/types": "^7.2.0",
|
|
10369
|
+
"jsesc": "^2.5.1",
|
|
10370
|
+
"lodash": "^4.17.10",
|
|
10371
|
+
"source-map": "^0.5.0",
|
|
10372
|
+
"trim-right": "^1.0.1"
|
|
10373
|
+
}
|
|
10374
|
+
},
|
|
10375
|
+
"node_modules/babel-plugin-react-compiler/node_modules/@jest/types": {
|
|
10376
|
+
"version": "24.9.0",
|
|
10377
|
+
"resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz",
|
|
10378
|
+
"integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==",
|
|
10379
|
+
"peer": true,
|
|
10380
|
+
"dependencies": {
|
|
10381
|
+
"@types/istanbul-lib-coverage": "^2.0.0",
|
|
10382
|
+
"@types/istanbul-reports": "^1.1.1",
|
|
10383
|
+
"@types/yargs": "^13.0.0"
|
|
10384
|
+
},
|
|
10385
|
+
"engines": {
|
|
10386
|
+
"node": ">= 6"
|
|
10387
|
+
}
|
|
10388
|
+
},
|
|
10389
|
+
"node_modules/babel-plugin-react-compiler/node_modules/@types/istanbul-reports": {
|
|
10390
|
+
"version": "1.1.2",
|
|
10391
|
+
"resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz",
|
|
10392
|
+
"integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==",
|
|
10393
|
+
"peer": true,
|
|
10394
|
+
"dependencies": {
|
|
10395
|
+
"@types/istanbul-lib-coverage": "*",
|
|
10396
|
+
"@types/istanbul-lib-report": "*"
|
|
10397
|
+
}
|
|
10398
|
+
},
|
|
10399
|
+
"node_modules/babel-plugin-react-compiler/node_modules/@types/yargs": {
|
|
10400
|
+
"version": "13.0.12",
|
|
10401
|
+
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.12.tgz",
|
|
10402
|
+
"integrity": "sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==",
|
|
10403
|
+
"peer": true,
|
|
10404
|
+
"dependencies": {
|
|
10405
|
+
"@types/yargs-parser": "*"
|
|
10406
|
+
}
|
|
10407
|
+
},
|
|
10408
|
+
"node_modules/babel-plugin-react-compiler/node_modules/ansi-regex": {
|
|
10409
|
+
"version": "4.1.1",
|
|
10410
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
|
|
10411
|
+
"integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==",
|
|
10412
|
+
"peer": true,
|
|
10413
|
+
"engines": {
|
|
10414
|
+
"node": ">=6"
|
|
10415
|
+
}
|
|
10416
|
+
},
|
|
10417
|
+
"node_modules/babel-plugin-react-compiler/node_modules/chalk": {
|
|
10418
|
+
"version": "4.1.2",
|
|
10419
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
10420
|
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
10421
|
+
"peer": true,
|
|
10422
|
+
"dependencies": {
|
|
10423
|
+
"ansi-styles": "^4.1.0",
|
|
10424
|
+
"supports-color": "^7.1.0"
|
|
10425
|
+
},
|
|
10426
|
+
"engines": {
|
|
10427
|
+
"node": ">=10"
|
|
10428
|
+
},
|
|
10429
|
+
"funding": {
|
|
10430
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
10431
|
+
}
|
|
10432
|
+
},
|
|
10433
|
+
"node_modules/babel-plugin-react-compiler/node_modules/chalk/node_modules/ansi-styles": {
|
|
10434
|
+
"version": "4.3.0",
|
|
10435
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
10436
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
10437
|
+
"peer": true,
|
|
10438
|
+
"dependencies": {
|
|
10439
|
+
"color-convert": "^2.0.1"
|
|
10440
|
+
},
|
|
10441
|
+
"engines": {
|
|
10442
|
+
"node": ">=8"
|
|
10443
|
+
},
|
|
10444
|
+
"funding": {
|
|
10445
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
10446
|
+
}
|
|
10447
|
+
},
|
|
10448
|
+
"node_modules/babel-plugin-react-compiler/node_modules/color-convert": {
|
|
10449
|
+
"version": "2.0.1",
|
|
10450
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
10451
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
10452
|
+
"peer": true,
|
|
10453
|
+
"dependencies": {
|
|
10454
|
+
"color-name": "~1.1.4"
|
|
10455
|
+
},
|
|
10456
|
+
"engines": {
|
|
10457
|
+
"node": ">=7.0.0"
|
|
10458
|
+
}
|
|
10459
|
+
},
|
|
10460
|
+
"node_modules/babel-plugin-react-compiler/node_modules/color-name": {
|
|
10461
|
+
"version": "1.1.4",
|
|
10462
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
10463
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
10754
10464
|
"peer": true
|
|
10755
10465
|
},
|
|
10466
|
+
"node_modules/babel-plugin-react-compiler/node_modules/has-flag": {
|
|
10467
|
+
"version": "4.0.0",
|
|
10468
|
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
10469
|
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
|
10470
|
+
"peer": true,
|
|
10471
|
+
"engines": {
|
|
10472
|
+
"node": ">=8"
|
|
10473
|
+
}
|
|
10474
|
+
},
|
|
10475
|
+
"node_modules/babel-plugin-react-compiler/node_modules/pretty-format": {
|
|
10476
|
+
"version": "24.9.0",
|
|
10477
|
+
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz",
|
|
10478
|
+
"integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==",
|
|
10479
|
+
"peer": true,
|
|
10480
|
+
"dependencies": {
|
|
10481
|
+
"@jest/types": "^24.9.0",
|
|
10482
|
+
"ansi-regex": "^4.0.0",
|
|
10483
|
+
"ansi-styles": "^3.2.0",
|
|
10484
|
+
"react-is": "^16.8.4"
|
|
10485
|
+
},
|
|
10486
|
+
"engines": {
|
|
10487
|
+
"node": ">= 6"
|
|
10488
|
+
}
|
|
10489
|
+
},
|
|
10490
|
+
"node_modules/babel-plugin-react-compiler/node_modules/source-map": {
|
|
10491
|
+
"version": "0.5.7",
|
|
10492
|
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
|
|
10493
|
+
"integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
|
|
10494
|
+
"peer": true,
|
|
10495
|
+
"engines": {
|
|
10496
|
+
"node": ">=0.10.0"
|
|
10497
|
+
}
|
|
10498
|
+
},
|
|
10499
|
+
"node_modules/babel-plugin-react-compiler/node_modules/supports-color": {
|
|
10500
|
+
"version": "7.2.0",
|
|
10501
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
10502
|
+
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
10503
|
+
"peer": true,
|
|
10504
|
+
"dependencies": {
|
|
10505
|
+
"has-flag": "^4.0.0"
|
|
10506
|
+
},
|
|
10507
|
+
"engines": {
|
|
10508
|
+
"node": ">=8"
|
|
10509
|
+
}
|
|
10510
|
+
},
|
|
10756
10511
|
"node_modules/babel-plugin-react-native-web": {
|
|
10757
10512
|
"version": "0.19.12",
|
|
10758
10513
|
"resolved": "https://registry.npmjs.org/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.12.tgz",
|
|
@@ -14218,9 +13973,9 @@
|
|
|
14218
13973
|
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
|
|
14219
13974
|
},
|
|
14220
13975
|
"node_modules/electron-to-chromium": {
|
|
14221
|
-
"version": "1.5.
|
|
14222
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
14223
|
-
"integrity": "sha512-
|
|
13976
|
+
"version": "1.5.20",
|
|
13977
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.20.tgz",
|
|
13978
|
+
"integrity": "sha512-74mdl6Fs1HHzK9SUX4CKFxAtAe3nUns48y79TskHNAG6fGOlLfyKA4j855x+0b5u8rWJIrlaG9tcTPstMlwjIw=="
|
|
14224
13979
|
},
|
|
14225
13980
|
"node_modules/emittery": {
|
|
14226
13981
|
"version": "0.13.1",
|
|
@@ -25840,9 +25595,9 @@
|
|
|
25840
25595
|
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
|
|
25841
25596
|
},
|
|
25842
25597
|
"node_modules/pump": {
|
|
25843
|
-
"version": "3.0.
|
|
25844
|
-
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.
|
|
25845
|
-
"integrity": "sha512-
|
|
25598
|
+
"version": "3.0.2",
|
|
25599
|
+
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz",
|
|
25600
|
+
"integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==",
|
|
25846
25601
|
"dependencies": {
|
|
25847
25602
|
"end-of-stream": "^1.1.0",
|
|
25848
25603
|
"once": "^1.3.1"
|
|
@@ -28302,6 +28057,7 @@
|
|
|
28302
28057
|
"version": "0.18.0",
|
|
28303
28058
|
"resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz",
|
|
28304
28059
|
"integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==",
|
|
28060
|
+
"peer": true,
|
|
28305
28061
|
"dependencies": {
|
|
28306
28062
|
"debug": "2.6.9",
|
|
28307
28063
|
"depd": "2.0.0",
|
|
@@ -28325,6 +28081,7 @@
|
|
|
28325
28081
|
"version": "2.6.9",
|
|
28326
28082
|
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
28327
28083
|
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
28084
|
+
"peer": true,
|
|
28328
28085
|
"dependencies": {
|
|
28329
28086
|
"ms": "2.0.0"
|
|
28330
28087
|
}
|
|
@@ -28332,12 +28089,14 @@
|
|
|
28332
28089
|
"node_modules/send/node_modules/debug/node_modules/ms": {
|
|
28333
28090
|
"version": "2.0.0",
|
|
28334
28091
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
28335
|
-
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
|
|
28092
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
28093
|
+
"peer": true
|
|
28336
28094
|
},
|
|
28337
28095
|
"node_modules/send/node_modules/mime": {
|
|
28338
28096
|
"version": "1.6.0",
|
|
28339
28097
|
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
|
28340
28098
|
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
|
|
28099
|
+
"peer": true,
|
|
28341
28100
|
"bin": {
|
|
28342
28101
|
"mime": "cli.js"
|
|
28343
28102
|
},
|
|
@@ -28349,6 +28108,7 @@
|
|
|
28349
28108
|
"version": "2.4.1",
|
|
28350
28109
|
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
|
|
28351
28110
|
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
|
|
28111
|
+
"peer": true,
|
|
28352
28112
|
"dependencies": {
|
|
28353
28113
|
"ee-first": "1.1.1"
|
|
28354
28114
|
},
|
|
@@ -28360,6 +28120,7 @@
|
|
|
28360
28120
|
"version": "2.0.1",
|
|
28361
28121
|
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
|
|
28362
28122
|
"integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
|
|
28123
|
+
"peer": true,
|
|
28363
28124
|
"engines": {
|
|
28364
28125
|
"node": ">= 0.8"
|
|
28365
28126
|
}
|
|
@@ -28373,19 +28134,101 @@
|
|
|
28373
28134
|
}
|
|
28374
28135
|
},
|
|
28375
28136
|
"node_modules/serve-static": {
|
|
28376
|
-
"version": "1.16.
|
|
28377
|
-
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.
|
|
28378
|
-
"integrity": "sha512-
|
|
28137
|
+
"version": "1.16.2",
|
|
28138
|
+
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
|
|
28139
|
+
"integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
|
|
28379
28140
|
"dependencies": {
|
|
28380
|
-
"encodeurl": "~
|
|
28141
|
+
"encodeurl": "~2.0.0",
|
|
28381
28142
|
"escape-html": "~1.0.3",
|
|
28382
28143
|
"parseurl": "~1.3.3",
|
|
28383
|
-
"send": "0.
|
|
28144
|
+
"send": "0.19.0"
|
|
28145
|
+
},
|
|
28146
|
+
"engines": {
|
|
28147
|
+
"node": ">= 0.8.0"
|
|
28148
|
+
}
|
|
28149
|
+
},
|
|
28150
|
+
"node_modules/serve-static/node_modules/debug": {
|
|
28151
|
+
"version": "2.6.9",
|
|
28152
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
28153
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
28154
|
+
"dependencies": {
|
|
28155
|
+
"ms": "2.0.0"
|
|
28156
|
+
}
|
|
28157
|
+
},
|
|
28158
|
+
"node_modules/serve-static/node_modules/debug/node_modules/ms": {
|
|
28159
|
+
"version": "2.0.0",
|
|
28160
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
28161
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
|
|
28162
|
+
},
|
|
28163
|
+
"node_modules/serve-static/node_modules/encodeurl": {
|
|
28164
|
+
"version": "2.0.0",
|
|
28165
|
+
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
|
|
28166
|
+
"integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
|
|
28167
|
+
"engines": {
|
|
28168
|
+
"node": ">= 0.8"
|
|
28169
|
+
}
|
|
28170
|
+
},
|
|
28171
|
+
"node_modules/serve-static/node_modules/mime": {
|
|
28172
|
+
"version": "1.6.0",
|
|
28173
|
+
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
|
28174
|
+
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
|
|
28175
|
+
"bin": {
|
|
28176
|
+
"mime": "cli.js"
|
|
28177
|
+
},
|
|
28178
|
+
"engines": {
|
|
28179
|
+
"node": ">=4"
|
|
28180
|
+
}
|
|
28181
|
+
},
|
|
28182
|
+
"node_modules/serve-static/node_modules/on-finished": {
|
|
28183
|
+
"version": "2.4.1",
|
|
28184
|
+
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
|
|
28185
|
+
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
|
|
28186
|
+
"dependencies": {
|
|
28187
|
+
"ee-first": "1.1.1"
|
|
28188
|
+
},
|
|
28189
|
+
"engines": {
|
|
28190
|
+
"node": ">= 0.8"
|
|
28191
|
+
}
|
|
28192
|
+
},
|
|
28193
|
+
"node_modules/serve-static/node_modules/send": {
|
|
28194
|
+
"version": "0.19.0",
|
|
28195
|
+
"resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
|
|
28196
|
+
"integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
|
|
28197
|
+
"dependencies": {
|
|
28198
|
+
"debug": "2.6.9",
|
|
28199
|
+
"depd": "2.0.0",
|
|
28200
|
+
"destroy": "1.2.0",
|
|
28201
|
+
"encodeurl": "~1.0.2",
|
|
28202
|
+
"escape-html": "~1.0.3",
|
|
28203
|
+
"etag": "~1.8.1",
|
|
28204
|
+
"fresh": "0.5.2",
|
|
28205
|
+
"http-errors": "2.0.0",
|
|
28206
|
+
"mime": "1.6.0",
|
|
28207
|
+
"ms": "2.1.3",
|
|
28208
|
+
"on-finished": "2.4.1",
|
|
28209
|
+
"range-parser": "~1.2.1",
|
|
28210
|
+
"statuses": "2.0.1"
|
|
28384
28211
|
},
|
|
28385
28212
|
"engines": {
|
|
28386
28213
|
"node": ">= 0.8.0"
|
|
28387
28214
|
}
|
|
28388
28215
|
},
|
|
28216
|
+
"node_modules/serve-static/node_modules/send/node_modules/encodeurl": {
|
|
28217
|
+
"version": "1.0.2",
|
|
28218
|
+
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
|
|
28219
|
+
"integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
|
|
28220
|
+
"engines": {
|
|
28221
|
+
"node": ">= 0.8"
|
|
28222
|
+
}
|
|
28223
|
+
},
|
|
28224
|
+
"node_modules/serve-static/node_modules/statuses": {
|
|
28225
|
+
"version": "2.0.1",
|
|
28226
|
+
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
|
|
28227
|
+
"integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
|
|
28228
|
+
"engines": {
|
|
28229
|
+
"node": ">= 0.8"
|
|
28230
|
+
}
|
|
28231
|
+
},
|
|
28389
28232
|
"node_modules/set-blocking": {
|
|
28390
28233
|
"version": "2.0.0",
|
|
28391
28234
|
"resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
|
|
@@ -29695,6 +29538,12 @@
|
|
|
29695
29538
|
"readable-stream": "3"
|
|
29696
29539
|
}
|
|
29697
29540
|
},
|
|
29541
|
+
"node_modules/tinyexec": {
|
|
29542
|
+
"version": "0.3.0",
|
|
29543
|
+
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.0.tgz",
|
|
29544
|
+
"integrity": "sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==",
|
|
29545
|
+
"dev": true
|
|
29546
|
+
},
|
|
29698
29547
|
"node_modules/tmp": {
|
|
29699
29548
|
"version": "0.0.33",
|
|
29700
29549
|
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
|
|
@@ -29817,6 +29666,15 @@
|
|
|
29817
29666
|
"node": ">=8"
|
|
29818
29667
|
}
|
|
29819
29668
|
},
|
|
29669
|
+
"node_modules/trim-right": {
|
|
29670
|
+
"version": "1.0.1",
|
|
29671
|
+
"resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz",
|
|
29672
|
+
"integrity": "sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==",
|
|
29673
|
+
"peer": true,
|
|
29674
|
+
"engines": {
|
|
29675
|
+
"node": ">=0.10.0"
|
|
29676
|
+
}
|
|
29677
|
+
},
|
|
29820
29678
|
"node_modules/ts-interface-checker": {
|
|
29821
29679
|
"version": "0.1.13",
|
|
29822
29680
|
"resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
|
|
@@ -29997,9 +29855,9 @@
|
|
|
29997
29855
|
}
|
|
29998
29856
|
},
|
|
29999
29857
|
"node_modules/ua-parser-js": {
|
|
30000
|
-
"version": "0.7.
|
|
30001
|
-
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.
|
|
30002
|
-
"integrity": "sha512-
|
|
29858
|
+
"version": "0.7.39",
|
|
29859
|
+
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.39.tgz",
|
|
29860
|
+
"integrity": "sha512-IZ6acm6RhQHNibSt7+c09hhvsKy9WUr4DVbeq9U8o71qxyYtJpQeDxQnMrVqnIFMLcQjHO0I9wgfO2vIahht4w==",
|
|
30003
29861
|
"funding": [
|
|
30004
29862
|
{
|
|
30005
29863
|
"type": "opencollective",
|
|
@@ -30014,6 +29872,9 @@
|
|
|
30014
29872
|
"url": "https://github.com/sponsors/faisalman"
|
|
30015
29873
|
}
|
|
30016
29874
|
],
|
|
29875
|
+
"bin": {
|
|
29876
|
+
"ua-parser-js": "script/cli.js"
|
|
29877
|
+
},
|
|
30017
29878
|
"engines": {
|
|
30018
29879
|
"node": "*"
|
|
30019
29880
|
}
|
|
@@ -31579,6 +31440,27 @@
|
|
|
31579
31440
|
"funding": {
|
|
31580
31441
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
31581
31442
|
}
|
|
31443
|
+
},
|
|
31444
|
+
"node_modules/zod": {
|
|
31445
|
+
"version": "3.23.8",
|
|
31446
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz",
|
|
31447
|
+
"integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==",
|
|
31448
|
+
"peer": true,
|
|
31449
|
+
"funding": {
|
|
31450
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
31451
|
+
}
|
|
31452
|
+
},
|
|
31453
|
+
"node_modules/zod-validation-error": {
|
|
31454
|
+
"version": "2.1.0",
|
|
31455
|
+
"resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-2.1.0.tgz",
|
|
31456
|
+
"integrity": "sha512-VJh93e2wb4c3tWtGgTa0OF/dTt/zoPCPzXq4V11ZjxmEAFaPi/Zss1xIZdEB5RD8GD00U0/iVXgqkF77RV7pdQ==",
|
|
31457
|
+
"peer": true,
|
|
31458
|
+
"engines": {
|
|
31459
|
+
"node": ">=18.0.0"
|
|
31460
|
+
},
|
|
31461
|
+
"peerDependencies": {
|
|
31462
|
+
"zod": "^3.18.0"
|
|
31463
|
+
}
|
|
31582
31464
|
}
|
|
31583
31465
|
}
|
|
31584
31466
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/app-rn-runtime",
|
|
3
|
-
"version": "11.8.0-rc.
|
|
3
|
+
"version": "11.8.0-rc.5757",
|
|
4
4
|
"description": "''",
|
|
5
5
|
"main": "index",
|
|
6
6
|
"module": "index",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@react-navigation/drawer": "6.6.3",
|
|
46
46
|
"@react-navigation/native": "6.1.7",
|
|
47
47
|
"@react-navigation/stack": "6.3.29",
|
|
48
|
-
"@wavemaker/variables": "11.8.0-rc.
|
|
48
|
+
"@wavemaker/variables": "11.8.0-rc.5757",
|
|
49
49
|
"axios": "1.6.8",
|
|
50
50
|
"color": "4.2.3",
|
|
51
51
|
"cross-env": "7.0.3",
|