@yourdash/uikit 1.0.34 → 1.0.35

Sign up to get free protection for your applications and to get access to all the features.
Files changed (99) hide show
  1. package/dist/assets/box.css +4 -0
  2. package/dist/assets/button.css +4 -0
  3. package/dist/assets/buttonCombo.css +4 -0
  4. package/dist/assets/buttonLink.css +4 -0
  5. package/dist/assets/buttonWithIcon.css +4 -0
  6. package/dist/assets/card.css +4 -0
  7. package/dist/assets/carousel.css +4 -0
  8. package/dist/assets/container.css +4 -0
  9. package/dist/assets/contextMenuRoot.css +4 -0
  10. package/dist/assets/dialog.css +4 -0
  11. package/dist/assets/flex.css +4 -0
  12. package/dist/assets/header.css +7 -0
  13. package/dist/assets/heading.css +4 -0
  14. package/dist/assets/icon.css +4 -0
  15. package/dist/assets/iconButton.css +4 -0
  16. package/dist/assets/image.css +4 -0
  17. package/dist/assets/infiniteScroll.css +7 -0
  18. package/dist/assets/level.css +4 -0
  19. package/dist/assets/link.css +4 -0
  20. package/dist/assets/navBar.css +4 -0
  21. package/dist/assets/navImage.css +4 -0
  22. package/dist/assets/onBoarding.css +4 -0
  23. package/dist/assets/separator.css +4 -0
  24. package/dist/assets/sidebar.css +4 -0
  25. package/dist/assets/sidebarContainer.css +4 -0
  26. package/dist/assets/spinner.css +4 -0
  27. package/dist/assets/subtext.css +4 -0
  28. package/dist/assets/tag.css +4 -0
  29. package/dist/assets/textButton.css +4 -0
  30. package/dist/assets/textInput.css +4 -0
  31. package/dist/assets/toasts.css +4 -0
  32. package/dist/clippy-B98VypDQ.js +20 -0
  33. package/dist/components/box/box.js +13 -0
  34. package/dist/components/button/button.js +18 -0
  35. package/dist/components/buttonCombo/buttonCombo.js +8 -0
  36. package/dist/components/buttonLink/buttonLink.js +21 -0
  37. package/dist/components/buttonWithIcon/buttonWithIcon.js +29 -0
  38. package/dist/components/card/card.js +42 -0
  39. package/dist/components/container/container.js +13 -0
  40. package/dist/components/contextMenu/contextMenu.js +27 -0
  41. package/dist/components/contextMenu/contextMenuRoot.js +60 -0
  42. package/dist/components/contextMenu/contextMenuRootContext.js +11 -0
  43. package/dist/components/flex/flex.js +26 -0
  44. package/dist/components/heading/heading.js +29 -0
  45. package/dist/components/icon/icon.js +28 -0
  46. package/dist/components/icon/iconDictionary.js +287 -0
  47. package/dist/components/iconButton/iconButton.js +24 -0
  48. package/dist/components/image/image.js +56 -0
  49. package/dist/components/index.js +48 -0
  50. package/dist/components/link/link.js +26 -0
  51. package/dist/components/progressBar/progressBar.js +20 -0
  52. package/dist/components/redirect/redirect.js +11 -0
  53. package/dist/components/separator/separator.js +11 -0
  54. package/dist/components/spinner/spinner.js +30 -0
  55. package/dist/components/subtext/subtext.js +9 -0
  56. package/dist/components/tag/tag.js +15 -0
  57. package/dist/components/text/text.js +8 -0
  58. package/dist/components/textButton/textButton.js +16 -0
  59. package/dist/components/textInput/textInput.js +43 -0
  60. package/dist/core/decrementLevel.js +6 -0
  61. package/dist/core/incrementLevel.js +6 -0
  62. package/dist/core/index.js +10 -0
  63. package/dist/core/level.js +7 -0
  64. package/dist/core/remToPx.js +6 -0
  65. package/dist/core/root.js +19 -0
  66. package/dist/core/toasts/toast.js +1 -0
  67. package/dist/core/toasts/toastAction.js +1 -0
  68. package/dist/core/toasts/toastContext.js +9 -0
  69. package/dist/core/toasts/toasts.js +93 -0
  70. package/dist/core/toasts/useToast.js +13 -0
  71. package/dist/index-BJy4nmTN.js +52 -0
  72. package/dist/index-BoiKlAEs.js +30 -0
  73. package/dist/index-C9QO6nHU.js +10 -0
  74. package/dist/index-D4kASGu5.js +240 -0
  75. package/dist/index-Dj6g5px3.js +14 -0
  76. package/dist/level-o2-EzyQS.js +28 -0
  77. package/dist/server-error-lFyIkIwC.js +4 -0
  78. package/dist/uikit.js +8 -3764
  79. package/dist/utilityComponent/hasBeenShown/hasBeenShown.js +23 -0
  80. package/dist/utilityComponent/index.js +6 -0
  81. package/dist/utilityComponent/onInView/onInView.js +54 -0
  82. package/dist/views/carousel/carousel.js +102 -0
  83. package/dist/views/dialog/dialog.js +18 -0
  84. package/dist/views/header/header.js +21 -0
  85. package/dist/views/index.js +26 -0
  86. package/dist/views/infiniteScroll/infiniteScroll.js +62 -0
  87. package/dist/views/navBar/components/navImage/navImage.js +15 -0
  88. package/dist/views/navBar/components/navTitle/navTitle.js +12 -0
  89. package/dist/views/navBar/navBar.js +36 -0
  90. package/dist/views/onBoarding/onBoarding.js +125 -0
  91. package/dist/views/panAndZoom/panAndZoom.js +74 -0
  92. package/dist/views/sidebar/sidebar.js +24 -0
  93. package/dist/views/sidebar/sidebarContainer.js +34 -0
  94. package/dist/views/sidebar/sidebarContext.js +13 -0
  95. package/dist/views/sidebar/sidebarToggleButton.js +21 -0
  96. package/package.json +39 -29
  97. package/dist/defaultTheme.module.scss +0 -361
  98. package/dist/style.css +0 -10
  99. package/dist/themeValues.scss +0 -49
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_yvjet_10{box-sizing:border-box;display:flex;flex-direction:column;font-weight:var(--utfontwgt);font-size:var(--utfontsize);font-family:var(--utfontfam);background:var(--utbgn);border:var(--utbrd);padding:var(--utpdn);border-radius:0;gap:var(--utgap)}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_1jj21_10{font-family:var(--utfontfam);padding:0 var(--utbtnpdnhoriz);color:var(--utbtncol);border:var(--utbtnbrd);border-radius:var(--utbtnrad);background:var(--utbtnbgn);transition:var(--utbtntrans);height:var(--utinphei);width:max-content;cursor:pointer;padding-left:var(--utpdn);padding-right:var(--utpdn)}._component_1jj21_10:hover{color:var(--utbtnhvrcol);border:var(--utbtnhvrbrd);border-radius:var(--utbtnhvrrad);background:var(--utbtnhvrbgn);transition:var(--utbtnhvrtrans)}._component_1jj21_10:active{color:var(--utbtnatvcol);border:var(--utbtnatvbrd);border-radius:var(--utbtnatvrad);background:var(--utbtnatvbgn);transition:var(--utbtnatvtrans)}._component_1jj21_10:disabled{opacity:.8;color:var(--utbtncol);border:var(--utbtnbrd);border-radius:var(--utbtnrad);background:var(--utbtnbgn);cursor:not-allowed}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit <https://ewsgit.uk> and YourDash <https://yourdash.ewsgit.uk> contributors.
3
+ * YourDash is licensed under the MIT License. (https://mit.ewsgit.uk)
4
+ */._component_17nsv_6{display:flex;flex-direction:row}._component_17nsv_6>*:not(:first-child):not(:last-child){border-radius:0!important}._component_17nsv_6>*:first-child{border-top-right-radius:0!important;border-bottom-right-radius:0!important}._component_17nsv_6>*:last-child{border-top-left-radius:0!important;border-bottom-left-radius:0!important}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_1d200_10{font-family:var(--utfontfam);text-align:center;padding:0 var(--utbtnpdnhoriz);color:var(--utbtncol);border:var(--utbtnbrd);border-radius:var(--utbtnrad);background:var(--utbtnbgn);transition:var(--utbtntrans);height:var(--utinphei);width:max-content;cursor:pointer}._component_1d200_10:hover{color:var(--utbtnhvrcol);border:var(--utbtnhvrbrd);border-radius:var(--utbtnhvrrad);background:var(--utbtnhvrbgn);transition:var(--utbtnhvrtrans)}._component_1d200_10:active{color:var(--utbtnatvcol);border:var(--utbtnatvbrd);border-radius:var(--utbtnatvrad);background:var(--utbtnatvbgn);transition:var(--utbtnatvtrans)}._component_1d200_10:disabled{opacity:.8;color:var(--utbtncol);border:var(--utbtnbrd);border-radius:var(--utbtnrad);background:var(--utbtnbgn);cursor:not-allowed}._link_1d200_46{display:inline}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_p4tfu_10{display:flex;align-items:center;justify-content:center;font-family:var(--utfontfam);text-align:center;padding:0 var(--utbtnpdnhoriz) 0 0;color:var(--utbtncol);border:var(--utbtnbrd);border-radius:var(--utbtnrad);background:var(--utbtnbgn);transition:var(--utbtntrans);height:var(--utinphei);width:max-content;cursor:pointer}._component_p4tfu_10:hover{color:var(--utbtnhvrcol);border:var(--utbtnhvrbrd);border-radius:var(--utbtnhvrrad);background:var(--utbtnhvrbgn);transition:var(--utbtnhvrtrans)}._component_p4tfu_10:active{color:var(--utbtnatvcol);border:var(--utbtnatvbrd);border-radius:var(--utbtnatvrad);background:var(--utbtnatvbgn);transition:var(--utbtnatvtrans)}._component_p4tfu_10:disabled{opacity:.8;color:var(--utbtncol);border:var(--utbtnbrd);border-radius:var(--utbtnrad);background:var(--utbtnbgn);cursor:not-allowed}._icon_p4tfu_49{margin-left:calc(var(--utbtnpdnhoriz) / 2);margin-right:var(--utbtnpdnhoriz)}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_18x96_10{box-sizing:border-box;display:flex;flex-direction:column;font-weight:var(--utfontwgt);font-size:var(--utfontsize);font-family:var(--utfontfam);background:var(--utbgn);color:var(--utcol);border:var(--utbrd);padding:0;border-radius:var(--utrad);overflow:hidden}._clickable_18x96_25{display:flex;width:100%;cursor:pointer;color:var(--utbtncol);background:var(--utbtnbgn);border:var(--utbtnbrd);font-size:var(--utbtnfontsize);font-weight:var(--utbtnfontwgt);border-radius:var(--utbtnrad);transition:var(--utbtntrans)}._clickable_18x96_25:hover{color:var(--utbtnhvrcol);background:var(--utbtnhvrbgn);border:var(--utbtnhvrbrd);border-radius:var(--utbtnhvrrad);transition:var(--utbtnhvrtrans)}._clickable_18x96_25:active{color:var(--utbtnatvcol);background:var(--utbtnatvbgn);border:var(--utbtnatvbrd);border-radius:var(--utbtnatvrad);transition:var(--utbtnatvtrans)}._header_18x96_52{border-left:none;border-right:none;border-top:none;width:100%}._actions_18x96_59{border:none;display:flex;align-items:flex-end;width:100%;background:transparent}._content_18x96_67{box-sizing:border-box;display:flex;flex-direction:column;gap:var(--utgap);padding:var(--utpdn);height:100%}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._containerComponent_sue6z_6{display:flex;flex-direction:row;max-width:100%;height:24rem;position:relative;padding:0;overflow:hidden}._component_sue6z_16{display:flex;align-items:center;max-width:100%;height:24rem;gap:.5rem;padding:var(--utpdn);flex-direction:row;overflow-x:auto;scroll-snap-type:x mandatory;scroll-snap-stop:always;scrollbar-width:none;padding-bottom:2.5rem}._component_sue6z_16::-webkit-scrollbar{display:none}._page_sue6z_34{display:flex;width:80%;height:100%;flex-shrink:0;scroll-snap-align:center}._page_sue6z_34:first-of-type{margin-left:calc(20% + var(--utgap))}._page_sue6z_34:last-of-type{margin-right:calc(20% + var(--utgap))}._controls_sue6z_48{position:absolute;bottom:0;left:50%;transform:translate(-50%);display:flex;flex-direction:row;gap:var(--utgap)}._indicator_sue6z_58{display:flex;flex-direction:row;gap:var(--utgap);padding:calc(var(--utpdn) / 2);border-radius:var(--utrad)}._indicator_sue6z_58 ._pageIndicator_sue6z_65{background-color:var(--utcol);padding:.5rem;border-radius:var(--utrad);transition:var(--uttrans);position:relative}._indicator_sue6z_58 ._pageIndicator_sue6z_65._selected_sue6z_72{padding-right:1.5rem;padding-left:1.5rem}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_td4gi_10{box-sizing:border-box;display:flex;flex-direction:column;font-weight:var(--utfontwgt);font-size:var(--utfontsize);font-family:var(--utfontfam);background:var(--utbgn);padding:var(--utpdn);border-radius:0;gap:var(--utgap)}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_g2wjx_10{position:fixed;z-index:10000000;overflow:hidden;flex-direction:column;width:200px;box-shadow:0 0 .5rem #0008;box-sizing:border-box;display:flex;font-weight:var(--utfontwgt);font-size:var(--utfontsize);font-family:var(--utfontfam);background:var(--utbgn);color:var(--utcol);border:var(--utbrd);border-radius:var(--utrad);gap:calc(var(--utgap) / 2);padding:.5rem}._component_g2wjx_10 ._button_g2wjx_29{min-width:100%;text-align:start}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit <https://ewsgit.uk> and YourDash <https://yourdash.ewsgit.uk> contributors.
3
+ * YourDash is licensed under the MIT License. (https://mit.ewsgit.uk)
4
+ */@keyframes _fadeIn_t6st2_1{0%{opacity:0;margin-top:1rem}to{opacity:1;margin-top:0}}@keyframes _backgroundFadeIn_t6st2_1{0%{background:#0000;-webkit-backdrop-filter:blur(0rem);backdrop-filter:blur(0rem)}to{background:#0005;-webkit-backdrop-filter:blur(.25rem);backdrop-filter:blur(.25rem)}}._background_t6st2_26{width:100%;height:100%;animation:forwards _backgroundFadeIn_t6st2_1 .25s ease-out;display:flex;align-items:center;justify-content:center;position:fixed;top:0;left:0;z-index:100}._view_t6st2_39{display:flex;animation:forwards _fadeIn_t6st2_1 .5s ease-out}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_13j68_10{display:flex;gap:var(--utgap)}._row_13j68_15{flex-direction:row}._column_13j68_19{flex-direction:column}._centerHorizontally_13j68_23{align-items:center}._centerVertically_13j68_27{justify-content:center}._padding_13j68_31{padding:var(--utpdn)}
@@ -0,0 +1,7 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit <https://ewsgit.uk> and YourDash <https://yourdash.ewsgit.uk> contributors.
3
+ * YourDash is licensed under the MIT License. (https://mit.ewsgit.uk)
4
+ *//*!
5
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
6
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
7
+ */._view_1q1ur_10{width:100%;display:flex;align-items:center;justify-content:center;padding:var(--utpdn);padding-top:calc(var(--utpdn) * 4);padding-bottom:calc(var(--utpdn) * 4)}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_13od9_10{display:inline-block;text-align:center;margin:0;line-height:1}._h1component_13od9_17{font-size:var(--uthedhe1size);font-weight:var(--uthedhe1wgt)}._h2component_13od9_22{font-size:var(--uthedhe2size);font-weight:var(--uthedhe2wgt)}._h3component_13od9_27{font-size:var(--uthedhe3size);font-weight:var(--uthedhe3wgt)}._h4component_13od9_32{font-size:var(--uthedhe4size);font-weight:var(--uthedhe4wgt)}._h5component_13od9_37{font-size:var(--uthedhe5size);font-weight:var(--uthedhe5wgt)}._h6component_13od9_42{font-size:var(--uthedhe6size);font-weight:var(--uthedhe6wgt)}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_1asux_6{aspect-ratio:1/1;width:var(--size);background-color:var(--color, currentColor);-webkit-mask-image:var(--icon);-webkit-mask-position:center;-webkit-mask-repeat:no-repeat;-webkit-mask-size:cover;mask-image:var(--icon);mask-position:center;mask-repeat:no-repeat;mask-size:cover}._preserveColor_1asux_20{background-image:var(--icon);background-position:center;background-repeat:no-repeat;background-size:cover}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_jdj54_10{font-family:var(--utfontfam);text-align:center;aspect-ratio:1/1;color:var(--utbtncol);border:var(--utbtnbrd);border-radius:var(--utbtnrad);background:var(--utbtnbgn);transition:var(--utbtntrans);height:var(--utinphei);width:max-content;display:flex;align-items:center;justify-content:center;padding:0;cursor:pointer}._component_jdj54_10:hover{color:var(--utbtnhvrcol);border:var(--utbtnhvrbrd);border-radius:var(--utbtnhvrrad);background:var(--utbtnhvrbgn);transition:var(--utbtnhvrtrans)}._component_jdj54_10:active{color:var(--utbtnatvcol);border:var(--utbtnatvbrd);border-radius:var(--utbtnatvrad);background:var(--utbtnatvbgn);transition:var(--utbtnatvtrans)}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._componentContainer_112vn_10{position:relative}._component_112vn_10{border-radius:var(--utrad);opacity:0;max-width:100%;max-height:100%;min-width:2rem;min-height:2rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}._component_112vn_10._noRounding_112vn_27{border-radius:0}._loaded_112vn_31{transition:opacity .75s linear;opacity:1}@keyframes _loading_112vn_44{0%{background-position:calc(var(--background-size) * -1) calc(var(--background-size) * -1)}to{background-position:var(--background-size) var(--background-size)}}._loading_112vn_44{background:linear-gradient(to bottom right,transparent 12.5%,#bbbbbb,#ffffff 25%,transparent 12.5%,transparent 12.5%,#bbbbbb,#ffffff 25%,transparent 12.5%);background-repeat:no-repeat;background-size:calc(var(--background-size) * 4) calc(var(--background-size) * 4);animation:_loading_112vn_44 1.25s infinite forwards cubic-bezier(.25,.5,.5,.25);box-shadow:inset 0 0 .5rem #0003}._serverError_112vn_52{--size: 4rem}@keyframes _fail_112vn_1{0%{background-size:var(--background-size) var(--background-size)}50%{background-size:calc(var(--background-size) * 4) calc(var(--background-size) * 4)}to{background-size:var(--background-size) var(--background-size)}}._serverError_112vn_52{background:radial-gradient(transparent,red);background-repeat:no-repeat;background-size:var(--background-size) var(--background-size);background-position:center center;animation:_fail_112vn_1 1s infinite forwards cubic-bezier(.4,0,.2,1);box-shadow:0 0 1rem #fff;border-radius:0}
@@ -0,0 +1,7 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://ewsgit.uk> and YourDash<https://yourdash.ewsgit.uk> contributors.
3
+ * YourDash is licensed under the MIT License. (https://mit.ewsgit.uk)
4
+ *//*!
5
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
6
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
7
+ */._component_tlgec_10{display:flex;flex-direction:column;width:100%;height:100%;gap:1rem;align-items:center}._items_tlgec_19{height:100%}._endOfItems_tlgec_23{text-align:center;padding:var(--utpdn);gap:var(--utgap);width:calc(100% - var(--utpdn) * 2)}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._theme_1rrjw_10{overflow-x:hidden;overflow-y:auto;height:100%;background:var(--utbgn);--ut-author: "Ewsgit";--ut-name: "YourDash Classic Dark";--ut-version: "0.0.1"}._theme_1rrjw_10 ::-webkit-scrollbar{width:var(--utscrlbrwid);border-radius:0}._theme_1rrjw_10 ::-webkit-scrollbar-thumb{border-radius:var(--utscrlbrrad)}._level0_1rrjw_27{color:var(--utcol);--utcol: #ffffff;--utscl: #bbbbbb;--utbgn: #222222;--utacn: #768ce7;--utbrd: 1px solid #555555;--utrad: 1rem;--utpdn: 1rem;--utgap: .5rem;--uttrans: all .2s ease-in-out;--uttranstrans: .2s ease-in-out;--utsepsize: 1px;--utsepcol: #444444;--utscrlbrwid: .4rem;--utscrlbrrad: .1rem;--uthedhe1wgt: 900;--uthedhe1size: 3rem;--uthedhe2wgt: 700;--uthedhe2size: 2rem;--uthedhe3wgt: 600;--uthedhe3size: 1.5rem;--uthedhe4wgt: 500;--uthedhe4size: 1.25rem;--uthedhe5wgt: 500;--uthedhe5size: 1rem;--uthedhe6wgt: 500;--uthedhe6size: .875rem;--utinpcol: #ffffff;--utinpbgn: #222222;--utinpbrd: 1px solid #444444;--utinprad: .5rem;--utinphei: 2rem;--utinppdnhoriz: .5rem;--utinptrans: all .2s ease-in-out;--utinpfoccol: #ffffff;--utinpfocbgn: #333333;--utinpfocbrd: 1px solid #666666;--utbtncol: #ffffff;--utbtnbgn: #444444;--utbtnbrd: 1px solid #666666;--utbtnfontsize: .9rem;--utbtnfontwgt: 400;--utbtnrad: .5rem;--utbtnpdnhoriz: .5rem;--utbtntrans: all .2s ease-in-out;--utbtnhvrcol: #ffffff;--utbtnhvrbgn: #555555;--utbtnhvrbrd: 1px solid #666666;--utbtnhvrrad: .5rem;--utbtnhvrtrans: all 50ms ease-in-out;--utbtnatvcol: #000000;--utbtnatvbgn: #666666;--utbtnatvbrd: 1px solid #777777;--utbtnatvrad: .5rem;--utbtnatvtrans: all 50ms ease-in-out;--uttxbfontwgt: 700;--utfontfam: Inter;--utfontsize: .9rem;--utfontwgt: 400;--uthedcol: #ffffff;--uthedfontfam: Inter;--uthedfontsize: 1.2rem;--uthedfontwgt: 700;--uthedpdnvert: 1rem;--uthedpdnhoriz: .5rem}._level1_1rrjw_95{color:var(--utcol);--utcol: #ffffff;--utbgn: #333333;--utbrd: 1px solid #666666;--utacn: #768ce7;--utrad: .5rem;--utfontfam: Inter;--utfontrad: .9rem;--utfontwgt: 400;--utpdn: .75rem;--utgap: .5rem;--uttrans: all .2s ease-in-out;--utsepsize: 1px;--utsepcol: #555555;--uthedhe1wgt: 800;--uthedhe1size: 3rem;--uthedhe2wgt: 700;--uthedhe2size: 2.5rem;--uthedhe3wgt: 600;--uthedhe3size: 2rem;--uthedhe4wgt: 500;--uthedhe4size: 1.5rem;--uthedhe5wgt: 500;--uthedhe5size: 1rem;--uthedhe6wgt: 500;--uthedhe6size: .875rem;--utinpcol: #ffffff;--utinpbgn: #222222;--utinpbrd: 1px solid #444444;--utinprad: .5rem;--utinphei: 2rem;--utinppdnhoriz: .5rem;--utinptrans: all .2s ease-in-out;--utinpfoccol: #ffffff;--utinpfocbgn: #333333;--utinpfocbrd: 1px solid #666666;--utbtncol: #ffffff;--utbtnbgn: #444444;--utbtnbrd: 1px solid #444444;--utbtnfontsize: .9rem;--utbtnfontwgt: 400;--utbtnrad: .5rem;--utbtnpdnhoriz: .5rem;--utbtntrans: all .2s ease-in-out;--utbtnhvrcol: #ffffff;--utbtnhvrbgn: #555555;--utbtnhvrbrd: 1px solid #666666;--utbtnhvrrad: .5rem;--utbtnhvrtrans: all 50ms ease-in-out;--utbtnatvcol: #000000;--utbtnatvbgn: #666666;--utbtnatvbrd: 1px solid #666666;--utbtnatvrad: .5rem;--uthedcol: #ffffff;--uthedfontfam: Inter;--uthedfontsize: 1.2rem;--uthedfontwgt: 700;--uthedpdnvert: .5rem;--uthedpdnhoriz: .25rem}._level2_1rrjw_157{color:var(--utcol);--utcol: #ffffff;--utbgn: #444444;--utbrd: 1px solid #666666;--utacn: #768ce7;--utrad: .25rem;--utpdn: .5rem;--utgap: .75rem;--uttrans: all .2s ease-in-out;--utsepsize: 1px;--utsepcol: #555555;--uthedhe1wgt: 900;--uthedhe1size: 3rem;--uthedhe2wgt: 700;--uthedhe2size: 2rem;--uthedhe3wgt: 600;--uthedhe3size: 1.5rem;--uthedhe4wgt: 500;--uthedhe4size: 1.25rem;--uthedhe5wgt: 500;--uthedhe5size: 1rem;--uthedhe6wgt: 500;--uthedhe6size: .875rem;--uttxbfontwgt: 700;--utfontfam: Inter;--utfontsize: .9rem;--utfontwgt: 400;--utinpcol: #ffffff;--utinpbgn: #222222;--utinpbrd: 1px solid #444444;--utinprad: .5rem;--utinphei: 2rem;--utinppdnhoriz: .5rem;--utinptrans: all .2s ease-in-out;--utinpfoccol: #ffffff;--utinpfocbgn: #333333;--utinpfocbrd: 1px solid #666666;--utbtncol: #ffffff;--utbtnbgn: #555555;--utbtnbrd: 1px solid #666666;--utbtnfontfam: Inter;--utbtnfontsize: .9rem;--utbtnfontwgt: 400;--utbtnrad: .25rem;--utbtnpdnhoriz: .5rem;--utbtntrans: all .2s ease-in-out;--utbtnhvrcol: #ffffff;--utbtnhvrbgn: #666666;--utbtnhvrbrd: 1px solid #666666;--utbtnhvrrad: .25rem;--utbtnhvrtrans: all 50ms ease-in-out;--utbtnatvcol: #000000;--utbtnatvbgnbg: #666666;--utbtnatvbrd: 1px solid #666666;--utbtnatvrad: .25rem;--uthedcol: #ffffff;--uthedfontfam: Inter;--uthedfontsize: 1.2rem;--uthedfontwgt: 700;--uthedpdnvert: .5rem;--uthedpdnhoriz: .25rem}._level3_1rrjw_221{color:var(--utcol);--utcol: #ffffff;--utbgn: #555555;--utbrd: 1px solid #666666;--utacn: #768ce7;--utrad: 1px;--utpdn: .5rem;--utgap: 1rem;--uttrans: all .2s ease-in-out;--utsepsize: 1px;--utsepcol: #555555;--uthedhe1wgt: 900;--uthedhe1size: 3rem;--uthedhe2wgt: 700;--uthedhe2size: 2rem;--uthedhe3wgt: 600;--uthedhe3size: 1.5rem;--uthedhe4wgt: 500;--uthedhe4size: 1.25rem;--uthedhe5wgt: 500;--uthedhe5size: 1rem;--uthedhe6wgt: 500;--uthedhe6size: .875rem;--uttxbfontwgt: 700;--utfam: Inter;--utsize: .9rem;--utwgt: 400;--utinpcol: #ffffff;--utinpbgn: #222222;--utinpbrd: 1px solid #444444;--utinprad: .5rem;--utinphei: 2rem;--utinppdnhoriz: .5rem;--utinptrans: all .2s ease-in-out;--utinpfoccol: #ffffff;--utinpfocbgn: #333333;--utinpfocbrd: 1px solid #666666;--utbtncol: #ffffff;--utbtnbgn: #666666;--utbtnbrd: 1px solid #666666;--utbtnfontfam: Inter;--utbtnfontsize: .9rem;--utbtnfontwgt: 400;--utbtnrad: .25rem;--utbtnpdnhoriz: .5rem;--utbtnhvrcol: #ffffff;--utbtnhvrbgn: #777777;--utbtnhvrbrd: 1px solid #777777;--utbtnhvrrad: .25rem;--utbtnhvrtrans: all 50ms ease-in-out;--utbtnatvcol: #000000;--utbtnatvbgn: #777777;--utbtnatvbrd: 1px solid #777777;--utbtnatvrad: .25rem;--uthedcol: #ffffff;--uthedfontfam: Inter;--uthedfontsize: 1.2rem;--uthedfontwgt: 700;--uthedpdnvert: .5rem;--uthedpdnhoriz: .25rem}._mobile_1rrjw_284 ._level0_1rrjw_27,._mobile_1rrjw_284 ._level1_1rrjw_95,._mobile_1rrjw_284 ._level2_1rrjw_157,._mobile_1rrjw_284 ._level3_1rrjw_221{--utinphei: 2.5rem}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_r9qeb_10{display:inline-block;cursor:pointer;text-decoration:underline;font-weight:var(--utfontwgt);font-size:var(--utfontsize);font-family:var(--utfontfam);color:var(--utacn);transition:var(--utbtntrans)}._component_r9qeb_10:hover{text-decoration:none;color:var(--utacn);opacity:.8;transition:var(--utbtnhvrtrans)}._component_r9qeb_10:active{text-decoration:none;color:var(--utacn);opacity:1;transition:var(--utbtnatvtrans)}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_178hu_6{--nav-height: calc(2rem + var(--utpdn));width:100%;height:calc(var(--nav-height) + var(--utpdn) * 2);border-top:0;border-left:0;border-right:0;padding:var(--utpdn);display:grid;grid-template-columns:auto 1fr auto;justify-content:center;align-items:center}._segment_178hu_20{display:flex;align-items:center;justify-content:center}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_q2khg_6{height:calc(var(--nav-height) - var(--utpdn));aspect-ratio:1/1;border-radius:0}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._page_107gf_6{display:flex;align-items:center;justify-content:center;flex-direction:column;width:100%;height:100%;position:relative;animation:_fadeIn_107gf_1 1s 0s cubic-bezier(.215,.61,.355,1)}._page_107gf_6:before{content:"";background-image:url(/assets/productLogos/yourdash.svg);background-size:20rem;background-repeat:repeat;width:1000rem;height:1000rem;position:absolute;filter:blur(.25rem) grayscale(1);opacity:.1;transform:rotate(-45deg);z-index:-1}@keyframes _fadeIn_107gf_1{0%{transform:translateY(2.5rem);opacity:0}to{transform:translateY(0);opacity:1}}._card_107gf_40{display:flex;align-items:center;justify-content:center;flex-direction:column;gap:calc(var(--utgap) * 2);padding:2rem;position:relative;transition:var(--transition)}._cardContainer_107gf_51{box-shadow:#0008 0 0 4rem}._goBackButton_107gf_55{position:absolute;top:var(--utpdn);left:var(--utpdn)}._headerImage_107gf_61{height:16rem}._header_107gf_61{line-height:1;text-align:center}._body_107gf_70{text-align:center}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_1i64h_10{display:flex;border:var(--utbrd);border-radius:var(--utrad)}._row_1i64h_16{width:0;height:calc(100% - (var(--utgap)) * 2);margin:var(--utgap);border-left:none}._row_1i64h_16._disableMargin_1i64h_22{height:100%;margin-top:0;margin-bottom:0}._column_1i64h_28{width:calc(100% - (var(--utgap)) * 2);height:0;margin:var(--utgap);border-bottom:none}._column_1i64h_28._disableMargin_1i64h_22{width:100%;margin-left:0;margin-right:0}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_kdw27_10{height:100%;background:var(--utbgn);pointer-events:none;opacity:0;border:var(--utbrd);border-top:0;border-bottom:0;border-left:0;flex-direction:column;max-height:100%;max-width:0;transition:transform var(--uttranstrans),max-height var(--uttranstrans);transform:translate(-100%);visibility:hidden;padding:0}@media (max-width: 768px){._component_kdw27_10{max-width:100%;max-height:0;height:max-content;border-right:0;border-bottom:unset}}._component_kdw27_10>*[type=button]{min-width:100%}._open_kdw27_40{pointer-events:all;opacity:1;transform:translate(0);visibility:visible;max-width:32rem;padding:var(--utpdn)}@media (max-width: 768px){._open_kdw27_40{height:max-content}}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_3jgyq_10{display:flex;flex-direction:row;width:100%;height:100%;overflow:hidden}._component_3jgyq_10[dir=rtl]{flex-direction:row-reverse}@media (max-width: 768px){._component_3jgyq_10{flex-direction:column}}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_12m3x_6{padding:var(--utpdn);border:var(--utbrd);border-radius:var(--utrad);background-color:var(--utbgn);-webkit-user-select:none;user-select:none;position:relative;width:8rem;aspect-ratio:1/1}._container_12m3x_17{position:relative;width:100%;height:100%;aspect-ratio:1/1;rotate:135deg;animation:1.1s infinite ease-in-out _infiniteSpin_12m3x_1}._spinnerBack_12m3x_26{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);height:3rem;aspect-ratio:1/1;border-radius:100rem;background:#0007}._spinnerBorder_12m3x_37{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);height:3.5rem;aspect-ratio:1/1;border-radius:100rem;background:var(--utacn)}._spinnerCutoutContainer_12m3x_48{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);height:3.5rem;aspect-ratio:1/1;border-radius:100rem}._spinnerCutout_12m3x_48{position:absolute;height:1.75rem;aspect-ratio:1/1;background:var(--utbgn)}._spinnerCutoutOne_12m3x_65{top:0;left:0}._spinnerCutoutTwo_12m3x_70{bottom:0;right:0}@keyframes _infiniteSpin_12m3x_1{0%{transform:rotate(0)}50%{transform:rotate(200deg)}70%{transform:rotate(175deg)}80%{transform:rotate(180deg)}to{transform:rotate(180deg)}}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_1ehrl_10{color:var(--utscl);display:inline-block}._levelDefault_1ehrl_15{font-weight:var(--utfontwgt);font-size:var(--utfontsize);font-family:var(--utfontfam)}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_n6r4z_10{display:inline-block;font-weight:var(--utfontwgt);font-size:var(--utfontsize);font-family:var(--utfontfam)}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_vlbze_10{font-family:var(--utfontfam);text-align:center;color:var(--utbtncol);transition:var(--utbtntrans);width:max-content;cursor:pointer;border:none;background:transparent;font-weight:var(--uttxbfontwgt)}._component_vlbze_10:hover{color:var(--utacn);opacity:.8;transition:var(--utbtnhvrtrans)}._component_vlbze_10:active{color:var(--utacn);opacity:1;transition:var(--utbtnatvtrans)}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://github.com/ewsgit> and YourDash<https://github.com/yourdash> contributors.
3
+ * YourDash is licensed under the MIT License. (https://ewsgit.mit-license.org)
4
+ */._component_1siil_10{display:flex;position:relative;box-sizing:border-box;color:var(--utinpcol);background:var(--utinpbgn);border:var(--utinpbrd);border-radius:var(--utinprad);transition:var(--utinptrans);padding:0;height:var(--utinphei)}._component_1siil_10:focus,._component_1siil_10:focus-within{color:var(--utinpfoccol);background:var(--utinpfocbgn);border:var(--utinpfocbrd)}._icon_1siil_28{height:calc(var(--utinphei) - .75rem);position:absolute;top:50%;transform:translateY(-50%);margin-left:calc(var(--utinppdnhoriz))}._input_1siil_36{background:transparent;color:var(--utinpcol);padding-left:calc(var(--utinppdnhoriz) + var(--utinphei) - .5rem);width:100%;margin:0;border:none}._input_1siil_36._noIcon_1siil_44{padding-left:var(--utinppdnhoriz)}._input_1siil_36:focus,._input_1siil_36:focus-within{outline:none}
@@ -0,0 +1,4 @@
1
+ @charset "UTF-8";/*!
2
+ * Copyright ©2024 Ewsgit<https://ewsgit.uk> and YourDash<https://yourdash.ewsgit.uk> contributors.
3
+ * YourDash is licensed under the MIT License. (https://mit.ewsgit.uk)
4
+ */._container_17n1r_6{position:fixed;top:0;right:0;z-index:10000;text-align:start;opacity:.75;overflow:hidden;pointer-events:none;gap:.25rem;display:flex;flex-direction:column}._component_17n1r_20{border-radius:.5rem;display:flex;flex-direction:column;gap:1rem;pointer-events:none;-webkit-backdrop-filter:blur(1rem);backdrop-filter:blur(1rem);max-width:32rem;margin-right:.5rem}._component_17n1r_20:first-child{margin-top:.5rem}._cardContent_17n1r_34{gap:0;padding:.25rem .5rem;margin-right:-.5rem}._success_17n1r_42{border-right:.5rem solid #2ea967}._error_17n1r_46{border-right:.5rem solid #ff4500}._warning_17n1r_50{border-right:.5rem solid #daa520}._info_17n1r_54{border-right:.5rem solid #00b8ff}._heading_17n1r_58{text-align:left;line-height:1;padding-top:.25rem}._pointerEvents_17n1r_64{pointer-events:all}
@@ -0,0 +1,20 @@
1
+ function o(r) {
2
+ var n, i, t = "";
3
+ if (typeof r == "string" || typeof r == "number") t += r;
4
+ else if (typeof r == "object") if (Array.isArray(r)) {
5
+ var f = r.length;
6
+ for (n = 0; n < f; n++) r[n] && (i = o(r[n])) && (t && (t += " "), t += i);
7
+ } else for (i in r) r[i] && (t && (t += " "), t += i);
8
+ return t;
9
+ }
10
+ function l() {
11
+ for (var r, n, i = 0, t = "", f = arguments.length; i < f; i++) (r = arguments[i]) && (n = o(r)) && (t && (t += " "), t += n);
12
+ return t;
13
+ }
14
+ function e(...r) {
15
+ return l(...r).replaceAll(`
16
+ `, "").split(" ").filter((n) => n !== "").join(" ");
17
+ }
18
+ export {
19
+ e as c
20
+ };
@@ -0,0 +1,13 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import { c as t } from "../../clippy-B98VypDQ.js";
3
+ import s from "../../core/incrementLevel.js";
4
+ import { u as c, a as l } from "../../level-o2-EzyQS.js";
5
+ import '../../assets/box.css';const m = "_component_yvjet_10", r = {
6
+ component: m
7
+ }, d = (e) => {
8
+ const n = e.level || c();
9
+ return /* @__PURE__ */ o("div", { className: t(r.component, e.className, l(n)), children: /* @__PURE__ */ o(s, { children: e.children }) });
10
+ };
11
+ export {
12
+ d as default
13
+ };
@@ -0,0 +1,18 @@
1
+ import { jsx as n } from "react/jsx-runtime";
2
+ import { c as e } from "../../clippy-B98VypDQ.js";
3
+ import '../../assets/button.css';const o = "_component_1jj21_10", c = {
4
+ component: o
5
+ }, m = (t) => /* @__PURE__ */ n(
6
+ "button",
7
+ {
8
+ className: e(c.component, t.className),
9
+ onClick: t.onClick,
10
+ "aria-label": t.text,
11
+ disabled: t.disabled,
12
+ type: "button",
13
+ children: t.text
14
+ }
15
+ );
16
+ export {
17
+ m as default
18
+ };
@@ -0,0 +1,8 @@
1
+ import { jsx as n } from "react/jsx-runtime";
2
+ import { c as s } from "../../clippy-B98VypDQ.js";
3
+ import '../../assets/buttonCombo.css';const c = "_component_17nsv_6", m = {
4
+ component: c
5
+ }, r = ({ children: o, className: t }) => /* @__PURE__ */ n("div", { className: s(m.component, t), children: o });
6
+ export {
7
+ r as default
8
+ };
@@ -0,0 +1,21 @@
1
+ import { jsx as n } from "react/jsx-runtime";
2
+ import { c as e } from "../../clippy-B98VypDQ.js";
3
+ import c from "../button/button.js";
4
+ import { u as m } from "../../index-D4kASGu5.js";
5
+ import '../../assets/buttonLink.css';const s = "_component_1d200_10", a = "_link_1d200_46", i = {
6
+ component: s,
7
+ link: a
8
+ }, _ = (t) => {
9
+ const o = m();
10
+ return /* @__PURE__ */ n(
11
+ c,
12
+ {
13
+ onClick: () => (o(t.to), 0),
14
+ text: t.text,
15
+ className: e(i.component, t.className)
16
+ }
17
+ );
18
+ };
19
+ export {
20
+ _ as default
21
+ };
@@ -0,0 +1,29 @@
1
+ import { jsxs as t, jsx as c } from "react/jsx-runtime";
2
+ import { c as e } from "../../clippy-B98VypDQ.js";
3
+ import i from "../icon/icon.js";
4
+ import '../../assets/buttonWithIcon.css';const s = "_component_p4tfu_10", a = "_icon_p4tfu_49", o = {
5
+ component: s,
6
+ icon: a
7
+ }, d = (n) => /* @__PURE__ */ t(
8
+ "button",
9
+ {
10
+ className: e(o.component, n.className),
11
+ onClick: n.onClick,
12
+ "aria-label": n.text,
13
+ disabled: n.disabled,
14
+ children: [
15
+ /* @__PURE__ */ c(
16
+ i,
17
+ {
18
+ size: "1.25rem",
19
+ className: o.icon,
20
+ icon: n.icon
21
+ }
22
+ ),
23
+ n.text
24
+ ]
25
+ }
26
+ );
27
+ export {
28
+ d as default
29
+ };
@@ -0,0 +1,42 @@
1
+ import { jsx as c, Fragment as i, jsxs as s } from "react/jsx-runtime";
2
+ import { c as n } from "../../clippy-B98VypDQ.js";
3
+ import m from "../../core/incrementLevel.js";
4
+ import { u as d, a as o } from "../../level-o2-EzyQS.js";
5
+ import l from "../box/box.js";
6
+ import r from "../../core/decrementLevel.js";
7
+ import '../../assets/card.css';const h = "_component_18x96_10", N = "_clickable_18x96_25", _ = "_header_18x96_52", C = "_actions_18x96_59", v = "_content_18x96_67", a = {
8
+ component: h,
9
+ clickable: N,
10
+ header: _,
11
+ actions: C,
12
+ content: v
13
+ }, L = (e) => {
14
+ const t = e.level || d();
15
+ return e.onClick ? /* @__PURE__ */ c(i, { children: /* @__PURE__ */ c(m, { children: /* @__PURE__ */ s(
16
+ "button",
17
+ {
18
+ style: e.style,
19
+ className: n(a.component, o(t), e.containerClassName, a.clickable),
20
+ onClick: e.onClick,
21
+ children: [
22
+ e.header && /* @__PURE__ */ c(l, { className: n(a.header, e.headerClassName), children: e.header }),
23
+ /* @__PURE__ */ c("div", { className: n(a.content, e.className), children: e.children }),
24
+ e.actions && /* @__PURE__ */ c(l, { className: n(a.actions, e.actionsClassName), children: e.actions })
25
+ ]
26
+ }
27
+ ) }) }) : /* @__PURE__ */ c(i, { children: /* @__PURE__ */ c(m, { children: /* @__PURE__ */ s(
28
+ "div",
29
+ {
30
+ style: e.style,
31
+ className: n(a.component, o(t), e.containerClassName),
32
+ children: [
33
+ e.header && /* @__PURE__ */ c(l, { className: n(a.header, e.headerClassName), children: e.header }),
34
+ /* @__PURE__ */ c("div", { className: n(a.content, e.className), children: e.children }),
35
+ /* @__PURE__ */ c(r, { children: e.actions && /* @__PURE__ */ c(l, { className: n(a.actions, e.actionsClassName), children: e.actions }) })
36
+ ]
37
+ }
38
+ ) }) });
39
+ };
40
+ export {
41
+ L as default
42
+ };
@@ -0,0 +1,13 @@
1
+ import { jsx as n } from "react/jsx-runtime";
2
+ import { c as t } from "../../clippy-B98VypDQ.js";
3
+ import s from "../../core/incrementLevel.js";
4
+ import { u as c, a as l } from "../../level-o2-EzyQS.js";
5
+ import '../../assets/container.css';const m = "_component_td4gi_10", r = {
6
+ component: m
7
+ }, v = (e) => {
8
+ const o = e.level || c();
9
+ return /* @__PURE__ */ n("div", { className: t(r.component, e.className, l(o)), children: /* @__PURE__ */ n(s, { children: e.children }) });
10
+ };
11
+ export {
12
+ v as default
13
+ };
@@ -0,0 +1,27 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import s from "./contextMenuRootContext.js";
3
+ const w = ({ items: i, children: u, className: d }) => /* @__PURE__ */ r(s.Consumer, { children: (n) => /* @__PURE__ */ r(
4
+ "div",
5
+ {
6
+ className: d,
7
+ onContextMenu: (e) => {
8
+ e.stopPropagation(), e.preventDefault();
9
+ const o = e.currentTarget.getBoundingClientRect();
10
+ n.createMenu({
11
+ x: e.pageX,
12
+ y: e.pageY,
13
+ width: o.width,
14
+ height: o.height,
15
+ items: i
16
+ });
17
+ const t = (c) => {
18
+ c.preventDefault(), n.destroyMenu(), window.removeEventListener("click", t), window.removeEventListener("contextmenu", t);
19
+ };
20
+ window.addEventListener("click", t), window.addEventListener("contextmenu", t);
21
+ },
22
+ children: u
23
+ }
24
+ ) });
25
+ export {
26
+ w as default
27
+ };
@@ -0,0 +1,60 @@
1
+ import { jsxs as y, jsx as p } from "react/jsx-runtime";
2
+ import o, { useRef as M, useEffect as R } from "react";
3
+ import v from "../button/button.js";
4
+ import E from "./contextMenuRootContext.js";
5
+ import '../../assets/contextMenuRoot.css';const H = "_component_g2wjx_10", j = "_button_g2wjx_29", h = {
6
+ component: H,
7
+ button: j
8
+ }, P = ({ children: x }) => {
9
+ const [s, g] = o.useState({ x: 0, y: 0 }), [w, e] = o.useState(!1), [_, b] = o.useState([]), n = M(null);
10
+ return R(() => {
11
+ window.addEventListener("resize", () => {
12
+ e(!1);
13
+ });
14
+ }, []), /* @__PURE__ */ y(
15
+ E.Provider,
16
+ {
17
+ value: {
18
+ createMenu: ({ x: t, y: i, width: N, height: B, items: C }) => {
19
+ var f, m;
20
+ const r = window.innerWidth, c = window.innerHeight, l = ((f = n.current) == null ? void 0 : f.getBoundingClientRect().width) || 200, u = ((m = n.current) == null ? void 0 : m.getBoundingClientRect().height) || 200;
21
+ let a = t, d = i;
22
+ t + l >= r && (a = r - l), i + u >= c && (d = c - u), g({
23
+ x: a,
24
+ y: d
25
+ }), b(C), e(!0);
26
+ },
27
+ destroyMenu: () => {
28
+ e(!1);
29
+ }
30
+ },
31
+ children: [
32
+ /* @__PURE__ */ p(
33
+ "div",
34
+ {
35
+ ref: n,
36
+ style: {
37
+ display: w ? "flex" : "none",
38
+ left: s.x,
39
+ top: s.y
40
+ },
41
+ className: h.component,
42
+ children: _.map((t) => /* @__PURE__ */ p(
43
+ v,
44
+ {
45
+ className: h.button,
46
+ text: t.label,
47
+ onClick: t.onClick
48
+ },
49
+ t.label
50
+ ))
51
+ }
52
+ ),
53
+ x
54
+ ]
55
+ }
56
+ );
57
+ };
58
+ export {
59
+ P as default
60
+ };
@@ -0,0 +1,11 @@
1
+ import { createContext as t } from "react";
2
+ const n = t({
3
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
4
+ createMenu: (e) => {
5
+ },
6
+ destroyMenu: () => {
7
+ }
8
+ });
9
+ export {
10
+ n as default
11
+ };
@@ -0,0 +1,26 @@
1
+ import { jsx as t } from "react/jsx-runtime";
2
+ import { c } from "../../clippy-B98VypDQ.js";
3
+ import '../../assets/flex.css';const o = "_component_13j68_10", l = "_row_13j68_15", r = "_column_13j68_19", i = "_centerHorizontally_13j68_23", a = "_centerVertically_13j68_27", _ = "_padding_13j68_31", e = {
4
+ component: o,
5
+ row: l,
6
+ column: r,
7
+ centerHorizontally: i,
8
+ centerVertically: a,
9
+ padding: _
10
+ }, s = (n) => /* @__PURE__ */ t(
11
+ "div",
12
+ {
13
+ className: c(
14
+ e.component,
15
+ e[n.direction],
16
+ n.className,
17
+ n.centerHorizontally && e.centerHorizontally,
18
+ n.centerVertically && e.centerVertically,
19
+ n.padding && e.padding
20
+ ),
21
+ children: n.children
22
+ }
23
+ );
24
+ export {
25
+ s as default
26
+ };
@@ -0,0 +1,29 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import { c } from "../../clippy-B98VypDQ.js";
3
+ import '../../assets/heading.css';const t = "_component_13od9_10", m = "_h1component_13od9_17", h = "_h2component_13od9_22", a = "_h3component_13od9_27", s = "_h4component_13od9_32", l = "_h5component_13od9_37", _ = "_h6component_13od9_42", e = {
4
+ component: t,
5
+ h1component: m,
6
+ h2component: h,
7
+ h3component: a,
8
+ h4component: s,
9
+ h5component: l,
10
+ h6component: _
11
+ }, N = (n) => {
12
+ switch (n.level || 1) {
13
+ case 1:
14
+ return /* @__PURE__ */ o("h1", { className: c(e.component, e.h1component, n.className), children: n.text });
15
+ case 2:
16
+ return /* @__PURE__ */ o("h2", { className: c(e.component, e.h2component, n.className), children: n.text });
17
+ case 3:
18
+ return /* @__PURE__ */ o("h3", { className: c(e.component, e.h3component, n.className), children: n.text });
19
+ case 4:
20
+ return /* @__PURE__ */ o("h4", { className: c(e.component, e.h4component, n.className), children: n.text });
21
+ case 5:
22
+ return /* @__PURE__ */ o("h5", { className: c(e.component, e.h5component, n.className), children: n.text });
23
+ case 6:
24
+ return /* @__PURE__ */ o("h6", { className: c(e.component, e.h6component, n.className), children: n.text });
25
+ }
26
+ };
27
+ export {
28
+ N as default
29
+ };
@@ -0,0 +1,28 @@
1
+ import { jsx as c } from "react/jsx-runtime";
2
+ import { useState as s, useEffect as l } from "react";
3
+ import i from "../../server-error-lFyIkIwC.js";
4
+ import '../../assets/icon.css';const m = "_component_1asux_6", a = "_preserveColor_1asux_20", o = {
5
+ component: m,
6
+ preserveColor: a
7
+ }, C = (e) => {
8
+ const [r, n] = s(i);
9
+ return l(() => {
10
+ typeof e.icon == "function" && e.icon().then((t) => {
11
+ n(t.default);
12
+ });
13
+ }, [e.icon]), /* @__PURE__ */ c(
14
+ "div",
15
+ {
16
+ className: `${o.component} ${e.className} ${e.preserveColor ? o.preserveColor : ""}`,
17
+ style: {
18
+ "--icon": `url("${r}")`,
19
+ ...e.preserveColor ? {} : { "--color": e.color },
20
+ // @ts-ignore
21
+ "--size": e.size
22
+ }
23
+ }
24
+ );
25
+ };
26
+ export {
27
+ C as default
28
+ };