estreui 1.0.6 → 1.1.0

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/README.md CHANGED
@@ -13,7 +13,7 @@ EstreUI is not just a library, nor a full-blown framework in the traditional sen
13
13
 
14
14
  ### Target Audience
15
15
  * **Classic Web Developers**: If you are comfortable with jQuery, ASP, PHP, or JSP but want to build modern, single-page applications (SPA) with mobile-app-like experiences, EstreUI is for you.
16
- * **Native App Developers**: If you are moving from Android or iOS development to the web, you will find EstreUI's lifecycle events (`onCreate`, `onShow`, `onPause` equivalent) and intent system very familiar.
16
+ * **Native App Developers**: If you are moving from Android or iOS development to the web, you will find EstreUI's lifecycle events (`onCreate`, `onStart`, `onResume` equivalent) and intent system very familiar.
17
17
 
18
18
  ### Key Features
19
19
  * **MVC Pattern**: Structured separation of concerns.
@@ -278,7 +278,7 @@ EstreUI는 단순한 라이브러리도, 전통적인 의미의 완전한 프레
278
278
 
279
279
  ### 타겟 독자
280
280
  * **클래식 웹 개발자**: jQuery, ASP, PHP, JSP에 익숙하지만 모바일 앱과 같은 경험을 제공하는 현대적인 SPA(Single Page Application)를 구축하고 싶은 분.
281
- * **네이티브 앱 개발자**: Android나 iOS 개발에서 웹으로 전환하려는 분들에게 EstreUI의 라이프사이클 이벤트(`onCreate`, `onShow`, `onPause` 등과 유사)와 인텐트 시스템은 매우 친숙할 것입니다.
281
+ * **네이티브 앱 개발자**: Android나 iOS 개발에서 웹으로 전환하려는 분들에게 EstreUI의 라이프사이클 이벤트(`onCreate`, `onStart`, `onResume` 등과 유사)와 인텐트 시스템은 매우 친숙할 것입니다.
282
282
 
283
283
  ### 주요 특징
284
284
  * **MVC 패턴**: 관심사의 구조적 분리.
package/index.html CHANGED
@@ -51,7 +51,9 @@
51
51
  <style>
52
52
  /* in html styles */
53
53
  </style>
54
- <script defer src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
54
+ <!-- <script defer src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script> -->
55
+ <!-- <script dafer src="https://code.jquery.com/jquery-4.0.0.slim.min.js"></script> -->
56
+ <script dafer src="https://code.jquery.com/jquery-4.0.0.min.js"></script>
55
57
  <script defer src="https://unpkg.com/@dotlottie/player-component@latest/dist/dotlottie-player.mjs" type="module"></script>
56
58
  <script defer type="text/javascript" src="./scripts/jcodd.js"></script>
57
59
  <script defer type="text/javascript" src="./scripts/doctre.js"></script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "estreui",
3
- "version": "1.0.6",
3
+ "version": "1.1.0",
4
4
  "description": "EstreUI Core Library - A comprehensive UI framework for web applications",
5
5
  "main": "scripts/estreUi.js",
6
6
  "files": [
@@ -38,9 +38,9 @@
38
38
  "license": "MIT",
39
39
  "dependencies": {
40
40
  "jquery": "^3.7.1",
41
- "jcodd": "^0.8.2",
42
- "doctre": "^1.1.0",
43
- "modernism": "^0.5.2",
44
- "alienese": "^0.5.2"
41
+ "jcodd": "^0.9.0",
42
+ "doctre": "^1.1.1",
43
+ "modernism": "^0.7.0",
44
+ "alienese": "^0.7.0"
45
45
  }
46
46
  }