sep-yui 0.0.6 → 0.0.14

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 (49) hide show
  1. package/dist/assets/icons/sprite.d.ts +2 -0
  2. package/dist/common/extentions.d.ts +9 -0
  3. package/dist/common/storybook.d.ts +2 -1
  4. package/dist/components/Badges/Badges.vue.d.ts +14 -20
  5. package/dist/components/Badges/{enum.d.ts → enum/enum.d.ts} +3 -2
  6. package/dist/components/Badges/interface/interface.d.ts +8 -0
  7. package/dist/components/BreadCrumbs/BreadCrumbs.vue.d.ts +25 -0
  8. package/dist/components/BreadCrumbs/interface/interface.d.ts +15 -0
  9. package/dist/components/Button/Button.vue.d.ts +7 -7
  10. package/dist/components/Button/{interface.d.ts → interface/interface.d.ts} +2 -2
  11. package/dist/components/Colors/colors.d.ts +9 -0
  12. package/dist/components/Colors/enum/enum.d.ts +47 -0
  13. package/dist/components/Colors/interface/interface.d.ts +4 -0
  14. package/dist/components/Dropdown/Dropdown.vue.d.ts +25 -0
  15. package/dist/components/Dropdown/interface/interface.d.ts +3 -0
  16. package/dist/components/Filter/Filter.vue.d.ts +35 -0
  17. package/dist/components/Filter/interface/interface.d.ts +18 -0
  18. package/dist/components/Icon/Icon.vue.d.ts +6 -2
  19. package/dist/components/Icon/{enum.d.ts → enum/enum.d.ts} +7 -1
  20. package/dist/components/Icon/interface/interface.d.ts +9 -0
  21. package/dist/components/Search/History.vue.d.ts +17 -0
  22. package/dist/components/Search/Search.vue.d.ts +36 -0
  23. package/dist/components/Search/SearchResult.vue.d.ts +17 -0
  24. package/dist/components/Search/interface/interface.d.ts +19 -0
  25. package/dist/components/Slider/Slider.vue.d.ts +21 -0
  26. package/dist/components/Slider/interface/interface.d.ts +20 -0
  27. package/dist/components/Switch/Switch.vue.d.ts +6 -15
  28. package/dist/components/Switch/interface/interface.d.ts +8 -0
  29. package/dist/components/Table/Table.vue.d.ts +2 -0
  30. package/dist/components/Toggle/Toggle.vue.d.ts +33 -0
  31. package/dist/components/Toggle/interface/interface.d.ts +4 -0
  32. package/dist/components/UserMenu/UserMenu.vue.d.ts +31 -0
  33. package/dist/components/UserMenu/enum/enum.d.ts +7 -0
  34. package/dist/components/UserMenu/interface/interface.d.ts +17 -0
  35. package/dist/components/index.d.ts +11 -3
  36. package/dist/helpers/genarate-unic-id.d.ts +1 -0
  37. package/dist/helpers/trimText.d.ts +1 -0
  38. package/dist/main.d.ts +1 -0
  39. package/dist/sep-yui.es.ts +5110 -0
  40. package/dist/sep-yui.umd.ts +35 -0
  41. package/dist/stores/search.d.ts +12 -0
  42. package/dist/style.css +1 -1
  43. package/package.json +22 -17
  44. package/dist/components/Badges/interface.d.ts +0 -7
  45. package/dist/components/Icon/interface.d.ts +0 -9
  46. package/dist/components/Switch/interface.d.ts +0 -5
  47. package/dist/npo-sep-ui.es.ts +0 -157
  48. package/dist/npo-sep-ui.umd.ts +0 -1
  49. /package/dist/components/Button/{enum.d.ts → enum/enum.d.ts} +0 -0
