@senestia/ui 0.1.0-beta.00c7f75

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.
@@ -0,0 +1,684 @@
1
+ import e, { useState as t } from "react";
2
+ import { Circle as n, Eye as r, Info as i, Search as a, X as o, XCircle as s } from "lucide-react";
3
+ import { jsx as c, jsxs as l } from "react/jsx-runtime";
4
+ //#region \0rolldown/runtime.js
5
+ var u = Object.defineProperty, d = (e, t) => {
6
+ let n = {};
7
+ for (var r in e) u(n, r, {
8
+ get: e[r],
9
+ enumerable: !0
10
+ });
11
+ return t || u(n, Symbol.toStringTag, { value: "Module" }), n;
12
+ }, f = "Sarabun, sans-serif", p = {
13
+ Gray: {
14
+ bg: "#f9fafb",
15
+ border: "#eaecf0",
16
+ text: "#06080b",
17
+ dot: "#667085"
18
+ },
19
+ Primary: {
20
+ bg: "#f4f6f9",
21
+ border: "#e6ebf2",
22
+ text: "#1e2b3b",
23
+ dot: "#6c8fbe"
24
+ },
25
+ Error: {
26
+ bg: "#fef0ef",
27
+ border: "#fbd2d0",
28
+ text: "#cc1a11",
29
+ dot: "#f04438"
30
+ },
31
+ Warning: {
32
+ bg: "#fff9ee",
33
+ border: "#ffedcc",
34
+ text: "#db8f02",
35
+ dot: "#f79009"
36
+ },
37
+ Success: {
38
+ bg: "#f0fdfa",
39
+ border: "#d2f9f1",
40
+ text: "#15a686",
41
+ dot: "#12b76a"
42
+ },
43
+ "Blue light": {
44
+ bg: "#f0f9ff",
45
+ border: "#b9e6fe",
46
+ text: "#026aa2",
47
+ dot: "#0ba5ec"
48
+ },
49
+ Blue: {
50
+ bg: "#eff8ff",
51
+ border: "#b2ddff",
52
+ text: "#175cd3",
53
+ dot: "#2e90fa"
54
+ },
55
+ Indigo: {
56
+ bg: "#eef4ff",
57
+ border: "#c7d7fe",
58
+ text: "#3538cd",
59
+ dot: "#6172f3"
60
+ },
61
+ Purple: {
62
+ bg: "#f4f3ff",
63
+ border: "#d9d6fe",
64
+ text: "#5925dc",
65
+ dot: "#7a5af8"
66
+ },
67
+ Pink: {
68
+ bg: "#fef6fb",
69
+ border: "#fce7f6",
70
+ text: "#c11574",
71
+ dot: "#ee46bc"
72
+ },
73
+ Orange: {
74
+ bg: "#fef6ee",
75
+ border: "#ffd6ae",
76
+ text: "#b93815",
77
+ dot: "#ef6820"
78
+ },
79
+ "Gray blue": {
80
+ bg: "#f8f9fc",
81
+ border: "#d5d9eb",
82
+ text: "#363f72",
83
+ dot: "#717bbc"
84
+ }
85
+ }, m = {
86
+ sm: {
87
+ paddingX: 8,
88
+ paddingY: 2,
89
+ paddingXClose: {
90
+ left: 8,
91
+ right: 4
92
+ },
93
+ paddingXDot: {
94
+ left: 6,
95
+ right: 8
96
+ },
97
+ paddingPill: 5,
98
+ fontSize: 12,
99
+ lineHeight: 18,
100
+ dotSize: 6,
101
+ iconSize: 12,
102
+ closeSize: 12
103
+ },
104
+ md: {
105
+ paddingX: 8,
106
+ paddingY: 2,
107
+ paddingXClose: {
108
+ left: 8,
109
+ right: 4
110
+ },
111
+ paddingXDot: {
112
+ left: 6,
113
+ right: 8
114
+ },
115
+ paddingPill: 6,
116
+ fontSize: 14,
117
+ lineHeight: 20,
118
+ dotSize: 6,
119
+ iconSize: 14,
120
+ closeSize: 14
121
+ },
122
+ lg: {
123
+ paddingX: 12,
124
+ paddingY: 4,
125
+ paddingXClose: {
126
+ left: 12,
127
+ right: 6
128
+ },
129
+ paddingXDot: {
130
+ left: 8,
131
+ right: 12
132
+ },
133
+ paddingPill: 8,
134
+ fontSize: 14,
135
+ lineHeight: 20,
136
+ dotSize: 8,
137
+ iconSize: 16,
138
+ closeSize: 16
139
+ }
140
+ }, h = ({ label: e = "Label", color: t = "Gray", size: n = "sm", type: r = "Idle", icon: i, onClose: a }) => {
141
+ let s = p[t], u = m[n], d = {
142
+ display: "inline-flex",
143
+ alignItems: "center",
144
+ backgroundColor: s.bg,
145
+ border: `1px solid ${s.border}`,
146
+ borderRadius: 16,
147
+ boxSizing: "border-box",
148
+ width: "fit-content",
149
+ fontFamily: f
150
+ }, h = {
151
+ fontSize: u.fontSize,
152
+ lineHeight: `${u.lineHeight}px`,
153
+ fontWeight: 500,
154
+ color: s.text,
155
+ whiteSpace: "nowrap",
156
+ fontFamily: f,
157
+ margin: 0
158
+ };
159
+ if (r === "Idle") return /* @__PURE__ */ c("span", {
160
+ style: {
161
+ ...d,
162
+ padding: `${u.paddingY}px ${u.paddingX}px`
163
+ },
164
+ children: /* @__PURE__ */ c("span", {
165
+ style: h,
166
+ children: e
167
+ })
168
+ });
169
+ if (r === "Status Dot") return /* @__PURE__ */ l("span", {
170
+ style: {
171
+ ...d,
172
+ gap: 4,
173
+ paddingTop: u.paddingY,
174
+ paddingBottom: u.paddingY,
175
+ paddingLeft: u.paddingXDot.left,
176
+ paddingRight: u.paddingXDot.right
177
+ },
178
+ children: [/* @__PURE__ */ c("span", { style: {
179
+ display: "inline-block",
180
+ width: u.dotSize,
181
+ height: u.dotSize,
182
+ borderRadius: "50%",
183
+ backgroundColor: s.dot,
184
+ flexShrink: 0
185
+ } }), /* @__PURE__ */ c("span", {
186
+ style: h,
187
+ children: e
188
+ })]
189
+ });
190
+ if (r === "Closable") return /* @__PURE__ */ l("span", {
191
+ style: {
192
+ ...d,
193
+ gap: 2,
194
+ paddingTop: u.paddingY,
195
+ paddingBottom: u.paddingY,
196
+ paddingLeft: u.paddingXClose.left,
197
+ paddingRight: u.paddingXClose.right
198
+ },
199
+ children: [/* @__PURE__ */ c("span", {
200
+ style: h,
201
+ children: e
202
+ }), /* @__PURE__ */ c("button", {
203
+ onClick: a,
204
+ style: {
205
+ display: "inline-flex",
206
+ alignItems: "center",
207
+ justifyContent: "center",
208
+ background: "none",
209
+ border: "none",
210
+ padding: 2,
211
+ borderRadius: 3,
212
+ cursor: "pointer",
213
+ color: s.text,
214
+ flexShrink: 0,
215
+ lineHeight: 1
216
+ },
217
+ "aria-label": "Remove",
218
+ children: /* @__PURE__ */ c(o, {
219
+ size: u.closeSize,
220
+ strokeWidth: 2.5
221
+ })
222
+ })]
223
+ });
224
+ if (r === "Pill color") {
225
+ let e = i;
226
+ return /* @__PURE__ */ c("span", {
227
+ style: {
228
+ ...d,
229
+ padding: u.paddingPill
230
+ },
231
+ children: e ? /* @__PURE__ */ c(e, {
232
+ size: u.iconSize,
233
+ color: s.dot,
234
+ strokeWidth: 2
235
+ }) : /* @__PURE__ */ c("span", { style: {
236
+ display: "inline-block",
237
+ width: u.iconSize,
238
+ height: u.iconSize,
239
+ borderRadius: "50%",
240
+ backgroundColor: s.dot
241
+ } })
242
+ });
243
+ }
244
+ return null;
245
+ }, g = /* @__PURE__ */ d({
246
+ ciPrimary: () => y,
247
+ font: () => w,
248
+ grayNeutral: () => _,
249
+ interactive: () => x,
250
+ oePrimary: () => b,
251
+ padding: () => S,
252
+ radius: () => C,
253
+ status: () => v
254
+ }), _ = {
255
+ fgHigh: "#1B1D22",
256
+ fgMid: "#6A6E83",
257
+ fgLow: "#9A9DAD",
258
+ bgWhite: "#FFFFFF",
259
+ bgLightgray: "#F8F8F9",
260
+ bgDisabled: "#F3F4F6",
261
+ borderMidgray: "#CFD1D9",
262
+ borderLight: "#EBECEF",
263
+ borderDisabled: "#E5EAF1",
264
+ gray300: "#D0D5DD",
265
+ bgSkeleton: "#EEF0F3",
266
+ bgDisabledStrong: "#EBECEF"
267
+ }, v = {
268
+ error: "#DB1439",
269
+ warning: "#DB8F02",
270
+ success: "#15A686"
271
+ }, y = {
272
+ fgLow: "#C4B3F6",
273
+ fgHigh: "#802CEB",
274
+ bgLow: "#D4C9F6",
275
+ bgMid: "#802CEB",
276
+ bgHigh: "#5A1DA9",
277
+ borderMid: "#996CF3",
278
+ borderHigh: "#802CEB"
279
+ }, b = {
280
+ fgLow: "#5273A1",
281
+ fgHigh: "#3A5274",
282
+ bgLowest: "#EFF2F6",
283
+ bgLow: "#6E90BF",
284
+ bgMid: "#5273A1",
285
+ bgHigh: "#3A5274",
286
+ borderLowest: "#C6D2E3",
287
+ borderLow: "#9CB3D2",
288
+ borderMid: "#5273A1",
289
+ p300: "#809BBF",
290
+ linkBlue: "#3C5BD5"
291
+ }, x = {
292
+ activeBorder: b.fgLow,
293
+ hoverBorder: "#3B82F6",
294
+ focusRing: "#D7DFEA",
295
+ invalidBorder: v.error
296
+ }, S = {
297
+ "PD-0": 0,
298
+ "PD-1": 1,
299
+ "PD-2": 2,
300
+ "PD-3": 4,
301
+ "PD-4": 6,
302
+ "PD-5": 8,
303
+ "PD-6": 12,
304
+ "PD-7": 16,
305
+ "PD-8": 24,
306
+ "PD-9": 32,
307
+ "PD-10": 40,
308
+ "PD-11": 48,
309
+ "PD-12": 56,
310
+ "PD-13": 64,
311
+ "PD-14": 72,
312
+ "PD-15": 80
313
+ }, C = {
314
+ "CR-0": 0,
315
+ "CR-1": 2,
316
+ "CR-2": 4,
317
+ "CR-3": 8,
318
+ "CR-4": 12,
319
+ "CR-5": 16,
320
+ "CR-6": 20,
321
+ "CR-7": 24,
322
+ "CR-8": 32,
323
+ "CR-9": 48,
324
+ "CR-10": 100
325
+ }, w = "Sarabun, sans-serif", T = {
326
+ sm: {
327
+ inputHeight: 32,
328
+ labelFontSize: 12,
329
+ labelLineHeight: 18,
330
+ inputFontSize: 14,
331
+ inputLineHeight: 20,
332
+ helperFontSize: 12,
333
+ helperLineHeight: 18,
334
+ paddingX: 12,
335
+ iconSize: 16,
336
+ labelIconSize: 12,
337
+ labelGap: 4,
338
+ helperGap: 4,
339
+ leadingPl: 8,
340
+ leadingPr: 4,
341
+ leadingPy: 6,
342
+ chevronSize: 14,
343
+ counterPadding: "1px 4px",
344
+ counterRadius: 4,
345
+ counterFontSize: 12,
346
+ counterLineHeight: 18,
347
+ skeletonLabelH: 18,
348
+ skeletonInputH: 32
349
+ },
350
+ md: {
351
+ inputHeight: 40,
352
+ labelFontSize: 14,
353
+ labelLineHeight: 20,
354
+ inputFontSize: 16,
355
+ inputLineHeight: 24,
356
+ helperFontSize: 14,
357
+ helperLineHeight: 20,
358
+ paddingX: 16,
359
+ iconSize: 20,
360
+ labelIconSize: 14,
361
+ labelGap: 6,
362
+ helperGap: 4,
363
+ leadingPl: 12,
364
+ leadingPr: 8,
365
+ leadingPy: 8,
366
+ chevronSize: 16,
367
+ counterPadding: "2px 8px",
368
+ counterRadius: 8,
369
+ counterFontSize: 14,
370
+ counterLineHeight: 20,
371
+ skeletonLabelH: 20,
372
+ skeletonInputH: 40
373
+ },
374
+ lg: {
375
+ inputHeight: 48,
376
+ labelFontSize: 16,
377
+ labelLineHeight: 24,
378
+ inputFontSize: 16,
379
+ inputLineHeight: 24,
380
+ helperFontSize: 14,
381
+ helperLineHeight: 20,
382
+ paddingX: 16,
383
+ iconSize: 20,
384
+ labelIconSize: 16,
385
+ labelGap: 8,
386
+ helperGap: 6,
387
+ leadingPl: 16,
388
+ leadingPr: 8,
389
+ leadingPy: 12,
390
+ chevronSize: 16,
391
+ counterPadding: "2px 8px",
392
+ counterRadius: 8,
393
+ counterFontSize: 14,
394
+ counterLineHeight: 20,
395
+ skeletonLabelH: 24,
396
+ skeletonInputH: 48
397
+ }
398
+ }, E = `0 0 0 2px ${x.focusRing}`, D = (e) => {
399
+ let t = e ?? "Idle";
400
+ return {
401
+ s: t,
402
+ isInvalid: t.includes("invalid"),
403
+ isHover: t.includes("hover"),
404
+ isActive: t === "Active" || t === "Keyboard focus" || t.endsWith("active"),
405
+ isDisabled: t === "Disable",
406
+ isSkeleton: t === "Skeleton",
407
+ isFilled: t.includes("Filled"),
408
+ isKeyboardFocus: t === "Keyboard focus"
409
+ };
410
+ }, O = {
411
+ clear: s,
412
+ search: a,
413
+ password: r
414
+ }, k = ({ label: r, required: a = !1, labelRemark: o, placeholder: s = "Placeholder", value: u, onChange: d, helperText: f, errorText: p, state: m = "Idle", size: h = "md", leadingDropdownText: g, leadingIcon: y, counter: b, unit: S, trailingIcon: C, trailingIcons: k, trailingIconSeparator: A = !1 }) => {
415
+ let [j, M] = t(u ?? ""), N = (e) => {
416
+ M(e), d?.(e);
417
+ }, { isInvalid: P, isHover: F, isActive: I, isDisabled: L, isSkeleton: R, isKeyboardFocus: z } = D(m), B = T[h], V = P ? x.invalidBorder : I || z ? x.activeBorder : F ? x.hoverBorder : _.borderMidgray, H = L ? _.bgDisabled : F ? _.bgLightgray : _.bgWhite, U = L ? _.fgLow : _.fgMid, W = L ? _.fgLow : _.fgHigh, G = L ? _.fgLow : _.fgHigh, K = L ? _.fgLow : _.fgMid, q = P ? v.error : _.fgMid;
418
+ if (R) return /* @__PURE__ */ l("div", {
419
+ style: {
420
+ width: 320,
421
+ display: "flex",
422
+ flexDirection: "column",
423
+ gap: B.labelGap
424
+ },
425
+ children: [/* @__PURE__ */ c("div", { style: {
426
+ height: B.skeletonLabelH,
427
+ background: _.bgSkeleton,
428
+ borderRadius: 6
429
+ } }), /* @__PURE__ */ c("div", { style: {
430
+ height: B.skeletonInputH,
431
+ background: _.bgSkeleton,
432
+ border: `1px solid ${_.bgSkeleton}`,
433
+ borderRadius: 24
434
+ } })]
435
+ });
436
+ let J = y === !0 ? n : y || null, Y = k?.length ? k : C ? [C] : [], X = P ? p : f, Z = {
437
+ fontFamily: w,
438
+ fontWeight: 500
439
+ };
440
+ return /* @__PURE__ */ l("div", {
441
+ style: {
442
+ width: 320,
443
+ display: "flex",
444
+ flexDirection: "column",
445
+ gap: B.helperGap
446
+ },
447
+ children: [/* @__PURE__ */ l("div", {
448
+ style: {
449
+ display: "flex",
450
+ flexDirection: "column",
451
+ gap: B.labelGap,
452
+ width: "100%"
453
+ },
454
+ children: [/* @__PURE__ */ l("div", {
455
+ style: {
456
+ display: "flex",
457
+ alignItems: "center",
458
+ gap: 4,
459
+ width: "100%"
460
+ },
461
+ children: [
462
+ /* @__PURE__ */ l("div", {
463
+ style: {
464
+ display: "flex",
465
+ flex: "1 0 0",
466
+ alignItems: "center",
467
+ gap: B.labelIconSize === 12 ? 4 : 6,
468
+ minWidth: 0
469
+ },
470
+ children: [/* @__PURE__ */ c("span", {
471
+ style: {
472
+ ...Z,
473
+ fontSize: B.labelFontSize,
474
+ lineHeight: `${B.labelLineHeight}px`,
475
+ color: U,
476
+ whiteSpace: "nowrap",
477
+ overflow: "hidden",
478
+ textOverflow: "ellipsis"
479
+ },
480
+ children: r
481
+ }), /* @__PURE__ */ c(i, {
482
+ size: B.labelIconSize,
483
+ color: K,
484
+ strokeWidth: 1.8,
485
+ style: { flexShrink: 0 }
486
+ })]
487
+ }),
488
+ o && /* @__PURE__ */ c("span", {
489
+ style: {
490
+ ...Z,
491
+ fontSize: B.labelFontSize,
492
+ lineHeight: `${B.labelLineHeight}px`,
493
+ color: U,
494
+ whiteSpace: "nowrap",
495
+ flexShrink: 0
496
+ },
497
+ children: o
498
+ }),
499
+ a && /* @__PURE__ */ c("span", {
500
+ style: {
501
+ color: v.error,
502
+ fontWeight: 800,
503
+ flexShrink: 0
504
+ },
505
+ children: "*"
506
+ })
507
+ ]
508
+ }), /* @__PURE__ */ l("div", {
509
+ style: {
510
+ background: H,
511
+ border: `1px solid ${V}`,
512
+ height: B.inputHeight,
513
+ width: "100%",
514
+ borderRadius: 24,
515
+ display: "flex",
516
+ alignItems: g ? "stretch" : "center",
517
+ ...g ? {} : {
518
+ gap: 8,
519
+ padding: `0 ${B.paddingX}px`
520
+ },
521
+ overflow: "hidden",
522
+ boxShadow: I || z ? E : "none",
523
+ opacity: L ? .7 : 1,
524
+ boxSizing: "border-box"
525
+ },
526
+ children: [g ? /* @__PURE__ */ l("div", {
527
+ style: {
528
+ display: "flex",
529
+ alignItems: "center",
530
+ gap: 4,
531
+ background: _.bgWhite,
532
+ padding: `${B.leadingPy}px ${B.leadingPr}px ${B.leadingPy}px ${B.leadingPl}px`,
533
+ flexShrink: 0
534
+ },
535
+ children: [/* @__PURE__ */ c("span", {
536
+ style: {
537
+ ...Z,
538
+ fontSize: B.inputFontSize,
539
+ lineHeight: `${B.inputLineHeight}px`,
540
+ color: _.fgHigh,
541
+ whiteSpace: "nowrap"
542
+ },
543
+ children: g
544
+ }), /* @__PURE__ */ c("svg", {
545
+ width: B.chevronSize,
546
+ height: B.chevronSize,
547
+ viewBox: "0 0 16 16",
548
+ fill: "none",
549
+ children: /* @__PURE__ */ c("path", {
550
+ d: "M4 6L8 10L12 6",
551
+ stroke: _.fgHigh,
552
+ strokeWidth: "1.5",
553
+ strokeLinecap: "round",
554
+ strokeLinejoin: "round"
555
+ })
556
+ })]
557
+ }) : J ? /* @__PURE__ */ c(J, {
558
+ size: B.iconSize,
559
+ color: G,
560
+ strokeWidth: 1.6,
561
+ style: { flexShrink: 0 }
562
+ }) : null, /* @__PURE__ */ l("div", {
563
+ style: {
564
+ flex: "1 0 0",
565
+ display: "flex",
566
+ alignItems: "center",
567
+ gap: 8,
568
+ height: "100%",
569
+ minWidth: 0,
570
+ ...g ? {
571
+ borderLeft: `1px solid ${_.borderLight}`,
572
+ padding: "0 12px"
573
+ } : {}
574
+ },
575
+ children: [
576
+ /* @__PURE__ */ c("input", {
577
+ type: "text",
578
+ value: j,
579
+ onChange: (e) => N(e.target.value),
580
+ placeholder: s,
581
+ disabled: L,
582
+ style: {
583
+ ...Z,
584
+ flex: "1 0 0",
585
+ border: "none",
586
+ outline: "none",
587
+ background: "transparent",
588
+ fontSize: B.inputFontSize,
589
+ lineHeight: `${B.inputLineHeight}px`,
590
+ color: W,
591
+ width: "100%",
592
+ minWidth: 0,
593
+ overflow: "hidden",
594
+ textOverflow: "ellipsis",
595
+ whiteSpace: "nowrap",
596
+ cursor: L ? "not-allowed" : "text"
597
+ }
598
+ }),
599
+ b && /* @__PURE__ */ l("div", {
600
+ style: {
601
+ background: _.bgLightgray,
602
+ display: "flex",
603
+ gap: 2,
604
+ alignItems: "center",
605
+ justifyContent: "center",
606
+ padding: B.counterPadding,
607
+ borderRadius: B.counterRadius,
608
+ flexShrink: 0,
609
+ opacity: L ? .7 : 1
610
+ },
611
+ children: [/* @__PURE__ */ c("span", {
612
+ style: {
613
+ ...Z,
614
+ fontSize: B.counterFontSize,
615
+ lineHeight: `${B.counterLineHeight}px`,
616
+ color: _.fgHigh
617
+ },
618
+ children: b.value
619
+ }), /* @__PURE__ */ l("span", {
620
+ style: {
621
+ ...Z,
622
+ fontSize: B.counterFontSize,
623
+ lineHeight: `${B.counterLineHeight}px`,
624
+ color: _.fgMid
625
+ },
626
+ children: ["/ ", b.max]
627
+ })]
628
+ }),
629
+ S && /* @__PURE__ */ c("span", {
630
+ style: {
631
+ ...Z,
632
+ fontSize: B.inputFontSize,
633
+ lineHeight: `${B.inputLineHeight}px`,
634
+ color: _.fgHigh,
635
+ whiteSpace: "nowrap",
636
+ flexShrink: 0,
637
+ maxWidth: 64,
638
+ overflow: "hidden"
639
+ },
640
+ children: S
641
+ }),
642
+ Y.length > 0 && /* @__PURE__ */ c("div", {
643
+ style: {
644
+ display: "flex",
645
+ alignItems: "center",
646
+ gap: 4,
647
+ flexShrink: 0
648
+ },
649
+ children: Y.map((t, n) => {
650
+ let r = O[t];
651
+ return /* @__PURE__ */ l(e.Fragment, { children: [A && n > 0 && /* @__PURE__ */ c("div", { style: {
652
+ width: 1,
653
+ height: B.iconSize,
654
+ background: _.gray300,
655
+ flexShrink: 0,
656
+ alignSelf: "center"
657
+ } }), /* @__PURE__ */ c(r, {
658
+ size: B.iconSize,
659
+ color: G,
660
+ strokeWidth: 1.6,
661
+ style: { flexShrink: 0 }
662
+ })] }, `${t}-${n}`);
663
+ })
664
+ })
665
+ ]
666
+ })]
667
+ })]
668
+ }), X && /* @__PURE__ */ c("p", {
669
+ style: {
670
+ ...Z,
671
+ margin: 0,
672
+ fontSize: B.helperFontSize,
673
+ lineHeight: `${B.helperLineHeight}px`,
674
+ color: q,
675
+ width: "100%"
676
+ },
677
+ children: X
678
+ })]
679
+ });
680
+ }, A = g;
681
+ //#endregion
682
+ export { h as Badge, k as InputField, y as ciPrimary, w as font, _ as grayNeutral, x as interactive, b as oePrimary, S as padding, C as radius, v as status, A as tokens };
683
+
684
+ //# sourceMappingURL=senestia-ui.es.js.map