@edu-tosel/design 1.0.46 → 1.0.48

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 (60) hide show
  1. package/README.md +42 -42
  2. package/asset/SVG.d.ts +13 -0
  3. package/asset/SVG.js +4 -0
  4. package/asset/SVG.tsx +27 -23
  5. package/asset/svg/Close.tsx +32 -32
  6. package/asset/svg/Direction.tsx +36 -36
  7. package/asset/svg/Email.tsx +20 -20
  8. package/asset/svg/Icon.d.ts +17 -0
  9. package/asset/svg/Icon.js +28 -0
  10. package/asset/svg/Icon.tsx +186 -0
  11. package/asset/svg/Image.tsx +24 -24
  12. package/asset/svg/Notification.tsx +34 -34
  13. package/asset/svg/Operation.tsx +66 -66
  14. package/asset/svg/Phone.tsx +20 -20
  15. package/asset/svg/Profile.tsx +27 -27
  16. package/asset/svg/Symbol.d.ts +12 -0
  17. package/asset/svg/Symbol.js +21 -0
  18. package/asset/svg/Symbol.tsx +60 -0
  19. package/asset/svg/TOSEL.tsx +63 -63
  20. package/globals.css +226 -226
  21. package/interaction/design/Worm.design.js +2 -1
  22. package/interface/domain/Tag.d.ts +8 -0
  23. package/interface/domain/Tag.js +11 -0
  24. package/interface/domain/index.d.ts +1 -0
  25. package/interface/domain/index.js +1 -0
  26. package/interface/widget/Carousel.d.ts +12 -0
  27. package/interface/widget/Carousel.js +1 -0
  28. package/interface/widget/index.d.ts +1 -0
  29. package/interface/widget/index.js +1 -0
  30. package/layout/index.d.ts +2 -0
  31. package/layout/index.js +2 -0
  32. package/layout/template/Gallery.js +1 -1
  33. package/layout/template/home/Navigation.d.ts +4 -0
  34. package/layout/template/home/Navigation.js +32 -0
  35. package/layout/template/home/Notice.d.ts +14 -0
  36. package/layout/template/home/Notice.js +49 -0
  37. package/layout/template/home/Promotion.d.ts +18 -0
  38. package/layout/template/home/Promotion.js +41 -0
  39. package/layout/template/home/Service.d.ts +16 -0
  40. package/layout/template/home/Service.js +53 -0
  41. package/layout/template/home/Shortcut.d.ts +6 -0
  42. package/layout/template/home/Shortcut.js +15 -0
  43. package/layout/template/home/index.d.ts +17 -0
  44. package/layout/template/home/index.js +17 -0
  45. package/layout/template/home/layout/Carousel.d.ts +5 -0
  46. package/layout/template/home/layout/Carousel.js +43 -0
  47. package/layout/template/home/layout/Footer.d.ts +1 -0
  48. package/layout/template/home/layout/Footer.js +26 -0
  49. package/layout/template/home/layout/Header.d.ts +1 -0
  50. package/layout/template/home/layout/Header.js +34 -0
  51. package/layout/template/home/layout/index.d.ts +3 -0
  52. package/layout/template/home/layout/index.js +12 -0
  53. package/package.json +1 -1
  54. package/tailwind.config.ts +618 -605
  55. package/util/index.d.ts +0 -1
  56. package/util/index.js +0 -1
  57. package/version.txt +1 -1
  58. package/widget/design/Select.design.js +2 -1
  59. /package/layout/{design/Tab.design.d.ts → template/Tab.d.ts} +0 -0
  60. /package/layout/{design/Tab.design.js → template/Tab.js} +0 -0
package/util/index.d.ts CHANGED
@@ -7,4 +7,3 @@ export { default as createSetter } from "./createSetter";
7
7
  export * from "./colors";
8
8
  export * from "./pattern";
9
9
  export * from "./shape";
10
- export * from "../hook";
package/util/index.js CHANGED
@@ -7,4 +7,3 @@ export { default as createSetter } from "./createSetter";
7
7
  export * from "./colors";
8
8
  export * from "./pattern";
9
9
  export * from "./shape";
10
- export * from "../hook";
package/version.txt CHANGED
@@ -1 +1 @@
1
- 1.0.46
1
+ 1.0.48
@@ -1,8 +1,9 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { useEffect, useId, useState } from "react";
3
- import { cn, useFlag } from "../../util";
3
+ import { cn } from "../../util";
4
4
  import { useTransition, animated } from "react-spring";
5
5
  import { useActionStore } from "../../store";
6
+ import { useFlag } from "../../hook";
6
7
  const widthSize = {
7
8
  xs: "w-10",
8
9
  sm: "w-22.5",