@cagatayfdn/flora-components 0.0.119 → 0.0.121

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 (35) hide show
  1. package/dist/ActionButton.css +1 -1
  2. package/dist/Button.css +1 -1
  3. package/dist/InfoBoxList.css +1 -1
  4. package/dist/InfoBoxList.module-BHkAHgos.js +8 -0
  5. package/dist/Legends.css +1 -1
  6. package/dist/Pager.css +1 -1
  7. package/dist/ScrollContainer.css +1 -1
  8. package/dist/{Select-BGHusr4q.js → Select-BE_y91ZN.js} +1 -1
  9. package/dist/Select.css +1 -1
  10. package/dist/Select.module-ByPQ6qr4.js +21 -0
  11. package/dist/Switch.css +1 -1
  12. package/dist/Textarea.css +1 -1
  13. package/dist/components/ActionButton/ActionButton.js +26 -26
  14. package/dist/components/Button/Button.js +52 -52
  15. package/dist/components/Charts/Legends.js +5 -5
  16. package/dist/components/ErrorLogModal/ErrorLogModal.js +1 -1
  17. package/dist/components/InfoBoxList/InfoBoxList.js +1 -1
  18. package/dist/components/InfoBoxList/helper.js +1 -1
  19. package/dist/components/Pager/Pager.js +46 -46
  20. package/dist/components/ScrollContainer/ScrollContainer.js +6 -6
  21. package/dist/components/Select/NoData.js +1 -1
  22. package/dist/components/Select/OptionItem.js +1 -1
  23. package/dist/components/Select/Select.js +2 -2
  24. package/dist/components/Switch/Switch.js +28 -28
  25. package/dist/components/Table/Table.js +1 -1
  26. package/dist/components/Table/TableHeader.js +1 -1
  27. package/dist/components/Textarea/Textarea.js +26 -26
  28. package/dist/components/index.js +1 -1
  29. package/dist/index.js +1 -1
  30. package/dist/main.css +1 -1
  31. package/dist/main.js +1 -1
  32. package/dist/prodivers.css +1 -1
  33. package/package.json +1 -1
  34. package/dist/InfoBoxList.module-CmdO3WXi.js +0 -8
  35. package/dist/Select.module-gwwx8i1I.js +0 -20
@@ -1,63 +1,63 @@
1
1
  import { j as a } from "../../jsx-runtime-BcAkpsdy.js";
