@gearbox-protocol/permissionless-ui 1.22.7 → 1.23.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/dist/cjs/components/assets-list-cell/assets-list-cell.cjs +1 -1
  2. package/dist/cjs/components/block-sync/block-sync.cjs +1 -1
  3. package/dist/cjs/components/buttons/range-buttons/range-buttons.cjs +1 -1
  4. package/dist/cjs/components/checkbox/checkbox-labeled.cjs +1 -1
  5. package/dist/cjs/components/client-adapters/styled-rounded-image/styled-rounded-image.cjs +1 -1
  6. package/dist/cjs/components/complex-input/complex-input.cjs +1 -1
  7. package/dist/cjs/components/compound-apy/compound-apy.cjs +1 -1
  8. package/dist/cjs/components/detailed-page-title/detailed-page-title.cjs +1 -1
  9. package/dist/cjs/components/graph/graph-tooltip.cjs +1 -1
  10. package/dist/cjs/components/graph/graph-view.cjs +1 -1
  11. package/dist/cjs/components/graph/graph.cjs +1 -1
  12. package/dist/cjs/components/graph/index.cjs +1 -1
  13. package/dist/cjs/components/index.cjs +1 -1
  14. package/dist/cjs/components/markdown-viewer/markdown-viewer.cjs +1 -1
  15. package/dist/cjs/components/percent-indicator/percent-indicator.cjs +1 -1
  16. package/dist/cjs/components/progress/progress.cjs +1 -1
  17. package/dist/cjs/components/tab-control/tab-control.cjs +1 -1
  18. package/dist/cjs/components/table/index.cjs +1 -1
  19. package/dist/cjs/components/time-to-liquidation/time-to-liquidation.cjs +1 -1
  20. package/dist/cjs/components/tokens-list-cell/tokens-list-cell.cjs +1 -1
  21. package/dist/cjs/components/trading-view/trading-view.cjs +1 -1
  22. package/dist/cjs/components/with-copy/with-copy.cjs +1 -1
  23. package/dist/cjs/index.cjs +1 -1
  24. package/dist/cjs/utils/colors.cjs +1 -1
  25. package/dist/cjs/utils/index.cjs +1 -1
  26. package/dist/esm/components/assets-list-cell/assets-list-cell.js +1 -1
  27. package/dist/esm/components/block-sync/block-sync.js +1 -1
  28. package/dist/esm/components/buttons/range-buttons/range-buttons.js +1 -1
  29. package/dist/esm/components/checkbox/checkbox-labeled.js +1 -1
  30. package/dist/esm/components/client-adapters/styled-rounded-image/styled-rounded-image.js +1 -1
  31. package/dist/esm/components/complex-input/complex-input.js +1 -1
  32. package/dist/esm/components/compound-apy/compound-apy.js +1 -1
  33. package/dist/esm/components/detailed-page-title/detailed-page-title.js +1 -1
  34. package/dist/esm/components/graph/graph-tooltip.js +17 -17
  35. package/dist/esm/components/graph/graph-view.js +21 -21
  36. package/dist/esm/components/graph/graph.js +286 -224
  37. package/dist/esm/components/graph/index.js +11 -10
  38. package/dist/esm/components/index.js +439 -440
  39. package/dist/esm/components/markdown-viewer/markdown-viewer.js +1 -1
  40. package/dist/esm/components/percent-indicator/percent-indicator.js +24 -9
  41. package/dist/esm/components/progress/progress.js +16 -15
  42. package/dist/esm/components/tab-control/tab-control.js +49 -49
  43. package/dist/esm/components/table/index.js +28 -30
  44. package/dist/esm/components/time-to-liquidation/time-to-liquidation.js +1 -1
  45. package/dist/esm/components/tokens-list-cell/tokens-list-cell.js +1 -1
  46. package/dist/esm/components/trading-view/trading-view.js +70 -70
  47. package/dist/esm/components/with-copy/with-copy.js +1 -1
  48. package/dist/esm/index.js +482 -482
  49. package/dist/esm/utils/colors.js +40 -28
  50. package/dist/esm/utils/index.js +78 -77
  51. package/dist/globals.css +1 -1
  52. package/dist/types/components/graph/graph.d.ts +12 -0
  53. package/dist/types/components/percent-indicator/percent-indicator.d.ts +6 -11
  54. package/dist/types/components/progress/progress.d.ts +1 -1
  55. package/dist/types/components/tab-control/tab-control.d.ts +1 -1
  56. package/dist/types/components/table/index.d.ts +0 -1
  57. package/dist/types/utils/colors.d.ts +8 -0
  58. package/package.json +1 -1
  59. package/dist/cjs/components/table/sortable-head-cell.cjs +0 -1
  60. package/dist/esm/components/table/sortable-head-cell.js +0 -25
  61. package/dist/types/components/table/sortable-head-cell.d.ts +0 -36
