@rebnd/ui 0.0.1

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.
Files changed (78) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +74 -0
  3. package/dist/index.d.ts +542 -0
  4. package/dist/src/App.vue.d.ts +2 -0
  5. package/dist/src/assets/constants/icons.d.ts +3 -0
  6. package/dist/src/components/RAccordion/RAccordion.d.ts +27 -0
  7. package/dist/src/components/RAccordion/utils/accordion.props.d.ts +14 -0
  8. package/dist/src/components/RAccordion/utils/accordion.style.d.ts +2 -0
  9. package/dist/src/components/RAvatar/RAvatar.d.ts +48 -0
  10. package/dist/src/components/RAvatar/utils/avatar.props.d.ts +24 -0
  11. package/dist/src/components/RAvatar/utils/avatar.style.d.ts +45 -0
  12. package/dist/src/components/RAvatarGroup/RAvatarGroup.d.ts +27 -0
  13. package/dist/src/components/RAvatarGroup/utils/avatar-group.props.d.ts +14 -0
  14. package/dist/src/components/RAvatarGroup/utils/avatar-group.style.d.ts +5 -0
  15. package/dist/src/components/RBadge/RBadge.d.ts +69 -0
  16. package/dist/src/components/RBadge/utils/badge.props.d.ts +33 -0
  17. package/dist/src/components/RBadge/utils/badge.style.d.ts +117 -0
  18. package/dist/src/components/RBreadcrumb/RBreadcrumb.d.ts +26 -0
  19. package/dist/src/components/RBreadcrumb/utils/breadcrumb.props.d.ts +13 -0
  20. package/dist/src/components/RBreadcrumb/utils/breadcrumb.style.d.ts +2 -0
  21. package/dist/src/components/RButton/RButton.d.ts +51 -0
  22. package/dist/src/components/RButton/utils/button.props.d.ts +25 -0
  23. package/dist/src/components/RButton/utils/button.style.d.ts +102 -0
  24. package/dist/src/components/RCard/RCard.d.ts +16 -0
  25. package/dist/src/components/RCard/utils/card.props.d.ts +8 -0
  26. package/dist/src/components/RCard/utils/card.style.d.ts +2 -0
  27. package/dist/src/components/RCombobox/RCombobox.d.ts +37 -0
  28. package/dist/src/components/RCombobox/utils/combobox.props.d.ts +15 -0
  29. package/dist/src/components/RCombobox/utils/combobox.style.d.ts +1 -0
  30. package/dist/src/components/RDropdown/RDropdown.d.ts +43 -0
  31. package/dist/src/components/RDropdown/utils/dropdown.props.d.ts +21 -0
  32. package/dist/src/components/RDropdown/utils/dropdown.style.d.ts +2 -0
  33. package/dist/src/components/RForm/RForm.d.ts +24 -0
  34. package/dist/src/components/RForm/utils/form.props.d.ts +13 -0
  35. package/dist/src/components/RForm/utils/form.style.d.ts +2 -0
  36. package/dist/src/components/RFormGroup/RFormGroup.d.ts +16 -0
  37. package/dist/src/components/RFormGroup/utils/form-group.props.d.ts +7 -0
  38. package/dist/src/components/RFormGroup/utils/form-group.style.d.ts +2 -0
  39. package/dist/src/components/RIcon/RIcon.d.ts +42 -0
  40. package/dist/src/components/RIcon/utils/icon.props.d.ts +21 -0
  41. package/dist/src/components/RIcon/utils/icon.style.d.ts +2 -0
  42. package/dist/src/components/RInput/RInput.d.ts +27 -0
  43. package/dist/src/components/RInput/utils/input.props.d.ts +11 -0
  44. package/dist/src/components/RInput/utils/input.style.d.ts +2 -0
  45. package/dist/src/components/RLink/RLink.d.ts +16 -0
  46. package/dist/src/components/RLink/utils/link.props.d.ts +9 -0
  47. package/dist/src/components/RLink/utils/link.style.d.ts +2 -0
  48. package/dist/src/components/RTab/RTab.d.ts +24 -0
  49. package/dist/src/components/RTab/utils/tab.props.d.ts +11 -0
  50. package/dist/src/components/RTab/utils/tab.style.d.ts +2 -0
  51. package/dist/src/components/RTabs/RTabs.d.ts +40 -0
  52. package/dist/src/components/RTabs/utils/tabs.props.d.ts +19 -0
  53. package/dist/src/components/RTabs/utils/tabs.style.d.ts +37 -0
  54. package/dist/src/components/RTextArea/RTextArea.d.ts +25 -0
  55. package/dist/src/components/RTextArea/utils/text-area.props.d.ts +11 -0
  56. package/dist/src/components/RTextArea/utils/text-area.style.d.ts +2 -0
  57. package/dist/src/main.d.ts +0 -0
  58. package/dist/src/theme/animations.d.ts +6 -0
  59. package/dist/src/theme/colors.d.ts +248 -0
  60. package/dist/src/theme/global-css.d.ts +2 -0
  61. package/dist/src/theme/index.d.ts +5 -0
  62. package/dist/src/theme/keyframes.d.ts +2 -0
  63. package/dist/src/theme/semantic-tokens.d.ts +133 -0
  64. package/dist/src/theme/shadows.d.ts +59 -0
  65. package/dist/src/theme/tokens.d.ts +313 -0
  66. package/dist/src/types/component.d.ts +26 -0
  67. package/dist/src/types/form.d.ts +8 -0
  68. package/dist/src/types/index.d.ts +3 -0
  69. package/dist/src/utils/components.d.ts +4 -0
  70. package/dist/src/utils/errorHandler.d.ts +4 -0
  71. package/dist/src/utils/object.d.ts +2 -0
  72. package/dist/src/utils/regex.d.ts +5 -0
  73. package/dist/src/utils/string.d.ts +4 -0
  74. package/dist/src/utils/test.d.ts +2 -0
  75. package/dist/styles.css +1886 -0
  76. package/dist/ui.js +2577 -0
  77. package/dist/ui.umd.cjs +3 -0
  78. package/package.json +69 -0
