math-main-components 0.0.167 → 0.0.169
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/dist/types/Manager.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
@@ -9432,7 +9432,7 @@ function Button({ id, text, iconName, iconFill = "white", type = "blue", onClick
|
|
9432
9432
|
return (React__default["default"].createElement("div", { className: styles$t.container },
|
9433
9433
|
React__default["default"].createElement("button", { className: [styles$t.button, styles$t[type], (text && !iconName) ? styles$t.onlyText : "", (!text && iconName) ? styles$t.onlyIcon : ""].join(" "), onClick: onClickButton, id: id },
|
9434
9434
|
text,
|
9435
|
-
iconName && React__default["default"].createElement(SvgIcon, { iconName: iconName
|
9435
|
+
iconName && React__default["default"].createElement(SvgIcon, { iconName: iconName }))));
|
9436
9436
|
}
|
9437
9437
|
|
9438
9438
|
var css_248z$s = ".styles-module_card__bOd85 {\n background: var(--background-2);\n border: 1px solid var(--border-2);\n border-radius: 18px;\n transition: 0.2s ease;\n padding: 18px 14px;\n box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);\n cursor: pointer;\n text-align: center;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n gap: 10px;\n padding-top: 30px;\n}\n.styles-module_card__bOd85 span {\n color: var(--foreground-3);\n}\n.styles-module_card__bOd85:hover {\n transform: scale(1.01);\n box-shadow: none;\n background: none;\n}\n.styles-module_card__bOd85 h2 {\n margin-top: 0;\n color: var(--foreground-3);\n font-weight: 400;\n font-size: 18px;\n}";
|
package/dist/index.esm.js
CHANGED
@@ -9406,7 +9406,7 @@ function Button({ id, text, iconName, iconFill = "white", type = "blue", onClick
|
|
9406
9406
|
return (React__default.createElement("div", { className: styles$t.container },
|
9407
9407
|
React__default.createElement("button", { className: [styles$t.button, styles$t[type], (text && !iconName) ? styles$t.onlyText : "", (!text && iconName) ? styles$t.onlyIcon : ""].join(" "), onClick: onClickButton, id: id },
|
9408
9408
|
text,
|
9409
|
-
iconName && React__default.createElement(SvgIcon, { iconName: iconName
|
9409
|
+
iconName && React__default.createElement(SvgIcon, { iconName: iconName }))));
|
9410
9410
|
}
|
9411
9411
|
|
9412
9412
|
var css_248z$s = ".styles-module_card__bOd85 {\n background: var(--background-2);\n border: 1px solid var(--border-2);\n border-radius: 18px;\n transition: 0.2s ease;\n padding: 18px 14px;\n box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);\n cursor: pointer;\n text-align: center;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n gap: 10px;\n padding-top: 30px;\n}\n.styles-module_card__bOd85 span {\n color: var(--foreground-3);\n}\n.styles-module_card__bOd85:hover {\n transform: scale(1.01);\n box-shadow: none;\n background: none;\n}\n.styles-module_card__bOd85 h2 {\n margin-top: 0;\n color: var(--foreground-3);\n font-weight: 400;\n font-size: 18px;\n}";
|
package/dist/types/Manager.d.ts
CHANGED
@@ -8,4 +8,4 @@ export type Manager = {
|
|
8
8
|
createdAt: Date;
|
9
9
|
updateAt: Date;
|
10
10
|
};
|
11
|
-
export type ManagerPermission = "content" | "subscription" | "manager" | "license" | "file" | "feedback";
|
11
|
+
export type ManagerPermission = "content" | "subscription" | "manager" | "license" | "file" | "feedback" | "pricing";
|