@ankhorage/templates 9.4.0 → 9.5.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/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/dist/templates/catalog.generated.js +8 -8
- package/dist/templates/catalog.generated.js.map +1 -1
- package/dist/templates/categories/social-community/chat/createAppManifest.d.ts +4 -0
- package/dist/templates/categories/social-community/chat/createAppManifest.d.ts.map +1 -0
- package/dist/templates/categories/social-community/chat/createAppManifest.js +686 -0
- package/dist/templates/categories/social-community/chat/createAppManifest.js.map +1 -0
- package/package.json +7 -6
- package/src/templates/categories/social-community/chat/assets/images/lake.png +0 -0
- package/src/templates/categories/social-community/chat/assets/images/svg/chats.svg +1 -0
- package/src/templates/categories/social-community/chat/assets/images/svg/friends.svg +1 -0
- package/src/templates/categories/social-community/chat/assets/screens/chats.png +0 -0
- package/src/templates/categories/social-community/chat/assets/screens/direct.png +0 -0
- package/src/templates/categories/social-community/chat/assets/screens/friends.png +0 -0
- package/src/templates/categories/social-community/chat/assets/screens/prompts.json +7 -0
- package/dist/templates/categories/education-learning/sharkprey/createAppManifest.d.ts +0 -4
- package/dist/templates/categories/education-learning/sharkprey/createAppManifest.d.ts.map +0 -1
- package/dist/templates/categories/education-learning/sharkprey/createAppManifest.js +0 -1559
- package/dist/templates/categories/education-learning/sharkprey/createAppManifest.js.map +0 -1
- package/src/templates/categories/education-learning/sharkprey/assets/images/sharkprey-logo.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/images/svg/history.svg +0 -5
- package/src/templates/categories/education-learning/sharkprey/assets/images/svg/learn.svg +0 -5
- package/src/templates/categories/education-learning/sharkprey/assets/images/svg/settings.svg +0 -5
- package/src/templates/categories/education-learning/sharkprey/assets/images/svg/stats.svg +0 -6
- package/src/templates/categories/education-learning/sharkprey/assets/images/svg/train.svg +0 -8
- package/src/templates/categories/education-learning/sharkprey/assets/screens/01-splash.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/02-onboarding.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/03-training-setup.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/04-decision-table.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/05-answer-explanation.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/06-session-summary.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/07-hand-history.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/08-stats.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/09-learn.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/10-settings.png +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @ankhorage/templates
|
|
2
2
|
|
|
3
|
+
## 9.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 319dc7a: Add the Close mobile social/chat manifest with generated screen concepts, reusable lake media, and Navigator-owned stack and tabs. Document unsupported social operations and messaging interactions for subsequent implementation.
|
|
8
|
+
|
|
9
|
+
## 9.4.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 9abccd2: Update the released Devtools, Utility, and ZORA image-analysis dependency chain.
|
|
14
|
+
|
|
3
15
|
## 9.4.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
# TEMPLATES
|
|
5
5
|
|
|
6
|
-
         
|
|
7
7
|
|
|
8
8
|
Portable Ankhorage app templates, presets, and manifest authoring helpers.
|
|
9
9
|
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import createAppManifest0 from './categories/
|
|
2
|
-
import createAppManifest1 from './categories/
|
|
1
|
+
import createAppManifest0 from './categories/lifestyle/stillpath/createAppManifest';
|
|
2
|
+
import createAppManifest1 from './categories/social-community/chat/createAppManifest';
|
|
3
3
|
export const TEMPLATE_DEFINITIONS = [
|
|
4
|
-
{
|
|
5
|
-
category: 'education_learning',
|
|
6
|
-
slug: 'sharkprey',
|
|
7
|
-
sourceRoot: 'src/templates/categories/education-learning/sharkprey',
|
|
8
|
-
createAppManifest: createAppManifest0,
|
|
9
|
-
},
|
|
10
4
|
{
|
|
11
5
|
category: 'lifestyle',
|
|
12
6
|
slug: 'stillpath',
|
|
13
7
|
sourceRoot: 'src/templates/categories/lifestyle/stillpath',
|
|
8
|
+
createAppManifest: createAppManifest0,
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
category: 'social_community',
|
|
12
|
+
slug: 'chat',
|
|
13
|
+
sourceRoot: 'src/templates/categories/social-community/chat',
|
|
14
14
|
createAppManifest: createAppManifest1,
|
|
15
15
|
},
|
|
16
16
|
];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.generated.js","sourceRoot":"","sources":["../../src/templates/catalog.generated.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,MAAM,
|
|
1
|
+
{"version":3,"file":"catalog.generated.js","sourceRoot":"","sources":["../../src/templates/catalog.generated.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,MAAM,oDAAoD,CAAC;AACpF,OAAO,kBAAkB,MAAM,sDAAsD,CAAC;AAItF,MAAM,CAAC,MAAM,oBAAoB,GAAkC;IACjE;QACE,QAAQ,EAAE,WAAW;QACrB,IAAI,EAAE,WAAW;QACjB,UAAU,EAAE,8CAA8C;QAC1D,iBAAiB,EAAE,kBAAkB;KACtC;IACD;QACE,QAAQ,EAAE,kBAAkB;QAC5B,IAAI,EAAE,MAAM;QACZ,UAAU,EAAE,gDAAgD;QAC5D,iBAAiB,EAAE,kBAAkB;KACtC;CACF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createAppManifest.d.ts","sourceRoot":"","sources":["../../../../../src/templates/categories/social-community/chat/createAppManifest.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAGxD,uGAAuG;AACvG,MAAM,CAAC,OAAO,UAAU,iBAAiB,IAAI,WAAW,CASvD"}
|