@weing-dev/ui-kit-primitive 0.3.2 → 0.4.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.
- package/dist/Divider-m-B4TrPH.js +29 -0
- package/dist/Divider.css +1 -0
- package/dist/Icon-DExqF865.js +1166 -0
- package/dist/bind-D3ZJ5k4I.js +47 -0
- package/dist/calendar.css +1 -0
- package/dist/calendar.d.ts +10 -0
- package/dist/calendar.js +4075 -0
- package/dist/chart.d.ts +2 -0
- package/dist/chart.js +94 -0
- package/dist/color-B71xRiyK.js +384 -0
- package/dist/compiler-runtime-BFrE5JtX.js +326 -0
- package/dist/components/LNB/LNB.context.d.ts +14 -14
- package/dist/components/LNB/LNB.d.ts +8 -6
- package/dist/components/LNB/makeNavigation.d.ts +11 -6
- package/dist/display.css +1 -0
- package/dist/display.d.ts +15 -0
- package/dist/display.js +5280 -0
- package/dist/editor-style.css +7 -0
- package/dist/editor-style.d.ts +0 -0
- package/dist/editor-style.js +1 -0
- package/dist/editor.css +1 -0
- package/dist/editor.d.ts +5 -0
- package/dist/editor.js +338 -0
- package/dist/entry/calendar.d.ts +10 -0
- package/dist/entry/chart.d.ts +2 -0
- package/dist/entry/display.d.ts +15 -0
- package/dist/entry/editor-style.d.ts +0 -0
- package/dist/entry/editor.d.ts +5 -0
- package/dist/entry/feedback.d.ts +6 -0
- package/dist/entry/form.d.ts +17 -0
- package/dist/entry/icon.d.ts +5 -0
- package/dist/entry/navigation.d.ts +9 -0
- package/dist/entry/table.d.ts +3 -0
- package/dist/entry/types.d.ts +1 -1
- package/dist/entry/video-player-style.d.ts +0 -0
- package/dist/entry/video-player.d.ts +3 -0
- package/dist/feedback.css +1 -0
- package/dist/feedback.d.ts +6 -0
- package/dist/feedback.js +385 -0
- package/dist/form.css +1 -0
- package/dist/form.d.ts +17 -0
- package/dist/form.js +3548 -0
- package/dist/icon.d.ts +5 -0
- package/dist/icon.js +18 -0
- package/dist/index.css +1 -7
- package/dist/index.js +4083 -4069
- package/dist/index.umd.cjs +26 -26
- package/dist/navigation.css +1 -0
- package/dist/navigation.d.ts +9 -0
- package/dist/navigation.js +1036 -0
- package/dist/table.css +1 -0
- package/dist/table.d.ts +3 -0
- package/dist/table.js +184 -0
- package/dist/usePopper-DvYrGFkh.js +1038 -0
- package/dist/video-player-style.css +1 -0
- package/dist/video-player-style.d.ts +0 -0
- package/dist/video-player-style.js +1 -0
- package/dist/video-player.css +1 -0
- package/dist/video-player.d.ts +3 -0
- package/dist/video-player.js +1751 -0
- package/package.json +44 -2
- package/dist/components/GlobalStyle/GlobalStyle.d.ts +0 -2
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { c as m, j as d } from "./compiler-runtime-BFrE5JtX.js";
|
|
2
|
+
import { c as p } from "./bind-D3ZJ5k4I.js";
|
|
3
|
+
const _ = "_Divider_1w80l_1", v = "_small_1w80l_5", g = "_large_1w80l_8", f = {
|
|
4
|
+
Divider: _,
|
|
5
|
+
small: v,
|
|
6
|
+
large: g
|
|
7
|
+
}, x = p.bind(f), b = (n) => {
|
|
8
|
+
const e = m.c(10), {
|
|
9
|
+
className: r,
|
|
10
|
+
color: c,
|
|
11
|
+
size: o,
|
|
12
|
+
verticalGap: i
|
|
13
|
+
} = n;
|
|
14
|
+
let s;
|
|
15
|
+
e[0] !== r || e[1] !== o ? (s = x("Divider", o, r), e[0] = r, e[1] = o, e[2] = s) : s = e[2];
|
|
16
|
+
const a = typeof o == "number" ? o : void 0;
|
|
17
|
+
let t;
|
|
18
|
+
e[3] !== c || e[4] !== a || e[5] !== i ? (t = {
|
|
19
|
+
backgroundColor: c,
|
|
20
|
+
height: a,
|
|
21
|
+
marginTop: i,
|
|
22
|
+
marginBottom: i
|
|
23
|
+
}, e[3] = c, e[4] = a, e[5] = i, e[6] = t) : t = e[6];
|
|
24
|
+
let l;
|
|
25
|
+
return e[7] !== s || e[8] !== t ? (l = /* @__PURE__ */ d.jsx("div", { className: s, style: t }), e[7] = s, e[8] = t, e[9] = l) : l = e[9], l;
|
|
26
|
+
};
|
|
27
|
+
export {
|
|
28
|
+
b as D
|
|
29
|
+
};
|
package/dist/Divider.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._Divider_1w80l_1{width:100%;background:var(--Gray-Gray95, #e8e8e9)}._Divider_1w80l_1._small_1w80l_5{height:1px}._Divider_1w80l_1._large_1w80l_8{height:8px}
|