@photoroom/ui 0.1.306 → 0.1.308
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/components/collections/CommonMenu/MenuItemButton.d.ts +5 -6
- package/components/collections/CommonMenu/MenuItemButton.d.ts.map +1 -1
- package/components/dropdown/SpaceDropdown/DropdownMenuSpaceActionItem.d.ts +3 -1
- package/components/dropdown/SpaceDropdown/DropdownMenuSpaceActionItem.d.ts.map +1 -1
- package/components/dropdown/SpaceDropdown/DropdownMenuSpaceItem.d.ts +3 -1
- package/components/dropdown/SpaceDropdown/DropdownMenuSpaceItem.d.ts.map +1 -1
- package/index.mjs +54 -54
- package/package.json +2 -2
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { VariantProps } from "class-variance-authority";
|
|
2
2
|
import React from "react";
|
|
3
|
+
import { Merge, PolymorphicComponent } from "../../polymorphic";
|
|
3
4
|
declare const menuItemCva: (props?: ({
|
|
4
5
|
withIcon?: boolean | null | undefined;
|
|
5
6
|
variant?: "default" | "negative" | "positive" | null | undefined;
|
|
6
7
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
8
|
type MenuItemCvaProps = VariantProps<typeof menuItemCva>;
|
|
8
|
-
|
|
9
|
+
type MenuItemButtonOwnProps = Readonly<{
|
|
9
10
|
avatar?: React.ReactElement;
|
|
10
11
|
objectPreview?: React.ReactElement;
|
|
11
12
|
icon?: React.ComponentType<React.ComponentPropsWithoutRef<"svg">>;
|
|
@@ -15,10 +16,8 @@ export type MenuItemButtonProps = Readonly<{
|
|
|
15
16
|
trailingLabel?: string;
|
|
16
17
|
description?: string;
|
|
17
18
|
noWrap?: boolean;
|
|
18
|
-
}> & MenuItemCvaProps
|
|
19
|
-
export
|
|
20
|
-
|
|
21
|
-
displayName: string;
|
|
22
|
-
};
|
|
19
|
+
}> & MenuItemCvaProps;
|
|
20
|
+
export type MenuItemButtonProps = Merge<React.ComponentPropsWithRef<"button">, MenuItemButtonOwnProps>;
|
|
21
|
+
export declare const MenuItemButton: PolymorphicComponent<"button", MenuItemButtonOwnProps>;
|
|
23
22
|
export {};
|
|
24
23
|
//# sourceMappingURL=MenuItemButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MenuItemButton.d.ts","sourceRoot":"","sources":["../../../../src/components/collections/CommonMenu/MenuItemButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAO,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAE7D,OAAO,KAAgC,MAAM,OAAO,CAAC;AAErD,QAAA,MAAM,WAAW;;;8EAuBhB,CAAC;AAYF,KAAK,gBAAgB,GAAG,YAAY,CAAC,OAAO,WAAW,CAAC,CAAC;AAEzD,
|
|
1
|
+
{"version":3,"file":"MenuItemButton.d.ts","sourceRoot":"","sources":["../../../../src/components/collections/CommonMenu/MenuItemButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAO,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAE7D,OAAO,KAAgC,MAAM,OAAO,CAAC;AAErD,OAAO,EAAE,KAAK,EAAE,oBAAoB,EAAoB,MAAM,mBAAmB,CAAC;AAElF,QAAA,MAAM,WAAW;;;8EAuBhB,CAAC;AAYF,KAAK,gBAAgB,GAAG,YAAY,CAAC,OAAO,WAAW,CAAC,CAAC;AAEzD,KAAK,sBAAsB,GAAG,QAAQ,CAAC;IACrC,MAAM,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC;IAC5B,aAAa,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC;IACnC,IAAI,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,KAAK,CAAC,wBAAwB,CAAC,KAAK,CAAC,CAAC,CAAC;IAClE,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC/B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB,CAAC,GACA,gBAAgB,CAAC;AAKnB,MAAM,MAAM,mBAAmB,GAAG,KAAK,CACrC,KAAK,CAAC,qBAAqB,CAAC,QAAQ,CAAC,EACrC,sBAAsB,CACvB,CAAC;AAEF,eAAO,MAAM,cAAc,EAgFrB,oBAAoB,CAAC,QAAQ,EAAE,sBAAsB,CAAC,CAAC"}
|
|
@@ -2,9 +2,11 @@ import React from "react";
|
|
|
2
2
|
export type DropdownMenuSpaceActionItemProps = React.ComponentProps<"button"> & Readonly<{
|
|
3
3
|
label: string;
|
|
4
4
|
icon: React.ReactNode;
|
|
5
|
+
/** Denser row to match `DropdownMenuSpaceItem` compact rows in the same list. */
|
|
6
|
+
compact?: boolean;
|
|
5
7
|
}>;
|
|
6
8
|
export declare const DropdownMenuSpaceActionItem: {
|
|
7
|
-
({ label, icon, className, ref, ...rest }: DropdownMenuSpaceActionItemProps): React.JSX.Element;
|
|
9
|
+
({ label, icon, compact, className, ref, ...rest }: DropdownMenuSpaceActionItemProps): React.JSX.Element;
|
|
8
10
|
displayName: string;
|
|
9
11
|
};
|
|
10
12
|
//# sourceMappingURL=DropdownMenuSpaceActionItem.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DropdownMenuSpaceActionItem.d.ts","sourceRoot":"","sources":["../../../../src/components/dropdown/SpaceDropdown/DropdownMenuSpaceActionItem.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,MAAM,MAAM,gCAAgC,GAAG,KAAK,CAAC,cAAc,CAAC,QAAQ,CAAC,GAC3E,QAAQ,CAAC;IACP,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,KAAK,CAAC,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"DropdownMenuSpaceActionItem.d.ts","sourceRoot":"","sources":["../../../../src/components/dropdown/SpaceDropdown/DropdownMenuSpaceActionItem.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,MAAM,MAAM,gCAAgC,GAAG,KAAK,CAAC,cAAc,CAAC,QAAQ,CAAC,GAC3E,QAAQ,CAAC;IACP,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,KAAK,CAAC,SAAS,CAAC;IACtB,iFAAiF;IACjF,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC,CAAC;AAEL,eAAO,MAAM,2BAA2B;wDAOrC,gCAAgC;;CAwBlC,CAAC"}
|
|
@@ -5,9 +5,11 @@ export type DropdownMenuSpaceItemProps = React.ComponentProps<"button"> & Readon
|
|
|
5
5
|
subtitle?: string;
|
|
6
6
|
badgeLabel?: string | null;
|
|
7
7
|
icon?: React.ReactNode;
|
|
8
|
+
/** Tighter padding for long, scannable space lists (avatar size is unchanged). */
|
|
9
|
+
compact?: boolean;
|
|
8
10
|
}>;
|
|
9
11
|
export declare const DropdownMenuSpaceItem: {
|
|
10
|
-
({ title, subtitle, avatar, badgeLabel, icon, className, ref, ...rest }: DropdownMenuSpaceItemProps): import("react").JSX.Element;
|
|
12
|
+
({ title, subtitle, avatar, badgeLabel, icon, compact, className, ref, ...rest }: DropdownMenuSpaceItemProps): import("react").JSX.Element;
|
|
11
13
|
displayName: string;
|
|
12
14
|
};
|
|
13
15
|
//# sourceMappingURL=DropdownMenuSpaceItem.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DropdownMenuSpaceItem.d.ts","sourceRoot":"","sources":["../../../../src/components/dropdown/SpaceDropdown/DropdownMenuSpaceItem.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAU,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAG9D,MAAM,MAAM,0BAA0B,GAAG,KAAK,CAAC,cAAc,CAAC,QAAQ,CAAC,GACrE,QAAQ,CAAC;IACP,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,OAAO,CACb,IAAI,CAAC,WAAW,EAAE,aAAa,GAAG,UAAU,GAAG,aAAa,GAAG,OAAO,GAAG,aAAa,CAAC,CACxF,CAAC;IACF,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"DropdownMenuSpaceItem.d.ts","sourceRoot":"","sources":["../../../../src/components/dropdown/SpaceDropdown/DropdownMenuSpaceItem.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAU,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAG9D,MAAM,MAAM,0BAA0B,GAAG,KAAK,CAAC,cAAc,CAAC,QAAQ,CAAC,GACrE,QAAQ,CAAC;IACP,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,OAAO,CACb,IAAI,CAAC,WAAW,EAAE,aAAa,GAAG,UAAU,GAAG,aAAa,GAAG,OAAO,GAAG,aAAa,CAAC,CACxF,CAAC;IACF,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,kFAAkF;IAClF,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC,CAAC;AAEL,eAAO,MAAM,qBAAqB;sFAU/B,0BAA0B;;CAmC5B,CAAC"}
|
package/index.mjs
CHANGED
|
@@ -9,7 +9,6 @@ import { AppStoreDeIcon as cee, AppStoreEnIcon as lee, AppStoreEsIcon as uee, Ap
|
|
|
9
9
|
import { CrossIcon as Rt } from "@photoroom/icons/monochromes/CrossIcon";
|
|
10
10
|
import { DisclosureTriangleIcon as zt } from "@photoroom/icons/monochromes/DisclosureTriangleIcon";
|
|
11
11
|
import Bt from "next/link";
|
|
12
|
-
import "date-fns";
|
|
13
12
|
//#region \0rolldown/runtime.js
|
|
14
13
|
var Vt = Object.create, Ht = Object.defineProperty, Ut = Object.getOwnPropertyDescriptor, Wt = Object.getOwnPropertyNames, Gt = Object.getPrototypeOf, Kt = Object.prototype.hasOwnProperty, qt = (e, t) => () => (e && (t = e(e = 0)), t), Jt = (e, t) => () => (t || (e((t = { exports: {} }).exports, t), e = null), t.exports), Yt = (e, t) => {
|
|
15
14
|
let n = {};
|
|
@@ -32531,56 +32530,56 @@ var eV = G([
|
|
|
32531
32530
|
default: "text-content-secondary",
|
|
32532
32531
|
positive: "text-content-positive",
|
|
32533
32532
|
negative: "text-content-negative"
|
|
32534
|
-
} } }), nV = ({
|
|
32535
|
-
let
|
|
32536
|
-
className: U("pointer-events-none ms-auto mt-2",
|
|
32533
|
+
} } }), nV = (({ as: e = "button", avatar: r, objectPreview: i, icon: a, leading: o, hideIcon: s, children: c, description: l, variant: u = "default", noWrap: d = !1, rightElement: f, trailingLabel: p, className: m, ref: h, ...g }) => {
|
|
32534
|
+
let _ = Oe(() => r ? me(r, {
|
|
32535
|
+
className: U("pointer-events-none ms-auto mt-2", r.props.className),
|
|
32537
32536
|
size: 24
|
|
32538
|
-
}) : null, [
|
|
32539
|
-
return /* @__PURE__ */ n(
|
|
32540
|
-
ref:
|
|
32537
|
+
}) : null, [r]), v = Oe(() => i ? me(i, { className: U("bg-background-asset pointer-events-none ms-auto mt-2 h-6 w-6", i.props.className) }) : null, [i]);
|
|
32538
|
+
return /* @__PURE__ */ n(e, {
|
|
32539
|
+
ref: h,
|
|
32541
32540
|
className: eV({
|
|
32542
|
-
variant:
|
|
32543
|
-
withIcon: !!
|
|
32544
|
-
class:
|
|
32541
|
+
variant: u,
|
|
32542
|
+
withIcon: !!a || !!o || !!s,
|
|
32543
|
+
class: m
|
|
32545
32544
|
}),
|
|
32546
|
-
...
|
|
32545
|
+
...g,
|
|
32547
32546
|
children: [
|
|
32548
|
-
g,
|
|
32549
32547
|
_,
|
|
32550
|
-
|
|
32551
|
-
|
|
32548
|
+
v,
|
|
32549
|
+
a && /* @__PURE__ */ t(a, {
|
|
32550
|
+
className: tV({ variant: u }),
|
|
32552
32551
|
"aria-hidden": "true"
|
|
32553
32552
|
}),
|
|
32554
|
-
!
|
|
32553
|
+
!a && o && /* @__PURE__ */ t("span", {
|
|
32555
32554
|
className: "icon-size-500 mt-2.5 flex items-center justify-center",
|
|
32556
32555
|
"aria-hidden": "true",
|
|
32557
|
-
children:
|
|
32556
|
+
children: o
|
|
32558
32557
|
}),
|
|
32559
|
-
!
|
|
32558
|
+
!a && !o && s && /* @__PURE__ */ t("span", {
|
|
32560
32559
|
className: "icon-size-500 mt-2.5",
|
|
32561
32560
|
"aria-hidden": "true"
|
|
32562
32561
|
}),
|
|
32563
32562
|
/* @__PURE__ */ n("div", {
|
|
32564
|
-
className: U("flex flex-1 flex-col gap-0.5 py-[11px] text-start",
|
|
32563
|
+
className: U("flex flex-1 flex-col gap-0.5 py-[11px] text-start", d && "truncate"),
|
|
32565
32564
|
children: [/* @__PURE__ */ t("div", {
|
|
32566
|
-
className: U(
|
|
32567
|
-
children: s
|
|
32568
|
-
}), !e && c && /* @__PURE__ */ t("div", {
|
|
32569
|
-
className: U("component-300 text-content-tertiary", u && "truncate"),
|
|
32565
|
+
className: U(d && "truncate"),
|
|
32570
32566
|
children: c
|
|
32567
|
+
}), !r && l && /* @__PURE__ */ t("div", {
|
|
32568
|
+
className: U("component-300 text-content-tertiary", d && "truncate"),
|
|
32569
|
+
children: l
|
|
32571
32570
|
})]
|
|
32572
32571
|
}),
|
|
32573
|
-
|
|
32572
|
+
f && /* @__PURE__ */ t("div", {
|
|
32574
32573
|
className: "ms-auto mt-2",
|
|
32575
|
-
children:
|
|
32574
|
+
children: f
|
|
32576
32575
|
}),
|
|
32577
|
-
|
|
32576
|
+
p && /* @__PURE__ */ t("span", {
|
|
32578
32577
|
className: "text-content-secondary shrink-0 self-center whitespace-nowrap",
|
|
32579
|
-
children:
|
|
32578
|
+
children: p
|
|
32580
32579
|
})
|
|
32581
32580
|
]
|
|
32582
32581
|
});
|
|
32583
|
-
};
|
|
32582
|
+
});
|
|
32584
32583
|
nV.displayName = "MenuItemButton";
|
|
32585
32584
|
//#endregion
|
|
32586
32585
|
//#region src/components/collections/ContextMenu/MenuItem/MenuItem.tsx
|
|
@@ -36616,10 +36615,10 @@ var gJ = ({ label: e, selected: r, badge: i, thumbnail: a, icon: o, ref: s, ...c
|
|
|
36616
36615
|
gJ.displayName = "DropdownMenuSingleSelectionItem";
|
|
36617
36616
|
//#endregion
|
|
36618
36617
|
//#region src/components/dropdown/SpaceDropdown/DropdownMenuSpaceActionItem.tsx
|
|
36619
|
-
var _J = ({ label: e, icon: r,
|
|
36620
|
-
ref:
|
|
36621
|
-
...
|
|
36622
|
-
className: U("shrink-0 cursor-pointer outline-hidden", "rounded-300 flex w-full items-center gap-4 p-3", "active:bg-background-subdued-down", "data-radix-collection-item:focus:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:hover:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:focus-visible:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:focus-visible:misc-border-size-focus-ring", "[&:not([data-radix-collection-item])]:focus-visible:ring-misc-focus-indicator",
|
|
36618
|
+
var _J = ({ label: e, icon: r, compact: i = !1, className: a, ref: o, ...s }) => /* @__PURE__ */ n("button", {
|
|
36619
|
+
ref: o,
|
|
36620
|
+
...s,
|
|
36621
|
+
className: U("shrink-0 cursor-pointer outline-hidden", "rounded-300 flex w-full items-center", i ? "gap-3 p-2" : "gap-4 p-3", "active:bg-background-subdued-down", "data-radix-collection-item:focus:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:hover:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:focus-visible:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:focus-visible:misc-border-size-focus-ring", "[&:not([data-radix-collection-item])]:focus-visible:ring-misc-focus-indicator", a),
|
|
36623
36622
|
children: [/* @__PURE__ */ t("div", {
|
|
36624
36623
|
className: "bg-background-accent-subdued relative flex size-500 shrink-0 items-center justify-center rounded-full",
|
|
36625
36624
|
children: /* @__PURE__ */ t("span", {
|
|
@@ -36634,10 +36633,10 @@ var _J = ({ label: e, icon: r, className: i, ref: a, ...o }) => /* @__PURE__ */
|
|
|
36634
36633
|
_J.displayName = "DropdownMenuSpaceActionItem";
|
|
36635
36634
|
//#endregion
|
|
36636
36635
|
//#region src/components/dropdown/SpaceDropdown/DropdownMenuSpaceItem.tsx
|
|
36637
|
-
var vJ = ({ title: e, subtitle: r, avatar: i, badgeLabel: a, icon: o,
|
|
36638
|
-
ref:
|
|
36639
|
-
...
|
|
36640
|
-
className: U("shrink-0 outline-hidden", "rounded-300 flex w-full items-center gap-4 p-3", "disabled:cursor-not-allowed disabled:opacity-50", "enabled:cursor-pointer", "enabled:active:bg-background-subdued-down", "data-radix-collection-item:focus:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:enabled:hover:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:focus-visible:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:focus-visible:misc-border-size-focus-ring", "[&:not([data-radix-collection-item])]:focus-visible:ring-misc-focus-indicator",
|
|
36636
|
+
var vJ = ({ title: e, subtitle: r, avatar: i, badgeLabel: a, icon: o, compact: s = !1, className: c, ref: l, ...u }) => /* @__PURE__ */ n("button", {
|
|
36637
|
+
ref: l,
|
|
36638
|
+
...u,
|
|
36639
|
+
className: U("shrink-0 outline-hidden", "rounded-300 flex w-full items-center", s ? "gap-3 p-2" : "gap-4 p-3", "disabled:cursor-not-allowed disabled:opacity-50", "enabled:cursor-pointer", "enabled:active:bg-background-subdued-down", "data-radix-collection-item:focus:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:enabled:hover:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:focus-visible:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:focus-visible:misc-border-size-focus-ring", "[&:not([data-radix-collection-item])]:focus-visible:ring-misc-focus-indicator", c),
|
|
36641
36640
|
children: [
|
|
36642
36641
|
/* @__PURE__ */ t(Nc, {
|
|
36643
36642
|
...i,
|
|
@@ -36672,28 +36671,29 @@ var yJ = ({ title: e, avatar: r, badgeLabel: i, className: a, ref: o, ...s }) =>
|
|
|
36672
36671
|
ref: o,
|
|
36673
36672
|
...s,
|
|
36674
36673
|
className: U("shrink-0 cursor-pointer outline-hidden", "rounded-500 flex h-14 w-full items-center gap-3 p-2", "active:bg-background-subdued-down", "data-radix-collection-item:focus:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:hover:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:focus-visible:bg-background-subdued-hover", "[&:not([data-radix-collection-item])]:focus-visible:misc-border-size-focus-ring", "[&:not([data-radix-collection-item])]:focus-visible:ring-misc-focus-indicator", a),
|
|
36675
|
-
children: [
|
|
36676
|
-
|
|
36677
|
-
|
|
36678
|
-
|
|
36679
|
-
|
|
36680
|
-
|
|
36681
|
-
className: "
|
|
36674
|
+
children: [
|
|
36675
|
+
/* @__PURE__ */ t(Nc, {
|
|
36676
|
+
...r,
|
|
36677
|
+
size: 40
|
|
36678
|
+
}),
|
|
36679
|
+
/* @__PURE__ */ n("div", {
|
|
36680
|
+
className: "flex min-w-0 grow flex-col gap-[3px] text-start",
|
|
36682
36681
|
children: [/* @__PURE__ */ t("span", {
|
|
36683
|
-
className: "truncate",
|
|
36682
|
+
className: "component-semi-strong-500 text-content-primary min-w-0 truncate",
|
|
36684
36683
|
children: e
|
|
36685
|
-
}), /* @__PURE__ */ t("
|
|
36686
|
-
className: "
|
|
36687
|
-
children: /* @__PURE__ */ t(
|
|
36684
|
+
}), !!i && /* @__PURE__ */ t("div", {
|
|
36685
|
+
className: "flex items-center gap-1.5",
|
|
36686
|
+
children: /* @__PURE__ */ t(sl, {
|
|
36687
|
+
size: "small",
|
|
36688
|
+
children: i
|
|
36689
|
+
})
|
|
36688
36690
|
})]
|
|
36689
|
-
}),
|
|
36690
|
-
|
|
36691
|
-
|
|
36692
|
-
|
|
36693
|
-
|
|
36694
|
-
|
|
36695
|
-
})]
|
|
36696
|
-
})]
|
|
36691
|
+
}),
|
|
36692
|
+
/* @__PURE__ */ t("span", {
|
|
36693
|
+
className: "text-content-tertiary h-4 w-4 shrink-0",
|
|
36694
|
+
children: /* @__PURE__ */ t(p, {})
|
|
36695
|
+
})
|
|
36696
|
+
]
|
|
36697
36697
|
});
|
|
36698
36698
|
yJ.displayName = "SpacePullDownButton";
|
|
36699
36699
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@photoroom/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.308",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Photoroom design system components",
|
|
6
6
|
"sideEffects": [
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@img-comparison-slider/react": "8.0.2",
|
|
39
39
|
"@lottiefiles/react-lottie-player": "3.6.0",
|
|
40
|
-
"@photoroom/icons": "0.1.
|
|
40
|
+
"@photoroom/icons": "0.1.27",
|
|
41
41
|
"@radix-ui/react-accordion": "1.2.12",
|
|
42
42
|
"@radix-ui/react-avatar": "1.2.0",
|
|
43
43
|
"@radix-ui/react-checkbox": "1.3.3",
|