retold-data-service 2.1.2 → 2.1.5
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/BUILDING-AND-PUBLISHING.md +2 -2
- package/Dockerfile +1 -1
- package/README.md +12 -27
- package/build-all.js +66 -0
- package/diagrams/architecture.excalidraw +2966 -0
- package/diagrams/architecture.mmd +17 -0
- package/diagrams/architecture.svg +2 -0
- package/docs/README.md +12 -12
- package/docs/_brand.json +18 -0
- package/docs/_cover.md +1 -1
- package/docs/_topbar.md +1 -1
- package/docs/_version.json +3 -3
- package/docs/api/reference.md +8 -8
- package/docs/architecture.md +6 -84
- package/docs/diagrams/component-diagram.excalidraw +2807 -0
- package/docs/diagrams/component-diagram.mmd +14 -0
- package/docs/diagrams/component-diagram.svg +2 -0
- package/docs/diagrams/component-stack.excalidraw +1169 -0
- package/docs/diagrams/component-stack.mmd +6 -0
- package/docs/diagrams/component-stack.svg +2 -0
- package/docs/diagrams/hook-execution-order.excalidraw +3230 -0
- package/docs/diagrams/hook-execution-order.mmd +19 -0
- package/docs/diagrams/hook-execution-order.svg +2 -0
- package/docs/diagrams/initialization-flow.excalidraw +1800 -0
- package/docs/diagrams/initialization-flow.mmd +22 -0
- package/docs/diagrams/initialization-flow.svg +2 -0
- package/docs/index.html +6 -7
- package/docs/lifecycle-hooks.md +2 -21
- package/docs/retold-catalog.json +141 -141
- package/docs/retold-keyword-index.json +6818 -1608
- package/package.json +130 -96
- package/source/services/RetoldDataService-Brand.js +13 -0
- package/source/services/comprehension-loader/pict-app/Pict-Application-ComprehensionLoader.js +65 -15
- package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Layout.js +28 -74
- package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Load.js +17 -17
- package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-SettingsPanel.js +62 -0
- package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Shell.js +142 -0
- package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-StatusBar.js +125 -0
- package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-StatusDetail.js +89 -0
- package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-TopBar-Nav.js +42 -0
- package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-TopBar-User.js +48 -0
- package/source/services/comprehension-loader/web/comprehension-loader.js +5415 -6183
- package/source/services/comprehension-loader/web/comprehension-loader.js.map +1 -1
- package/source/services/comprehension-loader/web/comprehension-loader.min.js +75 -1
- package/source/services/comprehension-loader/web/comprehension-loader.min.js.map +1 -1
- package/source/services/comprehension-loader/web/favicons/favicon-dark.svg +13 -0
- package/source/services/comprehension-loader/web/favicons/favicon-light.svg +13 -0
- package/source/services/comprehension-loader/web/favicons/favicon.svg +13 -0
- package/source/services/comprehension-loader/web/index.html +3 -0
- package/source/services/comprehension-loader/web/pict.min.js +12 -0
- package/source/services/data-cloner/DataCloner-Command-Headless.js +2 -1
- package/source/services/data-cloner/DataCloner-Command-Sync.js +110 -75
- package/source/services/data-cloner/pict-app/Pict-Application-DataCloner.js +70 -47
- package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Export.js +3 -3
- package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Layout.js +40 -86
- package/source/services/data-cloner/pict-app/views/PictView-DataCloner-SettingsPanel.js +61 -0
- package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Shell.js +136 -0
- package/source/services/data-cloner/pict-app/views/PictView-DataCloner-StatusBar.js +117 -0
- package/source/services/data-cloner/pict-app/views/PictView-DataCloner-StatusDetail.js +81 -0
- package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Sync.js +18 -18
- package/source/services/data-cloner/pict-app/views/PictView-DataCloner-TopBar-Nav.js +42 -0
- package/source/services/data-cloner/pict-app/views/PictView-DataCloner-TopBar-User.js +48 -0
- package/source/services/data-cloner/pict-app/views/PictView-DataCloner-ViewData.js +2 -2
- package/source/services/data-cloner/web/data-cloner.js +5772 -7986
- package/source/services/data-cloner/web/data-cloner.js.map +1 -1
- package/source/services/data-cloner/web/data-cloner.min.js +75 -1
- package/source/services/data-cloner/web/data-cloner.min.js.map +1 -1
- package/source/services/data-cloner/web/favicons/favicon-dark.svg +13 -0
- package/source/services/data-cloner/web/favicons/favicon-light.svg +13 -0
- package/source/services/data-cloner/web/favicons/favicon.svg +13 -0
- package/source/services/data-cloner/web/favicons/favicons/favicon-dark.svg +13 -0
- package/source/services/data-cloner/web/favicons/favicons/favicon-light.svg +13 -0
- package/source/services/data-cloner/web/favicons/favicons/favicon.svg +13 -0
- package/source/services/data-cloner/web/index.html +3 -0
- package/source/services/data-cloner/web/pict.min.js +12 -0
- package/test/Bundles_smoke_tests.js +43 -0
- package/test/ComprehensionLoader_smoke_tests.js +95 -0
- package/test/DataCloner-RuntimeOverrides_tests.js +344 -0
- package/test/DataCloner_smoke_tests.js +87 -0
- package/docs/css/docuserve.css +0 -327
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96" width="96" height="96">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="fav-retold-data-service-dark">
|
|
4
|
+
<path d="M 48.00 2.00 L 87.84 25.00 L 87.84 71.00 L 48.00 94.00 L 8.16 71.00 L 8.16 25.00 Z"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
</defs>
|
|
7
|
+
<path d="M 48.00 2.00 L 87.84 25.00 L 87.84 71.00 L 48.00 94.00 L 8.16 71.00 L 8.16 25.00 Z" fill="#67c6de"/>
|
|
8
|
+
<g clip-path="url(#fav-retold-data-service-dark)"><rect x="16" y="16" width="64" height="64" rx="10" fill="rgba(255,255,255,0.22)"/></g>
|
|
9
|
+
<text x="48" y="50" text-anchor="middle" dominant-baseline="central"
|
|
10
|
+
font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif"
|
|
11
|
+
font-size="60" font-weight="800"
|
|
12
|
+
fill="#101418" letter-spacing="-1">R</text>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96" width="96" height="96">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="fav-retold-data-service-light">
|
|
4
|
+
<path d="M 48.00 2.00 L 87.84 25.00 L 87.84 71.00 L 48.00 94.00 L 8.16 71.00 L 8.16 25.00 Z"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
</defs>
|
|
7
|
+
<path d="M 48.00 2.00 L 87.84 25.00 L 87.84 71.00 L 48.00 94.00 L 8.16 71.00 L 8.16 25.00 Z" fill="#23a6c7"/>
|
|
8
|
+
<g clip-path="url(#fav-retold-data-service-light)"><rect x="16" y="16" width="64" height="64" rx="10" fill="rgba(255,255,255,0.22)"/></g>
|
|
9
|
+
<text x="48" y="50" text-anchor="middle" dominant-baseline="central"
|
|
10
|
+
font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif"
|
|
11
|
+
font-size="60" font-weight="800"
|
|
12
|
+
fill="#ffffff" letter-spacing="-1">R</text>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96" width="96" height="96">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="fav-retold-data-service-light">
|
|
4
|
+
<path d="M 48.00 2.00 L 87.84 25.00 L 87.84 71.00 L 48.00 94.00 L 8.16 71.00 L 8.16 25.00 Z"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
</defs>
|
|
7
|
+
<path d="M 48.00 2.00 L 87.84 25.00 L 87.84 71.00 L 48.00 94.00 L 8.16 71.00 L 8.16 25.00 Z" fill="#23a6c7"/>
|
|
8
|
+
<g clip-path="url(#fav-retold-data-service-light)"><rect x="16" y="16" width="64" height="64" rx="10" fill="rgba(255,255,255,0.22)"/></g>
|
|
9
|
+
<text x="48" y="50" text-anchor="middle" dominant-baseline="central"
|
|
10
|
+
font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif"
|
|
11
|
+
font-size="60" font-weight="800"
|
|
12
|
+
fill="#ffffff" letter-spacing="-1">R</text>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96" width="96" height="96">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="fav-retold-data-service-dark">
|
|
4
|
+
<path d="M 48.00 2.00 L 87.84 25.00 L 87.84 71.00 L 48.00 94.00 L 8.16 71.00 L 8.16 25.00 Z"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
</defs>
|
|
7
|
+
<path d="M 48.00 2.00 L 87.84 25.00 L 87.84 71.00 L 48.00 94.00 L 8.16 71.00 L 8.16 25.00 Z" fill="#67c6de"/>
|
|
8
|
+
<g clip-path="url(#fav-retold-data-service-dark)"><rect x="16" y="16" width="64" height="64" rx="10" fill="rgba(255,255,255,0.22)"/></g>
|
|
9
|
+
<text x="48" y="50" text-anchor="middle" dominant-baseline="central"
|
|
10
|
+
font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif"
|
|
11
|
+
font-size="60" font-weight="800"
|
|
12
|
+
fill="#101418" letter-spacing="-1">R</text>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96" width="96" height="96">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="fav-retold-data-service-light">
|
|
4
|
+
<path d="M 48.00 2.00 L 87.84 25.00 L 87.84 71.00 L 48.00 94.00 L 8.16 71.00 L 8.16 25.00 Z"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
</defs>
|
|
7
|
+
<path d="M 48.00 2.00 L 87.84 25.00 L 87.84 71.00 L 48.00 94.00 L 8.16 71.00 L 8.16 25.00 Z" fill="#23a6c7"/>
|
|
8
|
+
<g clip-path="url(#fav-retold-data-service-light)"><rect x="16" y="16" width="64" height="64" rx="10" fill="rgba(255,255,255,0.22)"/></g>
|
|
9
|
+
<text x="48" y="50" text-anchor="middle" dominant-baseline="central"
|
|
10
|
+
font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif"
|
|
11
|
+
font-size="60" font-weight="800"
|
|
12
|
+
fill="#ffffff" letter-spacing="-1">R</text>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96" width="96" height="96">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="fav-retold-data-service-light">
|
|
4
|
+
<path d="M 48.00 2.00 L 87.84 25.00 L 87.84 71.00 L 48.00 94.00 L 8.16 71.00 L 8.16 25.00 Z"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
</defs>
|
|
7
|
+
<path d="M 48.00 2.00 L 87.84 25.00 L 87.84 71.00 L 48.00 94.00 L 8.16 71.00 L 8.16 25.00 Z" fill="#23a6c7"/>
|
|
8
|
+
<g clip-path="url(#fav-retold-data-service-light)"><rect x="16" y="16" width="64" height="64" rx="10" fill="rgba(255,255,255,0.22)"/></g>
|
|
9
|
+
<text x="48" y="50" text-anchor="middle" dominant-baseline="central"
|
|
10
|
+
font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif"
|
|
11
|
+
font-size="60" font-weight="800"
|
|
12
|
+
fill="#ffffff" letter-spacing="-1">R</text>
|
|
13
|
+
</svg>
|
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
6
|
<title>Retold Data Cloner</title>
|
|
7
|
+
<link rel="icon" type="image/svg+xml" href="favicons/favicon.svg">
|
|
8
|
+
<link rel="icon" type="image/svg+xml" href="favicons/favicon-light.svg" media="(prefers-color-scheme: light)">
|
|
9
|
+
<link rel="icon" type="image/svg+xml" href="favicons/favicon-dark.svg" media="(prefers-color-scheme: dark)">
|
|
7
10
|
<style id="PICT-CSS"></style>
|
|
8
11
|
</head>
|
|
9
12
|
<body>
|