@photoroom/ui 0.1.168 → 0.1.169
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/index.d.ts +1 -0
- package/components/index.d.ts.map +1 -1
- package/components/website/BentoBlock/BentoBlock.d.ts +5 -0
- package/components/website/BentoBlock/BentoBlock.d.ts.map +1 -0
- package/components/website/BentoBlock/BentoCard.d.ts +8 -0
- package/components/website/BentoBlock/BentoCard.d.ts.map +1 -0
- package/components/website/BentoBlock/BentoCard.figma.d.ts +2 -0
- package/components/website/BentoBlock/BentoCard.figma.d.ts.map +1 -0
- package/components/website/BentoBlock/index.d.ts +3 -0
- package/components/website/BentoBlock/index.d.ts.map +1 -0
- package/components/website/FeaturesSpotlightBlock/FeaturesSpotlightBlock.d.ts +1 -2
- package/components/website/FeaturesSpotlightBlock/FeaturesSpotlightBlock.d.ts.map +1 -1
- package/index.css +1 -1
- package/index.lib.d.ts +1 -0
- package/index.lib.d.ts.map +1 -1
- package/index.mjs +201 -157
- package/package.json +2 -2
package/index.mjs
CHANGED
|
@@ -54565,7 +54565,51 @@ var kge = ({ title: e, date: t, className: n }) => /* @__PURE__ */ E("div", {
|
|
|
54565
54565
|
]
|
|
54566
54566
|
})
|
|
54567
54567
|
})
|
|
54568
|
-
}), Fge = ({
|
|
54568
|
+
}), Fge = ({ titleBlock: e, children: t, className: r, ...i }) => {
|
|
54569
|
+
let a = n.toArray(t);
|
|
54570
|
+
return /* @__PURE__ */ T("section", {
|
|
54571
|
+
className: H("pt-e700 pb-e1000 w-full px-4 sm:px-6 md:px-8 xl:px-10", r),
|
|
54572
|
+
...i,
|
|
54573
|
+
children: /* @__PURE__ */ E("div", {
|
|
54574
|
+
className: "mx-auto flex w-full max-w-[1200px] flex-col items-center",
|
|
54575
|
+
children: [!!e && /* @__PURE__ */ T("div", {
|
|
54576
|
+
className: "pb-i600 w-full",
|
|
54577
|
+
children: e
|
|
54578
|
+
}), /* @__PURE__ */ E("div", {
|
|
54579
|
+
className: "flex w-full flex-col gap-6",
|
|
54580
|
+
children: [/* @__PURE__ */ T("div", {
|
|
54581
|
+
className: "grid grid-cols-1 gap-6 sm:grid-cols-2 lg:grid-cols-[minmax(0,1fr)_minmax(0,400px)]",
|
|
54582
|
+
children: a.slice(0, 2)
|
|
54583
|
+
}), a.length > 2 && /* @__PURE__ */ T("div", {
|
|
54584
|
+
className: "grid grid-cols-1 gap-6 sm:grid-cols-2 lg:grid-cols-[minmax(0,400px)_minmax(0,1fr)]",
|
|
54585
|
+
children: a.slice(2, 4)
|
|
54586
|
+
})]
|
|
54587
|
+
})]
|
|
54588
|
+
})
|
|
54589
|
+
});
|
|
54590
|
+
}, Ige = ({ preview: e, title: t, subtitle: n, cta: r, className: i, ...a }) => /* @__PURE__ */ E("div", {
|
|
54591
|
+
...a,
|
|
54592
|
+
className: H("relative overflow-hidden", "flex flex-col lg:pb-[148px]", "bg-sand-50 rounded-500", i),
|
|
54593
|
+
children: [/* @__PURE__ */ T("div", {
|
|
54594
|
+
className: V("relative", "aspect-[4/3] w-full lg:aspect-auto lg:h-[300px]", "[&_img]:size-full [&_img]:object-cover lg:[&_img]:object-top-left"),
|
|
54595
|
+
children: e
|
|
54596
|
+
}), /* @__PURE__ */ E("div", {
|
|
54597
|
+
className: V("lg:absolute lg:inset-x-0 lg:bottom-0", "flex flex-1 flex-col justify-between gap-6 lg:flex-row lg:items-end", "p-6 lg:p-8", "bg-sand-50"),
|
|
54598
|
+
children: [/* @__PURE__ */ E("div", {
|
|
54599
|
+
className: "flex flex-col gap-4 lg:flex-1",
|
|
54600
|
+
children: [/* @__PURE__ */ T("div", {
|
|
54601
|
+
className: "component-700 text-content-primary text-balance lg:max-w-[400px]",
|
|
54602
|
+
children: t
|
|
54603
|
+
}), /* @__PURE__ */ T("div", {
|
|
54604
|
+
className: "body-light-500 text-content-secondary text-pretty lg:max-w-[400px]",
|
|
54605
|
+
children: n
|
|
54606
|
+
})]
|
|
54607
|
+
}), !!r && /* @__PURE__ */ T("div", {
|
|
54608
|
+
className: "shrink-0",
|
|
54609
|
+
children: r
|
|
54610
|
+
})]
|
|
54611
|
+
})]
|
|
54612
|
+
}), Lge = ({ title: e, children: t, cta: n, className: r }) => {
|
|
54569
54613
|
let i = b(() => n ? o(n, {
|
|
54570
54614
|
as: "a",
|
|
54571
54615
|
variant: "primary",
|
|
@@ -54589,7 +54633,7 @@ var kge = ({ title: e, date: t, className: n }) => /* @__PURE__ */ E("div", {
|
|
|
54589
54633
|
})
|
|
54590
54634
|
]
|
|
54591
54635
|
});
|
|
54592
|
-
},
|
|
54636
|
+
}, Rge = ({ variant: e = "default", author: t, children: n, className: r, ...i }) => /* @__PURE__ */ E("blockquote", {
|
|
54593
54637
|
className: V("not-prose flex flex-col gap-4", "content-to-edge-spacious-pl-700 my-10 sm:my-12 sm:pl-[30px]", "border-misc-border border-l-2", r),
|
|
54594
54638
|
...i,
|
|
54595
54639
|
children: [/* @__PURE__ */ T("div", {
|
|
@@ -54622,21 +54666,21 @@ var kge = ({ title: e, date: t, className: n }) => /* @__PURE__ */ E("div", {
|
|
|
54622
54666
|
u9.displayName = "BlogSubtleActionBlock";
|
|
54623
54667
|
//#endregion
|
|
54624
54668
|
//#region src/components/website/CardsBlock/CardsBlock.tsx
|
|
54625
|
-
var
|
|
54669
|
+
var zge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
54626
54670
|
className: V("pt-e700 pb-e1000 gap-i600 flex flex-col", "px-4 sm:px-6 md:px-8 xl:px-10"),
|
|
54627
54671
|
...n,
|
|
54628
54672
|
children: [e, /* @__PURE__ */ T("div", {
|
|
54629
54673
|
className: V("mx-auto w-full xl:max-w-[1200px]", "grid grid-cols-1 gap-y-8", "sm:grid-cols-2 sm:gap-6 sm:gap-y-12", "lg:grid-cols-3"),
|
|
54630
54674
|
children: t
|
|
54631
54675
|
})]
|
|
54632
|
-
}),
|
|
54676
|
+
}), Bge = ({ items: e, titleBlock: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
54633
54677
|
className: V("gap-i600 flex flex-col", "px-4 sm:px-6 md:px-8 xl:px-10", "pt-e600 pb-e500 sm:pt-e500"),
|
|
54634
54678
|
...n,
|
|
54635
54679
|
children: [t, /* @__PURE__ */ T("div", {
|
|
54636
54680
|
className: V("mx-auto w-full xl:max-w-[1200px]", "grid grid-cols-1 gap-x-6 gap-y-6", "sm:grid-cols-2 sm:gap-y-8", "lg:grid-cols-3 lg:gap-y-12", "xl:gap-y-16"),
|
|
54637
54681
|
children: e
|
|
54638
54682
|
})]
|
|
54639
|
-
}),
|
|
54683
|
+
}), Vge = ({ title: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
54640
54684
|
...n,
|
|
54641
54685
|
className: V("flex flex-col", "px-4 sm:px-6 md:px-8 xl:px-10", "py-e500", "gap-i500"),
|
|
54642
54686
|
children: [e, !!t && /* @__PURE__ */ T("div", {
|
|
@@ -54646,7 +54690,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
54646
54690
|
children: t
|
|
54647
54691
|
})
|
|
54648
54692
|
})]
|
|
54649
|
-
}),
|
|
54693
|
+
}), Hge = ({ title: e, description: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
54650
54694
|
...n,
|
|
54651
54695
|
className: "flex flex-row px-4 py-4 sm:gap-2 sm:px-6 sm:py-6",
|
|
54652
54696
|
children: [/* @__PURE__ */ T("span", {
|
|
@@ -54662,7 +54706,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
54662
54706
|
children: t
|
|
54663
54707
|
})]
|
|
54664
54708
|
})]
|
|
54665
|
-
}),
|
|
54709
|
+
}), Uge = ({ titleBlock: e, children: t, className: n, ...r }) => /* @__PURE__ */ T("section", {
|
|
54666
54710
|
className: H("pt-e700 pb-e1000 w-full px-4 sm:px-6 md:px-8 xl:px-10", n),
|
|
54667
54711
|
...r,
|
|
54668
54712
|
children: /* @__PURE__ */ E("div", {
|
|
@@ -54681,7 +54725,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
54681
54725
|
className: "text-content-secondary icon-size-500",
|
|
54682
54726
|
"aria-hidden": "true"
|
|
54683
54727
|
})
|
|
54684
|
-
}),
|
|
54728
|
+
}), Wge = ({ title: e, otherAppName: t, photoroomIcon: n, otherAppIcon: r, features: i, className: a, ...o }) => /* @__PURE__ */ E("div", {
|
|
54685
54729
|
...o,
|
|
54686
54730
|
className: H("rounded-500 bg-background-subdued w-full p-4 sm:p-6", a),
|
|
54687
54731
|
role: "table",
|
|
@@ -54739,7 +54783,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
54739
54783
|
className: "rounded-400 border-content-primary pointer-events-none absolute -top-12 right-0 bottom-0 w-12 border-2"
|
|
54740
54784
|
})]
|
|
54741
54785
|
})]
|
|
54742
|
-
}),
|
|
54786
|
+
}), Gge = ({ title: e, cards: t, cta: n, ...r }) => /* @__PURE__ */ T("div", {
|
|
54743
54787
|
className: V("pt-e700 pb-e1000", "px-4 sm:px-6 md:px-8 xl:px-10"),
|
|
54744
54788
|
...r,
|
|
54745
54789
|
children: /* @__PURE__ */ T("div", {
|
|
@@ -54758,7 +54802,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
54758
54802
|
})]
|
|
54759
54803
|
})
|
|
54760
54804
|
})
|
|
54761
|
-
}),
|
|
54805
|
+
}), Kge = ({ title: e, items: t, background: n = "white", ...r }) => /* @__PURE__ */ E("div", {
|
|
54762
54806
|
className: V("pt-e700 pb-e1000 px-4 sm:px-6 md:px-8", "gap-i600 flex flex-col", {
|
|
54763
54807
|
"bg-surface-default": n === "white",
|
|
54764
54808
|
"bg-neutral-50": n === "lightgrey"
|
|
@@ -54794,7 +54838,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
54794
54838
|
className: V("mx-auto max-w-[1200px]", t),
|
|
54795
54839
|
children: e
|
|
54796
54840
|
})
|
|
54797
|
-
}),
|
|
54841
|
+
}), qge = ({ title: e, children: t, cta: n, type: r = "default", previousLabel: i, nextLabel: a, ...o }) => {
|
|
54798
54842
|
let { showLeftButton: s, showRightButton: c, handleClickLeftButton: l, handleClickRightButton: u, scrollerRef: d } = lV();
|
|
54799
54843
|
return /* @__PURE__ */ E("div", {
|
|
54800
54844
|
className: "pt-e700 pb-e1000 gap-i600 flex flex-col",
|
|
@@ -54840,7 +54884,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
54840
54884
|
})]
|
|
54841
54885
|
})]
|
|
54842
54886
|
});
|
|
54843
|
-
},
|
|
54887
|
+
}, Jge = ({ className: e, titleBlock: t, children: n, cta: r, ...i }) => /* @__PURE__ */ T("section", {
|
|
54844
54888
|
className: H("pt-e700 pb-e1000 bg-black px-4 sm:px-6 md:px-8 xl:px-10", e),
|
|
54845
54889
|
...i,
|
|
54846
54890
|
children: /* @__PURE__ */ E("div", {
|
|
@@ -54860,7 +54904,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
54860
54904
|
})
|
|
54861
54905
|
]
|
|
54862
54906
|
})
|
|
54863
|
-
}),
|
|
54907
|
+
}), Yge = ({ className: e, header: t, title: n, description: r, ...i }) => /* @__PURE__ */ E("div", {
|
|
54864
54908
|
className: H("bg-white-alpha-2 rounded-500 flex flex-col justify-between gap-6 overflow-clip p-6 sm:min-h-[288px]", e),
|
|
54865
54909
|
...i,
|
|
54866
54910
|
children: [/* @__PURE__ */ T("div", {
|
|
@@ -54876,7 +54920,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
54876
54920
|
children: r
|
|
54877
54921
|
})]
|
|
54878
54922
|
})]
|
|
54879
|
-
}),
|
|
54923
|
+
}), Xge = ({ title: e, content: t }) => /* @__PURE__ */ T("div", {
|
|
54880
54924
|
className: "pt-e700 pb-e1000 px-4 sm:px-6 md:px-8 xl:px-10",
|
|
54881
54925
|
children: /* @__PURE__ */ E("div", {
|
|
54882
54926
|
className: "gap-i600 mx-auto flex max-w-[1200px] flex-col",
|
|
@@ -54885,7 +54929,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
54885
54929
|
children: t
|
|
54886
54930
|
})]
|
|
54887
54931
|
})
|
|
54888
|
-
}),
|
|
54932
|
+
}), Zge = ({ titleBlock: e, background: t = "lightgrey", className: n, children: r, ...i }) => /* @__PURE__ */ T("section", {
|
|
54889
54933
|
...i,
|
|
54890
54934
|
className: H("pt-e700 pb-e1000 px-4 sm:px-6 md:px-8 xl:px-10", {
|
|
54891
54935
|
"bg-surface-default": t === "white",
|
|
@@ -54901,7 +54945,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
54901
54945
|
children: r
|
|
54902
54946
|
})]
|
|
54903
54947
|
})
|
|
54904
|
-
}),
|
|
54948
|
+
}), Qge = ({ question: e, answer: t, ...n }) => {
|
|
54905
54949
|
let r = g(), [i, a] = C(!1);
|
|
54906
54950
|
return /* @__PURE__ */ E("article", {
|
|
54907
54951
|
...n,
|
|
@@ -54938,32 +54982,32 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
54938
54982
|
})
|
|
54939
54983
|
})]
|
|
54940
54984
|
});
|
|
54941
|
-
},
|
|
54985
|
+
}, $ge = ({ title: e, features: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
54942
54986
|
className: "pt-e700 pb-e1000 gap-i600 flex flex-col",
|
|
54943
54987
|
...n,
|
|
54944
54988
|
children: [e, t]
|
|
54945
|
-
}),
|
|
54989
|
+
}), e_e = U([
|
|
54946
54990
|
"grid grid-cols-1 items-center lg:grid-cols-2",
|
|
54947
54991
|
"mx-auto gap-4 sm:gap-6",
|
|
54948
54992
|
"max-w-sm sm:max-w-lg"
|
|
54949
54993
|
], { variants: { wide: {
|
|
54950
54994
|
true: "lg:max-w-[1200px]",
|
|
54951
54995
|
false: "lg:max-w-[67rem]"
|
|
54952
|
-
} } }),
|
|
54996
|
+
} } }), t_e = U("mx-auto grid grid-cols-1 gap-4", { variants: { invertOrder: {
|
|
54953
54997
|
true: "lg:-order-1 lg:pr-16",
|
|
54954
54998
|
false: "lg:pl-16"
|
|
54955
|
-
} } }),
|
|
54999
|
+
} } }), n_e = ({ title: e, description: t, listItems: n, visualElement: r, invertOrder: i = !1, cta: a, withVisualBorder: o, wide: s = !1, ...c }) => {
|
|
54956
55000
|
let l = Array.isArray(n) ? n.length > 0 : !!n;
|
|
54957
55001
|
return /* @__PURE__ */ T("div", {
|
|
54958
55002
|
className: "px-4 sm:px-16 md:px-32 lg:px-8 xl:px-10",
|
|
54959
55003
|
...c,
|
|
54960
55004
|
children: /* @__PURE__ */ E("div", {
|
|
54961
|
-
className:
|
|
55005
|
+
className: e_e({ wide: s }),
|
|
54962
55006
|
children: [/* @__PURE__ */ T("div", {
|
|
54963
55007
|
className: V("relative", o && "after:rounded-500 after:border-misc-border after:pointer-events-none after:absolute after:top-0 after:left-0 after:h-full after:w-full after:border after:content-['']"),
|
|
54964
55008
|
children: r
|
|
54965
55009
|
}), /* @__PURE__ */ E("div", {
|
|
54966
|
-
className:
|
|
55010
|
+
className: t_e({ invertOrder: i }),
|
|
54967
55011
|
children: [/* @__PURE__ */ T("div", {
|
|
54968
55012
|
className: "flex-1",
|
|
54969
55013
|
children: /* @__PURE__ */ T("h2", {
|
|
@@ -54984,7 +55028,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
54984
55028
|
})]
|
|
54985
55029
|
})
|
|
54986
55030
|
});
|
|
54987
|
-
},
|
|
55031
|
+
}, r_e = ({ children: e, aspectRatio: t = "4/3", backgroundColor: n, ...r }) => /* @__PURE__ */ T("div", {
|
|
54988
55032
|
className: V("rounded-500 relative overflow-hidden", "translate-x-0 translate-y-0"),
|
|
54989
55033
|
style: {
|
|
54990
55034
|
backgroundColor: n,
|
|
@@ -54992,7 +55036,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
54992
55036
|
},
|
|
54993
55037
|
...r,
|
|
54994
55038
|
children: e
|
|
54995
|
-
}),
|
|
55039
|
+
}), i_e = ({ selectedIndex: e, features: t }) => /* @__PURE__ */ E("div", {
|
|
54996
55040
|
className: "flex flex-col gap-6",
|
|
54997
55041
|
children: [t && /* @__PURE__ */ T("ul", {
|
|
54998
55042
|
className: V("relative", "grid gap-2 text-center", "grid-cols-2 sm:grid-cols-4"),
|
|
@@ -55004,7 +55048,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
55004
55048
|
children: /* @__PURE__ */ T("div", { children: t.content })
|
|
55005
55049
|
}, n))
|
|
55006
55050
|
})]
|
|
55007
|
-
}),
|
|
55051
|
+
}), a_e = ({ children: e }) => {
|
|
55008
55052
|
let t = S(null);
|
|
55009
55053
|
return KH(t), /* @__PURE__ */ T("video", {
|
|
55010
55054
|
autoPlay: !0,
|
|
@@ -55016,7 +55060,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
55016
55060
|
className: "h-full w-full object-cover",
|
|
55017
55061
|
children: e
|
|
55018
55062
|
});
|
|
55019
|
-
},
|
|
55063
|
+
}, o_e = ({ title: e, children: t, icon: n }) => /* @__PURE__ */ E("div", {
|
|
55020
55064
|
className: "flex items-start gap-3",
|
|
55021
55065
|
children: [/* @__PURE__ */ T("div", {
|
|
55022
55066
|
className: "relative flex h-6 w-6 shrink-0",
|
|
@@ -55031,14 +55075,14 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
55031
55075
|
children: t
|
|
55032
55076
|
})]
|
|
55033
55077
|
})]
|
|
55034
|
-
}),
|
|
55078
|
+
}), s_e = ({ title: e, features: t, className: n, ...r }) => /* @__PURE__ */ E("div", {
|
|
55035
55079
|
...r,
|
|
55036
55080
|
className: V("pt-e700 pb-e1000 gap-i600 flex flex-col items-center px-4", n),
|
|
55037
55081
|
children: [e, /* @__PURE__ */ T("div", {
|
|
55038
55082
|
className: "mx-auto grid max-w-[1200px] gap-6 sm:gap-x-8 md:grid-cols-2 lg:grid-cols-3 lg:gap-x-12 lg:gap-y-10",
|
|
55039
55083
|
children: t
|
|
55040
55084
|
})]
|
|
55041
|
-
}),
|
|
55085
|
+
}), c_e = ({ title: e, icon: t, children: n, className: r, ...i }) => /* @__PURE__ */ E("div", {
|
|
55042
55086
|
...i,
|
|
55043
55087
|
className: V("border-misc-border-default flex flex-col gap-2 border-t pt-3 sm:pt-6", r),
|
|
55044
55088
|
children: [/* @__PURE__ */ E("div", {
|
|
@@ -55054,7 +55098,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
55054
55098
|
className: "body-light-500 text-content-secondary",
|
|
55055
55099
|
children: n
|
|
55056
55100
|
})]
|
|
55057
|
-
}),
|
|
55101
|
+
}), l_e = ({ titleBlock: e, children: t, className: r, ...i }) => {
|
|
55058
55102
|
let a = n.toArray(t);
|
|
55059
55103
|
return /* @__PURE__ */ T("section", {
|
|
55060
55104
|
className: H("pt-e700 pb-e1000 w-full px-4 sm:px-6 md:px-8 xl:px-10", r),
|
|
@@ -55073,7 +55117,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
55073
55117
|
})]
|
|
55074
55118
|
})
|
|
55075
55119
|
});
|
|
55076
|
-
},
|
|
55120
|
+
}, u_e = ({ preview: e, title: t, subtitle: n, cta: r, className: i, ...a }) => /* @__PURE__ */ T("div", {
|
|
55077
55121
|
...a,
|
|
55078
55122
|
className: H("@container w-full", i),
|
|
55079
55123
|
children: /* @__PURE__ */ E("div", {
|
|
@@ -55086,10 +55130,10 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
55086
55130
|
children: [/* @__PURE__ */ E("div", {
|
|
55087
55131
|
className: "flex w-full flex-col items-start gap-2",
|
|
55088
55132
|
children: [/* @__PURE__ */ T("div", {
|
|
55089
|
-
className: "component-700 text-content-primary max-w-[520px] text-
|
|
55133
|
+
className: "component-700 text-content-primary max-w-[520px] text-balance",
|
|
55090
55134
|
children: t
|
|
55091
55135
|
}), /* @__PURE__ */ T("div", {
|
|
55092
|
-
className: "body-light-500 text-content-secondary max-w-[520px] text-
|
|
55136
|
+
className: "body-light-500 text-content-secondary max-w-[520px] text-pretty",
|
|
55093
55137
|
children: n
|
|
55094
55138
|
})]
|
|
55095
55139
|
}), !!r && /* @__PURE__ */ T("div", { children: r })]
|
|
@@ -55110,7 +55154,7 @@ var Lge = ({ titleBlock: e, children: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
|
55110
55154
|
p9.displayName = "BlockBackground";
|
|
55111
55155
|
//#endregion
|
|
55112
55156
|
//#region src/components/website/FocusBlock/FocusBlock.tsx
|
|
55113
|
-
var
|
|
55157
|
+
var d_e = ({ overline: e, title: t, description: n, visual: r, ctas: i, background: a = "sand-50", ...o }) => /* @__PURE__ */ T(p9, {
|
|
55114
55158
|
variant: a,
|
|
55115
55159
|
className: "py-e700 px-4 sm:px-6 md:px-8 xl:px-10",
|
|
55116
55160
|
...o,
|
|
@@ -55143,7 +55187,7 @@ var l_e = ({ overline: e, title: t, description: n, visual: r, ctas: i, backgrou
|
|
|
55143
55187
|
children: r
|
|
55144
55188
|
})]
|
|
55145
55189
|
})
|
|
55146
|
-
}),
|
|
55190
|
+
}), f_e = l(function({ as: e = "a", label: t, isNew: n, ...r }, i) {
|
|
55147
55191
|
return /* @__PURE__ */ E(e, {
|
|
55148
55192
|
ref: i,
|
|
55149
55193
|
className: V("inline-flex items-center gap-1.5", "rounded-200 cursor-pointer outline-hidden", "focus-visible:ring-misc-focus-indicator focus-visible:misc-border-size-focus-ring", "component-light-500 text-content-subdued-primary", "hover:text-content-primary focus-visible:text-content-primary active:text-content-primary", "interaction-transition transition-colors"),
|
|
@@ -55161,7 +55205,7 @@ var l_e = ({ overline: e, title: t, description: n, visual: r, ctas: i, backgrou
|
|
|
55161
55205
|
});
|
|
55162
55206
|
//#endregion
|
|
55163
55207
|
//#region src/components/website/FooterBlockV2/FooterV2LinksSectionBlock.tsx
|
|
55164
|
-
function
|
|
55208
|
+
function p_e({ title: e, className: t, children: n, ...r }) {
|
|
55165
55209
|
let i = g(), [a, o] = C(!1), s = p((e) => {
|
|
55166
55210
|
let t = e.currentTarget;
|
|
55167
55211
|
o(t.checked), t.closest("[data-groupid='footer-links-sections']")?.querySelectorAll("input[name=\"footer-links-section-toggle\"]").forEach((e) => {
|
|
@@ -55255,7 +55299,7 @@ function m9({ appsSectionTitle: e, appButtons: t, linksSections: n, socialLinks:
|
|
|
55255
55299
|
})
|
|
55256
55300
|
});
|
|
55257
55301
|
}
|
|
55258
|
-
m9.LinksSection =
|
|
55302
|
+
m9.LinksSection = p_e, m9.Link = f_e;
|
|
55259
55303
|
//#endregion
|
|
55260
55304
|
//#region src/components/website/Glossary/GlossaryLetterLink.tsx
|
|
55261
55305
|
var h9 = l(({ letter: e, href: t, ...n }, r) => /* @__PURE__ */ T("a", {
|
|
@@ -55269,11 +55313,11 @@ h9.displayName = "GlossaryLetterLink";
|
|
|
55269
55313
|
//#endregion
|
|
55270
55314
|
//#region src/components/website/Glossary/GlossaryAlphabet.tsx
|
|
55271
55315
|
var g9 = { en: "ABCDEFGHIJKLMNOPQRSTUVWXYZ".split("") };
|
|
55272
|
-
function
|
|
55316
|
+
function m_e(e) {
|
|
55273
55317
|
return g9[e] ?? g9.en;
|
|
55274
55318
|
}
|
|
55275
55319
|
var _9 = l(({ locale: e = "en", getLetterProps: t, className: n, ...r }, i) => {
|
|
55276
|
-
let a =
|
|
55320
|
+
let a = m_e(e);
|
|
55277
55321
|
return /* @__PURE__ */ T("nav", {
|
|
55278
55322
|
ref: i,
|
|
55279
55323
|
...r,
|
|
@@ -55292,7 +55336,7 @@ var _9 = l(({ locale: e = "en", getLetterProps: t, className: n, ...r }, i) => {
|
|
|
55292
55336
|
_9.displayName = "GlossaryAlphabet";
|
|
55293
55337
|
//#endregion
|
|
55294
55338
|
//#region src/components/website/Glossary/GlossarySection.tsx
|
|
55295
|
-
var
|
|
55339
|
+
var h_e = ({ id: e, letter: t, headingLevel: n = "h2", children: r, className: i }) => /* @__PURE__ */ E("section", {
|
|
55296
55340
|
id: e,
|
|
55297
55341
|
className: H("gap-i400 flex flex-col items-center", i),
|
|
55298
55342
|
children: [/* @__PURE__ */ T(n, {
|
|
@@ -55352,7 +55396,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55352
55396
|
onClick: u
|
|
55353
55397
|
})]
|
|
55354
55398
|
});
|
|
55355
|
-
},
|
|
55399
|
+
}, g_e = ({ title: e, backgroundColor: t, bgImageDesktop: n, bgImageMobile: r, className: i, ...a }) => /* @__PURE__ */ E("div", {
|
|
55356
55400
|
...a,
|
|
55357
55401
|
className: V("relative overflow-hidden", "flex flex-col items-center justify-center", "sm:min-h-[482px] lg:min-h-[640px]", "3xl:rounded-area-500 mx-auto max-w-[1800px]", "px-4 sm:px-6 md:px-8 xl:px-10", "pt-e600 pb-e500 sm:pt-e500", i),
|
|
55358
55402
|
style: { backgroundColor: t },
|
|
@@ -55370,7 +55414,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55370
55414
|
children: e
|
|
55371
55415
|
})
|
|
55372
55416
|
]
|
|
55373
|
-
}),
|
|
55417
|
+
}), __e = ({ titleBlock: e, logoWallBlock: t, children: n, className: r, ...i }) => /* @__PURE__ */ T("section", {
|
|
55374
55418
|
className: H("pt-e700 pb-e1000 w-full px-4 sm:px-6 md:px-8 xl:px-10", r),
|
|
55375
55419
|
...i,
|
|
55376
55420
|
children: /* @__PURE__ */ E("div", {
|
|
@@ -55387,7 +55431,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55387
55431
|
})
|
|
55388
55432
|
]
|
|
55389
55433
|
})
|
|
55390
|
-
}),
|
|
55434
|
+
}), v_e = ({ metricTitle: e, metricDescription: t, className: n, ...r }) => /* @__PURE__ */ E("div", {
|
|
55391
55435
|
className: H("rounded-500 bg-secondary-moon-grape relative flex flex-col items-center overflow-hidden text-center text-white", "gap-4 px-6 py-8 sm:py-10", "lg:min-h-[344px] xl:min-h-[400px]", n),
|
|
55392
55436
|
...r,
|
|
55393
55437
|
children: [
|
|
@@ -55401,11 +55445,11 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55401
55445
|
children: t
|
|
55402
55446
|
})
|
|
55403
55447
|
]
|
|
55404
|
-
}),
|
|
55448
|
+
}), y_e = ({ children: e, className: t, ...n }) => /* @__PURE__ */ T("div", {
|
|
55405
55449
|
...n,
|
|
55406
55450
|
className: H("flex flex-col gap-6", t),
|
|
55407
55451
|
children: e
|
|
55408
|
-
}),
|
|
55452
|
+
}), b_e = ({ label: e, children: t, className: n, ...r }) => t ? /* @__PURE__ */ E("div", {
|
|
55409
55453
|
...r,
|
|
55410
55454
|
className: H("flex flex-col gap-1 pt-4", "border-misc-border border-t", n),
|
|
55411
55455
|
children: [/* @__PURE__ */ T("span", {
|
|
@@ -55415,7 +55459,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55415
55459
|
className: "component-600 text-content-primary",
|
|
55416
55460
|
children: t
|
|
55417
55461
|
})]
|
|
55418
|
-
}) : null,
|
|
55462
|
+
}) : null, x_e = ({ titleBlock: e, assets: t, className: n, ...r }) => /* @__PURE__ */ E("section", {
|
|
55419
55463
|
className: V("pt-e700 flex flex-col gap-12 sm:gap-16 lg:gap-20", n),
|
|
55420
55464
|
...r,
|
|
55421
55465
|
children: [!!e && /* @__PURE__ */ T("div", {
|
|
@@ -55431,7 +55475,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55431
55475
|
}, t.toString()))
|
|
55432
55476
|
})
|
|
55433
55477
|
})]
|
|
55434
|
-
}),
|
|
55478
|
+
}), S_e = ({ titleBlock: e, images: t, cta: n, className: r, ...i }) => /* @__PURE__ */ T("section", {
|
|
55435
55479
|
className: H("pt-e700 pb-e1000 w-full px-4 sm:px-6 md:px-8 xl:px-10", r),
|
|
55436
55480
|
...i,
|
|
55437
55481
|
children: /* @__PURE__ */ E("div", {
|
|
@@ -55450,7 +55494,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55450
55494
|
})]
|
|
55451
55495
|
})]
|
|
55452
55496
|
})
|
|
55453
|
-
}),
|
|
55497
|
+
}), C_e = ({ variant: e = "default", trustLabel: t, logos: n, ...r }) => {
|
|
55454
55498
|
let i = n?.slice(0, 8);
|
|
55455
55499
|
return /* @__PURE__ */ T("div", {
|
|
55456
55500
|
className: V("px-4 sm:px-6 md:px-8 xl:px-10", {
|
|
@@ -55481,7 +55525,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55481
55525
|
})]
|
|
55482
55526
|
})
|
|
55483
55527
|
});
|
|
55484
|
-
},
|
|
55528
|
+
}, w_e = ({ description: e, cta: t, logos: n, className: r, ...i }) => /* @__PURE__ */ T("section", {
|
|
55485
55529
|
className: H("py-e400 px-4 sm:px-6 md:px-8 xl:px-10", r),
|
|
55486
55530
|
...i,
|
|
55487
55531
|
children: /* @__PURE__ */ E("div", {
|
|
@@ -55503,7 +55547,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55503
55547
|
}, t))
|
|
55504
55548
|
})]
|
|
55505
55549
|
})
|
|
55506
|
-
}),
|
|
55550
|
+
}), T_e = ({ title: e, assets: t, className: n, ...r }) => /* @__PURE__ */ E("div", {
|
|
55507
55551
|
className: H("gap-i400 flex flex-col", n),
|
|
55508
55552
|
...r,
|
|
55509
55553
|
children: [/* @__PURE__ */ E("div", {
|
|
@@ -55529,7 +55573,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55529
55573
|
children: e
|
|
55530
55574
|
}, t.toString()))
|
|
55531
55575
|
})]
|
|
55532
|
-
}),
|
|
55576
|
+
}), E_e = ({ title: e, children: t, ...n }) => /* @__PURE__ */ T("section", {
|
|
55533
55577
|
className: "bg-surface-default pt-e700 pb-e1000 px-4 sm:px-6 md:px-8",
|
|
55534
55578
|
...n,
|
|
55535
55579
|
children: /* @__PURE__ */ E("div", {
|
|
@@ -55542,7 +55586,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55542
55586
|
children: t
|
|
55543
55587
|
})]
|
|
55544
55588
|
})
|
|
55545
|
-
}),
|
|
55589
|
+
}), D_e = function({ icon: e, overline: t, title: n, subtitle: r, cta: i, footnote: a, className: s, ...c }) {
|
|
55546
55590
|
let l = b(() => i?.map((e) => o(e, {
|
|
55547
55591
|
density: "spacious",
|
|
55548
55592
|
size: "large"
|
|
@@ -55581,7 +55625,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55581
55625
|
})
|
|
55582
55626
|
]
|
|
55583
55627
|
});
|
|
55584
|
-
},
|
|
55628
|
+
}, O_e = ({ containerId: e, title: t, helpText: n, url: r, visibleOnMobile: i, ...a }) => /* @__PURE__ */ E("div", {
|
|
55585
55629
|
id: e,
|
|
55586
55630
|
className: V("pt-e700 pb-e1000 w-full bg-neutral-50 px-4 xl:px-10", !i && "hidden lg:block"),
|
|
55587
55631
|
...a,
|
|
@@ -55599,7 +55643,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55599
55643
|
className: "body-500 text-content-secondary mx-auto max-w-[512px] pt-6 text-center lg:max-w-[720px]",
|
|
55600
55644
|
children: n
|
|
55601
55645
|
})]
|
|
55602
|
-
}),
|
|
55646
|
+
}), k_e = ({ title: e, helpText: t, url: n, screenTooSmallTitle: r, screenTooSmallDescription: i, ...a }) => /* @__PURE__ */ E("div", {
|
|
55603
55647
|
className: "bg-surface-alternate pt-e600 pb-e500 sm:py-e500 w-full px-4 xl:px-10",
|
|
55604
55648
|
...a,
|
|
55605
55649
|
children: [/* @__PURE__ */ E("div", {
|
|
@@ -55629,7 +55673,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55629
55673
|
className: "body-500 text-content-secondary mx-auto max-w-[512px] pt-6 text-center lg:max-w-[720px]",
|
|
55630
55674
|
children: t
|
|
55631
55675
|
})]
|
|
55632
|
-
}),
|
|
55676
|
+
}), A_e = ({ titleBlock: e, background: t = "lightgrey", cta: n, children: r, className: i, ...a }) => /* @__PURE__ */ T("section", {
|
|
55633
55677
|
className: V("pt-e700 pb-e1000 px-4 sm:px-6 md:px-8 xl:px-10", {
|
|
55634
55678
|
"bg-surface-default": t === "white",
|
|
55635
55679
|
"bg-neutral-50": t === "lightgrey"
|
|
@@ -55648,7 +55692,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55648
55692
|
})]
|
|
55649
55693
|
})]
|
|
55650
55694
|
})
|
|
55651
|
-
}),
|
|
55695
|
+
}), j_e = ({ title: e, cards: t, features: n, ...r }) => /* @__PURE__ */ T("div", {
|
|
55652
55696
|
className: V("px-4 sm:px-6 md:px-8 xl:px-10", "py-e400"),
|
|
55653
55697
|
...r,
|
|
55654
55698
|
children: /* @__PURE__ */ E("div", {
|
|
@@ -55691,7 +55735,7 @@ var y9 = {}, b9 = ({ variant: e, className: t, cssBackgroundColor: n, children:
|
|
|
55691
55735
|
S9.displayName = "PricingPullDownButton";
|
|
55692
55736
|
//#endregion
|
|
55693
55737
|
//#region src/components/website/PricingHeroBlock/ApiPricing/ApiPricingCardsContainer/ApiPricingImageCountPicker.tsx
|
|
55694
|
-
var
|
|
55738
|
+
var M_e = [
|
|
55695
55739
|
1e3,
|
|
55696
55740
|
2e3,
|
|
55697
55741
|
5e3,
|
|
@@ -55702,7 +55746,7 @@ var A_e = [
|
|
|
55702
55746
|
2e5,
|
|
55703
55747
|
5e5,
|
|
55704
55748
|
1e6
|
|
55705
|
-
],
|
|
55749
|
+
], N_e = ({ lang: e, monthlyProcessedImages: t, pricingImageCountLabel: n, onMonthlyProcessedImagesChange: r }) => {
|
|
55706
55750
|
let [i, a] = C(!1);
|
|
55707
55751
|
return h(() => {
|
|
55708
55752
|
a(!0);
|
|
@@ -55719,7 +55763,7 @@ var A_e = [
|
|
|
55719
55763
|
children: /* @__PURE__ */ T(pW.RadioGroup, {
|
|
55720
55764
|
value: t.toString(),
|
|
55721
55765
|
onValueChange: (e) => r?.(Number(e)),
|
|
55722
|
-
children:
|
|
55766
|
+
children: M_e.map((t) => /* @__PURE__ */ T(pW.RadioGroup.Item, {
|
|
55723
55767
|
value: t.toString(),
|
|
55724
55768
|
children: i && `${new Intl.NumberFormat(e).format(t)} images`
|
|
55725
55769
|
}, t))
|
|
@@ -55735,7 +55779,7 @@ var A_e = [
|
|
|
55735
55779
|
].filter((e) => e !== "enterprise");
|
|
55736
55780
|
//#endregion
|
|
55737
55781
|
//#region ../shared/utils/pricing/api-pricing/plans.ts
|
|
55738
|
-
var
|
|
55782
|
+
var P_e = {
|
|
55739
55783
|
priceId: "price_1OZVcMEl9AVRLibqyVsualpH",
|
|
55740
55784
|
currencyToPrice: {
|
|
55741
55785
|
eur: 2,
|
|
@@ -55743,7 +55787,7 @@ var M_e = {
|
|
|
55743
55787
|
usd: 2
|
|
55744
55788
|
},
|
|
55745
55789
|
interval: "month"
|
|
55746
|
-
},
|
|
55790
|
+
}, F_e = {
|
|
55747
55791
|
priceId: "price_1OZVV0El9AVRLibqlcX986A9",
|
|
55748
55792
|
currencyToPrice: {
|
|
55749
55793
|
eur: 10,
|
|
@@ -55751,7 +55795,7 @@ var M_e = {
|
|
|
55751
55795
|
usd: 10
|
|
55752
55796
|
},
|
|
55753
55797
|
interval: "month"
|
|
55754
|
-
},
|
|
55798
|
+
}, I_e = {
|
|
55755
55799
|
priceId: "price_1OduZCEl9AVRLibq9TbpF1v9",
|
|
55756
55800
|
currencyToPrice: {
|
|
55757
55801
|
eur: 1,
|
|
@@ -55764,9 +55808,9 @@ var M_e = {
|
|
|
55764
55808
|
//#region src/components/website/PricingHeroBlock/ApiPricing/ApiPricingCardsContainer/utils.ts
|
|
55765
55809
|
function C9(e) {
|
|
55766
55810
|
switch (e) {
|
|
55767
|
-
case "basic": return
|
|
55768
|
-
case "plus": return
|
|
55769
|
-
case "partner": return
|
|
55811
|
+
case "basic": return P_e;
|
|
55812
|
+
case "plus": return F_e;
|
|
55813
|
+
case "partner": return I_e;
|
|
55770
55814
|
case "enterprise":
|
|
55771
55815
|
case void 0: return;
|
|
55772
55816
|
}
|
|
@@ -55781,7 +55825,7 @@ function w9(e, t) {
|
|
|
55781
55825
|
}
|
|
55782
55826
|
//#endregion
|
|
55783
55827
|
//#region src/components/website/PricingHeroBlock/ApiPricing/ApiPricingCardsContainer/ApiPricingCardsContainer.tsx
|
|
55784
|
-
var
|
|
55828
|
+
var L_e = ({ lang: e, monthlyProcessedImages: t = 1e3, items: n, partnerCard: r, userCountryCode: i, footnote: a, pricingImageCountLabel: o, footnoteCurrencyLabel: s, onMonthlyProcessedImagesChange: c, ...l }) => {
|
|
55785
55829
|
let u = i?.toUpperCase(), { countryDisplayName: d, currencyDisplayName: f } = x9({
|
|
55786
55830
|
lang: e,
|
|
55787
55831
|
localizedInfo: w9("basic", u)
|
|
@@ -55789,7 +55833,7 @@ var F_e = ({ lang: e, monthlyProcessedImages: t = 1e3, items: n, partnerCard: r,
|
|
|
55789
55833
|
return /* @__PURE__ */ E("div", {
|
|
55790
55834
|
className: "pb-i600",
|
|
55791
55835
|
...l,
|
|
55792
|
-
children: [/* @__PURE__ */ T(
|
|
55836
|
+
children: [/* @__PURE__ */ T(N_e, {
|
|
55793
55837
|
lang: e,
|
|
55794
55838
|
pricingImageCountLabel: o,
|
|
55795
55839
|
monthlyProcessedImages: t,
|
|
@@ -55829,7 +55873,7 @@ var F_e = ({ lang: e, monthlyProcessedImages: t = 1e3, items: n, partnerCard: r,
|
|
|
55829
55873
|
a
|
|
55830
55874
|
])
|
|
55831
55875
|
};
|
|
55832
|
-
},
|
|
55876
|
+
}, R_e = 1e5, z_e = ({ lang: e, planType: t, planPriceLabelOverride: n, cta: r, bulletPoints: i, monthlyProcessedImages: a, userCountryCode: o, clientLogos: s, detailsTitle: c, footnote: l, perMonthLabel: u, pricePerImageLabel: d, ...f }) => {
|
|
55833
55877
|
let p = o?.toUpperCase(), { localizedCurrency: m, localizedPrice: h, pricePerImage: g } = O9({
|
|
55834
55878
|
lang: e,
|
|
55835
55879
|
planType: t,
|
|
@@ -55842,7 +55886,7 @@ var F_e = ({ lang: e, monthlyProcessedImages: t = 1e3, items: n, partnerCard: r,
|
|
|
55842
55886
|
case "partner":
|
|
55843
55887
|
case void 0: return;
|
|
55844
55888
|
}
|
|
55845
|
-
}, [t]), v = b(() => !m || !h ? null : t === "partner" && a <
|
|
55889
|
+
}, [t]), v = b(() => !m || !h ? null : t === "partner" && a < R_e ? "-" : Zs({
|
|
55846
55890
|
locale: e,
|
|
55847
55891
|
currency: m,
|
|
55848
55892
|
value: h * a / 100,
|
|
@@ -55919,10 +55963,10 @@ var F_e = ({ lang: e, monthlyProcessedImages: t = 1e3, items: n, partnerCard: r,
|
|
|
55919
55963
|
})]
|
|
55920
55964
|
})]
|
|
55921
55965
|
});
|
|
55922
|
-
},
|
|
55966
|
+
}, B_e = ({ pricePerImage: e }) => /* @__PURE__ */ E("span", {
|
|
55923
55967
|
className: "inline-next-element",
|
|
55924
55968
|
children: [e, " "]
|
|
55925
|
-
}),
|
|
55969
|
+
}), V_e = ({ description: e, clientLogos: t, cta: n, ...r }) => /* @__PURE__ */ E("div", {
|
|
55926
55970
|
className: V("flex flex-col items-center gap-6 p-4 sm:flex-row", "rounded-500 bg-background-subdued"),
|
|
55927
55971
|
...r,
|
|
55928
55972
|
children: [
|
|
@@ -55939,7 +55983,7 @@ var F_e = ({ lang: e, monthlyProcessedImages: t = 1e3, items: n, partnerCard: r,
|
|
|
55939
55983
|
children: n
|
|
55940
55984
|
})
|
|
55941
55985
|
]
|
|
55942
|
-
}),
|
|
55986
|
+
}), H_e = ({ title: e, legend: t, sections: n, fairLimitsLabel: r, ...i }) => /* @__PURE__ */ T("div", {
|
|
55943
55987
|
id: "features",
|
|
55944
55988
|
className: "pt-i600 scroll-mt-16",
|
|
55945
55989
|
...i,
|
|
@@ -55975,14 +56019,14 @@ var F_e = ({ lang: e, monthlyProcessedImages: t = 1e3, items: n, partnerCard: r,
|
|
|
55975
56019
|
children: e
|
|
55976
56020
|
})] }) : e })
|
|
55977
56021
|
})
|
|
55978
|
-
}),
|
|
56022
|
+
}), U_e = ({ title: e, items: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
55979
56023
|
className: "flex flex-col",
|
|
55980
56024
|
...n,
|
|
55981
56025
|
children: [e && /* @__PURE__ */ T("div", {
|
|
55982
56026
|
className: "component-semi-strong-700 border-b border-neutral-900 py-2",
|
|
55983
56027
|
children: e
|
|
55984
56028
|
}), t]
|
|
55985
|
-
}),
|
|
56029
|
+
}), W_e = ({ featureName: e, featureDescription: t, featureBadges: n, ...r }) => /* @__PURE__ */ E("div", {
|
|
55986
56030
|
className: V("flex flex-col items-start gap-3 py-6 lg:gap-4 xl:flex-row xl:items-center", "border-misc-border border-b"),
|
|
55987
56031
|
...r,
|
|
55988
56032
|
children: [/* @__PURE__ */ E("div", {
|
|
@@ -56009,10 +56053,10 @@ var F_e = ({ lang: e, monthlyProcessedImages: t = 1e3, items: n, partnerCard: r,
|
|
|
56009
56053
|
className: "flex h-6 w-6 items-center justify-center",
|
|
56010
56054
|
children: e ? /* @__PURE__ */ T(N, { className: "icon-size-400" }) : "—"
|
|
56011
56055
|
})]
|
|
56012
|
-
}) }),
|
|
56056
|
+
}) }), G_e = ({ planName: e, planShortName: t }) => /* @__PURE__ */ T(A9, {
|
|
56013
56057
|
planName: e,
|
|
56014
56058
|
planShortName: t
|
|
56015
|
-
}),
|
|
56059
|
+
}), K_e = ({ isChecked: e, planName: t }) => /* @__PURE__ */ T(j9, {
|
|
56016
56060
|
isChecked: e,
|
|
56017
56061
|
planName: t
|
|
56018
56062
|
});
|
|
@@ -56076,7 +56120,7 @@ function I9(e, t) {
|
|
|
56076
56120
|
}
|
|
56077
56121
|
//#endregion
|
|
56078
56122
|
//#region src/components/website/PricingHeroBlock/AppPricing/AppPricingCardsContainer/AppPricingCardsContainer.tsx
|
|
56079
|
-
var
|
|
56123
|
+
var q_e = ({ lang: e, billingPeriod: t = "yearly", items: n, userCountryCode: r, billingPeriodLabels: i, billingPeriodSubtitles: a, footnoteLabels: o, footnoteCurrencyLabel: s, onBillingPeriodChange: c, ...l }) => {
|
|
56080
56124
|
let u = r?.toUpperCase(), { countryDisplayName: d, currencyDisplayName: f } = x9({
|
|
56081
56125
|
lang: e,
|
|
56082
56126
|
localizedInfo: I9("pro", u)
|
|
@@ -56146,7 +56190,7 @@ var G_e = ({ lang: e, billingPeriod: t = "yearly", items: n, userCountryCode: r,
|
|
|
56146
56190
|
]
|
|
56147
56191
|
})]
|
|
56148
56192
|
}), !s && c]
|
|
56149
|
-
}),
|
|
56193
|
+
}), J_e = ({ options: e = [], value: t, onValueChange: n }) => {
|
|
56150
56194
|
let r = e.find((e) => e.value === t)?.description;
|
|
56151
56195
|
return e?.length ? /* @__PURE__ */ E("div", {
|
|
56152
56196
|
className: "flex flex-col gap-2",
|
|
@@ -56163,7 +56207,7 @@ var G_e = ({ lang: e, billingPeriod: t = "yearly", items: n, userCountryCode: r,
|
|
|
56163
56207
|
children: r
|
|
56164
56208
|
})]
|
|
56165
56209
|
}) : null;
|
|
56166
|
-
},
|
|
56210
|
+
}, Y_e = 12, X_e = ({ lang: e, planType: t, description: n, cta: r, propLists: i, billingPeriod: a, userCountryCode: s, specialOfferLabel: c, clientLogos: l, planPriceLabelOverride: u, planNameOverride: d, isHighlighted: f, showYearlyPriceAsMonthly: p, freePlanLabel: m, perMonthLabel: h, perWeekLabel: g, perYearLabel: _, billedAnnuallyLabel: v, moreInfoLabel: y, getStartedLabel: x, subscriptionOptions: S, isUnavailable: w, unavailableLabel: D, ...O }) => {
|
|
56167
56211
|
let [k, A] = C(!1), [j, M] = C(S?.[0]?.value), N = s?.toUpperCase(), P = b(() => {
|
|
56168
56212
|
if (d) return d;
|
|
56169
56213
|
switch (t) {
|
|
@@ -56183,7 +56227,7 @@ var G_e = ({ lang: e, billingPeriod: t = "yearly", items: n, userCountryCode: r,
|
|
|
56183
56227
|
case "monthly": return F.monthly?.currencyToPrice[I];
|
|
56184
56228
|
case "yearly": {
|
|
56185
56229
|
let e = F.yearly?.currencyToPrice[I];
|
|
56186
|
-
return e && L ? e /
|
|
56230
|
+
return e && L ? e / Y_e : e;
|
|
56187
56231
|
}
|
|
56188
56232
|
case void 0: return;
|
|
56189
56233
|
}
|
|
@@ -56258,7 +56302,7 @@ var G_e = ({ lang: e, billingPeriod: t = "yearly", items: n, userCountryCode: r,
|
|
|
56258
56302
|
perYearLabel: _,
|
|
56259
56303
|
showYearlyPriceAsMonthly: L,
|
|
56260
56304
|
billedAnnuallyLabel: v,
|
|
56261
|
-
children: /* @__PURE__ */ T(
|
|
56305
|
+
children: /* @__PURE__ */ T(J_e, {
|
|
56262
56306
|
options: S,
|
|
56263
56307
|
value: j,
|
|
56264
56308
|
onValueChange: M
|
|
@@ -56300,18 +56344,18 @@ var G_e = ({ lang: e, billingPeriod: t = "yearly", items: n, userCountryCode: r,
|
|
|
56300
56344
|
})]
|
|
56301
56345
|
})]
|
|
56302
56346
|
});
|
|
56303
|
-
},
|
|
56347
|
+
}, Z_e = ({ planName: e, planShortName: t }) => /* @__PURE__ */ T(A9, {
|
|
56304
56348
|
planName: e,
|
|
56305
56349
|
planShortName: t
|
|
56306
|
-
}),
|
|
56350
|
+
}), Q_e = ({ isChecked: e, description: t, planName: n }) => /* @__PURE__ */ T(j9, {
|
|
56307
56351
|
isChecked: e,
|
|
56308
56352
|
description: t,
|
|
56309
56353
|
planName: n
|
|
56310
|
-
}),
|
|
56354
|
+
}), $_e = ({ children: e, ...t }) => /* @__PURE__ */ T("div", {
|
|
56311
56355
|
className: "rounded-400 bg-background-subdued inline-flex gap-0.5 p-0.5",
|
|
56312
56356
|
...t,
|
|
56313
56357
|
children: e
|
|
56314
|
-
}),
|
|
56358
|
+
}), eve = U([
|
|
56315
56359
|
"component-semi-strong-600 size-h-750 rounded-400 flex flex-1 items-center gap-3 px-4 whitespace-nowrap",
|
|
56316
56360
|
"focus-visible:ring-misc-focus-indicator focus-visible:misc-border-size-focus-ring outline-hidden",
|
|
56317
56361
|
"transition-all"
|
|
@@ -56321,7 +56365,7 @@ var G_e = ({ lang: e, billingPeriod: t = "yearly", items: n, userCountryCode: r,
|
|
|
56321
56365
|
false: "text-content-secondary"
|
|
56322
56366
|
} },
|
|
56323
56367
|
defaultVariants: { selected: !1 }
|
|
56324
|
-
}),
|
|
56368
|
+
}), tve = U("rounded-300 size-400 shrink-0", {
|
|
56325
56369
|
variants: { selected: {
|
|
56326
56370
|
true: "text-[#7883FF]",
|
|
56327
56371
|
false: "text-neutral-400"
|
|
@@ -56329,15 +56373,15 @@ var G_e = ({ lang: e, billingPeriod: t = "yearly", items: n, userCountryCode: r,
|
|
|
56329
56373
|
defaultVariants: { selected: !1 }
|
|
56330
56374
|
}), R9 = l(({ as: e = "a", selected: t, icon: n, children: r, ...i }, a) => /* @__PURE__ */ E(e, {
|
|
56331
56375
|
ref: a,
|
|
56332
|
-
className:
|
|
56376
|
+
className: eve({ selected: t }),
|
|
56333
56377
|
...i,
|
|
56334
56378
|
children: [n && /* @__PURE__ */ T("span", {
|
|
56335
|
-
className:
|
|
56379
|
+
className: tve({ selected: t }),
|
|
56336
56380
|
children: n
|
|
56337
56381
|
}), r]
|
|
56338
56382
|
}));
|
|
56339
56383
|
R9.displayName = "PricingPickerButton";
|
|
56340
|
-
var
|
|
56384
|
+
var nve = Object.assign(R9, {
|
|
56341
56385
|
ShortLabel: ({ children: e }) => /* @__PURE__ */ T("span", {
|
|
56342
56386
|
className: "block sm:hidden",
|
|
56343
56387
|
children: e
|
|
@@ -56346,7 +56390,7 @@ var eve = Object.assign(R9, {
|
|
|
56346
56390
|
className: "hidden sm:block",
|
|
56347
56391
|
children: e
|
|
56348
56392
|
})
|
|
56349
|
-
}), z9 = "is-promo-banner-hidden",
|
|
56393
|
+
}), z9 = "is-promo-banner-hidden", rve = ({ contextLabel: e, closeAriaLabel: t, cssBackgroundColor: n, thumbnail: r, cta: i, linkAs: a = "a", description: o, forceShow: s, ...c }) => /* @__PURE__ */ T(b9, {
|
|
56350
56394
|
variant: "accent",
|
|
56351
56395
|
cssBackgroundColor: n,
|
|
56352
56396
|
isHiddenSessionKey: z9,
|
|
@@ -56383,7 +56427,7 @@ var eve = Object.assign(R9, {
|
|
|
56383
56427
|
})]
|
|
56384
56428
|
})]
|
|
56385
56429
|
})
|
|
56386
|
-
}),
|
|
56430
|
+
}), ive = ({ title: e, visualElement: t, largeVisualAsset: n, background: r = "neutral-50", bgColor: i, ...a }) => /* @__PURE__ */ T(p9, {
|
|
56387
56431
|
as: "div",
|
|
56388
56432
|
variant: i ? "surface-default" : r,
|
|
56389
56433
|
className: V("relative flex overflow-hidden", "pt-e600 pb-e500 sm:py-e500 lg:py-e800", "px-4 sm:px-6 md:px-8 xl:px-10", "xl:min-h-[720px]"),
|
|
@@ -56405,7 +56449,7 @@ var eve = Object.assign(R9, {
|
|
|
56405
56449
|
})]
|
|
56406
56450
|
})]
|
|
56407
56451
|
})
|
|
56408
|
-
}),
|
|
56452
|
+
}), ave = ({ content: e, avatar: t, name: n, occupation: r }) => /* @__PURE__ */ T("div", {
|
|
56409
56453
|
className: "py-e700 px-4 sm:px-6 md:px-8 xl:px-10",
|
|
56410
56454
|
children: /* @__PURE__ */ E("div", {
|
|
56411
56455
|
className: "mx-auto flex max-w-[1200px] flex-col justify-center gap-8",
|
|
@@ -56429,7 +56473,7 @@ var eve = Object.assign(R9, {
|
|
|
56429
56473
|
})]
|
|
56430
56474
|
})]
|
|
56431
56475
|
})
|
|
56432
|
-
}),
|
|
56476
|
+
}), ove = ({ titleBlock: e, reviews: t, cta: n, className: r, ...i }) => /* @__PURE__ */ T("section", {
|
|
56433
56477
|
className: H("pt-e700 pb-e1000 px-4 sm:px-6 md:px-8 xl:px-10", r),
|
|
56434
56478
|
...i,
|
|
56435
56479
|
children: /* @__PURE__ */ E("div", {
|
|
@@ -56446,7 +56490,7 @@ var eve = Object.assign(R9, {
|
|
|
56446
56490
|
})
|
|
56447
56491
|
]
|
|
56448
56492
|
})
|
|
56449
|
-
}),
|
|
56493
|
+
}), sve = ({ title: e, content: t, image: n, name: r, occupation: i, className: a, ...o }) => /* @__PURE__ */ T("li", {
|
|
56450
56494
|
className: H("flex", a),
|
|
56451
56495
|
...o,
|
|
56452
56496
|
children: /* @__PURE__ */ E("article", {
|
|
@@ -56488,7 +56532,7 @@ var eve = Object.assign(R9, {
|
|
|
56488
56532
|
})
|
|
56489
56533
|
]
|
|
56490
56534
|
})
|
|
56491
|
-
}),
|
|
56535
|
+
}), cve = function({ placement: e = "default", variant: t = "default", title: n, subtitle: r, overline: i, cta: a, className: o, ...s }) {
|
|
56492
56536
|
let c = e === "side" || !!a, l = t === "on-dark", d = u(r) ? !!r.props?.children : !!r;
|
|
56493
56537
|
return /* @__PURE__ */ E("div", {
|
|
56494
56538
|
className: H("mx-auto w-full max-w-[1200px]", "flex flex-col gap-4", {
|
|
@@ -56526,7 +56570,7 @@ var eve = Object.assign(R9, {
|
|
|
56526
56570
|
children: r
|
|
56527
56571
|
})]
|
|
56528
56572
|
});
|
|
56529
|
-
},
|
|
56573
|
+
}, lve = function({ title: e, overline: t, subtitle: n, cta: r, footnote: i, className: a }) {
|
|
56530
56574
|
let s = b(() => r?.map((e) => o(e, {
|
|
56531
56575
|
density: "spacious",
|
|
56532
56576
|
size: "large"
|
|
@@ -56556,7 +56600,7 @@ var eve = Object.assign(R9, {
|
|
|
56556
56600
|
})
|
|
56557
56601
|
]
|
|
56558
56602
|
});
|
|
56559
|
-
},
|
|
56603
|
+
}, uve = ({ title: e, overline: t, placement: n = "default" }) => /* @__PURE__ */ E("div", {
|
|
56560
56604
|
className: V("mx-auto flex w-full max-w-[1200px] flex-col gap-1", {
|
|
56561
56605
|
"items-center text-center": n === "default",
|
|
56562
56606
|
"items-start text-left": n === "side"
|
|
@@ -56568,7 +56612,7 @@ var eve = Object.assign(R9, {
|
|
|
56568
56612
|
className: "heading-thin-700 max-w-[600px] text-balance",
|
|
56569
56613
|
children: e
|
|
56570
56614
|
})]
|
|
56571
|
-
}),
|
|
56615
|
+
}), dve = ({ titleBlock: e, children: t, cta: r, ...i }) => {
|
|
56572
56616
|
let a = n.count(t);
|
|
56573
56617
|
return /* @__PURE__ */ E("div", {
|
|
56574
56618
|
className: V("px-4 sm:px-6 md:px-8 xl:px-10", "pt-e700 pb-e1000", "gap-i600 flex flex-col items-stretch"),
|
|
@@ -56598,7 +56642,7 @@ var eve = Object.assign(R9, {
|
|
|
56598
56642
|
B9.Tag = M5.Tag;
|
|
56599
56643
|
//#endregion
|
|
56600
56644
|
//#region src/components/website/TakeActionBlock/TakeActionBlock.tsx
|
|
56601
|
-
var
|
|
56645
|
+
var fve = ({ titleBlock: e, content: t, ctaLabel: n, ctaLink: r, ...i }) => /* @__PURE__ */ T("div", {
|
|
56602
56646
|
className: "py-e500 px-4 sm:px-6 md:px-8 xl:px-10",
|
|
56603
56647
|
...i,
|
|
56604
56648
|
children: /* @__PURE__ */ E("div", {
|
|
@@ -56624,7 +56668,7 @@ var uve = ({ titleBlock: e, content: t, ctaLabel: n, ctaLink: r, ...i }) => /* @
|
|
|
56624
56668
|
})
|
|
56625
56669
|
]
|
|
56626
56670
|
})
|
|
56627
|
-
}),
|
|
56671
|
+
}), pve = ({ title: e, variant: t = "default", content: n, cta: r, bgImageDesktop: i, bgImageMobile: a, className: o, ...s }) => /* @__PURE__ */ E("div", {
|
|
56628
56672
|
...s,
|
|
56629
56673
|
className: V("relative overflow-hidden", "flex flex-col items-center justify-center", "mx-auto max-w-[1512px]", "min-[1513px]:rounded-500", "px-4 sm:px-6 md:px-8 lg:px-10", {
|
|
56630
56674
|
"py-e700": t === "default",
|
|
@@ -56664,7 +56708,7 @@ var uve = ({ titleBlock: e, content: t, ctaLabel: n, ctaLink: r, ...i }) => /* @
|
|
|
56664
56708
|
]
|
|
56665
56709
|
})
|
|
56666
56710
|
]
|
|
56667
|
-
}),
|
|
56711
|
+
}), mve = ({ titleBlock: e, testimonials: t, className: n, ...r }) => {
|
|
56668
56712
|
let [i, a] = C(0), o = () => {
|
|
56669
56713
|
a((e) => e === 0 ? (t || []).length - 1 : e - 1);
|
|
56670
56714
|
}, s = () => {
|
|
@@ -56721,7 +56765,7 @@ var uve = ({ titleBlock: e, content: t, ctaLabel: n, ctaLink: r, ...i }) => /* @
|
|
|
56721
56765
|
})]
|
|
56722
56766
|
})
|
|
56723
56767
|
});
|
|
56724
|
-
},
|
|
56768
|
+
}, hve = ({ content: e, avatar: t, logo: n, name: r, occupation: i, className: a }) => /* @__PURE__ */ E("div", {
|
|
56725
56769
|
className: H("rounded-500 flex w-full flex-col items-center justify-center overflow-clip bg-neutral-50", "gap-6 p-5", "sm:gap-8 sm:px-12 sm:py-10", a),
|
|
56726
56770
|
children: [/* @__PURE__ */ T("div", {
|
|
56727
56771
|
className: "body-light-600 sm:body-light-800 text-content-primary w-full",
|
|
@@ -56748,7 +56792,7 @@ var uve = ({ titleBlock: e, content: t, ctaLabel: n, ctaLink: r, ...i }) => /* @
|
|
|
56748
56792
|
})]
|
|
56749
56793
|
})]
|
|
56750
56794
|
})]
|
|
56751
|
-
}),
|
|
56795
|
+
}), gve = ({ titleBlock: e, cards: t, className: n, ...r }) => /* @__PURE__ */ E("section", {
|
|
56752
56796
|
...r,
|
|
56753
56797
|
className: V("pt-e700 pb-e1000 px-4 sm:px-8", n),
|
|
56754
56798
|
children: [!!e && /* @__PURE__ */ T("div", {
|
|
@@ -56758,14 +56802,14 @@ var uve = ({ titleBlock: e, content: t, ctaLabel: n, ctaLink: r, ...i }) => /* @
|
|
|
56758
56802
|
className: "mx-auto flex max-w-[1200px] flex-col gap-6 lg:flex-row lg:justify-center",
|
|
56759
56803
|
children: t
|
|
56760
56804
|
})]
|
|
56761
|
-
}),
|
|
56805
|
+
}), _ve = "cursor-pointer rounded-200 outline-hidden focus-visible:misc-border-size-focus-ring focus-visible:ring-misc-focus-indicator text-content-accent hover:text-content-accent-hover active:text-content-accent-down focus-visible:text-content-accent-hover".split(" ").map((e) => `[&_a]:${e}`).join(" "), vve = ({ content: e, footer: t, className: n, ...r }) => /* @__PURE__ */ E("div", {
|
|
56762
56806
|
...r,
|
|
56763
56807
|
className: H("rounded-500 bg-background-subdued text-content-secondary [&_strong]:body-semi-strong-700 [&_strong]:text-content-primary w-full lg:max-w-[512px]", "px-6 pt-5 pb-6", "sm:px-8 sm:pt-6 sm:pb-8", n),
|
|
56764
56808
|
children: [/* @__PURE__ */ T("div", {
|
|
56765
56809
|
className: "body-light-600 sm:body-light-700 w-full max-w-[560px]",
|
|
56766
56810
|
children: e
|
|
56767
56811
|
}), !!t && /* @__PURE__ */ T("div", {
|
|
56768
|
-
className: H("body-light-500 mt-6 w-full max-w-[560px]",
|
|
56812
|
+
className: H("body-light-500 mt-6 w-full max-w-[560px]", _ve),
|
|
56769
56813
|
children: t
|
|
56770
56814
|
})]
|
|
56771
56815
|
}), V9 = l(({ as: e = "a", icon: t, title: n, description: r, image: i, ...a }, o) => a.href ? /* @__PURE__ */ E(e, {
|
|
@@ -56792,7 +56836,7 @@ var uve = ({ titleBlock: e, content: t, ctaLabel: n, ctaLink: r, ...i }) => /* @
|
|
|
56792
56836
|
V9.displayName = "ToolCard";
|
|
56793
56837
|
//#endregion
|
|
56794
56838
|
//#region src/components/website/ToolCategoryBannerBlock/ToolCategoryBannerBlock.tsx
|
|
56795
|
-
var
|
|
56839
|
+
var yve = ({ title: e, children: t, cta: n, image: r, ...i }) => {
|
|
56796
56840
|
let a = b(() => n ? o(n, {
|
|
56797
56841
|
variant: "secondary",
|
|
56798
56842
|
size: "medium",
|
|
@@ -56837,7 +56881,7 @@ var _ve = ({ title: e, children: t, cta: n, image: r, ...i }) => {
|
|
|
56837
56881
|
H9.displayName = "ToolSmallCard";
|
|
56838
56882
|
//#endregion
|
|
56839
56883
|
//#region src/components/website/UseCasesBlock/UseCasesBlock.tsx
|
|
56840
|
-
var
|
|
56884
|
+
var bve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom", useCases: r, ...a }) => /* @__PURE__ */ E(p9, {
|
|
56841
56885
|
variant: n,
|
|
56842
56886
|
className: V("flex flex-col items-center", "px-4 sm:px-6 md:px-8 xl:px-10", "pt-e700 pb-e1000", "gap-i400"),
|
|
56843
56887
|
...a,
|
|
@@ -56858,7 +56902,7 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
56858
56902
|
}, n))
|
|
56859
56903
|
})
|
|
56860
56904
|
]
|
|
56861
|
-
}),
|
|
56905
|
+
}), xve = ({ before: e, after: t, ...n }) => /* @__PURE__ */ E("div", {
|
|
56862
56906
|
className: V("relative flex h-full w-full", "gap-8 sm:gap-18 md:gap-20 lg:gap-28"),
|
|
56863
56907
|
...n,
|
|
56864
56908
|
children: [
|
|
@@ -56879,11 +56923,11 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
56879
56923
|
})
|
|
56880
56924
|
})
|
|
56881
56925
|
]
|
|
56882
|
-
}),
|
|
56926
|
+
}), Sve = ({ image: e, withBorder: t, ...n }) => e ? /* @__PURE__ */ T("div", {
|
|
56883
56927
|
className: V("rounded-500 relative overflow-hidden", t && "after:rounded-500 after:border-misc-border after:pointer-events-none after:absolute after:top-0 after:left-0 after:h-full after:w-full after:border after:content-['']"),
|
|
56884
56928
|
...n,
|
|
56885
56929
|
children: e
|
|
56886
|
-
}) : null,
|
|
56930
|
+
}) : null, Cve = ({ titleBlock: e, background: t, children: r, className: i, ...a }) => {
|
|
56887
56931
|
let o = n.count(r);
|
|
56888
56932
|
return /* @__PURE__ */ T("section", {
|
|
56889
56933
|
className: H("pt-e700 pb-e1000 w-full px-4 sm:px-6 md:px-8 xl:px-10", {
|
|
@@ -56902,7 +56946,7 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
56902
56946
|
})]
|
|
56903
56947
|
})
|
|
56904
56948
|
});
|
|
56905
|
-
},
|
|
56949
|
+
}, wve = ({ icon: e, title: t, description: n, className: r, ...i }) => /* @__PURE__ */ E("div", {
|
|
56906
56950
|
className: H("flex flex-col gap-4 sm:flex-row sm:gap-6 lg:flex-col lg:gap-4", "border-t border-neutral-400", "pt-6 sm:pt-8", r),
|
|
56907
56951
|
...i,
|
|
56908
56952
|
children: [/* @__PURE__ */ T("div", {
|
|
@@ -56918,7 +56962,7 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
56918
56962
|
children: n
|
|
56919
56963
|
})]
|
|
56920
56964
|
})]
|
|
56921
|
-
}),
|
|
56965
|
+
}), Tve = /* @__PURE__ */ Pt(((e) => {
|
|
56922
56966
|
var t = typeof Symbol == "function" && Symbol.for, n = t ? Symbol.for("react.element") : 60103, r = t ? Symbol.for("react.portal") : 60106, i = t ? Symbol.for("react.fragment") : 60107, a = t ? Symbol.for("react.strict_mode") : 60108, o = t ? Symbol.for("react.profiler") : 60114, s = t ? Symbol.for("react.provider") : 60109, c = t ? Symbol.for("react.context") : 60110, l = t ? Symbol.for("react.async_mode") : 60111, u = t ? Symbol.for("react.concurrent_mode") : 60111, d = t ? Symbol.for("react.forward_ref") : 60112, f = t ? Symbol.for("react.suspense") : 60113, p = t ? Symbol.for("react.suspense_list") : 60120, m = t ? Symbol.for("react.memo") : 60115, h = t ? Symbol.for("react.lazy") : 60116, g = t ? Symbol.for("react.block") : 60121, _ = t ? Symbol.for("react.fundamental") : 60117, v = t ? Symbol.for("react.responder") : 60118, y = t ? Symbol.for("react.scope") : 60119;
|
|
56923
56967
|
function b(e) {
|
|
56924
56968
|
if (typeof e == "object" && e) {
|
|
@@ -56974,7 +57018,7 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
56974
57018
|
}, e.isValidElementType = function(e) {
|
|
56975
57019
|
return typeof e == "string" || typeof e == "function" || e === i || e === u || e === o || e === a || e === f || e === p || typeof e == "object" && !!e && (e.$$typeof === h || e.$$typeof === m || e.$$typeof === s || e.$$typeof === c || e.$$typeof === d || e.$$typeof === _ || e.$$typeof === v || e.$$typeof === y || e.$$typeof === g);
|
|
56976
57020
|
}, e.typeOf = b;
|
|
56977
|
-
})),
|
|
57021
|
+
})), Eve = /* @__PURE__ */ Pt(((e) => {
|
|
56978
57022
|
process.env.NODE_ENV !== "production" && (function() {
|
|
56979
57023
|
var t = typeof Symbol == "function" && Symbol.for, n = t ? Symbol.for("react.element") : 60103, r = t ? Symbol.for("react.portal") : 60106, i = t ? Symbol.for("react.fragment") : 60107, a = t ? Symbol.for("react.strict_mode") : 60108, o = t ? Symbol.for("react.profiler") : 60114, s = t ? Symbol.for("react.provider") : 60109, c = t ? Symbol.for("react.context") : 60110, l = t ? Symbol.for("react.async_mode") : 60111, u = t ? Symbol.for("react.concurrent_mode") : 60111, d = t ? Symbol.for("react.forward_ref") : 60112, f = t ? Symbol.for("react.suspense") : 60113, p = t ? Symbol.for("react.suspense_list") : 60120, m = t ? Symbol.for("react.memo") : 60115, h = t ? Symbol.for("react.lazy") : 60116, g = t ? Symbol.for("react.block") : 60121, _ = t ? Symbol.for("react.fundamental") : 60117, v = t ? Symbol.for("react.responder") : 60118, y = t ? Symbol.for("react.scope") : 60119;
|
|
56980
57024
|
function b(e) {
|
|
@@ -57051,8 +57095,8 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57051
57095
|
e.AsyncMode = S, e.ConcurrentMode = C, e.ContextConsumer = w, e.ContextProvider = T, e.Element = E, e.ForwardRef = D, e.Fragment = O, e.Lazy = k, e.Memo = A, e.Portal = j, e.Profiler = M, e.StrictMode = N, e.Suspense = P, e.isAsyncMode = I, e.isConcurrentMode = L, e.isContextConsumer = R, e.isContextProvider = ee, e.isElement = te, e.isForwardRef = ne, e.isFragment = re, e.isLazy = ie, e.isMemo = ae, e.isPortal = z, e.isProfiler = oe, e.isStrictMode = se, e.isSuspense = ce, e.isValidElementType = b, e.typeOf = x;
|
|
57052
57096
|
})();
|
|
57053
57097
|
})), U9 = /* @__PURE__ */ Pt(((e, t) => {
|
|
57054
|
-
process.env.NODE_ENV === "production" ? t.exports =
|
|
57055
|
-
})),
|
|
57098
|
+
process.env.NODE_ENV === "production" ? t.exports = Tve() : t.exports = Eve();
|
|
57099
|
+
})), Dve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57056
57100
|
var n = Object.getOwnPropertySymbols, r = Object.prototype.hasOwnProperty, i = Object.prototype.propertyIsEnumerable;
|
|
57057
57101
|
function a(e) {
|
|
57058
57102
|
if (e == null) throw TypeError("Object.assign cannot be called with null or undefined");
|
|
@@ -57089,7 +57133,7 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57089
57133
|
t.exports = "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";
|
|
57090
57134
|
})), G9 = /* @__PURE__ */ Pt(((e, t) => {
|
|
57091
57135
|
t.exports = Function.call.bind(Object.prototype.hasOwnProperty);
|
|
57092
|
-
})),
|
|
57136
|
+
})), Ove = /* @__PURE__ */ Pt(((e, t) => {
|
|
57093
57137
|
var n = function() {};
|
|
57094
57138
|
if (process.env.NODE_ENV !== "production") {
|
|
57095
57139
|
var r = W9(), i = {}, a = G9();
|
|
@@ -57125,8 +57169,8 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57125
57169
|
o.resetWarningCache = function() {
|
|
57126
57170
|
process.env.NODE_ENV !== "production" && (i = {});
|
|
57127
57171
|
}, t.exports = o;
|
|
57128
|
-
})),
|
|
57129
|
-
var n = U9(), r =
|
|
57172
|
+
})), kve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57173
|
+
var n = U9(), r = Dve(), i = W9(), a = G9(), o = Ove(), s = function() {};
|
|
57130
57174
|
process.env.NODE_ENV !== "production" && (s = function(e) {
|
|
57131
57175
|
var t = "Warning: " + e;
|
|
57132
57176
|
typeof console < "u" && console.error(t);
|
|
@@ -57384,7 +57428,7 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57384
57428
|
}
|
|
57385
57429
|
return p.checkPropTypes = o, p.resetWarningCache = o.resetWarningCache, p.PropTypes = p, p;
|
|
57386
57430
|
};
|
|
57387
|
-
})),
|
|
57431
|
+
})), Ave = /* @__PURE__ */ Pt(((e, t) => {
|
|
57388
57432
|
var n = W9();
|
|
57389
57433
|
function r() {}
|
|
57390
57434
|
function i() {}
|
|
@@ -57424,12 +57468,12 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57424
57468
|
};
|
|
57425
57469
|
return a.PropTypes = a, a;
|
|
57426
57470
|
};
|
|
57427
|
-
})),
|
|
57471
|
+
})), jve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57428
57472
|
if (process.env.NODE_ENV !== "production") {
|
|
57429
57473
|
var n = U9();
|
|
57430
|
-
t.exports =
|
|
57431
|
-
} else t.exports =
|
|
57432
|
-
})),
|
|
57474
|
+
t.exports = kve()(n.isElement, !0);
|
|
57475
|
+
} else t.exports = Ave()();
|
|
57476
|
+
})), Mve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57433
57477
|
t.exports = function e(t, n) {
|
|
57434
57478
|
if (t === n) return !0;
|
|
57435
57479
|
if (t && n && typeof t == "object" && typeof n == "object") {
|
|
@@ -57453,7 +57497,7 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57453
57497
|
}
|
|
57454
57498
|
return t !== t && n !== n;
|
|
57455
57499
|
};
|
|
57456
|
-
})),
|
|
57500
|
+
})), Nve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57457
57501
|
t.exports = function() {
|
|
57458
57502
|
var e = {}, t = {};
|
|
57459
57503
|
return e.on = function(e, n) {
|
|
@@ -57470,7 +57514,7 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57470
57514
|
if (r) for (i = r.length; i--;) r[i].handler(n);
|
|
57471
57515
|
}, e;
|
|
57472
57516
|
};
|
|
57473
|
-
})),
|
|
57517
|
+
})), Pve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57474
57518
|
t.exports = function(e, t, a) {
|
|
57475
57519
|
var o = document.head || document.getElementsByTagName("head")[0], s = document.createElement("script");
|
|
57476
57520
|
typeof t == "function" && (a = t, t = {}), t ||= {}, a ||= function() {}, s.type = t.type || "text/javascript", s.charset = t.charset || "utf8", s.async = "async" in t ? !!t.async : !0, s.src = e, t.attrs && n(s, t.attrs), t.text && (s.text = "" + t.text), ("onload" in s ? r : i)(s, a), s.onload || r(s, a), o.appendChild(s);
|
|
@@ -57490,9 +57534,9 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57490
57534
|
this.readyState != "complete" && this.readyState != "loaded" || (this.onreadystatechange = null, t(null, e));
|
|
57491
57535
|
};
|
|
57492
57536
|
}
|
|
57493
|
-
})),
|
|
57537
|
+
})), Fve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57494
57538
|
Object.defineProperty(e, "__esModule", { value: !0 });
|
|
57495
|
-
var n = r(
|
|
57539
|
+
var n = r(Pve());
|
|
57496
57540
|
function r(e) {
|
|
57497
57541
|
return e && e.__esModule ? e : { default: e };
|
|
57498
57542
|
}
|
|
@@ -57513,7 +57557,7 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57513
57557
|
};
|
|
57514
57558
|
});
|
|
57515
57559
|
}, t.exports = e.default;
|
|
57516
|
-
})),
|
|
57560
|
+
})), Ive = /* @__PURE__ */ Pt(((e, t) => {
|
|
57517
57561
|
var n = 1e3, r = n * 60, i = r * 60, a = i * 24, o = a * 365.25;
|
|
57518
57562
|
t.exports = function(e, t) {
|
|
57519
57563
|
t ||= {};
|
|
@@ -57570,8 +57614,8 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57570
57614
|
function u(e, t, n) {
|
|
57571
57615
|
if (!(e < t)) return e < t * 1.5 ? Math.floor(e / t) + " " + n : Math.ceil(e / t) + " " + n + "s";
|
|
57572
57616
|
}
|
|
57573
|
-
})),
|
|
57574
|
-
e = t.exports = i.debug = i.default = i, e.coerce = c, e.disable = o, e.enable = a, e.enabled = s, e.humanize =
|
|
57617
|
+
})), Lve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57618
|
+
e = t.exports = i.debug = i.default = i, e.coerce = c, e.disable = o, e.enable = a, e.enabled = s, e.humanize = Ive(), e.names = [], e.skips = [], e.formatters = {};
|
|
57575
57619
|
var n;
|
|
57576
57620
|
function r(t) {
|
|
57577
57621
|
var n = 0, r;
|
|
@@ -57616,8 +57660,8 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57616
57660
|
function c(e) {
|
|
57617
57661
|
return e instanceof Error ? e.stack || e.message : e;
|
|
57618
57662
|
}
|
|
57619
|
-
})),
|
|
57620
|
-
e = t.exports =
|
|
57663
|
+
})), Rve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57664
|
+
e = t.exports = Lve(), e.log = i, e.formatArgs = r, e.save = a, e.load = o, e.useColors = n, e.storage = typeof chrome < "u" && chrome.storage !== void 0 ? chrome.storage.local : s(), e.colors = [
|
|
57621
57665
|
"lightseagreen",
|
|
57622
57666
|
"forestgreen",
|
|
57623
57667
|
"goldenrod",
|
|
@@ -57667,9 +57711,9 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57667
57711
|
return window.localStorage;
|
|
57668
57712
|
} catch {}
|
|
57669
57713
|
}
|
|
57670
|
-
})),
|
|
57714
|
+
})), zve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57671
57715
|
Object.defineProperty(e, "__esModule", { value: !0 }), e.default = /* @__PURE__ */ "cueVideoById.loadVideoById.cueVideoByUrl.loadVideoByUrl.playVideo.pauseVideo.stopVideo.getVideoLoadedFraction.cuePlaylist.loadPlaylist.nextVideo.previousVideo.playVideoAt.setShuffle.setLoop.getPlaylist.getPlaylistIndex.setOption.mute.unMute.isMuted.setVolume.getVolume.seekTo.getPlayerState.getPlaybackRate.setPlaybackRate.getAvailablePlaybackRates.getPlaybackQuality.setPlaybackQuality.getAvailableQualityLevels.getCurrentTime.getDuration.removeEventListener.getVideoUrl.getVideoEmbedCode.getOptions.getOption.addEventListener.destroy.setSize.getIframe".split("."), t.exports = e.default;
|
|
57672
|
-
})),
|
|
57716
|
+
})), Bve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57673
57717
|
Object.defineProperty(e, "__esModule", { value: !0 }), e.default = [
|
|
57674
57718
|
"ready",
|
|
57675
57719
|
"stateChange",
|
|
@@ -57679,7 +57723,7 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57679
57723
|
"apiChange",
|
|
57680
57724
|
"volumeChange"
|
|
57681
57725
|
], t.exports = e.default;
|
|
57682
|
-
})),
|
|
57726
|
+
})), Vve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57683
57727
|
Object.defineProperty(e, "__esModule", { value: !0 }), e.default = {
|
|
57684
57728
|
BUFFERING: 3,
|
|
57685
57729
|
ENDED: 0,
|
|
@@ -57688,9 +57732,9 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57688
57732
|
UNSTARTED: -1,
|
|
57689
57733
|
VIDEO_CUED: 5
|
|
57690
57734
|
}, t.exports = e.default;
|
|
57691
|
-
})),
|
|
57735
|
+
})), Hve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57692
57736
|
Object.defineProperty(e, "__esModule", { value: !0 });
|
|
57693
|
-
var n = r(
|
|
57737
|
+
var n = r(Vve());
|
|
57694
57738
|
function r(e) {
|
|
57695
57739
|
return e && e.__esModule ? e : { default: e };
|
|
57696
57740
|
}
|
|
@@ -57713,9 +57757,9 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57713
57757
|
timeout: 3e3
|
|
57714
57758
|
}
|
|
57715
57759
|
}, t.exports = e.default;
|
|
57716
|
-
})),
|
|
57760
|
+
})), Uve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57717
57761
|
Object.defineProperty(e, "__esModule", { value: !0 });
|
|
57718
|
-
var n = o(
|
|
57762
|
+
var n = o(Rve()), r = o(zve()), i = o(Bve()), a = o(Hve());
|
|
57719
57763
|
function o(e) {
|
|
57720
57764
|
return e && e.__esModule ? e : { default: e };
|
|
57721
57765
|
}
|
|
@@ -57782,13 +57826,13 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57782
57826
|
}
|
|
57783
57827
|
return n;
|
|
57784
57828
|
}, e.default = c, t.exports = e.default;
|
|
57785
|
-
})),
|
|
57829
|
+
})), Wve = /* @__PURE__ */ Pt(((e, t) => {
|
|
57786
57830
|
Object.defineProperty(e, "__esModule", { value: !0 });
|
|
57787
57831
|
var n = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
|
|
57788
57832
|
return typeof e;
|
|
57789
57833
|
} : function(e) {
|
|
57790
57834
|
return e && typeof Symbol == "function" && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e;
|
|
57791
|
-
}, r = o(
|
|
57835
|
+
}, r = o(Nve()), i = o(Fve()), a = o(Uve());
|
|
57792
57836
|
function o(e) {
|
|
57793
57837
|
return e && e.__esModule ? e : { default: e };
|
|
57794
57838
|
}
|
|
@@ -57808,16 +57852,16 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57808
57852
|
}), u = a.default.promisifyPlayer(l, o);
|
|
57809
57853
|
return u.on = c.on, u.off = c.off, u;
|
|
57810
57854
|
}, t.exports = e.default;
|
|
57811
|
-
})), K9 = /* @__PURE__ */ It(
|
|
57855
|
+
})), K9 = /* @__PURE__ */ It(jve()), Gve = /* @__PURE__ */ It(Mve()), Kve = /* @__PURE__ */ It(Wve()), qve = Object.defineProperty, Jve = Object.defineProperties, Yve = Object.getOwnPropertyDescriptors, q9 = Object.getOwnPropertySymbols, Xve = Object.prototype.hasOwnProperty, Zve = Object.prototype.propertyIsEnumerable, J9 = (e, t, n) => t in e ? qve(e, t, {
|
|
57812
57856
|
enumerable: !0,
|
|
57813
57857
|
configurable: !0,
|
|
57814
57858
|
writable: !0,
|
|
57815
57859
|
value: n
|
|
57816
57860
|
}) : e[t] = n, Y9 = (e, t) => {
|
|
57817
|
-
for (var n in t ||= {})
|
|
57818
|
-
if (q9) for (var n of q9(t))
|
|
57861
|
+
for (var n in t ||= {}) Xve.call(t, n) && J9(e, n, t[n]);
|
|
57862
|
+
if (q9) for (var n of q9(t)) Zve.call(t, n) && J9(e, n, t[n]);
|
|
57819
57863
|
return e;
|
|
57820
|
-
}, X9 = (e, t) =>
|
|
57864
|
+
}, X9 = (e, t) => Jve(e, Yve(t)), Qve = (e, t, n) => new Promise((r, i) => {
|
|
57821
57865
|
var a = (e) => {
|
|
57822
57866
|
try {
|
|
57823
57867
|
s(n.next(e));
|
|
@@ -57833,7 +57877,7 @@ var vve = ({ titleBlock: e, selectedIndex: t, background: n = "neutral-50-bottom
|
|
|
57833
57877
|
}, s = (e) => e.done ? r(e.value) : Promise.resolve(e.value).then(a, o);
|
|
57834
57878
|
s((n = n.apply(e, t)).next());
|
|
57835
57879
|
});
|
|
57836
|
-
function
|
|
57880
|
+
function $ve(e, t) {
|
|
57837
57881
|
if (e.videoId !== t.videoId) return !0;
|
|
57838
57882
|
let n = e.opts?.playerVars || {}, r = t.opts?.playerVars || {};
|
|
57839
57883
|
return n.start !== r.start || n.end !== r.end;
|
|
@@ -57849,13 +57893,13 @@ function Z9(e = {}) {
|
|
|
57849
57893
|
})
|
|
57850
57894
|
});
|
|
57851
57895
|
}
|
|
57852
|
-
function
|
|
57853
|
-
return e.videoId !== t.videoId || !(0,
|
|
57896
|
+
function eye(e, t) {
|
|
57897
|
+
return e.videoId !== t.videoId || !(0, Gve.default)(Z9(e.opts), Z9(t.opts));
|
|
57854
57898
|
}
|
|
57855
|
-
function
|
|
57899
|
+
function tye(e, t) {
|
|
57856
57900
|
return e.id !== t.id || e.className !== t.className || e.opts?.width !== t.opts?.width || e.opts?.height !== t.opts?.height || e.iframeClassName !== t.iframeClassName || e.title !== t.title;
|
|
57857
57901
|
}
|
|
57858
|
-
var
|
|
57902
|
+
var nye = {
|
|
57859
57903
|
videoId: "",
|
|
57860
57904
|
id: "",
|
|
57861
57905
|
className: "",
|
|
@@ -57872,7 +57916,7 @@ var eye = {
|
|
|
57872
57916
|
onStateChange: () => {},
|
|
57873
57917
|
onPlaybackRateChange: () => {},
|
|
57874
57918
|
onPlaybackQualityChange: () => {}
|
|
57875
|
-
},
|
|
57919
|
+
}, rye = {
|
|
57876
57920
|
videoId: K9.default.string,
|
|
57877
57921
|
id: K9.default.string,
|
|
57878
57922
|
className: K9.default.string,
|
|
@@ -57924,7 +57968,7 @@ var eye = {
|
|
|
57924
57968
|
return;
|
|
57925
57969
|
}
|
|
57926
57970
|
let e = X9(Y9({}, this.props.opts), { videoId: this.props.videoId });
|
|
57927
|
-
this.internalPlayer = (0,
|
|
57971
|
+
this.internalPlayer = (0, Kve.default)(this.container, e), this.internalPlayer.on("ready", this.onPlayerReady), this.internalPlayer.on("error", this.onPlayerError), this.internalPlayer.on("stateChange", this.onPlayerStateChange), this.internalPlayer.on("playbackRateChange", this.onPlayerPlaybackRateChange), this.internalPlayer.on("playbackQualityChange", this.onPlayerPlaybackQualityChange), (this.props.title || this.props.loading) && this.internalPlayer.getIframe().then((e) => {
|
|
57928
57972
|
this.props.title && e.setAttribute("title", this.props.title), this.props.loading && e.setAttribute("loading", this.props.loading);
|
|
57929
57973
|
});
|
|
57930
57974
|
}, this.resetPlayer = () => this.destroyPlayer().then(this.createPlayer), this.updatePlayer = () => {
|
|
@@ -57952,8 +57996,8 @@ var eye = {
|
|
|
57952
57996
|
this.createPlayer();
|
|
57953
57997
|
}
|
|
57954
57998
|
componentDidUpdate(e) {
|
|
57955
|
-
return
|
|
57956
|
-
|
|
57999
|
+
return Qve(this, null, function* () {
|
|
58000
|
+
tye(e, this.props) && this.updatePlayer(), eye(e, this.props) && (yield this.resetPlayer()), $ve(e, this.props) && this.updateVideo();
|
|
57957
58001
|
});
|
|
57958
58002
|
}
|
|
57959
58003
|
componentWillUnmount() {
|
|
@@ -57970,7 +58014,7 @@ var eye = {
|
|
|
57970
58014
|
}));
|
|
57971
58015
|
}
|
|
57972
58016
|
}, $9 = Q9;
|
|
57973
|
-
$9.propTypes =
|
|
58017
|
+
$9.propTypes = rye, $9.defaultProps = nye, $9.PlayerState = {
|
|
57974
58018
|
UNSTARTED: -1,
|
|
57975
58019
|
ENDED: 0,
|
|
57976
58020
|
PLAYING: 1,
|
|
@@ -57978,11 +58022,11 @@ $9.propTypes = tye, $9.defaultProps = eye, $9.PlayerState = {
|
|
|
57978
58022
|
BUFFERING: 3,
|
|
57979
58023
|
CUED: 5
|
|
57980
58024
|
};
|
|
57981
|
-
var
|
|
58025
|
+
var iye = $9, aye = ({ videoId: e, className: t }) => {
|
|
57982
58026
|
let [n, r] = C("");
|
|
57983
58027
|
return h(() => {
|
|
57984
58028
|
typeof window < "u" && r(window.location.origin);
|
|
57985
|
-
}, []), n ? /* @__PURE__ */ T(
|
|
58029
|
+
}, []), n ? /* @__PURE__ */ T(iye, {
|
|
57986
58030
|
videoId: e,
|
|
57987
58031
|
id: e,
|
|
57988
58032
|
className: V("yt-embed relative aspect-video w-full overflow-hidden", "[&_iframe]:absolute [&_iframe]:inset-0 [&_iframe]:size-full", t),
|
|
@@ -57990,6 +58034,6 @@ var nye = $9, rye = ({ videoId: e, className: t }) => {
|
|
|
57990
58034
|
}) : null;
|
|
57991
58035
|
};
|
|
57992
58036
|
//#endregion
|
|
57993
|
-
export { T9 as API_BASIC_PLAN_SHORTNAME, D9 as API_ENTERPRISE_PLAN_SHORTNAME, E9 as API_PLUS_PLAN_SHORTNAME, Ege as AccentDropZone, Dge as AchievementsBlock, _W as ActionButton, rme as ActionHeader, LG as ActivityIndicator, Ame as ActivityRow, Oge as ApiHeroBlock,
|
|
58037
|
+
export { T9 as API_BASIC_PLAN_SHORTNAME, D9 as API_ENTERPRISE_PLAN_SHORTNAME, E9 as API_PLUS_PLAN_SHORTNAME, Ege as AccentDropZone, Dge as AchievementsBlock, _W as ActionButton, rme as ActionHeader, LG as ActivityIndicator, Ame as ActivityRow, Oge as ApiHeroBlock, L_e as ApiPricingCardsContainer, z_e as ApiPricingCardsItem, G_e as ApiPricingFeaturesLegend, K_e as ApiPricingFeaturesSectionItemBadge, B_e as ApiPricingMonthlyPricePerImage, V_e as ApiPricingPartnerCard, zt as AppButton, q_e as AppPricingCardsContainer, X_e as AppPricingCardsItemV2, Z_e as AppPricingFeaturesLegend, Q_e as AppPricingFeaturesSectionItemBadge, o9 as ArticleAuthor, s9 as ArticleContent, Age as ArticleHeroBlock, jge as AssetPreview, As as Avatar, Pme as AvatarSkeleton, Bme as AvatarStack, Pge as AwardsBlock, Rs as Badge, Fge as BentoBlock, Ige as BentoCard, Lge as BlogActionBlock, YW as BlogActionCard, XW as BlogEditorialCard, Rge as BlogQuoteBlock, Bt as BlogSocialButton, u9 as BlogSubtleActionBlock, Bq as Bone, Vme as Breadcrumbs, Er as Button, Or as ButtonCluster, jee as CDN, tfe as CODE_LENGTH, i3 as CanvasInput, $me as CardBadge, zge as CardsBlock, Bge as CardsHeroBlock, Vge as CareersBlock, Hge as CareersBlockItem, pV as CheckGroup, dV as CheckGroupContext, _3 as Checkbox, $de as CheckboxField, g3 as CheckboxIndicator, efe as Chip, Z4 as ChoiceFeedTile, Q4 as ChoiceFeedTileGroup, G5 as ChoiceMultipleGroup, K5 as ChoiceSingleGroup, q5 as ChoiceSingleTile, kr as CircularButton, Ar as ClearButton, y3 as CodeInput, Fde as CollectionTile, Vq as ColorPalette, xY as ColorPicker, CY as ColorRow, SG as ColorSwatch, Uq as ColorWheel, jme as CommentRow, Uge as ComparisonBlock, nG as ComparisonSlider, Wge as ComparisonTable, cU as ContextMenu, Gge as CustomerStoriesBlock, iG as CustomerStoryCard, Kge as DataBlock, kq as Dialog, nU as Divider, b3 as DomainField, O3 as DropZone, S3 as DropZoneAreaWrapper, w3 as DropZoneFullscreen, C3 as DropZoneOverlay, Nq as DropdownListBox, pW as DropdownMenu, W3 as DropdownMenuMultipleSelectionItem, Pq as DropdownMenuSingleSelectionItem, Fq as DropdownMenuSpaceActionItem, Iq as DropdownMenuSpaceItem, rW as DropdownSearchField, hG as EditorialCard, qge as EditorialLineupBlock, ehe as EmptySpace, Jge as EnterpriseGradeBlock, Yge as EnterpriseGradeCard, Mme as EventRow, che as ExportLimitCard, Xge as ExtraTextBlock, Zge as FaqBlock, Qge as FaqItem, n_e as FeatureBlock, o_e as FeatureBlockListItem, r_e as FeatureClassicVisual, i_e as FeatureSwitcher, a_e as FeatureVideoElement, $ge as FeaturesBlock, Khe as FeaturesList, s_e as FeaturesListBlock, c_e as FeaturesListBlockItem, l_e as FeaturesSpotlightBlock, hW as FeedHeader, _c as FeedTile, jr as FieldClearButton, Rq as FieldLabel, d_e as FocusBlock, gG as Folder, j3 as FolderList, U8 as FontFamilyRow, N3 as FontWeightSelectorItem, m9 as FooterV2Block, uhe as FullScreenLoader, dhe as Gauge, _9 as GlossaryAlphabet, h_e as GlossarySection, v9 as GlossaryTermCard, b9 as HeaderBanner, Jhe as Heading, Ns as HelpButton, ZJ as HelperText, Ps as HeroButton, g_e as HeroTitleBlock, T3 as HiddenFileInput, w7 as HighLightedText, Lde as Hint, wY as HoverObjectBox, P3 as ImageField, F3 as ImagePicker, z3 as ImageWidget, __e as ImpactBlock, v_e as ImpactCard, B3 as ImportWidget, Yhe as InfoBanner, Bde as InfoBar, Is as InfoButton, y_e as InfoSnapshot, b_e as InfoSnapshotItem, _G as InfoTable, vG as InfoTableRow, bY as InlineColorPicker, V3 as InlineRadioGroup, H3 as InlineSelector, Sc as InputButton, x_e as InspirationWallBlock, S_e as JoinTeamBlock, QJ as Label, TY as LayerIndicator, hc as LazyImage, yG as LightPromoBanner, Oc as LimitButton, jq as LimitGauge, Dc as LimitIndicatorGauge, bG as LinkCard, J5 as ListChoiceSingleTile, EY as ListItem, Mc as LoginButton, C_e as LogosBlock, w_e as LogosHighlightBlock, T_e as LogosWallBlock, xge as MobileDrawer, Nc as MobileNavigationButton, $W as MoreTile, gW as MultiActionWidget, Rc as NavigationButton, Lc as NavigationToggleButton, TG as NewPaletteTile, s7 as Notification, mhe as NotificationImage, Rhe as NotificationStack, zhe as NotificationsStore, gY as NumberField, Tge as NumberSelectField, DY as ObjectItem, CG as ObjectPreview, EG as OfferCard, E_e as OffersBlock, K3 as OptionGroup, Bc as OverlayButton, zc as OverlayButtonBase, Vc as OverlaySelectButton, z9 as PROMO_BANNER_SESSION_KEY, D_e as PageTitle, C7 as PanelHeader, x7 as PanelHeaderSwitcherButton, q3 as PanelStandardInput, ime as PeopleListItem, mfe as PhotoDropZone, AY as Pill, kY as PillDivider, n3 as PlaceholderTile, Hme as PlanPicker, O_e as PlaygroundBlock, k_e as PlaygroundHeroBlock, JW as Popover, NY as PresenceObjectBox, Y3 as PresetGroup, Hc as PresetPullDownButton, A_e as PressBlock, kK as PreviewBox, H_e as PricingFeatures, A9 as PricingFeaturesLegend, U_e as PricingFeaturesSection, W_e as PricingFeaturesSectionItem, j9 as PricingFeaturesSectionItemBadge, j_e as PricingHeroBlock, $_e as PricingPicker, nve as PricingPickerButton, ic as ProBadge, HG as ProductTile, o7 as Progress, h7 as ProgressStep, rve as PromoBannerBlock, $4 as Prompt, e3 as PromptSuggestion, UG as PromptTile, XG as PropList, Jc as PullDownButton, Yc as QuickActionCard, _fe as QuickActionPhotoCard, ive as QuickToolHeroBlock, ave as QuoteBlock, X3 as RadioGroup, bfe as ReactionBar, xfe as ReactionButton, Xc as RetryButton, sve as Review, ove as ReviewsBlock, tl as RoundButton, nl as RoundedButton, $3 as SamplePicker, d8 as SearchInput, u8 as SearchableSelect, cve as SectionTitle, w5 as SegmentedControl, Jme as SegmentedPicker, eY as SelectField, U3 as SelectTrigger, A3 as SelectionBadge, J4 as SelectionObjectBox, CK as SelectionTile, PG as SellScore, Hhe as Shortcut, T5 as SideNavigationHeader, E5 as SideNavigationItem, Xme as SideNavigationItemSkeleton, lve as SidePageTitle, W8 as SizeListItem, N8 as Slider, Kpe as SliderField, uve as SmallSectionTitle, rl as SocialButton, Lq as SpacePullDownButton, Mq as SpaceUsageDialog, u_e as SpotlightCard, al as StandaloneLink, Xpe as StandardInput, P8 as StandardInputImagePrompt, I8 as StandardInputTextPrompt, wK as StarterTile, _7 as StatusBadge, TK as StepCard, dve as StepsBlock, Lse as StoreButton, ac as StudioBadge, Ide as Suggestion, L8 as SwitchField, R8 as SwitchGroup, A5 as Tabs, B9 as TagCloudBlock, B8 as TagField, z8 as TagFieldComponent, M5 as TagGroup, F5 as TagNavigation, fve as TakeActionBlock, pve as TakeActionBlockV2, hve as TestimonialItem, mve as TestimonialsBlock, F8 as TextArea, gve as TextContentBlock, vve as TextContentCard, V8 as TextEditionBox, H8 as TextField, tme as TextFieldLabel, rY as TextInput, t3 as TextSuggestion, Y4 as TextureSwatch, Uhe as ToastProgress, aE as ToggleButton, LE as ToggleStack, V9 as ToolCard, yve as ToolCategoryBannerBlock, I5 as ToolMenuButton, H9 as ToolSmallCard, Ko as Tooltip, Jo as TooltipSection, js as TooltipUserRow, Whe as TransformationEmptySpace, xve as UseCaseItemContentTransform, Sve as UseCaseItemContentTransformItem, bve as UseCasesBlock, RE as ValidationBanner, wve as ValueCard, Cve as ValuesBlock, Dme as VariantsList, S5 as VariantsListItem, DK as VideoPlayer, jK as VisualToolTile, aye as YoutubeEmbed, zq as boneVariants, H as cn, Oq as contentVariants, Ms as convertMarkdownLinksToHTML, N9 as getMonthlyPriceDetails, M9 as getWeeklyPriceDetails, P9 as getYearlyPriceDetails, _r as isValidComponent, gr as noop, Dq as overlayVariants, O9 as useApiMonthlyPlanPrice, F9 as useBillingPeriodPrices, lV as useCarousel, fV as useCheckGroup, nfe as useCodeInput, uV as useControlledState, lhe as useExportLimitCard, D3 as useFileUploader, mV as useFocusKeyNav, UH as useFuse, GH as useImageLoadStatus, KH as useLazyLoadVideo, I9 as useLocalizedAppPriceInfo, qH as usePasteFilesHandler, x9 as usePriceCountryCurrencyDisplayName, JH as useWindowDragEvents, qo as withTooltip };
|
|
57994
58038
|
|
|
57995
58039
|
//# sourceMappingURL=index.mjs.map
|