@incodetech/web 0.0.0-dev-20260224-e49e03c → 0.0.0-dev-20260226-d2d561c
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/dist/types/index.d.ts +1 -11
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -1,12 +1,6 @@
|
|
|
1
|
+
import { I18nOptions } from './setup';
|
|
1
2
|
import { WasmConfig } from '@incodetech/core';
|
|
2
3
|
|
|
3
|
-
declare type I18nOptions = {
|
|
4
|
-
lang?: string;
|
|
5
|
-
translations?: Translations;
|
|
6
|
-
};
|
|
7
|
-
|
|
8
|
-
declare type LanguageTranslations = Record<string, TranslationValue>;
|
|
9
|
-
|
|
10
4
|
/**
|
|
11
5
|
* Sets global UI configuration defaults for `@incodetech/ui`.
|
|
12
6
|
*/
|
|
@@ -24,10 +18,6 @@ declare type SetupOptions = {
|
|
|
24
18
|
uiConfig?: UiConfig;
|
|
25
19
|
};
|
|
26
20
|
|
|
27
|
-
declare type Translations = Partial<Record<string, LanguageTranslations>>;
|
|
28
|
-
|
|
29
|
-
declare type TranslationValue = string | Record<string, unknown>;
|
|
30
|
-
|
|
31
21
|
export declare type UiConfig = {
|
|
32
22
|
logoSrc?: string;
|
|
33
23
|
logoHeight?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@incodetech/web",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20260226-d2d561c",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.es.js",
|
|
6
6
|
"types": "./dist/types/index.d.ts",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"libphonenumber-js": "^1.11.0",
|
|
87
87
|
"preact-custom-element": "^4.6.0",
|
|
88
88
|
"tailwindcss": "^4.1.17",
|
|
89
|
-
"@incodetech/core": "0.0.0-dev-
|
|
89
|
+
"@incodetech/core": "0.0.0-dev-20260226-d2d561c"
|
|
90
90
|
},
|
|
91
91
|
"devDependencies": {
|
|
92
92
|
"@microsoft/api-extractor": "^7.53.3",
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"lint:fix": "eslint . --fix",
|
|
124
124
|
"format": "prettier --write . --ignore-path ../../.prettierignore",
|
|
125
125
|
"format:check": "prettier --check . --ignore-path ../../.prettierignore",
|
|
126
|
-
"typecheck": "
|
|
126
|
+
"typecheck": "tsgo -p tsconfig.json --noEmit",
|
|
127
127
|
"storybook": "storybook dev -p 6006",
|
|
128
128
|
"build-storybook": "storybook build"
|
|
129
129
|
}
|