@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
package/dist/icon.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { Icon } from '../components/Icon/Icon';
|
|
2
|
+
export { IconProvider } from '../components/Icon/context';
|
|
3
|
+
export { ICON_NAMES } from '../components/Icon/Icon.constant';
|
|
4
|
+
export type { IconName, StrictIconProps } from '../components/Icon/Icon';
|
|
5
|
+
export type { IconProviderProps, IconRegistry, IconComponent, DefaultIconName, } from '../components/Icon/context';
|
package/dist/icon.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { c as n, I as c } from "./Icon-DExqF865.js";
|
|
2
|
+
import { b as I, a as l } from "./Icon-DExqF865.js";
|
|
3
|
+
import { j as s } from "./compiler-runtime-BFrE5JtX.js";
|
|
4
|
+
import a from "react";
|
|
5
|
+
const m = (o) => {
|
|
6
|
+
const {
|
|
7
|
+
children: t,
|
|
8
|
+
icons: e
|
|
9
|
+
} = o, r = a.useRef(null);
|
|
10
|
+
return r.current || (r.current = n({
|
|
11
|
+
icons: e
|
|
12
|
+
})), /* @__PURE__ */ s.jsx(c, { value: r.current, children: t });
|
|
13
|
+
};
|
|
14
|
+
export {
|
|
15
|
+
I as ICON_NAMES,
|
|
16
|
+
l as Icon,
|
|
17
|
+
m as IconProvider
|
|
18
|
+
};
|