pixuireactcomponents 1.3.32 → 1.3.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export { Carousel } from "./src/components/react/app/carousel/Carousel";
2
2
  export { Button } from "./src/components/react/app/button/Button";
3
+ export { CheckBox } from "./src/components/react/app/checkBox/CheckBox";
3
4
  export { Dropdown } from "./src/components/react/app/dropdown/Dropdown";
4
5
  export { ImageViewer } from "./src/components/react/app/imageViewer/imageViewer";
5
6
  export { ToggleGroup } from "./src/components/react/app/togglegroup/ToggleGroup";
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  // Description: This file is the entry point for the library. It exports all the components.
2
2
  export { Carousel } from './src/components/react/app/carousel/Carousel';
3
3
  export { Button } from './src/components/react/app/button/Button';
4
- export { Checkbox } from './src/components/react/app/checkBox/CheckBox';
4
+ export { CheckBox } from './src/components/react/app/checkBox/CheckBox';
5
5
  export { Dropdown } from './src/components/react/app/dropdown/Dropdown';
6
6
  export { ImageViewer } from './src/components/react/app/imageViewer/imageViewer';
7
7
  export { Slider } from './src/components/react/app/slider/Slider';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pixuireactcomponents",
3
- "version": "1.3.32",
3
+ "version": "1.3.33",
4
4
  "description": "pixui react components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1 @@
1
- #!/usr/bin/env node
2
1
  export function makeImages(_inputPath: any, _outputPath: any): void;
@@ -1,4 +1,3 @@
1
- #!/usr/bin/env node
2
1
  'use strict';
3
2
  // 自动生成图集, 生成一个Images.ts文件,引用目标目录下的所有图片, 方便直接使用
4
3
  /*
@@ -10,7 +9,7 @@ var fs = require('fs');
10
9
  var path = require('path');
11
10
  var inputPath = '';
12
11
  var outputPath = '';
13
- module.exports.makeImages = function (_inputPath, _outputPath) {
12
+ export var makeImages = function (_inputPath, _outputPath) {
14
13
  var imgUrls = [];
15
14
  inputPath = _inputPath;
16
15
  outputPath = _outputPath;