@rfkit/charts 1.1.6 → 1.1.8

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.
@@ -0,0 +1,2 @@
1
+ declare const SeriesControl: React.FC;
2
+ export default SeriesControl;
package/index.js CHANGED
@@ -3729,6 +3729,14 @@ const defaultConfig = {
3729
3729
  },
3730
3730
  gradient: {
3731
3731
  item: [
3732
+ [
3733
+ '#FF0000',
3734
+ '#FFEB3B',
3735
+ '#2DB333',
3736
+ '#00BCD4',
3737
+ '#0000FF',
3738
+ '#000000'
3739
+ ],
3732
3740
  [
3733
3741
  '#FF3636',
3734
3742
  '#2DF16A',
@@ -5861,7 +5869,7 @@ class Series extends engine_Engine {
5861
5869
  thickness: 1,
5862
5870
  display: true,
5863
5871
  color: '#000000',
5864
- type: type_GraphicType.Stepline,
5872
+ type: type_GraphicType.Line,
5865
5873
  data: void 0,
5866
5874
  path: void 0,
5867
5875
  orientation: type_OrientationType.Vertical,
@@ -9812,7 +9820,7 @@ class Spectrum {
9812
9820
  const { chart, series, globalID } = this.state;
9813
9821
  const { name } = config;
9814
9822
  if (!chart || !name || !config) return;
9815
- const { type = type_GraphicType.Stepline, color = SERIES[name]?.color, thickness = 1, display = false } = {
9823
+ const { type = type_GraphicType.Line, color = SERIES[name]?.color, thickness = 1, display = false } = {
9816
9824
  ...series[name],
9817
9825
  ...config
9818
9826
  };
@@ -11980,7 +11988,7 @@ FrequencyAllocation_Tooltip_styles_module_options.domAPI = styleDomAPI_default()
11980
11988
  FrequencyAllocation_Tooltip_styles_module_options.insertStyleElement = insertStyleElement_default();
11981
11989
  injectStylesIntoStyleTag_default()(FrequencyAllocation_Tooltip_styles_module.Z, FrequencyAllocation_Tooltip_styles_module_options);
11982
11990
  const components_FrequencyAllocation_Tooltip_styles_module = FrequencyAllocation_Tooltip_styles_module.Z && FrequencyAllocation_Tooltip_styles_module.Z.locals ? FrequencyAllocation_Tooltip_styles_module.Z.locals : void 0;
11983
- const FrequencyAllocation_Tooltip_Tooltip = ({ title, description, visible, x, y, startFrequency, stopFrequency, centerFrequency, stepFrequency, bandwidth, modulation, demodulation, status })=>{
11991
+ const FrequencyAllocation_Tooltip_Tooltip = ({ title, description, visible, x, y, startFrequency, stopFrequency, centerFrequency, stepFrequency, bandwidth, modulation })=>{
11984
11992
  const tooltipRef = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)(null);
11985
11993
  const [position, setPosition] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)({
11986
11994
  x,
@@ -12033,12 +12041,6 @@ const FrequencyAllocation_Tooltip_Tooltip = ({ title, description, visible, x, y
12033
12041
  }),
12034
12042
  modulation && /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
12035
12043
  children: `\u{8C03}\u{5236}\u{65B9}\u{5F0F}: ${modulation}`
12036
- }),
12037
- demodulation && /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
12038
- children: `\u{89E3}\u{8C03}\u{65B9}\u{5F0F}: ${demodulation}`
12039
- }),
12040
- status && /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
12041
- children: `\u{72B6}\u{6001}: ${status}`
12042
12044
  })
12043
12045
  ]
12044
12046
  }),
@@ -14050,14 +14052,14 @@ const ZoomSwitch = ()=>{
14050
14052
  });
14051
14053
  };
14052
14054
  const Zoom_Switch = ZoomSwitch;
