myshell-react-lib 0.3.0 → 0.3.2
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 +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/styles/components-dark-v2.scss +44 -33
- package/dist/styles/components-light-v2.scss +51 -40
- package/dist/styles/design2-dark-v2.scss +15 -122
- package/dist/styles/design2-light-v2.scss +14 -121
- package/dist/styles/global.scss +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -26478,16 +26478,16 @@ function CustomNotification(param) {
|
|
|
26478
26478
|
className: "flex flex-shrink-0 items-center justify-center",
|
|
26479
26479
|
children: [
|
|
26480
26480
|
type === "info" && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(CircleInfoIcon, {
|
|
26481
|
-
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Info
|
|
26481
|
+
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Info items-center justify-center sm:h-4.5 sm:w-4.5"
|
|
26482
26482
|
}),
|
|
26483
26483
|
type === "success" && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(CircleSuccessIcon, {
|
|
26484
|
-
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Success
|
|
26484
|
+
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Success items-center justify-center sm:h-4.5 sm:w-4.5"
|
|
26485
26485
|
}),
|
|
26486
26486
|
type === "warning" && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(CircleWarningIcon, {
|
|
26487
|
-
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Warning
|
|
26487
|
+
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Warning items-center justify-center sm:h-4.5 sm:w-4.5"
|
|
26488
26488
|
}),
|
|
26489
26489
|
type === "error" && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(CircleErrorIcon, {
|
|
26490
|
-
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Error
|
|
26490
|
+
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Error items-center justify-center sm:h-4.5 sm:w-4.5"
|
|
26491
26491
|
})
|
|
26492
26492
|
]
|
|
26493
26493
|
}),
|