@baseline-ui/translations 0.7.1 → 0.7.3
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/dist/index.js +2 -3039
- package/dist/index.mjs +2 -3044
- package/package.json +9 -3
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 };
|