math-main-components 0.0.89 → 0.0.91
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.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/package.json +8 -3
package/dist/index.cjs.js
CHANGED
@@ -150,7 +150,7 @@ function Dialog({ data, text, onClose, onSubmit, children }) {
|
|
150
150
|
React__default["default"].createElement("button", { className: styles$o.submit_button, id: "submit-button", onClick: (event) => onSubmit && onSubmit(event, data?.data) }, "Best\u00E4tigen"))));
|
151
151
|
}
|
152
152
|
|
153
|
-
var css_248z$n = ".styles-module_container__HOoBj {\n margin-bottom: 30px;\n}\n.styles-module_container__HOoBj button {\n padding: 12px 18px;\n border-radius: 40px;\n border: none;\n color:
|
153
|
+
var css_248z$n = ".styles-module_container__HOoBj {\n margin-bottom: 30px;\n}\n.styles-module_container__HOoBj button {\n padding: 12px 18px;\n border-radius: 40px;\n border: none;\n color: white;\n font-size: 16px;\n background: var(--primary-1);\n cursor: pointer;\n display: flex;\n flex-direction: row;\n gap: 10px;\n align-items: center;\n}";
|
154
154
|
var styles$n = {"container":"styles-module_container__HOoBj"};
|
155
155
|
styleInject(css_248z$n);
|
156
156
|
|
package/dist/index.esm.js
CHANGED
@@ -142,7 +142,7 @@ function Dialog({ data, text, onClose, onSubmit, children }) {
|
|
142
142
|
React.createElement("button", { className: styles$o.submit_button, id: "submit-button", onClick: (event) => onSubmit && onSubmit(event, data?.data) }, "Best\u00E4tigen"))));
|
143
143
|
}
|
144
144
|
|
145
|
-
var css_248z$n = ".styles-module_container__HOoBj {\n margin-bottom: 30px;\n}\n.styles-module_container__HOoBj button {\n padding: 12px 18px;\n border-radius: 40px;\n border: none;\n color:
|
145
|
+
var css_248z$n = ".styles-module_container__HOoBj {\n margin-bottom: 30px;\n}\n.styles-module_container__HOoBj button {\n padding: 12px 18px;\n border-radius: 40px;\n border: none;\n color: white;\n font-size: 16px;\n background: var(--primary-1);\n cursor: pointer;\n display: flex;\n flex-direction: row;\n gap: 10px;\n align-items: center;\n}";
|
146
146
|
var styles$n = {"container":"styles-module_container__HOoBj"};
|
147
147
|
styleInject(css_248z$n);
|
148
148
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "math-main-components",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.91",
|
4
4
|
"author": "Emilian Scheel",
|
5
5
|
"files": [
|
6
6
|
"dist/**/*"
|
@@ -10,7 +10,9 @@
|
|
10
10
|
"types": "dist/index.d.ts",
|
11
11
|
"pre-commit": [
|
12
12
|
"build",
|
13
|
-
"
|
13
|
+
"increment-version",
|
14
|
+
"git-add-all",
|
15
|
+
"publish"
|
14
16
|
],
|
15
17
|
"license": "MIT",
|
16
18
|
"devDependencies": {
|
@@ -41,6 +43,9 @@
|
|
41
43
|
},
|
42
44
|
"scripts": {
|
43
45
|
"clean": "rm -rf dist",
|
46
|
+
"increment-version": "npm --no-git-tag-version version patch",
|
47
|
+
"git-add-all": "git add .",
|
48
|
+
"publish": "npm publish --access public",
|
44
49
|
"build": "npm run build:js && npm run build:types",
|
45
50
|
"build:js": "rollup -c",
|
46
51
|
"build:types": "tsc --emitDeclarationOnly --outDir dist"
|
@@ -51,4 +56,4 @@
|
|
51
56
|
"sanity": "^3.20.1",
|
52
57
|
"stripe": "^14.5.0"
|
53
58
|
}
|
54
|
-
}
|
59
|
+
}
|