@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.
- package/dist/{index.js → index.ts.js} +1 -1
- package/dist/index.ts.js.map +1 -0
- package/dist/{index.modern.js → index.ts.modern.js} +1 -1
- package/dist/index.ts.modern.js.map +1 -0
- package/dist/react-calendar.d.ts +1 -1
- package/dist/react-calendar.ts.js +17 -0
- package/dist/react-calendar.ts.js.map +1 -0
- package/dist/react-calendar.ts.modern.js +3 -0
- package/dist/react-calendar.ts.modern.js.map +1 -0
- package/dist/semantic.ts.js +13 -0
- package/dist/semantic.ts.js.map +1 -0
- package/dist/semantic.ts.modern.js +2 -0
- package/dist/semantic.ts.modern.js.map +1 -0
- package/package.json +6 -6
- package/dist/index.js.map +0 -1
- package/dist/index.modern.js.map +0 -1
package/dist/react-calendar.d.ts
CHANGED
|
@@ -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 @@
|
|
|
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 @@
|
|
|
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.
|
|
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.
|
|
18
|
-
"./semantic": "./dist/semantic.
|
|
19
|
-
"./react-calendar": "./dist/react-calendar.
|
|
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 .",
|