@mw-kit/mw-ui 1.0.12 → 1.0.14

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.
@@ -1,3 +1,3 @@
1
1
  import Calendar from 'react-calendar';
2
2
  export * from 'react-calendar';
3
- export default Calendar;
3
+ export { Calendar };
@@ -0,0 +1,17 @@
1
+ function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
2
+
3
+ var reactCalendar = require('react-calendar');
4
+ var reactCalendar__default = _interopDefault(reactCalendar);
5
+
6
+
7
+
8
+ Object.keys(reactCalendar).forEach(function (k) {
9
+ if (k !== 'default') Object.defineProperty(exports, k, {
10
+ enumerable: true,
11
+ get: function () {
12
+ return reactCalendar[k];
13
+ }
14
+ });
15
+ });
16
+ exports.Calendar = reactCalendar;
17
+ //# sourceMappingURL=react-calendar.ts.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react-calendar.ts.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ export * from 'react-calendar';
2
+ export { default as Calendar } from 'react-calendar';
3
+ //# sourceMappingURL=react-calendar.ts.modern.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react-calendar.ts.modern.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
@@ -0,0 +1,13 @@
1
+ var semanticUiReact = require('semantic-ui-react');
2
+
3
+
4
+
5
+ Object.keys(semanticUiReact).forEach(function (k) {
6
+ if (k !== 'default') Object.defineProperty(exports, k, {
7
+ enumerable: true,
8
+ get: function () {
9
+ return semanticUiReact[k];
10
+ }
11
+ });
12
+ });
13
+ //# sourceMappingURL=semantic.ts.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"semantic.ts.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;"}
@@ -0,0 +1,2 @@
1
+ export * from 'semantic-ui-react';
2
+ //# sourceMappingURL=semantic.ts.modern.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"semantic.ts.modern.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mw-kit/mw-ui",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "description": "Made with create-react-library",
5
5
  "author": "fmgusmao",
6
6
  "license": "MIT",
@@ -14,9 +14,9 @@
14
14
  ],
15
15
  "exports": {
16
16
  ".": "./dist/index.js",
17
- "./types": "./dist/interfaces.d.ts",
18
- "./semantic": "./dist/semantic.d.ts",
19
- "./react-calendar": "./dist/react-calendar.d.ts"
17
+ "./types": "./dist/interfaces.ts.js",
18
+ "./semantic": "./dist/semantic.ts.js",
19
+ "./react-calendar": "./dist/react-calendar.ts.js"
20
20
  },
21
21
  "typesVersions": {
22
22
  "*": {
@@ -48,8 +48,8 @@
48
48
  "react-dom": "^18.1.0"
49
49
  },
50
50
  "scripts": {
51
- "start": "microbundle-crl watch --no-compress --format modern,cjs",
52
- "build": "microbundle-crl --no-compress --format modern,cjs",
51
+ "start": "microbundle-crl watch src/{index,semantic,react-calendar}.ts --no-compress --format modern,cjs",
52
+ "build": "microbundle-crl src/{index,semantic,react-calendar}.ts --no-compress --format modern,cjs",
53
53
  "lint": "eslint {src,stories}/**/*.{js,ts,jsx,tsx}",
54
54
  "lint:fix": "eslint {src,stories}/**/*.{js,ts,jsx,tsx} --fix",
55
55
  "prettier:write": "prettier --write .",