@@ -1,9 +0,0 @@
1
- import { ColorsEnum } from '../../common/colors';
2
- import { IconNameEnum } from './enum';
3
-
4
- export interface IIconPorps {
5
- height?: number;
6
- width?: number;
7
- name: IconNameEnum;
8
- color: ColorsEnum;
9
- }
@@ -1,5 +0,0 @@
1
- export interface IToggleProps {
2
- disabled: boolean;
3
- lang: boolean;
4
- backgroundColor: string;
5
- }
@@ -1,157 +0,0 @@
1
- import { defineComponent as w, computed as p, openBlock as t, createElementBlock as r, normalizeClass as g, createElementVNode as m, renderSlot as u, normalizeStyle as c, createCommentVNode as a, Fragment as b, createStaticVNode as L } from "vue";
2
- var s = /* @__PURE__ */ ((e) => (e.default = "default", e.blue = "blue", e.green = "green", e.red = "red", e.orange = "orange", e))(s || {});
3
- const v = ["v-if"], D = /* @__PURE__ */ w({
4
- __name: "Badges",
5
- props: {
6
- text: {},
7
- type: { default: s.default },
8
- choosed: { type: Boolean, default: !1 }
9
- },
10
- emits: ["click"],
11
- setup(e, { emit: l }) {
12
- const o = e, i = p(() => ({
13
- base: !0,
14
- default: o.type === s.default,
15
- blue: o.type === s.blue,
16
- green: o.type === s.green,
17
- orange: o.type === s.orange,
18
- red: o.type === s.red,
19
- choosed: o.choosed
20
- }));
21
- return (n, h) => (t(), r("div", {
22
- class: g(i.value)
23
- }, [
24
- m("div", {
25
- "v-if": o.choosed === !0
26
- }, null, 8, v),
27
- m("span", null, [
28
- u(n.$slots, "left-icon"),
29
- u(n.$slots, "default"),
30
- u(n.$slots, "right-icon")
31
- ])
32
- ], 2));
33
- }
34
- });
35
- var f = /* @__PURE__ */ ((e) => (e.small = "small", e.medium = "medium", e.large = "large", e))(f || {}), d = /* @__PURE__ */ ((e) => (e.primary = "primary", e.outline = "outline", e.ghost = "ghost", e.secondary = "secondary", e))(d || {});
36
- const M = ["disabled"], I = /* @__PURE__ */ w({
37
- __name: "Button",
38
- props: {
39
- disabled: { type: Boolean, default: !1 },
40
- size: { default: f.medium },
41
- type: { default: d.primary },
42
- pill: { type: Boolean, default: !1 },
43
- backgroundColor: {},
44
- color: { default: "" }
45
- },
46
- emits: ["click"],
47
- setup(e, { emit: l }) {
48
- const o = e, i = l, n = p(() => ({
49
- button: !0,
50
- [o.size]: !0,
51
- disabled: o.disabled,
52
- pill: o.pill,
53
- primary: o.type === d.primary,
54
- secondary: o.type === d.secondary,
55
- outline: o.type === d.outline,
56
- ghost: o.type === d.ghost
57
- })), h = p(() => ({
58
- backgroundColor: o.backgroundColor
59
- })), k = p(() => ({
60
- color: o.color === "primary" || o.color === "secondary" ? "black" : o.color
61
- })), y = () => i("click", 1);
62
- return (C, S) => (t(), r("button", {
63
- class: g(n.value),
64
- disabled: o.disabled,
65
- style: c(h.value),
66
- onClick: y
67
- }, [
68
- C.$slots["left-icon"] ? (t(), r("span", {
69
- key: 0,
70
- style: c(k.value)
71
- }, [
72
- u(C.$slots, "left-icon")
73
- ], 4)) : a("", !0),
74
- u(C.$slots, "default"),
75
- C.$slots["right-icon"] ? (t(), r("span", {
76
- key: 1,
77
- style: c(k.value)
78
- }, [
79
- u(C.$slots, "right-icon")
80
- ], 4)) : a("", !0)
81
- ], 14, M));
82
- }
83
- }), x = ["width", "height"], j = ["href"], _ = /* @__PURE__ */ L('<svg width="0" height="0" class="hidden"><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="help"><path d="M11.5 19.5C15.6421 19.5 19 16.1421 19 12C19 7.85786 15.6421 4.5 11.5 4.5C7.35786 4.5 4 7.85786 4 12C4 16.1421 7.35786 19.5 11.5 19.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11.5 9V12" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11.5 15H11.508" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="notification"><path d="M11.7199 21.1649C12.2013 21.1631 12.6628 20.9711 13.0031 20.6306C13.3436 20.2901 13.5357 19.8288 13.5374 19.3474H9.90235C9.90404 19.8288 10.0962 20.2901 10.4367 20.6306C10.777 20.9711 11.2385 21.1631 11.7199 21.1649ZM18.2665 16.3565C17.8556 15.9477 17.624 15.3921 17.6225 14.8123V10.7184C17.6225 9.48322 17.2346 8.27925 16.5136 7.2764C15.7925 6.27339 14.7746 5.52242 13.6037 5.12914C13.4529 5.08036 13.3215 4.98513 13.228 4.85727C13.1344 4.72926 13.0838 4.57509 13.0832 4.4166C13.0883 4.05534 12.9532 3.70609 12.7065 3.44223C12.4598 3.17821 12.1205 3.01987 11.7597 3.00065C11.3915 2.98927 11.0346 3.12759 10.7702 3.38407C10.5058 3.64055 10.3567 3.9932 10.3568 4.36151V4.41659C10.3562 4.57507 10.3056 4.72923 10.212 4.85726C10.1185 4.98512 9.9871 5.08036 9.83632 5.12913C8.66544 5.52239 7.64754 6.27338 6.92639 7.27639C6.2054 8.27925 5.81755 9.48317 5.81755 10.7184V14.8056C5.81601 15.3854 5.58445 15.9408 5.17348 16.3496L4.6419 16.8812C4.23357 17.2917 4.00307 17.8462 4 18.4251H19.44C19.4369 17.8462 19.2064 17.2917 18.7981 16.8812L18.2665 16.3565Z" fill="currentColor"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="moonFill"><path d="M21.958 15.325C22.162 14.839 21.579 14.425 21.09 14.641C20.1126 15.07 19.0565 15.2907 17.989 15.289C13.804 15.289 10.412 11.965 10.412 7.864C10.4105 6.47934 10.8039 5.12297 11.546 3.954C11.83 3.506 11.489 2.886 10.969 3.018C6.96 4.041 4 7.613 4 11.862C4 16.909 8.175 21 13.326 21C17.226 21 20.566 18.655 21.958 15.325Z" fill="currentColor"></path><path d="M15.611 3.103C15.081 2.749 14.449 3.381 14.802 3.911L15.432 4.856C15.6876 5.23916 15.824 5.68942 15.824 6.15C15.824 6.61057 15.6876 7.06084 15.432 7.444L14.802 8.389C14.449 8.919 15.082 9.551 15.612 9.197L16.556 8.567C16.9392 8.31143 17.3894 8.17505 17.85 8.17505C18.3106 8.17505 18.7608 8.31143 19.144 8.567L20.089 9.197C20.619 9.551 21.251 8.919 20.897 8.389L20.267 7.444C20.0114 7.06084 19.8751 6.61057 19.8751 6.15C19.8751 5.68942 20.0114 5.23916 20.267 4.856L20.897 3.911C21.251 3.381 20.619 2.749 20.088 3.103L19.144 3.733C18.7608 3.98857 18.3106 4.12495 17.85 4.12495C17.3894 4.12495 16.9392 3.98857 16.556 3.733L15.611 3.103Z" fill="currentColor"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="arrowLeft"><path d="M19 12H5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12 19L5 12L12 5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="chevronDown"><path d="M8 10L12 14L16 10" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="chevronUp"><path d="M16 14L12 10L8 14" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="dark"><path d="M15.3636 16.6364C15.3636 15.6117 14.9566 14.6289 14.232 13.9044C13.5074 13.1798 12.5247 12.7727 11.5 12.7727C10.4753 12.7727 9.49257 13.1798 8.768 13.9044C8.04342 14.6289 7.63636 15.6117 7.63636 16.6364" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11.5 9.68182V4.27273" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5.48818 10.6245L6.58545 11.7218" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 16.6364H4.54545" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M18.4545 16.6364H20" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M16.4145 11.7218L17.5118 10.6245" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M20 19.7273H3" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M14.5909 6.59091L11.5 9.68182L8.40909 6.59091" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="exitBig"><path d="M18 6L6 18" stroke="#121212" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M6 6L18 18" stroke="#121212" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="exitSmall"><path d="M16 8L8 16" stroke="#121212" stroke-linecap="round" stroke-linejoin="round"></path><path d="M8 8L16 16" stroke="#121212" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="exit"><path fill-rule="evenodd" clip-rule="evenodd" d="M20.7569 12.5228L17.944 15.2781C17.1669 16.0531 16.0008 14.8906 16.7779 14.1155L17.7274 13.1721C17.9436 12.9574 17.8725 12.7834 17.5686 12.7834H8.29528C7.83503 12.7834 7.4685 12.4153 7.4685 11.9612C7.4685 11.5082 7.83866 11.1392 8.29528 11.1392H17.5686C17.8713 11.1392 17.9436 10.965 17.7274 10.7503L16.7779 9.80675C16.0008 9.03193 17.1668 7.86914 17.944 8.64416L20.753 11.3712C21.0814 11.6899 21.082 12.2044 20.7569 12.5229L20.7569 12.5228ZM15.9011 6.61737C16.2766 6.99289 16.2766 7.60188 15.9011 7.97763C15.5254 8.35315 14.9164 8.35315 14.5409 7.97763C12.3408 5.77758 8.77377 5.77758 6.57382 7.97763C4.37386 10.1777 4.37377 13.7447 6.57382 15.9447C8.77387 18.1447 12.3409 18.1447 14.5409 15.9447C14.9164 15.569 15.5254 15.569 15.9011 15.9447C16.2766 16.3202 16.2766 16.9292 15.9011 17.3049C12.9498 20.2562 8.16472 20.2562 5.21346 17.3049C2.2622 14.3536 2.26215 9.56853 5.21346 6.61727C8.16477 3.66601 12.9498 3.66596 15.9011 6.61727V6.61737Z" fill="currentColor"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="leftBigSmall"><path d="M12.5 15L10 12L12.5 9" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="leftBig"><path d="M15 18L9 12L15 6" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="light"><path d="M15.3636 16.6364C15.3636 15.6117 14.9566 14.6289 14.232 13.9044C13.5074 13.1798 12.5247 12.7727 11.5 12.7727C10.4753 12.7727 9.49257 13.1798 8.76799 13.9044C8.04342 14.6289 7.63636 15.6117 7.63636 16.6364" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11.5 4.27273V9.68182" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5.48818 10.6245L6.58545 11.7218" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 16.6364H4.54545" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M18.4545 16.6364H20" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M16.4145 11.7218L17.5118 10.6245" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M20 19.7273H3" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M8.40909 7.36364L11.5 4.27273L14.5909 7.36364" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="notificationYes"><path d="M11.7199 21.1649C12.2013 21.1631 12.6628 20.9711 13.0031 20.6306C13.3436 20.2901 13.5357 19.8288 13.5374 19.3474H9.90235C9.90404 19.8288 10.0962 20.2901 10.4367 20.6306C10.777 20.9711 11.2385 21.1631 11.7199 21.1649ZM18.2665 16.3565C17.8556 15.9477 17.624 15.3921 17.6225 14.8123V10.7184C17.6225 9.48322 17.2346 8.27925 16.5136 7.2764C15.7925 6.27339 14.7746 5.52242 13.6037 5.12914C13.4529 5.08036 13.3215 4.98513 13.228 4.85727C13.1344 4.72926 13.0838 4.57509 13.0832 4.4166C13.0883 4.05534 12.9532 3.70609 12.7065 3.44223C12.4598 3.17821 12.1205 3.01987 11.7597 3.00065C11.3915 2.98927 11.0346 3.12759 10.7702 3.38407C10.5058 3.64055 10.3567 3.9932 10.3568 4.36151V4.41659C10.3562 4.57507 10.3056 4.72923 10.212 4.85726C10.1185 4.98512 9.9871 5.08036 9.83632 5.12913C8.66544 5.52239 7.64754 6.27338 6.92639 7.27639C6.2054 8.27925 5.81755 9.48317 5.81755 10.7184V14.8056C5.81601 15.3854 5.58445 15.9408 5.17348 16.3496L4.6419 16.8812C4.23357 17.2917 4.00307 17.8462 4 18.4251H19.44C19.4369 17.8462 19.2064 17.2917 18.7981 16.8812L18.2665 16.3565Z" fill="currentColor"></path><circle cx="17" cy="7" r="4" fill="#FF344D"></circle></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="plusSmall"><path d="M12.0001 6.34315V17.6569" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M6.3432 12H17.6569" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="plus"><path d="M12.0001 6.34315V17.6569" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M6.3432 12H17.6569" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="profileIcon"><path d="M15.8498 8.84991C15.8498 6.73244 14.1173 5 11.9999 5C9.88252 5 8.15002 6.7325 8.15002 8.84991C8.15002 10.9673 9.88252 12.6998 11.9999 12.6998C14.1173 12.6998 15.8498 10.9673 15.8498 8.84991Z" fill="currentColor"></path><path d="M13.5224 13.5047C13.0325 13.6622 12.5249 13.7497 11.9999 13.7497C11.4749 13.7497 10.9674 13.6622 10.4774 13.5047C8.93745 12.9972 7.2224 13.4172 6.2075 14.6597C5.45492 15.5872 5 16.7773 5 18.0548C5 18.7724 5.5775 19.3499 6.29504 19.3499H17.705C18.4225 19.3499 19 18.7724 19 18.0548C19 16.7774 18.545 15.5873 17.7925 14.6597C16.76 13.4173 15.0624 12.9973 13.5223 13.5047H13.5224Z" fill="currentColor"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="profile"><path d="M19 19.875V18.125C19 17.1967 18.6313 16.3065 17.9749 15.6501C17.3185 14.9937 16.4283 14.625 15.5 14.625H8.5C7.57174 14.625 6.6815 14.9937 6.02513 15.6501C5.36875 16.3065 5 17.1967 5 18.125V19.875" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12 11.125C13.933 11.125 15.5 9.558 15.5 7.625C15.5 5.692 13.933 4.125 12 4.125C10.067 4.125 8.5 5.692 8.5 7.625C8.5 9.558 10.067 11.125 12 11.125Z" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="rightBig"><path d="M9 18L15 12L9 6" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="rightSmall"><path d="M11 9L13.5529 11.9551L11.1066 14.9991" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="settings"><path d="M12 14.4545C13.3556 14.4545 14.4545 13.3556 14.4545 12C14.4545 10.6444 13.3556 9.54546 12 9.54546C10.6444 9.54546 9.54544 10.6444 9.54544 12C9.54544 13.3556 10.6444 14.4545 12 14.4545Z" stroke="currentColor" stroke-width="1.63636" stroke-linecap="round" stroke-linejoin="round"></path><path d="M18.0545 14.4545C17.9456 14.7013 17.9131 14.9751 17.9613 15.2405C18.0094 15.5059 18.1359 15.7508 18.3245 15.9436L18.3736 15.9927C18.5258 16.1447 18.6465 16.3252 18.7288 16.5238C18.8112 16.7225 18.8536 16.9354 18.8536 17.1505C18.8536 17.3655 18.8112 17.5784 18.7288 17.7771C18.6465 17.9757 18.5258 18.1562 18.3736 18.3082C18.2217 18.4603 18.0412 18.581 17.8425 18.6634C17.6439 18.7457 17.431 18.7881 17.2159 18.7881C17.0009 18.7881 16.7879 18.7457 16.5893 18.6634C16.3906 18.581 16.2102 18.4603 16.0582 18.3082L16.0091 18.2591C15.8163 18.0705 15.5714 17.9439 15.3059 17.8958C15.0405 17.8477 14.7668 17.8802 14.52 17.9891C14.278 18.0928 14.0716 18.265 13.9263 18.4845C13.7809 18.704 13.7029 18.9613 13.7018 19.2245V19.3636C13.7018 19.7976 13.5294 20.2138 13.2225 20.5207C12.9157 20.8276 12.4994 21 12.0655 21C11.6315 21 11.2152 20.8276 10.9084 20.5207C10.6015 20.2138 10.4291 19.7976 10.4291 19.3636V19.29C10.4228 19.0192 10.3351 18.7565 10.1775 18.5362C10.0199 18.3159 9.79969 18.1481 9.54545 18.0545C9.29868 17.9456 9.02493 17.9131 8.75952 17.9613C8.4941 18.0094 8.24919 18.1359 8.05636 18.3245L8.00727 18.3736C7.8553 18.5258 7.67483 18.6465 7.47617 18.7288C7.27752 18.8112 7.06459 18.8536 6.84955 18.8536C6.6345 18.8536 6.42157 18.8112 6.22292 18.7288C6.02426 18.6465 5.84379 18.5258 5.69182 18.3736C5.53967 18.2217 5.41898 18.0412 5.33663 17.8425C5.25428 17.6439 5.21189 17.431 5.21189 17.2159C5.21189 17.0009 5.25428 16.7879 5.33663 16.5893C5.41898 16.3906 5.53967 16.2102 5.69182 16.0582L5.74091 16.0091C5.92953 15.8163 6.05606 15.5714 6.10419 15.3059C6.15231 15.0405 6.11982 14.7668 6.01091 14.52C5.90719 14.278 5.73498 14.0716 5.51547 13.9263C5.29596 13.7809 5.03873 13.7029 4.77545 13.7018H4.63636C4.20237 13.7018 3.78616 13.5294 3.47928 13.2225C3.1724 12.9157 3 12.4994 3 12.0655C3 11.6315 3.1724 11.2152 3.47928 10.9084C3.78616 10.6015 4.20237 10.4291 4.63636 10.4291H4.71C4.98081 10.4228 5.24346 10.3351 5.46379 10.1775C5.68412 10.0199 5.85195 9.79969 5.94545 9.54545C6.05437 9.29868 6.08686 9.02493 6.03873 8.75952C5.99061 8.4941 5.86408 8.24919 5.67545 8.05636L5.62636 8.00727C5.47422 7.8553 5.35352 7.67483 5.27118 7.47617C5.18883 7.27752 5.14644 7.06459 5.14644 6.84955C5.14644 6.6345 5.18883 6.42157 5.27118 6.22292C5.35352 6.02426 5.47422 5.84379 5.62636 5.69182C5.77834 5.53967 5.95881 5.41898 6.15746 5.33663C6.35611 5.25428 6.56905 5.21189 6.78409 5.21189C6.99913 5.21189 7.21207 5.25428 7.41072 5.33663C7.60937 5.41898 7.78984 5.53967 7.94182 5.69182L7.99091 5.74091C8.18374 5.92953 8.42865 6.05606 8.69406 6.10419C8.95948 6.15231 9.23322 6.11982 9.48 6.01091H9.54545C9.78745 5.90719 9.99383 5.73498 10.1392 5.51547C10.2846 5.29596 10.3626 5.03873 10.3636 4.77545V4.63636C10.3636 4.20237 10.536 3.78616 10.8429 3.47928C11.1498 3.1724 11.566 3 12 3C12.434 3 12.8502 3.1724 13.1571 3.47928C13.464 3.78616 13.6364 4.20237 13.6364 4.63636V4.71C13.6374 4.97328 13.7154 5.23051 13.8608 5.45002C14.0062 5.66953 14.2126 5.84174 14.4545 5.94545C14.7013 6.05437 14.9751 6.08686 15.2405 6.03873C15.5059 5.99061 15.7508 5.86408 15.9436 5.67545L15.9927 5.62636C16.1447 5.47422 16.3252 5.35352 16.5238 5.27118C16.7225 5.18883 16.9354 5.14644 17.1505 5.14644C17.3655 5.14644 17.5784 5.18883 17.7771 5.27118C17.9757 5.35352 18.1562 5.47422 18.3082 5.62636C18.4603 5.77834 18.581 5.95881 18.6634 6.15746C18.7457 6.35611 18.7881 6.56905 18.7881 6.78409C18.7881 6.99913 18.7457 7.21207 18.6634 7.41072C18.581 7.60937 18.4603 7.78984 18.3082 7.94182L18.2591 7.99091C18.0705 8.18374 17.9439 8.42865 17.8958 8.69406C17.8477 8.95948 17.8802 9.23322 17.9891 9.48V9.54545C18.0928 9.78745 18.265 9.99383 18.4845 10.1392C18.704 10.2846 18.9613 10.3626 19.2245 10.3636H19.3636C19.7976 10.3636 20.2138 10.536 20.5207 10.8429C20.8276 11.1498 21 11.566 21 12C21 12.434 20.8276 12.8502 20.5207 13.1571C20.2138 13.464 19.7976 13.6364 19.3636 13.6364H19.29C19.0267 13.6374 18.7695 13.7154 18.55 13.8608C18.3305 14.0062 18.1583 14.2126 18.0545 14.4545Z" stroke="currentColor" stroke-width="1.63636" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="settingsDark"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.6242 4H10.9557C10.7047 4.00516 10.4623 4.09264 10.2657 4.24896C10.0693 4.4054 9.92973 4.62203 9.86844 4.86559L9.74211 5.34388C9.6845 5.56196 9.5284 5.74052 9.31996 5.82676C9.11165 5.91312 8.87494 5.89706 8.68008 5.78353L8.25268 5.53479C8.03179 5.40284 7.77284 5.34905 7.51758 5.38218C7.26244 5.41519 7.02572 5.53333 6.84582 5.71727L5.71744 6.84576H5.71755C5.53361 7.02577 5.41569 7.26238 5.38258 7.51752C5.34946 7.77267 5.40324 8.03152 5.53508 8.25239L5.78314 8.67968C5.89668 8.87452 5.91274 9.11125 5.82649 9.31968C5.74013 9.52799 5.56147 9.68421 5.34337 9.7417L4.86566 9.86838C4.61613 9.93137 4.39514 10.0764 4.23814 10.2802C4.08114 10.484 3.99726 10.7347 4.00007 10.992V12.5882C3.99726 12.8454 4.08115 13.0961 4.23814 13.3C4.39513 13.5038 4.61612 13.6488 4.86566 13.7118L5.34418 13.838C5.56226 13.8954 5.74094 14.0515 5.8273 14.2598C5.91354 14.4683 5.89748 14.705 5.78384 14.8998L5.53521 15.3272C5.40337 15.5482 5.34958 15.8071 5.38271 16.0623C5.41583 16.3175 5.53375 16.5541 5.71768 16.7341L6.84606 17.8626C7.02596 18.0465 7.26257 18.1646 7.51783 18.1977C7.77297 18.2308 8.03193 18.1771 8.25281 18.0452L8.68021 17.7961C8.87516 17.6827 9.1119 17.6667 9.32021 17.7531C9.52864 17.8394 9.68474 18.0181 9.74235 18.2362L9.86846 18.7143C9.93146 18.9638 10.0764 19.1848 10.2803 19.3418C10.4841 19.4988 10.7348 19.5827 10.9921 19.5799H12.5879C12.8452 19.5827 13.0959 19.4989 13.2998 19.3419C13.5036 19.1848 13.6487 18.9638 13.7116 18.7143L13.8379 18.236C13.8955 18.0179 14.0516 17.8392 14.2599 17.753C14.4682 17.6666 14.7049 17.6824 14.8999 17.796L15.3275 18.0449V18.0448C15.5484 18.1769 15.8074 18.2307 16.0625 18.1976C16.3178 18.1644 16.5544 18.0464 16.7343 17.8624L17.8624 16.7339C18.0464 16.554 18.1645 16.3174 18.1976 16.0622C18.2308 15.8071 18.177 15.5481 18.0451 15.3272L17.7969 14.8997C17.6833 14.7048 17.6673 14.468 17.7535 14.2597C17.8399 14.0513 18.0185 13.8952 18.2366 13.8376L18.7143 13.7115C18.9639 13.6485 19.1849 13.5034 19.3419 13.2996C19.4989 13.0957 19.5827 12.8451 19.5799 12.5878V10.9917C19.5827 10.7344 19.499 10.4836 19.342 10.2798C19.1849 10.076 18.9639 9.9309 18.7143 9.86802L18.2357 9.74169C18.0176 9.68419 17.839 9.5281 17.7527 9.31978C17.6664 9.11135 17.6824 8.87464 17.7961 8.67978L18.0448 8.25215V8.25226C18.1767 8.03125 18.2303 7.77242 18.1972 7.51728C18.1641 7.26213 18.0461 7.02553 17.8621 6.84563L16.734 5.71713V5.71702C16.5541 5.53308 16.3173 5.41505 16.0621 5.38205C15.8069 5.34892 15.548 5.40271 15.327 5.53466L14.8999 5.78306C14.7051 5.89648 14.4685 5.91243 14.2602 5.82619C14.0517 5.74005 13.8956 5.5615 13.8379 5.34353L13.7116 4.86559C13.6504 4.62201 13.5108 4.40527 13.3143 4.24885C13.1179 4.09253 12.8753 4.00504 12.6243 3.99999L12.6242 4ZM11.79 14.5225C11.0652 14.5225 10.37 14.2346 9.85752 13.722C9.34499 13.2094 9.05705 12.5142 9.05705 11.7895C9.05716 11.0646 9.34511 10.3696 9.85763 9.85703C10.3702 9.3445 11.0654 9.05667 11.7902 9.05667C12.515 9.05679 13.2101 9.34473 13.7226 9.85738C14.235 10.3699 14.523 11.0652 14.5229 11.7899C14.5222 12.5145 14.234 13.2092 13.7216 13.7215C13.2092 14.2338 12.5145 14.5218 11.79 14.5225H11.79ZM11.79 8.61728V8.61717C12.6314 8.61717 13.4384 8.95137 14.0333 9.54632C14.6283 10.1413 14.9626 10.9482 14.9627 11.7896C14.9627 12.6311 14.6285 13.438 14.0336 14.033C13.4386 14.6279 12.6317 14.9622 11.7903 14.9624C10.9488 14.9624 10.1419 14.6282 9.54692 14.0332C8.95197 13.4383 8.61765 12.6314 8.61754 11.7899C8.61855 10.9488 8.95298 10.1424 9.5477 9.54756C10.1424 8.95281 10.9488 8.61818 11.79 8.61717V8.61728Z" fill="currentColor"></path></symbol></svg>', 1), N = /* @__PURE__ */ w({
84
- __name: "Icon",
85
- props: {
86
- height: { default: 24 },
87
- width: { default: 24 },
88
- name: {},
89
- color: {}
90
- },
91
- setup(e) {
92
- const l = e;
93
- return (o, i) => (t(), r(b, null, [
94
- (t(), r("svg", {
95
- class: "icon",
96
- width: l.width,
97
- height: l.height,
98
- style: c(l.color)
99
- }, [
100
- m("use", {
101
- href: `#${l.name}`
102
- }, null, 8, j)
103
- ], 12, x)),
104
- _
105
- ], 64));
106
- }
107
- }), B = ["disabled"], V = {
108
- key: 0,
109
- class: "toggle-input",
110
- id: "toggle",
111
- type: "checkbox"
112
- }, H = {
113
- key: 1,
114
- class: "toggle-label",
115
- for: "toggle"
116
- }, Z = {
117
- key: 2,
118
- class: "toggle-input-lang",
119
- id: "toggle",
120
- type: "checkbox"
121
- }, $ = {
122
- key: 3,
123
- class: "toggle-label-lang",
124
- for: "toggle"
125
- }, z = /* @__PURE__ */ w({
126
- __name: "Switch",
127
- props: {
128
- disabled: { type: Boolean, default: !1 },
129
- lang: { type: Boolean, default: !1 },
130
- backgroundColor: {}
131
- },
132
- emits: ["click"],
133
- setup(e, { emit: l }) {
134
- const o = e, i = l, n = p(() => ({
135
- toggle: !0
136
- })), h = p(() => ({
137
- backgroundColor: o.backgroundColor
138
- })), k = () => i("click", 1);
139
- return (y, C) => (t(), r("div", {
140
- class: g(n.value),
141
- disabled: o.disabled,
142
- style: c(h.value),
143
- onClick: k
144
- }, [
145
- o.lang ? a("", !0) : (t(), r("input", V)),
146
- o.lang ? a("", !0) : (t(), r("label", H)),
147
- o.lang ? (t(), r("input", Z)) : a("", !0),
148
- o.lang ? (t(), r("label", $, "222")) : a("", !0)
149
- ], 14, B));
150
- }
151
- });
152
- export {
153
- D as Badges,
154
- I as Button,
155
- N as Icon,
156
- z as Switch
157
- };
@@ -1 +0,0 @@
1
- (function(r,o){typeof exports=="object"&&typeof module<"u"?o(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],o):(r=typeof globalThis<"u"?globalThis:r||self,o(r["npo-sep-ui"]={},r.Vue))})(this,function(r,o){"use strict";var l=(t=>(t.default="default",t.blue="blue",t.green="green",t.red="red",t.orange="orange",t))(l||{});const k=["v-if"],u=o.defineComponent({__name:"Badges",props:{text:{},type:{default:l.default},choosed:{type:Boolean,default:!1}},emits:["click"],setup(t,{emit:n}){const e=t,C=o.computed(()=>({base:!0,default:e.type===l.default,blue:e.type===l.blue,green:e.type===l.green,orange:e.type===l.orange,red:e.type===l.red,choosed:e.choosed}));return(s,a)=>(o.openBlock(),o.createElementBlock("div",{class:o.normalizeClass(C.value)},[o.createElementVNode("div",{"v-if":e.choosed===!0},null,8,k),o.createElementVNode("span",null,[o.renderSlot(s.$slots,"left-icon"),o.renderSlot(s.$slots,"default"),o.renderSlot(s.$slots,"right-icon")])],2))}});var p=(t=>(t.small="small",t.medium="medium",t.large="large",t))(p||{}),i=(t=>(t.primary="primary",t.outline="outline",t.ghost="ghost",t.secondary="secondary",t))(i||{});const m=["disabled"],w=o.defineComponent({__name:"Button",props:{disabled:{type:Boolean,default:!1},size:{default:p.medium},type:{default:i.primary},pill:{type:Boolean,default:!1},backgroundColor:{},color:{default:""}},emits:["click"],setup(t,{emit:n}){const e=t,C=n,s=o.computed(()=>({button:!0,[e.size]:!0,disabled:e.disabled,pill:e.pill,primary:e.type===i.primary,secondary:e.type===i.secondary,outline:e.type===i.outline,ghost:e.type===i.ghost})),a=o.computed(()=>({backgroundColor:e.backgroundColor})),c=o.computed(()=>({color:e.color==="primary"||e.color==="secondary"?"black":e.color})),h=()=>C("click",1);return(d,V)=>(o.openBlock(),o.createElementBlock("button",{class:o.normalizeClass(s.value),disabled:e.disabled,style:o.normalizeStyle(a.value),onClick:h},[d.$slots["left-icon"]?(o.openBlock(),o.createElementBlock("span",{key:0,style:o.normalizeStyle(c.value)},[o.renderSlot(d.$slots,"left-icon")],4)):o.createCommentVNode("",!0),o.renderSlot(d.$slots,"default"),d.$slots["right-icon"]?(o.openBlock(),o.createElementBlock("span",{key:1,style:o.normalizeStyle(c.value)},[o.renderSlot(d.$slots,"right-icon")],4)):o.createCommentVNode("",!0)],14,m))}}),g=["width","height"],f=["href"],y=o.createStaticVNode('<svg width="0" height="0" class="hidden"><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="help"><path d="M11.5 19.5C15.6421 19.5 19 16.1421 19 12C19 7.85786 15.6421 4.5 11.5 4.5C7.35786 4.5 4 7.85786 4 12C4 16.1421 7.35786 19.5 11.5 19.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11.5 9V12" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11.5 15H11.508" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="notification"><path d="M11.7199 21.1649C12.2013 21.1631 12.6628 20.9711 13.0031 20.6306C13.3436 20.2901 13.5357 19.8288 13.5374 19.3474H9.90235C9.90404 19.8288 10.0962 20.2901 10.4367 20.6306C10.777 20.9711 11.2385 21.1631 11.7199 21.1649ZM18.2665 16.3565C17.8556 15.9477 17.624 15.3921 17.6225 14.8123V10.7184C17.6225 9.48322 17.2346 8.27925 16.5136 7.2764C15.7925 6.27339 14.7746 5.52242 13.6037 5.12914C13.4529 5.08036 13.3215 4.98513 13.228 4.85727C13.1344 4.72926 13.0838 4.57509 13.0832 4.4166C13.0883 4.05534 12.9532 3.70609 12.7065 3.44223C12.4598 3.17821 12.1205 3.01987 11.7597 3.00065C11.3915 2.98927 11.0346 3.12759 10.7702 3.38407C10.5058 3.64055 10.3567 3.9932 10.3568 4.36151V4.41659C10.3562 4.57507 10.3056 4.72923 10.212 4.85726C10.1185 4.98512 9.9871 5.08036 9.83632 5.12913C8.66544 5.52239 7.64754 6.27338 6.92639 7.27639C6.2054 8.27925 5.81755 9.48317 5.81755 10.7184V14.8056C5.81601 15.3854 5.58445 15.9408 5.17348 16.3496L4.6419 16.8812C4.23357 17.2917 4.00307 17.8462 4 18.4251H19.44C19.4369 17.8462 19.2064 17.2917 18.7981 16.8812L18.2665 16.3565Z" fill="currentColor"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="moonFill"><path d="M21.958 15.325C22.162 14.839 21.579 14.425 21.09 14.641C20.1126 15.07 19.0565 15.2907 17.989 15.289C13.804 15.289 10.412 11.965 10.412 7.864C10.4105 6.47934 10.8039 5.12297 11.546 3.954C11.83 3.506 11.489 2.886 10.969 3.018C6.96 4.041 4 7.613 4 11.862C4 16.909 8.175 21 13.326 21C17.226 21 20.566 18.655 21.958 15.325Z" fill="currentColor"></path><path d="M15.611 3.103C15.081 2.749 14.449 3.381 14.802 3.911L15.432 4.856C15.6876 5.23916 15.824 5.68942 15.824 6.15C15.824 6.61057 15.6876 7.06084 15.432 7.444L14.802 8.389C14.449 8.919 15.082 9.551 15.612 9.197L16.556 8.567C16.9392 8.31143 17.3894 8.17505 17.85 8.17505C18.3106 8.17505 18.7608 8.31143 19.144 8.567L20.089 9.197C20.619 9.551 21.251 8.919 20.897 8.389L20.267 7.444C20.0114 7.06084 19.8751 6.61057 19.8751 6.15C19.8751 5.68942 20.0114 5.23916 20.267 4.856L20.897 3.911C21.251 3.381 20.619 2.749 20.088 3.103L19.144 3.733C18.7608 3.98857 18.3106 4.12495 17.85 4.12495C17.3894 4.12495 16.9392 3.98857 16.556 3.733L15.611 3.103Z" fill="currentColor"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="arrowLeft"><path d="M19 12H5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12 19L5 12L12 5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="chevronDown"><path d="M8 10L12 14L16 10" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="chevronUp"><path d="M16 14L12 10L8 14" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="dark"><path d="M15.3636 16.6364C15.3636 15.6117 14.9566 14.6289 14.232 13.9044C13.5074 13.1798 12.5247 12.7727 11.5 12.7727C10.4753 12.7727 9.49257 13.1798 8.768 13.9044C8.04342 14.6289 7.63636 15.6117 7.63636 16.6364" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11.5 9.68182V4.27273" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5.48818 10.6245L6.58545 11.7218" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 16.6364H4.54545" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M18.4545 16.6364H20" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M16.4145 11.7218L17.5118 10.6245" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M20 19.7273H3" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M14.5909 6.59091L11.5 9.68182L8.40909 6.59091" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="exitBig"><path d="M18 6L6 18" stroke="#121212" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M6 6L18 18" stroke="#121212" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="exitSmall"><path d="M16 8L8 16" stroke="#121212" stroke-linecap="round" stroke-linejoin="round"></path><path d="M8 8L16 16" stroke="#121212" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="exit"><path fill-rule="evenodd" clip-rule="evenodd" d="M20.7569 12.5228L17.944 15.2781C17.1669 16.0531 16.0008 14.8906 16.7779 14.1155L17.7274 13.1721C17.9436 12.9574 17.8725 12.7834 17.5686 12.7834H8.29528C7.83503 12.7834 7.4685 12.4153 7.4685 11.9612C7.4685 11.5082 7.83866 11.1392 8.29528 11.1392H17.5686C17.8713 11.1392 17.9436 10.965 17.7274 10.7503L16.7779 9.80675C16.0008 9.03193 17.1668 7.86914 17.944 8.64416L20.753 11.3712C21.0814 11.6899 21.082 12.2044 20.7569 12.5229L20.7569 12.5228ZM15.9011 6.61737C16.2766 6.99289 16.2766 7.60188 15.9011 7.97763C15.5254 8.35315 14.9164 8.35315 14.5409 7.97763C12.3408 5.77758 8.77377 5.77758 6.57382 7.97763C4.37386 10.1777 4.37377 13.7447 6.57382 15.9447C8.77387 18.1447 12.3409 18.1447 14.5409 15.9447C14.9164 15.569 15.5254 15.569 15.9011 15.9447C16.2766 16.3202 16.2766 16.9292 15.9011 17.3049C12.9498 20.2562 8.16472 20.2562 5.21346 17.3049C2.2622 14.3536 2.26215 9.56853 5.21346 6.61727C8.16477 3.66601 12.9498 3.66596 15.9011 6.61727V6.61737Z" fill="currentColor"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="leftBigSmall"><path d="M12.5 15L10 12L12.5 9" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="leftBig"><path d="M15 18L9 12L15 6" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="light"><path d="M15.3636 16.6364C15.3636 15.6117 14.9566 14.6289 14.232 13.9044C13.5074 13.1798 12.5247 12.7727 11.5 12.7727C10.4753 12.7727 9.49257 13.1798 8.76799 13.9044C8.04342 14.6289 7.63636 15.6117 7.63636 16.6364" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11.5 4.27273V9.68182" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5.48818 10.6245L6.58545 11.7218" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 16.6364H4.54545" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M18.4545 16.6364H20" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M16.4145 11.7218L17.5118 10.6245" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M20 19.7273H3" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path><path d="M8.40909 7.36364L11.5 4.27273L14.5909 7.36364" stroke="currentColor" stroke-width="1.54545" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="notificationYes"><path d="M11.7199 21.1649C12.2013 21.1631 12.6628 20.9711 13.0031 20.6306C13.3436 20.2901 13.5357 19.8288 13.5374 19.3474H9.90235C9.90404 19.8288 10.0962 20.2901 10.4367 20.6306C10.777 20.9711 11.2385 21.1631 11.7199 21.1649ZM18.2665 16.3565C17.8556 15.9477 17.624 15.3921 17.6225 14.8123V10.7184C17.6225 9.48322 17.2346 8.27925 16.5136 7.2764C15.7925 6.27339 14.7746 5.52242 13.6037 5.12914C13.4529 5.08036 13.3215 4.98513 13.228 4.85727C13.1344 4.72926 13.0838 4.57509 13.0832 4.4166C13.0883 4.05534 12.9532 3.70609 12.7065 3.44223C12.4598 3.17821 12.1205 3.01987 11.7597 3.00065C11.3915 2.98927 11.0346 3.12759 10.7702 3.38407C10.5058 3.64055 10.3567 3.9932 10.3568 4.36151V4.41659C10.3562 4.57507 10.3056 4.72923 10.212 4.85726C10.1185 4.98512 9.9871 5.08036 9.83632 5.12913C8.66544 5.52239 7.64754 6.27338 6.92639 7.27639C6.2054 8.27925 5.81755 9.48317 5.81755 10.7184V14.8056C5.81601 15.3854 5.58445 15.9408 5.17348 16.3496L4.6419 16.8812C4.23357 17.2917 4.00307 17.8462 4 18.4251H19.44C19.4369 17.8462 19.2064 17.2917 18.7981 16.8812L18.2665 16.3565Z" fill="currentColor"></path><circle cx="17" cy="7" r="4" fill="#FF344D"></circle></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="plusSmall"><path d="M12.0001 6.34315V17.6569" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M6.3432 12H17.6569" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="plus"><path d="M12.0001 6.34315V17.6569" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M6.3432 12H17.6569" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="profileIcon"><path d="M15.8498 8.84991C15.8498 6.73244 14.1173 5 11.9999 5C9.88252 5 8.15002 6.7325 8.15002 8.84991C8.15002 10.9673 9.88252 12.6998 11.9999 12.6998C14.1173 12.6998 15.8498 10.9673 15.8498 8.84991Z" fill="currentColor"></path><path d="M13.5224 13.5047C13.0325 13.6622 12.5249 13.7497 11.9999 13.7497C11.4749 13.7497 10.9674 13.6622 10.4774 13.5047C8.93745 12.9972 7.2224 13.4172 6.2075 14.6597C5.45492 15.5872 5 16.7773 5 18.0548C5 18.7724 5.5775 19.3499 6.29504 19.3499H17.705C18.4225 19.3499 19 18.7724 19 18.0548C19 16.7774 18.545 15.5873 17.7925 14.6597C16.76 13.4173 15.0624 12.9973 13.5223 13.5047H13.5224Z" fill="currentColor"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="profile"><path d="M19 19.875V18.125C19 17.1967 18.6313 16.3065 17.9749 15.6501C17.3185 14.9937 16.4283 14.625 15.5 14.625H8.5C7.57174 14.625 6.6815 14.9937 6.02513 15.6501C5.36875 16.3065 5 17.1967 5 18.125V19.875" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12 11.125C13.933 11.125 15.5 9.558 15.5 7.625C15.5 5.692 13.933 4.125 12 4.125C10.067 4.125 8.5 5.692 8.5 7.625C8.5 9.558 10.067 11.125 12 11.125Z" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="rightBig"><path d="M9 18L15 12L9 6" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="rightSmall"><path d="M11 9L13.5529 11.9551L11.1066 14.9991" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="settings"><path d="M12 14.4545C13.3556 14.4545 14.4545 13.3556 14.4545 12C14.4545 10.6444 13.3556 9.54546 12 9.54546C10.6444 9.54546 9.54544 10.6444 9.54544 12C9.54544 13.3556 10.6444 14.4545 12 14.4545Z" stroke="currentColor" stroke-width="1.63636" stroke-linecap="round" stroke-linejoin="round"></path><path d="M18.0545 14.4545C17.9456 14.7013 17.9131 14.9751 17.9613 15.2405C18.0094 15.5059 18.1359 15.7508 18.3245 15.9436L18.3736 15.9927C18.5258 16.1447 18.6465 16.3252 18.7288 16.5238C18.8112 16.7225 18.8536 16.9354 18.8536 17.1505C18.8536 17.3655 18.8112 17.5784 18.7288 17.7771C18.6465 17.9757 18.5258 18.1562 18.3736 18.3082C18.2217 18.4603 18.0412 18.581 17.8425 18.6634C17.6439 18.7457 17.431 18.7881 17.2159 18.7881C17.0009 18.7881 16.7879 18.7457 16.5893 18.6634C16.3906 18.581 16.2102 18.4603 16.0582 18.3082L16.0091 18.2591C15.8163 18.0705 15.5714 17.9439 15.3059 17.8958C15.0405 17.8477 14.7668 17.8802 14.52 17.9891C14.278 18.0928 14.0716 18.265 13.9263 18.4845C13.7809 18.704 13.7029 18.9613 13.7018 19.2245V19.3636C13.7018 19.7976 13.5294 20.2138 13.2225 20.5207C12.9157 20.8276 12.4994 21 12.0655 21C11.6315 21 11.2152 20.8276 10.9084 20.5207C10.6015 20.2138 10.4291 19.7976 10.4291 19.3636V19.29C10.4228 19.0192 10.3351 18.7565 10.1775 18.5362C10.0199 18.3159 9.79969 18.1481 9.54545 18.0545C9.29868 17.9456 9.02493 17.9131 8.75952 17.9613C8.4941 18.0094 8.24919 18.1359 8.05636 18.3245L8.00727 18.3736C7.8553 18.5258 7.67483 18.6465 7.47617 18.7288C7.27752 18.8112 7.06459 18.8536 6.84955 18.8536C6.6345 18.8536 6.42157 18.8112 6.22292 18.7288C6.02426 18.6465 5.84379 18.5258 5.69182 18.3736C5.53967 18.2217 5.41898 18.0412 5.33663 17.8425C5.25428 17.6439 5.21189 17.431 5.21189 17.2159C5.21189 17.0009 5.25428 16.7879 5.33663 16.5893C5.41898 16.3906 5.53967 16.2102 5.69182 16.0582L5.74091 16.0091C5.92953 15.8163 6.05606 15.5714 6.10419 15.3059C6.15231 15.0405 6.11982 14.7668 6.01091 14.52C5.90719 14.278 5.73498 14.0716 5.51547 13.9263C5.29596 13.7809 5.03873 13.7029 4.77545 13.7018H4.63636C4.20237 13.7018 3.78616 13.5294 3.47928 13.2225C3.1724 12.9157 3 12.4994 3 12.0655C3 11.6315 3.1724 11.2152 3.47928 10.9084C3.78616 10.6015 4.20237 10.4291 4.63636 10.4291H4.71C4.98081 10.4228 5.24346 10.3351 5.46379 10.1775C5.68412 10.0199 5.85195 9.79969 5.94545 9.54545C6.05437 9.29868 6.08686 9.02493 6.03873 8.75952C5.99061 8.4941 5.86408 8.24919 5.67545 8.05636L5.62636 8.00727C5.47422 7.8553 5.35352 7.67483 5.27118 7.47617C5.18883 7.27752 5.14644 7.06459 5.14644 6.84955C5.14644 6.6345 5.18883 6.42157 5.27118 6.22292C5.35352 6.02426 5.47422 5.84379 5.62636 5.69182C5.77834 5.53967 5.95881 5.41898 6.15746 5.33663C6.35611 5.25428 6.56905 5.21189 6.78409 5.21189C6.99913 5.21189 7.21207 5.25428 7.41072 5.33663C7.60937 5.41898 7.78984 5.53967 7.94182 5.69182L7.99091 5.74091C8.18374 5.92953 8.42865 6.05606 8.69406 6.10419C8.95948 6.15231 9.23322 6.11982 9.48 6.01091H9.54545C9.78745 5.90719 9.99383 5.73498 10.1392 5.51547C10.2846 5.29596 10.3626 5.03873 10.3636 4.77545V4.63636C10.3636 4.20237 10.536 3.78616 10.8429 3.47928C11.1498 3.1724 11.566 3 12 3C12.434 3 12.8502 3.1724 13.1571 3.47928C13.464 3.78616 13.6364 4.20237 13.6364 4.63636V4.71C13.6374 4.97328 13.7154 5.23051 13.8608 5.45002C14.0062 5.66953 14.2126 5.84174 14.4545 5.94545C14.7013 6.05437 14.9751 6.08686 15.2405 6.03873C15.5059 5.99061 15.7508 5.86408 15.9436 5.67545L15.9927 5.62636C16.1447 5.47422 16.3252 5.35352 16.5238 5.27118C16.7225 5.18883 16.9354 5.14644 17.1505 5.14644C17.3655 5.14644 17.5784 5.18883 17.7771 5.27118C17.9757 5.35352 18.1562 5.47422 18.3082 5.62636C18.4603 5.77834 18.581 5.95881 18.6634 6.15746C18.7457 6.35611 18.7881 6.56905 18.7881 6.78409C18.7881 6.99913 18.7457 7.21207 18.6634 7.41072C18.581 7.60937 18.4603 7.78984 18.3082 7.94182L18.2591 7.99091C18.0705 8.18374 17.9439 8.42865 17.8958 8.69406C17.8477 8.95948 17.8802 9.23322 17.9891 9.48V9.54545C18.0928 9.78745 18.265 9.99383 18.4845 10.1392C18.704 10.2846 18.9613 10.3626 19.2245 10.3636H19.3636C19.7976 10.3636 20.2138 10.536 20.5207 10.8429C20.8276 11.1498 21 11.566 21 12C21 12.434 20.8276 12.8502 20.5207 13.1571C20.2138 13.464 19.7976 13.6364 19.3636 13.6364H19.29C19.0267 13.6374 18.7695 13.7154 18.55 13.8608C18.3305 14.0062 18.1583 14.2126 18.0545 14.4545Z" stroke="currentColor" stroke-width="1.63636" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="settingsDark"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.6242 4H10.9557C10.7047 4.00516 10.4623 4.09264 10.2657 4.24896C10.0693 4.4054 9.92973 4.62203 9.86844 4.86559L9.74211 5.34388C9.6845 5.56196 9.5284 5.74052 9.31996 5.82676C9.11165 5.91312 8.87494 5.89706 8.68008 5.78353L8.25268 5.53479C8.03179 5.40284 7.77284 5.34905 7.51758 5.38218C7.26244 5.41519 7.02572 5.53333 6.84582 5.71727L5.71744 6.84576H5.71755C5.53361 7.02577 5.41569 7.26238 5.38258 7.51752C5.34946 7.77267 5.40324 8.03152 5.53508 8.25239L5.78314 8.67968C5.89668 8.87452 5.91274 9.11125 5.82649 9.31968C5.74013 9.52799 5.56147 9.68421 5.34337 9.7417L4.86566 9.86838C4.61613 9.93137 4.39514 10.0764 4.23814 10.2802C4.08114 10.484 3.99726 10.7347 4.00007 10.992V12.5882C3.99726 12.8454 4.08115 13.0961 4.23814 13.3C4.39513 13.5038 4.61612 13.6488 4.86566 13.7118L5.34418 13.838C5.56226 13.8954 5.74094 14.0515 5.8273 14.2598C5.91354 14.4683 5.89748 14.705 5.78384 14.8998L5.53521 15.3272C5.40337 15.5482 5.34958 15.8071 5.38271 16.0623C5.41583 16.3175 5.53375 16.5541 5.71768 16.7341L6.84606 17.8626C7.02596 18.0465 7.26257 18.1646 7.51783 18.1977C7.77297 18.2308 8.03193 18.1771 8.25281 18.0452L8.68021 17.7961C8.87516 17.6827 9.1119 17.6667 9.32021 17.7531C9.52864 17.8394 9.68474 18.0181 9.74235 18.2362L9.86846 18.7143C9.93146 18.9638 10.0764 19.1848 10.2803 19.3418C10.4841 19.4988 10.7348 19.5827 10.9921 19.5799H12.5879C12.8452 19.5827 13.0959 19.4989 13.2998 19.3419C13.5036 19.1848 13.6487 18.9638 13.7116 18.7143L13.8379 18.236C13.8955 18.0179 14.0516 17.8392 14.2599 17.753C14.4682 17.6666 14.7049 17.6824 14.8999 17.796L15.3275 18.0449V18.0448C15.5484 18.1769 15.8074 18.2307 16.0625 18.1976C16.3178 18.1644 16.5544 18.0464 16.7343 17.8624L17.8624 16.7339C18.0464 16.554 18.1645 16.3174 18.1976 16.0622C18.2308 15.8071 18.177 15.5481 18.0451 15.3272L17.7969 14.8997C17.6833 14.7048 17.6673 14.468 17.7535 14.2597C17.8399 14.0513 18.0185 13.8952 18.2366 13.8376L18.7143 13.7115C18.9639 13.6485 19.1849 13.5034 19.3419 13.2996C19.4989 13.0957 19.5827 12.8451 19.5799 12.5878V10.9917C19.5827 10.7344 19.499 10.4836 19.342 10.2798C19.1849 10.076 18.9639 9.9309 18.7143 9.86802L18.2357 9.74169C18.0176 9.68419 17.839 9.5281 17.7527 9.31978C17.6664 9.11135 17.6824 8.87464 17.7961 8.67978L18.0448 8.25215V8.25226C18.1767 8.03125 18.2303 7.77242 18.1972 7.51728C18.1641 7.26213 18.0461 7.02553 17.8621 6.84563L16.734 5.71713V5.71702C16.5541 5.53308 16.3173 5.41505 16.0621 5.38205C15.8069 5.34892 15.548 5.40271 15.327 5.53466L14.8999 5.78306C14.7051 5.89648 14.4685 5.91243 14.2602 5.82619C14.0517 5.74005 13.8956 5.5615 13.8379 5.34353L13.7116 4.86559C13.6504 4.62201 13.5108 4.40527 13.3143 4.24885C13.1179 4.09253 12.8753 4.00504 12.6243 3.99999L12.6242 4ZM11.79 14.5225C11.0652 14.5225 10.37 14.2346 9.85752 13.722C9.34499 13.2094 9.05705 12.5142 9.05705 11.7895C9.05716 11.0646 9.34511 10.3696 9.85763 9.85703C10.3702 9.3445 11.0654 9.05667 11.7902 9.05667C12.515 9.05679 13.2101 9.34473 13.7226 9.85738C14.235 10.3699 14.523 11.0652 14.5229 11.7899C14.5222 12.5145 14.234 13.2092 13.7216 13.7215C13.2092 14.2338 12.5145 14.5218 11.79 14.5225H11.79ZM11.79 8.61728V8.61717C12.6314 8.61717 13.4384 8.95137 14.0333 9.54632C14.6283 10.1413 14.9626 10.9482 14.9627 11.7896C14.9627 12.6311 14.6285 13.438 14.0336 14.033C13.4386 14.6279 12.6317 14.9622 11.7903 14.9624C10.9488 14.9624 10.1419 14.6282 9.54692 14.0332C8.95197 13.4383 8.61765 12.6314 8.61754 11.7899C8.61855 10.9488 8.95298 10.1424 9.5477 9.54756C10.1424 8.95281 10.9488 8.61818 11.79 8.61717V8.61728Z" fill="currentColor"></path></symbol></svg>',1),b=o.defineComponent({__name:"Icon",props:{height:{default:24},width:{default:24},name:{},color:{}},setup(t){const n=t;return(e,C)=>(o.openBlock(),o.createElementBlock(o.Fragment,null,[(o.openBlock(),o.createElementBlock("svg",{class:"icon",width:n.width,height:n.height,style:o.normalizeStyle(n.color)},[o.createElementVNode("use",{href:`#${n.name}`},null,8,f)],12,g)),y],64))}}),L=["disabled"],M={key:0,class:"toggle-input",id:"toggle",type:"checkbox"},B={key:1,class:"toggle-label",for:"toggle"},x={key:2,class:"toggle-input-lang",id:"toggle",type:"checkbox"},j={key:3,class:"toggle-label-lang",for:"toggle"},_=o.defineComponent({__name:"Switch",props:{disabled:{type:Boolean,default:!1},lang:{type:Boolean,default:!1},backgroundColor:{}},emits:["click"],setup(t,{emit:n}){const e=t,C=n,s=o.computed(()=>({toggle:!0})),a=o.computed(()=>({backgroundColor:e.backgroundColor})),c=()=>C("click",1);return(h,d)=>(o.openBlock(),o.createElementBlock("div",{class:o.normalizeClass(s.value),disabled:e.disabled,style:o.normalizeStyle(a.value),onClick:c},[e.lang?o.createCommentVNode("",!0):(o.openBlock(),o.createElementBlock("input",M)),e.lang?o.createCommentVNode("",!0):(o.openBlock(),o.createElementBlock("label",B)),e.lang?(o.openBlock(),o.createElementBlock("input",x)):o.createCommentVNode("",!0),e.lang?(o.openBlock(),o.createElementBlock("label",j,"222")):o.createCommentVNode("",!0)],14,L))}});r.Badges=u,r.Button=w,r.Icon=b,r.Switch=_,Object.defineProperty(r,Symbol.toStringTag,{value:"Module"})});