@@ -126,8 +126,8 @@ import "../app-bar/app-bar.js";
126
126
  import "../navitem/navitem.js";
127
127
  import "../simple-dropdown/simple-dropdown.js";
128
128
  import "../page-title/page-title.js";
129
- import "../pool-indicator-icon/pool-indicator-icon.js";
130
129
  import "../progress/progress.js";
130
+ import "../pool-indicator-icon/pool-indicator-icon.js";
131
131
  import "../progress-bar/progress-bar.js";
132
132
  import "../radio-group/radio-group.js";
133
133
  import "../rounded-image/rounded-image.js";
@@ -1,19 +1,34 @@
1
- import { jsx as m } from "react/jsx-runtime";
1
+ import { jsxs as f, jsx as t } from "react/jsx-runtime";
2
+ import { Progress as c } from "../progress/progress.js";
2
3
  import "react";
3
4
  import "@gearbox-protocol/sdk";
4
- import { cn as n } from "../../utils/cn.js";
5
+ import { cn as i } from "../../utils/cn.js";
5
6
  import "sonner";
6
- import { percentTemplate as u } from "../../utils/format-money.js";
7
+ import { percentTemplate as l } from "../../utils/format-money.js";
7
8
  import "luxon";
8
9
  import "../../utils/z-index.js";
10
+ const x = (r) => r >= 90 ? "danger" : r >= 70 ? "warning" : r >= 50 ? "info" : "success";
9
11
  function C({
10
- percent: t,
11
- decimals: r = 2,
12
- showColor: e = !0,
13
- className: o,
14
- ...i
12
+ percent: r,
13
+ decimals: e = 2,
14
+ showColor: o = !0,
15
+ showProgressBar: s = !0,
16
+ className: n,
17
+ ...m
15
18
  }) {
16
- return /* @__PURE__ */ m("div", { className: n("font-medium", e ? t >= 90 ? "text-destructive" : t >= 70 ? "text-orange-500" : t >= 50 ? "text-yellow-600" : "text-green-600" : "", o), ...i, children: u(t, r) });
19
+ const a = () => o ? r >= 90 ? "text-destructive" : r >= 70 ? "text-warning" : r >= 50 ? "text-foreground" : "text-success" : "", u = Math.min(100, Math.max(0, r));
20
+ return /* @__PURE__ */ f("div", { className: i("flex min-w-0 flex-col gap-1", n), ...m, children: [
21
+ /* @__PURE__ */ t("div", { className: i("font-medium", a()), children: l(r, e) }),
22
+ s && /* @__PURE__ */ t(
23
+ c,
24
+ {
25
+ value: u,
26
+ variant: x(r),
27
+ size: "sm",
28
+ className: "w-16 shrink-0"
29
+ }
30
+ )
31
+ ] });
17
32
  }