14053
- const modes = Object.values(constants_ModuleType);
14055
+ const Reset_modes = Object.values(constants_ModuleType);
14054
14056
  const Reset_Reset = ()=>{
14055
14057
  const { state: { globalID, publish } } = useStore_useStore();
14056
14058
  const handleReset = ()=>{
14057
14059
  publish({
14058
14060
  pstype: constants_PSType.Reset
14059
14061
  });
14060
- modes.forEach((mode)=>{
14062
+ Reset_modes.forEach((mode)=>{
14061
14063
  tools(globalID, mode)({
14062
14064
  pstype: constants_PSType.Reset
14063
14065
  });
@@ -14364,6 +14366,267 @@ const SegmentsDisplayControl_SegmentsDisplayControl = ()=>{
14364
14366
  });
14365
14367
  };
14366
14368
  const SegmentsDisplayControl = SegmentsDisplayControl_SegmentsDisplayControl;
14369
+ const SeriesControl = ()=>{
14370
+ const [currentMode, setCurrentMode] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)('bar');
14371
+ const { state: { publish } } = useStore_useStore();
14372
+ const seriesModes = {
14373
+ line: {
14374
+ realData: type_GraphicType.Line,
14375
+ minData: type_GraphicType.Line,
14376
+ maxData: type_GraphicType.Line,
14377
+ avgData: type_GraphicType.Line,
14378
+ label: "\u6298\u7EBF\u6A21\u5F0F"
14379
+ },
14380
+ stepline: {
14381
+ realData: type_GraphicType.Stepline,
14382
+ minData: type_GraphicType.Stepline,
14383
+ maxData: type_GraphicType.Stepline,
14384
+ avgData: type_GraphicType.Stepline,
14385
+ label: "\u9636\u68AF\u7EBF\u6A21\u5F0F"
14386
+ },
14387
+ bar: {
14388
+ realData: type_GraphicType.Bar,
14389
+ minData: type_GraphicType.Line,
14390
+ maxData: type_GraphicType.Line,
14391
+ avgData: type_GraphicType.Line,
14392
+ label: "\u67F1\u72B6\u56FE\u6A21\u5F0F"
14393
+ },
14394
+ area: {
14395
+ realData: type_GraphicType.Area,
14396
+ minData: type_GraphicType.Stepline,
14397
+ maxData: type_GraphicType.Stepline,
14398
+ avgData: type_GraphicType.Stepline,
14399
+ label: "\u9762\u79EF\u56FE\u6A21\u5F0F"
14400
+ }
14401
+ };
14402
+ const handleSeriesControl = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)(()=>{
14403
+ const modes = [
14404
+ 'bar',
14405
+ 'stepline',
14406
+ 'line',
14407
+ 'area'
14408
+ ];
14409
+ const currentIndex = modes.indexOf(currentMode);
14410
+ const nextMode = modes[(currentIndex + 1) % modes.length];
14411
+ setCurrentMode(nextMode);
14412
+ const modeConfig = seriesModes[nextMode];
14413
+ if (publish) {
14414
+ publish({
14415
+ pstype: constants_PSType.Series,
14416
+ name: 'realData',
14417
+ type: modeConfig.realData
14418
+ });
14419
+ publish({
14420
+ pstype: constants_PSType.Series,
14421
+ name: 'minData',
14422
+ type: modeConfig.minData
14423
+ });
14424
+ publish({
14425
+ pstype: constants_PSType.Series,
14426
+ name: 'maxData',
14427
+ type: modeConfig.maxData
14428
+ });
14429
+ publish({
14430
+ pstype: constants_PSType.Series,
14431
+ name: 'avgData',
14432
+ type: modeConfig.avgData
14433
+ });
14434
+ }
14435
+ }, [
14436
+ currentMode,
14437
+ publish,
14438
+ seriesModes
14439
+ ]);
14440
+ const title = (0, __WEBPACK_EXTERNAL_MODULE_react__.useMemo)(()=>seriesModes[currentMode].label, [
14441
+ currentMode,
14442
+ seriesModes
14443
+ ]);
14444
+ return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(ToolsBar_IconBox, {
14445
+ onClick: handleSeriesControl,
14446
+ title: title,
14447
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("svg", {
14448
+ viewBox: "0 0 1024 1024",
14449
+ xmlns: "http://www.w3.org/2000/svg",
14450
+ children: [
14451
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("rect", {
14452
+ width: "1024",
14453
+ height: "1024",
14454
+ fill: "transparent"
14455
+ }),
14456
+ 'bar' === currentMode && /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("g", {
14457
+ children: [
14458
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("rect", {
14459
+ x: "200",
14460
+ y: "300",
14461
+ width: "80",
14462
+ height: "400",
14463
+ fill: "var(--theme-color-primary)"
14464
+ }),
14465
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("rect", {
14466
+ x: "320",
14467
+ y: "200",
14468
+ width: "80",
14469
+ height: "500",
14470
+ fill: "var(--theme-color-primary)"
14471
+ }),
14472
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("rect", {
14473
+ x: "440",
14474
+ y: "250",
14475
+ width: "80",
14476
+ height: "450",
14477
+ fill: "var(--theme-color-primary)"
14478
+ }),
14479
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("rect", {
14480
+ x: "560",
14481
+ y: "150",
14482
+ width: "80",
14483
+ height: "550",
14484
+ fill: "var(--theme-color-primary)"
14485
+ }),
14486
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("rect", {
14487
+ x: "680",
14488
+ y: "180",
14489
+ width: "80",
14490
+ height: "520",
14491
+ fill: "var(--theme-color-primary)"
14492
+ })
14493
+ ]
14494
+ }),
14495
+ 'line' === currentMode && /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("g", {
14496
+ children: [
14497
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
14498
+ d: "M100 600L200 400L350 500L500 300L650 450L750 200L900 350",
14499
+ fill: "none",
14500
+ stroke: "var(--theme-color-primary)",
14501
+ strokeWidth: "12",
14502
+ strokeLinecap: "round",
14503
+ strokeLinejoin: "round"
14504
+ }),
14505
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("circle", {
14506
+ cx: "100",
14507
+ cy: "600",
14508
+ r: "8",
14509
+ fill: "var(--theme-color-primary)"
14510
+ }),
14511
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("circle", {
14512
+ cx: "200",
14513
+ cy: "400",
14514
+ r: "8",
14515
+ fill: "var(--theme-color-primary)"
14516
+ }),
14517
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("circle", {
14518
+ cx: "350",
14519
+ cy: "500",
14520
+ r: "8",
14521
+ fill: "var(--theme-color-primary)"
14522
+ }),
14523
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("circle", {
14524
+ cx: "500",
14525
+ cy: "300",
14526
+ r: "8",
14527
+ fill: "var(--theme-color-primary)"
14528
+ }),
14529
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("circle", {
14530
+ cx: "650",
14531
+ cy: "450",
14532
+ r: "8",
14533
+ fill: "var(--theme-color-primary)"
14534
+ }),
14535
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("circle", {
14536
+ cx: "750",
14537
+ cy: "200",
14538
+ r: "8",
14539
+ fill: "var(--theme-color-primary)"
14540
+ }),
14541
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("circle", {
14542
+ cx: "900",
14543
+ cy: "350",
14544
+ r: "8",
14545
+ fill: "var(--theme-color-primary)"
14546
+ })
14547
+ ]
14548
+ }),
14549
+ 'stepline' === currentMode && /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("g", {
14550
+ children: [
14551
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
14552
+ d: "M100 700h150v-200h150v150h150v-250h150v100h150",
14553
+ fill: "none",
14554
+ stroke: "var(--theme-color-primary)",
14555
+ strokeWidth: "10",
14556
+ strokeLinecap: "square"
14557
+ }),
14558
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("rect", {
14559
+ x: "150",
14560
+ y: "500",
14561
+ width: "50",
14562
+ height: "200",
14563
+ fill: "var(--theme-color-primary)"
14564
+ }),
14565
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("rect", {
14566
+ x: "350",
14567
+ y: "450",
14568
+ width: "50",
14569
+ height: "250",
14570
+ fill: "var(--theme-color-primary)"
14571
+ }),
14572
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("rect", {
14573
+ x: "550",
14574
+ y: "250",
14575
+ width: "50",
14576
+ height: "450",
14577
+ fill: "var(--theme-color-primary)"
14578
+ }),
14579
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("rect", {
14580
+ x: "750",
14581
+ y: "350",
14582
+ width: "50",
14583
+ height: "350",
14584
+ fill: "var(--theme-color-primary)"
14585
+ })
14586
+ ]
14587
+ }),
14588
+ 'area' === currentMode && /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("g", {
14589
+ children: [
14590
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("defs", {
14591
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("linearGradient", {
14592
+ id: "areaGradient",
14593
+ x1: "0%",
14594
+ y1: "100%",
14595
+ x2: "0%",
14596
+ y2: "0%",
14597
+ children: [
14598
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("stop", {
14599
+ offset: "0%",
14600
+ stopColor: "var(--theme-color-primary)",
14601
+ stopOpacity: "0.2"
14602
+ }),
14603
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("stop", {
14604
+ offset: "100%",
14605
+ stopColor: "var(--theme-color-primary)",
14606
+ stopOpacity: "0.6"
14607
+ })
14608
+ ]
14609
+ })
14610
+ }),
14611
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
14612
+ d: "M100 800L100 500L300 300L500 400L700 200L900 350L900 800Z",
14613
+ fill: "url(#areaGradient)"
14614
+ }),
14615
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
14616
+ d: "M100 500L300 300L500 400L700 200L900 350",
14617
+ fill: "none",
14618
+ stroke: "var(--theme-color-primary)",
14619
+ strokeWidth: "6",
14620
+ strokeLinecap: "round",
14621
+ strokeLinejoin: "round"
14622
+ })
14623
+ ]
14624
+ })
14625
+ ]
14626
+ })
14627
+ });
14628
+ };
14629
+ const ToolsBar_SeriesControl = SeriesControl;
14367
14630
  var SeriesDisplayControl_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.3.1_@rsbuild+core@1.4.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/ToolsBar/SeriesDisplayControl/styles.module.less");
