@bug-on/m3-expressive 1.3.2 → 1.3.3
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/CHANGELOG.md +6 -0
- package/README.md +25 -0
- package/dist/core.js +9 -7
- package/dist/core.js.map +1 -1
- package/dist/core.mjs +9 -7
- package/dist/core.mjs.map +1 -1
- package/dist/feedback.d.mts +2 -1
- package/dist/feedback.d.ts +2 -1
- package/dist/feedback.js +10 -7
- package/dist/feedback.js.map +1 -1
- package/dist/feedback.mjs +10 -8
- package/dist/feedback.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +189 -72
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +189 -73
- package/dist/index.mjs.map +1 -1
- package/dist/layout.d.mts +16 -5
- package/dist/layout.d.ts +16 -5
- package/dist/layout.js +38 -18
- package/dist/layout.js.map +1 -1
- package/dist/layout.mjs +38 -18
- package/dist/layout.mjs.map +1 -1
- package/dist/navigation.d.mts +24 -8
- package/dist/navigation.d.ts +24 -8
- package/dist/navigation.js +416 -293
- package/dist/navigation.js.map +1 -1
- package/dist/navigation.mjs +408 -286
- package/dist/navigation.mjs.map +1 -1
- package/llms-full.txt +255 -0
- package/llms.txt +102 -0
- package/package.json +10 -5
package/dist/core.mjs
CHANGED
|
@@ -2129,11 +2129,13 @@ var Snackbar = React4.memo(function Snackbar2({
|
|
|
2129
2129
|
type: "button",
|
|
2130
2130
|
onClick: handleAction,
|
|
2131
2131
|
className: cn(
|
|
2132
|
-
"
|
|
2133
|
-
"px-
|
|
2134
|
-
"
|
|
2135
|
-
"
|
|
2136
|
-
"
|
|
2132
|
+
"inline-flex items-center justify-center",
|
|
2133
|
+
"h-10 px-3 py-2.5 rounded-sm",
|
|
2134
|
+
"text-sm font-medium leading-5 whitespace-nowrap",
|
|
2135
|
+
"text-m3-inverse-primary",
|
|
2136
|
+
"hover:bg-m3-inverse-primary/8 focus-visible:bg-m3-inverse-primary/12 active:bg-m3-inverse-primary/12",
|
|
2137
|
+
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-m3-inverse-primary",
|
|
2138
|
+
"transition-colors select-none cursor-pointer"
|
|
2137
2139
|
),
|
|
2138
2140
|
children: actionLabel
|
|
2139
2141
|
}
|
|
@@ -2142,10 +2144,10 @@ var Snackbar = React4.memo(function Snackbar2({
|
|
|
2142
2144
|
IconButton,
|
|
2143
2145
|
{
|
|
2144
2146
|
size: "sm",
|
|
2145
|
-
colorStyle: "
|
|
2147
|
+
colorStyle: "standard",
|
|
2146
2148
|
"aria-label": "Dismiss notification",
|
|
2147
2149
|
onClick: handleDismiss,
|
|
2148
|
-
className: "text-m3-inverse-on-surface bg-m3-inverse-surface",
|
|
2150
|
+
className: "text-m3-inverse-on-surface hover:bg-m3-inverse-on-surface/8 active:bg-m3-inverse-on-surface/12 focus-visible:ring-m3-inverse-primary",
|
|
2149
2151
|
children: /* @__PURE__ */ jsx(Icon, { name: "close", "aria-hidden": "true" })
|
|
2150
2152
|
}
|
|
2151
2153
|
)
|