estreui 1.5.0 → 1.5.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/README.md CHANGED
@@ -61,7 +61,7 @@ Estre UI Demo Application
61
61
  #### File Structure
62
62
  * `serviceLoader.html`: Service Worker Loader (handles updates before app launch).
63
63
  * `scripts/`: Core libraries and logic.
64
- * `estreUi-*.js`: Main framework code — split into 8 modules (`estreUi-core` / `-dialog` / `-notation` / `-notification` / `-pageModel` / `-pageManager` / `-handles` / `-interaction` / `-main`), loaded in order via `<script defer>` (since v1.2.4; roadmap #002 phase 2). The `estreUi` singleton is also exposed on `window` for ES-module-realm host integrations.
64
+ * `estreUi-*.js`: Main framework code — split into 8 modules (`estreUi-core` / `-dialog` / `-notation` / `-notification` / `-pageModel` / `-pageManager` / `-handles` / `-interaction` / `-main`), loaded in order via `<script defer>` (since v1.2.4; roadmap #002 phase 2). The `estreUi` singleton (and the page-system surface — `pageManager` / `EstrePageHandler` / `EstreUiCustomPageManager` / `EstreHandle`, since v1.5.1) is exposed on `window` for ES-module-realm host integrations.
65
65
  * `estreU0EEOZ.js`: Estre Common library.
66
66
  * `main.js`: Application entry point and configuration.
67
67
  * `styles/`: CSS files for the framework and your app.
@@ -332,7 +332,7 @@ Estre UI 데모 애플리케이션
332
332
  #### 파일 구조
333
333
  * `serviceLoader.html`: 서비스 워커 로더 (앱 실행 전 업데이트 진행).
334
334
  * `scripts/`: 핵심 라이브러리 및 로직.
335
- * `estreUi-*.js`: 메인 프레임워크 코드 — 8개 모듈로 분할(`estreUi-core` / `-dialog` / `-notation` / `-notification` / `-pageModel` / `-pageManager` / `-handles` / `-interaction` / `-main`), `<script defer>`로 순서대로 로드(v1.2.4부터, roadmap #002 phase 2). `estreUi` 싱글톤은 ES-module-realm 호스트 통합을 위해 `window`에도 노출됩니다.
335
+ * `estreUi-*.js`: 메인 프레임워크 코드 — 8개 모듈로 분할(`estreUi-core` / `-dialog` / `-notation` / `-notification` / `-pageModel` / `-pageManager` / `-handles` / `-interaction` / `-main`), `<script defer>`로 순서대로 로드(v1.2.4부터, roadmap #002 phase 2). `estreUi` 싱글톤(과 `pageManager` / `EstrePageHandler` / `EstreUiCustomPageManager` / `EstreHandle` 등 페이지 시스템 표면, v1.5.1부터)은 ES-module-realm 호스트 통합을 위해 `window`에 노출됩니다.
336
336
  * `estreU0EEOZ.js`: Estre Common 라이브러리.
337
337
  * `main.js`: 애플리케이션 진입점 및 설정.
338
338
  * `styles/`: 프레임워크 및 앱을 위한 CSS 파일.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "estreui",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "EstreUI Core Library - A comprehensive UI framework for web applications",
5
5
  "main": "scripts/estreUi-main.js",
6
6
  "files": [
@@ -2975,3 +2975,12 @@ class EstreCoverBarHandle {
2975
2975
  // surface. See review #011.
2976
2976
  window.estreUi = estreUi;
2977
2977
 
2978
+ // review #011 후속 — 페이지 시스템 공개 표면도 module-realm 에 노출한다. <script type="module">
2979
+ // 임베드(EstreUX estreui 변종 등)가 EstrePageHandler 를 상속해 페이지 핸들러를 정의하고,
2980
+ // pageManager 로 등록·bring 하며, 필요 시 커스텀 매니저/핸들까지 쓸 수 있도록. classic 스크립트는
2981
+ // 기존처럼 lexical const 로 그대로 접근하고, 이 줄들은 cross-realm 표면만 추가한다(호환성 영향 0).
2982
+ window.pageManager = pageManager;
2983
+ window.EstrePageHandler = EstrePageHandler;
2984
+ window.EstreUiCustomPageManager = EstreUiCustomPageManager;
2985
+ window.EstreHandle = EstreHandle;
2986
+
package/serviceWorker.js CHANGED
@@ -1,4 +1,4 @@
1
- const INSTALLATION_VERSION_NAME = "1.5.0-r20260524";
1
+ const INSTALLATION_VERSION_NAME = "1.5.1-r20260524";
2
2
  // ^^ Use for check new update "Native application(webview) version(or Android/iOS version combo) - PWA release version"
3
3
  // ex) "1.0.1/1.0.0-r20251101k"
4
4
 
@@ -22,7 +22,7 @@ const INSTALLATION_FILE_LIST = [
22
22
 
23
23
 
24
24
  // Common files cache - Be changes some time but, well not changed very often
25
- const CACHE_NAME_COMMON_FILES = "common-files-cache-v1-20260524";
25
+ const CACHE_NAME_COMMON_FILES = "common-files-cache-v1-20260524b";
26
26
 
27
27
  const COMMON_FILES_TO_CACHE = [
28
28
  "./",