14368
14631
  var SeriesDisplayControl_styles_module_options = {};
14369
14632
  SeriesDisplayControl_styles_module_options.styleTagTransform = styleTagTransform_default();
@@ -14373,7 +14636,7 @@ SeriesDisplayControl_styles_module_options.domAPI = styleDomAPI_default();
14373
14636
  SeriesDisplayControl_styles_module_options.insertStyleElement = insertStyleElement_default();
14374
14637
  injectStylesIntoStyleTag_default()(SeriesDisplayControl_styles_module.Z, SeriesDisplayControl_styles_module_options);
14375
14638
  const ToolsBar_SeriesDisplayControl_styles_module = SeriesDisplayControl_styles_module.Z && SeriesDisplayControl_styles_module.Z.locals ? SeriesDisplayControl_styles_module.Z.locals : void 0;
14376
- const SeriesDisplayControl_SeriesDisplayControl = ()=>{
14639
+ const SeriesDisplayControl = ()=>{
14377
14640
  const { state: { globalID, series }, dispatch } = useStore_useStore();
14378
14641
  const { data, legendExternal, forceDisplay } = series;
14379
14642
  const seriesArray = (0, __WEBPACK_EXTERNAL_MODULE_react__.useMemo)(()=>Array.from(data.keys()).filter((name)=>!legendExternal.includes(name)).filter((name)=>name !== constants_SeriesType.TemplateData), [
@@ -14487,7 +14750,7 @@ const SeriesDisplayControl_SeriesDisplayControl = ()=>{
14487
14750
  ]
14488
14751
  });
14489
14752
  };
14490
- const SeriesDisplayControl = SeriesDisplayControl_SeriesDisplayControl;
14753
+ const ToolsBar_SeriesDisplayControl = SeriesDisplayControl;
14491
14754
  const SpacerLine = ()=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
14492
14755
  className: components_ToolsBar_styles_module.spacerLine
14493
14756
  });
