@typlog/ui 0.1.0 → 0.2.0
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.
- package/dist/index.js +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -128,14 +128,14 @@ const Ut = /* @__PURE__ */ u({
|
|
128
128
|
function w(s, e, t) {
|
129
129
|
const o = $(s), i = ve(e);
|
130
130
|
return z(() => ({
|
131
|
-
...ot(o, t),
|
131
|
+
...ot(o.value, t),
|
132
132
|
...i
|
133
133
|
}));
|
134
134
|
}
|
135
135
|
function ot(s, e) {
|
136
136
|
const t = {};
|
137
137
|
return Object.keys(s).forEach((o) => {
|
138
|
-
e.indexOf(o)
|
138
|
+
e.indexOf(o) === -1 && (t[o] = s[o]);
|
139
139
|
}), t;
|
140
140
|
}
|
141
141
|
const st = {
|
@@ -1629,6 +1629,7 @@ const Sa = /* @__PURE__ */ u({
|
|
1629
1629
|
const e = s;
|
1630
1630
|
return (t, o) => (d(), b("span", {
|
1631
1631
|
class: "ui-IconCircle",
|
1632
|
+
"data-radius": "full",
|
1632
1633
|
"data-variant": e.variant,
|
1633
1634
|
"data-size": e.size,
|
1634
1635
|
"data-accent-color": e.color
|