@vnejs/contracts.text.locs 0.1.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.
@@ -0,0 +1,6 @@
1
+ export declare const SUBSCRIBE_EVENTS: {
2
+ readonly LOAD: "vne:locs:load";
3
+ readonly GET: "vne:locs:get";
4
+ readonly CHANGED: "vne:locs:changed";
5
+ };
6
+ export type SubscribeEvents = typeof SUBSCRIBE_EVENTS;
package/dist/events.js ADDED
@@ -0,0 +1,5 @@
1
+ export const SUBSCRIBE_EVENTS = {
2
+ LOAD: "vne:locs:load",
3
+ GET: "vne:locs:get",
4
+ CHANGED: "vne:locs:changed",
5
+ };
@@ -0,0 +1,32 @@
1
+ import "@vnejs/module";
2
+ import "@vnejs/contracts.core.settings";
3
+ import "@vnejs/shared";
4
+ import { SUBSCRIBE_EVENTS } from "./events.js";
5
+ import { PARAMS } from "./params.js";
6
+ import { SETTINGS_KEYS } from "./settings.js";
7
+ export declare const PLUGIN_NAME: "LOCS";
8
+ export type PluginName = typeof PLUGIN_NAME;
9
+ export { SUBSCRIBE_EVENTS };
10
+ export type { SubscribeEvents } from "./events.js";
11
+ export { PARAMS };
12
+ export type { Params } from "./params.js";
13
+ export { SETTINGS_KEYS };
14
+ export type { SettingsKeys } from "./settings.js";
15
+ type LocsLangSettingKey = (typeof SETTINGS_KEYS)["LANG"];
16
+ declare module "@vnejs/module" {
17
+ interface ModuleShared {
18
+ lang: string;
19
+ }
20
+ }
21
+ declare module "@vnejs/contracts.core.settings" {
22
+ interface ModuleSharedSettings extends Record<LocsLangSettingKey, string> {
23
+ }
24
+ }
25
+ declare module "@vnejs/shared" {
26
+ interface VnePluginEventsMap extends Record<typeof PLUGIN_NAME, typeof SUBSCRIBE_EVENTS> {
27
+ }
28
+ interface VnePluginParamsMap extends Record<typeof PLUGIN_NAME, typeof PARAMS> {
29
+ }
30
+ interface VnePluginSettingsMap extends Record<typeof PLUGIN_NAME, typeof SETTINGS_KEYS> {
31
+ }
32
+ }
package/dist/index.js ADDED
@@ -0,0 +1,10 @@
1
+ import "@vnejs/module";
2
+ import "@vnejs/contracts.core.settings";
3
+ import "@vnejs/shared";
4
+ import { SUBSCRIBE_EVENTS } from "./events.js";
5
+ import { PARAMS } from "./params.js";
6
+ import { SETTINGS_KEYS } from "./settings.js";
7
+ export const PLUGIN_NAME = "LOCS";
8
+ export { SUBSCRIBE_EVENTS };
9
+ export { PARAMS };
10
+ export { SETTINGS_KEYS };
@@ -0,0 +1,8 @@
1
+ import type { Widen } from "@vnejs/shared";
2
+ export declare const DEFAULT_LANG: string;
3
+ declare const PARAMS_DEFAULT: {
4
+ DEFAULT_LANG: string;
5
+ };
6
+ export type Params = Widen<typeof PARAMS_DEFAULT>;
7
+ export declare const PARAMS: Params;
8
+ export {};
package/dist/params.js ADDED
@@ -0,0 +1,5 @@
1
+ export const DEFAULT_LANG = "ru";
2
+ const PARAMS_DEFAULT = {
3
+ DEFAULT_LANG,
4
+ };
5
+ export const PARAMS = PARAMS_DEFAULT;
@@ -0,0 +1,4 @@
1
+ export declare const SETTINGS_KEYS: {
2
+ readonly LANG: "vne:locs:lang";
3
+ };
4
+ export type SettingsKeys = typeof SETTINGS_KEYS;
@@ -0,0 +1,3 @@
1
+ export const SETTINGS_KEYS = {
2
+ LANG: "vne:locs:lang",
3
+ };
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@vnejs/contracts.text.locs",
3
+ "version": "0.1.1",
4
+ "description": "Contracts for @vnejs/plugins.text.locs",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.js",
11
+ "require": "./dist/index.js",
12
+ "default": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "src",
18
+ "tsconfig.json"
19
+ ],
20
+ "scripts": {
21
+ "build": "npx @vnejs/monorepo package",
22
+ "publish:major": "npx @vnejs/monorepo publish major --access public",
23
+ "publish:minor": "npx @vnejs/monorepo publish minor --access public",
24
+ "publish:patch": "npx @vnejs/monorepo publish patch --access public"
25
+ },
26
+ "author": "",
27
+ "license": "ISC",
28
+ "peerDependencies": {
29
+ "@vnejs/module": "~0.1.0",
30
+ "@vnejs/contracts.core.settings": "~0.1.0",
31
+ "@vnejs/shared": "~0.1.0"
32
+ },
33
+ "devDependencies": {
34
+ "@vnejs/configs.ts-common": "~0.1.0"
35
+ }
36
+ }
package/src/events.ts ADDED
@@ -0,0 +1,7 @@
1
+ export const SUBSCRIBE_EVENTS = {
2
+ LOAD: "vne:locs:load",
3
+ GET: "vne:locs:get",
4
+ CHANGED: "vne:locs:changed",
5
+ } as const;
6
+
7
+ export type SubscribeEvents = typeof SUBSCRIBE_EVENTS;
package/src/index.ts ADDED
@@ -0,0 +1,37 @@
1
+ import "@vnejs/module";
2
+ import "@vnejs/contracts.core.settings";
3
+ import "@vnejs/shared";
4
+
5
+ import { SUBSCRIBE_EVENTS } from "./events.js";
6
+ import { PARAMS } from "./params.js";
7
+ import { SETTINGS_KEYS } from "./settings.js";
8
+
9
+ export const PLUGIN_NAME = "LOCS" as const;
10
+ export type PluginName = typeof PLUGIN_NAME;
11
+
12
+ export { SUBSCRIBE_EVENTS };
13
+ export type { SubscribeEvents } from "./events.js";
14
+ export { PARAMS };
15
+ export type { Params } from "./params.js";
16
+ export { SETTINGS_KEYS };
17
+ export type { SettingsKeys } from "./settings.js";
18
+
19
+ type LocsLangSettingKey = (typeof SETTINGS_KEYS)["LANG"];
20
+
21
+ declare module "@vnejs/module" {
22
+ interface ModuleShared {
23
+ lang: string;
24
+ }
25
+ }
26
+
27
+ declare module "@vnejs/contracts.core.settings" {
28
+ interface ModuleSharedSettings extends Record<LocsLangSettingKey, string> {}
29
+ }
30
+
31
+ declare module "@vnejs/shared" {
32
+ interface VnePluginEventsMap extends Record<typeof PLUGIN_NAME, typeof SUBSCRIBE_EVENTS> {}
33
+
34
+ interface VnePluginParamsMap extends Record<typeof PLUGIN_NAME, typeof PARAMS> {}
35
+
36
+ interface VnePluginSettingsMap extends Record<typeof PLUGIN_NAME, typeof SETTINGS_KEYS> {}
37
+ }
package/src/params.ts ADDED
@@ -0,0 +1,10 @@
1
+ import type { Widen } from "@vnejs/shared";
2
+
3
+ export const DEFAULT_LANG = "ru" as string;
4
+
5
+ const PARAMS_DEFAULT = {
6
+ DEFAULT_LANG,
7
+ };
8
+
9
+ export type Params = Widen<typeof PARAMS_DEFAULT>;
10
+ export const PARAMS: Params = PARAMS_DEFAULT;
@@ -0,0 +1,5 @@
1
+ export const SETTINGS_KEYS = {
2
+ LANG: "vne:locs:lang",
3
+ } as const;
4
+
5
+ export type SettingsKeys = typeof SETTINGS_KEYS;
package/tsconfig.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "@vnejs/configs.ts-common/tsconfig.json",
3
+ "compilerOptions": {
4
+ "rootDir": "src",
5
+ "outDir": "dist"
6
+ },
7
+ "include": ["src/**/*.ts"],
8
+ "exclude": ["dist", "node_modules"]
9
+ }