18
33
  export {
19
34
  C as PercentIndicator
@@ -1,12 +1,12 @@
1
1
  import { jsxs as a, jsx as l } from "react/jsx-runtime";
2
- import * as r from "@radix-ui/react-progress";
2
+ import * as s from "@radix-ui/react-progress";
3
3
  import * as u from "react";
4
4
  import "@gearbox-protocol/sdk";
5
- import { cn as s } from "../../utils/cn.js";
5
+ import { cn as r } from "../../utils/cn.js";
6
6
  import "sonner";
7
7
  import "luxon";
8
8
  import "../../utils/z-index.js";
9
- const p = u.forwardRef(
9
+ const g = u.forwardRef(
10
10
  ({
11
11
  className: o,
12
12
  value: e,
@@ -14,8 +14,8 @@ const p = u.forwardRef(
14
14
  size: n = "default",
15
15
  showLabel: t = !1,
16
16
  ...m
17
- }, d) => {
18
- const f = {
17
+ }, f) => {
18
+ const d = {
19
19
  sm: "h-1",
20
20
  default: "h-2",
21
21
  lg: "h-3"
@@ -23,23 +23,24 @@ const p = u.forwardRef(
23
23
  default: "bg-primary",
24
24
  success: "bg-success",
25
25
  warning: "bg-warning",
26
- danger: "bg-destructive"
26
+ danger: "bg-destructive",
27
+ info: "bg-foreground"
27
28
  };
28
- return /* @__PURE__ */ a("div", { className: s("flex w-full items-center", t && "gap-3"), children: [
29
+ return /* @__PURE__ */ a("div", { className: r("flex w-full items-center", t && "gap-3"), children: [
29
30
  /* @__PURE__ */ l(
30
- r.Root,
31
+ s.Root,
31
32
  {
32
- ref: d,
33
- className: s(
33
+ ref: f,
34
+ className: r(
34
35
  "relative w-full overflow-hidden rounded-full bg-secondary",
35
- f[n],
36
+ d[n],
36
37
  o
37
38
  ),
38
39
  ...m,
39
40
  children: /* @__PURE__ */ l(
40
- r.Indicator,
41
+ s.Indicator,
41
42
  {
42
- className: s(
43
+ className: r(
43
44
  "h-full w-full flex-1 transition-all",
44
45
  c[i]
45
46
  ),
@@ -55,7 +56,7 @@ const p = u.forwardRef(
55
56
  ] });
56
57
  }
57
58
  );
58
- p.displayName = r.Root.displayName;
59
+ g.displayName = s.Root.displayName;
59
60
  export {
60
- p as Progress
61
+ g as Progress
61
62
  };
@@ -1,68 +1,68 @@
1
1
  import { jsx as f, jsxs as N, Fragment as S } from "react/jsx-runtime";
2
- import { useRef as b, useState as g, useCallback as p, useMemo as v, useEffect as w } from "react";
2
+ import { useRef as m, useState as g, useCallback as p, useMemo as v, useEffect as w } from "react";
3
3
  import { useNavigationAdapter as T } from "../navigation-context/navigation-context.js";
4
4
  import "@gearbox-protocol/sdk";
5
- import { cn as m } from "../../utils/cn.js";
5
+ import { cn as b } from "../../utils/cn.js";
6
6
  import "sonner";
7
7
  import "luxon";
8
8
  import "../../utils/z-index.js";
9
9
  function U(t) {
10
10
  if (!t) return null;
11
- const { width: n = 0, height: i = 0 } = t?.getBoundingClientRect() || {}, s = t?.offsetTop || 0, o = t?.offsetLeft || 0;
12
- return { width: n, height: i, left: o, top: s };
11
+ const { width: n = 0, height: i = 0 } = t?.getBoundingClientRect() || {}, o = t?.offsetTop || 0, s = t?.offsetLeft || 0;
12
+ return { width: n, height: i, left: s, top: o };
13
13
  }
14
14
  function $(t, n, i) {
15
- const s = b(null), [o, u] = g(null), d = b(null), l = p((r) => {
16
- u(r), d.current = r;
15
+ const o = m(null), [s, u] = g(null), l = m(null), d = p((r) => {
16
+ u(r), l.current = r;
17
17
  }, []);
18
18
  return w(() => {
19
19
  const r = i.current[t], e = () => {
20
- const c = U(r), h = c?.height !== d.current?.height, x = c?.width !== d.current?.width, C = c?.left !== d.current?.left, y = c?.top !== d.current?.top;
21
- (h || x || C || y) && l(c);
20
+ const c = U(r), h = c?.height !== l.current?.height, x = c?.width !== l.current?.width, y = c?.left !== l.current?.left, C = c?.top !== l.current?.top;
21
+ (h || x || y || C) && d(c);
22
22
  };
23
- s.current = e, e();
23
+ o.current = e, e();
24
24
  const a = r ? new ResizeObserver(e) : null;
25
25
  return r && a?.observe(r), () => {
26
26
  r && a?.unobserve(r);
27
27
  };
28
- }, [t, i, l]), w(() => {
28
+ }, [t, i, d]), w(() => {
29
29
  const r = n ? new ResizeObserver(() => {
30
- s.current?.();
30
+ o.current?.();
31
31
  }) : null;
32
32
  return n && r?.observe(n), () => {
33
33
  n && r?.unobserve(n);
34
34
  };
35
- }, [n]), o;
35
+ }, [n]), s;
36
36
  }
37
37
  function A({
38
38
  tabs: t,
39
39
  state: n,
40
- variant: i = "auto",
41
- showBorder: s = !0,
42
- tabItemWrapPadding: o
40
+ showBorder: i = !0,
41
+ tabItemWrapPadding: o,
42
+ variant: s = "auto"
43
43
  }) {
44
- const u = b(null), d = b({}), l = $(
44
+ const u = m(null), l = m({}), d = $(
45
45
  n.id,
46
46
  u.current,
47
- d
47
+ l
48
48
  ), r = (e, a) => () => n.handleTabChange(e, a);
49
- return /* @__PURE__ */ f("div", { className: "relative w-full flex flex-col flex-wrap", children: /* @__PURE__ */ N(
49
+ return /* @__PURE__ */ f("div", { className: "relative w-full flex flex-col flex-wrap overflow-y-hidden", children: /* @__PURE__ */ N(
50
50
  "div",
51
51
  {
52
52
  ref: u,
53
- className: m(
54
- "relative bottom-[-1px] w-full max-w-full grow-0 shrink-0 basis-full flex items-stretch overflow-x-auto overflow-y-hidden",
53
+ className: b(
54
+ "relative w-full max-w-full grow-0 shrink-0 basis-full flex items-stretch overflow-x-auto overflow-y-hidden",
55
55
  "scrollbar-hidden",
56
- s && "border-b border-border"
56
+ i && "after:content-[''] after:absolute after:bottom-0 after:left-0 after:right-0 after:h-px after:bg-border"
57
57
  ),
58
58
  children: [
59
- l && /* @__PURE__ */ f(
59
+ d && /* @__PURE__ */ f(
60
60
  "div",
61
61
  {
62
- className: "absolute bottom-[-1px] left-0 h-[3px] bg-accent transition-[transform] duration-200 ease-in-out pointer-events-none",
62
+ className: "absolute left-0 h-[3px] bg-accent transition-[transform] duration-200 ease-in-out pointer-events-none bottom-[-1px]",
63
63
  style: {
64
- width: `${l.width}px`,
65
- transform: `translate(${l.left}px)`
64
+ width: `${d.width}px`,
65
+ transform: `translate(${d.left}px)`
66
66
  }
67
67
  }
68
68
  ),
@@ -72,15 +72,15 @@ function A({
72
72
  "button",
73
73
  {
74
74
  ref: (x) => {
75
- d.current[e.id] = x;
75
+ l.current[e.id] = x;
76
76
  },
77
77
  type: "button",
78
78
  onClick: e.disabled ? void 0 : r(e.id, a),
79
79
  disabled: e.disabled,
80
- className: m(
80
+ className: b(
81
81
  "flex items-center bg-transparent border-none shrink-0 text-foreground",
82
82
  o ? "" : "p-0 pb-3.5",
83
- i === "equal" ? "grow shrink-0 basis-[0%] justify-center min-w-0" : !h && "mr-10 max-[500px]:mr-8",
83
+ s === "equal" ? "grow shrink-0 basis-[0%] justify-center min-w-0" : !h && "mr-10 max-[500px]:mr-8",
84
84
  e.disabled && "cursor-not-allowed",
85
85
  !e.disabled && "cursor-pointer",
86
86
  !e.disabled && "hover:text-foreground hover:[&>*]:text-foreground"
@@ -99,14 +99,14 @@ function B({
99
99
  icon: t,
100
100
  label: n,
101
101
  selected: i,
102
- textSize: s = "default",
103
- amount: o
102
+ textSize: o = "default",
103
+ amount: s
104
104
  }) {
105
105
  return /* @__PURE__ */ N(S, { children: [
106
106
  t && /* @__PURE__ */ f(
107
107
  "div",
108
108
  {
109
- className: m(
109
+ className: b(
110
110
  "mr-3",
111
111
  i ? "text-foreground" : "text-secondary-foreground"
112
112
  ),
@@ -116,39 +116,39 @@ function B({
116
116
  /* @__PURE__ */ f(
117
117
  "div",
118
118
  {
119
- className: m(
119
+ className: b(
120
120
  "m-0 p-0 whitespace-nowrap",
121
- s === "default" && "text-sm leading-[17px] font-normal",
122
- s === "unset" && "text-[unset] leading-[unset] font-[unset]",
121
+ o === "default" && "text-sm leading-[17px] font-normal",
122
+ o === "unset" && "text-[unset] leading-[unset] font-[unset]",
123
123
  i ? "text-foreground" : "text-secondary-foreground"
124
124
  ),
125
125
  children: n
126
126
  }
127
127
  ),
128
- !!o && /* @__PURE__ */ f("div", { className: "ml-1.5", children: /* @__PURE__ */ f("div", { className: "py-0.5 px-[9px] text-[11px] leading-[150%] font-normal bg-gray-50 rounded-[19px]", children: o }) })
128
+ !!s && /* @__PURE__ */ f("div", { className: "ml-1.5", children: /* @__PURE__ */ f("div", { className: "py-0.5 px-[9px] text-[11px] leading-[150%] font-normal bg-gray-50 rounded-[19px]", children: s }) })
129
129
  ] });
130
130
  }
131
131
  function F(t, n = 0) {
132
- const [i, s] = g(t), [o, u] = g(n), d = p((l, r) => {
133
- s(l), u(r);
132
+ const [i, o] = g(t), [s, u] = g(n), l = p((d, r) => {
133
+ o(d), u(r);
134
134
  }, []);
135
- return { id: i, index: o, handleTabChange: d };
135
+ return { id: i, index: s, handleTabChange: l };
136
136
  }
137
137
  function I(t) {
138
- const { useLocation: n, useNavigate: i } = T(), { hash: s } = n(), o = i(), u = v(
138
+ const { useLocation: n, useNavigate: i } = T(), { hash: o } = n(), s = i(), u = v(
139
139
  () => t.reduce(
140
140
  (a, c, h) => (a[c.id] = { id: c.id, index: h }, a),
141
141
  {}
142
142
  ),
143
143
  [t]
144
- ), d = v(() => s.slice(1).toLowerCase(), [s]), { id: l, index: r } = u[d] || {}, e = p(
144
+ ), l = v(() => o.slice(1).toLowerCase(), [o]), { id: d, index: r } = u[l] || {}, e = p(
145
145
  (a) => {
146
- o(`#${a}`);
146
+ s(`#${a}`);
147
147
  },
148
- [o]
148
+ [s]
149
149
  );
150
150
  return {
151
- id: l,
151
+ id: d,
152
152
  index: r,
153
153
  handleTabChange: e
154
154
  };
@@ -158,19 +158,19 @@ function M({
158
158
  pathRoot: n,
159
159
  selectedSection: i
160
160
  }) {
161
- const { useNavigate: s } = T(), o = s(), u = v(
161
+ const { useNavigate: o } = T(), s = o(), u = v(
162
162
  () => t.reduce(
163
163
  (e, a, c) => (e[a.id] = { id: a.id, index: c }, e),
164
164
  {}
165
165
  ),
166
166
  [t]
167
- ), d = p(
167
+ ), l = p(
168
168
  (e) => {
169
- o(`${n}/${e}`);
169
+ s(`${n}/${e}`);
170
170
  },
171
- [o, n]
172
- ), { id: l, index: r } = u[i] || {};
173
- return { id: l, index: r, handleTabChange: d };
171
+ [s, n]
172
+ ), { id: d, index: r } = u[i] || {};
173
+ return { id: d, index: r, handleTabChange: l };
174
174
  }
175
175
  export {
176
176
  A as TabControl,
@@ -1,19 +1,18 @@
1
1
  import { EditButton as r } from "./edit-button.js";
2
2
  import { GridTableCellAsset as o, GridTableCellUpdatable as d, GridTableEditable as b } from "./editable-grid-table.js";
3
3
  import { TableCellAsset as i, TableCellUpdatable as T, TableEditable as p } from "./editable-table.js";
4
- import { GridErrorLine as G } from "./grid-error-line.js";
4
+ import { GridErrorLine as m } from "./grid-error-line.js";
5
5
  import { GridLoadingLine as f } from "./grid-loading-line.js";
6
- import { GridTable as C, GridTableBody as s, GridTableCaption as H, GridTableCell as L, GridTableFooter as V, GridTableHead as g, GridTableHeader as E, GridTableRow as S, Td as u, Th as B, gridTableCellVariants as U, gridTableHeadVariants as w, gridTableVariants as y } from "./grid-table.js";
6
+ import { GridTable as C, GridTableBody as s, GridTableCaption as H, GridTableCell as L, GridTableFooter as V, GridTableHead as g, GridTableHeader as E, GridTableRow as u, Td as B, Th as S, gridTableCellVariants as U, gridTableHeadVariants as w, gridTableVariants as y } from "./grid-table.js";
7
7
  import { GridTableLoader as F } from "./grid-table-loader.js";
8
- import { SortableHeadCell as h } from "./sortable-head-cell.js";
9
- import { SortingTableHead as j, Table as k, TableBody as q, TableCaption as v, TableCell as z, TableFooter as D, TableHead as I, TableHeader as J, TableRow as K, tableCellVariants as M, tableHeadVariants as N, tableVariants as O } from "./table.js";
10
- import { TableLoader as Q } from "./table-loader.js";
11
- import { TableLoaderGuard as X } from "./table-loader-guard.js";
12
- import { TableCellSm as Z, TableLineSm as _ } from "./table-sm.js";
13
- import { UpdatedValue as ee } from "./updated-value.js";
8
+ import { SortingTableHead as h, Table as c, TableBody as j, TableCaption as k, TableCell as q, TableFooter as v, TableHead as z, TableHeader as D, TableRow as I, tableCellVariants as J, tableHeadVariants as K, tableVariants as M } from "./table.js";
9
+ import { TableLoader as O } from "./table-loader.js";
10
+ import { TableLoaderGuard as Q } from "./table-loader-guard.js";
11
+ import { TableCellSm as X, TableLineSm as Y } from "./table-sm.js";
12
+ import { UpdatedValue as _ } from "./updated-value.js";
14
13
  export {
15
14
  r as EditButton,
16
- G as GridErrorLine,
15
+ m as GridErrorLine,
17
16
  f as GridLoadingLine,
18
17
  C as GridTable,
19
18
  s as GridTableBody,
@@ -26,31 +25,30 @@ export {
26
25
  g as GridTableHead,
27
26
  E as GridTableHeader,
28
27
  F as GridTableLoader,
29
- S as GridTableRow,
30
- h as SortableHeadCell,
31
- j as SortingTableHead,
32
- k as Table,
33
- q as TableBody,
34
- v as TableCaption,
35
- z as TableCell,
28
+ u as GridTableRow,
29
+ h as SortingTableHead,
30
+ c as Table,
31
+ j as TableBody,
32
+ k as TableCaption,
33
+ q as TableCell,
36
34
  i as TableCellAsset,
37
- Z as TableCellSm,
35
+ X as TableCellSm,
38
36
  T as TableCellUpdatable,
39
37
  p as TableEditable,
40
- D as TableFooter,
41
- I as TableHead,
42
- J as TableHeader,
43
- _ as TableLineSm,
44
- Q as TableLoader,
45
- X as TableLoaderGuard,
46
- K as TableRow,
47
- u as Td,
48
- B as Th,
49
- ee as UpdatedValue,
38
+ v as TableFooter,
39
+ z as TableHead,
40
+ D as TableHeader,
41
+ Y as TableLineSm,
42
+ O as TableLoader,
43
+ Q as TableLoaderGuard,
44
+ I as TableRow,
45
+ B as Td,
46
+ S as Th,
47
+ _ as UpdatedValue,
50
48
  U as gridTableCellVariants,
51
49
  w as gridTableHeadVariants,
52
50
  y as gridTableVariants,
53
- M as tableCellVariants,
54
- N as tableHeadVariants,
55
- O as tableVariants
51
+ J as tableCellVariants,
52
+ K as tableHeadVariants,
53
+ M as tableVariants
56
54
  };
@@ -126,8 +126,8 @@ import "../navbar/navbar-indicator-context.js";
126
126
  import "../app-bar/app-bar.js";
127
127
  import "../navitem/navitem.js";
128
128
  import "../simple-dropdown/simple-dropdown.js";
129
- import "../pool-indicator-icon/pool-indicator-icon.js";
130
129
  import "../progress/progress.js";
130
+ import "../pool-indicator-icon/pool-indicator-icon.js";
131
131
  import "../progress-bar/progress-bar.js";
132
132
  import "../radio-group/radio-group.js";
133
133
  import "../rounded-image/rounded-image.js";
@@ -125,8 +125,8 @@ import "../navbar/navbar-indicator-context.js";
125
125
  import "../app-bar/app-bar.js";
126
126
  import "../navitem/navitem.js";
127
127
  import "../simple-dropdown/simple-dropdown.js";
128
- import "../pool-indicator-icon/pool-indicator-icon.js";
129
128
  import "../progress/progress.js";
129
+ import "../pool-indicator-icon/pool-indicator-icon.js";
130
130
  import "../progress-bar/progress-bar.js";
131
131
  import "../radio-group/radio-group.js";
132
132
  import "../rounded-image/rounded-image.js";