sander-ui 0.1.5 → 0.1.7

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 (80) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/index.js +53 -51
  3. package/dist/index10.js +2 -2
  4. package/dist/index11.js +1 -1
  5. package/dist/index12.js +4 -4
  6. package/dist/index13.js +98 -100
  7. package/dist/index14.js +41 -21
  8. package/dist/index15.js +22 -19
  9. package/dist/index16.js +20 -76
  10. package/dist/index17.js +72 -58
  11. package/dist/index18.js +56 -35
  12. package/dist/index19.js +40 -31
  13. package/dist/index20.js +30 -25
  14. package/dist/index21.js +260 -19
  15. package/dist/index22.js +15 -36
  16. package/dist/index23.js +39 -46
  17. package/dist/index24.js +39 -124
  18. package/dist/index25.js +132 -18
  19. package/dist/index26.js +18 -23
  20. package/dist/index27.js +23 -55
  21. package/dist/index28.js +55 -19
  22. package/dist/index29.js +19 -46
  23. package/dist/index3.js +2 -2
  24. package/dist/index30.js +46 -5
  25. package/dist/index31.js +5 -17
  26. package/dist/index32.js +26 -10
  27. package/dist/index33.js +25 -39
  28. package/dist/index34.js +17 -7
  29. package/dist/index35.js +8 -26
  30. package/dist/index36.js +4 -17
  31. package/dist/index37.js +16 -22
  32. package/dist/index38.js +22 -20
  33. package/dist/index39.js +8 -13
  34. package/dist/index4.js +7 -7
  35. package/dist/index40.js +14 -23
  36. package/dist/index41.js +7 -7
  37. package/dist/index42.js +6 -13
  38. package/dist/index43.js +7 -8
  39. package/dist/index44.js +26 -7
  40. package/dist/index45.js +15 -11
  41. package/dist/index46.js +20 -16
  42. package/dist/index47.js +13 -8
  43. package/dist/index48.js +23 -4
  44. package/dist/index49.js +11 -27
  45. package/dist/index5.js +3 -3
  46. package/dist/index50.js +25 -16
  47. package/dist/index51.js +12 -20
  48. package/dist/index52.js +16 -12
  49. package/dist/index53.js +26 -30
  50. package/dist/index55.js +10 -16
  51. package/dist/index56.js +42 -14
  52. package/dist/index57.js +3 -3
  53. package/dist/index58.js +4 -15
  54. package/dist/index59.js +14 -18
  55. package/dist/index6.js +3 -3
  56. package/dist/index60.js +4 -13
  57. package/dist/index61.js +12 -25
  58. package/dist/index62.js +20 -41
  59. package/dist/index63.js +42 -4
  60. package/dist/index64.js +4 -27
  61. package/dist/index65.js +14 -25
  62. package/dist/index66.js +40 -35
  63. package/dist/index67.js +15 -2
  64. package/dist/index68.js +31 -4
  65. package/dist/index69.js +16 -20
  66. package/dist/index7.js +4 -4
  67. package/dist/index70.js +35 -2
  68. package/dist/index71.js +2 -2
  69. package/dist/index72.js +4 -6
  70. package/dist/index73.js +21 -34
  71. package/dist/index74.js +2 -12
  72. package/dist/index75.js +2 -7
  73. package/dist/index76.js +6 -5
  74. package/dist/index77.js +36 -0
  75. package/dist/index78.js +14 -0
  76. package/dist/index79.js +9 -0
  77. package/dist/index8.js +12 -12
  78. package/dist/index80.js +7 -0
  79. package/dist/index9.js +2 -2
  80. package/package.json +1 -1
