@pismo/marola 2.1.9 → 2.1.10

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.
@@ -1,12 +1,13 @@
1
1
  import { jsx as i, jsxs as k } from "react/jsx-runtime";
2
2
  import { forwardRef as u } from "react";
3
3
  import { c as l } from "./clsx-OuTLNxxd.js";
4
- import { Icon as C } from "./components/Icon/Icon.js";
5
- import { Typography as N } from "./components/Typography/Typography.js";
4
+ import "./utils/iconsList.js";
5
+ import { Typography as C } from "./components/Typography/Typography.js";
6
6
  import "./components/Input/Input.js";
7
7
  import "./components/Avatar/Avatar.js";
8
8
  import "./components/Button/Button.js";
9
9
  import { Adornment as v } from "./components/Adornment/Adornment.js";
10
+ import { Icon as N } from "./components/Icon/Icon.js";
10
11
  import "./components/Dialog/Dialog.js";
11
12
  import "./components/DatePicker/DatePicker.js";
12
13
  import { Skeleton as f } from "./components/Skeleton/Skeleton.js";
@@ -62,7 +63,7 @@ import './assets/Toggle2.css';const I = "_chip_1wvod_61", P = "_chip__adornment_
62
63
  children: p
63
64
  }
64
65
  )) : /* @__PURE__ */ i("span", { "data-testid": t["data-testid"], ref: d, className: e, children: p });
65
- }), Y = u((t, d) => {
66
+ }), Z = u((t, d) => {
66
67
  const {
67
68
  label: p,
68
69
  className: o,
@@ -105,7 +106,7 @@ import './assets/Toggle2.css';const I = "_chip_1wvod_61", P = "_chip__adornment_
105
106
  _ == null || _.stopPropagation(), _ == null || _.nativeEvent.stopImmediatePropagation(), m();
106
107
  },
107
108
  "aria-disabled": e,
108
- children: /* @__PURE__ */ i(C, { icon: "circle-xmark", size: "1.125rem", color: "rgba(var(--gray-95-rgb), 0.45)" })
109
+ children: /* @__PURE__ */ i(N, { icon: "circle-xmark", size: "1.125rem", color: "rgba(var(--gray-95-rgb), 0.45)" })
109
110
  }
110
111
  )
111
112
  ]
@@ -116,7 +117,7 @@ import './assets/Toggle2.css';const I = "_chip_1wvod_61", P = "_chip__adornment_
116
117
  "row-item--clickable": "_row-item--clickable_8z1a0_13",
117
118
  "row-item--disabled": "_row-item--disabled_8z1a0_19",
118
119
  "row-item__content": "_row-item__content_8z1a0_22"
119
- }, Z = u((t, d) => {
120
+ }, A = u((t, d) => {
120
121
  const { children: p, leftAdornment: o, disabled: r, onClick: a, buttons: s, ariaLabel: e, className: g } = t, m = l(o == null ? void 0 : o.className, h["row-item__adornment"]), w = {
121
122
  onClick: (c) => {
122
123
  r || a && a(c);
@@ -152,7 +153,7 @@ import './assets/Toggle2.css';const I = "_chip_1wvod_61", P = "_chip__adornment_
152
153
  ]
153
154
  }
154
155
  );
155
- }), A = u((t, d) => {
156
+ }), aa = u((t, d) => {
156
157
  const { text: p, isSelected: o = !1, value: r, onChange: a, disabled: s, type: e } = t;
157
158
  return /* @__PURE__ */ k(
158
159
  "label",
@@ -178,13 +179,13 @@ import './assets/Toggle2.css';const I = "_chip_1wvod_61", P = "_chip__adornment_
178
179
  disabled: s
179
180
  }
180
181
  ),
181
- /* @__PURE__ */ i(N, { bold: !0, children: p })
182
+ /* @__PURE__ */ i(C, { bold: !0, children: p })
182
183
  ]
183
184
  }
184
185
  );
185
186
  });
186
187
  export {
187
- Y as C,
188
- Z as R,
189
- A as T
188
+ Z as C,
189
+ A as R,
190
+ aa as T
190
191
  };
@@ -7,7 +7,7 @@ import "../Typography/Typography.js";
7
7
  import "../Input/Input.js";
8
8
  import "../Avatar/Avatar.js";
9
9
  import "../Button/Button.js";
10
- import { C as v } from "../../Toggle-C-6aiSvn.js";
10
+ import { C as v } from "../../Toggle-DPXiwAx3.js";
11
11
  import "../Dialog/Dialog.js";
12
12
  import "../DatePicker/DatePicker.js";
13
13
  import "../Skeleton/Skeleton.js";
@@ -1,4 +1,7 @@
1
1
  import { IconName } from './types';
2
+ export type IconFile = React.FunctionComponent<React.SVGProps<SVGSVGElement> & {
3
+ title?: string | undefined;
4
+ }>;
2
5
  export type IconProps = {
3
6
  /** Icon name */
4
7
  icon: IconName;