@umami/react-zen 0.234.0 → 0.236.0
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.d.mts +141 -76
- package/dist/index.d.ts +141 -76
- package/dist/index.js +56 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/styles.css +3 -3
- package/styles.full.css +1 -1
package/dist/index.js
CHANGED
|
@@ -215,7 +215,7 @@ tailwindVariants.tv({
|
|
|
215
215
|
});
|
|
216
216
|
var tooltip = tailwindVariants.tv({
|
|
217
217
|
base: [
|
|
218
|
-
"bg-surface-inverted text-
|
|
218
|
+
"bg-surface-inverted text-surface-base text-base px-2 py-1 rounded",
|
|
219
219
|
"entering:animate-popover-in",
|
|
220
220
|
"exiting:animate-popover-out"
|
|
221
221
|
]
|
|
@@ -1110,7 +1110,7 @@ var shadowMap = {
|
|
|
1110
1110
|
var semanticColorMap = {
|
|
1111
1111
|
primary: { text: "text-foreground-primary", bg: "bg-primary" },
|
|
1112
1112
|
muted: { text: "text-foreground-muted", bg: "bg-surface-raised" },
|
|
1113
|
-
inverted: { text: "text-
|
|
1113
|
+
inverted: { text: "text-surface-base", bg: "bg-surface-inverted" },
|
|
1114
1114
|
disabled: { text: "text-foreground-disabled", bg: "bg-surface-disabled" },
|
|
1115
1115
|
transparent: { text: "text-transparent", bg: "bg-transparent" },
|
|
1116
1116
|
true: { text: "text-foreground-primary", bg: "bg-interactive" },
|
|
@@ -5303,6 +5303,60 @@ exports.ToggleGroupItem = ToggleGroupItem;
|
|
|
5303
5303
|
exports.Tooltip = Tooltip;
|
|
5304
5304
|
exports.TooltipBubble = TooltipBubble;
|
|
5305
5305
|
exports.ZenProvider = ZenProvider;
|
|
5306
|
+
exports.cn = cn;
|
|
5307
|
+
exports.getCssColorValue = getCssColorValue;
|
|
5308
|
+
exports.isHeightPreset = isHeightPreset;
|
|
5309
|
+
exports.isMaxHeightPreset = isMaxHeightPreset;
|
|
5310
|
+
exports.isMaxWidthPreset = isMaxWidthPreset;
|
|
5311
|
+
exports.isMinHeightPreset = isMinHeightPreset;
|
|
5312
|
+
exports.isMinWidthPreset = isMinWidthPreset;
|
|
5313
|
+
exports.isWidthPreset = isWidthPreset;
|
|
5314
|
+
exports.mapAlignContent = mapAlignContent;
|
|
5315
|
+
exports.mapAlignItems = mapAlignItems;
|
|
5316
|
+
exports.mapAlignSelf = mapAlignSelf;
|
|
5317
|
+
exports.mapBackgroundColor = mapBackgroundColor;
|
|
5318
|
+
exports.mapBorder = mapBorder;
|
|
5319
|
+
exports.mapBorderColor = mapBorderColor;
|
|
5320
|
+
exports.mapBorderRadius = mapBorderRadius;
|
|
5321
|
+
exports.mapBorderWidth = mapBorderWidth;
|
|
5322
|
+
exports.mapCursor = mapCursor;
|
|
5323
|
+
exports.mapDisplay = mapDisplay;
|
|
5324
|
+
exports.mapFlexDirection = mapFlexDirection;
|
|
5325
|
+
exports.mapFlexWrap = mapFlexWrap;
|
|
5326
|
+
exports.mapFontSize = mapFontSize;
|
|
5327
|
+
exports.mapFontWeight = mapFontWeight;
|
|
5328
|
+
exports.mapGap = mapGap;
|
|
5329
|
+
exports.mapGridAutoFlow = mapGridAutoFlow;
|
|
5330
|
+
exports.mapGridColumns = mapGridColumns;
|
|
5331
|
+
exports.mapGridRows = mapGridRows;
|
|
5332
|
+
exports.mapHeadingSize = mapHeadingSize;
|
|
5333
|
+
exports.mapHeight = mapHeight;
|
|
5334
|
+
exports.mapJustifyContent = mapJustifyContent;
|
|
5335
|
+
exports.mapJustifyItems = mapJustifyItems;
|
|
5336
|
+
exports.mapLetterSpacing = mapLetterSpacing;
|
|
5337
|
+
exports.mapLineHeight = mapLineHeight;
|
|
5338
|
+
exports.mapMargin = mapMargin;
|
|
5339
|
+
exports.mapMaxHeight = mapMaxHeight;
|
|
5340
|
+
exports.mapMaxWidth = mapMaxWidth;
|
|
5341
|
+
exports.mapMinHeight = mapMinHeight;
|
|
5342
|
+
exports.mapMinWidth = mapMinWidth;
|
|
5343
|
+
exports.mapOpacity = mapOpacity;
|
|
5344
|
+
exports.mapOverflow = mapOverflow;
|
|
5345
|
+
exports.mapPadding = mapPadding;
|
|
5346
|
+
exports.mapPointerEvents = mapPointerEvents;
|
|
5347
|
+
exports.mapPosition = mapPosition;
|
|
5348
|
+
exports.mapShadow = mapShadow;
|
|
5349
|
+
exports.mapStateStyles = mapStateStyles;
|
|
5350
|
+
exports.mapTextAlign = mapTextAlign;
|
|
5351
|
+
exports.mapTextColor = mapTextColor;
|
|
5352
|
+
exports.mapTextDecorationStyle = mapTextDecorationStyle;
|
|
5353
|
+
exports.mapTextIndent = mapTextIndent;
|
|
5354
|
+
exports.mapTextTransform = mapTextTransform;
|
|
5355
|
+
exports.mapTextWrap = mapTextWrap;
|
|
5356
|
+
exports.mapVerticalAlign = mapVerticalAlign;
|
|
5357
|
+
exports.mapWhitespace = mapWhitespace;
|
|
5358
|
+
exports.mapWidth = mapWidth;
|
|
5359
|
+
exports.mapWordBreak = mapWordBreak;
|
|
5306
5360
|
exports.removeToast = removeToast;
|
|
5307
5361
|
exports.resolveRender = resolveRender;
|
|
5308
5362
|
exports.useBreakpoint = useBreakpoint;
|