@weing-dev/ui-kit-primitive 0.3.1 → 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.
Files changed (63) hide show
  1. package/dist/Divider-m-B4TrPH.js +29 -0
  2. package/dist/Divider.css +1 -0
  3. package/dist/Icon-DExqF865.js +1166 -0
  4. package/dist/bind-D3ZJ5k4I.js +47 -0
  5. package/dist/calendar.css +1 -0
  6. package/dist/calendar.d.ts +10 -0
  7. package/dist/calendar.js +4075 -0
  8. package/dist/chart.d.ts +2 -0
  9. package/dist/chart.js +94 -0
  10. package/dist/color-B71xRiyK.js +384 -0
  11. package/dist/compiler-runtime-BFrE5JtX.js +326 -0
  12. package/dist/components/Form/Dropdown/Dropdown.d.ts +2 -1
  13. package/dist/components/LNB/LNB.context.d.ts +14 -14
  14. package/dist/components/LNB/LNB.d.ts +8 -6
  15. package/dist/components/LNB/makeNavigation.d.ts +11 -6
  16. package/dist/display.css +1 -0
  17. package/dist/display.d.ts +15 -0
  18. package/dist/display.js +5280 -0
  19. package/dist/editor-style.css +7 -0
  20. package/dist/editor-style.d.ts +0 -0
  21. package/dist/editor-style.js +1 -0
  22. package/dist/editor.css +1 -0
  23. package/dist/editor.d.ts +5 -0
  24. package/dist/editor.js +338 -0
  25. package/dist/entry/calendar.d.ts +10 -0
  26. package/dist/entry/chart.d.ts +2 -0
  27. package/dist/entry/display.d.ts +15 -0
  28. package/dist/entry/editor-style.d.ts +0 -0
  29. package/dist/entry/editor.d.ts +5 -0
  30. package/dist/entry/feedback.d.ts +6 -0
  31. package/dist/entry/form.d.ts +17 -0
  32. package/dist/entry/icon.d.ts +5 -0
  33. package/dist/entry/navigation.d.ts +9 -0
  34. package/dist/entry/table.d.ts +3 -0
  35. package/dist/entry/types.d.ts +1 -1
  36. package/dist/entry/video-player-style.d.ts +0 -0
  37. package/dist/entry/video-player.d.ts +3 -0
  38. package/dist/feedback.css +1 -0
  39. package/dist/feedback.d.ts +6 -0
  40. package/dist/feedback.js +385 -0
  41. package/dist/form.css +1 -0
  42. package/dist/form.d.ts +17 -0
  43. package/dist/form.js +3548 -0
  44. package/dist/icon.d.ts +5 -0
  45. package/dist/icon.js +18 -0
  46. package/dist/index.css +1 -7
  47. package/dist/index.js +3947 -3931
  48. package/dist/index.umd.cjs +26 -26
  49. package/dist/navigation.css +1 -0
  50. package/dist/navigation.d.ts +9 -0
  51. package/dist/navigation.js +1036 -0
  52. package/dist/table.css +1 -0
  53. package/dist/table.d.ts +3 -0
  54. package/dist/table.js +184 -0
  55. package/dist/usePopper-DvYrGFkh.js +1038 -0
  56. package/dist/video-player-style.css +1 -0
  57. package/dist/video-player-style.d.ts +0 -0
  58. package/dist/video-player-style.js +1 -0
  59. package/dist/video-player.css +1 -0
  60. package/dist/video-player.d.ts +3 -0
  61. package/dist/video-player.js +1751 -0
  62. package/package.json +44 -2
  63. 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
+ };