package/dist/index29.js CHANGED
@@ -1,48 +1,21 @@
1
- import { jsxs as t, jsx as u } from "react/jsx-runtime";
2
- import r from "./index30.js";
3
- import { useId as y, useState as g, cloneElement as x } from "react";
4
- import s from "./index53.js";
5
- const h = ({
6
- content: i,
7
- placement: a = "top",
8
- variant: n = "dark",
9
- children: l,
10
- id: d,
11
- className: m
12
- }) => {
13
- const p = y(), o = d ?? `tooltip-${p}`, [c, e] = g(!1);
14
- return /* @__PURE__ */ t(
15
- "span",
16
- {
17
- className: r(s.trigger, m),
18
- onKeyDown: (f) => {
19
- f.key === "Escape" && e(!0);
20
- },
21
- onMouseEnter: () => e(!1),
22
- onFocus: () => e(!1),
23
- children: [
24
- x(l, { "aria-describedby": o }),
25
- /* @__PURE__ */ t(
26
- "span",
27
- {
28
- id: o,
29
- role: "tooltip",
30
- className: r(
31
- s.tooltip,
32
- s[n],
33
- s[a],
34
- c && s.dismissed
35
- ),
36
- children: [
37
- /* @__PURE__ */ u("span", { className: s.arrow }),
38
- i
39
- ]
40
- }
41
- )
42
- ]
43
- }
44
- );
45
- };
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import m from "./index31.js";
3
+ import { Toast as l } from "./index28.js";
4
+ import t from "./index63.js";
5
+ const f = ({
6
+ toasts: r,
7
+ position: e = "top-right",
8
+ onDismiss: n,
9
+ onRemove: a
10
+ }) => r.length === 0 ? null : /* @__PURE__ */ o(
11
+ "div",
12
+ {
13
+ className: m(t.container, t[e]),
14
+ "aria-live": "polite",
15
+ "aria-relevant": "additions",
16
+ children: r.map((i) => /* @__PURE__ */ o(l, { toast: i, onDismiss: n, onRemove: a }, i.id))
17
+ }
18
+ );
46
19
  export {
47
- h as Tooltip
20
+ f as ToastContainer
48
21
  };
package/dist/index3.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { jsx as o, jsxs as O } from "react/jsx-runtime";
2
- import u from "./index30.js";
2
+ import u from "./index31.js";
3
3
  import { useState as f, useCallback as A, useId as j, useContext as k, useRef as y, createContext as R } from "react";
