highsoft-ui 1.0.111 → 1.0.112
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/Button-Bbc4vmW_.js +45 -0
- package/dist/Container-LAkF4ShX.js +11 -0
- package/dist/CookiePolicyModal-BH2uHybE.js +90 -0
- package/dist/Footer-DY0QJnxb.js +783 -0
- package/dist/GPTInput-DRFGKJ2u.js +66 -0
- package/dist/Header-DbSqXuvO.js +383 -0
- package/dist/Logo-CZ5LYqub.js +194 -0
- package/dist/NewTag-C-3mRyvV.js +26 -0
- package/dist/Notification-_vWBqFiA.js +96 -0
- package/dist/PrefPanel-DmiRZs1n.js +1548 -0
- package/dist/Search-D_fsZ-hm.js +4673 -0
- package/dist/clsx-ROFf4vs9.js +16 -0
- package/dist/components/Button/index.js +2 -81
- package/dist/components/Container/index.js +2 -11
- package/dist/components/Footer/CookiePolicyModal.js +2 -9
- package/dist/components/Footer/index.js +2 -833
- package/dist/components/GPTInput/index.js +2 -86
- package/dist/components/Header/index.js +2 -611
- package/dist/components/Logo/index.js +2 -255
- package/dist/components/NewTag/index.js +2 -54
- package/dist/components/Notification/index.js +2 -100
- package/dist/components/PrefPanel/index.js +2 -1945
- package/dist/components/Search/index.js +2 -9
- package/dist/components/ThemeLoader/index.js +6 -34
- package/dist/components/icons/Bubble.js +37 -52
- package/dist/components/icons/MadeInNorway.js +110 -145
- package/dist/components/icons/Plane.js +17 -23
- package/dist/dist-0f0-S8_q.js +211 -0
- package/dist/dist-CjrKJb_1.js +27 -0
- package/dist/es2015-CzBBLWyD.js +1140 -0
- package/dist/esm-C1TDRARf.js +479 -0
- package/dist/highsoft-ui.css +2 -1
- package/dist/main.js +12 -28
- package/dist/php-client.js +9 -9
- package/dist/php.js +10 -16
- package/dist/utils-C4QGLbxr.js +162 -0
- package/dist/utils.js +2 -11
- package/package.json +4 -4
- package/dist/Announcement03-obPaH4LK.js +0 -23
- package/dist/Check-Cm4roSEj.js +0 -23
- package/dist/CookiePolicyModal-C5FOuvB-.js +0 -82
- package/dist/XClose-CCu1vrNS.js +0 -23
- package/dist/clsx-OuTLNxxd.js +0 -16
- package/dist/extends-hS2Bh-Yp.js +0 -12
- package/dist/index-CUCGgBGk.js +0 -5654
- package/dist/index-CYz8LhDn.js +0 -1110
- package/dist/index-DThcOQDt.js +0 -234
- package/dist/index-hYJmp-0x.js +0 -30
- package/dist/utils-BKDJp1i0.js +0 -140
- /package/dist/{components → lib/components}/Button/index.d.ts +0 -0
- /package/dist/{components → lib/components}/Container/index.d.ts +0 -0
- /package/dist/{components → lib/components}/Footer/CookiePolicyModal.d.ts +0 -0
- /package/dist/{components → lib/components}/Footer/index.d.ts +0 -0
- /package/dist/{components → lib/components}/GPTInput/index.d.ts +0 -0
- /package/dist/{components → lib/components}/Header/index.d.ts +0 -0
- /package/dist/{components → lib/components}/Logo/index.d.ts +0 -0
- /package/dist/{components → lib/components}/NewTag/index.d.ts +0 -0
- /package/dist/{components → lib/components}/Notification/index.d.ts +0 -0
- /package/dist/{components → lib/components}/PrefPanel/index.d.ts +0 -0
- /package/dist/{components → lib/components}/Search/index.d.ts +0 -0
- /package/dist/{components → lib/components}/ThemeLoader/index.d.ts +0 -0
- /package/dist/{components → lib/components}/icons/Bubble.d.ts +0 -0
- /package/dist/{components → lib/components}/icons/MadeInNorway.d.ts +0 -0
- /package/dist/{components → lib/components}/icons/Plane.d.ts +0 -0
- /package/dist/{main.d.ts → lib/main.d.ts} +0 -0
- /package/dist/{php-client.d.ts → lib/php-client.d.ts} +0 -0
- /package/dist/{php.d.ts → lib/php.d.ts} +0 -0
- /package/dist/{utils.d.ts → lib/utils.d.ts} +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
//#region node_modules/clsx/dist/clsx.mjs
|
|
2
|
+
function e(t) {
|
|
3
|
+
var n, r, i = "";
|
|
4
|
+
if (typeof t == "string" || typeof t == "number") i += t;
|
|
5
|
+
else if (typeof t == "object") if (Array.isArray(t)) {
|
|
6
|
+
var a = t.length;
|
|
7
|
+
for (n = 0; n < a; n++) t[n] && (r = e(t[n])) && (i && (i += " "), i += r);
|
|
8
|
+
} else for (r in t) t[r] && (i && (i += " "), i += r);
|
|
9
|
+
return i;
|
|
10
|
+
}
|
|
11
|
+
function t() {
|
|
12
|
+
for (var t, n, r = 0, i = "", a = arguments.length; r < a; r++) (t = arguments[r]) && (n = e(t)) && (i && (i += " "), i += n);
|
|
13
|
+
return i;
|
|
14
|
+
}
|
|
15
|
+
//#endregion
|
|
16
|
+
export { t };
|
|
@@ -1,81 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
import { c as p } from "../../clsx-OuTLNxxd.js";
|
|
4
|
-
import { _ as F } from "../../extends-hS2Bh-Yp.js";
|
|
5
|
-
var Q = function(s) {
|
|
6
|
-
return /* @__PURE__ */ n("svg", F({
|
|
7
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
-
width: 24,
|
|
9
|
-
height: 24,
|
|
10
|
-
fill: "none",
|
|
11
|
-
viewBox: "0 0 24 24"
|
|
12
|
-
}, s, {
|
|
13
|
-
children: /* @__PURE__ */ n("path", {
|
|
14
|
-
stroke: "currentColor",
|
|
15
|
-
strokeLinecap: "round",
|
|
16
|
-
strokeLinejoin: "round",
|
|
17
|
-
strokeWidth: 2,
|
|
18
|
-
d: "M12 2v4m0 12v4M6 12H2m20 0h-4m1.0784 7.0784L16.25 16.25M19.0784 5 16.25 7.8283m-11.3284 11.25L7.75 16.25M4.9216 5 7.75 7.8283"
|
|
19
|
-
})
|
|
20
|
-
}));
|
|
21
|
-
};
|
|
22
|
-
const m = "QF-Hta_attention", h = "QF-Hta_brand", f = "QF-Hta_button", z = "QF-Hta_content", b = "QF-Hta_danger", g = "QF-Hta_full", w = "QF-Hta_loader", x = "QF-Hta_loading", v = "QF-Hta_neutral", L = "QF-Hta_plain", k = "QF-Hta_spin", M = "QF-Hta_success", j = "QF-Hta_transparent", N = "QF-Hta_white", t = {
|
|
23
|
-
attention: m,
|
|
24
|
-
brand: h,
|
|
25
|
-
button: f,
|
|
26
|
-
content: z,
|
|
27
|
-
danger: b,
|
|
28
|
-
full: g,
|
|
29
|
-
loader: w,
|
|
30
|
-
loading: x,
|
|
31
|
-
neutral: v,
|
|
32
|
-
plain: L,
|
|
33
|
-
"size-100": "QF-Hta_size-100",
|
|
34
|
-
"size-200": "QF-Hta_size-200",
|
|
35
|
-
"size-300": "QF-Hta_size-300",
|
|
36
|
-
"size-400": "QF-Hta_size-400",
|
|
37
|
-
"size-50": "QF-Hta_size-50",
|
|
38
|
-
"size-500": "QF-Hta_size-500",
|
|
39
|
-
spin: k,
|
|
40
|
-
success: M,
|
|
41
|
-
transparent: j,
|
|
42
|
-
white: N
|
|
43
|
-
}, W = H(
|
|
44
|
-
({
|
|
45
|
-
children: e,
|
|
46
|
-
variant: s = "neutral",
|
|
47
|
-
size: o = 200,
|
|
48
|
-
fullWidth: i = !1,
|
|
49
|
-
loading: a,
|
|
50
|
-
as: r = "button",
|
|
51
|
-
disabled: c,
|
|
52
|
-
className: l,
|
|
53
|
-
...d
|
|
54
|
-
}, u) => /* @__PURE__ */ _(
|
|
55
|
-
r,
|
|
56
|
-
{
|
|
57
|
-
className: p(
|
|
58
|
-
"hsui-button",
|
|
59
|
-
l,
|
|
60
|
-
t.button,
|
|
61
|
-
t[s],
|
|
62
|
-
t[`size-${o}`],
|
|
63
|
-
{
|
|
64
|
-
[t.full]: i,
|
|
65
|
-
[t.loading]: a
|
|
66
|
-
}
|
|
67
|
-
),
|
|
68
|
-
disabled: c || a,
|
|
69
|
-
type: "button",
|
|
70
|
-
ref: u,
|
|
71
|
-
...d,
|
|
72
|
-
children: [
|
|
73
|
-
a && /* @__PURE__ */ n("span", { className: t.loader, children: /* @__PURE__ */ n(Q, {}) }),
|
|
74
|
-
/* @__PURE__ */ n("span", { className: t.content, children: e })
|
|
75
|
-
]
|
|
76
|
-
}
|
|
77
|
-
)
|
|
78
|
-
);
|
|
79
|
-
export {
|
|
80
|
-
W as Button
|
|
81
|
-
};
|
|
1
|
+
import { t as e } from "../../Button-Bbc4vmW_.js";
|
|
2
|
+
export { e as Button };
|
|
@@ -1,11 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
import { c as e } from "../../clsx-OuTLNxxd.js";
|
|
4
|
-
const i = "mkfCBG_container", m = {
|
|
5
|
-
container: i
|
|
6
|
-
}, x = c(
|
|
7
|
-
({ children: o, className: r, as: n = "div", ...t }, s) => /* @__PURE__ */ a(n, { className: e(r, m.container), ref: s, ...t, children: o })
|
|
8
|
-
);
|
|
9
|
-
export {
|
|
10
|
-
x as Container
|
|
11
|
-
};
|
|
1
|
+
import { t as e } from "../../Container-LAkF4ShX.js";
|
|
2
|
+
export { e as Container };
|
|
@@ -1,9 +1,2 @@
|
|
|
1
|
-
import "
|
|
2
|
-
|
|
3
|
-
import "../../XClose-CCu1vrNS.js";
|
|
4
|
-
import "../Button/index.js";
|
|
5
|
-
import { C as e } from "../../CookiePolicyModal-C5FOuvB-.js";
|
|
6
|
-
import "../../index-DThcOQDt.js";
|
|
7
|
-
export {
|
|
8
|
-
e as default
|
|
9
|
-
};
|
|
1
|
+
import { t as e } from "../../CookiePolicyModal-BH2uHybE.js";
|
|
2
|
+
export { e as default };
|