@uniai-fe/uds-templates 0.1.16 → 0.1.18

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 (93) hide show
  1. package/dist/styles.css +139 -10
  2. package/package.json +18 -11
  3. package/src/auth/common/complete/Template.tsx +3 -0
  4. package/src/auth/common/complete/types.ts +4 -1
  5. package/src/auth/common/find/markup/CodeStep.tsx +2 -1
  6. package/src/auth/common/find/markup/InfoStep.tsx +2 -1
  7. package/src/auth/common/find/styles/result.scss +1 -1
  8. package/src/auth/find-password/markup/StepResetPassword.tsx +2 -1
  9. package/src/auth/login/markup/FormField.tsx +2 -1
  10. package/src/auth/signup/markup/AccountForm.tsx +2 -1
  11. package/src/auth/signup/markup/Complete.tsx +2 -1
  12. package/src/auth/signup/markup/UserInfoForm.tsx +2 -1
  13. package/src/auth/signup/markup/VerificationForm.tsx +4 -2
  14. package/src/index.scss +1 -0
  15. package/src/index.tsx +1 -0
  16. package/src/modal/core/components/FooterButtons.tsx +4 -1
  17. package/src/modal/templates/Dialog.tsx +4 -2
  18. package/src/modal/types/footer.ts +4 -2
  19. package/src/page-frame/container/index.scss +14 -8
  20. package/src/page-frame/desktop/components/header/Container.tsx +22 -0
  21. package/src/page-frame/desktop/components/header/Section.tsx +20 -0
  22. package/src/page-frame/desktop/components/header/index.tsx +19 -0
  23. package/src/page-frame/desktop/components/header/util/Button.tsx +23 -0
  24. package/src/page-frame/desktop/components/header/util/Container.tsx +18 -0
  25. package/src/page-frame/desktop/components/header/util/Item.tsx +13 -0
  26. package/src/page-frame/desktop/components/header/util/Logout.tsx +26 -0
  27. package/src/page-frame/desktop/components/header/util/setting/Button.tsx +39 -0
  28. package/src/page-frame/desktop/components/index.tsx +15 -0
  29. package/src/page-frame/desktop/components/nav/Button.tsx +24 -0
  30. package/src/page-frame/desktop/components/nav/Container.tsx +70 -0
  31. package/src/page-frame/desktop/components/nav/Logo.tsx +46 -0
  32. package/src/page-frame/desktop/components/nav/index.tsx +5 -0
  33. package/src/page-frame/desktop/components/page/Container.tsx +13 -0
  34. package/src/page-frame/desktop/components/page/ServiceFrame.tsx +15 -0
  35. package/src/page-frame/desktop/components/page/ServiceMain.tsx +13 -0
  36. package/src/page-frame/desktop/components/page/ServiceMainWrapper.tsx +24 -0
  37. package/src/page-frame/desktop/components/page/index.tsx +14 -0
  38. package/src/page-frame/desktop/components/popup/Container.tsx +18 -0
  39. package/src/page-frame/desktop/components/popup/frame/Body.tsx +14 -0
  40. package/src/page-frame/desktop/components/popup/frame/Container.tsx +16 -0
  41. package/src/page-frame/desktop/components/popup/frame/Header.tsx +26 -0
  42. package/src/page-frame/desktop/components/popup/frame/index.tsx +11 -0
  43. package/src/page-frame/desktop/components/popup/index.tsx +9 -0
  44. package/src/page-frame/desktop/index.scss +5 -0
  45. package/src/page-frame/desktop/index.tsx +7 -0
  46. package/src/page-frame/desktop/styles/page/common.scss +40 -0
  47. package/src/page-frame/desktop/styles/page/header.scss +49 -0
  48. package/src/page-frame/desktop/styles/page/nav.scss +128 -0
  49. package/src/page-frame/desktop/styles/popup/popup.scss +45 -0
  50. package/src/page-frame/desktop/styles/variables.scss +28 -0
  51. package/src/page-frame/desktop/types/index.ts +1 -0
  52. package/src/page-frame/desktop/types/nav.ts +77 -0
  53. package/src/page-frame/index.tsx +2 -0
  54. package/src/page-frame/mobile/index.scss +1 -1
  55. package/src/page-frame/types/index.ts +69 -0
  56. package/src/weather/apis/index.ts +4 -0
  57. package/src/weather/apis/korea/client.ts +93 -0
  58. package/src/weather/apis/korea/server.ts +253 -0
  59. package/src/weather/apis/open-weather-map/client.ts +69 -0
  60. package/src/weather/apis/open-weather-map/server.ts +134 -0
  61. package/src/weather/components/icon/Address.tsx +13 -0
  62. package/src/weather/components/icon/Weather.tsx +32 -0
  63. package/src/weather/components/index.tsx +7 -0
  64. package/src/weather/components/page-header/Address.tsx +21 -0
  65. package/src/weather/components/page-header/Alert.tsx +42 -0
  66. package/src/weather/components/page-header/Container.tsx +14 -0
  67. package/src/weather/components/page-header/Forecast.tsx +26 -0
  68. package/src/weather/components/page-header/NextDays.tsx +32 -0
  69. package/src/weather/components/page-header/Today.tsx +135 -0
  70. package/src/weather/context/mock.tsx +45 -0
  71. package/src/weather/data/alert-regions-meta.json +1286 -0
  72. package/src/weather/data/response.ts +36 -0
  73. package/src/weather/data/weather-regions-meta.json +9833 -0
  74. package/src/weather/hooks/index.ts +4 -0
  75. package/src/weather/hooks/useOpenWeatherMap.ts +42 -0
  76. package/src/weather/hooks/useWeatherKorea.ts +78 -0
  77. package/src/weather/hooks/useWeatherKoreaAlert.ts +36 -0
  78. package/src/weather/index.tsx +11 -0
  79. package/src/weather/jotai/coordinate.ts +16 -0
  80. package/src/weather/jotai/farm-idx.ts +5 -0
  81. package/src/weather/jotai/index.ts +2 -0
  82. package/src/weather/styles/weather.scss +151 -0
  83. package/src/weather/types/api.ts +215 -0
  84. package/src/weather/types/base.ts +50 -0
  85. package/src/weather/types/index.ts +4 -0
  86. package/src/weather/types/korea.ts +228 -0
  87. package/src/weather/types/open-weather-map.ts +164 -0
  88. package/src/weather/utils/alert.ts +30 -0
  89. package/src/weather/utils/date-time.ts +65 -0
  90. package/src/weather/utils/index.ts +4 -0
  91. package/src/weather/utils/location.ts +161 -0
  92. package/src/weather/utils/validate.ts +9 -0
  93. package/src/weather/utils/weather.ts +304 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.