@baseline-ui/translations 0.7.2 → 0.8.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/dist/index.d.mts +29 -57
- package/dist/index.d.ts +29 -57
- package/package.json +6 -4
package/dist/index.d.mts
CHANGED
|
@@ -1,62 +1,34 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
black: black,
|
|
31
|
-
blue: blue,
|
|
32
|
-
cancel: cancel,
|
|
33
|
-
chooseColor: chooseColor,
|
|
34
|
-
clearSignature: clearSignature,
|
|
35
|
-
close: close,
|
|
36
|
-
color: color,
|
|
37
|
-
createStamp: createStamp,
|
|
38
|
-
customStamp: customStamp,
|
|
39
|
-
darkBlue: darkBlue,
|
|
40
|
-
date: date,
|
|
41
|
-
"delete": "Delete",
|
|
42
|
-
done: done,
|
|
43
|
-
draw: draw,
|
|
44
|
-
fonts: fonts,
|
|
45
|
-
image: image,
|
|
46
|
-
preview: preview,
|
|
47
|
-
saveSignature: saveSignature,
|
|
48
|
-
signature: signature,
|
|
49
|
-
signatures: signatures,
|
|
50
|
-
signHere: signHere,
|
|
51
|
-
stampAnnotationTemplatesDialog: stampAnnotationTemplatesDialog,
|
|
52
|
-
stampText: stampText,
|
|
53
|
-
storeSignature: storeSignature,
|
|
54
|
-
time: time,
|
|
55
|
-
type: type,
|
|
56
|
-
useAnExistingStampDesign: useAnExistingStampDesign
|
|
1
|
+
type Messages = {
|
|
2
|
+
addSignature: string;
|
|
3
|
+
black: string;
|
|
4
|
+
blue: string;
|
|
5
|
+
cancel: string;
|
|
6
|
+
chooseColor: string;
|
|
7
|
+
clearSignature: string;
|
|
8
|
+
close: string;
|
|
9
|
+
color: string;
|
|
10
|
+
createStamp: string;
|
|
11
|
+
customStamp: string;
|
|
12
|
+
darkBlue: string;
|
|
13
|
+
date: string;
|
|
14
|
+
delete: string;
|
|
15
|
+
done: string;
|
|
16
|
+
draw: string;
|
|
17
|
+
fonts: string;
|
|
18
|
+
image: string;
|
|
19
|
+
preview: string;
|
|
20
|
+
saveSignature: string;
|
|
21
|
+
signature: string;
|
|
22
|
+
signatures: string;
|
|
23
|
+
signHere: string;
|
|
24
|
+
stampAnnotationTemplatesDialog: string;
|
|
25
|
+
stampText: string;
|
|
26
|
+
storeSignature: string;
|
|
27
|
+
time: string;
|
|
28
|
+
type: string;
|
|
29
|
+
useAnExistingStampDesign: string;
|
|
57
30
|
};
|
|
58
31
|
|
|
59
32
|
declare const messages: Record<string, Record<string, string>>;
|
|
60
|
-
type Messages = typeof Translations;
|
|
61
33
|
|
|
62
34
|
export { type Messages, messages };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,62 +1,34 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
black: black,
|
|
31
|
-
blue: blue,
|
|
32
|
-
cancel: cancel,
|
|
33
|
-
chooseColor: chooseColor,
|
|
34
|
-
clearSignature: clearSignature,
|
|
35
|
-
close: close,
|
|
36
|
-
color: color,
|
|
37
|
-
createStamp: createStamp,
|
|
38
|
-
customStamp: customStamp,
|
|
39
|
-
darkBlue: darkBlue,
|
|
40
|
-
date: date,
|
|
41
|
-
"delete": "Delete",
|
|
42
|
-
done: done,
|
|
43
|
-
draw: draw,
|
|
44
|
-
fonts: fonts,
|
|
45
|
-
image: image,
|
|
46
|
-
preview: preview,
|
|
47
|
-
saveSignature: saveSignature,
|
|
48
|
-
signature: signature,
|
|
49
|
-
signatures: signatures,
|
|
50
|
-
signHere: signHere,
|
|
51
|
-
stampAnnotationTemplatesDialog: stampAnnotationTemplatesDialog,
|
|
52
|
-
stampText: stampText,
|
|
53
|
-
storeSignature: storeSignature,
|
|
54
|
-
time: time,
|
|
55
|
-
type: type,
|
|
56
|
-
useAnExistingStampDesign: useAnExistingStampDesign
|
|
1
|
+
type Messages = {
|
|
2
|
+
addSignature: string;
|
|
3
|
+
black: string;
|
|
4
|
+
blue: string;
|
|
5
|
+
cancel: string;
|
|
6
|
+
chooseColor: string;
|
|
7
|
+
clearSignature: string;
|
|
8
|
+
close: string;
|
|
9
|
+
color: string;
|
|
10
|
+
createStamp: string;
|
|
11
|
+
customStamp: string;
|
|
12
|
+
darkBlue: string;
|
|
13
|
+
date: string;
|
|
14
|
+
delete: string;
|
|
15
|
+
done: string;
|
|
16
|
+
draw: string;
|
|
17
|
+
fonts: string;
|
|
18
|
+
image: string;
|
|
19
|
+
preview: string;
|
|
20
|
+
saveSignature: string;
|
|
21
|
+
signature: string;
|
|
22
|
+
signatures: string;
|
|
23
|
+
signHere: string;
|
|
24
|
+
stampAnnotationTemplatesDialog: string;
|
|
25
|
+
stampText: string;
|
|
26
|
+
storeSignature: string;
|
|
27
|
+
time: string;
|
|
28
|
+
type: string;
|
|
29
|
+
useAnExistingStampDesign: string;
|
|
57
30
|
};
|
|
58
31
|
|
|
59
32
|
declare const messages: Record<string, Record<string, string>>;
|
|
60
|
-
type Messages = typeof Translations;
|
|
61
33
|
|
|
62
34
|
export { type Messages, messages };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baseline-ui/translations",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -13,10 +13,11 @@
|
|
|
13
13
|
"source": "./src/index.ts",
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"lodash": "^4.17.21",
|
|
16
|
-
"@baseline-ui/utils": "0.
|
|
16
|
+
"@baseline-ui/utils": "0.8.0"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@types/lodash": "^4.14.202"
|
|
19
|
+
"@types/lodash": "^4.14.202",
|
|
20
|
+
"prettier": "^3.2.4"
|
|
20
21
|
},
|
|
21
22
|
"keywords": [],
|
|
22
23
|
"author": "",
|
|
@@ -25,6 +26,7 @@
|
|
|
25
26
|
"access": "public"
|
|
26
27
|
},
|
|
27
28
|
"scripts": {
|
|
28
|
-
"build": "tsup src/index.ts --format cjs,esm --dts"
|
|
29
|
+
"build": "pnpm run generate:types && tsup src/index.ts --format cjs,esm --dts",
|
|
30
|
+
"generate:types": "./scripts/generateDeclarations.ts"
|
|
29
31
|
}
|
|
30
32
|
}
|