@photoroom/ui 0.1.56 → 0.1.58
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/{DropdownMenu/DropdownMenu.d.ts → LegacyDropdownMenu/LegacyDropdownMenu.d.ts} +6 -4
- package/components/collections/LegacyDropdownMenu/LegacyDropdownMenu.d.ts.map +1 -0
- package/components/collections/LegacyDropdownMenu/MenuCheckboxGroup/MenuCheckboxGroup.d.ts.map +1 -0
- package/components/collections/LegacyDropdownMenu/MenuCheckboxGroup/MenuCheckboxItem.d.ts.map +1 -0
- package/components/collections/LegacyDropdownMenu/MenuCheckboxGroup/index.d.ts.map +1 -0
- package/components/collections/LegacyDropdownMenu/MenuCustomItem/MenuCustomItem.d.ts.map +1 -0
- package/components/collections/LegacyDropdownMenu/MenuCustomItem/index.d.ts.map +1 -0
- package/components/collections/LegacyDropdownMenu/MenuItem/MenuItem.d.ts.map +1 -0
- package/components/collections/LegacyDropdownMenu/MenuItem/index.d.ts.map +1 -0
- package/components/collections/LegacyDropdownMenu/MenuRadioGroup/MenuRadioGroup.d.ts.map +1 -0
- package/components/collections/LegacyDropdownMenu/MenuRadioGroup/MenuRadioItem.d.ts.map +1 -0
- package/components/collections/LegacyDropdownMenu/MenuRadioGroup/index.d.ts.map +1 -0
- package/components/collections/LegacyDropdownMenu/MenuSeparator/MenuSeparator.d.ts.map +1 -0
- package/components/collections/LegacyDropdownMenu/MenuSeparator/index.d.ts.map +1 -0
- package/components/collections/LegacyDropdownMenu/SubMenu.d.ts.map +1 -0
- package/components/collections/LegacyDropdownMenu/index.d.ts +6 -0
- package/components/collections/LegacyDropdownMenu/index.d.ts.map +1 -0
- package/components/content/Tile/TileMoreMenu.d.ts +1 -1
- package/components/content/Tile/TileMoreMenu.d.ts.map +1 -1
- package/components/index.d.ts +1 -1
- package/components/index.d.ts.map +1 -1
- package/components/website/FaqBlock/FaqBlock.d.ts +2 -1
- package/components/website/FaqBlock/FaqBlock.d.ts.map +1 -1
- package/index.lib.d.ts +1 -1
- package/index.lib.d.ts.map +1 -1
- package/index.mjs +16 -13
- package/package.json +1 -1
- package/components/collections/DropdownMenu/DropdownMenu.d.ts.map +0 -1
- package/components/collections/DropdownMenu/MenuCheckboxGroup/MenuCheckboxGroup.d.ts.map +0 -1
- package/components/collections/DropdownMenu/MenuCheckboxGroup/MenuCheckboxItem.d.ts.map +0 -1
- package/components/collections/DropdownMenu/MenuCheckboxGroup/index.d.ts.map +0 -1
- package/components/collections/DropdownMenu/MenuCustomItem/MenuCustomItem.d.ts.map +0 -1
- package/components/collections/DropdownMenu/MenuCustomItem/index.d.ts.map +0 -1
- package/components/collections/DropdownMenu/MenuItem/MenuItem.d.ts.map +0 -1
- package/components/collections/DropdownMenu/MenuItem/index.d.ts.map +0 -1
- package/components/collections/DropdownMenu/MenuRadioGroup/MenuRadioGroup.d.ts.map +0 -1
- package/components/collections/DropdownMenu/MenuRadioGroup/MenuRadioItem.d.ts.map +0 -1
- package/components/collections/DropdownMenu/MenuRadioGroup/index.d.ts.map +0 -1
- package/components/collections/DropdownMenu/MenuSeparator/MenuSeparator.d.ts.map +0 -1
- package/components/collections/DropdownMenu/MenuSeparator/index.d.ts.map +0 -1
- package/components/collections/DropdownMenu/SubMenu.d.ts.map +0 -1
- package/components/collections/DropdownMenu/index.d.ts +0 -2
- package/components/collections/DropdownMenu/index.d.ts.map +0 -1
- /package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuCheckboxGroup/MenuCheckboxGroup.d.ts +0 -0
- /package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuCheckboxGroup/MenuCheckboxItem.d.ts +0 -0
- /package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuCheckboxGroup/index.d.ts +0 -0
- /package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuCustomItem/MenuCustomItem.d.ts +0 -0
- /package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuCustomItem/index.d.ts +0 -0
- /package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuItem/MenuItem.d.ts +0 -0
- /package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuItem/index.d.ts +0 -0
- /package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuRadioGroup/MenuRadioGroup.d.ts +0 -0
- /package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuRadioGroup/MenuRadioItem.d.ts +0 -0
- /package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuRadioGroup/index.d.ts +0 -0
- /package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuSeparator/MenuSeparator.d.ts +0 -0
- /package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuSeparator/index.d.ts +0 -0
- /package/components/collections/{DropdownMenu → LegacyDropdownMenu}/SubMenu.d.ts +0 -0
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import * as RadixDropdownMenu from "@radix-ui/react-dropdown-menu";
|
|
2
|
-
|
|
2
|
+
/** @deprecated Use the new DropdownMenu component instead */
|
|
3
|
+
export type LegacyDropdownMenuProps = Readonly<{
|
|
3
4
|
triggerElement: React.ReactNode;
|
|
4
5
|
children: React.ReactNode;
|
|
5
6
|
className?: string;
|
|
6
7
|
withPortal?: boolean;
|
|
7
8
|
} & RadixDropdownMenu.DropdownMenuProps & Pick<RadixDropdownMenu.DropdownMenuContentProps, "side" | "align" | "avoidCollisions" | "sideOffset" | "collisionPadding"> & React.HTMLAttributes<HTMLDivElement>>;
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
/** @deprecated Use the new DropdownMenu component instead */
|
|
10
|
+
export declare const LegacyDropdownMenu: {
|
|
11
|
+
({ side, align, avoidCollisions, withPortal, sideOffset, collisionPadding, triggerElement, children, className, modal, open: value, defaultOpen: defaultValue, onOpenChange: onValueChange, }: LegacyDropdownMenuProps): import("react/jsx-runtime").JSX.Element;
|
|
10
12
|
Item: import("react").ForwardRefExoticComponent<Omit<import("./MenuItem").MenuItemProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
11
13
|
Sub: ({ triggerProps, children, className, withPortal, open: value, defaultOpen: defaultValue, onOpenChange: onValueChange, ...rest }: import("./SubMenu").SubMenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
14
|
CustomItem: import("react").ForwardRefExoticComponent<RadixDropdownMenu.DropdownMenuItemProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -22,4 +24,4 @@ export declare const DropdownMenu: {
|
|
|
22
24
|
type?: "default" | "titleMiddle" | "titleBelow" | null | undefined;
|
|
23
25
|
}> & RadixDropdownMenu.DropdownMenuSeparatorProps & import("react").HTMLAttributes<HTMLDivElement>> & import("react").RefAttributes<HTMLDivElement>>;
|
|
24
26
|
};
|
|
25
|
-
//# sourceMappingURL=
|
|
27
|
+
//# sourceMappingURL=LegacyDropdownMenu.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LegacyDropdownMenu.d.ts","sourceRoot":"","sources":["../../../../src/components/collections/LegacyDropdownMenu/LegacyDropdownMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAcnE,6DAA6D;AAC7D,MAAM,MAAM,uBAAuB,GAAG,QAAQ,CAC5C;IACE,cAAc,EAAE,KAAK,CAAC,SAAS,CAAC;IAChC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,GAAG,iBAAiB,CAAC,iBAAiB,GACrC,IAAI,CACF,iBAAiB,CAAC,wBAAwB,EAC1C,MAAM,GAAG,OAAO,GAAG,iBAAiB,GAAG,YAAY,GAAG,kBAAkB,CACzE,GACD,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CACvC,CAAC;AAIF,6DAA6D;AAC7D,eAAO,MAAM,kBAAkB;mMAc5B,uBAAuB;;;;;;;;;;;;;;;CA2CzB,CAAC"}
|
package/components/collections/LegacyDropdownMenu/MenuCheckboxGroup/MenuCheckboxGroup.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MenuCheckboxGroup.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/LegacyDropdownMenu/MenuCheckboxGroup/MenuCheckboxGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,aAAa,EAAc,MAAM,OAAO,CAAC;AAE7E,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEtD,MAAM,MAAM,sBAAsB,GAAG,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,CAAC;AAEpF,KAAK,qBAAqB,GAAG;IAC3B,IAAI,EAAE,OAAO,gBAAgB,CAAC;CAC/B,GAAG,yBAAyB,CAAC,sBAAsB,GAAG,aAAa,CAAC,cAAc,CAAC,CAAC,CAAC;AAEtF,eAAO,MAAM,iBAAiB,EAIzB,qBAAqB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MenuCheckboxItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/LegacyDropdownMenu/MenuCheckboxGroup/MenuCheckboxItem.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAMnE,MAAM,MAAM,qBAAqB,GAAG,QAAQ,CAC1C;IACE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB,GAAG,iBAAiB,CAAC,6BAA6B,GACjD,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CACvC,CAAC;AAEF,eAAO,MAAM,gBAAgB;kBANX,MAAM;aACX,OAAO;sJAuEnB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/LegacyDropdownMenu/MenuCheckboxGroup/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MenuCustomItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/LegacyDropdownMenu/MenuCustomItem/MenuCustomItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAGnE,MAAM,MAAM,mBAAmB,GAAG,iBAAiB,CAAC,qBAAqB,CAAC;AAE1E,eAAO,MAAM,cAAc,oIAEzB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/LegacyDropdownMenu/MenuCustomItem/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MenuItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/LegacyDropdownMenu/MenuItem/MenuItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAGnE,OAAO,EAAkB,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AAEtF,MAAM,MAAM,aAAa,GAAG,mBAAmB,GAC7C,IAAI,CAAC,iBAAiB,CAAC,qBAAqB,EAAE,SAAS,GAAG,WAAW,CAAC,CAAC;AAEzE,eAAO,MAAM,QAAQ,uHAMnB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/LegacyDropdownMenu/MenuItem/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MenuRadioGroup.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/LegacyDropdownMenu/MenuRadioGroup/MenuRadioGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AACnE,OAAO,EAAE,yBAAyB,EAAE,aAAa,EAAc,MAAM,OAAO,CAAC;AAE7E,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,MAAM,MAAM,mBAAmB,GAAG,QAAQ,CACxC,iBAAiB,CAAC,2BAA2B,GAAG,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CACrF,CAAC;AAEF,KAAK,kBAAkB,GAAG;IACxB,IAAI,EAAE,OAAO,aAAa,CAAC;CAC5B,GAAG,yBAAyB,CAAC,mBAAmB,GAAG,aAAa,CAAC,cAAc,CAAC,CAAC,CAAC;AAEnF,eAAO,MAAM,cAAc,EAErB,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MenuRadioItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/LegacyDropdownMenu/MenuRadioGroup/MenuRadioItem.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAMnE,MAAM,MAAM,kBAAkB,GAAG,QAAQ,CACvC;IACE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB,GAAG,iBAAiB,CAAC,0BAA0B,GAC9C,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CACvC,CAAC;AAEF,eAAO,MAAM,aAAa;kBANR,MAAM;aACX,OAAO;mJA6DnB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/LegacyDropdownMenu/MenuRadioGroup/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MenuSeparator.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/LegacyDropdownMenu/MenuSeparator/MenuSeparator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAGnE,OAAO,EAEL,kBAAkB,IAAI,wBAAwB,EAC/C,MAAM,gCAAgC,CAAC;AAExC,MAAM,MAAM,kBAAkB,GAAG,QAAQ,CACvC,wBAAwB,GACtB,iBAAiB,CAAC,0BAA0B,GAC5C,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CACvC,CAAC;AAEF,eAAO,MAAM,aAAa;;;;oJAQzB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/LegacyDropdownMenu/MenuSeparator/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SubMenu.d.ts","sourceRoot":"","sources":["../../../../src/components/collections/LegacyDropdownMenu/SubMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAKnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AAGnE,MAAM,MAAM,YAAY,GAAG,QAAQ,CAAC;IAClC,YAAY,EAAE,mBAAmB,CAAC;IAClC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC,GACA,iBAAiB,CAAC,oBAAoB,GACtC,iBAAiB,CAAC,2BAA2B,CAAC;AAEhD,eAAO,MAAM,OAAO,GAAI,iIASrB,YAAY,4CA8Bd,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from "./LegacyDropdownMenu";
|
|
2
|
+
/** @deprecated Use DropdownMenu from @photoroom/ui instead */
|
|
3
|
+
export { LegacyDropdownMenu as DropdownMenu } from "./LegacyDropdownMenu";
|
|
4
|
+
/** @deprecated Use DropdownMenuProps from @photoroom/ui instead */
|
|
5
|
+
export type { LegacyDropdownMenuProps as DropdownMenuProps } from "./LegacyDropdownMenu";
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/collections/LegacyDropdownMenu/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AAErC,8DAA8D;AAC9D,OAAO,EAAE,kBAAkB,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC1E,mEAAmE;AACnE,YAAY,EAAE,uBAAuB,IAAI,iBAAiB,EAAE,MAAM,sBAAsB,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DropdownMenuProps } from "../../collections/
|
|
1
|
+
import { LegacyDropdownMenuProps as DropdownMenuProps } from "../../collections/LegacyDropdownMenu";
|
|
2
2
|
export type TileMoreMenuProps = Omit<DropdownMenuProps, "triggerElement"> & Readonly<{
|
|
3
3
|
triggerTestId?: string;
|
|
4
4
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TileMoreMenu.d.ts","sourceRoot":"","sources":["../../../../src/components/content/Tile/TileMoreMenu.tsx"],"names":[],"mappings":"AAIA,OAAO,
|
|
1
|
+
{"version":3,"file":"TileMoreMenu.d.ts","sourceRoot":"","sources":["../../../../src/components/content/Tile/TileMoreMenu.tsx"],"names":[],"mappings":"AAIA,OAAO,EAEL,uBAAuB,IAAI,iBAAiB,EAC7C,MAAM,sCAAsC,CAAC;AAE9C,MAAM,MAAM,iBAAiB,GAAG,IAAI,CAAC,iBAAiB,EAAE,gBAAgB,CAAC,GACvE,QAAQ,CAAC;IACP,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC,CAAC;AAEL,eAAO,MAAM,YAAY,GAAI,iDAK1B,iBAAiB,4CAqBnB,CAAC"}
|
package/components/index.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ export * from "./action/ToggleButton";
|
|
|
33
33
|
export * from "./action/ToggleStack";
|
|
34
34
|
export * from "./action/ValidationBanner";
|
|
35
35
|
export * from "./collections/ContextMenu";
|
|
36
|
-
export * from "./collections/
|
|
36
|
+
export * from "./collections/LegacyDropdownMenu";
|
|
37
37
|
export * from "./collections/FeedHeader";
|
|
38
38
|
export * from "./collections/MultiActionWidget";
|
|
39
39
|
export * from "./collections/Popover";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iCAAiC,CAAC;AAChD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iCAAiC,CAAC;AAChD,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type FaqBlockProps = React.ComponentProps<"section"> & Readonly<{
|
|
2
2
|
titleBlock?: React.ReactNode;
|
|
3
|
+
background?: "white" | "lightgrey";
|
|
3
4
|
}>;
|
|
4
|
-
export declare const FaqBlock: ({ titleBlock, className, children, ...rest }: FaqBlockProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare const FaqBlock: ({ titleBlock, background, className, children, ...rest }: FaqBlockProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
6
|
export {};
|
|
6
7
|
//# sourceMappingURL=FaqBlock.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FaqBlock.d.ts","sourceRoot":"","sources":["../../../../src/components/website/FaqBlock/FaqBlock.tsx"],"names":[],"mappings":"AAEA,KAAK,aAAa,GAAG,KAAK,CAAC,cAAc,CAAC,SAAS,CAAC,GAClD,QAAQ,CAAC;IACP,UAAU,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"FaqBlock.d.ts","sourceRoot":"","sources":["../../../../src/components/website/FaqBlock/FaqBlock.tsx"],"names":[],"mappings":"AAEA,KAAK,aAAa,GAAG,KAAK,CAAC,cAAc,CAAC,SAAS,CAAC,GAClD,QAAQ,CAAC;IACP,UAAU,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC7B,UAAU,CAAC,EAAE,OAAO,GAAG,WAAW,CAAC;CACpC,CAAC,CAAC;AAEL,eAAO,MAAM,QAAQ,GAAI,0DAMtB,aAAa,4CAqBf,CAAC"}
|
package/index.lib.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ export * from "./components/action/ToggleButton";
|
|
|
38
38
|
export * from "./components/action/ToggleStack";
|
|
39
39
|
export * from "./components/action/ValidationBanner";
|
|
40
40
|
export * from "./components/collections/ContextMenu";
|
|
41
|
-
export * from "./components/collections/
|
|
41
|
+
export * from "./components/collections/LegacyDropdownMenu";
|
|
42
42
|
export * from "./components/collections/FeedHeader";
|
|
43
43
|
export * from "./components/collections/MultiActionWidget";
|
|
44
44
|
export * from "./components/collections/Popover";
|
package/index.lib.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.lib.d.ts","sourceRoot":"","sources":["../src/index.lib.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,cAAc,CAAC;AAItB,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sCAAsC,CAAC;AACrD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,mCAAmC,CAAC;AAClD,cAAc,oCAAoC,CAAC;AACnD,cAAc,iCAAiC,CAAC;AAChD,cAAc,sCAAsC,CAAC;AACrD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAChD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,sCAAsC,CAAC;AACrD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,mCAAmC,CAAC;AAClD,cAAc,yCAAyC,CAAC;AACxD,cAAc,0CAA0C,CAAC;AACzD,cAAc,oCAAoC,CAAC;AACnD,cAAc,qCAAqC,CAAC;AACpD,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAChD,cAAc,mCAAmC,CAAC;AAClD,cAAc,kCAAkC,CAAC;AACjD,cAAc,oCAAoC,CAAC;AACnD,cAAc,iCAAiC,CAAC;AAChD,cAAc,kCAAkC,CAAC;AACjD,cAAc,iCAAiC,CAAC;AAChD,cAAc,sCAAsC,CAAC;AAGrD,cAAc,sCAAsC,CAAC;AACrD,cAAc,
|
|
1
|
+
{"version":3,"file":"index.lib.d.ts","sourceRoot":"","sources":["../src/index.lib.ts"],"names":[],"mappings":"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"}
|
package/index.mjs
CHANGED
|
@@ -31041,7 +31041,7 @@ var pU = LH, mU = zH, hU = VH, gU = UH, _U = YH, vU = ZH, yU = $H, bU = tU, xU =
|
|
|
31041
31041
|
});
|
|
31042
31042
|
EU.displayName = "MenuCheckboxItem";
|
|
31043
31043
|
//#endregion
|
|
31044
|
-
//#region src/components/collections/
|
|
31044
|
+
//#region src/components/collections/LegacyDropdownMenu/MenuCheckboxGroup/MenuCheckboxGroup.tsx
|
|
31045
31045
|
var DU = l(({ ...e }, t) => /* @__PURE__ */ T("div", {
|
|
31046
31046
|
ref: t,
|
|
31047
31047
|
role: "group",
|
|
@@ -31049,14 +31049,14 @@ var DU = l(({ ...e }, t) => /* @__PURE__ */ T("div", {
|
|
|
31049
31049
|
}));
|
|
31050
31050
|
DU.displayName = "MenuCheckboxGroup", DU.Item = EU;
|
|
31051
31051
|
//#endregion
|
|
31052
|
-
//#region src/components/collections/
|
|
31052
|
+
//#region src/components/collections/LegacyDropdownMenu/MenuCustomItem/MenuCustomItem.tsx
|
|
31053
31053
|
var OU = l((e, t) => /* @__PURE__ */ T(_U, {
|
|
31054
31054
|
ref: t,
|
|
31055
31055
|
...e
|
|
31056
31056
|
}));
|
|
31057
31057
|
OU.displayName = "MenuCustomItem";
|
|
31058
31058
|
//#endregion
|
|
31059
|
-
//#region src/components/collections/
|
|
31059
|
+
//#region src/components/collections/LegacyDropdownMenu/MenuItem/MenuItem.tsx
|
|
31060
31060
|
var kU = l(({ onSelect: e, ...t }, n) => /* @__PURE__ */ T(_U, {
|
|
31061
31061
|
ref: n,
|
|
31062
31062
|
onSelect: e,
|
|
@@ -31066,7 +31066,7 @@ var kU = l(({ onSelect: e, ...t }, n) => /* @__PURE__ */ T(_U, {
|
|
|
31066
31066
|
}));
|
|
31067
31067
|
kU.displayName = "MenuItem";
|
|
31068
31068
|
//#endregion
|
|
31069
|
-
//#region src/components/collections/
|
|
31069
|
+
//#region src/components/collections/LegacyDropdownMenu/MenuRadioGroup/MenuRadioItem.tsx
|
|
31070
31070
|
var AU = l(({ children: e, className: t, description: n, noWrap: r, ...i }, a) => {
|
|
31071
31071
|
let o = S(null), s = p((e) => {
|
|
31072
31072
|
o.current = e, typeof a == "function" ? a(e) : a && (a.current = e);
|
|
@@ -31094,14 +31094,14 @@ var AU = l(({ children: e, className: t, description: n, noWrap: r, ...i }, a) =
|
|
|
31094
31094
|
});
|
|
31095
31095
|
AU.displayName = "MenuRadioItem";
|
|
31096
31096
|
//#endregion
|
|
31097
|
-
//#region src/components/collections/
|
|
31097
|
+
//#region src/components/collections/LegacyDropdownMenu/MenuRadioGroup/MenuRadioGroup.tsx
|
|
31098
31098
|
var jU = l(({ ...e }, t) => /* @__PURE__ */ T(yU, {
|
|
31099
31099
|
ref: t,
|
|
31100
31100
|
...e
|
|
31101
31101
|
}));
|
|
31102
31102
|
jU.displayName = "MenuRadioGroup", jU.Item = AU;
|
|
31103
31103
|
//#endregion
|
|
31104
|
-
//#region src/components/collections/
|
|
31104
|
+
//#region src/components/collections/LegacyDropdownMenu/MenuSeparator/MenuSeparator.tsx
|
|
31105
31105
|
var MU = l(({ type: e, children: t, ...n }, r) => /* @__PURE__ */ T(SU, {
|
|
31106
31106
|
ref: r,
|
|
31107
31107
|
...n,
|
|
@@ -31112,7 +31112,7 @@ var MU = l(({ type: e, children: t, ...n }, r) => /* @__PURE__ */ T(SU, {
|
|
|
31112
31112
|
}));
|
|
31113
31113
|
MU.displayName = "MenuSeparator";
|
|
31114
31114
|
//#endregion
|
|
31115
|
-
//#region src/components/collections/
|
|
31115
|
+
//#region src/components/collections/LegacyDropdownMenu/SubMenu.tsx
|
|
31116
31116
|
var NU = ({ triggerProps: e, children: t, className: n, withPortal: r, open: a, defaultOpen: o, onOpenChange: s, ...c }) => {
|
|
31117
31117
|
let [l, u] = FB({
|
|
31118
31118
|
value: a,
|
|
@@ -53160,17 +53160,20 @@ var Rme = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
53160
53160
|
children: t
|
|
53161
53161
|
})]
|
|
53162
53162
|
})
|
|
53163
|
-
}), Jme = ({ titleBlock: e,
|
|
53164
|
-
...
|
|
53165
|
-
className: H("px-4 pt-e700 pb-e1000 sm:px-6 md:px-8 xl:px-10",
|
|
53163
|
+
}), Jme = ({ titleBlock: e, background: t = "lightgrey", className: n, children: r, ...i }) => /* @__PURE__ */ T("section", {
|
|
53164
|
+
...i,
|
|
53165
|
+
className: H("px-4 pt-e700 pb-e1000 sm:px-6 md:px-8 xl:px-10", {
|
|
53166
|
+
"bg-surface-default": t === "white",
|
|
53167
|
+
"bg-neutral-50": t === "lightgrey"
|
|
53168
|
+
}, n),
|
|
53166
53169
|
children: /* @__PURE__ */ E("div", {
|
|
53167
53170
|
className: "mx-auto flex max-w-[1200px] flex-col gap-i600 lg:flex-row lg:gap-i500",
|
|
53168
53171
|
children: [/* @__PURE__ */ T("div", {
|
|
53169
53172
|
className: "w-full shrink-0 lg:w-[360px] lg:pt-2",
|
|
53170
53173
|
children: e
|
|
53171
|
-
}), !!
|
|
53174
|
+
}), !!r && /* @__PURE__ */ T("div", {
|
|
53172
53175
|
className: "grow divide-y divide-misc-divider border-y border-misc-divider",
|
|
53173
|
-
children:
|
|
53176
|
+
children: r
|
|
53174
53177
|
})]
|
|
53175
53178
|
})
|
|
53176
53179
|
}), Yme = ({ question: e, answer: t, ...n }) => {
|
|
@@ -56169,6 +56172,6 @@ var Zge = $9, Qge = ({ videoId: e, className: t }) => {
|
|
|
56169
56172
|
}) : null;
|
|
56170
56173
|
};
|
|
56171
56174
|
//#endregion
|
|
56172
|
-
export { T9 as API_BASIC_PLAN_SHORTNAME, D9 as API_ENTERPRISE_PLAN_SHORTNAME, E9 as API_PLUS_PLAN_SHORTNAME, Ome as AccentDropZone, RU as ActionButton, ofe as ActionHeader, iG as ActivityIndicator, Nfe as ActivityRow, kme as ApiHeroBlock, jhe as ApiPricingCardsContainer, Nhe as ApiPricingCardsItem, zhe as ApiPricingFeaturesLegend, Bhe as ApiPricingFeaturesSectionItemBadge, Phe as ApiPricingMonthlyPricePerImage, Fhe as ApiPricingPartnerCard, Dt as AppButton, Vhe as AppPricingCardsContainer, Whe as AppPricingCardsItemV2, Ghe as AppPricingFeaturesLegend, Khe as AppPricingFeaturesSectionItemBadge, s9 as ArticleAuthor, c9 as ArticleContent, jme as ArticleHeroBlock, Mme as AssetPreview, Ko as Avatar, Lfe as AvatarSkeleton, Ufe as AvatarStack, Fme as AwardsBlock, $o as Badge, Ime as BlogActionBlock, gW as BlogActionCard, _W as BlogEditorialCard, Lme as BlogQuoteBlock, Ot as BlogSocialButton, d9 as BlogSubtleActionBlock, DW as Bone, Wfe as Breadcrumbs, Ln as Button, zn as ButtonCluster, Tn as CDN, oue as CODE_LENGTH, c3 as CanvasInput, tpe as CardBadge, Rme as CardsBlock, zme as CardsHeroBlock, Bme as CareersBlock, Vme as CareersBlockItem, RB as CheckGroup, IB as CheckGroupContext, b3 as Checkbox, iue as CheckboxField, aue as Chip, t3 as ChoiceFeedTile, n3 as ChoiceFeedTileGroup, K5 as ChoiceMultipleGroup, q5 as ChoiceSingleGroup, J5 as ChoiceSingleTile, Hn as CircularButton, Gn as ClearButton, S3 as CodeInput, Ble as CollectionTile, uq as ColorPalette, WJ as ColorPicker, KJ as ColorRow, GW as ColorSwatch, fq as ColorWheel, Pfe as CommentRow, Hme as ComparisonBlock, CW as ComparisonSlider, Ume as ComparisonTable, jH as ContextMenu, Wme as CustomerStoriesBlock, TW as CustomerStoryCard, Gme as DataBlock, OW as DesignPreview, qK as Dialog, TH as Divider, C3 as DomainField, j3 as DropZone, T3 as DropZoneAreaWrapper, D3 as DropZoneFullscreen, E3 as DropZoneOverlay, rq as DropdownListBox, iq as DropdownListBoxItem, PU as DropdownMenu, aq as DropdownSearchField, q3 as DropdownSelectionMenu, zW as EditorialCard, Kme as EditorialLineupBlock, npe as EmptySpace, Ffe as EventRow, upe as ExportLimitCard, qme as ExtraTextBlock, Jme as FaqBlock, Yme as FaqItem, $me as FeatureBlock, rhe as FeatureBlockListItem, ehe as FeatureClassicVisual, the as FeatureSwitcher, nhe as FeatureVideoElement, Xme as FeaturesBlock, Jpe as FeaturesList, ihe as FeaturesListBlock, ahe as FeaturesListBlockItem, IU as FeedHeader, Ms as FeedTile, Kn as FieldClearButton, lq as FieldLabel, ohe as FocusBlock, P3 as FolderList, K8 as FontFamilyRow, I3 as FontWeightSelectorItem, m9 as FooterV2Block, fpe as FullScreenLoader, ppe as Gauge, _9 as GlossaryAlphabet, uhe as GlossarySection, v9 as GlossaryTermCard, b9 as HeaderBanner, Xpe as Heading, Yo as HelpButton, bJ as HelperText, Xo as HeroButton, dhe as HeroTitleBlock, O3 as HiddenFileInput, T7 as HighLightedText, Hle as Hint, qJ as HoverObjectBox, L3 as ImageField, R3 as ImagePicker, H3 as ImageWidget, fhe as ImpactBlock, phe as ImpactCard, U3 as ImportWidget, Zpe as InfoBanner, Gle as InfoBar, Zo as InfoButton, mhe as InfoSnapshot, hhe as InfoSnapshotItem, BW as InfoTable, VW as InfoTableRow, UJ as InlineColorPicker, W3 as InlineRadioGroup, G3 as InlineSelector, Ls as InputButton, ghe as InspirationWallBlock, _he as JoinTeamBlock, xJ as Label, JJ as LayerIndicator, As as LazyImage, HW as LightPromoBanner, Us as LimitButton, tq as LimitGauge, Hs as LimitIndicatorGauge, UW as LinkCard, Y5 as ListChoiceSingleTile, YJ as ListItem, qs as LoginButton, vhe as LogosBlock, yhe as LogosWallBlock, Cme as MobileDrawer, Js as MobileNavigationButton, bW as MoreTile, LU as MultiActionWidget, $s as NavigationButton, Qs as NavigationToggleButton, JW as NewPaletteTile, c7 as Notification, gpe as NotificationImage, Bpe as NotificationStack, Vpe as NotificationsStore, zJ as NumberField, Dme as NumberSelectField, XJ as ObjectItem, KW as ObjectPreview, YW as OfferCard, bhe as OffersBlock, Y3 as OptionGroup, tc as OverlayButton, ec as OverlayButtonBase, nc as OverlaySelectButton, z9 as PROMO_BANNER_SESSION_KEY, xhe as PageTitle, w7 as PanelHeader, S7 as PanelHeaderSwitcherButton, X3 as PanelStandardInput, sfe as PeopleListItem, yue as PhotoDropZone, $J as Pill, QJ as PillDivider, o3 as PlaceholderTile, Gfe as PlanPicker, She as PlaygroundBlock, Che as PlaygroundHeroBlock, hW as Popover, nY as PresenceObjectBox, Q3 as PresetGroup, rc as PresetPullDownButton, whe as PressBlock, qG as PreviewBox, Ihe as PricingFeatures, A9 as PricingFeaturesLegend, Lhe as PricingFeaturesSection, Rhe as PricingFeaturesSectionItem, j9 as PricingFeaturesSectionItemBadge, The as PricingHeroBlock, qhe as PricingPicker, Xhe as PricingPickerButton, ys as ProBadge, oG as ProductTile, s7 as Progress, g7 as ProgressStep, Zhe as PromoBannerBlock, r3 as Prompt, i3 as PromptSuggestion, sG as PromptTile, mG as PropList, lc as PullDownButton, uc as QuickActionCard, Sue as QuickActionPhotoCard, Qhe as QuickToolHeroBlock, $he as QuoteBlock, $3 as RadioGroup, Tue as ReactionBar, Eue as ReactionButton, dc as RetryButton, tge as Review, ege as ReviewsBlock, gc as RoundButton, _c as RoundedButton, n6 as SamplePicker, m8 as SearchInput, p8 as SearchableSelect, nge as SectionTitle, D5 as SegmentedControl, Zfe as SegmentedPicker, CJ as SelectField, K3 as SelectTrigger, N3 as SelectionBadge, Q4 as SelectionObjectBox, VG as SelectionTile, rG as SellScore, Wpe as Shortcut, O5 as SideNavigationHeader, k5 as SideNavigationItem, $fe as SideNavigationItemSkeleton, rge as SidePageTitle, q8 as SizeListItem, I8 as Slider, Yde as SliderField, ige as SmallSectionTitle, vc as SocialButton, oq as SpaceDropdownActionItem, sq as SpaceDropdownItem, cq as SpacePullDownButton, nq as SpaceUsageDialog, bc as StandaloneLink, $de as StandardInput, L8 as StandardInputImagePrompt, z8 as StandardInputTextPrompt, HG as StarterTile, v7 as StatusBadge, UG as StepCard, age as StepsBlock, WT as StoreButton, bs as StudioBadge, Vle as Suggestion, B8 as SwitchField, V8 as SwitchGroup, M5 as Tabs, B9 as TagCloudBlock, U8 as TagField, H8 as TagFieldComponent, P5 as TagGroup, I5 as TagNavigation, oge as TakeActionBlock, sge as TakeActionBlockV2, cge as TestimonialsBlock, R8 as TextArea, lge as TextContentBlock, dge as TextContentCard, W8 as TextEditionBox, G8 as TextField, ife as TextFieldLabel, EJ as TextInput, a3 as TextSuggestion, $4 as TextureSwatch, Gpe as ToastProgress, nE as ToggleButton, PE as ToggleStack, V9 as ToolCard, fge as ToolCategoryBannerBlock, L5 as ToolMenuButton, H9 as ToolSmallCard, so as Tooltip, lo as TooltipSection, qo as TooltipUserRow, Kpe as TransformationEmptySpace, mge as UseCaseItemContentTransform, hge as UseCaseItemContentTransformItem, pge as UseCasesBlock, FE as ValidationBanner, _ge as ValueCard, gge as ValuesBlock, Afe as VariantsList, T5 as VariantsListItem, GG as VideoPlayer, YG as VisualToolTile, Qge as YoutubeEmbed, EW as boneVariants, H as cn, KK as contentVariants, Jo as convertMarkdownLinksToHTML, N9 as getMonthlyPriceDetails, M9 as getWeeklyPriceDetails, P9 as getYearlyPriceDetails, bn as isValidComponent, yn as noop, GK as overlayVariants, O9 as useApiMonthlyPlanPrice, F9 as useBillingPeriodPrices, PB as useCarousel, LB as useCheckGroup, sue as useCodeInput, FB as useControlledState, dpe as useExportLimitCard, A3 as useFileUploader, zB as useFocusKeyNav, mH as useFuse, hH as useLazyLoadVideo, I9 as useLocalizedAppPriceInfo, gH as usePasteFilesHandler, x9 as usePriceCountryCurrencyDisplayName, _H as useWindowDragEvents, co as withTooltip };
|
|
56175
|
+
export { T9 as API_BASIC_PLAN_SHORTNAME, D9 as API_ENTERPRISE_PLAN_SHORTNAME, E9 as API_PLUS_PLAN_SHORTNAME, Ome as AccentDropZone, RU as ActionButton, ofe as ActionHeader, iG as ActivityIndicator, Nfe as ActivityRow, kme as ApiHeroBlock, jhe as ApiPricingCardsContainer, Nhe as ApiPricingCardsItem, zhe as ApiPricingFeaturesLegend, Bhe as ApiPricingFeaturesSectionItemBadge, Phe as ApiPricingMonthlyPricePerImage, Fhe as ApiPricingPartnerCard, Dt as AppButton, Vhe as AppPricingCardsContainer, Whe as AppPricingCardsItemV2, Ghe as AppPricingFeaturesLegend, Khe as AppPricingFeaturesSectionItemBadge, s9 as ArticleAuthor, c9 as ArticleContent, jme as ArticleHeroBlock, Mme as AssetPreview, Ko as Avatar, Lfe as AvatarSkeleton, Ufe as AvatarStack, Fme as AwardsBlock, $o as Badge, Ime as BlogActionBlock, gW as BlogActionCard, _W as BlogEditorialCard, Lme as BlogQuoteBlock, Ot as BlogSocialButton, d9 as BlogSubtleActionBlock, DW as Bone, Wfe as Breadcrumbs, Ln as Button, zn as ButtonCluster, Tn as CDN, oue as CODE_LENGTH, c3 as CanvasInput, tpe as CardBadge, Rme as CardsBlock, zme as CardsHeroBlock, Bme as CareersBlock, Vme as CareersBlockItem, RB as CheckGroup, IB as CheckGroupContext, b3 as Checkbox, iue as CheckboxField, aue as Chip, t3 as ChoiceFeedTile, n3 as ChoiceFeedTileGroup, K5 as ChoiceMultipleGroup, q5 as ChoiceSingleGroup, J5 as ChoiceSingleTile, Hn as CircularButton, Gn as ClearButton, S3 as CodeInput, Ble as CollectionTile, uq as ColorPalette, WJ as ColorPicker, KJ as ColorRow, GW as ColorSwatch, fq as ColorWheel, Pfe as CommentRow, Hme as ComparisonBlock, CW as ComparisonSlider, Ume as ComparisonTable, jH as ContextMenu, Wme as CustomerStoriesBlock, TW as CustomerStoryCard, Gme as DataBlock, OW as DesignPreview, qK as Dialog, TH as Divider, C3 as DomainField, j3 as DropZone, T3 as DropZoneAreaWrapper, D3 as DropZoneFullscreen, E3 as DropZoneOverlay, rq as DropdownListBox, iq as DropdownListBoxItem, PU as DropdownMenu, PU as LegacyDropdownMenu, aq as DropdownSearchField, q3 as DropdownSelectionMenu, zW as EditorialCard, Kme as EditorialLineupBlock, npe as EmptySpace, Ffe as EventRow, upe as ExportLimitCard, qme as ExtraTextBlock, Jme as FaqBlock, Yme as FaqItem, $me as FeatureBlock, rhe as FeatureBlockListItem, ehe as FeatureClassicVisual, the as FeatureSwitcher, nhe as FeatureVideoElement, Xme as FeaturesBlock, Jpe as FeaturesList, ihe as FeaturesListBlock, ahe as FeaturesListBlockItem, IU as FeedHeader, Ms as FeedTile, Kn as FieldClearButton, lq as FieldLabel, ohe as FocusBlock, P3 as FolderList, K8 as FontFamilyRow, I3 as FontWeightSelectorItem, m9 as FooterV2Block, fpe as FullScreenLoader, ppe as Gauge, _9 as GlossaryAlphabet, uhe as GlossarySection, v9 as GlossaryTermCard, b9 as HeaderBanner, Xpe as Heading, Yo as HelpButton, bJ as HelperText, Xo as HeroButton, dhe as HeroTitleBlock, O3 as HiddenFileInput, T7 as HighLightedText, Hle as Hint, qJ as HoverObjectBox, L3 as ImageField, R3 as ImagePicker, H3 as ImageWidget, fhe as ImpactBlock, phe as ImpactCard, U3 as ImportWidget, Zpe as InfoBanner, Gle as InfoBar, Zo as InfoButton, mhe as InfoSnapshot, hhe as InfoSnapshotItem, BW as InfoTable, VW as InfoTableRow, UJ as InlineColorPicker, W3 as InlineRadioGroup, G3 as InlineSelector, Ls as InputButton, ghe as InspirationWallBlock, _he as JoinTeamBlock, xJ as Label, JJ as LayerIndicator, As as LazyImage, HW as LightPromoBanner, Us as LimitButton, tq as LimitGauge, Hs as LimitIndicatorGauge, UW as LinkCard, Y5 as ListChoiceSingleTile, YJ as ListItem, qs as LoginButton, vhe as LogosBlock, yhe as LogosWallBlock, Cme as MobileDrawer, Js as MobileNavigationButton, bW as MoreTile, LU as MultiActionWidget, $s as NavigationButton, Qs as NavigationToggleButton, JW as NewPaletteTile, c7 as Notification, gpe as NotificationImage, Bpe as NotificationStack, Vpe as NotificationsStore, zJ as NumberField, Dme as NumberSelectField, XJ as ObjectItem, KW as ObjectPreview, YW as OfferCard, bhe as OffersBlock, Y3 as OptionGroup, tc as OverlayButton, ec as OverlayButtonBase, nc as OverlaySelectButton, z9 as PROMO_BANNER_SESSION_KEY, xhe as PageTitle, w7 as PanelHeader, S7 as PanelHeaderSwitcherButton, X3 as PanelStandardInput, sfe as PeopleListItem, yue as PhotoDropZone, $J as Pill, QJ as PillDivider, o3 as PlaceholderTile, Gfe as PlanPicker, She as PlaygroundBlock, Che as PlaygroundHeroBlock, hW as Popover, nY as PresenceObjectBox, Q3 as PresetGroup, rc as PresetPullDownButton, whe as PressBlock, qG as PreviewBox, Ihe as PricingFeatures, A9 as PricingFeaturesLegend, Lhe as PricingFeaturesSection, Rhe as PricingFeaturesSectionItem, j9 as PricingFeaturesSectionItemBadge, The as PricingHeroBlock, qhe as PricingPicker, Xhe as PricingPickerButton, ys as ProBadge, oG as ProductTile, s7 as Progress, g7 as ProgressStep, Zhe as PromoBannerBlock, r3 as Prompt, i3 as PromptSuggestion, sG as PromptTile, mG as PropList, lc as PullDownButton, uc as QuickActionCard, Sue as QuickActionPhotoCard, Qhe as QuickToolHeroBlock, $he as QuoteBlock, $3 as RadioGroup, Tue as ReactionBar, Eue as ReactionButton, dc as RetryButton, tge as Review, ege as ReviewsBlock, gc as RoundButton, _c as RoundedButton, n6 as SamplePicker, m8 as SearchInput, p8 as SearchableSelect, nge as SectionTitle, D5 as SegmentedControl, Zfe as SegmentedPicker, CJ as SelectField, K3 as SelectTrigger, N3 as SelectionBadge, Q4 as SelectionObjectBox, VG as SelectionTile, rG as SellScore, Wpe as Shortcut, O5 as SideNavigationHeader, k5 as SideNavigationItem, $fe as SideNavigationItemSkeleton, rge as SidePageTitle, q8 as SizeListItem, I8 as Slider, Yde as SliderField, ige as SmallSectionTitle, vc as SocialButton, oq as SpaceDropdownActionItem, sq as SpaceDropdownItem, cq as SpacePullDownButton, nq as SpaceUsageDialog, bc as StandaloneLink, $de as StandardInput, L8 as StandardInputImagePrompt, z8 as StandardInputTextPrompt, HG as StarterTile, v7 as StatusBadge, UG as StepCard, age as StepsBlock, WT as StoreButton, bs as StudioBadge, Vle as Suggestion, B8 as SwitchField, V8 as SwitchGroup, M5 as Tabs, B9 as TagCloudBlock, U8 as TagField, H8 as TagFieldComponent, P5 as TagGroup, I5 as TagNavigation, oge as TakeActionBlock, sge as TakeActionBlockV2, cge as TestimonialsBlock, R8 as TextArea, lge as TextContentBlock, dge as TextContentCard, W8 as TextEditionBox, G8 as TextField, ife as TextFieldLabel, EJ as TextInput, a3 as TextSuggestion, $4 as TextureSwatch, Gpe as ToastProgress, nE as ToggleButton, PE as ToggleStack, V9 as ToolCard, fge as ToolCategoryBannerBlock, L5 as ToolMenuButton, H9 as ToolSmallCard, so as Tooltip, lo as TooltipSection, qo as TooltipUserRow, Kpe as TransformationEmptySpace, mge as UseCaseItemContentTransform, hge as UseCaseItemContentTransformItem, pge as UseCasesBlock, FE as ValidationBanner, _ge as ValueCard, gge as ValuesBlock, Afe as VariantsList, T5 as VariantsListItem, GG as VideoPlayer, YG as VisualToolTile, Qge as YoutubeEmbed, EW as boneVariants, H as cn, KK as contentVariants, Jo as convertMarkdownLinksToHTML, N9 as getMonthlyPriceDetails, M9 as getWeeklyPriceDetails, P9 as getYearlyPriceDetails, bn as isValidComponent, yn as noop, GK as overlayVariants, O9 as useApiMonthlyPlanPrice, F9 as useBillingPeriodPrices, PB as useCarousel, LB as useCheckGroup, sue as useCodeInput, FB as useControlledState, dpe as useExportLimitCard, A3 as useFileUploader, zB as useFocusKeyNav, mH as useFuse, hH as useLazyLoadVideo, I9 as useLocalizedAppPriceInfo, gH as usePasteFilesHandler, x9 as usePriceCountryCurrencyDisplayName, _H as useWindowDragEvents, co as withTooltip };
|
|
56173
56176
|
|
|
56174
56177
|
//# sourceMappingURL=index.mjs.map
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DropdownMenu.d.ts","sourceRoot":"","sources":["../../../../src/components/collections/DropdownMenu/DropdownMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAcnE,MAAM,MAAM,iBAAiB,GAAG,QAAQ,CACtC;IACE,cAAc,EAAE,KAAK,CAAC,SAAS,CAAC;IAChC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,GAAG,iBAAiB,CAAC,iBAAiB,GACrC,IAAI,CACF,iBAAiB,CAAC,wBAAwB,EAC1C,MAAM,GAAG,OAAO,GAAG,iBAAiB,GAAG,YAAY,GAAG,kBAAkB,CACzE,GACD,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CACvC,CAAC;AAIF,eAAO,MAAM,YAAY;mMActB,iBAAiB;;;;;;;;;;;;;;;CA2CnB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MenuCheckboxGroup.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/DropdownMenu/MenuCheckboxGroup/MenuCheckboxGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,aAAa,EAAc,MAAM,OAAO,CAAC;AAE7E,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEtD,MAAM,MAAM,sBAAsB,GAAG,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,CAAC;AAEpF,KAAK,qBAAqB,GAAG;IAC3B,IAAI,EAAE,OAAO,gBAAgB,CAAC;CAC/B,GAAG,yBAAyB,CAAC,sBAAsB,GAAG,aAAa,CAAC,cAAc,CAAC,CAAC,CAAC;AAEtF,eAAO,MAAM,iBAAiB,EAIzB,qBAAqB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MenuCheckboxItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/DropdownMenu/MenuCheckboxGroup/MenuCheckboxItem.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAMnE,MAAM,MAAM,qBAAqB,GAAG,QAAQ,CAC1C;IACE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB,GAAG,iBAAiB,CAAC,6BAA6B,GACjD,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CACvC,CAAC;AAEF,eAAO,MAAM,gBAAgB;kBANX,MAAM;aACX,OAAO;sJAuEnB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/DropdownMenu/MenuCheckboxGroup/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MenuCustomItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/DropdownMenu/MenuCustomItem/MenuCustomItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAGnE,MAAM,MAAM,mBAAmB,GAAG,iBAAiB,CAAC,qBAAqB,CAAC;AAE1E,eAAO,MAAM,cAAc,oIAEzB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/DropdownMenu/MenuCustomItem/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MenuItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/DropdownMenu/MenuItem/MenuItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAGnE,OAAO,EAAkB,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AAEtF,MAAM,MAAM,aAAa,GAAG,mBAAmB,GAC7C,IAAI,CAAC,iBAAiB,CAAC,qBAAqB,EAAE,SAAS,GAAG,WAAW,CAAC,CAAC;AAEzE,eAAO,MAAM,QAAQ,uHAMnB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/DropdownMenu/MenuItem/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MenuRadioGroup.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/DropdownMenu/MenuRadioGroup/MenuRadioGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AACnE,OAAO,EAAE,yBAAyB,EAAE,aAAa,EAAc,MAAM,OAAO,CAAC;AAE7E,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,MAAM,MAAM,mBAAmB,GAAG,QAAQ,CACxC,iBAAiB,CAAC,2BAA2B,GAAG,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CACrF,CAAC;AAEF,KAAK,kBAAkB,GAAG;IACxB,IAAI,EAAE,OAAO,aAAa,CAAC;CAC5B,GAAG,yBAAyB,CAAC,mBAAmB,GAAG,aAAa,CAAC,cAAc,CAAC,CAAC,CAAC;AAEnF,eAAO,MAAM,cAAc,EAErB,kBAAkB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MenuRadioItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/DropdownMenu/MenuRadioGroup/MenuRadioItem.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAMnE,MAAM,MAAM,kBAAkB,GAAG,QAAQ,CACvC;IACE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB,GAAG,iBAAiB,CAAC,0BAA0B,GAC9C,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CACvC,CAAC;AAEF,eAAO,MAAM,aAAa;kBANR,MAAM;aACX,OAAO;mJA6DnB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/DropdownMenu/MenuRadioGroup/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MenuSeparator.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/DropdownMenu/MenuSeparator/MenuSeparator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAGnE,OAAO,EAEL,kBAAkB,IAAI,wBAAwB,EAC/C,MAAM,gCAAgC,CAAC;AAExC,MAAM,MAAM,kBAAkB,GAAG,QAAQ,CACvC,wBAAwB,GACtB,iBAAiB,CAAC,0BAA0B,GAC5C,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CACvC,CAAC;AAEF,eAAO,MAAM,aAAa;;;;oJAQzB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/collections/DropdownMenu/MenuSeparator/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SubMenu.d.ts","sourceRoot":"","sources":["../../../../src/components/collections/DropdownMenu/SubMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAKnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AAGnE,MAAM,MAAM,YAAY,GAAG,QAAQ,CAAC;IAClC,YAAY,EAAE,mBAAmB,CAAC;IAClC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC,GACA,iBAAiB,CAAC,oBAAoB,GACtC,iBAAiB,CAAC,2BAA2B,CAAC;AAEhD,eAAO,MAAM,OAAO,GAAI,iIASrB,YAAY,4CA8Bd,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/collections/DropdownMenu/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC"}
|
|
File without changes
|
|
File without changes
|
/package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuCheckboxGroup/index.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuCustomItem/index.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuRadioGroup/index.d.ts
RENAMED
|
File without changes
|
/package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuSeparator/MenuSeparator.d.ts
RENAMED
|
File without changes
|
/package/components/collections/{DropdownMenu → LegacyDropdownMenu}/MenuSeparator/index.d.ts
RENAMED
|
File without changes
|
|
File without changes
|