math-main-components 0.0.121 → 0.0.123

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 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: 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}";
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-weight: 400;\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.d.ts CHANGED
@@ -66,4 +66,5 @@ export * from './types/marketing/About';
66
66
  export * from './types/marketing/Concept';
67
67
  export * from './types/marketing/Content';
68
68
  export * from './types/marketing/Faq';
69
+ export * from './types/marketing/Home';
69
70
  export * from './types/marketing/Page';
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: 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}";
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-weight: 400;\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
 
@@ -11,9 +11,10 @@ export interface Person {
11
11
  linkedIn: string;
12
12
  github: string;
13
13
  website: string;
14
- image: {
14
+ image?: {
15
15
  asset: {
16
- url: string;
16
+ _ref: string;
17
+ _type: string;
17
18
  };
18
19
  };
19
20
  }
@@ -0,0 +1,13 @@
1
+ import { PortableTextBlock } from "sanity";
2
+ export interface Home {
3
+ _id: string;
4
+ _type: string;
5
+ helpMockup: {
6
+ asset: {
7
+ _type: string;
8
+ _ref: string;
9
+ };
10
+ };
11
+ helpTitle: string;
12
+ helpDescription: PortableTextBlock[];
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "math-main-components",
3
- "version": "0.0.121",
3
+ "version": "0.0.123",
4
4
  "author": "Emilian Scheel",
5
5
  "files": [
6
6
  "dist/**/*"