4
- import e from "./index31.js";
4
+ import e from "./index37.js";
5
5
  const g = R({
6
6
  openId: null,
7
7
  toggle: () => {
package/dist/index30.js CHANGED
@@ -1,7 +1,48 @@
1
- import { getDefaultExportFromCjs as r } from "./index68.js";
2
- import { __require as s } from "./index66.js";
3
- var e = s();
4
- const t = /* @__PURE__ */ r(e);
1
+ import { jsxs as t, jsx as u } from "react/jsx-runtime";
2
+ import r from "./index31.js";
3
+ import { useId as y, useState as g, cloneElement as x } from "react";
4
+ import s from "./index68.js";
5
+ const h = ({
6
+ content: i,
7
+ placement: a = "top",
8
+ variant: n = "dark",
9
+ children: l,
10
+ id: d,
11
+ className: m
12
+ }) => {
13
+ const p = y(), o = d ?? `tooltip-${p}`, [c, e] = g(!1);
14
+ return /* @__PURE__ */ t(
15
+ "span",
16
+ {
17
+ className: r(s.trigger, m),
18
+ onKeyDown: (f) => {
19
+ f.key === "Escape" && e(!0);
20
+ },
21
+ onMouseEnter: () => e(!1),
22
+ onFocus: () => e(!1),
23
+ children: [
24
+ x(l, { "aria-describedby": o }),
25
+ /* @__PURE__ */ t(
26
+ "span",
27
+ {
28
+ id: o,
29
+ role: "tooltip",
30
+ className: r(
31
+ s.tooltip,
32
+ s[n],
33
+ s[a],
34
+ c && s.dismissed
35
+ ),
36
+ children: [
37
+ /* @__PURE__ */ u("span", { className: s.arrow }),
38
+ i
39
+ ]
40
+ }
41
+ )
42
+ ]
43
+ }
44
+ );
45
+ };
5
46
  export {
6
- t as default
47
+ h as Tooltip
7
48
  };
package/dist/index31.js CHANGED
@@ -1,19 +1,7 @@
1
- const n = "_accordion_7j7b7_1", t = "_item_7j7b7_6", e = "_disabled_7j7b7_14", o = "_trigger_7j7b7_19", c = "_content_7j7b7_64", _ = "_contentOpen_7j7b7_70", s = "_contentInner_7j7b7_74", r = {
2
- accordion: n,
3
- item: t,
4
- disabled: e,
5
- trigger: o,
6
- content: c,
7
- contentOpen: _,
8
- contentInner: s
9
- };
1
+ import { getDefaultExportFromCjs as r } from "./index72.js";
2
+ import { __require as s } from "./index70.js";
3
+ var e = s();
4
+ const t = /* @__PURE__ */ r(e);
10
5
  export {
11
- n as accordion,
12
- c as content,
13
- s as contentInner,
14
- _ as contentOpen,
15
- r as default,
16
- e as disabled,
17
- t as item,
18
- o as trigger
6
+ t as default
19
7
  };
package/dist/index32.js CHANGED
@@ -1,13 +1,29 @@
1
- import { useEffect as e } from "react";
2
- function l(o) {
3
- e(() => {
4
- if (!o) return;
5
- const t = window.scrollY;
6
- return document.body.style.position = "fixed", document.body.style.top = `-${t}px`, document.body.style.left = "0", document.body.style.right = "0", () => {
7
- document.body.style.position = "", document.body.style.top = "", document.body.style.left = "", document.body.style.right = "", window.scrollTo(0, t);
8
- };
9
- }, [o]);
1
+ const l = /* @__PURE__ */ new Set([
2
+ "van",
3
+ "von",
4
+ "de",
5
+ "del",
6
+ "den",
7
+ "der",
8
+ "di",
9
+ "du",
10
+ "el",
11
+ "la",
12
+ "le",
13
+ "los",
14
+ "het",
15
+ "ten",
16
+ "ter",
17
+ "op"
18
+ ]);
19
+ function a(e, r = "?") {
20
+ if (!e?.trim()) return r;
21
+ const n = e.trim().split(/\s+/), t = n.filter((o) => !l.has(o.toLowerCase()));
22
+ if (t.length === 0) return n[0][0].toUpperCase();
23
+ if (t.length === 1) return t[0][0].toUpperCase();
24
+ const s = t[0][0], i = t[t.length - 1][0];
25
+ return (s + i).toUpperCase();
10
26
  }
11
27
  export {
12
- l as useScrollLock
28
+ a as getInitials
13
29
  };
package/dist/index33.js CHANGED
@@ -1,42 +1,28 @@
1
- const t = "_dialog_1wscl_51", _ = "_closing_1wscl_70", s = "_right_1wscl_76", o = "_left_1wscl_77", l = "_top_1wscl_98", e = "_bottom_1wscl_99", i = "_content_1wscl_145", c = "_header_1wscl_151", n = "_title_1wscl_159", d = "_closeButton_1wscl_165", w = "_body_1wscl_186", f = "_footer_1wscl_194", g = {
2
- dialog: t,
3
- "fade-in": "_fade-in_1wscl_1",
4
- "fade-out": "_fade-out_1wscl_1",
5
- closing: _,
6
- right: s,
7
- left: o,
8
- "slide-in-right": "_slide-in-right_1wscl_1",
9
- "slide-out-right": "_slide-out-right_1wscl_1",
10
- "slide-in-left": "_slide-in-left_1wscl_1",
11
- "slide-out-left": "_slide-out-left_1wscl_1",
12
- top: l,
13
- bottom: e,
14
- "slide-in-top": "_slide-in-top_1wscl_1",
15
- "slide-out-top": "_slide-out-top_1wscl_1",
16
- "slide-in-bottom": "_slide-in-bottom_1wscl_1",
17
- "slide-out-bottom": "_slide-out-bottom_1wscl_1",
18
- "size-sm": "_size-sm_1wscl_120",
19
- "size-md": "_size-md_1wscl_122",
20
- "size-lg": "_size-lg_1wscl_124",
21
- content: i,
22
- header: c,
23
- title: n,
24
- closeButton: d,
25
- body: w,
26
- footer: f
1
+ const _ = "_wrapper_1p6ce_1", s = "_sm_1p6ce_8", t = "_md_1p6ce_14", a = "_lg_1p6ce_20", c = "_xl_1p6ce_26", e = "_image_1p6ce_38", p = "_fallback_1p6ce_45", l = "_status_1p6ce_59", o = "_group_1p6ce_88", u = {
2
+ wrapper: _,
3
+ sm: s,
4
+ md: t,
5
+ lg: a,
6
+ xl: c,
7
+ "2xl": "_2xl_1p6ce_32",
8
+ image: e,
9
+ fallback: p,
10
+ status: l,
11
+ "status-online": "_status-online_1p6ce_71",
12
+ "status-offline": "_status-offline_1p6ce_75",
13
+ "status-busy": "_status-busy_1p6ce_79",
14
+ "status-away": "_status-away_1p6ce_83",
15
+ group: o
27
16
  };
28
17
  export {
29
- w as body,
30
- e as bottom,
31
- d as closeButton,
32
- _ as closing,
33
- i as content,
34
- g as default,
35
- t as dialog,
36
- f as footer,
37
- c as header,
38
- o as left,
39
- s as right,
40
- n as title,
41
- l as top
18
+ u as default,
19
+ p as fallback,
20
+ o as group,
21
+ e as image,
22
+ a as lg,
23
+ t as md,
24
+ s as sm,
25
+ l as status,
26
+ _ as wrapper,
27
+ c as xl
42
28
  };
package/dist/index34.js CHANGED
@@ -1,9 +1,19 @@
1
- import e from "./index69.js";
2
- const o = [
3
- ["path", { d: "M18 6 6 18", key: "1bl5f8" }],
4
- ["path", { d: "m6 6 12 12", key: "d8bk6v" }]
5
- ], c = e("x", o);
1
+ const t = "_list_2tzve_1", e = "_item_2tzve_9", s = "_separator_2tzve_15", _ = "_link_2tzve_22", i = "_current_2tzve_37", l = "_text_2tzve_42", n = "_ellipsis_2tzve_46", r = {
2
+ list: t,
3
+ item: e,
4
+ separator: s,
5
+ link: _,
6
+ current: i,
7
+ text: l,
8
+ ellipsis: n
9
+ };
6
10
  export {
7
- o as __iconNode,
8
- c as default
11
+ i as current,
12
+ r as default,
13
+ n as ellipsis,
14
+ e as item,
15
+ _ as link,
16
+ t as list,
17
+ s as separator,
18
+ l as text
9
19
  };
package/dist/index35.js CHANGED
@@ -1,28 +1,10 @@
1
- const _ = "_badge_19d90_1", o = "_sm_19d90_10", d = "_md_19d90_15", s = "_dot_19d90_21", e = "_remove_19d90_30", n = "_filled_19d90_56", t = "_success_19d90_61", c = "_warning_19d90_66", r = "_error_19d90_71", l = "_info_19d90_76", i = "_outline_19d90_82", a = {
2
- badge: _,
3
- sm: o,
4
- md: d,
5
- dot: s,
6
- remove: e,
7
- filled: n,
8
- default: "_default_19d90_56",
9
- success: t,
10
- warning: c,
11
- error: r,
12
- info: l,
13
- outline: i
14
- };
1
+ import c from "./index73.js";
2
+ const e = [
3
+ ["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
4
+ ["circle", { cx: "19", cy: "12", r: "1", key: "1wjl8i" }],
5
+ ["circle", { cx: "5", cy: "12", r: "1", key: "1pcz8c" }]
6
+ ], l = c("ellipsis", e);
15
7
  export {
16
- _ as badge,
17
- a as default,
18
- s as dot,
19
- r as error,
20
- n as filled,
21
- l as info,
22
- d as md,
23
- i as outline,
24
- e as remove,
25
- o as sm,
26
- t as success,
27
- c as warning
8
+ e as __iconNode,
9
+ l as default
28
10
  };
package/dist/index36.js CHANGED
@@ -1,19 +1,6 @@
1
- const w = "_wrapper_wwjw1_1", e = "_table_wwjw1_7", _ = "_header_wwjw1_13", o = "_body_wwjw1_18", a = "_row_wwjw1_22", t = "_head_wwjw1_13", r = "_cell_wwjw1_40", c = {
2
- wrapper: w,
3
- table: e,
4
- header: _,
5
- body: o,
6
- row: a,
7
- head: t,
8
- cell: r
9
- };
1
+ import o from "./index73.js";
2
+ const t = [["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]], c = o("chevron-right", t);
10
3
  export {
11
- o as body,
12
- r as cell,
13
- c as default,
14
- t as head,
15
- _ as header,
16
- a as row,
17
- e as table,
18
- w as wrapper
4
+ t as __iconNode,
5
+ c as default
19
6
  };
package/dist/index37.js CHANGED
@@ -1,25 +1,19 @@
1
- const _ = "_wrapper_14k2c_1", e = "_header_14k2c_7", c = "_label_14k2c_13", a = "_value_14k2c_19", t = "_track_14k2c_24", r = "_sm_14k2c_31", n = "_md_14k2c_35", s = "_lg_14k2c_39", l = "_bar_14k2c_43", k = "_indeterminate_14k2c_59", o = {
2
- wrapper: _,
3
- header: e,
4
- label: c,
5
- value: a,
6
- track: t,
7
- sm: r,
8
- md: n,
9
- lg: s,
10
- bar: l,
11
- indeterminate: k
1
+ const n = "_accordion_7j7b7_1", t = "_item_7j7b7_6", e = "_disabled_7j7b7_14", o = "_trigger_7j7b7_19", c = "_content_7j7b7_64", _ = "_contentOpen_7j7b7_70", s = "_contentInner_7j7b7_74", r = {
2
+ accordion: n,
3
+ item: t,
4
+ disabled: e,
5
+ trigger: o,
6
+ content: c,
7
+ contentOpen: _,
8
+ contentInner: s
12
9
  };
13
10
  export {
14
- l as bar,
15
- o as default,
16
- e as header,
17
- k as indeterminate,
18
- c as label,
19
- s as lg,
20
- n as md,
21
- r as sm,
22
- t as track,
23
- a as value,
24
- _ as wrapper
11
+ n as accordion,
12
+ c as content,
13
+ s as contentInner,
14
+ _ as contentOpen,
15
+ r as default,
16
+ e as disabled,
17
+ t as item,
18
+ o as trigger
25
19
  };
package/dist/index38.js CHANGED
@@ -1,23 +1,25 @@
1
- const e = "_wrapper_8eiej_1", t = "_wrapperDisabled_8eiej_8", _ = "_track_8eiej_13", c = "_trackChecked_8eiej_37", a = "_thumb_8eiej_41", r = "_thumbChecked_8eiej_52", s = "_labels_8eiej_56", i = "_label_8eiej_56", l = "_description_8eiej_66", p = {
2
- wrapper: e,
3
- wrapperDisabled: t,
4
- track: _,
5
- trackChecked: c,
6
- thumb: a,
7
- thumbChecked: r,
8
- labels: s,
9
- label: i,
10
- description: l
1
+ const s = "_alert_16i4u_1", i = "_icon_16i4u_11", n = "_content_16i4u_18", t = "_title_16i4u_23", _ = "_description_16i4u_27", o = "_dismiss_16i4u_35", c = "_success_16i4u_62", e = "_error_16i4u_68", r = "_warning_16i4u_74", u = "_info_16i4u_80", a = {
2
+ alert: s,
3
+ icon: i,
4
+ content: n,
5
+ title: t,
6
+ description: _,
7
+ dismiss: o,
8
+ success: c,
9
+ error: e,
10
+ warning: r,
11
+ info: u
11
12
  };
12
13
  export {
13
- p as default,
14
- l as description,
15
- i as label,
16
- s as labels,
17
- a as thumb,
18
- r as thumbChecked,
19
- _ as track,
20
- c as trackChecked,
21
- e as wrapper,
22
- t as wrapperDisabled
14
+ s as alert,
15
+ n as content,
16
+ a as default,
17
+ _ as description,
18
+ o as dismiss,
19
+ e as error,
20
+ i as icon,
21
+ u as info,
22
+ c as success,
23
+ t as title,
24
+ r as warning
23
25
  };
package/dist/index39.js CHANGED
@@ -1,15 +1,10 @@
1
- const r = "_wrapper_1rkkq_1", t = "_label_1rkkq_6", _ = "_input_1rkkq_13", o = "_inputError_1rkkq_33", p = "_error_1rkkq_42", e = {
2
- wrapper: r,
3
- label: t,
4
- input: _,
5
- inputError: o,
6
- error: p
7
- };
1
+ import e from "./index73.js";
2
+ const o = [
3
+ ["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
4
+ ["path", { d: "M12 16v-4", key: "1dtifu" }],
5
+ ["path", { d: "M12 8h.01", key: "e9boi3" }]
6
+ ], t = e("info", o);
8
7
  export {
9
- e as default,
10
- p as error,
11
- _ as input,
12
- o as inputError,
13
- t as label,
14
- r as wrapper
8
+ o as __iconNode,
9
+ t as default
15
10
  };
package/dist/index4.js CHANGED
@@ -1,11 +1,11 @@
1
1
  import { jsxs as t, jsx as o } from "react/jsx-runtime";
2
- import a from "./index30.js";
3
- import r from "./index40.js";
4
- import f from "./index41.js";
5
- import p from "./index42.js";
6
- import d from "./index43.js";
7
- import N from "./index44.js";
8
- import g from "./index34.js";
2
+ import a from "./index31.js";
3
+ import r from "./index38.js";
4
+ import f from "./index39.js";
5
+ import p from "./index40.js";
6
+ import d from "./index41.js";
7
+ import N from "./index42.js";
8
+ import g from "./index43.js";
9
9
  const h = {
10
10
  success: N,
11
11
  error: d,
package/dist/index40.js CHANGED
@@ -1,25 +1,16 @@
1
- const s = "_alert_16i4u_1", i = "_icon_16i4u_11", n = "_content_16i4u_18", t = "_title_16i4u_23", _ = "_description_16i4u_27", o = "_dismiss_16i4u_35", c = "_success_16i4u_62", e = "_error_16i4u_68", r = "_warning_16i4u_74", u = "_info_16i4u_80", a = {
2
- alert: s,
3
- icon: i,
4
- content: n,
5
- title: t,
6
- description: _,
7
- dismiss: o,
8
- success: c,
9
- error: e,
10
- warning: r,
11
- info: u
12
- };
1
+ import e from "./index73.js";
2
+ const t = [
3
+ [
4
+ "path",
5
+ {
6
+ d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",
7
+ key: "wmoenq"
8
+ }
9
+ ],
10
+ ["path", { d: "M12 9v4", key: "juzpu7" }],
11
+ ["path", { d: "M12 17h.01", key: "p32p05" }]
12
+ ], o = e("triangle-alert", t);
13
13
  export {
14
- s as alert,
15
- n as content,
16
- a as default,
17
- _ as description,
18
- o as dismiss,
19
- e as error,
20
- i as icon,
21
- u as info,
22
- c as success,
23
- t as title,
24
- r as warning
14
+ t as __iconNode,
15
+ o as default
25
16
  };
package/dist/index41.js CHANGED
@@ -1,10 +1,10 @@
1
- import e from "./index69.js";
2
- const o = [
1
+ import e from "./index73.js";
2
+ const c = [
3
3
  ["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
4
- ["path", { d: "M12 16v-4", key: "1dtifu" }],
5
- ["path", { d: "M12 8h.01", key: "e9boi3" }]
6
- ], t = e("info", o);
4
+ ["line", { x1: "12", x2: "12", y1: "8", y2: "12", key: "1pkeuh" }],
5
+ ["line", { x1: "12", x2: "12.01", y1: "16", y2: "16", key: "4dfq90" }]
6
+ ], l = e("circle-alert", c);
7
7
  export {
8
- o as __iconNode,
9
- t as default
8
+ c as __iconNode,
9
+ l as default
10
10
  };
package/dist/index42.js CHANGED
@@ -1,16 +1,9 @@
1
- import e from "./index69.js";
2
- const t = [
3
- [
4
- "path",
5
- {
6
- d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",
7
- key: "wmoenq"
8
- }
9
- ],
10
- ["path", { d: "M12 9v4", key: "juzpu7" }],
11
- ["path", { d: "M12 17h.01", key: "p32p05" }]
12
- ], o = e("triangle-alert", t);
1
+ import c from "./index73.js";
2
+ const e = [
3
+ ["path", { d: "M21.801 10A10 10 0 1 1 17 3.335", key: "yps3ct" }],
4
+ ["path", { d: "m9 11 3 3L22 4", key: "1pflzl" }]
5
+ ], o = c("circle-check-big", e);
13
6
  export {
14
- t as __iconNode,
7
+ e as __iconNode,
15
8
  o as default
16
9
  };
package/dist/index43.js CHANGED
@@ -1,10 +1,9 @@
1
- import e from "./index69.js";
2
- const c = [
3
- ["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
4
- ["line", { x1: "12", x2: "12", y1: "8", y2: "12", key: "1pkeuh" }],
5
- ["line", { x1: "12", x2: "12.01", y1: "16", y2: "16", key: "4dfq90" }]
6
- ], l = e("circle-alert", c);
1
+ import e from "./index73.js";
2
+ const o = [
3
+ ["path", { d: "M18 6 6 18", key: "1bl5f8" }],
4
+ ["path", { d: "m6 6 12 12", key: "d8bk6v" }]
5
+ ], c = e("x", o);
7
6
  export {
8
- c as __iconNode,
9
- l as default
7
+ o as __iconNode,
8
+ c as default
10
9
  };
package/dist/index44.js CHANGED
@@ -1,9 +1,28 @@
1
- import c from "./index69.js";
2
- const e = [
3
- ["path", { d: "M21.801 10A10 10 0 1 1 17 3.335", key: "yps3ct" }],
4
- ["path", { d: "m9 11 3 3L22 4", key: "1pflzl" }]
5
- ], o = c("circle-check-big", e);
1
+ const _ = "_badge_19d90_1", o = "_sm_19d90_10", d = "_md_19d90_15", s = "_dot_19d90_21", e = "_remove_19d90_30", n = "_filled_19d90_56", t = "_success_19d90_61", c = "_warning_19d90_66", r = "_error_19d90_71", l = "_info_19d90_76", i = "_outline_19d90_82", a = {
2
+ badge: _,
3
+ sm: o,
4
+ md: d,
5
+ dot: s,
6
+ remove: e,
7
+ filled: n,
8
+ default: "_default_19d90_56",
9
+ success: t,
10
+ warning: c,
11
+ error: r,
12
+ info: l,
13
+ outline: i
14
+ };
6
15
  export {
7
- e as __iconNode,
8
- o as default
16
+ _ as badge,
17
+ a as default,
18
+ s as dot,
19
+ r as error,
20
+ n as filled,
21
+ l as info,
22
+ d as md,
23
+ i as outline,
24
+ e as remove,
25
+ o as sm,
26
+ t as success,
27
+ c as warning
9
28
  };