@contractspec/module.lifecycle-advisor 3.7.6 → 3.7.7
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 +43 -42
- package/dist/browser/index.js +382 -385
- package/dist/i18n/catalogs/index.d.ts +1 -1
- package/dist/i18n/index.d.ts +7 -7
- package/dist/i18n/locale.d.ts +1 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.js +382 -385
- package/dist/node/index.js +382 -385
- package/package.json +5 -5
- package/src/data/library-stage-map.ts +117 -117
- package/src/data/stage-playbooks.ts +265 -265
package/dist/i18n/index.d.ts
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @module i18n
|
|
5
5
|
*/
|
|
6
|
-
export { createLifecycleAdvisorI18n, getDefaultI18n, resetI18nRegistry, } from './messages';
|
|
7
|
-
export type { LifecycleAdvisorI18n } from './messages';
|
|
8
|
-
export { resolveLocale, isSupportedLocale, DEFAULT_LOCALE, SUPPORTED_LOCALES, } from './locale';
|
|
9
|
-
export type { SupportedLocale } from './locale';
|
|
10
|
-
export { I18N_KEYS, FOCUS_KEYS, ACTION_KEYS, CEREMONY_KEYS, LIBRARY_KEYS, ENGINE_KEYS, } from './keys';
|
|
11
|
-
export type { LifecycleAdvisorMessageKey } from './keys';
|
|
12
6
|
export { enMessages } from './catalogs/en';
|
|
13
|
-
export { frMessages } from './catalogs/fr';
|
|
14
7
|
export { esMessages } from './catalogs/es';
|
|
8
|
+
export { frMessages } from './catalogs/fr';
|
|
9
|
+
export type { LifecycleAdvisorMessageKey } from './keys';
|
|
10
|
+
export { ACTION_KEYS, CEREMONY_KEYS, ENGINE_KEYS, FOCUS_KEYS, I18N_KEYS, LIBRARY_KEYS, } from './keys';
|
|
11
|
+
export type { SupportedLocale } from './locale';
|
|
12
|
+
export { DEFAULT_LOCALE, isSupportedLocale, resolveLocale, SUPPORTED_LOCALES, } from './locale';
|
|
13
|
+
export type { LifecycleAdvisorI18n } from './messages';
|
|
14
|
+
export { createLifecycleAdvisorI18n, getDefaultI18n, resetI18nRegistry, } from './messages';
|
package/dist/i18n/locale.d.ts
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
*
|
|
6
6
|
* @module i18n/locale
|
|
7
7
|
*/
|
|
8
|
-
export { DEFAULT_LOCALE,
|
|
8
|
+
export { DEFAULT_LOCALE, isSupportedLocale, resolveLocale, SUPPORTED_LOCALES, type SupportedLocale, } from '@contractspec/lib.contracts-spec/translations';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from './recommendations/recommendation-engine';
|
|
2
|
-
export * from './recommendations/library-recommender';
|
|
3
1
|
export * from './ceremony/ceremony-designer';
|
|
4
|
-
export { getLocalizedStagePlaybooks } from './data/stage-playbooks';
|
|
5
|
-
export type { StagePlaybookData } from './data/stage-playbooks';
|
|
6
|
-
export { getLocalizedLibraryStageMap } from './data/library-stage-map';
|
|
7
2
|
export type { LibraryStageEntry } from './data/library-stage-map';
|
|
3
|
+
export { getLocalizedLibraryStageMap } from './data/library-stage-map';
|
|
4
|
+
export type { StagePlaybookData } from './data/stage-playbooks';
|
|
5
|
+
export { getLocalizedStagePlaybooks } from './data/stage-playbooks';
|
|
6
|
+
export * from './recommendations/library-recommender';
|
|
7
|
+
export * from './recommendations/recommendation-engine';
|