@@ -14516,6 +14779,7 @@ const ToolsBar = ({ type })=>{
14516
14779
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Reset, {}),
14517
14780
  (type === constants_ChartType.SingleFrequency || type === constants_ChartType.Scan || type === constants_ChartType.MScan) && /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)(__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.Fragment, {
14518
14781
  children: [
14782
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(ToolsBar_SeriesControl, {}),
14519
14783
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(FrequencyAllocation_Switch, {}),
14520
14784
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Zoom_Switch, {}),
14521
14785
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Limit_Switch, {}),
@@ -14531,7 +14795,7 @@ const ToolsBar = ({ type })=>{
14531
14795
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(TimeRange_Switch, {})
14532
14796
  ]
14533
14797
  }),
14534
- (type === constants_ChartType.SingleFrequency || type === constants_ChartType.Scan || type === constants_ChartType.MScan) && /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(SeriesDisplayControl, {})
14798
+ (type === constants_ChartType.SingleFrequency || type === constants_ChartType.Scan || type === constants_ChartType.MScan) && /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(ToolsBar_SeriesDisplayControl, {})
14535
14799
  ]
14536
14800
  })
14537
14801
  });
@@ -14595,7 +14859,7 @@ const SERIES_DEFAULT_CONFIG = {
14595
14859
  color: '#11111150',
14596
14860
  thickness: 1,
14597
14861
  display: true,
14598
- type: type_GraphicType.Stepline
14862
+ type: type_GraphicType.Line
14599
14863
  };
14600
14864
  function useSeries() {
14601
14865
  const { state: { globalID, series: seriesStore }, dispatch } = useStore_useStore();
@@ -14847,7 +15111,7 @@ function useSpectrumAnalyzer(props) {
14847
15111
  ]);
14848
15112
  const getEnableOption = (globalValue, propValue)=>false === globalValue ? false : propValue ?? true;
14849
15113
  if (!analyzer.current && globalID) {
14850
- const outputPoints = 1 | Math.floor(width / 2);
15114
+ const outputPoints = 1 | Math.floor(2 * width);
14851
15115
  analyzer.current = new __WEBPACK_EXTERNAL_MODULE__rfkit_spectrum_analyzer_159ab12b__.SpectrumAnalyzer({
14852
15116
  ...props,
14853
15117
  outputPoints,
package/package.json CHANGED
@@ -5,6 +5,6 @@
5
5
  "types": "index.d.ts",
6
6
  "author": "Hxgh",
7
7
  "license": "MIT",
8
- "version": "1.1.6",
8
+ "version": "1.1.8",
9
9
  "private": false
10
10
  }