@bubo-squared/ui-framework 0.2.24 → 0.2.25
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 +43 -43
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +43 -43
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -135,7 +135,7 @@ declare const badgeVariants: (props?: ({
|
|
|
135
135
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
136
136
|
type BadgeVariant = "primary" | "secondary" | "informal" | "success" | "warning" | "error" | "disabled" | "active";
|
|
137
137
|
type BadgeSize = "sm" | "md" | "lg" | "xl";
|
|
138
|
-
interface BadgeProps extends VariantProps<typeof badgeVariants> {
|
|
138
|
+
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
139
139
|
asChild?: boolean;
|
|
140
140
|
label: React$1.ReactNode;
|
|
141
141
|
value?: React$1.ReactNode;
|
|
@@ -162,7 +162,7 @@ declare const BadgeDigit: React$1.ForwardRefExoticComponent<BadgeDigitProps & Re
|
|
|
162
162
|
declare const badgeDotVariants: (props?: ({
|
|
163
163
|
status?: "error" | "disabled" | "informal" | "warning" | "success/online" | null | undefined;
|
|
164
164
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
165
|
-
interface BadgeDotProps extends VariantProps<typeof badgeDotVariants> {
|
|
165
|
+
interface BadgeDotProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeDotVariants> {
|
|
166
166
|
className?: string;
|
|
167
167
|
}
|
|
168
168
|
declare const BadgeDot: React$1.FC<BadgeDotProps>;
|
package/dist/index.d.ts
CHANGED
|
@@ -135,7 +135,7 @@ declare const badgeVariants: (props?: ({
|
|
|
135
135
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
136
136
|
type BadgeVariant = "primary" | "secondary" | "informal" | "success" | "warning" | "error" | "disabled" | "active";
|
|
137
137
|
type BadgeSize = "sm" | "md" | "lg" | "xl";
|
|
138
|
-
interface BadgeProps extends VariantProps<typeof badgeVariants> {
|
|
138
|
+
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
139
139
|
asChild?: boolean;
|
|
140
140
|
label: React$1.ReactNode;
|
|
141
141
|
value?: React$1.ReactNode;
|
|
@@ -162,7 +162,7 @@ declare const BadgeDigit: React$1.ForwardRefExoticComponent<BadgeDigitProps & Re
|
|
|
162
162
|
declare const badgeDotVariants: (props?: ({
|
|
163
163
|
status?: "error" | "disabled" | "informal" | "warning" | "success/online" | null | undefined;
|
|
164
164
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
165
|
-
interface BadgeDotProps extends VariantProps<typeof badgeDotVariants> {
|
|
165
|
+
interface BadgeDotProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeDotVariants> {
|
|
166
166
|
className?: string;
|
|
167
167
|
}
|
|
168
168
|
declare const BadgeDot: React$1.FC<BadgeDotProps>;
|
package/dist/index.js
CHANGED
|
@@ -296,7 +296,7 @@ var IconButtonGroup = (props) => {
|
|
|
296
296
|
"aria-label": item.ariaLabel,
|
|
297
297
|
disabled: item.disabled,
|
|
298
298
|
className: cn(
|
|
299
|
-
"rounded-none border-1 border-
|
|
299
|
+
"rounded-none border-1 border-secondary text-primary ",
|
|
300
300
|
index === 0 && "rounded-l-6",
|
|
301
301
|
index === items.length - 1 && "rounded-r-6",
|
|
302
302
|
index > 0 && "-ml-px"
|
|
@@ -473,7 +473,7 @@ var Accordion = React6.forwardRef(
|
|
|
473
473
|
AccordionPrimitive.Item,
|
|
474
474
|
{
|
|
475
475
|
value: "item",
|
|
476
|
-
className: cn(bordered ? "border rounded-4" : "border-b", "border-
|
|
476
|
+
className: cn(bordered ? "border rounded-4" : "border-b", "border-secondary px-4"),
|
|
477
477
|
children: [
|
|
478
478
|
/* @__PURE__ */ jsx8(AccordionPrimitive.Header, { className: "flex", children: /* @__PURE__ */ jsxs4(
|
|
479
479
|
AccordionPrimitive.Trigger,
|
|
@@ -507,7 +507,7 @@ import { cva as cva6 } from "class-variance-authority";
|
|
|
507
507
|
import { UserIcon } from "@bubo-squared/icons";
|
|
508
508
|
import { jsx as jsx9, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
509
509
|
var avatarVariants = cva6(
|
|
510
|
-
"relative inline-flex items-center justify-center rounded-full border-
|
|
510
|
+
"relative inline-flex items-center justify-center rounded-full border-secondary border-1 bg-(--background-primary) text-primary overflow-hidden hover:border-(--focus-secondary) focus-visible:border-(--focus-primary) focus-visible:outline-none",
|
|
511
511
|
{
|
|
512
512
|
variants: {
|
|
513
513
|
size: {
|
|
@@ -656,24 +656,24 @@ import { Slot as Slot5 } from "@radix-ui/react-slot";
|
|
|
656
656
|
import { cva as cva7 } from "class-variance-authority";
|
|
657
657
|
import { Fragment, jsx as jsx11, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
658
658
|
var badgeVariants = cva7(
|
|
659
|
-
"inline-flex items-center justify-center rounded-4 leading-none whitespace-nowrap gap-1
|
|
659
|
+
"inline-flex items-center justify-center rounded-4 leading-none whitespace-nowrap gap-1 py-0",
|
|
660
660
|
{
|
|
661
661
|
variants: {
|
|
662
662
|
size: {
|
|
663
|
-
sm: "px-1 paragraph-sm",
|
|
664
|
-
md: "px-
|
|
665
|
-
lg: "px-
|
|
666
|
-
xl: "px-2 h6-title"
|
|
663
|
+
sm: "px-1.5 paragraph-sm",
|
|
664
|
+
md: "px-2 paragraph-md",
|
|
665
|
+
lg: "px-2 subtitle",
|
|
666
|
+
xl: "px-2.5 h6-title"
|
|
667
667
|
},
|
|
668
668
|
variant: {
|
|
669
669
|
primary: "bg-(--background-secondary) text-primary",
|
|
670
|
-
secondary: "bg-(--background-primary) border-1 border-
|
|
670
|
+
secondary: "bg-(--background-primary) border-1 border-primary text-primary",
|
|
671
671
|
active: "bg-ac-lilac text-badge-black",
|
|
672
672
|
informal: "bg-ac-neon-blue text-badge-black",
|
|
673
673
|
success: "bg-ac-neon-green text-badge-black",
|
|
674
674
|
warning: "bg-ac-light-orange text-badge-black",
|
|
675
675
|
error: "bg-s-error-300 text-badge-black",
|
|
676
|
-
disabled: "bg-(--background-primary-disabled) border-1 border-
|
|
676
|
+
disabled: "bg-(--background-primary-disabled) border-1 border-primary-disabled text-primary-disabled",
|
|
677
677
|
"double-default": "bg-(--background-secondary) text-primary",
|
|
678
678
|
"double-current": "bg-color-ac-lilac text-badge-black"
|
|
679
679
|
}
|
|
@@ -728,12 +728,12 @@ var badgeDigitVariants = cva8(
|
|
|
728
728
|
},
|
|
729
729
|
variant: {
|
|
730
730
|
primary: "bg-(--background-brand)",
|
|
731
|
-
secondary: "bg-(--background-primary) border-1 border-
|
|
731
|
+
secondary: "bg-(--background-primary) border-1 border-secondary text-primary",
|
|
732
732
|
informal: "bg-(--background-informal)",
|
|
733
733
|
success: "bg-(--background-success)",
|
|
734
734
|
warning: "bg-(--background-warning)",
|
|
735
735
|
error: "bg-(--background-error)",
|
|
736
|
-
disabled: "bg-(--background-primary) border-1 border-
|
|
736
|
+
disabled: "bg-(--background-primary) border-1 border-primary-disabled text-primary-disabled"
|
|
737
737
|
}
|
|
738
738
|
},
|
|
739
739
|
defaultVariants: {
|
|
@@ -1208,7 +1208,7 @@ import { Slot as Slot6 } from "@radix-ui/react-slot";
|
|
|
1208
1208
|
import { cva as cva11 } from "class-variance-authority";
|
|
1209
1209
|
import { jsx as jsx19, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1210
1210
|
var tagVariants = cva11(
|
|
1211
|
-
"inline-flex flex-row items-center justify-center rounded-6 gap-2 px-3 overflow-hidden border-1 border-
|
|
1211
|
+
"inline-flex flex-row items-center justify-center rounded-6 gap-2 px-3 overflow-hidden border-1 border-secondary bg-(--background-neutral) focus:border-brand focus-ring-primary ",
|
|
1212
1212
|
{
|
|
1213
1213
|
variants: {
|
|
1214
1214
|
size: {
|
|
@@ -1221,7 +1221,7 @@ var tagVariants = cva11(
|
|
|
1221
1221
|
}
|
|
1222
1222
|
}
|
|
1223
1223
|
);
|
|
1224
|
-
var disabledTag = "pointer-events-none border-
|
|
1224
|
+
var disabledTag = "pointer-events-none border-secondary-disabled bg-(--background-neutral-disabled) text-primary-disabled";
|
|
1225
1225
|
var iconClasses = "flex items-center justify-center w-5 h-5 [&>*]:w-5 [&>*]:h-5 shrink-0 text-primary";
|
|
1226
1226
|
var Tag = React17.forwardRef(
|
|
1227
1227
|
(props, ref) => {
|
|
@@ -1268,7 +1268,7 @@ import { ChevronRightIcon } from "@bubo-squared/icons";
|
|
|
1268
1268
|
|
|
1269
1269
|
// src/components/ui/dropdown-styles.ts
|
|
1270
1270
|
import { cva as cva12 } from "class-variance-authority";
|
|
1271
|
-
var dropdownSurfaceClass = "z-50 rounded-4 border border-
|
|
1271
|
+
var dropdownSurfaceClass = "z-50 rounded-4 border border-secondary-hover bg-(--background-neutral) shadow-card-md";
|
|
1272
1272
|
var dropdownScrollClass = "max-h-79 overflow-y-auto dropdown-scrollbar";
|
|
1273
1273
|
var dropdownRowVariants = cva12(
|
|
1274
1274
|
"flex w-full items-center gap-2 pl-(--space-8) pr-(--space-16) text-left text-primary cursor-pointer hover:bg-(--background-secondary)",
|
|
@@ -1529,15 +1529,15 @@ var Checkbox = React20.forwardRef(({ label, className, ...props }, forwardedRef)
|
|
|
1529
1529
|
{
|
|
1530
1530
|
ref: forwardedRef,
|
|
1531
1531
|
className: cn(
|
|
1532
|
-
"group flex h-5 w-5 items-center justify-center rounded-2 border border-
|
|
1532
|
+
"group flex h-5 w-5 items-center justify-center rounded-2 border border-secondary bg-(--background-neutral) text-primary-inverse",
|
|
1533
1533
|
"data-[state=checked]:bg-(--background-brand) data-[state=checked]:text-button-white data-[state=checked]:border-none",
|
|
1534
1534
|
"data-[state=indeterminate]:bg-(--background-brand) data-[state=indeterminate]:text-button-white data-[state=indeterminate]:border-none",
|
|
1535
1535
|
"data-[state=checked]:hover:bg-(--background-brand-hover) data-[state=indeterminate]:hover:bg-(--background-brand-hover)",
|
|
1536
|
-
"focus-visible:border-
|
|
1536
|
+
"focus-visible:border-brand",
|
|
1537
1537
|
"disabled:bg-(--background-primary-disabled) disabled:border-none disabled:text-(--icon-primary-disabled)",
|
|
1538
1538
|
"data-[state=checked]:disabled:bg-(--background-primary-disabled) data-[state=checked]:disabled:border-none data-[state=checked]:disabled:text-(--icon-primary-disabled)",
|
|
1539
1539
|
"data-[state=indeterminate]:disabled:bg-(--background-primary-disabled) data-[state=indeterminate]:disabled:border-none data-[state=indeterminate]:disabled:text-(--icon-primary-disabled)",
|
|
1540
|
-
"focus-ring-primary hover:cursor-pointer hover:border-
|
|
1540
|
+
"focus-ring-primary hover:cursor-pointer hover:border-secondary-hover",
|
|
1541
1541
|
className
|
|
1542
1542
|
),
|
|
1543
1543
|
...props,
|
|
@@ -1561,7 +1561,7 @@ import * as React21 from "react";
|
|
|
1561
1561
|
import { cva as cva13 } from "class-variance-authority";
|
|
1562
1562
|
import { jsx as jsx23 } from "react/jsx-runtime";
|
|
1563
1563
|
var inputShellVariants = cva13(
|
|
1564
|
-
"group flex w-full items-center rounded-4 border bg-(--background-primary) text-left cursor-text border-
|
|
1564
|
+
"group flex w-full items-center rounded-4 border bg-(--background-primary) text-left cursor-text border-secondary",
|
|
1565
1565
|
{
|
|
1566
1566
|
variants: {
|
|
1567
1567
|
size: {
|
|
@@ -1576,7 +1576,7 @@ var inputShellVariants = cva13(
|
|
|
1576
1576
|
error: "input-error"
|
|
1577
1577
|
},
|
|
1578
1578
|
disabled: {
|
|
1579
|
-
true: "bg-(--background-primary-disabled) border-
|
|
1579
|
+
true: "bg-(--background-primary-disabled) border-secondary-disabled text-primary-disabled cursor-default"
|
|
1580
1580
|
}
|
|
1581
1581
|
},
|
|
1582
1582
|
defaultVariants: {
|
|
@@ -2735,7 +2735,7 @@ function ScrollBar({
|
|
|
2735
2735
|
// src/components/Inputs/PhoneInput.tsx
|
|
2736
2736
|
import { cva as cva18 } from "class-variance-authority";
|
|
2737
2737
|
import { jsx as jsx33, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
2738
|
-
var inputBase = "h-full rounded-4 border-
|
|
2738
|
+
var inputBase = "h-full rounded-4 border-secondary bg-(--background-primary) hover:border-secondary-hover";
|
|
2739
2739
|
var sizeBase = cva18(
|
|
2740
2740
|
"flex w-full",
|
|
2741
2741
|
{
|
|
@@ -2758,7 +2758,7 @@ var inputTextVariants2 = cva18("", {
|
|
|
2758
2758
|
xl: "h6-title"
|
|
2759
2759
|
},
|
|
2760
2760
|
disabled: {
|
|
2761
|
-
true: "text-primary-disabled border-
|
|
2761
|
+
true: "text-primary-disabled border-secondary-disabled"
|
|
2762
2762
|
}
|
|
2763
2763
|
},
|
|
2764
2764
|
defaultVariants: {
|
|
@@ -3087,24 +3087,24 @@ var RadioGroup = React32.forwardRef((props, forwardedRef) => {
|
|
|
3087
3087
|
className: cn(
|
|
3088
3088
|
"flex items-center justify-center shrink-0 h-5 w-5 rounded-full border bg-(--background-primary) transition-all",
|
|
3089
3089
|
// 1: enabled, unchecked, unfocused, unhovered
|
|
3090
|
-
"group-data-[state=unchecked]:border-
|
|
3090
|
+
"group-data-[state=unchecked]:border-secondary",
|
|
3091
3091
|
// 2: enabled, checked, unfocused, unhovered
|
|
3092
|
-
"group-data-[state=checked]:border-
|
|
3092
|
+
"group-data-[state=checked]:border-brand",
|
|
3093
3093
|
// 3: enabled, unchecked, hovered, unfocused
|
|
3094
|
-
"group-data-[state=unchecked]:group-hover:border-
|
|
3094
|
+
"group-data-[state=unchecked]:group-hover:border-secondary-hover",
|
|
3095
3095
|
// 4: enabled, checked, hovered, unfocused
|
|
3096
|
-
"group-data-[state=checked]:group-hover:border-
|
|
3096
|
+
"group-data-[state=checked]:group-hover:border-brand-hover",
|
|
3097
3097
|
"group-data-[state=checked]:group-hover:shadow-[0_0_0_var(--focus-ring-spread)_var(--focus-secondary)]",
|
|
3098
3098
|
// 5: enabled, unchecked, focused (override 1/3)
|
|
3099
|
-
"group-data-[state=unchecked]:group-focus-visible:border-
|
|
3099
|
+
"group-data-[state=unchecked]:group-focus-visible:border-secondary-hover",
|
|
3100
3100
|
// 6: enabled, checked, focused (override 2/4)
|
|
3101
|
-
"group-data-[state=checked]:group-focus-visible:border-
|
|
3101
|
+
"group-data-[state=checked]:group-focus-visible:border-brand-focus",
|
|
3102
3102
|
"group-data-[state=checked]:group-focus-visible:shadow-[0_0_0_var(--focus-ring-spread)_var(--focus-primary)]",
|
|
3103
3103
|
// 7: disabled, unchecked (override everything above)
|
|
3104
3104
|
"group-[&[data-disabled][data-state=unchecked]]:border-none",
|
|
3105
3105
|
"group-[&[data-disabled][data-state=unchecked]]:bg-(--background-primary-disabled)",
|
|
3106
3106
|
// 8: disabled, checked (override everything above)
|
|
3107
|
-
"group-[&[data-disabled][data-state=checked]]:border-
|
|
3107
|
+
"group-[&[data-disabled][data-state=checked]]:border-primary-disabled",
|
|
3108
3108
|
"group-[&[data-disabled][data-state=checked]]:bg-(--background-primary-disabled)"
|
|
3109
3109
|
),
|
|
3110
3110
|
children: /* @__PURE__ */ jsx34(
|
|
@@ -3824,8 +3824,8 @@ var TextArea = React36.forwardRef((props, forwardedRef) => {
|
|
|
3824
3824
|
const textareaId = id ?? generatedId;
|
|
3825
3825
|
const statusBorderClass = {
|
|
3826
3826
|
default: "",
|
|
3827
|
-
success: "border-
|
|
3828
|
-
error: "border-
|
|
3827
|
+
success: "border-success",
|
|
3828
|
+
error: "border-error"
|
|
3829
3829
|
};
|
|
3830
3830
|
const statusShellClass = {
|
|
3831
3831
|
default: "input-default",
|
|
@@ -3871,9 +3871,9 @@ var TextArea = React36.forwardRef((props, forwardedRef) => {
|
|
|
3871
3871
|
{
|
|
3872
3872
|
className: cn(
|
|
3873
3873
|
"relative flex w-full rounded-4 border bg-(--background-primary) cursor-text",
|
|
3874
|
-
"border-
|
|
3874
|
+
"border-secondary",
|
|
3875
3875
|
statusShellClass[status],
|
|
3876
|
-
disabled && "bg-(--background-primary-disabled) border-
|
|
3876
|
+
disabled && "bg-(--background-primary-disabled) border-secondary-disabled cursor-default",
|
|
3877
3877
|
statusBorderClass[status],
|
|
3878
3878
|
className
|
|
3879
3879
|
),
|
|
@@ -4121,16 +4121,16 @@ var Toggle = React38.forwardRef((props, forwardedRef) => {
|
|
|
4121
4121
|
// Knob position
|
|
4122
4122
|
"justify-start peer-checked:justify-end",
|
|
4123
4123
|
// 1: enabled, unchecked, unhovered, unfocused
|
|
4124
|
-
"border-
|
|
4124
|
+
"border-secondary",
|
|
4125
4125
|
// 3: enabled, unchecked, hovered, unfocused
|
|
4126
|
-
"hover:border-
|
|
4126
|
+
"hover:border-secondary-hover",
|
|
4127
4127
|
// 2: enabled, checked, unhovered, unfocused
|
|
4128
|
-
"peer-checked:border-
|
|
4128
|
+
"peer-checked:border-brand",
|
|
4129
4129
|
// 4: enabled, checked, hovered, unfocused
|
|
4130
|
-
"peer-checked:hover:border-
|
|
4130
|
+
"peer-checked:hover:border-brand-hover",
|
|
4131
4131
|
"peer-checked:hover:shadow-[0_0_0_var(--focus-ring-spread)_var(--focus-secondary)]",
|
|
4132
4132
|
// 5: enabled, unchecked, unhovered, focused
|
|
4133
|
-
"peer-focus-visible:border-
|
|
4133
|
+
"peer-focus-visible:border-brand-focus",
|
|
4134
4134
|
// 6: enabled, checked, unhovered, focused
|
|
4135
4135
|
"peer-checked:peer-focus-visible:bg-(--background-brand-focus)",
|
|
4136
4136
|
"peer-checked:peer-focus-visible:shadow-[0_0_0_var(--focus-ring-spread)_var(--focus-primary)]",
|
|
@@ -4139,7 +4139,7 @@ var Toggle = React38.forwardRef((props, forwardedRef) => {
|
|
|
4139
4139
|
"peer-disabled:border-none",
|
|
4140
4140
|
"peer-disabled:shadow-none",
|
|
4141
4141
|
// 8: disabled, checked (override)
|
|
4142
|
-
"peer-disabled:peer-checked:border-
|
|
4142
|
+
"peer-disabled:peer-checked:border-primary-disabled",
|
|
4143
4143
|
// Disable hover when disabled
|
|
4144
4144
|
"peer-disabled:pointer-events-none",
|
|
4145
4145
|
// Knob on (enabled)
|
|
@@ -4198,7 +4198,7 @@ var WebsiteInput = React39.forwardRef((props, forwardedRef) => {
|
|
|
4198
4198
|
const baseClass = cn(
|
|
4199
4199
|
"[&>span]:w-[unset] hover:bg-[unset]",
|
|
4200
4200
|
!disabled && "[&:not(:focus-within):hover]:shadow-[0_0_0_var(--focus-ring-spread)_var(--background-secondary-hover)]",
|
|
4201
|
-
disabled && "bg-[unset] hover:shadow-none hover:border-
|
|
4201
|
+
disabled && "bg-[unset] hover:shadow-none hover:border-secondary-disabled border-secondary-disabled",
|
|
4202
4202
|
spanHeightClass
|
|
4203
4203
|
);
|
|
4204
4204
|
const addonTextClass = cn(
|
|
@@ -4209,9 +4209,9 @@ var WebsiteInput = React39.forwardRef((props, forwardedRef) => {
|
|
|
4209
4209
|
const baseAddonClass = cn(
|
|
4210
4210
|
"flex items-center gap-2 px-2 h-full",
|
|
4211
4211
|
// layout + padding
|
|
4212
|
-
"border-
|
|
4212
|
+
"border-secondary",
|
|
4213
4213
|
// divider color
|
|
4214
|
-
disabled && "border-
|
|
4214
|
+
disabled && "border-secondary-disabled hover:border-secondary-disabled",
|
|
4215
4215
|
isLeading ? "border-r" : "border-l"
|
|
4216
4216
|
);
|
|
4217
4217
|
const iconWrapperClass = cn(
|
|
@@ -4474,7 +4474,7 @@ var Breadcrumbs = React43.forwardRef(
|
|
|
4474
4474
|
DropdownMenuContent,
|
|
4475
4475
|
{
|
|
4476
4476
|
align: "start",
|
|
4477
|
-
className: "bg-(--background-neutral) border-
|
|
4477
|
+
className: "bg-(--background-neutral) border-secondary-hover shadow-card-md rounded-4",
|
|
4478
4478
|
children: /* @__PURE__ */ jsx45(DropdownMenuGroup, { children: hiddenItems.map((hidden, hiddenIndex) => {
|
|
4479
4479
|
const hiddenKey = React43.isValidElement(hidden) && hidden.key != null ? String(hidden.key) : `hidden-${hiddenIndex}`;
|
|
4480
4480
|
if (React43.isValidElement(hidden)) {
|