2
- import { useState as w, useEffect as m } from "react";
3
- import { c as i } from "../../index-BHf7G3IG.js";
4
- import { Icons as _ } from "../../assets/icons/icons.js";
5
- import { ThemeAppearance as F } from "../../enums/appearance.js";
6
- import f from "../Icon/index.js";
7
- import '../../Pager.css';const I = "_wrap_17ylr_2", D = "_pager_17ylr_2", H = "_disabled_17ylr_2", L = "_inputField_17ylr_2", R = "_totalPage_17ylr_2", S = "_currentPage_17ylr_2", E = "_dark_17ylr_2", t = {
8
- wrap: I,
9
- pager: D,
10
- disabled: H,
11
- inputField: L,
12
- totalPage: R,
13
- currentPage: S,
14
- dark: E
15
- }, B = (x) => {
2
+ import { useState as F, useEffect as g } from "react";
3
+ import { c as l } from "../../index-BHf7G3IG.js";
4
+ import { Icons as h } from "../../assets/icons/icons.js";
5
+ import { ThemeAppearance as I } from "../../enums/appearance.js";
6
+ import _ from "../Icon/index.js";
7
+ import '../../Pager.css';const D = "_wrap_1jmhu_2", H = "_pager_1jmhu_2", L = "_disabled_1jmhu_2", R = "_inputField_1jmhu_2", S = "_totalPage_1jmhu_2", E = "_currentPage_1jmhu_2", V = "_dark_1jmhu_2", t = {
8
+ wrap: D,
9
+ pager: H,
10
+ disabled: L,
11
+ inputField: R,
12
+ totalPage: S,
13
+ currentPage: E,
14
+ dark: V
15
+ }, B = (f) => {
16
16
  const {
17
17
  currentPage: n = 1,
18
- reset: h,
19
- totalCount: N,
20
- onChange: p,
21
- className: P,
22
- showInput: d = !0,
23
- pageSize: v = 10,
24
- appearance: g = F.LIGHT
25
- } = x, [s, u] = w(n), r = Math.ceil(N / v), c = r >= 10, b = s === r, j = s === 1, o = (e) => {
26
- u(e), p && p(e);
18
+ reset: j,
19
+ totalCount: x,
20
+ onChange: m,
21
+ className: N,
22
+ showInput: u = !0,
23
+ pageSize: P = 10,
24
+ appearance: p = I.LIGHT
25
+ } = f, [s, d] = F(n), r = Math.ceil(x / P), c = r >= 10, v = s === r, b = s === 1, o = (e) => {
26
+ d(e), m && m(e);
27
27
  }, C = () => {
28
28
  s > 1 && o(s - 1);
29
- }, y = () => {
29
+ }, k = () => {
30
30
  r > s && o(s + 1);
31
- }, k = (e) => {
32
- const T = e.target.value.slice(0, 1), l = Number(c ? e.target.value : T);
31
+ }, T = (e) => {
32
+ const w = e.target.value.slice(0, 1), i = Number(c ? e.target.value : w);
33
33
  setTimeout(() => {
34
- r >= l && l > 0 ? o(l) : l <= 0 ? o(1) : o(r), c || e.target.select();
34
+ r >= i && i > 0 ? o(i) : i <= 0 ? o(1) : o(r), c || e.target.select();
35
35
  }, 300);
36
36
  };
37
- return m(() => {
38
- u(n);
39
- }, [n]), m(() => {
40
- u(1);
41
- }, [h]), /* @__PURE__ */ a.jsx(
37
+ return g(() => {
38
+ d(n);
39
+ }, [n]), g(() => {
40
+ d(1);
41
+ }, [j]), /* @__PURE__ */ a.jsx(
42
42
  "div",
43
43
  {
44
44
  "data-testid": "pager-container",
45
- className: i(t.wrap, P, {
46
- [t[g]]: g
45
+ className: l(t.wrap, N, {
46
+ [t[p]]: p
47
47
  }),
48
48
  children: /* @__PURE__ */ a.jsxs("div", { className: t.pager, children: [
49
49
  /* @__PURE__ */ a.jsx(
50
50
  "a",
51
51
  {
52
52
  "data-testid": "pager-prev",
53
- className: i(t.prev, {
54
- [t.disabled]: j
53
+ className: l(t.prev, {
54
+ [t.disabled]: b
55
55
  }),
56
56
  onClick: C,
57
- children: /* @__PURE__ */ a.jsx(f, { name: _.ChevronLeft })
57
+ children: /* @__PURE__ */ a.jsx(_, { name: h.ChevronLeft })
58
58
  }
59
59
  ),
60
- d && /* @__PURE__ */ a.jsx(
60
+ u && /* @__PURE__ */ a.jsx(
61
61
  "input",
62
62
  {
63
63
  name: "pageNumber",
@@ -72,26 +72,26 @@ import '../../Pager.css';const I = "_wrap_17ylr_2", D = "_pager_17ylr_2", H = "_
72
72
  c || (e.currentTarget.setSelectionRange(0, 0), e.currentTarget.select());
73
73
  },
74
74
  onChange: (e) => {
75
- c || (e.target.autofocus = !0), k(e);
75
+ c || (e.target.autofocus = !0), T(e);
76
76
  }
77
77
  }
78
78
  ),
79
- /* @__PURE__ */ a.jsxs("span", { className: i(t.totalPage, {
80
- [t.currentPage]: !d
79
+ /* @__PURE__ */ a.jsxs("span", { className: l(t.totalPage, {
80
+ [t.currentPage]: !u
81
81
  }), children: [
82
- !d && /* @__PURE__ */ a.jsx("span", { className: t.currentPage, children: n > 1 ? n : s }),
82
+ !u && /* @__PURE__ */ a.jsx("span", { className: t.currentPage, children: n > 1 ? n : s }),
83
83
  "/",
84
84
  r === 0 ? 1 : r
85
85
  ] }),
86
86
  /* @__PURE__ */ a.jsx(
87
87
  "a",
88
88
  {
89
- className: i(t.next, {
90
- [t.disabled]: b
89
+ className: l(t.next, {
90
+ [t.disabled]: v
91
91
  }),
92
- onClick: y,
92
+ onClick: k,
93
93
  "data-testid": "pager-next",
94
- children: /* @__PURE__ */ a.jsx(f, { name: _.ChevronRight })
94
+ children: /* @__PURE__ */ a.jsx(_, { name: h.ChevronRight })
95
95
  }
96
96
  )
97
97
  ] })
@@ -1,19 +1,19 @@
1
- import { j as e } from "../../jsx-runtime-BcAkpsdy.js";
2
- import { c as r } from "../../index-BHf7G3IG.js";
3
- import '../../ScrollContainer.css';const c = "_container_6obj7_2", i = {
4
- container: c
1
+ import { j as c } from "../../jsx-runtime-BcAkpsdy.js";
2
+ import { c as e } from "../../index-BHf7G3IG.js";
3
+ import '../../ScrollContainer.css';const r = "_container_1dj1c_2", i = {
4
+ container: r
5
5
  }, d = ({
6
6
  children: t,
7
7
  maxHeight: s,
8
8
  height: o,
9
9
  className: a,
10
10
  onScroll: n
11
- }) => /* @__PURE__ */ e.jsx(
11
+ }) => /* @__PURE__ */ c.jsx(
12
12
  "div",
13
13
  {
14
14
  onScroll: n,
15
15
  "data-testid": "scroll-container",
16
- className: r(a, i.container),
16
+ className: e(a, i.container),
17
17
  style: { maxHeight: s, height: o },
18
18
  children: t
19
19
  }
@@ -1,5 +1,5 @@
1
1
  import { j as t } from "../../jsx-runtime-BcAkpsdy.js";
2
- import { s as n } from "../../Select.module-gwwx8i1I.js";
2
+ import { s as n } from "../../Select.module-ByPQ6qr4.js";
3
3
  import { u as r } from "../../useTranslation-CnCPcxVj.js";
4
4
  function d({ text: s }) {
5
5
  const { t: a } = r(), o = s || a("text.no_results");
@@ -1,5 +1,5 @@
1
1
  import { j as e } from "../../jsx-runtime-BcAkpsdy.js";
2
- import { s as t } from "../../Select.module-gwwx8i1I.js";
2
+ import { s as t } from "../../Select.module-ByPQ6qr4.js";
3
3
  function m({
4
4
  props: l,
5
5
  item: s,
@@ -1,7 +1,7 @@
1
1
  import "../../jsx-runtime-BcAkpsdy.js";
2
- import { S as s } from "../../Select-BGHusr4q.js";
2
+ import { S as s } from "../../Select-BE_y91ZN.js";
3
3
  import "../../index-BHf7G3IG.js";
4
- import "../../Select.module-gwwx8i1I.js";
4
+ import "../../Select.module-ByPQ6qr4.js";
5
5
  import "../Label/Label.js";
6
6
  import "../ValidationError/ValidationError.js";
7
7
  import "./NoData.js";
@@ -1,11 +1,11 @@
1
1
  import { j as e } from "../../jsx-runtime-BcAkpsdy.js";
2
- import k, { useState as u, useEffect as j } from "react";
3
- import { c as l } from "../../index-BHf7G3IG.js";
2
+ import u, { useState as v, useEffect as k } from "react";
3
+ import { c as _ } from "../../index-BHf7G3IG.js";
4
4
  import N from "../Label/Label.js";
5
5
  import { Size as y } from "../../enums/size.js";
6
6
  import { u as b } from "../../useTranslation-CnCPcxVj.js";
7
- import '../../Switch.css';const S = "_checked_1j9lv_2", O = "_disabled_1j9lv_2", R = "_switch__small_1j9lv_2", g = "_slider_1j9lv_2", C = "_active_1j9lv_2", E = "_passive_1j9lv_2", F = "_switch__large_1j9lv_2", L = "_round_1j9lv_2", t = {
8
- switch: "_switch_1j9lv_2",
7
+ import '../../Switch.css';const S = "_checked_1n7nk_2", O = "_disabled_1n7nk_2", R = "_switch__small_1n7nk_2", g = "_slider_1n7nk_2", C = "_active_1n7nk_2", E = "_passive_1n7nk_2", F = "_switch__large_1n7nk_2", L = "_round_1n7nk_2", t = {
8
+ switch: "_switch_1n7nk_2",
9
9
  checked: S,
10
10
  disabled: O,
11
11
  switch__small: R,
@@ -14,63 +14,63 @@ import '../../Switch.css';const S = "_checked_1j9lv_2", O = "_disabled_1j9lv_2",
14
14
  passive: E,
15
15
  switch__large: F,
16
16
  round: L
17
- }, B = k.forwardRef(
17
+ }, B = u.forwardRef(
18
18
  ({
19
- name: a,
19
+ name: n,
20
20
  label: d,
21
21
  className: p,
22
22
  isDisabled: i,
23
23
  value: c,
24
24
  onChange: r,
25
25
  onLabelClick: o,
26
- checkedChildren: v,
27
- size: n = y.SM,
28
- unCheckedChildren: f,
29
- ..._
30
- }, w) => {
31
- const [s, h] = u(c), { t: m } = b();
32
- j(() => {
33
- !_.readOnly && !i && c !== void 0 && r && r(s);
34
- }, [s, c]), j(() => {
26
+ checkedChildren: f,
27
+ size: l = y.SM,
28
+ unCheckedChildren: w,
29
+ ...a
30
+ }, x) => {
31
+ const [s, h] = v(c), { t: m } = b();
32
+ k(() => {
33
+ !a.readOnly && !i && c !== void 0 && r && r(s);
34
+ }, [s, c]), k(() => {
35
35
  c && h(c);
36
36
  }, [c]);
37
- const x = () => {
38
- !i && !_.readOnly && h(!s), !i && o && o(!s);
37
+ const j = () => {
38
+ !i && !a.readOnly && h(!s), !i && o && o(!s);
39
39
  };
40
- return /* @__PURE__ */ e.jsxs("div", { className: l(t.container, p), "data-testid": "switch-container", children: [
41
- d && /* @__PURE__ */ e.jsx(N, { name: a, children: d }),
40
+ return /* @__PURE__ */ e.jsxs("div", { className: _(t.container, p), "data-testid": "switch-container", children: [
41
+ d && /* @__PURE__ */ e.jsx(N, { name: n, children: d }),
42
42
  /* @__PURE__ */ e.jsx("div", { className: t.block, children: /* @__PURE__ */ e.jsxs(
43
43
  "label",
44
44
  {
45
- className: l(t.switch, {
45
+ className: _(t.switch, {
46
46
  [t.checked]: s,
47
47
  [t.disabled]: i,
48
- [t[`switch__${n}`]]: n
48
+ [t[`switch__${l}`]]: l
49
49
  }),
50
- htmlFor: a,
51
- onClick: () => x(),
50
+ htmlFor: n,
51
+ onClick: () => j(),
52
52
  children: [
53
53
  /* @__PURE__ */ e.jsx(
54
54
  "input",
55
55
  {
56
56
  type: "checkbox",
57
- name: a,
57
+ name: n,
58
58
  value: c,
59
59
  "data-testid": "switch-input",
60
- ref: w,
60
+ ref: x,
61
61
  checked: s,
62
62
  readOnly: !0,
63
- ..._
63
+ ...a
64
64
  }
65
65
  ),
66
66
  /* @__PURE__ */ e.jsx("span", { className: t.slider, children: /* @__PURE__ */ e.jsx(
67
67
  "span",
68
68
  {
69
- className: l({
69
+ className: _({
70
70
  [t.active]: s,
71
71
  [t.passive]: !s
72
72
  }),
73
- children: s ? v || m("text.active") : f || m("text.passive")
73
+ children: s ? f || m("text.active") : w || m("text.passive")
74
74
  }
75
75
  ) })
76
76
  ]
@@ -12,7 +12,7 @@ import ae from "./TableSort.js";
12
12
  import { i as u } from "../../includes-8YTFrx85.js";
13
13
  import { _ as D, k as se } from "../../keys-B0bo5Q7o.js";
14
14
  import { _ as R, a as ne, b as ie } from "../../_reduce-DsUCMz4O.js";
15
- import { _ as le } from "../../Select-BGHusr4q.js";
15
+ import { _ as le } from "../../Select-BE_y91ZN.js";
16
16
  function de(i, t) {
17
17
  for (var a = 0, l = t.length, h = []; a < l; )
18
18
  i(t[a]) && (h[h.length] = t[a]), a += 1;
@@ -6,7 +6,7 @@ import { FormFieldAppearance as j, AppearanceButton as B } from "../../enums/app
6
6
  import D from "../Button/Button.js";
7
7
  import W from "../Heading/Heading.js";
8
8
  import _ from "../Pager/Pager.js";
9
- import { S as b } from "../../Select-BGHusr4q.js";
9
+ import { S as b } from "../../Select-BE_y91ZN.js";
10
10
  import { u as K } from "../../useTranslation-CnCPcxVj.js";
11
11
  import { T as L } from "../../Trans-B4ILpbwK.js";
12
12
  const M = [
@@ -1,9 +1,9 @@
1
1
  import { j as r } from "../../jsx-runtime-BcAkpsdy.js";
2
- import f, { useState as E, useEffect as R } from "react";
3
- import { c as x } from "../../index-BHf7G3IG.js";
2
+ import b, { useState as E, useEffect as R } from "react";
3
+ import { c as f } from "../../index-BHf7G3IG.js";
4
4
  import y from "../Label/Label.js";
5
5
  import L from "../ValidationError/ValidationError.js";
6
- import '../../Textarea.css';const S = "_counter_1mdcm_2", T = "_container_1mdcm_2", V = "_fieldWrap_1mdcm_2", $ = "_control_1mdcm_2", k = "_light_1mdcm_2", q = "_error_1mdcm_2", D = "_disabled_1mdcm_2", e = {
6
+ import '../../Textarea.css';const S = "_counter_iblo7_2", T = "_container_iblo7_2", V = "_fieldWrap_iblo7_2", $ = "_control_iblo7_2", k = "_light_iblo7_2", q = "_error_iblo7_2", D = "_disabled_iblo7_2", e = {
7
7
  counter: S,
8
8
  container: T,
9
9
  fieldWrap: V,
@@ -11,14 +11,14 @@ import '../../Textarea.css';const S = "_counter_1mdcm_2", T = "_container_1mdcm_
11
11
  light: k,
12
12
  error: q,
13
13
  disabled: D,
14
- "size-small": "_size-small_1mdcm_2"
15
- }, G = f.forwardRef(
16
- (h, g) => {
14
+ "size-small": "_size-small_iblo7_2"
15
+ }, G = b.forwardRef(
16
+ (x, h) => {
17
17
  const {
18
18
  name: d,
19
- id: b,
20
- label: m,
21
- isDisabled: _,
19
+ id: g,
20
+ label: _,
21
+ isDisabled: m,
22
22
  className: j,
23
23
  wrapperClassName: N,
24
24
  maxLength: a,
@@ -26,42 +26,42 @@ import '../../Textarea.css';const S = "_counter_1mdcm_2", T = "_container_1mdcm_
26
26
  value: o = "",
27
27
  size: p,
28
28
  onChange: u,
29
- error: n,
29
+ error: l,
30
30
  readOnly: v,
31
31
  required: C,
32
32
  rows: z = 5,
33
33
  ...W
34
- } = h, [c, l] = E(o), i = (t) => t.slice(0, a), w = f.useCallback(
34
+ } = x, [n, i] = E(o), c = (t) => t.slice(0, a), w = b.useCallback(
35
35
  (t) => {
36
- l(i(t)), u && u(i(t));
36
+ i(c(t)), u && u(c(t));
37
37
  },
38
- [a, l]
38
+ [a, i]
39
39
  );
40
40
  return R(() => {
41
- l(i(o));
41
+ i(c(o));
42
42
  }, [o]), /* @__PURE__ */ r.jsxs(
43
43
  "div",
44
44
  {
45
45
  "data-testid": "textarea-container",
46
- className: x(
46
+ className: f(
47
47
  e.container,
48
48
  {
49
49
  [e[`${s}`]]: s,
50
- [e.error]: n,
51
- [e.disabled]: _
50
+ [e.error]: l,
51
+ [e.disabled]: m
52
52
  },
53
53
  "form-group",
54
54
  N
55
55
  ),
56
56
  children: [
57
57
  /* @__PURE__ */ r.jsxs("div", { className: e.counter, children: [
58
- m && /* @__PURE__ */ r.jsxs(y, { name: d, appearance: s, children: [
59
- m,
58
+ _ && /* @__PURE__ */ r.jsxs(y, { name: d, appearance: s, children: [
59
+ _,
60
60
  " ",
61
61
  C && "*"
62
62
  ] }),
63
63
  a && /* @__PURE__ */ r.jsxs("span", { children: [
64
- c ? c.toString().length : 0,
64
+ n ? n.toString().length : 0,
65
65
  "/",
66
66
  a
67
67
  ] })
@@ -70,21 +70,21 @@ import '../../Textarea.css';const S = "_counter_1mdcm_2", T = "_container_1mdcm_
70
70
  "textarea",
71
71
  {
72
72
  name: d,
73
- id: b,
74
- className: x(e.control, j, {
73
+ id: g,
74
+ className: f(e.control, j, {
75
75
  [e[`size-${p}`]]: p
76
76
  }),
77
- disabled: _,
77
+ disabled: m,
78
78
  "data-testid": "textarea-input",
79
79
  rows: z,
80
- ref: g,
80
+ ref: h,
81
81
  readOnly: v,
82
82
  onChange: (t) => w(t.currentTarget.value),
83
- value: c,
83
+ value: n,
84
84
  ...W
85
85
  }
86
86
  ) }),
87
- n && /* @__PURE__ */ r.jsx(L, { ...n })
87
+ l && /* @__PURE__ */ r.jsx(L, { ...l })
88
88
  ]
89
89
  }
90
90
  );
@@ -47,7 +47,7 @@ import { default as jo, RadioList as qo } from "./Radio/Radio.js";
47
47
  import { default as Go } from "./ResultError/ResultError.js";
48
48
  import { default as Ko } from "./ScrollContainer/ScrollContainer.js";
49
49
  import { default as Qo } from "./Select/NoData.js";
50
- import { S as Yo } from "../Select-BGHusr4q.js";
50
+ import { S as Yo } from "../Select-BE_y91ZN.js";
51
51
  import { default as _o } from "./Sidebar/index.js";
52
52
  import { M as oe } from "../MenuItem-Df6Zsa7E.js";
53
53
  import { default as re } from "./StatusTag/StatusTag.js";
package/dist/index.js CHANGED
@@ -52,7 +52,7 @@ import { default as nr, RadioList as ir } from "./components/Radio/Radio.js";
52
52
  import { default as Ar } from "./components/ResultError/ResultError.js";
53
53
  import { default as Er } from "./components/ScrollContainer/ScrollContainer.js";
54
54
  import { default as Cr } from "./components/Select/NoData.js";
55
- import { S as Dr } from "./Select-BGHusr4q.js";
55
+ import { S as Dr } from "./Select-BE_y91ZN.js";
56
56
  import { default as Mr } from "./components/Sidebar/index.js";
57
57
  import { M as gr } from "./MenuItem-Df6Zsa7E.js";
58
58
  import { default as Lr } from "./components/StatusTag/StatusTag.js";
package/dist/main.css CHANGED
@@ -1 +1 @@
1
- :root{--white: white;--whiteRGBA: hsla(0, 0%, 100%, .85);--black: #000;--blackRGBA: rgba(0, 0, 0, .5);--primary: #293245;--dark: #2b344c;--dark-1e: #1e1e2d;--dark-1d: #1d2843;--dark-12: #12161e;--dark-47: #262e47;--dark-4a: #062a4a;--dark-21: #21283a;--dark-22: #222;--dark-24: #242b3f;--dark-3c: #3c4560;--gray-3b: #232b3b;--gray-61: #3d4561;--gray-68: #3b4768;--gray-57: #333b57;--gray-3e: #30363e;--gray-5c: #3f4b5c;--gray-4a: #4a4a4a;--gray-4c: #3b404c;--gray-b6: #b6c2cf;--gray-79: #495679;--gray-71: #717a8e;--gray-6e: #535a6e;--gray-81: #5c5e81;--gray-8c: #8ca0b3;--gray-be: #6c7ebe;--gray-90: #909090;--gray-9b: #9b9b9b;--gray-94: #948686;--gray-95: #788195;--gray-67: #676767;--gray-c2: #9ca9c2;--gray-ec: #c8daec;--gray-d8: #d8d8d8;--gray-d4: #d4d6f0;--gray-fb: #fbedbe;--gray-bc: #bcbcbc;--gray-f9: #f1f3f9;--gray-f8: #f5f6f8;--gray-df: #dfdfdf;--gray-f7: #e9f0f7;--gray-f5: #f5f5f5;--gray-fd: #fdfdfd;--gray-ee: #eee;--gray-ef: #efefef;--gray-f2: #eef0f2;--gray-e2: #e2e7f2;--blue-ff: #4482ff;--blue-f9: #037cf9;--danger: #d2282e;--success: #71d200;--info: #1890ff;--warning: #ffb822;--initializing: #ffaa49;--pending: #ffdca8;--failed: #ff5365;--queued: #9387c7;--font-xs: 10px;--font-def: 14px;--font-md: 16px;--font-lg: 18px;--font-xl: 20px;--font-2xl: 24px;--font-3xl: 30px;--checkbox-checked: #6c7ebe;--border-dark-primary: #262e47;--border-dark-secondary: #3b404c;--divider-primary: #d8d8d8;--dropdown-active: #1d2843;--bg-primary: #293245;--tab-active-text: white;--tab-inactive-text: #757f96;--status-success: #e3f6cc;--status-waiting1: #fce0ce;--status-waiting2: #c6f0f2;--status-waiting3: #eae7f4;--status-failed: #f6b5b5;--status-empty: #eaeff0;--spacing-xxs: 4px;--spacing-xs: 8px;--spacing-s: 12px;--spacing-m: 16px;--spacing-l: 20px;--spacing-xl: 24px;--spacing-xxl: 28px;--spacing-column: 32px;--toast-font-size: 14px;--toast-font-family: "Jost", sans-serif;--toast-font-weight: 600;--toast-padding: 20px 30px;--toast-icon-margin-left: 28px;--toast-icon-font-size: 18px;--toast-warning-icon-font-size: 26px}
1
+ :root{--white: white;--whiteRGBA: hsla(0, 0%, 100%, .85);--black: #000;--blackRGBA: rgba(0, 0, 0, .5);--primary: #293245;--dark: #2b344c;--dark-1e: #1e1e2d;--dark-1d: #1d2843;--dark-12: #12161e;--dark-47: #262e47;--dark-4a: #062a4a;--dark-21: #21283a;--dark-22: #222;--dark-24: #242b3f;--dark-3c: #3c4560;--gray-3b: #232b3b;--gray-61: #3d4561;--gray-68: #3b4768;--gray-57: #333b57;--gray-3e: #30363e;--gray-5c: #3f4b5c;--gray-4a: #4a4a4a;--gray-4c: #3b404c;--gray-b6: #b6c2cf;--gray-79: #495679;--gray-71: #717a8e;--gray-6e: #535a6e;--gray-62: #626262;--gray-81: #5c5e81;--gray-8c: #8ca0b3;--gray-be: #6c7ebe;--gray-90: #909090;--gray-9b: #9b9b9b;--gray-94: #948686;--gray-95: #788195;--gray-67: #676767;--gray-c2: #9ca9c2;--gray-ec: #c8daec;--gray-d8: #d8d8d8;--gray-d4: #d4d6f0;--gray-fb: #fbedbe;--gray-bc: #bcbcbc;--gray-f9: #f1f3f9;--gray-f8: #f5f6f8;--gray-df: #dfdfdf;--gray-f7: #e9f0f7;--gray-f5: #f5f5f5;--gray-fd: #fdfdfd;--gray-ee: #eee;--gray-ef: #efefef;--gray-f2: #eef0f2;--gray-e2: #e2e7f2;--blue-ff: #4482ff;--blue-f9: #037cf9;--danger: #d2282e;--success: #71d200;--info: #1890ff;--warning: #ffb822;--initializing: #ffaa49;--pending: #ffdca8;--failed: #ff5365;--queued: #9387c7;--font-xs: 10px;--font-def: 14px;--font-md: 16px;--font-lg: 18px;--font-xl: 20px;--font-2xl: 24px;--font-3xl: 30px;--checkbox-checked: #6c7ebe;--border-dark-primary: #262e47;--border-dark-secondary: #3b404c;--divider-primary: #d8d8d8;--dropdown-active: #1d2843;--bg-primary: #293245;--tab-active-text: white;--tab-inactive-text: #757f96;--status-success: #e3f6cc;--status-waiting1: #fce0ce;--status-waiting2: #c6f0f2;--status-waiting3: #eae7f4;--status-failed: #f6b5b5;--status-empty: #eaeff0;--spacing-xxs: 4px;--spacing-xs: 8px;--spacing-s: 12px;--spacing-m: 16px;--spacing-l: 20px;--spacing-xl: 24px;--spacing-xxl: 28px;--spacing-column: 32px;--toast-font-size: 14px;--toast-font-family: "Jost", sans-serif;--toast-font-weight: 600;--toast-padding: 20px 30px;--toast-icon-margin-left: 28px;--toast-icon-font-size: 18px;--toast-warning-icon-font-size: 26px}
package/dist/main.js CHANGED
@@ -18,7 +18,7 @@ import "./components/Confirm/Confirm.js";
18
18
  import "./components/Datepicker/Datepicker.js";
19
19
  import "./components/Drawer/Provider.js";
20
20
  import "./components/FileUpload/FileUpload.js";
21
- import "./Select-BGHusr4q.js";
21
+ import "./Select-BE_y91ZN.js";
22
22
  import "./components/Switch/Switch.js";
23
23
  import "./components/Textarea/Textarea.js";
24
24
  import "./utils/yup.js";