@firecms/ui 3.0.0-canary.93 → 3.0.0-canary.94
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/components/Chip.d.ts +2 -1
- package/dist/index.es.js +4 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +4 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
- package/src/components/Chip.tsx +4 -1
package/dist/index.umd.js
CHANGED
@@ -14830,7 +14830,8 @@
|
|
14830
14830
|
onClick,
|
14831
14831
|
icon,
|
14832
14832
|
size = "medium",
|
14833
|
-
className
|
14833
|
+
className,
|
14834
|
+
style
|
14834
14835
|
}) {
|
14835
14836
|
const usedColorScheme = typeof colorScheme === "string" ? getColorSchemeForKey(colorScheme) : colorScheme;
|
14836
14837
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
@@ -14849,7 +14850,8 @@
|
|
14849
14850
|
style: {
|
14850
14851
|
backgroundColor: error || !usedColorScheme ? void 0 : usedColorScheme.color,
|
14851
14852
|
color: error || !usedColorScheme ? void 0 : usedColorScheme.text,
|
14852
|
-
overflow: "hidden"
|
14853
|
+
overflow: "hidden",
|
14854
|
+
...style
|
14853
14855
|
// display: "-webkit-box",
|
14854
14856
|
// WebkitLineClamp: 1,
|
14855
14857
|
// WebkitBoxOrient: "vertical",
|