umwd-components 0.1.11 → 0.1.12
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/cjs/_virtual/_rollupPluginBabelHelpers.js +1 -1
- package/dist/cjs/node_modules/style-inject/dist/style-inject.es.js +1 -1
- package/dist/cjs/src/components/Button.js +1 -1
- package/dist/cjs/src/components/Checkmark/Checkmark.js +1 -1
- package/dist/cjs/src/components/NavBar/NavBar.js +1 -1
- package/dist/cjs/src/components/NoteTextField/NoteTextField.js +1 -1
- package/dist/cjs/src/components/Requirement/Requirement.js +1 -1
- package/dist/cjs/src/components/Requirements/Requirements.js +1 -1
- package/dist/cjs/src/components/Stack.js +1 -1
- package/dist/cjs/src/components/Xmark/Xmark.js +1 -1
- package/dist/cjs/src/index.js +1 -1
- package/dist/cjs/src/styles.css.js +1 -1
- package/dist/esm/_virtual/_rollupPluginBabelHelpers.js +1 -1
- package/dist/esm/node_modules/style-inject/dist/style-inject.es.js +1 -1
- package/dist/esm/src/components/Button.js +1 -1
- package/dist/esm/src/components/Checkmark/Checkmark.js +1 -1
- package/dist/esm/src/components/NavBar/NavBar.js +1 -1
- package/dist/esm/src/components/NoteTextField/NoteTextField.js +1 -1
- package/dist/esm/src/components/Requirement/Requirement.js +1 -1
- package/dist/esm/src/components/Requirements/Requirements.js +1 -1
- package/dist/esm/src/components/Stack.js +1 -1
- package/dist/esm/src/components/Xmark/Xmark.js +1 -1
- package/dist/esm/src/index.js +1 -1
- package/dist/esm/src/styles.css.js +1 -1
- package/package.json +4 -3
- package/rollup.config.mjs +5 -7
package/dist/cjs/src/index.js
CHANGED
package/dist/esm/src/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @copyright Jelle Paulus
|
|
4
4
|
* @license MIT
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
|
|
7
7
|
export { Requirements } from './components/Requirements/Requirements.js';
|
|
8
8
|
export { NoteTextField } from './components/NoteTextField/NoteTextField.js';
|
|
9
9
|
export { default as Button } from './components/Button.js';
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @copyright Jelle Paulus
|
|
4
4
|
* @license MIT
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
|
|
7
7
|
import styleInject from '../node_modules/style-inject/dist/style-inject.es.js';
|
|
8
8
|
|
|
9
9
|
var css_248z = ".requirement{align-items:center;display:flex;height:35px}.requirement p{font-family:sans-serif;font-size:14px;font-weight:700;margin-left:10px}.invalid{color:red}.valid{color:#7ac142}.checkmark{stroke-width:5;stroke:#fff;stroke-miterlimit:10;animation:fill .4s ease-in-out .4s forwards,scale .3s ease-in-out .9s both;border-radius:50%;box-shadow:inset 0 0 0 #7ac142;display:block;height:15px;width:15px}.checkmark__circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;stroke:#7ac142;fill:none;animation:stroke .6s cubic-bezier(.65,0,.45,1) forwards}.checkmark__check{stroke-dasharray:48;stroke-dashoffset:48;animation:stroke .2s cubic-bezier(.65,0,.45,1) .5s forwards;transform-origin:50% 50%}@keyframes stroke{to{stroke-dashoffset:0}}@keyframes scale{0%,to{transform:none}50%{transform:scale3d(1.1,1.1,1)}}@keyframes fill{to{box-shadow:inset 0 0 0 30px #7ac142}}";
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "umwd-components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "UMWD Component library",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"module": "dist/index.
|
|
5
|
+
"main": "dist/cjs/src/index.js",
|
|
6
|
+
"module": "dist/esm/src/index.js",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"storybook": "storybook dev -p 6006",
|
|
9
9
|
"build-storybook": "storybook build",
|
|
@@ -75,6 +75,7 @@
|
|
|
75
75
|
"react-dom": "^18.2.0"
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
|
+
"react": "^18.2.0",
|
|
78
79
|
"react-dnd": "^16.0.1",
|
|
79
80
|
"react-dnd-html5-backend": "^16.0.1"
|
|
80
81
|
}
|
package/rollup.config.mjs
CHANGED
|
@@ -14,11 +14,10 @@ const outputOptions = {
|
|
|
14
14
|
* @copyright Jelle Paulus
|
|
15
15
|
* @license MIT
|
|
16
16
|
*/
|
|
17
|
-
`,
|
|
17
|
+
`,
|
|
18
18
|
};
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
const config = [
|
|
20
|
+
export default [
|
|
22
21
|
{
|
|
23
22
|
input: "./src/index.js",
|
|
24
23
|
output: [
|
|
@@ -30,7 +29,8 @@ const config = [
|
|
|
30
29
|
},
|
|
31
30
|
{
|
|
32
31
|
dir: "dist/esm",
|
|
33
|
-
format: "
|
|
32
|
+
format: "es",
|
|
33
|
+
exports: "named",
|
|
34
34
|
...outputOptions,
|
|
35
35
|
preserveModules: true,
|
|
36
36
|
},
|
|
@@ -53,6 +53,4 @@ const config = [
|
|
|
53
53
|
}), */
|
|
54
54
|
],
|
|
55
55
|
},
|
|
56
|
-
];
|
|
57
|
-
|
|
58
|
-
export default config;
|
|
56
|
+
];
|