package/dist/ui.js ADDED
@@ -0,0 +1,2577 @@
1
+ import { defineComponent as x, ref as C, h as p, nextTick as ne, isVNode as tt, computed as y, cloneVNode as Y, shallowRef as rt, watch as te, getCurrentScope as nt, onScopeDispose as ot, shallowReadonly as P, unref as at, provide as it, inject as st, resolveComponent as lt, withDirectives as ct, vShow as dt, onMounted as ut, onUnmounted as ft } from "vue";
2
+ const mt = {
3
+ details: {
4
+ type: Array,
5
+ required: !0,
6
+ default: () => []
7
+ },
8
+ multiple: {
9
+ type: Boolean,
10
+ default: !1
11
+ }
12
+ };
13
+ function oe(e) {
14
+ return typeof e == "object" && e != null && !Array.isArray(e);
15
+ }
16
+ var pt = (e) => typeof e == "object" && e !== null;
17
+ function Be(e) {
18
+ return Object.fromEntries(Object.entries(e ?? {}).filter(([t, r]) => r !== void 0));
19
+ }
20
+ var gt = (e) => e === "base";
21
+ function bt(e) {
22
+ return e.slice().filter((t) => !gt(t));
23
+ }
24
+ function ye(e) {
25
+ return String.fromCharCode(e + (e > 25 ? 39 : 97));
26
+ }
27
+ function ht(e) {
28
+ let t = "", r;
29
+ for (r = Math.abs(e); r > 52; r = r / 52 | 0)
30
+ t = ye(r % 52) + t;
31
+ return ye(r % 52) + t;
32
+ }
33
+ function yt(e, t) {
34
+ let r = t.length;
35
+ for (; r; )
36
+ e = e * 33 ^ t.charCodeAt(--r);
37
+ return e;
38
+ }
39
+ function vt(e) {
40
+ return ht(yt(5381, e) >>> 0);
41
+ }
42
+ var ze = /\s*!(important)?/i;
43
+ function xt(e) {
44
+ return typeof e == "string" ? ze.test(e) : !1;
45
+ }
46
+ function wt(e) {
47
+ return typeof e == "string" ? e.replace(ze, "").trim() : e;
48
+ }
49
+ function Oe(e) {
50
+ return typeof e == "string" ? e.replaceAll(" ", "_") : e;
51
+ }
52
+ var U = (e) => {
53
+ const t = /* @__PURE__ */ new Map();
54
+ return (...n) => {
55
+ const o = JSON.stringify(n);
56
+ if (t.has(o))
57
+ return t.get(o);
58
+ const i = e(...n);
59
+ return t.set(o, i), i;
60
+ };
61
+ };
62
+ function se(...e) {
63
+ return e.reduce((t, r) => (r && Object.keys(r).forEach((n) => {
64
+ const o = t[n], i = r[n];
65
+ oe(o) && oe(i) ? t[n] = se(o, i) : t[n] = i;
66
+ }), t), {});
67
+ }
68
+ var kt = (e) => e != null;
69
+ function De(e, t, r = {}) {
70
+ const { stop: n, getKey: o } = r;
71
+ function i(a, s = []) {
72
+ if (pt(a)) {
73
+ const l = {};
74
+ for (const [c, f] of Object.entries(a)) {
75
+ const d = (o == null ? void 0 : o(c, f)) ?? c, u = [...s, d];
76
+ if (n != null && n(a, u))
77
+ return t(a, s);
78
+ const m = i(f, u);
79
+ kt(m) && (l[d] = m);
80
+ }
81
+ return l;
82
+ }
83
+ return t(a, s);
84
+ }
85
+ return i(e);
86
+ }
87
+ function _t(e, t) {
88
+ return e.reduce(
89
+ (r, n, o) => {
90
+ const i = t[o];
91
+ return n != null && (r[i] = n), r;
92
+ },
93
+ {}
94
+ );
95
+ }
96
+ function Ve(e, t, r = !0) {
97
+ const { utility: n, conditions: o } = t, { hasShorthand: i, resolveShorthand: a } = n;
98
+ return De(
99
+ e,
100
+ (s) => Array.isArray(s) ? _t(s, o.breakpoints.keys) : s,
101
+ {
102
+ stop: (s) => Array.isArray(s),
103
+ getKey: r ? (s) => i ? a(s) : s : void 0
104
+ }
105
+ );
106
+ }
107
+ var Ct = {
108
+ shift: (e) => e,
109
+ finalize: (e) => e,
110
+ breakpoints: { keys: [] }
111
+ }, St = (e) => typeof e == "string" ? e.replaceAll(/[\n\s]+/g, " ") : e;
112
+ function Rt(e) {
113
+ const { utility: t, hash: r, conditions: n = Ct } = e, o = (a) => [t.prefix, a].filter(Boolean).join("-"), i = (a, s) => {
114
+ let l;
115
+ if (r) {
116
+ const c = [...n.finalize(a), s];
117
+ l = o(t.toHash(c, vt));
118
+ } else
119
+ l = [...n.finalize(a), o(s)].join(":");
120
+ return l;
121
+ };
122
+ return U(({ base: a, ...s } = {}) => {
123
+ const l = Object.assign(s, a), c = Ve(l, e), f = /* @__PURE__ */ new Set();
124
+ return De(c, (d, u) => {
125
+ if (d == null)
126
+ return;
127
+ const m = xt(d), [h, ...b] = n.shift(u), g = bt(b), k = t.transform(h, wt(St(d)));
128
+ let v = i(g, k.className);
129
+ m && (v = `${v}!`), f.add(v);
130
+ }), Array.from(f).join(" ");
131
+ });
132
+ }
133
+ function Tt(...e) {
134
+ return e.flat().filter((t) => oe(t) && Object.keys(Be(t)).length > 0);
135
+ }
136
+ function Et(e) {
137
+ function t(o) {
138
+ const i = Tt(...o);
139
+ return i.length === 1 ? i : i.map((a) => Ve(a, e));
140
+ }
141
+ function r(...o) {
142
+ return se(...t(o));
143
+ }
144
+ function n(...o) {
145
+ return Object.assign({}, ...t(o));
146
+ }
147
+ return { mergeCss: U(r), assignCss: n };
148
+ }
149
+ var At = /([A-Z])/g, Bt = /^ms-/, zt = U((e) => e.startsWith("--") ? e : e.replace(At, "-$1").replace(Bt, "-ms-").toLowerCase()), Ot = "cm,mm,Q,in,pc,pt,px,em,ex,ch,rem,lh,rlh,vw,vh,vmin,vmax,vb,vi,svw,svh,lvw,lvh,dvw,dvh,cqw,cqh,cqi,cqb,cqmin,cqmax,%";
150
+ `${Ot.split(",").join("|")}`;
151
+ function Dt(e, ...t) {
152
+ const r = Object.getOwnPropertyDescriptors(e), n = Object.keys(r), o = (a) => {
153
+ const s = {};
154
+ for (let l = 0; l < a.length; l++) {
155
+ const c = a[l];
156
+ r[c] && (Object.defineProperty(s, c, r[c]), delete r[c]);
157
+ }
158
+ return s;
159
+ }, i = (a) => o(Array.isArray(a) ? a : n.filter(a));
160
+ return t.map(i).concat(o(n));
161
+ }
162
+ var Vt = (...e) => {
163
+ const t = e.reduce((r, n) => (n && n.forEach((o) => r.add(o)), r), /* @__PURE__ */ new Set([]));
164
+ return Array.from(t);
165
+ };
166
+ const Lt = "_light,_dark,_hover,_focus,_focusWithin,_focusVisible,_disabled,_active,_visited,_target,_readOnly,_readWrite,_empty,_checked,_enabled,_expanded,_highlighted,_complete,_incomplete,_dragging,_before,_after,_firstLetter,_firstLine,_marker,_selection,_file,_backdrop,_first,_last,_only,_even,_odd,_firstOfType,_lastOfType,_onlyOfType,_peerFocus,_peerHover,_peerActive,_peerFocusWithin,_peerFocusVisible,_peerDisabled,_peerChecked,_peerInvalid,_peerExpanded,_peerPlaceholderShown,_groupFocus,_groupHover,_groupActive,_groupFocusWithin,_groupFocusVisible,_groupDisabled,_groupChecked,_groupExpanded,_groupInvalid,_indeterminate,_required,_valid,_invalid,_autofill,_inRange,_outOfRange,_placeholder,_placeholderShown,_pressed,_selected,_grabbed,_underValue,_overValue,_atValue,_default,_optional,_open,_closed,_fullscreen,_loading,_hidden,_current,_currentPage,_currentStep,_today,_unavailable,_rangeStart,_rangeEnd,_now,_topmost,_motionReduce,_motionSafe,_print,_landscape,_portrait,_osDark,_osLight,_highContrast,_lessContrast,_moreContrast,_ltr,_rtl,_scrollbar,_scrollbarThumb,_scrollbarTrack,_horizontal,_vertical,_icon,_starting,sm,smOnly,smDown,md,mdOnly,mdDown,lg,lgOnly,lgDown,xl,xlOnly,xlDown,2xl,2xlOnly,2xlDown,smToMd,smToLg,smToXl,smTo2xl,mdToLg,mdToXl,mdTo2xl,lgToXl,lgTo2xl,xlTo2xl,@/xs,@/sm,@/md,@/lg,@/xl,@/2xl,@/3xl,@/4xl,@/5xl,@/6xl,@/7xl,@/8xl,base", Le = new Set(Lt.split(",")), It = /^@|&|&$/;
167
+ function ve(e) {
168
+ return Le.has(e) || It.test(e);
169
+ }
170
+ const Mt = /^_/, $t = /&|@/;
171
+ function Nt(e) {
172
+ return e.map((t) => Le.has(t) ? t.replace(Mt, "") : $t.test(t) ? `[${Oe(t.trim())}]` : t);
173
+ }
174
+ function Pt(e) {
175
+ return e.sort((t, r) => {
176
+ const n = ve(t), o = ve(r);
177
+ return n && !o ? 1 : !n && o ? -1 : 0;
178
+ });
179
+ }
180
+ const Wt = "aspectRatio:asp,boxDecorationBreak:bx-db,zIndex:z,boxSizing:bx-s,objectPosition:obj-p,objectFit:obj-f,overscrollBehavior:ovs-b,overscrollBehaviorX:ovs-bx,overscrollBehaviorY:ovs-by,position:pos/1,top:top,left:left,inset:inset,insetInline:inset-x/insetX,insetBlock:inset-y/insetY,insetBlockEnd:inset-be,insetBlockStart:inset-bs,insetInlineEnd:inset-e/insetEnd/end,insetInlineStart:inset-s/insetStart/start,right:right,bottom:bottom,float:float,visibility:vis,display:d,hideFrom:hide,hideBelow:show,flexBasis:flex-b,flex:flex,flexDirection:flex-d/flexDir,flexGrow:flex-g,flexShrink:flex-sh,gridTemplateColumns:grid-tc,gridTemplateRows:grid-tr,gridColumn:grid-c,gridRow:grid-r,gridColumnStart:grid-cs,gridColumnEnd:grid-ce,gridAutoFlow:grid-af,gridAutoColumns:grid-ac,gridAutoRows:grid-ar,gap:gap,gridGap:grid-g,gridRowGap:grid-rg,gridColumnGap:grid-cg,rowGap:rg,columnGap:cg,justifyContent:jc,alignContent:ac,alignItems:ai,alignSelf:as,padding:p/1,paddingLeft:pl/1,paddingRight:pr/1,paddingTop:pt/1,paddingBottom:pb/1,paddingBlock:py/1/paddingY,paddingBlockEnd:pbe,paddingBlockStart:pbs,paddingInline:px/paddingX/1,paddingInlineEnd:pe/1/paddingEnd,paddingInlineStart:ps/1/paddingStart,marginLeft:ml/1,marginRight:mr/1,marginTop:mt/1,marginBottom:mb/1,margin:m/1,marginBlock:my/1/marginY,marginBlockEnd:mbe,marginBlockStart:mbs,marginInline:mx/1/marginX,marginInlineEnd:me/1/marginEnd,marginInlineStart:ms/1/marginStart,spaceX:sx,spaceY:sy,outlineWidth:ring-w/ringWidth,outlineColor:ring-c/ringColor,outline:ring/1,outlineOffset:ring-o/ringOffset,divideX:dvd-x,divideY:dvd-y,divideColor:dvd-c,divideStyle:dvd-s,width:w/1,inlineSize:w-is,minWidth:min-w/minW,minInlineSize:min-w-is,maxWidth:max-w/maxW,maxInlineSize:max-w-is,height:h/1,blockSize:h-bs,minHeight:min-h/minH,minBlockSize:min-h-bs,maxHeight:max-h/maxH,maxBlockSize:max-b,color:c,fontFamily:ff,fontSize:fs,fontSizeAdjust:fs-a,fontPalette:fp,fontKerning:fk,fontFeatureSettings:ff-s,fontWeight:fw,fontSmoothing:fsmt,fontVariant:fv,fontVariantAlternates:fv-alt,fontVariantCaps:fv-caps,fontVariationSettings:fv-s,fontVariantNumeric:fv-num,letterSpacing:ls,lineHeight:lh,textAlign:ta,textDecoration:td,textDecorationColor:td-c,textEmphasisColor:te-c,textDecorationStyle:td-s,textDecorationThickness:td-t,textUnderlineOffset:tu-o,textTransform:tt,textIndent:ti,textShadow:tsh,textShadowColor:tsh-c/textShadowColor,textOverflow:tov,verticalAlign:va,wordBreak:wb,textWrap:tw,truncate:trunc,lineClamp:lc,listStyleType:li-t,listStylePosition:li-pos,listStyleImage:li-img,listStyle:li-s,backgroundPosition:bg-p/bgPosition,backgroundPositionX:bg-p-x/bgPositionX,backgroundPositionY:bg-p-y/bgPositionY,backgroundAttachment:bg-a/bgAttachment,backgroundClip:bg-cp/bgClip,background:bg/1,backgroundColor:bg-c/bgColor,backgroundOrigin:bg-o/bgOrigin,backgroundImage:bg-i/bgImage,backgroundRepeat:bg-r/bgRepeat,backgroundBlendMode:bg-bm/bgBlendMode,backgroundSize:bg-s/bgSize,backgroundGradient:bg-grad/bgGradient,textGradient:txt-grad,gradientFromPosition:grad-from-pos,gradientToPosition:grad-to-pos,gradientFrom:grad-from,gradientTo:grad-to,gradientVia:grad-via,gradientViaPosition:grad-via-pos,borderRadius:bdr/rounded,borderTopLeftRadius:bdr-tl/roundedTopLeft,borderTopRightRadius:bdr-tr/roundedTopRight,borderBottomRightRadius:bdr-br/roundedBottomRight,borderBottomLeftRadius:bdr-bl/roundedBottomLeft,borderTopRadius:bdr-t/roundedTop,borderRightRadius:bdr-r/roundedRight,borderBottomRadius:bdr-b/roundedBottom,borderLeftRadius:bdr-l/roundedLeft,borderStartStartRadius:bdr-ss/roundedStartStart,borderStartEndRadius:bdr-se/roundedStartEnd,borderStartRadius:bdr-s/roundedStart,borderEndStartRadius:bdr-es/roundedEndStart,borderEndEndRadius:bdr-ee/roundedEndEnd,borderEndRadius:bdr-e/roundedEnd,border:bd,borderWidth:bd-w,borderTopWidth:bd-t-w,borderLeftWidth:bd-l-w,borderRightWidth:bd-r-w,borderBottomWidth:bd-b-w,borderColor:bd-c,borderInline:bd-x/borderX,borderInlineWidth:bd-x-w/borderXWidth,borderInlineColor:bd-x-c/borderXColor,borderBlock:bd-y/borderY,borderBlockWidth:bd-y-w/borderYWidth,borderBlockColor:bd-y-c/borderYColor,borderLeft:bd-l,borderLeftColor:bd-l-c,borderInlineStart:bd-s/borderStart,borderInlineStartWidth:bd-s-w/borderStartWidth,borderInlineStartColor:bd-s-c/borderStartColor,borderRight:bd-r,borderRightColor:bd-r-c,borderInlineEnd:bd-e/borderEnd,borderInlineEndWidth:bd-e-w/borderEndWidth,borderInlineEndColor:bd-e-c/borderEndColor,borderTop:bd-t,borderTopColor:bd-t-c,borderBottom:bd-b,borderBottomColor:bd-b-c,borderBlockEnd:bd-be,borderBlockEndColor:bd-be-c,borderBlockStart:bd-bs,borderBlockStartColor:bd-bs-c,opacity:op,boxShadow:bx-sh/shadow,boxShadowColor:bx-sh-c/shadowColor,mixBlendMode:mix-bm,filter:filter,brightness:brightness,contrast:contrast,grayscale:grayscale,hueRotate:hue-rotate,invert:invert,saturate:saturate,sepia:sepia,dropShadow:drop-shadow,blur:blur,backdropFilter:bkdp,backdropBlur:bkdp-blur,backdropBrightness:bkdp-brightness,backdropContrast:bkdp-contrast,backdropGrayscale:bkdp-grayscale,backdropHueRotate:bkdp-hue-rotate,backdropInvert:bkdp-invert,backdropOpacity:bkdp-opacity,backdropSaturate:bkdp-saturate,backdropSepia:bkdp-sepia,borderCollapse:bd-cl,borderSpacing:bd-sp,borderSpacingX:bd-sx,borderSpacingY:bd-sy,tableLayout:tbl,transitionTimingFunction:trs-tmf,transitionDelay:trs-dly,transitionDuration:trs-dur,transitionProperty:trs-prop,transition:trs,animation:anim,animationName:anim-n,animationTimingFunction:anim-tmf,animationDuration:anim-dur,animationDelay:anim-dly,animationPlayState:anim-ps,animationComposition:anim-comp,animationFillMode:anim-fm,animationDirection:anim-dir,animationIterationCount:anim-ic,animationRange:anim-r,animationState:anim-s,animationRangeStart:anim-rs,animationRangeEnd:anim-re,animationTimeline:anim-tl,transformOrigin:trf-o,transformBox:trf-b,transformStyle:trf-s,transform:trf,rotate:rotate,rotateX:rotate-x,rotateY:rotate-y,rotateZ:rotate-z,scale:scale,scaleX:scale-x,scaleY:scale-y,translate:translate,translateX:translate-x/x,translateY:translate-y/y,translateZ:translate-z/z,accentColor:ac-c,caretColor:ca-c,scrollBehavior:scr-bhv,scrollbar:scr-bar,scrollbarColor:scr-bar-c,scrollbarGutter:scr-bar-g,scrollbarWidth:scr-bar-w,scrollMargin:scr-m,scrollMarginLeft:scr-ml,scrollMarginRight:scr-mr,scrollMarginTop:scr-mt,scrollMarginBottom:scr-mb,scrollMarginBlock:scr-my/scrollMarginY,scrollMarginBlockEnd:scr-mbe,scrollMarginBlockStart:scr-mbt,scrollMarginInline:scr-mx/scrollMarginX,scrollMarginInlineEnd:scr-me,scrollMarginInlineStart:scr-ms,scrollPadding:scr-p,scrollPaddingBlock:scr-py/scrollPaddingY,scrollPaddingBlockStart:scr-pbs,scrollPaddingBlockEnd:scr-pbe,scrollPaddingInline:scr-px/scrollPaddingX,scrollPaddingInlineEnd:scr-pe,scrollPaddingInlineStart:scr-ps,scrollPaddingLeft:scr-pl,scrollPaddingRight:scr-pr,scrollPaddingTop:scr-pt,scrollPaddingBottom:scr-pb,scrollSnapAlign:scr-sa,scrollSnapStop:scrs-s,scrollSnapType:scrs-t,scrollSnapStrictness:scrs-strt,scrollSnapMargin:scrs-m,scrollSnapMarginTop:scrs-mt,scrollSnapMarginBottom:scrs-mb,scrollSnapMarginLeft:scrs-ml,scrollSnapMarginRight:scrs-mr,scrollSnapCoordinate:scrs-c,scrollSnapDestination:scrs-d,scrollSnapPointsX:scrs-px,scrollSnapPointsY:scrs-py,scrollSnapTypeX:scrs-tx,scrollSnapTypeY:scrs-ty,scrollTimeline:scrtl,scrollTimelineAxis:scrtl-a,scrollTimelineName:scrtl-n,touchAction:tch-a,userSelect:us,overflow:ov,overflowWrap:ov-wrap,overflowX:ov-x,overflowY:ov-y,overflowAnchor:ov-a,overflowBlock:ov-b,overflowInline:ov-i,overflowClipBox:ovcp-bx,overflowClipMargin:ovcp-m,overscrollBehaviorBlock:ovs-bb,overscrollBehaviorInline:ovs-bi,fill:fill,stroke:stk,strokeWidth:stk-w,strokeDasharray:stk-dsh,strokeDashoffset:stk-do,strokeLinecap:stk-lc,strokeLinejoin:stk-lj,strokeMiterlimit:stk-ml,strokeOpacity:stk-op,srOnly:sr,debug:debug,appearance:ap,backfaceVisibility:bfv,clipPath:cp-path,hyphens:hy,mask:msk,maskImage:msk-i,maskSize:msk-s,textSizeAdjust:txt-adj,container:cq,containerName:cq-n,containerType:cq-t,cursor:cursor,textStyle:textStyle", Ie = /* @__PURE__ */ new Map(), Me = /* @__PURE__ */ new Map();
181
+ Wt.split(",").forEach((e) => {
182
+ const [t, r] = e.split(":"), [n, ...o] = r.split("/");
183
+ Ie.set(t, n), o.length && o.forEach((i) => {
184
+ Me.set(i === "1" ? n : i, t);
185
+ });
186
+ });
187
+ const xe = (e) => Me.get(e) || e, $e = {
188
+ conditions: {
189
+ shift: Pt,
190
+ finalize: Nt,
191
+ breakpoints: { keys: ["base", "sm", "md", "lg", "xl", "2xl"] }
192
+ },
193
+ utility: {
194
+ transform: (e, t) => {
195
+ const r = xe(e);
196
+ return { className: `${Ie.get(r) || zt(r)}_${Oe(t)}` };
197
+ },
198
+ hasShorthand: !0,
199
+ toHash: (e, t) => t(e.join(":")),
200
+ resolveShorthand: xe
201
+ }
202
+ }, jt = Rt($e), w = (...e) => jt(I(...e));
203
+ w.raw = (...e) => I(...e);
204
+ const { mergeCss: I } = Et($e), we = (e) => ({
205
+ base: {},
206
+ variants: {},
207
+ defaultVariants: {},
208
+ compoundVariants: [],
209
+ ...e
210
+ });
211
+ function G(e) {
212
+ const { base: t, variants: r, defaultVariants: n, compoundVariants: o } = we(e), i = (u) => ({ ...n, ...Be(u) });
213
+ function a(u = {}) {
214
+ var g;
215
+ const m = i(u);
216
+ let h = { ...t };
217
+ for (const [k, v] of Object.entries(m))
218
+ (g = r[k]) != null && g[v] && (h = I(h, r[k][v]));
219
+ const b = Ft(o, m);
220
+ return I(h, b);
221
+ }
222
+ function s(u) {
223
+ const m = we(u.config), h = Vt(u.variantKeys, Object.keys(r));
224
+ return G({
225
+ base: I(t, m.base),
226
+ variants: Object.fromEntries(
227
+ h.map((b) => [b, I(r[b], m.variants[b])])
228
+ ),
229
+ defaultVariants: se(n, m.defaultVariants),
230
+ compoundVariants: [...o, ...m.compoundVariants]
231
+ });
232
+ }
233
+ function l(u) {
234
+ return w(a(u));
235
+ }
236
+ const c = Object.keys(r);
237
+ function f(u) {
238
+ return Dt(u, c);
239
+ }
240
+ const d = Object.fromEntries(Object.entries(r).map(([u, m]) => [u, Object.keys(m)]));
241
+ return Object.assign(U(l), {
242
+ __cva__: !0,
243
+ variantMap: d,
244
+ variantKeys: c,
245
+ raw: a,
246
+ config: e,
247
+ merge: s,
248
+ splitVariantProps: f,
249
+ getVariantProps: i
250
+ });
251
+ }
252
+ function Ft(e, t) {
253
+ let r = {};
254
+ return e.forEach((n) => {
255
+ Object.entries(n).every(([i, a]) => i === "css" ? !0 : (Array.isArray(a) ? a : [a]).some((l) => t[i] === l)) && (r = I(r, n.css));
256
+ }), r;
257
+ }
258
+ const Ht = w({
259
+ cursor: "pointer",
260
+ minWidth: "320px",
261
+ border: "1px solid",
262
+ borderColor: {
263
+ base: "neutrals.800",
264
+ _dark: "neutrals.100"
265
+ },
266
+ "& details": {
267
+ fontWeight: "bold",
268
+ backgroundColor: {
269
+ base: {
270
+ base: "neutrals.100",
271
+ _hover: "neutrals.200"
272
+ },
273
+ _dark: {
274
+ base: "neutrals.900",
275
+ _hover: "neutrals.800"
276
+ }
277
+ },
278
+ "&[open]": {
279
+ "& > summary": {
280
+ _before: {
281
+ transform: "rotate(-45deg)",
282
+ transition: "transform 400ms cubic-bezier(0.4, 0, 0.2, 1)"
283
+ }
284
+ }
285
+ },
286
+ "& > summary": {
287
+ position: "relative",
288
+ display: "flex",
289
+ flexDirection: "row",
290
+ gap: ".5rem",
291
+ padding: "1rem",
292
+ alignItems: "center",
293
+ listStyle: "none",
294
+ "& i": {
295
+ fontSize: "0.75rem"
296
+ },
297
+ _before: {
298
+ content: "''",
299
+ position: "absolute",
300
+ top: "calc(50% - 5px)",
301
+ right: "16px",
302
+ width: "8px",
303
+ height: "8px",
304
+ backgroundColor: {
305
+ base: {
306
+ base: "neutrals.100"
307
+ },
308
+ _dark: {
309
+ base: "neutrals.900"
310
+ }
311
+ },
312
+ borderStyle: "solid",
313
+ borderWidth: "2px 2px 0 0",
314
+ display: "inline-block",
315
+ borderColor: {
316
+ base: "neutrals.800",
317
+ _dark: "neutrals.50"
318
+ },
319
+ transform: "rotate(135deg)",
320
+ transition: "transform 400ms cubic-bezier(0.4, 0, 0.2, 1)",
321
+ verticalAlign: "top"
322
+ }
323
+ },
324
+ "& p": {
325
+ padding: "1rem"
326
+ },
327
+ "&:not(:last-child)": {
328
+ borderBottom: "1px solid",
329
+ borderColor: {
330
+ base: "neutrals.800",
331
+ _dark: "neutrals.100"
332
+ }
333
+ }
334
+ }
335
+ }), Xt = x({
336
+ name: "RebndAccordion",
337
+ props: mt,
338
+ setup(e) {
339
+ const t = C([]);
340
+ function r(o) {
341
+ o && o instanceof HTMLDetailsElement && t.value.push(o);
342
+ }
343
+ async function n(o, i) {
344
+ if (!(e.multiple || o.newState === "closed"))
345
+ for await (const a of t.value)
346
+ await ne(() => {
347
+ i !== a.id && (a.open = !1);
348
+ });
349
+ }
350
+ return () => p(
351
+ "div",
352
+ { class: Ht },
353
+ e.details.map(
354
+ (o) => p(
355
+ "details",
356
+ {
357
+ id: o.id,
358
+ ref: r,
359
+ key: o.id,
360
+ onToggle: (i) => n(i, o.id)
361
+ },
362
+ [
363
+ p("summary", [
364
+ o.icon && p("i", { class: o.icon }),
365
+ o.title
366
+ ]),
367
+ p("p", o.content)
368
+ ]
369
+ )
370
+ )
371
+ );
372
+ }
373
+ }), le = /^(primary|secondary|info|success|warning|error)$/, Z = /^(xs|sm|md|lg|xl)$/, ce = /^(solid|ghost|outlined)$/, Yt = /^(?:ftp|http|https):\/\/|[./].*$/, Gt = {
374
+ color: {
375
+ type: String,
376
+ default: "primary",
377
+ validator: function(e) {
378
+ return le.test(e);
379
+ }
380
+ },
381
+ name: {
382
+ type: String,
383
+ default: "John Doe",
384
+ validator: function(e) {
385
+ if (e.split(/(?=[A-Z])/).length < 2)
386
+ throw new Error("name props expect a full name");
387
+ return !0;
388
+ }
389
+ },
390
+ src: {
391
+ type: String,
392
+ validator: function(e) {
393
+ return Yt.test(e);
394
+ }
395
+ },
396
+ size: {
397
+ type: String,
398
+ default: "md",
399
+ validator: function(e) {
400
+ return Z.test(e);
401
+ }
402
+ }
403
+ }, ae = G({
404
+ base: {
405
+ display: "flex",
406
+ flexDirection: "row",
407
+ justifyContent: "center",
408
+ alignItems: "center",
409
+ color: "#fff",
410
+ backgroundColor: "primary",
411
+ borderRadius: "80px"
412
+ },
413
+ variants: {
414
+ color: {
415
+ error: {
416
+ backgroundColor: "error"
417
+ },
418
+ info: {
419
+ backgroundColor: "info"
420
+ },
421
+ primary: {
422
+ backgroundColor: "primary"
423
+ },
424
+ secondary: {
425
+ backgroundColor: "secondary"
426
+ },
427
+ success: {
428
+ backgroundColor: "success"
429
+ },
430
+ warning: {
431
+ backgroundColor: "warning"
432
+ }
433
+ },
434
+ size: {
435
+ xs: { width: "24px", height: "24px" },
436
+ sm: { width: "32px", height: "32px" },
437
+ md: { width: "40px", height: "40px" },
438
+ lg: { width: "48px", height: "48px" },
439
+ xl: { width: "56px", height: "56px" }
440
+ }
441
+ },
442
+ defaultVariants: {
443
+ color: "secondary",
444
+ size: "md"
445
+ }
446
+ });
447
+ function Zt(e, t) {
448
+ if (!t) return !0;
449
+ const r = t.split("").map((o) => o.replace(/[-\/\\^$*+?.()|[\]{}]/g, "\\$&")).join(".*?");
450
+ return new RegExp(r, "i").test(e);
451
+ }
452
+ function qt(e) {
453
+ return `${e.split(" ")[0][0]}${e.split(" ")[1][0]}`;
454
+ }
455
+ const Kt = x({
456
+ name: "RebndAvatar",
457
+ props: Gt,
458
+ setup(e) {
459
+ return () => e != null && e.src ? p("img", {
460
+ class: ae({ color: e == null ? void 0 : e.color, size: e == null ? void 0 : e.size }),
461
+ src: e == null ? void 0 : e.src,
462
+ alt: `${e.name} Avatar`
463
+ }) : p(
464
+ "div",
465
+ {
466
+ "aria-label": `${e.name} Avatar`,
467
+ class: ae({ size: e == null ? void 0 : e.size }),
468
+ role: "img",
469
+ style: `background-color:${e == null ? void 0 : e.color}`
470
+ },
471
+ p("span", null, qt(e.name))
472
+ );
473
+ }
474
+ }), Ut = {
475
+ max: {
476
+ type: Number,
477
+ default: 6
478
+ },
479
+ size: {
480
+ type: String,
481
+ default: "md",
482
+ validator: function(e) {
483
+ return Z.test(e);
484
+ }
485
+ }
486
+ }, Jt = w({
487
+ display: "flex",
488
+ flexDirection: "row"
489
+ }), Qt = w({
490
+ boxSizing: "content-box",
491
+ borderRadius: "50%",
492
+ border: "4px solid",
493
+ borderColor: {
494
+ base: "neutrals.50",
495
+ _dark: "neutrals.950"
496
+ },
497
+ marginLeft: { base: "-8px", _first: "0px" }
498
+ });
499
+ function er(e) {
500
+ return w(ae.raw({ size: e }), {
501
+ fontSize: "1rem",
502
+ background: "neutrals.900",
503
+ alignSelf: "center",
504
+ marginLeft: "-8px"
505
+ });
506
+ }
507
+ class z extends Error {
508
+ constructor(t) {
509
+ super(`${t} cannot be used without any slot!`), this.name = "SlotError";
510
+ }
511
+ }
512
+ function Ne(e) {
513
+ var r, n;
514
+ return [
515
+ ...e.every((o) => rr(o)) && Array.isArray((r = e == null ? void 0 : e[0]) == null ? void 0 : r.children) ? (n = e == null ? void 0 : e[0]) == null ? void 0 : n.children.filter(tt) : e
516
+ ];
517
+ }
518
+ function tr(e) {
519
+ var t;
520
+ return typeof e.children == "string" ? e.children : Array.isArray(e.children) ? (t = e.children.find(
521
+ (n) => n && (n == null ? void 0 : n.type) === Symbol.for("v-txt")
522
+ )) == null ? void 0 : t.children : "";
523
+ }
524
+ function rr(e) {
525
+ return e.type === Symbol.for("v-fgt");
526
+ }
527
+ const nr = x({
528
+ name: "RebndAvatarGroup",
529
+ props: Ut,
530
+ setup(e, { slots: t }) {
531
+ const r = C([]), n = y(
532
+ () => r.value.filter((i, a) => a < (e == null ? void 0 : e.max))
533
+ ), o = y(
534
+ () => r.value.length - (e == null ? void 0 : e.max)
535
+ );
536
+ return () => {
537
+ if (!t.default) throw new z("RebndAvatarGroup");
538
+ const i = Ne(t.default());
539
+ return r.value = i.map(
540
+ (a) => Y(a, { class: Qt, size: e == null ? void 0 : e.size })
541
+ ), p("ul", { class: Jt }, [
542
+ n.value.length && n.value,
543
+ o.value > 0 && p(
544
+ "li",
545
+ { class: er(e == null ? void 0 : e.size) },
546
+ `+${o.value}`
547
+ )
548
+ ]);
549
+ };
550
+ }
551
+ }), or = {
552
+ as: {
553
+ type: String,
554
+ default: "span"
555
+ },
556
+ color: {
557
+ type: String,
558
+ default: "primary",
559
+ validator: function(e) {
560
+ return le.test(e);
561
+ }
562
+ },
563
+ cx: {
564
+ type: String,
565
+ default: ""
566
+ },
567
+ rounded: {
568
+ type: String,
569
+ default: "none",
570
+ validator: function(e) {
571
+ return /^(none|xs|sm|md|lg|xl|full)$/.test(e);
572
+ }
573
+ },
574
+ size: {
575
+ type: String,
576
+ default: "md",
577
+ validator: function(e) {
578
+ return Z.test(e);
579
+ }
580
+ },
581
+ variant: {
582
+ type: String,
583
+ default: "solid",
584
+ validator: function(e) {
585
+ return ce.test(e);
586
+ }
587
+ }
588
+ }, ar = G({
589
+ base: {
590
+ cursor: "pointer",
591
+ userSelect: "none",
592
+ width: "fit-content",
593
+ display: "flex",
594
+ flexDirection: "row",
595
+ gap: "4px",
596
+ alignItems: "center",
597
+ padding: ".5rem 1rem .5rem .5rem",
598
+ fontSize: ".625rem"
599
+ },
600
+ variants: {
601
+ color: {
602
+ info: {
603
+ backgroundColor: {
604
+ base: "info.lighter",
605
+ _dark: "info.darker"
606
+ },
607
+ color: { base: "info", _dark: "info.lighter" }
608
+ },
609
+ error: {
610
+ backgroundColor: { base: "error.lighter", _dark: "error.darker" },
611
+ color: { base: "error", _dark: "error.lighter" }
612
+ },
613
+ primary: {
614
+ backgroundColor: { base: "primary.lighter", _dark: "primary.darker" },
615
+ color: { base: "primary", _dark: "primary.lighter" }
616
+ },
617
+ secondary: {
618
+ backgroundColor: {
619
+ base: "secondary.lighter",
620
+ _dark: "secondary.darker"
621
+ },
622
+ color: { base: "secondary", _dark: "secondary.lighter" }
623
+ },
624
+ success: {
625
+ backgroundColor: { base: "success.lighter", _dark: "success.darker" },
626
+ color: { base: "success", _dark: "success.lighter" }
627
+ },
628
+ warning: {
629
+ backgroundColor: { base: "warning.lighter", _dark: "warning.darker" },
630
+ color: { base: "warning", _dark: "warning.lighter" }
631
+ }
632
+ },
633
+ rounded: {
634
+ none: {
635
+ borderRadius: "none"
636
+ },
637
+ xs: {
638
+ borderRadius: "xs"
639
+ },
640
+ sm: {
641
+ borderRadius: "sm"
642
+ },
643
+ md: {
644
+ borderRadius: "md"
645
+ },
646
+ lg: {
647
+ borderRadius: "lg"
648
+ },
649
+ xl: {
650
+ borderRadius: "xl"
651
+ },
652
+ full: {
653
+ borderRadius: "full"
654
+ }
655
+ },
656
+ size: {
657
+ xs: {
658
+ fontSize: "0.5rem"
659
+ },
660
+ sm: {
661
+ fontSize: "0.75rem"
662
+ },
663
+ md: {
664
+ fontSize: "0.875rem"
665
+ },
666
+ lg: {
667
+ fontSize: "1rem"
668
+ },
669
+ xl: {
670
+ fontSize: "1.25rem"
671
+ }
672
+ },
673
+ variant: {
674
+ solid: {
675
+ outline: "none"
676
+ },
677
+ ghost: {
678
+ backgroundColor: "transparent"
679
+ },
680
+ outlined: {
681
+ backgroundColor: "transparent",
682
+ outline: "1px solid transparent"
683
+ }
684
+ }
685
+ },
686
+ compoundVariants: [
687
+ {
688
+ color: "error",
689
+ variant: "outlined",
690
+ css: {
691
+ outlineColor: {
692
+ base: "error",
693
+ _dark: "error.darker"
694
+ }
695
+ }
696
+ },
697
+ {
698
+ color: "info",
699
+ variant: "outlined",
700
+ css: {
701
+ outlineColor: {
702
+ base: "info",
703
+ _dark: "info.darker"
704
+ }
705
+ }
706
+ },
707
+ {
708
+ color: "primary",
709
+ variant: "outlined",
710
+ css: {
711
+ outlineColor: {
712
+ base: "primary",
713
+ _dark: "primary.darker"
714
+ }
715
+ }
716
+ },
717
+ {
718
+ color: "secondary",
719
+ variant: "outlined",
720
+ css: {
721
+ outlineColor: {
722
+ base: "secondary",
723
+ _dark: "secondary.darker"
724
+ }
725
+ }
726
+ },
727
+ {
728
+ color: "success",
729
+ variant: "outlined",
730
+ css: {
731
+ outlineColor: {
732
+ base: "success",
733
+ _dark: "success.darker"
734
+ }
735
+ }
736
+ },
737
+ {
738
+ color: "warning",
739
+ variant: "outlined",
740
+ css: {
741
+ outlineColor: {
742
+ base: "warning",
743
+ _dark: "warning.darker"
744
+ }
745
+ }
746
+ }
747
+ ],
748
+ defaultVariants: {
749
+ color: "primary",
750
+ rounded: "none",
751
+ size: "md",
752
+ variant: "solid"
753
+ }
754
+ }), ir = x({
755
+ name: "RebndBadge",
756
+ props: or,
757
+ setup({ as: e, color: t, cx: r, rounded: n, size: o, variant: i }, { slots: a }) {
758
+ return () => {
759
+ if (!a.default) throw new z("RebndBadge");
760
+ return p(
761
+ e,
762
+ {
763
+ class: [ar({ color: t, rounded: n, size: o, variant: i }), r]
764
+ },
765
+ a.default && a.default()
766
+ );
767
+ };
768
+ }
769
+ }), sr = {
770
+ max: {
771
+ type: Number,
772
+ default: 3
773
+ },
774
+ separator: {
775
+ type: String,
776
+ default: "arrow"
777
+ }
778
+ }, lr = w({
779
+ display: "flex",
780
+ flexDirection: "row",
781
+ gap: ".25rem",
782
+ alignItems: "center",
783
+ fontWeight: 600,
784
+ color: {
785
+ _dark: "neutral.100",
786
+ base: "neutral.800"
787
+ },
788
+ "& .breadcrumb_extra-links": {
789
+ paddingRight: "5rem"
790
+ },
791
+ "& a:not(:last-child)": {
792
+ color: {
793
+ _dark: "color-mix(in oklch, var(--colors-neutral-100), white 50%)",
794
+ base: "color-mix(in oklch, var(--colors-neutral-800), white 50%)"
795
+ },
796
+ _hover: {
797
+ color: {
798
+ _dark: "neutral.100",
799
+ base: "neutral.800"
800
+ }
801
+ }
802
+ }
803
+ }), cr = {
804
+ fillColor: {
805
+ type: String,
806
+ default: "currentColor"
807
+ },
808
+ height: {
809
+ type: [Number, String],
810
+ default: "16"
811
+ },
812
+ name: {
813
+ type: String,
814
+ required: !0
815
+ },
816
+ width: {
817
+ type: [Number, String],
818
+ default: "16"
819
+ }
820
+ }, dr = w({
821
+ display: "inline-block"
822
+ });
823
+ function Pe(e) {
824
+ return Object.keys(e).forEach((t) => {
825
+ const r = e[t];
826
+ r && typeof r == "object" && Pe(r);
827
+ }), Object.freeze(e);
828
+ }
829
+ const ke = Pe([
830
+ {
831
+ id: "arrow",
832
+ template: '<path d="M15.3998 9.88006L10.8098 5.29006C10.6224 5.10381 10.369 4.99927 10.1048 4.99927C9.84062 4.99927 9.58716 5.10381 9.3998 5.29006C9.30607 5.38302 9.23168 5.49362 9.18091 5.61548C9.13014 5.73734 9.104 5.86805 9.104 6.00006C9.104 6.13207 9.13014 6.26278 9.18091 6.38464C9.23168 6.5065 9.30607 6.6171 9.3998 6.71006L13.9998 11.2901C14.0935 11.383 14.1679 11.4936 14.2187 11.6155C14.2695 11.7373 14.2956 11.868 14.2956 12.0001C14.2956 12.1321 14.2695 12.2628 14.2187 12.3846C14.1679 12.5065 14.0935 12.6171 13.9998 12.7101L9.3998 17.2901C9.2115 17.477 9.10518 17.7312 9.10425 17.9965C9.10331 18.2619 9.20783 18.5168 9.3948 18.7051C9.58178 18.8934 9.8359 18.9997 10.1013 19.0006C10.3666 19.0016 10.6215 18.897 10.8098 18.7101L15.3998 14.1201C15.9616 13.5576 16.2772 12.7951 16.2772 12.0001C16.2772 11.2051 15.9616 10.4426 15.3998 9.88006V9.88006Z"></path>'
833
+ },
834
+ {
835
+ id: "bar",
836
+ template: '<path d="M11 4.66667L11 19.3333C11 19.7015 11.4477 20 12 20C12.5523 20 13 19.7015 13 19.3333L13 4.66667C13 4.29848 12.5523 4 12 4C11.4477 4 11 4.29848 11 4.66667Z"></path>'
837
+ },
838
+ {
839
+ id: "chevron-up-down",
840
+ template: '<path d="m7 15 5 5 5-5"></path><path d="m7 9 5-5 5 5"></path>'
841
+ },
842
+ {
843
+ id: "dash",
844
+ template: '<path d="M17 10.9998H7C6.44772 10.9998 6 11.4475 6 11.9998C6 12.552 6.44772 12.9998 7 12.9998H17C17.5523 12.9998 18 12.552 18 11.9998C18 11.4475 17.5523 10.9998 17 10.9998Z"></path>'
845
+ },
846
+ {
847
+ id: "dot",
848
+ template: '<circle cx="12" cy="12" r="4"></circle>'
849
+ },
850
+ {
851
+ id: "external",
852
+ template: '<path d="m24,3v7c0,.552-.447,1-1,1s-1-.448-1-1V3.414l-11.793,11.793c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023,0-1.414L20.586,2h-6.586c-.553,0-1-.448-1-1s.447-1,1-1h7c1.654,0,3,1.346,3,3Zm-1,11c-.553,0-1,.448-1,1v4c0,1.654-1.346,3-3,3H5c-1.654,0-3-1.346-3-3V5c0-1.654,1.346-3,3-3h4c.553,0,1-.448,1-1s-.447-1-1-1h-4C2.243,0,0,2.243,0,5v14c0,2.757,2.243,5,5,5h14c2.757,0,5-2.243,5-5v-4c0-.552-.447-1-1-1Z"/>'
853
+ },
854
+ {
855
+ id: "horizontal-dots",
856
+ template: `<path d="M2 14.0002C3.10457 14.0002 4 13.1048 4 12.0002C4 10.8957 3.10457 10.0002 2 10.0002C0.89543 10.0002 0 10.8957 0 12.0002C0 13.1048 0.89543 14.0002 2 14.0002Z" />
857
+ <path d="M12.0001 14.0002C13.1047 14.0002 14.0001 13.1048 14.0001 12.0002C14.0001 10.8957 13.1047 10.0002 12.0001 10.0002C10.8956 10.0002 10.0001 10.8957 10.0001 12.0002C10.0001 13.1048 10.8956 14.0002 12.0001 14.0002Z" />
858
+ <path d="M22 14.0002C23.1046 14.0002 24 13.1048 24 12.0002C24 10.8957 23.1046 10.0002 22 10.0002C20.8954 10.0002 20 10.8957 20 12.0002C20 13.1048 20.8954 14.0002 22 14.0002Z" />`
859
+ },
860
+ {
861
+ id: "not-found",
862
+ template: '<path xmlns="http://www.w3.org/2000/svg" d="m23.707,22.293l-5.963-5.963c1.412-1.725,2.262-3.927,2.262-6.324C20.006,4.492,15.52.006,10.006.006S.006,4.492.006,10.006s4.486,10,10,10c2.398,0,4.6-.85,6.324-2.262l5.963,5.963c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023,0-1.414Zm-13.701-4.287c-4.411,0-8-3.589-8-8S5.595,2.006,10.006,2.006s8,3.589,8,8-3.589,8-8,8Zm3.701-10.299l-2.293,2.293,2.293,2.293c.391.391.391,1.023,0,1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-2.293-2.293-2.293,2.293c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023,0-1.414l2.293-2.293-2.293-2.293c-.391-.391-.391-1.023,0-1.414s1.023-.391,1.414,0l2.293,2.293,2.293-2.293c.391-.391,1.023-.391,1.414,0s.391,1.023,0,1.414Z"/>'
863
+ },
864
+ {
865
+ id: "search",
866
+ template: '<path d="M23.707,22.293l-5.969-5.969a10.016,10.016,0,1,0-1.414,1.414l5.969,5.969a1,1,0,0,0,1.414-1.414ZM10,18a8,8,0,1,1,8-8A8.009,8.009,0,0,1,10,18Z"/>'
867
+ },
868
+ {
869
+ id: "slash",
870
+ template: '<path d="M13.634 7.16964L8.63397 15.8299C8.35783 16.3082 8.52171 16.9198 9 17.1959C9.4783 17.4721 10.0899 17.3082 10.366 16.8299L15.366 8.16965C15.6422 7.69136 15.4783 7.07976 15 6.80362C14.5217 6.52748 13.9101 6.69135 13.634 7.16964Z"></path>'
871
+ },
872
+ {
873
+ id: "underscore",
874
+ template: '<path d="M17 18H7C6.44772 18 6 18.4477 6 19C6 19.5523 6.44772 20 7 20H17C17.5523 20 18 19.5523 18 19C18 18.4477 17.5523 18 17 18Z"></path>'
875
+ }
876
+ ]), M = x({
877
+ name: "RebndIcon",
878
+ props: cr,
879
+ setup(e) {
880
+ const t = y(
881
+ () => ke.find((r) => r.id === e.name) || ke[0]
882
+ );
883
+ return () => p(
884
+ "svg",
885
+ {
886
+ xmlns: "http://www.w3.org/2000/svg",
887
+ viewBox: "0 0 24 24",
888
+ width: e.width,
889
+ height: e.height,
890
+ "aria-hidden": !0,
891
+ "aria-labelledby": e.name,
892
+ role: "img",
893
+ class: dr
894
+ },
895
+ p("g", { fill: e.fillColor, innerHTML: t.value.template })
896
+ );
897
+ }
898
+ }), ur = {
899
+ mode: {
900
+ type: String,
901
+ default: "click"
902
+ },
903
+ offset: {
904
+ type: Number,
905
+ default: 10
906
+ },
907
+ options: {
908
+ type: Array,
909
+ default: () => []
910
+ },
911
+ placement: {
912
+ type: String,
913
+ default: "bottom-start"
914
+ }
915
+ }, fr = w({
916
+ position: "relative",
917
+ "& button span": {
918
+ srOnly: !0
919
+ },
920
+ "& ul": {
921
+ minWidth: "max-content",
922
+ width: "100%",
923
+ border: "1px solid",
924
+ borderColor: {
925
+ _dark: "#15171E",
926
+ base: "neutral.100"
927
+ },
928
+ borderRadius: "4px",
929
+ backgroundColor: {
930
+ _dark: "neutral.950",
931
+ base: "#fff"
932
+ }
933
+ },
934
+ "& li": {
935
+ cursor: "pointer",
936
+ "&:not(.combobox__input-search)": {
937
+ padding: ".5rem"
938
+ },
939
+ "&:nth-of-type(even)": {
940
+ background: {
941
+ _dark: "#0f1015",
942
+ base: "neutral.50"
943
+ }
944
+ },
945
+ _hover: {
946
+ backgroundColor: {
947
+ _dark: "#15171E",
948
+ base: "neutral.200"
949
+ }
950
+ }
951
+ }
952
+ }), _e = Math.min, H = Math.max, K = Math.round, A = (e) => ({
953
+ x: e,
954
+ y: e
955
+ });
956
+ function mr(e, t) {
957
+ return typeof e == "function" ? e(t) : e;
958
+ }
959
+ function de(e) {
960
+ return e.split("-")[0];
961
+ }
962
+ function We(e) {
963
+ return e.split("-")[1];
964
+ }
965
+ function pr(e) {
966
+ return e === "x" ? "y" : "x";
967
+ }
968
+ function gr(e) {
969
+ return e === "y" ? "height" : "width";
970
+ }
971
+ function ue(e) {
972
+ return ["top", "bottom"].includes(de(e)) ? "y" : "x";
973
+ }
974
+ function br(e) {
975
+ return pr(ue(e));
976
+ }
977
+ function je(e) {
978
+ const {
979
+ x: t,
980
+ y: r,
981
+ width: n,
982
+ height: o
983
+ } = e;
984
+ return {
985
+ width: n,
986
+ height: o,
987
+ top: r,
988
+ left: t,
989
+ right: t + n,
990
+ bottom: r + o,
991
+ x: t,
992
+ y: r
993
+ };
994
+ }
995
+ function Ce(e, t, r) {
996
+ let {
997
+ reference: n,
998
+ floating: o
999
+ } = e;
1000
+ const i = ue(t), a = br(t), s = gr(a), l = de(t), c = i === "y", f = n.x + n.width / 2 - o.width / 2, d = n.y + n.height / 2 - o.height / 2, u = n[s] / 2 - o[s] / 2;
1001
+ let m;
1002
+ switch (l) {
1003
+ case "top":
1004
+ m = {
1005
+ x: f,
1006
+ y: n.y - o.height
1007
+ };
1008
+ break;
1009
+ case "bottom":
1010
+ m = {
1011
+ x: f,
1012
+ y: n.y + n.height
1013
+ };
1014
+ break;
1015
+ case "right":
1016
+ m = {
1017
+ x: n.x + n.width,
1018
+ y: d
1019
+ };
1020
+ break;
1021
+ case "left":
1022
+ m = {
1023
+ x: n.x - o.width,
1024
+ y: d
1025
+ };
1026
+ break;
1027
+ default:
1028
+ m = {
1029
+ x: n.x,
1030
+ y: n.y
1031
+ };
1032
+ }
1033
+ switch (We(t)) {
1034
+ case "start":
1035
+ m[a] -= u * (r && c ? -1 : 1);
1036
+ break;
1037
+ case "end":
1038
+ m[a] += u * (r && c ? -1 : 1);
1039
+ break;
1040
+ }
1041
+ return m;
1042
+ }
1043
+ const hr = async (e, t, r) => {
1044
+ const {
1045
+ placement: n = "bottom",
1046
+ strategy: o = "absolute",
1047
+ middleware: i = [],
1048
+ platform: a
1049
+ } = r, s = i.filter(Boolean), l = await (a.isRTL == null ? void 0 : a.isRTL(t));
1050
+ let c = await a.getElementRects({
1051
+ reference: e,
1052
+ floating: t,
1053
+ strategy: o
1054
+ }), {
1055
+ x: f,
1056
+ y: d
1057
+ } = Ce(c, n, l), u = n, m = {}, h = 0;
1058
+ for (let b = 0; b < s.length; b++) {
1059
+ const {
1060
+ name: g,
1061
+ fn: k
1062
+ } = s[b], {
1063
+ x: v,
1064
+ y: R,
1065
+ data: N,
1066
+ reset: O
1067
+ } = await k({
1068
+ x: f,
1069
+ y: d,
1070
+ initialPlacement: n,
1071
+ placement: u,
1072
+ strategy: o,
1073
+ middlewareData: m,
1074
+ rects: c,
1075
+ platform: a,
1076
+ elements: {
1077
+ reference: e,
1078
+ floating: t
1079
+ }
1080
+ });
1081
+ f = v ?? f, d = R ?? d, m = {
1082
+ ...m,
1083
+ [g]: {
1084
+ ...m[g],
1085
+ ...N
1086
+ }
1087
+ }, O && h <= 50 && (h++, typeof O == "object" && (O.placement && (u = O.placement), O.rects && (c = O.rects === !0 ? await a.getElementRects({
1088
+ reference: e,
1089
+ floating: t,
1090
+ strategy: o
1091
+ }) : O.rects), {
1092
+ x: f,
1093
+ y: d
1094
+ } = Ce(c, u, l)), b = -1);
1095
+ }
1096
+ return {
1097
+ x: f,
1098
+ y: d,
1099
+ placement: u,
1100
+ strategy: o,
1101
+ middlewareData: m
1102
+ };
1103
+ };
1104
+ async function yr(e, t) {
1105
+ const {
1106
+ placement: r,
1107
+ platform: n,
1108
+ elements: o
1109
+ } = e, i = await (n.isRTL == null ? void 0 : n.isRTL(o.floating)), a = de(r), s = We(r), l = ue(r) === "y", c = ["left", "top"].includes(a) ? -1 : 1, f = i && l ? -1 : 1, d = mr(t, e);
1110
+ let {
1111
+ mainAxis: u,
1112
+ crossAxis: m,
1113
+ alignmentAxis: h
1114
+ } = typeof d == "number" ? {
1115
+ mainAxis: d,
1116
+ crossAxis: 0,
1117
+ alignmentAxis: null
1118
+ } : {
1119
+ mainAxis: d.mainAxis || 0,
1120
+ crossAxis: d.crossAxis || 0,
1121
+ alignmentAxis: d.alignmentAxis
1122
+ };
1123
+ return s && typeof h == "number" && (m = s === "end" ? h * -1 : h), l ? {
1124
+ x: m * f,
1125
+ y: u * c
1126
+ } : {
1127
+ x: u * c,
1128
+ y: m * f
1129
+ };
1130
+ }
1131
+ const vr = function(e) {
1132
+ return e === void 0 && (e = 0), {
1133
+ name: "offset",
1134
+ options: e,
1135
+ async fn(t) {
1136
+ var r, n;
1137
+ const {
1138
+ x: o,
1139
+ y: i,
1140
+ placement: a,
1141
+ middlewareData: s
1142
+ } = t, l = await yr(t, e);
1143
+ return a === ((r = s.offset) == null ? void 0 : r.placement) && (n = s.arrow) != null && n.alignmentOffset ? {} : {
1144
+ x: o + l.x,
1145
+ y: i + l.y,
1146
+ data: {
1147
+ ...l,
1148
+ placement: a
1149
+ }
1150
+ };
1151
+ }
1152
+ };
1153
+ };
1154
+ function J() {
1155
+ return typeof window < "u";
1156
+ }
1157
+ function $(e) {
1158
+ return fe(e) ? (e.nodeName || "").toLowerCase() : "#document";
1159
+ }
1160
+ function S(e) {
1161
+ var t;
1162
+ return (e == null || (t = e.ownerDocument) == null ? void 0 : t.defaultView) || window;
1163
+ }
1164
+ function D(e) {
1165
+ var t;
1166
+ return (t = (fe(e) ? e.ownerDocument : e.document) || window.document) == null ? void 0 : t.documentElement;
1167
+ }
1168
+ function fe(e) {
1169
+ return J() ? e instanceof Node || e instanceof S(e).Node : !1;
1170
+ }
1171
+ function T(e) {
1172
+ return J() ? e instanceof Element || e instanceof S(e).Element : !1;
1173
+ }
1174
+ function B(e) {
1175
+ return J() ? e instanceof HTMLElement || e instanceof S(e).HTMLElement : !1;
1176
+ }
1177
+ function Se(e) {
1178
+ return !J() || typeof ShadowRoot > "u" ? !1 : e instanceof ShadowRoot || e instanceof S(e).ShadowRoot;
1179
+ }
1180
+ function q(e) {
1181
+ const {
1182
+ overflow: t,
1183
+ overflowX: r,
1184
+ overflowY: n,
1185
+ display: o
1186
+ } = E(e);
1187
+ return /auto|scroll|overlay|hidden|clip/.test(t + n + r) && !["inline", "contents"].includes(o);
1188
+ }
1189
+ function xr(e) {
1190
+ return ["table", "td", "th"].includes($(e));
1191
+ }
1192
+ function Q(e) {
1193
+ return [":popover-open", ":modal"].some((t) => {
1194
+ try {
1195
+ return e.matches(t);
1196
+ } catch {
1197
+ return !1;
1198
+ }
1199
+ });
1200
+ }
1201
+ function me(e) {
1202
+ const t = pe(), r = T(e) ? E(e) : e;
1203
+ return ["transform", "translate", "scale", "rotate", "perspective"].some((n) => r[n] ? r[n] !== "none" : !1) || (r.containerType ? r.containerType !== "normal" : !1) || !t && (r.backdropFilter ? r.backdropFilter !== "none" : !1) || !t && (r.filter ? r.filter !== "none" : !1) || ["transform", "translate", "scale", "rotate", "perspective", "filter"].some((n) => (r.willChange || "").includes(n)) || ["paint", "layout", "strict", "content"].some((n) => (r.contain || "").includes(n));
1204
+ }
1205
+ function wr(e) {
1206
+ let t = L(e);
1207
+ for (; B(t) && !j(t); ) {
1208
+ if (me(t))
1209
+ return t;
1210
+ if (Q(t))
1211
+ return null;
1212
+ t = L(t);
1213
+ }
1214
+ return null;
1215
+ }
1216
+ function pe() {
1217
+ return typeof CSS > "u" || !CSS.supports ? !1 : CSS.supports("-webkit-backdrop-filter", "none");
1218
+ }
1219
+ function j(e) {
1220
+ return ["html", "body", "#document"].includes($(e));
1221
+ }
1222
+ function E(e) {
1223
+ return S(e).getComputedStyle(e);
1224
+ }
1225
+ function ee(e) {
1226
+ return T(e) ? {
1227
+ scrollLeft: e.scrollLeft,
1228
+ scrollTop: e.scrollTop
1229
+ } : {
1230
+ scrollLeft: e.scrollX,
1231
+ scrollTop: e.scrollY
1232
+ };
1233
+ }
1234
+ function L(e) {
1235
+ if ($(e) === "html")
1236
+ return e;
1237
+ const t = (
1238
+ // Step into the shadow DOM of the parent of a slotted node.
1239
+ e.assignedSlot || // DOM Element detected.
1240
+ e.parentNode || // ShadowRoot detected.
1241
+ Se(e) && e.host || // Fallback.
1242
+ D(e)
1243
+ );
1244
+ return Se(t) ? t.host : t;
1245
+ }
1246
+ function Fe(e) {
1247
+ const t = L(e);
1248
+ return j(t) ? e.ownerDocument ? e.ownerDocument.body : e.body : B(t) && q(t) ? t : Fe(t);
1249
+ }
1250
+ function He(e, t, r) {
1251
+ var n;
1252
+ t === void 0 && (t = []);
1253
+ const o = Fe(e), i = o === ((n = e.ownerDocument) == null ? void 0 : n.body), a = S(o);
1254
+ return i ? (ie(a), t.concat(a, a.visualViewport || [], q(o) ? o : [], [])) : t.concat(o, He(o, []));
1255
+ }
1256
+ function ie(e) {
1257
+ return e.parent && Object.getPrototypeOf(e.parent) ? e.frameElement : null;
1258
+ }
1259
+ function Xe(e) {
1260
+ const t = E(e);
1261
+ let r = parseFloat(t.width) || 0, n = parseFloat(t.height) || 0;
1262
+ const o = B(e), i = o ? e.offsetWidth : r, a = o ? e.offsetHeight : n, s = K(r) !== i || K(n) !== a;
1263
+ return s && (r = i, n = a), {
1264
+ width: r,
1265
+ height: n,
1266
+ $: s
1267
+ };
1268
+ }
1269
+ function Ye(e) {
1270
+ return T(e) ? e : e.contextElement;
1271
+ }
1272
+ function W(e) {
1273
+ const t = Ye(e);
1274
+ if (!B(t))
1275
+ return A(1);
1276
+ const r = t.getBoundingClientRect(), {
1277
+ width: n,
1278
+ height: o,
1279
+ $: i
1280
+ } = Xe(t);
1281
+ let a = (i ? K(r.width) : r.width) / n, s = (i ? K(r.height) : r.height) / o;
1282
+ return (!a || !Number.isFinite(a)) && (a = 1), (!s || !Number.isFinite(s)) && (s = 1), {
1283
+ x: a,
1284
+ y: s
1285
+ };
1286
+ }
1287
+ const kr = /* @__PURE__ */ A(0);
1288
+ function Ge(e) {
1289
+ const t = S(e);
1290
+ return !pe() || !t.visualViewport ? kr : {
1291
+ x: t.visualViewport.offsetLeft,
1292
+ y: t.visualViewport.offsetTop
1293
+ };
1294
+ }
1295
+ function _r(e, t, r) {
1296
+ return t === void 0 && (t = !1), !r || t && r !== S(e) ? !1 : t;
1297
+ }
1298
+ function X(e, t, r, n) {
1299
+ t === void 0 && (t = !1), r === void 0 && (r = !1);
1300
+ const o = e.getBoundingClientRect(), i = Ye(e);
1301
+ let a = A(1);
1302
+ t && (n ? T(n) && (a = W(n)) : a = W(e));
1303
+ const s = _r(i, r, n) ? Ge(i) : A(0);
1304
+ let l = (o.left + s.x) / a.x, c = (o.top + s.y) / a.y, f = o.width / a.x, d = o.height / a.y;
1305
+ if (i) {
1306
+ const u = S(i), m = n && T(n) ? S(n) : n;
1307
+ let h = u, b = ie(h);
1308
+ for (; b && n && m !== h; ) {
1309
+ const g = W(b), k = b.getBoundingClientRect(), v = E(b), R = k.left + (b.clientLeft + parseFloat(v.paddingLeft)) * g.x, N = k.top + (b.clientTop + parseFloat(v.paddingTop)) * g.y;
1310
+ l *= g.x, c *= g.y, f *= g.x, d *= g.y, l += R, c += N, h = S(b), b = ie(h);
1311
+ }
1312
+ }
1313
+ return je({
1314
+ width: f,
1315
+ height: d,
1316
+ x: l,
1317
+ y: c
1318
+ });
1319
+ }
1320
+ function ge(e, t) {
1321
+ const r = ee(e).scrollLeft;
1322
+ return t ? t.left + r : X(D(e)).left + r;
1323
+ }
1324
+ function Ze(e, t, r) {
1325
+ r === void 0 && (r = !1);
1326
+ const n = e.getBoundingClientRect(), o = n.left + t.scrollLeft - (r ? 0 : (
1327
+ // RTL <body> scrollbar.
1328
+ ge(e, n)
1329
+ )), i = n.top + t.scrollTop;
1330
+ return {
1331
+ x: o,
1332
+ y: i
1333
+ };
1334
+ }
1335
+ function Cr(e) {
1336
+ let {
1337
+ elements: t,
1338
+ rect: r,
1339
+ offsetParent: n,
1340
+ strategy: o
1341
+ } = e;
1342
+ const i = o === "fixed", a = D(n), s = t ? Q(t.floating) : !1;
1343
+ if (n === a || s && i)
1344
+ return r;
1345
+ let l = {
1346
+ scrollLeft: 0,
1347
+ scrollTop: 0
1348
+ }, c = A(1);
1349
+ const f = A(0), d = B(n);
1350
+ if ((d || !d && !i) && (($(n) !== "body" || q(a)) && (l = ee(n)), B(n))) {
1351
+ const m = X(n);
1352
+ c = W(n), f.x = m.x + n.clientLeft, f.y = m.y + n.clientTop;
1353
+ }
1354
+ const u = a && !d && !i ? Ze(a, l, !0) : A(0);
1355
+ return {
1356
+ width: r.width * c.x,
1357
+ height: r.height * c.y,
1358
+ x: r.x * c.x - l.scrollLeft * c.x + f.x + u.x,
1359
+ y: r.y * c.y - l.scrollTop * c.y + f.y + u.y
1360
+ };
1361
+ }
1362
+ function Sr(e) {
1363
+ return Array.from(e.getClientRects());
1364
+ }
1365
+ function Rr(e) {
1366
+ const t = D(e), r = ee(e), n = e.ownerDocument.body, o = H(t.scrollWidth, t.clientWidth, n.scrollWidth, n.clientWidth), i = H(t.scrollHeight, t.clientHeight, n.scrollHeight, n.clientHeight);
1367
+ let a = -r.scrollLeft + ge(e);
1368
+ const s = -r.scrollTop;
1369
+ return E(n).direction === "rtl" && (a += H(t.clientWidth, n.clientWidth) - o), {
1370
+ width: o,
1371
+ height: i,
1372
+ x: a,
1373
+ y: s
1374
+ };
1375
+ }
1376
+ function Tr(e, t) {
1377
+ const r = S(e), n = D(e), o = r.visualViewport;
1378
+ let i = n.clientWidth, a = n.clientHeight, s = 0, l = 0;
1379
+ if (o) {
1380
+ i = o.width, a = o.height;
1381
+ const c = pe();
1382
+ (!c || c && t === "fixed") && (s = o.offsetLeft, l = o.offsetTop);
1383
+ }
1384
+ return {
1385
+ width: i,
1386
+ height: a,
1387
+ x: s,
1388
+ y: l
1389
+ };
1390
+ }
1391
+ function Er(e, t) {
1392
+ const r = X(e, !0, t === "fixed"), n = r.top + e.clientTop, o = r.left + e.clientLeft, i = B(e) ? W(e) : A(1), a = e.clientWidth * i.x, s = e.clientHeight * i.y, l = o * i.x, c = n * i.y;
1393
+ return {
1394
+ width: a,
1395
+ height: s,
1396
+ x: l,
1397
+ y: c
1398
+ };
1399
+ }
1400
+ function Re(e, t, r) {
1401
+ let n;
1402
+ if (t === "viewport")
1403
+ n = Tr(e, r);
1404
+ else if (t === "document")
1405
+ n = Rr(D(e));
1406
+ else if (T(t))
1407
+ n = Er(t, r);
1408
+ else {
1409
+ const o = Ge(e);
1410
+ n = {
1411
+ x: t.x - o.x,
1412
+ y: t.y - o.y,
1413
+ width: t.width,
1414
+ height: t.height
1415
+ };
1416
+ }
1417
+ return je(n);
1418
+ }
1419
+ function qe(e, t) {
1420
+ const r = L(e);
1421
+ return r === t || !T(r) || j(r) ? !1 : E(r).position === "fixed" || qe(r, t);
1422
+ }
1423
+ function Ar(e, t) {
1424
+ const r = t.get(e);
1425
+ if (r)
1426
+ return r;
1427
+ let n = He(e, []).filter((s) => T(s) && $(s) !== "body"), o = null;
1428
+ const i = E(e).position === "fixed";
1429
+ let a = i ? L(e) : e;
1430
+ for (; T(a) && !j(a); ) {
1431
+ const s = E(a), l = me(a);
1432
+ !l && s.position === "fixed" && (o = null), (i ? !l && !o : !l && s.position === "static" && !!o && ["absolute", "fixed"].includes(o.position) || q(a) && !l && qe(e, a)) ? n = n.filter((f) => f !== a) : o = s, a = L(a);
1433
+ }
1434
+ return t.set(e, n), n;
1435
+ }
1436
+ function Br(e) {
1437
+ let {
1438
+ element: t,
1439
+ boundary: r,
1440
+ rootBoundary: n,
1441
+ strategy: o
1442
+ } = e;
1443
+ const a = [...r === "clippingAncestors" ? Q(t) ? [] : Ar(t, this._c) : [].concat(r), n], s = a[0], l = a.reduce((c, f) => {
1444
+ const d = Re(t, f, o);
1445
+ return c.top = H(d.top, c.top), c.right = _e(d.right, c.right), c.bottom = _e(d.bottom, c.bottom), c.left = H(d.left, c.left), c;
1446
+ }, Re(t, s, o));
1447
+ return {
1448
+ width: l.right - l.left,
1449
+ height: l.bottom - l.top,
1450
+ x: l.left,
1451
+ y: l.top
1452
+ };
1453
+ }
1454
+ function zr(e) {
1455
+ const {
1456
+ width: t,
1457
+ height: r
1458
+ } = Xe(e);
1459
+ return {
1460
+ width: t,
1461
+ height: r
1462
+ };
1463
+ }
1464
+ function Or(e, t, r) {
1465
+ const n = B(t), o = D(t), i = r === "fixed", a = X(e, !0, i, t);
1466
+ let s = {
1467
+ scrollLeft: 0,
1468
+ scrollTop: 0
1469
+ };
1470
+ const l = A(0);
1471
+ if (n || !n && !i)
1472
+ if (($(t) !== "body" || q(o)) && (s = ee(t)), n) {
1473
+ const u = X(t, !0, i, t);
1474
+ l.x = u.x + t.clientLeft, l.y = u.y + t.clientTop;
1475
+ } else o && (l.x = ge(o));
1476
+ const c = o && !n && !i ? Ze(o, s) : A(0), f = a.left + s.scrollLeft - l.x - c.x, d = a.top + s.scrollTop - l.y - c.y;
1477
+ return {
1478
+ x: f,
1479
+ y: d,
1480
+ width: a.width,
1481
+ height: a.height
1482
+ };
1483
+ }
1484
+ function re(e) {
1485
+ return E(e).position === "static";
1486
+ }
1487
+ function Te(e, t) {
1488
+ if (!B(e) || E(e).position === "fixed")
1489
+ return null;
1490
+ if (t)
1491
+ return t(e);
1492
+ let r = e.offsetParent;
1493
+ return D(e) === r && (r = r.ownerDocument.body), r;
1494
+ }
1495
+ function Ke(e, t) {
1496
+ const r = S(e);
1497
+ if (Q(e))
1498
+ return r;
1499
+ if (!B(e)) {
1500
+ let o = L(e);
1501
+ for (; o && !j(o); ) {
1502
+ if (T(o) && !re(o))
1503
+ return o;
1504
+ o = L(o);
1505
+ }
1506
+ return r;
1507
+ }
1508
+ let n = Te(e, t);
1509
+ for (; n && xr(n) && re(n); )
1510
+ n = Te(n, t);
1511
+ return n && j(n) && re(n) && !me(n) ? r : n || wr(e) || r;
1512
+ }
1513
+ const Dr = async function(e) {
1514
+ const t = this.getOffsetParent || Ke, r = this.getDimensions, n = await r(e.floating);
1515
+ return {
1516
+ reference: Or(e.reference, await t(e.floating), e.strategy),
1517
+ floating: {
1518
+ x: 0,
1519
+ y: 0,
1520
+ width: n.width,
1521
+ height: n.height
1522
+ }
1523
+ };
1524
+ };
1525
+ function Vr(e) {
1526
+ return E(e).direction === "rtl";
1527
+ }
1528
+ const Lr = {
1529
+ convertOffsetParentRelativeRectToViewportRelativeRect: Cr,
1530
+ getDocumentElement: D,
1531
+ getClippingRect: Br,
1532
+ getOffsetParent: Ke,
1533
+ getElementRects: Dr,
1534
+ getClientRects: Sr,
1535
+ getDimensions: zr,
1536
+ getScale: W,
1537
+ isElement: T,
1538
+ isRTL: Vr
1539
+ }, Ir = vr, Mr = (e, t, r) => {
1540
+ const n = /* @__PURE__ */ new Map(), o = {
1541
+ platform: Lr,
1542
+ ...r
1543
+ }, i = {
1544
+ ...o.platform,
1545
+ _c: n
1546
+ };
1547
+ return hr(e, t, {
1548
+ ...o,
1549
+ platform: i
1550
+ });
1551
+ };
1552
+ function $r(e) {
1553
+ return e != null && typeof e == "object" && "$el" in e;
1554
+ }
1555
+ function Ee(e) {
1556
+ if ($r(e)) {
1557
+ const t = e.$el;
1558
+ return fe(t) && $(t) === "#comment" ? null : t;
1559
+ }
1560
+ return e;
1561
+ }
1562
+ function F(e) {
1563
+ return typeof e == "function" ? e() : at(e);
1564
+ }
1565
+ function Ue(e) {
1566
+ return typeof window > "u" ? 1 : (e.ownerDocument.defaultView || window).devicePixelRatio || 1;
1567
+ }
1568
+ function Ae(e, t) {
1569
+ const r = Ue(e);
1570
+ return Math.round(t * r) / r;
1571
+ }
1572
+ function Nr(e, t, r) {
1573
+ r === void 0 && (r = {});
1574
+ const n = r.whileElementsMounted, o = y(() => {
1575
+ var _;
1576
+ return (_ = F(r.open)) != null ? _ : !0;
1577
+ }), i = y(() => F(r.middleware)), a = y(() => {
1578
+ var _;
1579
+ return (_ = F(r.placement)) != null ? _ : "bottom";
1580
+ }), s = y(() => {
1581
+ var _;
1582
+ return (_ = F(r.strategy)) != null ? _ : "absolute";
1583
+ }), l = y(() => {
1584
+ var _;
1585
+ return (_ = F(r.transform)) != null ? _ : !0;
1586
+ }), c = y(() => Ee(e.value)), f = y(() => Ee(t.value)), d = C(0), u = C(0), m = C(s.value), h = C(a.value), b = rt({}), g = C(!1), k = y(() => {
1587
+ const _ = {
1588
+ position: m.value,
1589
+ left: "0",
1590
+ top: "0"
1591
+ };
1592
+ if (!f.value)
1593
+ return _;
1594
+ const V = Ae(f.value, d.value), he = Ae(f.value, u.value);
1595
+ return l.value ? {
1596
+ ..._,
1597
+ transform: "translate(" + V + "px, " + he + "px)",
1598
+ ...Ue(f.value) >= 1.5 && {
1599
+ willChange: "transform"
1600
+ }
1601
+ } : {
1602
+ position: m.value,
1603
+ left: V + "px",
1604
+ top: he + "px"
1605
+ };
1606
+ });
1607
+ let v;
1608
+ function R() {
1609
+ if (c.value == null || f.value == null)
1610
+ return;
1611
+ const _ = o.value;
1612
+ Mr(c.value, f.value, {
1613
+ middleware: i.value,
1614
+ placement: a.value,
1615
+ strategy: s.value
1616
+ }).then((V) => {
1617
+ d.value = V.x, u.value = V.y, m.value = V.strategy, h.value = V.placement, b.value = V.middlewareData, g.value = _ !== !1;
1618
+ });
1619
+ }
1620
+ function N() {
1621
+ typeof v == "function" && (v(), v = void 0);
1622
+ }
1623
+ function O() {
1624
+ if (N(), n === void 0) {
1625
+ R();
1626
+ return;
1627
+ }
1628
+ if (c.value != null && f.value != null) {
1629
+ v = n(c.value, f.value, R);
1630
+ return;
1631
+ }
1632
+ }
1633
+ function et() {
1634
+ o.value || (g.value = !1);
1635
+ }
1636
+ return te([i, a, s, o], R, {
1637
+ flush: "sync"
1638
+ }), te([c, f], O, {
1639
+ flush: "sync"
1640
+ }), te(o, et, {
1641
+ flush: "sync"
1642
+ }), nt() && ot(N), {
1643
+ x: P(d),
1644
+ y: P(u),
1645
+ strategy: P(m),
1646
+ placement: P(h),
1647
+ middlewareData: P(b),
1648
+ isPositioned: P(g),
1649
+ floatingStyles: k,
1650
+ update: R
1651
+ };
1652
+ }
1653
+ const be = x({
1654
+ name: "RebndDropdown",
1655
+ props: ur,
1656
+ setup(e, { slots: t }) {
1657
+ const r = C(null), n = C(null), o = C(!1), { floatingStyles: i } = Nr(r, n, {
1658
+ placement: e.placement,
1659
+ middleware: [Ir(e.offset)]
1660
+ });
1661
+ function a() {
1662
+ e.mode === "click" && (o.value = !o.value);
1663
+ }
1664
+ function s(d) {
1665
+ d(), f();
1666
+ }
1667
+ function l() {
1668
+ e.mode === "hover" && (o.value = !0);
1669
+ }
1670
+ function c() {
1671
+ e.mode === "hover" && f();
1672
+ }
1673
+ function f() {
1674
+ o.value = !1;
1675
+ }
1676
+ return () => {
1677
+ if (!t.default || !t.dropdown)
1678
+ throw new z("RebndDropdown");
1679
+ return p(
1680
+ "div",
1681
+ {
1682
+ class: fr,
1683
+ onMouseenter: l,
1684
+ onMouseleave: c
1685
+ },
1686
+ [
1687
+ t.default && t.default({ isOpen: o.value }).map(
1688
+ (d) => Y(d, {
1689
+ ref: r,
1690
+ onClick: a,
1691
+ class: "dropdown__input",
1692
+ "aria-expanded": o.value,
1693
+ "aria-haspopup": "listbox"
1694
+ })
1695
+ ),
1696
+ o.value && p(
1697
+ "ul",
1698
+ {
1699
+ ref: n,
1700
+ style: i.value,
1701
+ role: "listbox"
1702
+ },
1703
+ t.dropdown && t.dropdown({ onDropDownAction: s })
1704
+ )
1705
+ ]
1706
+ );
1707
+ };
1708
+ }
1709
+ }), Pr = G({
1710
+ base: {
1711
+ cursor: "pointer",
1712
+ paddingBlock: "0.5rem",
1713
+ borderRadius: "0.25rem",
1714
+ color: {
1715
+ base: "neutrals.50",
1716
+ _dark: "neutrals.950"
1717
+ },
1718
+ fontWeight: "600",
1719
+ outline: {
1720
+ base: "1px solid",
1721
+ _focus: "2px solid"
1722
+ }
1723
+ },
1724
+ variants: {
1725
+ color: {
1726
+ error: {
1727
+ backgroundColor: { base: "error", _hover: "error.darker" },
1728
+ outlineColor: { _focus: "error.darker" }
1729
+ },
1730
+ info: {
1731
+ backgroundColor: { base: "info", _hover: "info.darker" },
1732
+ outlineColor: { _focus: "info.darker" }
1733
+ },
1734
+ primary: {
1735
+ backgroundColor: { base: "primary", _hover: "primary.darker" },
1736
+ outlineColor: { _focus: "primary.darker" }
1737
+ },
1738
+ secondary: {
1739
+ backgroundColor: {
1740
+ base: "secondary",
1741
+ _hover: "secondary.darker"
1742
+ },
1743
+ outlineColor: { _focus: "secondary.darker" }
1744
+ },
1745
+ success: {
1746
+ backgroundColor: { base: "success", _hover: "success.darker" },
1747
+ outlineColor: { _focus: "success.darker" }
1748
+ },
1749
+ warning: {
1750
+ backgroundColor: { base: "warning", _hover: "warning.darker" },
1751
+ outlineColor: { _focus: "warning.darker" }
1752
+ }
1753
+ },
1754
+ size: {
1755
+ xs: {
1756
+ fontSize: "0.625rem",
1757
+ paddingInline: "0.75rem",
1758
+ paddingBlock: "0.375rem"
1759
+ },
1760
+ sm: {
1761
+ fontSize: "0.875rem",
1762
+ paddingInline: "1rem"
1763
+ },
1764
+ md: {
1765
+ fontSize: "1rem",
1766
+ paddingInline: "1.25rem"
1767
+ },
1768
+ lg: {
1769
+ fontSize: "1.125rem",
1770
+ paddingInline: "1.75rem"
1771
+ },
1772
+ xl: {
1773
+ fontSize: "1.25rem",
1774
+ paddingInline: "2rem"
1775
+ }
1776
+ },
1777
+ variant: {
1778
+ solid: {
1779
+ outline: { base: "none" }
1780
+ },
1781
+ ghost: {
1782
+ backgroundColor: { base: "transparent" },
1783
+ outline: { base: "none" }
1784
+ },
1785
+ outlined: {
1786
+ backgroundColor: { base: "transparent" }
1787
+ }
1788
+ }
1789
+ },
1790
+ compoundVariants: [
1791
+ {
1792
+ color: "error",
1793
+ variant: ["ghost", "outlined"],
1794
+ css: {
1795
+ color: {
1796
+ base: "error",
1797
+ _dark: "error.darker"
1798
+ },
1799
+ _hover: {
1800
+ backgroundColor: "error/10"
1801
+ }
1802
+ }
1803
+ },
1804
+ {
1805
+ color: "info",
1806
+ variant: ["ghost", "outlined"],
1807
+ css: {
1808
+ color: {
1809
+ base: "info",
1810
+ _dark: "info.darker"
1811
+ },
1812
+ _hover: {
1813
+ backgroundColor: "info/10"
1814
+ }
1815
+ }
1816
+ },
1817
+ {
1818
+ color: "primary",
1819
+ variant: ["ghost", "outlined"],
1820
+ css: {
1821
+ color: {
1822
+ base: "primary",
1823
+ _dark: "primary.darker"
1824
+ },
1825
+ _hover: {
1826
+ backgroundColor: "primary/10"
1827
+ }
1828
+ }
1829
+ },
1830
+ {
1831
+ color: "secondary",
1832
+ variant: ["ghost", "outlined"],
1833
+ css: {
1834
+ color: {
1835
+ base: "secondary",
1836
+ _dark: "secondary.darker"
1837
+ },
1838
+ _hover: {
1839
+ backgroundColor: "secondary/10"
1840
+ }
1841
+ }
1842
+ },
1843
+ {
1844
+ color: "success",
1845
+ variant: ["ghost", "outlined"],
1846
+ css: {
1847
+ color: {
1848
+ base: "success",
1849
+ _dark: "success.darker"
1850
+ },
1851
+ _hover: {
1852
+ backgroundColor: "success/10"
1853
+ }
1854
+ }
1855
+ },
1856
+ {
1857
+ color: "warning",
1858
+ variant: ["ghost", "outlined"],
1859
+ css: {
1860
+ color: {
1861
+ base: "warning",
1862
+ _dark: "warning.darker"
1863
+ },
1864
+ _hover: {
1865
+ backgroundColor: "warning/10"
1866
+ }
1867
+ }
1868
+ }
1869
+ ],
1870
+ defaultVariants: {
1871
+ color: "primary",
1872
+ size: "md",
1873
+ variant: "solid"
1874
+ }
1875
+ }), Wr = {
1876
+ color: {
1877
+ type: String,
1878
+ default: "primary",
1879
+ validator: function(e) {
1880
+ return le.test(e);
1881
+ }
1882
+ },
1883
+ size: {
1884
+ type: String,
1885
+ default: "md",
1886
+ validator: function(e) {
1887
+ return Z.test(e);
1888
+ }
1889
+ },
1890
+ type: {
1891
+ type: String,
1892
+ default: "button",
1893
+ validator: function(e) {
1894
+ return /^(button|search|submit)$/.test(e);
1895
+ }
1896
+ },
1897
+ variant: {
1898
+ type: String,
1899
+ default: "solid",
1900
+ validator: function(e) {
1901
+ return ce.test(e);
1902
+ }
1903
+ }
1904
+ }, Je = x({
1905
+ name: "RebndButton",
1906
+ props: Wr,
1907
+ setup({ color: e, size: t, type: r, variant: n }, { slots: o }) {
1908
+ return () => {
1909
+ if (!o.default) throw new z("RebndButton");
1910
+ return p(
1911
+ "button",
1912
+ {
1913
+ class: Pr({ color: e, size: t, variant: n }),
1914
+ tabindex: 0,
1915
+ type: r,
1916
+ dataActive: !0
1917
+ },
1918
+ o.default && o.default()
1919
+ );
1920
+ };
1921
+ }
1922
+ }), jr = x({
1923
+ name: "RebndBreadcrumb",
1924
+ props: sr,
1925
+ setup(e, { slots: t }) {
1926
+ const r = y(
1927
+ () => p(M, {
1928
+ name: e.separator,
1929
+ class: "rb__breadcrumb-separator",
1930
+ "aria-hidden": "true"
1931
+ })
1932
+ ), n = y(
1933
+ () => (a) => p(be, null, {
1934
+ default: () => [
1935
+ p(
1936
+ Je,
1937
+ {
1938
+ color: "secondary",
1939
+ variant: "ghost"
1940
+ },
1941
+ {
1942
+ default: () => [
1943
+ p(M, { name: "horizontal-dots" }),
1944
+ p("span", null, "More links")
1945
+ ]
1946
+ }
1947
+ )
1948
+ ],
1949
+ dropdown: () => a.map((s) => p("li", { class: "breadcrumb_extra-links" }, s))
1950
+ })
1951
+ );
1952
+ function o(a) {
1953
+ const s = a.length - e.max + 1;
1954
+ return [
1955
+ ...a.slice(0, 1),
1956
+ a.slice(1, s),
1957
+ ...a.slice(s)
1958
+ ];
1959
+ }
1960
+ function i(a) {
1961
+ return Array.isArray(a) ? n.value(a) : a;
1962
+ }
1963
+ return () => {
1964
+ if (!t.default) throw new z("RebndBreadcrumb");
1965
+ const a = Ne(t.default()), l = a.length > e.max ? o(a) : a, c = l.reduce((f, d, u) => (u > 0 && u <= l.length - 1 ? f = [...f, r.value, i(d)] : f = [...f, i(d)], f), []);
1966
+ return p("nav", { class: lr }, c);
1967
+ };
1968
+ }
1969
+ }), Fr = {
1970
+ as: {
1971
+ type: String,
1972
+ default: "article"
1973
+ }
1974
+ }, Hr = w({
1975
+ border: "1px solid",
1976
+ borderColor: {
1977
+ base: "neutrals.100",
1978
+ _dark: "neutrals.800"
1979
+ },
1980
+ borderRadius: "0.5rem",
1981
+ display: "flex",
1982
+ flexDir: "column",
1983
+ gap: "2rem",
1984
+ padding: "1.5rem 0.5rem",
1985
+ width: "fit-content",
1986
+ shadow: {
1987
+ base: "elevation3.base",
1988
+ _dark: "elevation3.dark"
1989
+ },
1990
+ "& .card__header": {
1991
+ fontSize: "1.25rem",
1992
+ fontWeight: "600"
1993
+ },
1994
+ "& .card__footer": {
1995
+ fontSize: "0.875rem"
1996
+ }
1997
+ }), Xr = x({
1998
+ name: "RebndCard",
1999
+ props: Fr,
2000
+ setup(e, { slots: t }) {
2001
+ return () => {
2002
+ if (!t.default) throw new z("RebndCard");
2003
+ return p(e.as, { class: Hr }, [
2004
+ t.header && p("header", { class: "card__header" }, t.header()),
2005
+ t.default && t.default(),
2006
+ t.footer && p("footer", { class: "card__footer" }, t.footer())
2007
+ ]);
2008
+ };
2009
+ }
2010
+ }), Yr = {
2011
+ modelValue: {
2012
+ type: [String, Array],
2013
+ default: ""
2014
+ },
2015
+ multiple: {
2016
+ type: Boolean,
2017
+ default: !1
2018
+ },
2019
+ placeholder: {
2020
+ type: String,
2021
+ default: ""
2022
+ }
2023
+ }, Gr = w({
2024
+ "& .combobox__input-search": {
2025
+ position: "relative",
2026
+ borderBottom: "1px solid",
2027
+ borderColor: {
2028
+ _dark: "#15171E",
2029
+ base: "neutral.100"
2030
+ },
2031
+ "& > input": {
2032
+ outline: "none",
2033
+ paddingLeft: "2rem"
2034
+ },
2035
+ "& .combobox__search-icon": {
2036
+ position: "absolute",
2037
+ top: "calc(50% - 6px)",
2038
+ left: "8px"
2039
+ }
2040
+ },
2041
+ "& .combobox__empty-field": {
2042
+ display: "flex",
2043
+ flexDirection: "row",
2044
+ alignItems: "center",
2045
+ gap: "0.5rem",
2046
+ fontSize: "0.75rem",
2047
+ padding: "1rem 2rem"
2048
+ }
2049
+ }), Zr = {
2050
+ hasError: {
2051
+ type: Boolean,
2052
+ default: !1
2053
+ },
2054
+ modelValue: {
2055
+ type: String,
2056
+ default: ""
2057
+ }
2058
+ }, qr = w({
2059
+ position: "relative",
2060
+ display: "flex",
2061
+ flexDirection: "column",
2062
+ gap: "0.25rem",
2063
+ color: "#D3D7E4",
2064
+ "& input": {
2065
+ "&.has__leading": {
2066
+ paddingLeft: "2rem"
2067
+ },
2068
+ "&:disabled": {
2069
+ cursor: "not-allowed"
2070
+ }
2071
+ },
2072
+ "& .input__leading, & .input__trailing": {
2073
+ fontSize: "12px",
2074
+ lineHeight: "1",
2075
+ position: "absolute",
2076
+ top: "calc(50% - 8px)"
2077
+ },
2078
+ "& .input__leading": {
2079
+ left: "8px"
2080
+ },
2081
+ "& .input__trailing": {
2082
+ right: "8px"
2083
+ },
2084
+ "& .input__helper-text": {
2085
+ fontStyle: "italic",
2086
+ fontSize: "0.75rem"
2087
+ }
2088
+ }), Qe = x({
2089
+ name: "RebndInput",
2090
+ props: Zr,
2091
+ emits: ["update:modelValue"],
2092
+ inheritAttrs: !1,
2093
+ setup(e, { slots: t, attrs: r, emit: n }) {
2094
+ function o(i) {
2095
+ i.target instanceof HTMLInputElement && n("update:modelValue", i.target.value);
2096
+ }
2097
+ return () => p("div", { class: ["input__wrapper", qr] }, [
2098
+ t.leading && p("span", { class: "input__leading" }, t.leading()),
2099
+ p("input", {
2100
+ class: { error: e.hasError, has__leading: t.leading },
2101
+ type: "text",
2102
+ ...r,
2103
+ value: e.modelValue,
2104
+ onInput: o
2105
+ }),
2106
+ t.trailing && p("span", { class: "input__trailing" }, t.trailing()),
2107
+ t.helperText && p("p", { class: "input__helper-text" }, t.helperText())
2108
+ ]);
2109
+ }
2110
+ }), Kr = x({
2111
+ name: "RebndCombobox",
2112
+ props: Yr,
2113
+ emits: ["update:modelValue"],
2114
+ setup(e, { emit: t, slots: r }) {
2115
+ const n = /* @__PURE__ */ new Map(), o = C(""), i = y(() => a.value ? s(e.modelValue) : n.get(e.modelValue) || ""), a = y(
2116
+ () => e.multiple || Array.isArray(e.modelValue)
2117
+ );
2118
+ function s(d) {
2119
+ const u = d.map((h) => n.get(h)).slice(0, 2).join(", "), m = d.length - 2;
2120
+ return d.length <= 2 ? u : u + `, +${m}`;
2121
+ }
2122
+ function l(d) {
2123
+ d.target instanceof HTMLInputElement && (o.value = d.target.value);
2124
+ }
2125
+ function c(d, u) {
2126
+ var m;
2127
+ a.value ? f((m = d.props) == null ? void 0 : m["data-label"]) : u(() => {
2128
+ var h;
2129
+ return t("update:modelValue", (h = d.props) == null ? void 0 : h["data-label"]);
2130
+ });
2131
+ }
2132
+ function f(d) {
2133
+ const u = [...e.modelValue], h = u.includes(d) ? u.filter((b) => b !== d) : [...u, d];
2134
+ t("update:modelValue", h);
2135
+ }
2136
+ return () => {
2137
+ if (!r.default) throw new z("RebndCombobox");
2138
+ const d = r.default();
2139
+ d.forEach((h) => {
2140
+ var k;
2141
+ const b = ((k = h.props) == null ? void 0 : k["data-label"]) || "", g = tr(h);
2142
+ n.set(b, g);
2143
+ });
2144
+ const u = d.filter((h) => {
2145
+ var g;
2146
+ const b = ((g = h.props) == null ? void 0 : g["data-label"]) || "";
2147
+ return Zt(b, o.value);
2148
+ }), m = u.reduce(
2149
+ (h, b) => [...h, b],
2150
+ [
2151
+ p("li", { class: "combobox__input-search", role: "none" }, [
2152
+ p("input", {
2153
+ placeholder: "Search...",
2154
+ "aria-label": "Search options",
2155
+ value: o.value,
2156
+ onInput: l
2157
+ }),
2158
+ p(M, {
2159
+ class: "combobox__search-icon",
2160
+ name: "search",
2161
+ width: 12,
2162
+ height: 12
2163
+ })
2164
+ ]),
2165
+ !u.length && p("li", { class: "combobox__empty-field" }, [
2166
+ p(M, { name: "not-found", height: 12, width: 12 }),
2167
+ `Nothing matching ${o.value}`
2168
+ ])
2169
+ ]
2170
+ );
2171
+ return p(
2172
+ be,
2173
+ { class: Gr },
2174
+ {
2175
+ default: () => p(
2176
+ Qe,
2177
+ {
2178
+ type: "search",
2179
+ readOnly: "true",
2180
+ modelValue: i.value,
2181
+ placeholder: e.placeholder
2182
+ },
2183
+ {
2184
+ leading: () => r.icon && r.icon(),
2185
+ trailing: () => p(M, { name: "chevron-up-down" })
2186
+ }
2187
+ ),
2188
+ dropdown: ({
2189
+ onDropDownAction: h
2190
+ }) => [
2191
+ ...m.filter(
2192
+ (b) => !!b && typeof b == "object"
2193
+ ).map(
2194
+ (b) => Y(b, {
2195
+ onClick: () => c(b, h)
2196
+ })
2197
+ ),
2198
+ r.footer && p("li", r.footer())
2199
+ ]
2200
+ }
2201
+ );
2202
+ };
2203
+ }
2204
+ }), Ur = {
2205
+ schema: {
2206
+ type: Object,
2207
+ required: !0
2208
+ },
2209
+ state: {
2210
+ type: Object,
2211
+ required: !0
2212
+ }
2213
+ }, Jr = w({
2214
+ display: "flex",
2215
+ flexDirection: "column",
2216
+ gap: "1rem",
2217
+ width: "100%"
2218
+ }), Qr = x({
2219
+ name: "RebndForm",
2220
+ props: Ur,
2221
+ emits: ["submit"],
2222
+ setup(e, { slots: t, emit: r }) {
2223
+ const n = C([]);
2224
+ it("form-errors", n);
2225
+ const o = y(
2226
+ () => {
2227
+ var s;
2228
+ return ((s = n.value) == null ? void 0 : s.length) !== 0;
2229
+ }
2230
+ );
2231
+ function i() {
2232
+ const s = e.schema.safeParse(e.state);
2233
+ return s.success ? [] : s.error.issues.map(({ path: l, message: c }) => ({
2234
+ path: l.join("."),
2235
+ message: c
2236
+ }));
2237
+ }
2238
+ function a(s) {
2239
+ s.preventDefault();
2240
+ let l = s;
2241
+ n.value = i(), o.value ? l = {
2242
+ ...l,
2243
+ state: null
2244
+ } : l = {
2245
+ ...l,
2246
+ state: e.state
2247
+ }, r("submit", l);
2248
+ }
2249
+ return () => {
2250
+ if (!t.default) throw new z("RebndForm");
2251
+ return p(
2252
+ "form",
2253
+ { class: Jr, onSubmit: a },
2254
+ t.default && t.default()
2255
+ );
2256
+ };
2257
+ }
2258
+ }), en = {
2259
+ name: {
2260
+ type: String,
2261
+ default: ""
2262
+ }
2263
+ }, tn = w({
2264
+ display: "flex",
2265
+ flexDirection: "column",
2266
+ gap: ".5rem",
2267
+ "& label": {
2268
+ fontSize: "0.75rem",
2269
+ fontWeight: "medium"
2270
+ },
2271
+ "& .form__error-text": {
2272
+ color: "red.400",
2273
+ fontSize: "0.75rem"
2274
+ }
2275
+ }), rn = x({
2276
+ name: "RebndFormGroup",
2277
+ props: en,
2278
+ setup(e, { slots: t }) {
2279
+ const r = st("form-errors"), n = y(
2280
+ () => {
2281
+ var o;
2282
+ return r ? (o = r.value.find(({ path: i }) => i === (e == null ? void 0 : e.name))) == null ? void 0 : o.message : null;
2283
+ }
2284
+ );
2285
+ return () => {
2286
+ if (!t.default) throw new z("RebndFormGroup");
2287
+ return p(
2288
+ "fieldset",
2289
+ {
2290
+ class: tn
2291
+ },
2292
+ [
2293
+ t.label && p("label", { for: e.name }, t.label()),
2294
+ t.default && t.default().map((o) => Y(o, { hasError: n.value })),
2295
+ n.value && p("p", { class: "form__error-text" }, n.value)
2296
+ ]
2297
+ );
2298
+ };
2299
+ }
2300
+ }), nn = {
2301
+ as: {
2302
+ type: String,
2303
+ default: "a"
2304
+ }
2305
+ }, on = w({
2306
+ display: "inline-block",
2307
+ color: { base: "primary", _hover: "primary.darker" },
2308
+ scale: { base: "1", _hover: "0.95" },
2309
+ transition: "all",
2310
+ transitionDuration: "400ms",
2311
+ "& > svg": { marginLeft: "0.5rem", verticalAlign: "middle" }
2312
+ }), an = x({
2313
+ name: "RebndLink",
2314
+ props: nn,
2315
+ setup(e, { attrs: t, slots: r }) {
2316
+ const n = y(
2317
+ () => t.target === "_blank"
2318
+ ), o = y(
2319
+ () => e.as === "a" ? "a" : lt(e.as)
2320
+ );
2321
+ return () => p(
2322
+ o.value,
2323
+ {
2324
+ class: on,
2325
+ ...t,
2326
+ ...n.value && { rel: "noopener noreferrer" }
2327
+ },
2328
+ r.default && [
2329
+ r.default(),
2330
+ n.value && p(M, { name: "external", height: 10, width: 10 })
2331
+ ]
2332
+ );
2333
+ }
2334
+ }), sn = {
2335
+ activeTab: {
2336
+ type: String,
2337
+ default: ""
2338
+ },
2339
+ title: {
2340
+ type: String,
2341
+ required: !0
2342
+ }
2343
+ }, ln = w({
2344
+ padding: "0.5rem 1rem"
2345
+ }), cn = x({
2346
+ name: "RebndTab",
2347
+ props: sn,
2348
+ setup(e, { slots: t }) {
2349
+ const r = y(
2350
+ () => e.activeTab === e.title
2351
+ );
2352
+ return () => {
2353
+ var n, o;
2354
+ return ct(
2355
+ p(
2356
+ "div",
2357
+ {
2358
+ id: `panel-${(n = e == null ? void 0 : e.title) == null ? void 0 : n.toLowerCase()}`,
2359
+ class: ln,
2360
+ role: "tabpanel",
2361
+ tabindex: "0",
2362
+ "aria-labelledby": `tab-${(o = e == null ? void 0 : e.title) == null ? void 0 : o.toLowerCase()}`
2363
+ },
2364
+ t.default && t.default()
2365
+ ),
2366
+ [[dt, r.value]]
2367
+ );
2368
+ };
2369
+ }
2370
+ }), dn = {
2371
+ modelValue: {
2372
+ type: String,
2373
+ default: ""
2374
+ },
2375
+ size: {
2376
+ type: String,
2377
+ default: "md",
2378
+ validator: function(e) {
2379
+ return Z.test(e);
2380
+ }
2381
+ },
2382
+ variant: {
2383
+ type: String,
2384
+ default: "outlined",
2385
+ validator: function(e) {
2386
+ return ce.test(e);
2387
+ }
2388
+ }
2389
+ }, un = G({
2390
+ base: {
2391
+ display: "flex",
2392
+ flexDirection: "row",
2393
+ gap: "0.25rem",
2394
+ justifyContent: "space-around",
2395
+ border: "1px solid",
2396
+ color: {
2397
+ base: "neutrals.900",
2398
+ _dark: "neutral.50"
2399
+ },
2400
+ borderColor: { base: "neutrals.100", _dark: "neutrals.800" },
2401
+ borderRadius: "4px",
2402
+ fontWeight: "bold",
2403
+ "& button": {
2404
+ flex: 1,
2405
+ zIndex: 1,
2406
+ paddingBlock: "0.25rem",
2407
+ paddingInline: "0.75rem"
2408
+ },
2409
+ "& div": {
2410
+ position: "absolute",
2411
+ transition: "all 500ms cubic-bezier(0,1.34,.86,.9)",
2412
+ backgroundColor: {
2413
+ base: "neutrals.50",
2414
+ _dark: "neutrals.800"
2415
+ }
2416
+ }
2417
+ },
2418
+ variants: {
2419
+ size: {
2420
+ xs: {
2421
+ fontSize: "0.5rem"
2422
+ },
2423
+ sm: {
2424
+ fontSize: "0.75rem"
2425
+ },
2426
+ md: {
2427
+ fontSize: "0.875rem"
2428
+ },
2429
+ lg: {
2430
+ fontSize: "1rem"
2431
+ },
2432
+ xl: {
2433
+ fontSize: "1.25rem"
2434
+ }
2435
+ },
2436
+ variant: {
2437
+ solid: {
2438
+ border: "none",
2439
+ backgroundColor: {
2440
+ base: "neutrals.100",
2441
+ _dark: "neutrals.900"
2442
+ }
2443
+ },
2444
+ ghost: {
2445
+ border: "none",
2446
+ backgroundColor: "transparent"
2447
+ },
2448
+ outlined: {
2449
+ backgroundColor: "transparent",
2450
+ border: "1px solid transparent"
2451
+ }
2452
+ }
2453
+ },
2454
+ defaultVariants: {
2455
+ size: "md",
2456
+ variant: "outlined"
2457
+ }
2458
+ }), fn = x({
2459
+ name: "RebndTabs",
2460
+ props: dn,
2461
+ emits: ["update:modelValue"],
2462
+ setup(e, { emit: t, slots: r }) {
2463
+ const n = C(""), o = C([]), i = C([]), a = C([]), s = y(
2464
+ () => o.value[l.value]
2465
+ ), l = y(
2466
+ () => o.value.findIndex((g) => g === e.modelValue) ?? 0
2467
+ ), c = y(
2468
+ () => (g) => e.modelValue === g
2469
+ ), f = y(
2470
+ () => c.value(s.value) ? "0" : "-1"
2471
+ );
2472
+ ut(async () => {
2473
+ await ne(), u(), window.addEventListener("resize", u);
2474
+ }), ft(
2475
+ () => window.removeEventListener("resize", u)
2476
+ );
2477
+ function d() {
2478
+ i.value = a.value.map(
2479
+ (g) => g.getBoundingClientRect()
2480
+ );
2481
+ }
2482
+ function u() {
2483
+ d(), b();
2484
+ }
2485
+ async function m(g) {
2486
+ t("update:modelValue", g), await ne(), b();
2487
+ }
2488
+ function h(g) {
2489
+ g && g instanceof HTMLButtonElement && a.value.push(g);
2490
+ }
2491
+ function b() {
2492
+ const { top: g, left: k, height: v, width: R } = i.value[l.value];
2493
+ n.value = `top:${g}px;left:${k}px;height:${v}px;width:${R}px`;
2494
+ }
2495
+ return () => {
2496
+ if (!r.default) throw new z("RebndTabs");
2497
+ return o.value = r.default().map(({ props: g }) => g == null ? void 0 : g.title), p("div", [
2498
+ p(
2499
+ "nav",
2500
+ {
2501
+ class: un({
2502
+ size: e.size,
2503
+ variant: e.variant
2504
+ }),
2505
+ role: "tablist"
2506
+ },
2507
+ [
2508
+ o.value.map(
2509
+ (g) => p(
2510
+ "button",
2511
+ {
2512
+ role: "tab",
2513
+ ref: h,
2514
+ "aria-selected": c.value(g),
2515
+ "aria-controls": `panel-${g.toLowerCase()}`,
2516
+ id: `tab-${g.toLowerCase()}`,
2517
+ tabindex: f.value,
2518
+ class: ["button", { active: c.value(g) }],
2519
+ onClick: () => m(g)
2520
+ },
2521
+ g
2522
+ )
2523
+ ),
2524
+ p("div", {
2525
+ style: n.value
2526
+ })
2527
+ ]
2528
+ ),
2529
+ r.default && r.default().map(
2530
+ (g) => Y(g, {
2531
+ activeTab: s.value
2532
+ })
2533
+ )
2534
+ ]);
2535
+ };
2536
+ }
2537
+ }), mn = {
2538
+ hasError: {
2539
+ type: Boolean,
2540
+ default: !1
2541
+ },
2542
+ modelValue: {
2543
+ type: String,
2544
+ default: ""
2545
+ }
2546
+ }, pn = w({
2547
+ resize: "none"
2548
+ }), gn = x({
2549
+ name: "RebndTextArea",
2550
+ props: mn,
2551
+ setup(e, { slots: t }) {
2552
+ return () => p("textarea", {
2553
+ class: [pn, { error: e.hasError }]
2554
+ });
2555
+ }
2556
+ }), hn = {
2557
+ RAccordion: Xt,
2558
+ RAvatar: Kt,
2559
+ RAvatarGroup: nr,
2560
+ RBadge: ir,
2561
+ RBreadcrumb: jr,
2562
+ RButton: Je,
2563
+ RCard: Xr,
2564
+ RCombobox: Kr,
2565
+ RDropdown: be,
2566
+ RForm: Qr,
2567
+ RFormGroup: rn,
2568
+ RIcon: M,
2569
+ RInput: Qe,
2570
+ RLink: an,
2571
+ RTab: cn,
2572
+ RTabs: fn,
2573
+ RTextArea: gn
2574
+ };
2575
+ export {
2576
+ hn as default
2577
+ };