@wavemaker/rn-codegen 11.9.3-rc.5970 → 11.9.4-1.5989
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.
- rn-codegen/package.json +1 -1
- rn-codegen/src/templates/bootstrap.template +2 -1
- rn-codegen/src/templates/package.web.json +5 -5
- rn-codegen/src/templates/project/app.json +5 -1
- rn-codegen/src/templates/project/esbuild/esbuild.script.js +11 -0
- rn-codegen/src/templates/project/esbuild/jsconfig.json +2 -0
- rn-codegen/src/templates/project/package-lock.json +197 -197
- rn-codegen/src/templates/project/package.json +4 -4
- rn-codegen/src/templates/project/wavepulse/rn2css.json +6 -1
- rn-codegen/src/theme/components/input/select.styledef.js +17 -1
- rn-codegen/src/theme/components/input/select.styledef.js.map +1 -1
- rn-codegen/src/theme/components/navigation/menu.styledef.js +1 -1
- rn-codegen/src/theme/components/navigation/menu.styledef.js.map +1 -1
rn-codegen/package.json
CHANGED
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"postinstall": "echo \"\""
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@wavemaker/app-rn-runtime": "11.9.
|
|
13
|
-
"@wavemaker/variables": "11.9.
|
|
14
|
-
"@wavemaker/rn-codegen": "11.9.
|
|
12
|
+
"@wavemaker/app-rn-runtime": "11.9.4-1.5989",
|
|
13
|
+
"@wavemaker/variables": "11.9.4-1.5989",
|
|
14
|
+
"@wavemaker/rn-codegen": "11.9.4-1.5989",
|
|
15
15
|
"@wavemaker/wavepulse-agent": "1.0.11",
|
|
16
16
|
"expo": "52.0.17",
|
|
17
17
|
"expo-build-properties": "0.13.1",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@react-native-async-storage/async-storage": "1.23.1",
|
|
47
47
|
"@react-native-community/netinfo": "11.4.1",
|
|
48
48
|
"react-native-gesture-handler": "2.20.2",
|
|
49
|
-
"react-native-reanimated": "3.
|
|
49
|
+
"react-native-reanimated": "3.6.2",
|
|
50
50
|
"react-native-bundle-splitter": "3.0.1",
|
|
51
51
|
"react-native-safe-area-context": "4.12.0",
|
|
52
52
|
"@react-native-community/datetimepicker": "8.2.0",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"react-native-circular-progress": "1.4.1",
|
|
55
55
|
"@react-native-masked-view/masked-view": "0.3.2",
|
|
56
56
|
"react-native-svg": "15.8.0",
|
|
57
|
-
"react-native-ssl-public-key-pinning": "1.
|
|
57
|
+
"react-native-ssl-public-key-pinning": "1.1.4",
|
|
58
58
|
"@wavemaker/react-native-ssl-publickey": "1.0.2",
|
|
59
59
|
"victory-native": "37.3.2",
|
|
60
60
|
"@react-navigation/native": "6.1.7",
|
|
@@ -35,6 +35,9 @@
|
|
|
35
35
|
"bundler": "metro",
|
|
36
36
|
"favicon": "./assets/favicon.png"
|
|
37
37
|
},
|
|
38
|
+
"extra": {
|
|
39
|
+
"supportsRTL": true
|
|
40
|
+
},
|
|
38
41
|
"plugins": [
|
|
39
42
|
[
|
|
40
43
|
"expo-build-properties",
|
|
@@ -60,7 +63,8 @@
|
|
|
60
63
|
},
|
|
61
64
|
"imageWidth": 200
|
|
62
65
|
}
|
|
63
|
-
]
|
|
66
|
+
],
|
|
67
|
+
["expo-localization"]
|
|
64
68
|
],
|
|
65
69
|
"newArchEnabled": true
|
|
66
70
|
}
|
|
@@ -264,6 +264,15 @@ class EsBuilder {
|
|
|
264
264
|
console.log('Patched Expo video.')
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
+
async patchLinearGradient() {
|
|
268
|
+
await readAndReplaceFileContent(`${__dirname}/../node_modules/expo-linear-gradient/build/NativeLinearGradient.js`, (c) => {
|
|
269
|
+
return c.replace(
|
|
270
|
+
"import * as React from 'react';",
|
|
271
|
+
"import React from 'react';"
|
|
272
|
+
)
|
|
273
|
+
});
|
|
274
|
+
console.log('Patched Expo video.')
|
|
275
|
+
}
|
|
267
276
|
|
|
268
277
|
buildLibraries() {
|
|
269
278
|
const promises = [{
|
|
@@ -302,6 +311,7 @@ class EsBuilder {
|
|
|
302
311
|
.then(() => this.patchBabelExpoPreset())
|
|
303
312
|
.then(() => this.patchReactNavigation())
|
|
304
313
|
.then(() => this.patchReactNativeReanimated())
|
|
314
|
+
.then(() => this.patchLinearGradient())
|
|
305
315
|
.then(() => this.patchExpoVideo())
|
|
306
316
|
.then(() => {
|
|
307
317
|
console.log('*********** LIBRARIES ARE BUILT FOR ESBUILD **************');
|
|
@@ -319,6 +329,7 @@ class EsBuilder {
|
|
|
319
329
|
bundle: true,
|
|
320
330
|
entryNames: 'bundle-[hash]',
|
|
321
331
|
outdir: 'web-build',
|
|
332
|
+
jsxFragment: 'React.Fragment',
|
|
322
333
|
tsconfig: './esbuild/jsconfig.json',
|
|
323
334
|
define: {'process.env.NODE_ENV': '"development"', '__DEV__': false, global:'window', 'process.env.EXPO_OS': '"web"'},
|
|
324
335
|
resolveExtensions: ['.web.tsx','.web.ts','.web.jsx','.web.js','.tsx','.ts','.jsx','.js',],
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"react-native-restart": "0.0.27",
|
|
63
63
|
"react-native-safe-area-context": "4.12.0",
|
|
64
64
|
"react-native-screens": "4.1.0",
|
|
65
|
-
"react-native-ssl-public-key-pinning": "1.
|
|
65
|
+
"react-native-ssl-public-key-pinning": "1.1.4",
|
|
66
66
|
"react-native-svg": "15.8.0",
|
|
67
67
|
"react-native-svg-transformer": "1.5.0",
|
|
68
68
|
"react-native-vector-icons": "10.2.0",
|
|
@@ -6794,9 +6794,9 @@
|
|
|
6794
6794
|
}
|
|
6795
6795
|
},
|
|
6796
6796
|
"node_modules/caniuse-lite": {
|
|
6797
|
-
"version": "1.0.
|
|
6798
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
6799
|
-
"integrity": "sha512-
|
|
6797
|
+
"version": "1.0.30001690",
|
|
6798
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001690.tgz",
|
|
6799
|
+
"integrity": "sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==",
|
|
6800
6800
|
"funding": [
|
|
6801
6801
|
{
|
|
6802
6802
|
"type": "opencollective",
|
|
@@ -7467,12 +7467,12 @@
|
|
|
7467
7467
|
}
|
|
7468
7468
|
},
|
|
7469
7469
|
"node_modules/cross-fetch": {
|
|
7470
|
-
"version": "3.
|
|
7471
|
-
"resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.
|
|
7472
|
-
"integrity": "sha512-
|
|
7470
|
+
"version": "3.2.0",
|
|
7471
|
+
"resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz",
|
|
7472
|
+
"integrity": "sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==",
|
|
7473
7473
|
"license": "MIT",
|
|
7474
7474
|
"dependencies": {
|
|
7475
|
-
"node-fetch": "^2.
|
|
7475
|
+
"node-fetch": "^2.7.0"
|
|
7476
7476
|
}
|
|
7477
7477
|
},
|
|
7478
7478
|
"node_modules/cross-spawn": {
|
|
@@ -8163,9 +8163,9 @@
|
|
|
8163
8163
|
"license": "MIT"
|
|
8164
8164
|
},
|
|
8165
8165
|
"node_modules/electron-to-chromium": {
|
|
8166
|
-
"version": "1.5.
|
|
8167
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
8168
|
-
"integrity": "sha512-
|
|
8166
|
+
"version": "1.5.75",
|
|
8167
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.75.tgz",
|
|
8168
|
+
"integrity": "sha512-Lf3++DumRE/QmweGjU+ZcKqQ+3bKkU/qjaKYhIJKEOhgIO9Xs6IiAQFkfFoj+RhgDk4LUeNsLo6plExHqSyu6Q==",
|
|
8169
8169
|
"license": "ISC"
|
|
8170
8170
|
},
|
|
8171
8171
|
"node_modules/emoji-regex": {
|
|
@@ -9475,9 +9475,9 @@
|
|
|
9475
9475
|
"license": "MIT"
|
|
9476
9476
|
},
|
|
9477
9477
|
"node_modules/fbjs/node_modules/ua-parser-js": {
|
|
9478
|
-
"version": "1.0.
|
|
9479
|
-
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.
|
|
9480
|
-
"integrity": "sha512-
|
|
9478
|
+
"version": "1.0.40",
|
|
9479
|
+
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.40.tgz",
|
|
9480
|
+
"integrity": "sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==",
|
|
9481
9481
|
"funding": [
|
|
9482
9482
|
{
|
|
9483
9483
|
"type": "opencollective",
|
|
@@ -9602,9 +9602,9 @@
|
|
|
9602
9602
|
"license": "MIT"
|
|
9603
9603
|
},
|
|
9604
9604
|
"node_modules/flow-parser": {
|
|
9605
|
-
"version": "0.
|
|
9606
|
-
"resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.
|
|
9607
|
-
"integrity": "sha512-
|
|
9605
|
+
"version": "0.257.1",
|
|
9606
|
+
"resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.257.1.tgz",
|
|
9607
|
+
"integrity": "sha512-7+KYDpAXyBPD/wODhbPYO6IGUx+WwtJcLLG/r3DvbNyxaDyuYaTBKbSqeCldWQzuFcj+MsOVx2bpkEwVPB9JRw==",
|
|
9608
9608
|
"license": "MIT",
|
|
9609
9609
|
"engines": {
|
|
9610
9610
|
"node": ">=0.4.0"
|
|
@@ -10100,9 +10100,9 @@
|
|
|
10100
10100
|
}
|
|
10101
10101
|
},
|
|
10102
10102
|
"node_modules/image-size": {
|
|
10103
|
-
"version": "1.
|
|
10104
|
-
"resolved": "https://registry.npmjs.org/image-size/-/image-size-1.
|
|
10105
|
-
"integrity": "sha512-
|
|
10103
|
+
"version": "1.2.0",
|
|
10104
|
+
"resolved": "https://registry.npmjs.org/image-size/-/image-size-1.2.0.tgz",
|
|
10105
|
+
"integrity": "sha512-4S8fwbO6w3GeCVN6OPtA9I5IGKkcDMPcKndtUlpJuCwu7JLjtj7JZpwqLuyY2nrmQT3AWsCJLSKPsc2mPBSl3w==",
|
|
10106
10106
|
"license": "MIT",
|
|
10107
10107
|
"dependencies": {
|
|
10108
10108
|
"queue": "6.0.2"
|
|
@@ -10292,9 +10292,9 @@
|
|
|
10292
10292
|
"license": "MIT"
|
|
10293
10293
|
},
|
|
10294
10294
|
"node_modules/is-core-module": {
|
|
10295
|
-
"version": "2.16.
|
|
10296
|
-
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.
|
|
10297
|
-
"integrity": "sha512-
|
|
10295
|
+
"version": "2.16.1",
|
|
10296
|
+
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
|
|
10297
|
+
"integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
|
|
10298
10298
|
"license": "MIT",
|
|
10299
10299
|
"dependencies": {
|
|
10300
10300
|
"hasown": "^2.0.2"
|
|
@@ -14269,13 +14269,10 @@
|
|
|
14269
14269
|
}
|
|
14270
14270
|
},
|
|
14271
14271
|
"node_modules/react-native-ssl-public-key-pinning": {
|
|
14272
|
-
"version": "1.
|
|
14273
|
-
"resolved": "https://registry.npmjs.org/react-native-ssl-public-key-pinning/-/react-native-ssl-public-key-pinning-1.
|
|
14274
|
-
"integrity": "sha512-
|
|
14272
|
+
"version": "1.1.4",
|
|
14273
|
+
"resolved": "https://registry.npmjs.org/react-native-ssl-public-key-pinning/-/react-native-ssl-public-key-pinning-1.1.4.tgz",
|
|
14274
|
+
"integrity": "sha512-k2OtqpExjIo8H8vJ8+yUYTHaEyl1Qn/HiWT1UqpfyqgF2rz5VR1Fq+TdSuPqg+n1STQtXAKEua+L1fidJ8UWQw==",
|
|
14275
14275
|
"license": "MIT",
|
|
14276
|
-
"workspaces": [
|
|
14277
|
-
"example"
|
|
14278
|
-
],
|
|
14279
14276
|
"peerDependencies": {
|
|
14280
14277
|
"react": "*",
|
|
14281
14278
|
"react-native": "*"
|
|
@@ -14883,9 +14880,9 @@
|
|
|
14883
14880
|
}
|
|
14884
14881
|
},
|
|
14885
14882
|
"node_modules/resolve": {
|
|
14886
|
-
"version": "1.22.
|
|
14887
|
-
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.
|
|
14888
|
-
"integrity": "sha512-
|
|
14883
|
+
"version": "1.22.10",
|
|
14884
|
+
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
|
|
14885
|
+
"integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
|
|
14889
14886
|
"license": "MIT",
|
|
14890
14887
|
"dependencies": {
|
|
14891
14888
|
"is-core-module": "^2.16.0",
|
|
@@ -14895,6 +14892,9 @@
|
|
|
14895
14892
|
"bin": {
|
|
14896
14893
|
"resolve": "bin/resolve"
|
|
14897
14894
|
},
|
|
14895
|
+
"engines": {
|
|
14896
|
+
"node": ">= 0.4"
|
|
14897
|
+
},
|
|
14898
14898
|
"funding": {
|
|
14899
14899
|
"url": "https://github.com/sponsors/ljharb"
|
|
14900
14900
|
}
|
|
@@ -16695,9 +16695,9 @@
|
|
|
16695
16695
|
}
|
|
16696
16696
|
},
|
|
16697
16697
|
"node_modules/ua-parser-js": {
|
|
16698
|
-
"version": "0.7.
|
|
16699
|
-
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.
|
|
16700
|
-
"integrity": "sha512-
|
|
16698
|
+
"version": "0.7.40",
|
|
16699
|
+
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.40.tgz",
|
|
16700
|
+
"integrity": "sha512-us1E3K+3jJppDBa3Tl0L3MOJiGhe1C6P0+nIvQAFYbxlMAx0h81eOwLmU57xgqToduDDPx3y5QsdjPfDu+FgOQ==",
|
|
16701
16701
|
"funding": [
|
|
16702
16702
|
{
|
|
16703
16703
|
"type": "opencollective",
|
|
@@ -17016,281 +17016,281 @@
|
|
|
17016
17016
|
}
|
|
17017
17017
|
},
|
|
17018
17018
|
"node_modules/victory": {
|
|
17019
|
-
"version": "37.3.
|
|
17020
|
-
"resolved": "https://registry.npmjs.org/victory/-/victory-37.3.
|
|
17021
|
-
"integrity": "sha512-
|
|
17022
|
-
"license": "MIT",
|
|
17023
|
-
"dependencies": {
|
|
17024
|
-
"victory-area": "37.3.
|
|
17025
|
-
"victory-axis": "37.3.
|
|
17026
|
-
"victory-bar": "37.3.
|
|
17027
|
-
"victory-box-plot": "37.3.
|
|
17028
|
-
"victory-brush-container": "37.3.
|
|
17029
|
-
"victory-brush-line": "37.3.
|
|
17030
|
-
"victory-candlestick": "37.3.
|
|
17031
|
-
"victory-canvas": "37.3.
|
|
17032
|
-
"victory-chart": "37.3.
|
|
17033
|
-
"victory-core": "37.3.
|
|
17034
|
-
"victory-create-container": "37.3.
|
|
17035
|
-
"victory-cursor-container": "37.3.
|
|
17036
|
-
"victory-errorbar": "37.3.
|
|
17037
|
-
"victory-group": "37.3.
|
|
17038
|
-
"victory-histogram": "37.3.
|
|
17039
|
-
"victory-legend": "37.3.
|
|
17040
|
-
"victory-line": "37.3.
|
|
17041
|
-
"victory-pie": "37.3.
|
|
17042
|
-
"victory-polar-axis": "37.3.
|
|
17043
|
-
"victory-scatter": "37.3.
|
|
17044
|
-
"victory-selection-container": "37.3.
|
|
17045
|
-
"victory-shared-events": "37.3.
|
|
17046
|
-
"victory-stack": "37.3.
|
|
17047
|
-
"victory-tooltip": "37.3.
|
|
17048
|
-
"victory-voronoi": "37.3.
|
|
17049
|
-
"victory-voronoi-container": "37.3.
|
|
17050
|
-
"victory-zoom-container": "37.3.
|
|
17019
|
+
"version": "37.3.5",
|
|
17020
|
+
"resolved": "https://registry.npmjs.org/victory/-/victory-37.3.5.tgz",
|
|
17021
|
+
"integrity": "sha512-yMvoIYi9leNF5M3X/UFzK09NItHH2UPofh51TS+EJlPY5Tf8goybfkKWJC1Sl5lpQzDK1rCFmuoX5sn959e0iw==",
|
|
17022
|
+
"license": "MIT",
|
|
17023
|
+
"dependencies": {
|
|
17024
|
+
"victory-area": "37.3.5",
|
|
17025
|
+
"victory-axis": "37.3.5",
|
|
17026
|
+
"victory-bar": "37.3.5",
|
|
17027
|
+
"victory-box-plot": "37.3.5",
|
|
17028
|
+
"victory-brush-container": "37.3.5",
|
|
17029
|
+
"victory-brush-line": "37.3.5",
|
|
17030
|
+
"victory-candlestick": "37.3.5",
|
|
17031
|
+
"victory-canvas": "37.3.5",
|
|
17032
|
+
"victory-chart": "37.3.5",
|
|
17033
|
+
"victory-core": "37.3.5",
|
|
17034
|
+
"victory-create-container": "37.3.5",
|
|
17035
|
+
"victory-cursor-container": "37.3.5",
|
|
17036
|
+
"victory-errorbar": "37.3.5",
|
|
17037
|
+
"victory-group": "37.3.5",
|
|
17038
|
+
"victory-histogram": "37.3.5",
|
|
17039
|
+
"victory-legend": "37.3.5",
|
|
17040
|
+
"victory-line": "37.3.5",
|
|
17041
|
+
"victory-pie": "37.3.5",
|
|
17042
|
+
"victory-polar-axis": "37.3.5",
|
|
17043
|
+
"victory-scatter": "37.3.5",
|
|
17044
|
+
"victory-selection-container": "37.3.5",
|
|
17045
|
+
"victory-shared-events": "37.3.5",
|
|
17046
|
+
"victory-stack": "37.3.5",
|
|
17047
|
+
"victory-tooltip": "37.3.5",
|
|
17048
|
+
"victory-voronoi": "37.3.5",
|
|
17049
|
+
"victory-voronoi-container": "37.3.5",
|
|
17050
|
+
"victory-zoom-container": "37.3.5"
|
|
17051
17051
|
},
|
|
17052
17052
|
"peerDependencies": {
|
|
17053
17053
|
"react": ">=16.6.0"
|
|
17054
17054
|
}
|
|
17055
17055
|
},
|
|
17056
17056
|
"node_modules/victory-area": {
|
|
17057
|
-
"version": "37.3.
|
|
17058
|
-
"resolved": "https://registry.npmjs.org/victory-area/-/victory-area-37.3.
|
|
17059
|
-
"integrity": "sha512-
|
|
17057
|
+
"version": "37.3.5",
|
|
17058
|
+
"resolved": "https://registry.npmjs.org/victory-area/-/victory-area-37.3.5.tgz",
|
|
17059
|
+
"integrity": "sha512-MP5+dm8ThQVsSDQhmU4K93mjPZ4hir1QkoM8kYT0PsJcoFYI6J2ceTxoyJUUgrgO0Kf63PcYChR5RLu34bhFlw==",
|
|
17060
17060
|
"license": "MIT",
|
|
17061
17061
|
"dependencies": {
|
|
17062
17062
|
"lodash": "^4.17.19",
|
|
17063
|
-
"victory-core": "37.3.
|
|
17064
|
-
"victory-vendor": "37.3.
|
|
17063
|
+
"victory-core": "37.3.5",
|
|
17064
|
+
"victory-vendor": "37.3.5"
|
|
17065
17065
|
},
|
|
17066
17066
|
"peerDependencies": {
|
|
17067
17067
|
"react": ">=16.6.0"
|
|
17068
17068
|
}
|
|
17069
17069
|
},
|
|
17070
17070
|
"node_modules/victory-axis": {
|
|
17071
|
-
"version": "37.3.
|
|
17072
|
-
"resolved": "https://registry.npmjs.org/victory-axis/-/victory-axis-37.3.
|
|
17073
|
-
"integrity": "sha512-
|
|
17071
|
+
"version": "37.3.5",
|
|
17072
|
+
"resolved": "https://registry.npmjs.org/victory-axis/-/victory-axis-37.3.5.tgz",
|
|
17073
|
+
"integrity": "sha512-hd40FVZvWw26CHr6XfmVGhKgPd4I4Yqxtnl27P6aLVGv1gL46UuNVdDVFozr9rpxO+lGUepYz6Wh4OuzImpDEQ==",
|
|
17074
17074
|
"license": "MIT",
|
|
17075
17075
|
"dependencies": {
|
|
17076
17076
|
"lodash": "^4.17.19",
|
|
17077
|
-
"victory-core": "37.3.
|
|
17077
|
+
"victory-core": "37.3.5"
|
|
17078
17078
|
},
|
|
17079
17079
|
"peerDependencies": {
|
|
17080
17080
|
"react": ">=16.6.0"
|
|
17081
17081
|
}
|
|
17082
17082
|
},
|
|
17083
17083
|
"node_modules/victory-bar": {
|
|
17084
|
-
"version": "37.3.
|
|
17085
|
-
"resolved": "https://registry.npmjs.org/victory-bar/-/victory-bar-37.3.
|
|
17086
|
-
"integrity": "sha512-
|
|
17084
|
+
"version": "37.3.5",
|
|
17085
|
+
"resolved": "https://registry.npmjs.org/victory-bar/-/victory-bar-37.3.5.tgz",
|
|
17086
|
+
"integrity": "sha512-9HXxM/+9jyv6SIcJv90yqyImgXLSEGhaPBnDJg5CvHcR1zdGAdQp2pDxDV6EivUrfxiIyj1NeSWyCZpM0ZJddQ==",
|
|
17087
17087
|
"license": "MIT",
|
|
17088
17088
|
"dependencies": {
|
|
17089
17089
|
"lodash": "^4.17.19",
|
|
17090
|
-
"victory-core": "37.3.
|
|
17091
|
-
"victory-vendor": "37.3.
|
|
17090
|
+
"victory-core": "37.3.5",
|
|
17091
|
+
"victory-vendor": "37.3.5"
|
|
17092
17092
|
},
|
|
17093
17093
|
"peerDependencies": {
|
|
17094
17094
|
"react": ">=16.6.0"
|
|
17095
17095
|
}
|
|
17096
17096
|
},
|
|
17097
17097
|
"node_modules/victory-box-plot": {
|
|
17098
|
-
"version": "37.3.
|
|
17099
|
-
"resolved": "https://registry.npmjs.org/victory-box-plot/-/victory-box-plot-37.3.
|
|
17100
|
-
"integrity": "sha512-
|
|
17098
|
+
"version": "37.3.5",
|
|
17099
|
+
"resolved": "https://registry.npmjs.org/victory-box-plot/-/victory-box-plot-37.3.5.tgz",
|
|
17100
|
+
"integrity": "sha512-jIV8k4XViLBWh5XvYBSELYGsWo55vYBoNqGkVUKhcXM4sS9mumc2XgDQ6nltTO88gs8uOyZpb2vBFp+1zOauyA==",
|
|
17101
17101
|
"license": "MIT",
|
|
17102
17102
|
"dependencies": {
|
|
17103
17103
|
"lodash": "^4.17.19",
|
|
17104
|
-
"victory-core": "37.3.
|
|
17105
|
-
"victory-vendor": "37.3.
|
|
17104
|
+
"victory-core": "37.3.5",
|
|
17105
|
+
"victory-vendor": "37.3.5"
|
|
17106
17106
|
},
|
|
17107
17107
|
"peerDependencies": {
|
|
17108
17108
|
"react": ">=16.6.0"
|
|
17109
17109
|
}
|
|
17110
17110
|
},
|
|
17111
17111
|
"node_modules/victory-brush-container": {
|
|
17112
|
-
"version": "37.3.
|
|
17113
|
-
"resolved": "https://registry.npmjs.org/victory-brush-container/-/victory-brush-container-37.3.
|
|
17114
|
-
"integrity": "sha512-
|
|
17112
|
+
"version": "37.3.5",
|
|
17113
|
+
"resolved": "https://registry.npmjs.org/victory-brush-container/-/victory-brush-container-37.3.5.tgz",
|
|
17114
|
+
"integrity": "sha512-n4Ozb5I/Pz/dcWnxAfqBhnsq6Q2gIC7Phjbau3cIBTPcq/rrkRIWzpiPPWhoAT+OTirgB9vOfe3JX4LBDk17FA==",
|
|
17115
17115
|
"license": "MIT",
|
|
17116
17116
|
"dependencies": {
|
|
17117
17117
|
"lodash": "^4.17.19",
|
|
17118
17118
|
"react-fast-compare": "^3.2.0",
|
|
17119
|
-
"victory-core": "37.3.
|
|
17119
|
+
"victory-core": "37.3.5"
|
|
17120
17120
|
},
|
|
17121
17121
|
"peerDependencies": {
|
|
17122
17122
|
"react": ">=16.6.0"
|
|
17123
17123
|
}
|
|
17124
17124
|
},
|
|
17125
17125
|
"node_modules/victory-brush-line": {
|
|
17126
|
-
"version": "37.3.
|
|
17127
|
-
"resolved": "https://registry.npmjs.org/victory-brush-line/-/victory-brush-line-37.3.
|
|
17128
|
-
"integrity": "sha512-
|
|
17126
|
+
"version": "37.3.5",
|
|
17127
|
+
"resolved": "https://registry.npmjs.org/victory-brush-line/-/victory-brush-line-37.3.5.tgz",
|
|
17128
|
+
"integrity": "sha512-L68JolxHJo7TyH+VwMBXMKK5hAsEMe+eYCO37dO1nxU6kh6u86bkLjoc9xIN/JNOcKj9GnDEfN0rRmCdkM9wpA==",
|
|
17129
17129
|
"license": "MIT",
|
|
17130
17130
|
"dependencies": {
|
|
17131
17131
|
"lodash": "^4.17.19",
|
|
17132
17132
|
"react-fast-compare": "^3.2.0",
|
|
17133
|
-
"victory-core": "37.3.
|
|
17133
|
+
"victory-core": "37.3.5"
|
|
17134
17134
|
},
|
|
17135
17135
|
"peerDependencies": {
|
|
17136
17136
|
"react": ">=16.6.0"
|
|
17137
17137
|
}
|
|
17138
17138
|
},
|
|
17139
17139
|
"node_modules/victory-candlestick": {
|
|
17140
|
-
"version": "37.3.
|
|
17141
|
-
"resolved": "https://registry.npmjs.org/victory-candlestick/-/victory-candlestick-37.3.
|
|
17142
|
-
"integrity": "sha512-
|
|
17140
|
+
"version": "37.3.5",
|
|
17141
|
+
"resolved": "https://registry.npmjs.org/victory-candlestick/-/victory-candlestick-37.3.5.tgz",
|
|
17142
|
+
"integrity": "sha512-b+NUAxhZdbd/AuZ1FVeJC+KrTMDfhSZLVoAjasFlnGTd0fpeo8ujzTNOJDjJ2aGOi/o1pLwsOr9KWWcoCdaHcA==",
|
|
17143
17143
|
"license": "MIT",
|
|
17144
17144
|
"dependencies": {
|
|
17145
17145
|
"lodash": "^4.17.19",
|
|
17146
|
-
"victory-core": "37.3.
|
|
17146
|
+
"victory-core": "37.3.5"
|
|
17147
17147
|
},
|
|
17148
17148
|
"peerDependencies": {
|
|
17149
17149
|
"react": ">=16.6.0"
|
|
17150
17150
|
}
|
|
17151
17151
|
},
|
|
17152
17152
|
"node_modules/victory-canvas": {
|
|
17153
|
-
"version": "37.3.
|
|
17154
|
-
"resolved": "https://registry.npmjs.org/victory-canvas/-/victory-canvas-37.3.
|
|
17155
|
-
"integrity": "sha512-
|
|
17153
|
+
"version": "37.3.5",
|
|
17154
|
+
"resolved": "https://registry.npmjs.org/victory-canvas/-/victory-canvas-37.3.5.tgz",
|
|
17155
|
+
"integrity": "sha512-8P6LZvA2p5LzJV8wklQ8oxYwep5BWUPPj1niB4vcFSJguc1dvHMtUBDofGqZJCIYi9otTabWk5VQDP/idzlu6g==",
|
|
17156
17156
|
"license": "MIT",
|
|
17157
17157
|
"dependencies": {
|
|
17158
17158
|
"lodash": "^4.17.19",
|
|
17159
|
-
"victory-bar": "37.3.
|
|
17160
|
-
"victory-core": "37.3.
|
|
17159
|
+
"victory-bar": "37.3.5",
|
|
17160
|
+
"victory-core": "37.3.5"
|
|
17161
17161
|
},
|
|
17162
17162
|
"peerDependencies": {
|
|
17163
17163
|
"react": ">=16.6.0"
|
|
17164
17164
|
}
|
|
17165
17165
|
},
|
|
17166
17166
|
"node_modules/victory-chart": {
|
|
17167
|
-
"version": "37.3.
|
|
17168
|
-
"resolved": "https://registry.npmjs.org/victory-chart/-/victory-chart-37.3.
|
|
17169
|
-
"integrity": "sha512-
|
|
17167
|
+
"version": "37.3.5",
|
|
17168
|
+
"resolved": "https://registry.npmjs.org/victory-chart/-/victory-chart-37.3.5.tgz",
|
|
17169
|
+
"integrity": "sha512-Lsbmp5rG3ESzQAr76M4WJ0FKraltAzuQY1D3e7CmqzQlLKpsMS/j2Ty+5OCBDmC3qQ+PHObBLVavgn3TJSRJLg==",
|
|
17170
17170
|
"license": "MIT",
|
|
17171
17171
|
"dependencies": {
|
|
17172
17172
|
"lodash": "^4.17.19",
|
|
17173
17173
|
"react-fast-compare": "^3.2.0",
|
|
17174
|
-
"victory-axis": "37.3.
|
|
17175
|
-
"victory-core": "37.3.
|
|
17176
|
-
"victory-polar-axis": "37.3.
|
|
17177
|
-
"victory-shared-events": "37.3.
|
|
17174
|
+
"victory-axis": "37.3.5",
|
|
17175
|
+
"victory-core": "37.3.5",
|
|
17176
|
+
"victory-polar-axis": "37.3.5",
|
|
17177
|
+
"victory-shared-events": "37.3.5"
|
|
17178
17178
|
},
|
|
17179
17179
|
"peerDependencies": {
|
|
17180
17180
|
"react": ">=16.6.0"
|
|
17181
17181
|
}
|
|
17182
17182
|
},
|
|
17183
17183
|
"node_modules/victory-core": {
|
|
17184
|
-
"version": "37.3.
|
|
17185
|
-
"resolved": "https://registry.npmjs.org/victory-core/-/victory-core-37.3.
|
|
17186
|
-
"integrity": "sha512-
|
|
17184
|
+
"version": "37.3.5",
|
|
17185
|
+
"resolved": "https://registry.npmjs.org/victory-core/-/victory-core-37.3.5.tgz",
|
|
17186
|
+
"integrity": "sha512-PXY+9Lx1ohCX+ZzkWdm+VY7T+2Pd/YKdv3yVkuflzMQ52kQMYbcgwGI49yPuzVqB3m1eBJ5dYdAD53ww53GTHw==",
|
|
17187
17187
|
"license": "MIT",
|
|
17188
17188
|
"dependencies": {
|
|
17189
17189
|
"lodash": "^4.17.21",
|
|
17190
17190
|
"react-fast-compare": "^3.2.0",
|
|
17191
|
-
"victory-vendor": "37.3.
|
|
17191
|
+
"victory-vendor": "37.3.5"
|
|
17192
17192
|
},
|
|
17193
17193
|
"peerDependencies": {
|
|
17194
17194
|
"react": ">=16.6.0"
|
|
17195
17195
|
}
|
|
17196
17196
|
},
|
|
17197
17197
|
"node_modules/victory-create-container": {
|
|
17198
|
-
"version": "37.3.
|
|
17199
|
-
"resolved": "https://registry.npmjs.org/victory-create-container/-/victory-create-container-37.3.
|
|
17200
|
-
"integrity": "sha512-
|
|
17198
|
+
"version": "37.3.5",
|
|
17199
|
+
"resolved": "https://registry.npmjs.org/victory-create-container/-/victory-create-container-37.3.5.tgz",
|
|
17200
|
+
"integrity": "sha512-VcHhnw35e+xU96LWwAuCZQ7YLS9NSSlGU0pgtiUUx0ymCJDWtY8G+ZijZL+DKQ5byU/8+DvaK3iNUhxdpBAHQw==",
|
|
17201
17201
|
"license": "MIT",
|
|
17202
17202
|
"dependencies": {
|
|
17203
17203
|
"lodash": "^4.17.19",
|
|
17204
|
-
"victory-brush-container": "37.3.
|
|
17205
|
-
"victory-core": "37.3.
|
|
17206
|
-
"victory-cursor-container": "37.3.
|
|
17207
|
-
"victory-selection-container": "37.3.
|
|
17208
|
-
"victory-voronoi-container": "37.3.
|
|
17209
|
-
"victory-zoom-container": "37.3.
|
|
17204
|
+
"victory-brush-container": "37.3.5",
|
|
17205
|
+
"victory-core": "37.3.5",
|
|
17206
|
+
"victory-cursor-container": "37.3.5",
|
|
17207
|
+
"victory-selection-container": "37.3.5",
|
|
17208
|
+
"victory-voronoi-container": "37.3.5",
|
|
17209
|
+
"victory-zoom-container": "37.3.5"
|
|
17210
17210
|
},
|
|
17211
17211
|
"peerDependencies": {
|
|
17212
17212
|
"react": ">=16.6.0"
|
|
17213
17213
|
}
|
|
17214
17214
|
},
|
|
17215
17215
|
"node_modules/victory-cursor-container": {
|
|
17216
|
-
"version": "37.3.
|
|
17217
|
-
"resolved": "https://registry.npmjs.org/victory-cursor-container/-/victory-cursor-container-37.3.
|
|
17218
|
-
"integrity": "sha512
|
|
17216
|
+
"version": "37.3.5",
|
|
17217
|
+
"resolved": "https://registry.npmjs.org/victory-cursor-container/-/victory-cursor-container-37.3.5.tgz",
|
|
17218
|
+
"integrity": "sha512-/G9zpYkeJA0uBk3khGNJBUNHOZ25EPoFfVZqwSSjpVRRI3JLMVNvv1LWhZvFZDkK0KMrT8pi8AZr04jCZxCoPg==",
|
|
17219
17219
|
"license": "MIT",
|
|
17220
17220
|
"dependencies": {
|
|
17221
17221
|
"lodash": "^4.17.19",
|
|
17222
|
-
"victory-core": "37.3.
|
|
17222
|
+
"victory-core": "37.3.5"
|
|
17223
17223
|
},
|
|
17224
17224
|
"peerDependencies": {
|
|
17225
17225
|
"react": ">=16.6.0"
|
|
17226
17226
|
}
|
|
17227
17227
|
},
|
|
17228
17228
|
"node_modules/victory-errorbar": {
|
|
17229
|
-
"version": "37.3.
|
|
17230
|
-
"resolved": "https://registry.npmjs.org/victory-errorbar/-/victory-errorbar-37.3.
|
|
17231
|
-
"integrity": "sha512-
|
|
17229
|
+
"version": "37.3.5",
|
|
17230
|
+
"resolved": "https://registry.npmjs.org/victory-errorbar/-/victory-errorbar-37.3.5.tgz",
|
|
17231
|
+
"integrity": "sha512-QYH8tn0UqtGDpOXFE8fwSmr/7Oq4VADrA1gxpMgWN9819/+vgKfBMemPdHfAguyuGftCDp7kPISvQZ1Kef19LQ==",
|
|
17232
17232
|
"license": "MIT",
|
|
17233
17233
|
"dependencies": {
|
|
17234
17234
|
"lodash": "^4.17.19",
|
|
17235
|
-
"victory-core": "37.3.
|
|
17235
|
+
"victory-core": "37.3.5"
|
|
17236
17236
|
},
|
|
17237
17237
|
"peerDependencies": {
|
|
17238
17238
|
"react": ">=16.6.0"
|
|
17239
17239
|
}
|
|
17240
17240
|
},
|
|
17241
17241
|
"node_modules/victory-group": {
|
|
17242
|
-
"version": "37.3.
|
|
17243
|
-
"resolved": "https://registry.npmjs.org/victory-group/-/victory-group-37.3.
|
|
17244
|
-
"integrity": "sha512-
|
|
17242
|
+
"version": "37.3.5",
|
|
17243
|
+
"resolved": "https://registry.npmjs.org/victory-group/-/victory-group-37.3.5.tgz",
|
|
17244
|
+
"integrity": "sha512-0GEtrG2Vl7uv1fkmWlHRO6U8JBhXJ3cB1KJPP2k5QKblfYd0QgDCtlSeMuaTUB+yRnQR5OlUv6bvkwwRio4bSg==",
|
|
17245
17245
|
"license": "MIT",
|
|
17246
17246
|
"dependencies": {
|
|
17247
17247
|
"lodash": "^4.17.19",
|
|
17248
17248
|
"react-fast-compare": "^3.2.0",
|
|
17249
|
-
"victory-core": "37.3.
|
|
17250
|
-
"victory-shared-events": "37.3.
|
|
17249
|
+
"victory-core": "37.3.5",
|
|
17250
|
+
"victory-shared-events": "37.3.5"
|
|
17251
17251
|
},
|
|
17252
17252
|
"peerDependencies": {
|
|
17253
17253
|
"react": ">=16.6.0"
|
|
17254
17254
|
}
|
|
17255
17255
|
},
|
|
17256
17256
|
"node_modules/victory-histogram": {
|
|
17257
|
-
"version": "37.3.
|
|
17258
|
-
"resolved": "https://registry.npmjs.org/victory-histogram/-/victory-histogram-37.3.
|
|
17259
|
-
"integrity": "sha512-
|
|
17257
|
+
"version": "37.3.5",
|
|
17258
|
+
"resolved": "https://registry.npmjs.org/victory-histogram/-/victory-histogram-37.3.5.tgz",
|
|
17259
|
+
"integrity": "sha512-2tzWguaB9/edRBG7Yyb19KZHiFlQpE5nEY3Wd9arBcG1SosQOoCNINaJ+8B1jDBdM4BGCIV/K/0ZjQEDFXlTVA==",
|
|
17260
17260
|
"license": "MIT",
|
|
17261
17261
|
"dependencies": {
|
|
17262
17262
|
"lodash": "^4.17.19",
|
|
17263
17263
|
"react-fast-compare": "^3.2.0",
|
|
17264
|
-
"victory-bar": "37.3.
|
|
17265
|
-
"victory-core": "37.3.
|
|
17266
|
-
"victory-vendor": "37.3.
|
|
17264
|
+
"victory-bar": "37.3.5",
|
|
17265
|
+
"victory-core": "37.3.5",
|
|
17266
|
+
"victory-vendor": "37.3.5"
|
|
17267
17267
|
},
|
|
17268
17268
|
"peerDependencies": {
|
|
17269
17269
|
"react": ">=16.6.0"
|
|
17270
17270
|
}
|
|
17271
17271
|
},
|
|
17272
17272
|
"node_modules/victory-legend": {
|
|
17273
|
-
"version": "37.3.
|
|
17274
|
-
"resolved": "https://registry.npmjs.org/victory-legend/-/victory-legend-37.3.
|
|
17275
|
-
"integrity": "sha512-
|
|
17273
|
+
"version": "37.3.5",
|
|
17274
|
+
"resolved": "https://registry.npmjs.org/victory-legend/-/victory-legend-37.3.5.tgz",
|
|
17275
|
+
"integrity": "sha512-TW/OeKP8LgZp93nJVoAltTwl5T0q1MWeH1HqZim2oGqwqX0E8o0BeJXv+2TGkXdp5ITiWi2nxGGQ77vSg8KZhQ==",
|
|
17276
17276
|
"license": "MIT",
|
|
17277
17277
|
"dependencies": {
|
|
17278
17278
|
"lodash": "^4.17.19",
|
|
17279
|
-
"victory-core": "37.3.
|
|
17279
|
+
"victory-core": "37.3.5"
|
|
17280
17280
|
},
|
|
17281
17281
|
"peerDependencies": {
|
|
17282
17282
|
"react": ">=16.6.0"
|
|
17283
17283
|
}
|
|
17284
17284
|
},
|
|
17285
17285
|
"node_modules/victory-line": {
|
|
17286
|
-
"version": "37.3.
|
|
17287
|
-
"resolved": "https://registry.npmjs.org/victory-line/-/victory-line-37.3.
|
|
17288
|
-
"integrity": "sha512-
|
|
17286
|
+
"version": "37.3.5",
|
|
17287
|
+
"resolved": "https://registry.npmjs.org/victory-line/-/victory-line-37.3.5.tgz",
|
|
17288
|
+
"integrity": "sha512-q1L2aSG28Z7ousRckf8zut7HdLQ7kWiNakOatsdfAqnce/n52F0E8c3qSIwbRmkdHHSe3SHhTLNyzLtnDzYQjQ==",
|
|
17289
17289
|
"license": "MIT",
|
|
17290
17290
|
"dependencies": {
|
|
17291
17291
|
"lodash": "^4.17.19",
|
|
17292
|
-
"victory-core": "37.3.
|
|
17293
|
-
"victory-vendor": "37.3.
|
|
17292
|
+
"victory-core": "37.3.5",
|
|
17293
|
+
"victory-vendor": "37.3.5"
|
|
17294
17294
|
},
|
|
17295
17295
|
"peerDependencies": {
|
|
17296
17296
|
"react": ">=16.6.0"
|
|
@@ -17338,105 +17338,105 @@
|
|
|
17338
17338
|
}
|
|
17339
17339
|
},
|
|
17340
17340
|
"node_modules/victory-pie": {
|
|
17341
|
-
"version": "37.3.
|
|
17342
|
-
"resolved": "https://registry.npmjs.org/victory-pie/-/victory-pie-37.3.
|
|
17343
|
-
"integrity": "sha512-
|
|
17341
|
+
"version": "37.3.5",
|
|
17342
|
+
"resolved": "https://registry.npmjs.org/victory-pie/-/victory-pie-37.3.5.tgz",
|
|
17343
|
+
"integrity": "sha512-JjKE5QhlatZkl/YbiN2KrF+tXIHRZ0ZYua5yWl8JYcg5/UTE3IFn/Y+2HIQIGghzEa98ZMMC/lNfZ3CEwK1yaw==",
|
|
17344
17344
|
"license": "MIT",
|
|
17345
17345
|
"dependencies": {
|
|
17346
17346
|
"lodash": "^4.17.19",
|
|
17347
|
-
"victory-core": "37.3.
|
|
17348
|
-
"victory-vendor": "37.3.
|
|
17347
|
+
"victory-core": "37.3.5",
|
|
17348
|
+
"victory-vendor": "37.3.5"
|
|
17349
17349
|
},
|
|
17350
17350
|
"peerDependencies": {
|
|
17351
17351
|
"react": ">=16.6.0"
|
|
17352
17352
|
}
|
|
17353
17353
|
},
|
|
17354
17354
|
"node_modules/victory-polar-axis": {
|
|
17355
|
-
"version": "37.3.
|
|
17356
|
-
"resolved": "https://registry.npmjs.org/victory-polar-axis/-/victory-polar-axis-37.3.
|
|
17357
|
-
"integrity": "sha512-
|
|
17355
|
+
"version": "37.3.5",
|
|
17356
|
+
"resolved": "https://registry.npmjs.org/victory-polar-axis/-/victory-polar-axis-37.3.5.tgz",
|
|
17357
|
+
"integrity": "sha512-6aZiaMGLtYDeh3uCB9wHKVVyvRsdbo5+WTp6S8lvyuHxyYOEn4JcxtpORzHHnGMWFkhZs4MmLSORrp/TBOi+7g==",
|
|
17358
17358
|
"license": "MIT",
|
|
17359
17359
|
"dependencies": {
|
|
17360
17360
|
"lodash": "^4.17.19",
|
|
17361
|
-
"victory-core": "37.3.
|
|
17361
|
+
"victory-core": "37.3.5"
|
|
17362
17362
|
},
|
|
17363
17363
|
"peerDependencies": {
|
|
17364
17364
|
"react": ">=16.6.0"
|
|
17365
17365
|
}
|
|
17366
17366
|
},
|
|
17367
17367
|
"node_modules/victory-scatter": {
|
|
17368
|
-
"version": "37.3.
|
|
17369
|
-
"resolved": "https://registry.npmjs.org/victory-scatter/-/victory-scatter-37.3.
|
|
17370
|
-
"integrity": "sha512-
|
|
17368
|
+
"version": "37.3.5",
|
|
17369
|
+
"resolved": "https://registry.npmjs.org/victory-scatter/-/victory-scatter-37.3.5.tgz",
|
|
17370
|
+
"integrity": "sha512-YEXm9D1novmUjk44eFyj+UQIxUw50v3yAa/772nb8yzR9ys9xPjM9+yyIsJSbRwdSiEAPmcbj6qwcYlyvJz1bQ==",
|
|
17371
17371
|
"license": "MIT",
|
|
17372
17372
|
"dependencies": {
|
|
17373
17373
|
"lodash": "^4.17.19",
|
|
17374
|
-
"victory-core": "37.3.
|
|
17374
|
+
"victory-core": "37.3.5"
|
|
17375
17375
|
},
|
|
17376
17376
|
"peerDependencies": {
|
|
17377
17377
|
"react": ">=16.6.0"
|
|
17378
17378
|
}
|
|
17379
17379
|
},
|
|
17380
17380
|
"node_modules/victory-selection-container": {
|
|
17381
|
-
"version": "37.3.
|
|
17382
|
-
"resolved": "https://registry.npmjs.org/victory-selection-container/-/victory-selection-container-37.3.
|
|
17383
|
-
"integrity": "sha512-
|
|
17381
|
+
"version": "37.3.5",
|
|
17382
|
+
"resolved": "https://registry.npmjs.org/victory-selection-container/-/victory-selection-container-37.3.5.tgz",
|
|
17383
|
+
"integrity": "sha512-cGqlZwV3HAWjrXjhGUsUkyFtWn+lsph2dcUzMlzTKs+e1sDFEHIVjpe3ZX4XsThu23dK//lrmIXFvbWtpLhy+Q==",
|
|
17384
17384
|
"license": "MIT",
|
|
17385
17385
|
"dependencies": {
|
|
17386
17386
|
"lodash": "^4.17.19",
|
|
17387
|
-
"victory-core": "37.3.
|
|
17387
|
+
"victory-core": "37.3.5"
|
|
17388
17388
|
},
|
|
17389
17389
|
"peerDependencies": {
|
|
17390
17390
|
"react": ">=16.6.0"
|
|
17391
17391
|
}
|
|
17392
17392
|
},
|
|
17393
17393
|
"node_modules/victory-shared-events": {
|
|
17394
|
-
"version": "37.3.
|
|
17395
|
-
"resolved": "https://registry.npmjs.org/victory-shared-events/-/victory-shared-events-37.3.
|
|
17396
|
-
"integrity": "sha512-
|
|
17394
|
+
"version": "37.3.5",
|
|
17395
|
+
"resolved": "https://registry.npmjs.org/victory-shared-events/-/victory-shared-events-37.3.5.tgz",
|
|
17396
|
+
"integrity": "sha512-Juq/5Y9WsFaD/4ivk7/y786EwNgLUjp3hkhpIGhiQOM2VaL5H7Xb1pX4ASjibkCkWIQUMBM+JaprtNcKEDylpQ==",
|
|
17397
17397
|
"license": "MIT",
|
|
17398
17398
|
"dependencies": {
|
|
17399
17399
|
"json-stringify-safe": "^5.0.1",
|
|
17400
17400
|
"lodash": "^4.17.19",
|
|
17401
17401
|
"react-fast-compare": "^3.2.0",
|
|
17402
|
-
"victory-core": "37.3.
|
|
17402
|
+
"victory-core": "37.3.5"
|
|
17403
17403
|
},
|
|
17404
17404
|
"peerDependencies": {
|
|
17405
17405
|
"react": ">=16.6.0"
|
|
17406
17406
|
}
|
|
17407
17407
|
},
|
|
17408
17408
|
"node_modules/victory-stack": {
|
|
17409
|
-
"version": "37.3.
|
|
17410
|
-
"resolved": "https://registry.npmjs.org/victory-stack/-/victory-stack-37.3.
|
|
17411
|
-
"integrity": "sha512-
|
|
17409
|
+
"version": "37.3.5",
|
|
17410
|
+
"resolved": "https://registry.npmjs.org/victory-stack/-/victory-stack-37.3.5.tgz",
|
|
17411
|
+
"integrity": "sha512-PL23dKKlr30Y77mw3JuIUYUhvOF66r3LhKQXqoymkV6DGMBhkQ2p7h+klek3xleRPBBTSz3o8EbfM8H2eZ/Umg==",
|
|
17412
17412
|
"license": "MIT",
|
|
17413
17413
|
"dependencies": {
|
|
17414
17414
|
"lodash": "^4.17.19",
|
|
17415
17415
|
"react-fast-compare": "^3.2.0",
|
|
17416
|
-
"victory-core": "37.3.
|
|
17417
|
-
"victory-shared-events": "37.3.
|
|
17416
|
+
"victory-core": "37.3.5",
|
|
17417
|
+
"victory-shared-events": "37.3.5"
|
|
17418
17418
|
},
|
|
17419
17419
|
"peerDependencies": {
|
|
17420
17420
|
"react": ">=16.6.0"
|
|
17421
17421
|
}
|
|
17422
17422
|
},
|
|
17423
17423
|
"node_modules/victory-tooltip": {
|
|
17424
|
-
"version": "37.3.
|
|
17425
|
-
"resolved": "https://registry.npmjs.org/victory-tooltip/-/victory-tooltip-37.3.
|
|
17426
|
-
"integrity": "sha512-
|
|
17424
|
+
"version": "37.3.5",
|
|
17425
|
+
"resolved": "https://registry.npmjs.org/victory-tooltip/-/victory-tooltip-37.3.5.tgz",
|
|
17426
|
+
"integrity": "sha512-IbvD37PGehP3K5BLL9xAK+6d/UEaNcLH/cdKKzeXeqOvoefQLIxxB1DJHYr542Ll8cxkeqtdsgtJ16pRCUgCSA==",
|
|
17427
17427
|
"license": "MIT",
|
|
17428
17428
|
"dependencies": {
|
|
17429
17429
|
"lodash": "^4.17.19",
|
|
17430
|
-
"victory-core": "37.3.
|
|
17430
|
+
"victory-core": "37.3.5"
|
|
17431
17431
|
},
|
|
17432
17432
|
"peerDependencies": {
|
|
17433
17433
|
"react": ">=16.6.0"
|
|
17434
17434
|
}
|
|
17435
17435
|
},
|
|
17436
17436
|
"node_modules/victory-vendor": {
|
|
17437
|
-
"version": "37.3.
|
|
17438
|
-
"resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-37.3.
|
|
17439
|
-
"integrity": "sha512
|
|
17437
|
+
"version": "37.3.5",
|
|
17438
|
+
"resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-37.3.5.tgz",
|
|
17439
|
+
"integrity": "sha512-+K2VBMmB7peKG3Gjp79XjgsbfsYgD0eZRSmKz7p5a4V0NhYq43eM/b0gpSLq+Dhwag96QaWsU75/6bFVBjVE7A==",
|
|
17440
17440
|
"license": "MIT AND ISC",
|
|
17441
17441
|
"dependencies": {
|
|
17442
17442
|
"@types/d3-array": "^3.0.3",
|
|
@@ -17456,43 +17456,43 @@
|
|
|
17456
17456
|
}
|
|
17457
17457
|
},
|
|
17458
17458
|
"node_modules/victory-voronoi": {
|
|
17459
|
-
"version": "37.3.
|
|
17460
|
-
"resolved": "https://registry.npmjs.org/victory-voronoi/-/victory-voronoi-37.3.
|
|
17461
|
-
"integrity": "sha512-
|
|
17459
|
+
"version": "37.3.5",
|
|
17460
|
+
"resolved": "https://registry.npmjs.org/victory-voronoi/-/victory-voronoi-37.3.5.tgz",
|
|
17461
|
+
"integrity": "sha512-2bHr6ALuJZdQ+c+Zo0f1xWljM18vd3kTEZYliJXnlF3BDYr6z8FEOXDRNesjbzAa5ZbG7ZppeJP+wlOP44s6ag==",
|
|
17462
17462
|
"license": "MIT",
|
|
17463
17463
|
"dependencies": {
|
|
17464
17464
|
"d3-voronoi": "^1.1.4",
|
|
17465
17465
|
"lodash": "^4.17.19",
|
|
17466
|
-
"victory-core": "37.3.
|
|
17466
|
+
"victory-core": "37.3.5"
|
|
17467
17467
|
},
|
|
17468
17468
|
"peerDependencies": {
|
|
17469
17469
|
"react": ">=16.6.0"
|
|
17470
17470
|
}
|
|
17471
17471
|
},
|
|
17472
17472
|
"node_modules/victory-voronoi-container": {
|
|
17473
|
-
"version": "37.3.
|
|
17474
|
-
"resolved": "https://registry.npmjs.org/victory-voronoi-container/-/victory-voronoi-container-37.3.
|
|
17475
|
-
"integrity": "sha512-
|
|
17473
|
+
"version": "37.3.5",
|
|
17474
|
+
"resolved": "https://registry.npmjs.org/victory-voronoi-container/-/victory-voronoi-container-37.3.5.tgz",
|
|
17475
|
+
"integrity": "sha512-GF35HQn8ACMcr7yJAFmaSKAS6w9GOsxxWoR6gtuQtBUwSBciZ5LNWpR6718nFxeOYDhkk/FVn7tnKqQTBv6XUw==",
|
|
17476
17476
|
"license": "MIT",
|
|
17477
17477
|
"dependencies": {
|
|
17478
17478
|
"delaunay-find": "0.0.6",
|
|
17479
17479
|
"lodash": "^4.17.19",
|
|
17480
17480
|
"react-fast-compare": "^3.2.0",
|
|
17481
|
-
"victory-core": "37.3.
|
|
17482
|
-
"victory-tooltip": "37.3.
|
|
17481
|
+
"victory-core": "37.3.5",
|
|
17482
|
+
"victory-tooltip": "37.3.5"
|
|
17483
17483
|
},
|
|
17484
17484
|
"peerDependencies": {
|
|
17485
17485
|
"react": ">=16.6.0"
|
|
17486
17486
|
}
|
|
17487
17487
|
},
|
|
17488
17488
|
"node_modules/victory-zoom-container": {
|
|
17489
|
-
"version": "37.3.
|
|
17490
|
-
"resolved": "https://registry.npmjs.org/victory-zoom-container/-/victory-zoom-container-37.3.
|
|
17491
|
-
"integrity": "sha512-
|
|
17489
|
+
"version": "37.3.5",
|
|
17490
|
+
"resolved": "https://registry.npmjs.org/victory-zoom-container/-/victory-zoom-container-37.3.5.tgz",
|
|
17491
|
+
"integrity": "sha512-LlRp2Ulodu3rhIrM1XilgR72223+qlhXE9mzBCYVoHQ+uo8uTKt27T0iOBkvY5kRwNiXQzshn01uxUAwxyBppw==",
|
|
17492
17492
|
"license": "MIT",
|
|
17493
17493
|
"dependencies": {
|
|
17494
17494
|
"lodash": "^4.17.19",
|
|
17495
|
-
"victory-core": "37.3.
|
|
17495
|
+
"victory-core": "37.3.5"
|
|
17496
17496
|
},
|
|
17497
17497
|
"peerDependencies": {
|
|
17498
17498
|
"react": ">=16.6.0"
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"postinstall": "node ./scripts/post-build.js"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@wavemaker/app-rn-runtime": "11.9.
|
|
13
|
-
"@wavemaker/variables": "11.9.
|
|
14
|
-
"@wavemaker/rn-codegen": "11.9.
|
|
12
|
+
"@wavemaker/app-rn-runtime": "11.9.4-1.5989",
|
|
13
|
+
"@wavemaker/variables": "11.9.4-1.5989",
|
|
14
|
+
"@wavemaker/rn-codegen": "11.9.4-1.5989",
|
|
15
15
|
"@wavemaker/wavepulse-agent": "1.0.11",
|
|
16
16
|
"expo": "52.0.17",
|
|
17
17
|
"expo-build-properties": "0.13.1",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"react-native-circular-progress": "1.4.1",
|
|
55
55
|
"@react-native-masked-view/masked-view": "0.3.2",
|
|
56
56
|
"react-native-svg": "15.8.0",
|
|
57
|
-
"react-native-ssl-public-key-pinning": "1.
|
|
57
|
+
"react-native-ssl-public-key-pinning": "1.1.4",
|
|
58
58
|
"@wavemaker/react-native-ssl-publickey": "1.0.2",
|
|
59
59
|
"victory-native": "37.3.2",
|
|
60
60
|
"@react-navigation/native": "6.1.7",
|
|
@@ -373,6 +373,10 @@
|
|
|
373
373
|
"app-select.checkIcon": ".app-select-check-icon",
|
|
374
374
|
"app-select.arrowButtonSkeleton": ".app-select-arrow-button-skeleton",
|
|
375
375
|
"app-select.textSkeleton": ".app-select-text-skeleton",
|
|
376
|
+
"app-select.dropDownContent": ".app-select-dropdown-content",
|
|
377
|
+
"app-select.dropdown": ".app-select-dropdown",
|
|
378
|
+
"app-select.modal": ".app-select-modal",
|
|
379
|
+
"app-select.modalContent": ".app-select-modal-content",
|
|
376
380
|
"app-slider.root": ".app-slider",
|
|
377
381
|
"app-slider.text": ".app-slider-text",
|
|
378
382
|
"app-slider.minimumValue": ".app-slider-minimum-text",
|
|
@@ -431,7 +435,7 @@
|
|
|
431
435
|
"navbarButton.icon.text": ".navbar-button-icon",
|
|
432
436
|
"navbarButton.text": ".navbar-button-text",
|
|
433
437
|
"app-basenav.root": ".app-basenav",
|
|
434
|
-
"app-
|
|
438
|
+
"app-menu.root": ".app-menu",
|
|
435
439
|
"app-menu.link": ".app-menu-trigger",
|
|
436
440
|
"app-menu.menu": ".app-menu-content",
|
|
437
441
|
"app-menu.menuItem": ".app-menu-item",
|
|
@@ -441,6 +445,7 @@
|
|
|
441
445
|
"app-navitem.root": ".app-navitem",
|
|
442
446
|
"app-navitem.navAnchorItem": ".app-navitem-anchor",
|
|
443
447
|
"app-navitem.caretIcon": ".app-navitem-caret",
|
|
448
|
+
"app-popover.popover": ".app-popover",
|
|
444
449
|
"app-popover.title": ".app-popover-title",
|
|
445
450
|
"app-popover.link": ".app-popover-link",
|
|
446
451
|
"app-popover.popoverContent.root": ".app-popover-content",
|
|
@@ -53,6 +53,22 @@ exports.default = {
|
|
|
53
53
|
className: '.app-select-text-skeleton',
|
|
54
54
|
rnStyleSelector: 'app-select.textSkeleton',
|
|
55
55
|
studioStyleSelector: 'app-select-text-skeleton'
|
|
56
|
-
}
|
|
56
|
+
}, {
|
|
57
|
+
className: '.app-select-dropdown-content',
|
|
58
|
+
rnStyleSelector: 'app-select.dropDownContent',
|
|
59
|
+
studioStyleSelector: 'app-select-dropdown-content'
|
|
60
|
+
}, {
|
|
61
|
+
className: '.app-select-dropdown',
|
|
62
|
+
rnStyleSelector: 'app-select.dropdown',
|
|
63
|
+
studioStyleSelector: 'app-select-dropdown'
|
|
64
|
+
}, {
|
|
65
|
+
className: '.app-select-modal',
|
|
66
|
+
rnStyleSelector: 'app-select.modal',
|
|
67
|
+
studioStyleSelector: 'app-select-modal'
|
|
68
|
+
}, {
|
|
69
|
+
className: '.app-select-modal-content',
|
|
70
|
+
rnStyleSelector: 'app-select.modalContent',
|
|
71
|
+
studioStyleSelector: 'app-select-modal-content'
|
|
72
|
+
},])
|
|
57
73
|
};
|
|
58
74
|
//# sourceMappingURL=select.styledef.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select.styledef.js","sourceRoot":"","sources":["../../../../../src/theme/components/input/select.styledef.ts"],"names":[],"mappings":";;AAEA,kBAAe;IACX,YAAY,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;YAClB,SAAS,EAAE,aAAa;YACxB,eAAe,EAAE,iBAAiB;YAClC,mBAAmB,EAAE,aAAa;YAClC,KAAK,EAAE;gBACH,cAAc,EAAE,mBAAmB;gBACnC,kBAAkB,EAAE,uBAAuB;aAC9C;SACJ,EAAE;YACC,SAAS,EAAE,kBAAkB;YAC7B,eAAe,EAAE,iBAAiB;YAClC,mBAAmB,EAAE,aAAa;YAClC,KAAK,EAAE,EAAE;SACZ,EAAE;YACC,SAAS,EAAE,qBAAqB;YAChC,eAAe,EAAE,oBAAoB;YACrC,mBAAmB,EAAE,qBAAqB;YAC1C,KAAK,EAAE;gBACH,qBAAqB,EAAE,0BAA0B;aACpD;SACJ,EAAC;YACE,SAAS,EAAE,kBAAkB;YAC7B,eAAe,EAAE,uBAAuB;YACxC,mBAAmB,EAAE,wBAAwB;SAChD,EAAC;YACE,SAAS,EAAE,uBAAuB;YAClC,eAAe,EAAE,2BAA2B;YAC5C,mBAAmB,EAAE,4BAA4B;SACpD,EAAC;YACE,SAAS,EAAE,uBAAuB;YAClC,eAAe,EAAE,2BAA2B;YAC5C,mBAAmB,EAAE,4BAA4B;SACpD,EAAC;YACE,SAAS,EAAE,yBAAyB;YACpC,eAAe,EAAE,yBAAyB;YAC1C,mBAAmB,EAAE,0BAA0B;SAClD,EAAC;YACE,SAAS,EAAE,8BAA8B;YACzC,eAAe,EAAE,6BAA6B;YAC9C,mBAAmB,EAAE,8BAA8B;SACtD,EAAC;YACE,SAAS,EAAE,wBAAwB;YACnC,eAAe,EAAE,sBAAsB;YACvC,mBAAmB,EAAE,uBAAuB;SAC/C,EAAE;YACC,SAAS,EAAE,mCAAmC;YAC9C,eAAe,EAAE,gCAAgC;YACjD,mBAAmB,EAAE,kCAAkC;SAC1D,EAAE;YACC,SAAS,EAAE,2BAA2B;YACtC,eAAe,EAAE,yBAAyB;YAC1C,mBAAmB,EAAE,0BAA0B;SAClD,
|
|
1
|
+
{"version":3,"file":"select.styledef.js","sourceRoot":"","sources":["../../../../../src/theme/components/input/select.styledef.ts"],"names":[],"mappings":";;AAEA,kBAAe;IACX,YAAY,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;YAClB,SAAS,EAAE,aAAa;YACxB,eAAe,EAAE,iBAAiB;YAClC,mBAAmB,EAAE,aAAa;YAClC,KAAK,EAAE;gBACH,cAAc,EAAE,mBAAmB;gBACnC,kBAAkB,EAAE,uBAAuB;aAC9C;SACJ,EAAE;YACC,SAAS,EAAE,kBAAkB;YAC7B,eAAe,EAAE,iBAAiB;YAClC,mBAAmB,EAAE,aAAa;YAClC,KAAK,EAAE,EAAE;SACZ,EAAE;YACC,SAAS,EAAE,qBAAqB;YAChC,eAAe,EAAE,oBAAoB;YACrC,mBAAmB,EAAE,qBAAqB;YAC1C,KAAK,EAAE;gBACH,qBAAqB,EAAE,0BAA0B;aACpD;SACJ,EAAC;YACE,SAAS,EAAE,kBAAkB;YAC7B,eAAe,EAAE,uBAAuB;YACxC,mBAAmB,EAAE,wBAAwB;SAChD,EAAC;YACE,SAAS,EAAE,uBAAuB;YAClC,eAAe,EAAE,2BAA2B;YAC5C,mBAAmB,EAAE,4BAA4B;SACpD,EAAC;YACE,SAAS,EAAE,uBAAuB;YAClC,eAAe,EAAE,2BAA2B;YAC5C,mBAAmB,EAAE,4BAA4B;SACpD,EAAC;YACE,SAAS,EAAE,yBAAyB;YACpC,eAAe,EAAE,yBAAyB;YAC1C,mBAAmB,EAAE,0BAA0B;SAClD,EAAC;YACE,SAAS,EAAE,8BAA8B;YACzC,eAAe,EAAE,6BAA6B;YAC9C,mBAAmB,EAAE,8BAA8B;SACtD,EAAC;YACE,SAAS,EAAE,wBAAwB;YACnC,eAAe,EAAE,sBAAsB;YACvC,mBAAmB,EAAE,uBAAuB;SAC/C,EAAE;YACC,SAAS,EAAE,mCAAmC;YAC9C,eAAe,EAAE,gCAAgC;YACjD,mBAAmB,EAAE,kCAAkC;SAC1D,EAAE;YACC,SAAS,EAAE,2BAA2B;YACtC,eAAe,EAAE,yBAAyB;YAC1C,mBAAmB,EAAE,0BAA0B;SAClD,EAAE;YACC,SAAS,EAAE,8BAA8B;YACzC,eAAe,EAAE,4BAA4B;YAC7C,mBAAmB,EAAE,6BAA6B;SACrD,EAAE;YACC,SAAS,EAAE,sBAAsB;YACjC,eAAe,EAAE,qBAAqB;YACtC,mBAAmB,EAAE,qBAAqB;SAC7C,EAAE;YACC,SAAS,EAAE,mBAAmB;YAC9B,eAAe,EAAE,kBAAkB;YACnC,mBAAmB,EAAE,kBAAkB;SAC1C,EAAE;YACC,SAAS,EAAE,2BAA2B;YACtC,eAAe,EAAE,yBAAyB;YAC1C,mBAAmB,EAAE,0BAA0B;SAClD,EAAE,CAAC;CACW,CAAC"}
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.default = {
|
|
4
4
|
getStyleDefs: () => ([{
|
|
5
5
|
className: '.app-menu',
|
|
6
|
-
rnStyleSelector: 'app-
|
|
6
|
+
rnStyleSelector: 'app-menu.root',
|
|
7
7
|
studioStyleSelector: '',
|
|
8
8
|
style: {
|
|
9
9
|
'background-color': '@popoverBackgroundColor'
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"menu.styledef.js","sourceRoot":"","sources":["../../../../../src/theme/components/navigation/menu.styledef.ts"],"names":[],"mappings":";;AAEA,kBAAe;IACX,YAAY,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;YAClB,SAAS,EAAE,WAAW;YACtB,eAAe,EAAE,
|
|
1
|
+
{"version":3,"file":"menu.styledef.js","sourceRoot":"","sources":["../../../../../src/theme/components/navigation/menu.styledef.ts"],"names":[],"mappings":";;AAEA,kBAAe;IACX,YAAY,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;YAClB,SAAS,EAAE,WAAW;YACtB,eAAe,EAAE,eAAe;YAChC,mBAAmB,EAAE,EAAE;YACvB,KAAK,EAAE;gBACH,kBAAkB,EAAE,yBAAyB;aAChD;SACJ,EAAE;YACC,SAAS,EAAE,mBAAmB;YAC9B,eAAe,EAAE,eAAe;YAChC,mBAAmB,EAAE,wBAAwB;SAChD,EAAG;YACA,SAAS,EAAE,8CAA8C;YACzD,mBAAmB,EAAE,wBAAwB;YAC7C,KAAK,EAAE;gBACH,KAAK,EAAE,gBAAgB;aAC1B;SACJ,EAAG;YACA,SAAS,EAAE,oCAAoC;YAC/C,mBAAmB,EAAE,wBAAwB;YAC7C,KAAK,EAAE;gBACH,KAAK,EAAE,gBAAgB;aAC1B;SACJ,EAAE;YACC,SAAS,EAAE,mBAAmB;YAC9B,eAAe,EAAE,eAAe;YAChC,mBAAmB,EAAE,EAAE;YACvB,KAAK,EAAE;gBACH,kBAAkB,EAAE,sBAAsB;aAC7C;SACJ,EAAE;YACC,SAAS,EAAE,gBAAgB;YAC3B,eAAe,EAAE,mBAAmB;YACpC,mBAAmB,EAAE,EAAE;SAC1B,EAAE;YACC,SAAS,EAAE,4BAA4B;YACvC,KAAK,EAAE;gBACH,qBAAqB,EAAE,sBAAsB;aAChD;SACJ,EAAE;YACC,SAAS,EAAE,iDAAiD;YAC5D,KAAK,EAAE;gBACH,KAAK,EAAE,oBAAoB;aAC9B;SACJ,EAAE;YACC,SAAS,EAAE,iCAAiC;YAC5C,KAAK,EAAE;gBACH,KAAK,EAAE,oBAAoB;aAC9B;SACJ,CAAC,CAAC;CACY,CAAC"}
|