@lingui/macro 3.13.0 → 3.13.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.
- package/global.d.ts +0 -7
- package/index.d.ts +0 -9
- package/index.js +0 -1
- package/package.json +4 -2
package/global.d.ts
CHANGED
|
@@ -159,13 +159,6 @@ declare module "@lingui/macro" {
|
|
|
159
159
|
choices: Record<string, string> & BasicType
|
|
160
160
|
): string
|
|
161
161
|
|
|
162
|
-
/**
|
|
163
|
-
* Defines multiple messages for extraction
|
|
164
|
-
*/
|
|
165
|
-
export function defineMessages<M extends Record<string, MessageDescriptor>>(
|
|
166
|
-
messages: M
|
|
167
|
-
): M
|
|
168
|
-
|
|
169
162
|
/**
|
|
170
163
|
* Define a message for later use
|
|
171
164
|
*
|
package/index.d.ts
CHANGED
|
@@ -148,15 +148,6 @@ export function selectOrdinal(
|
|
|
148
148
|
*/
|
|
149
149
|
export function select(value: string, choices: ChoiceOptions): string
|
|
150
150
|
|
|
151
|
-
/**
|
|
152
|
-
* Defines multiple messages for extraction
|
|
153
|
-
*
|
|
154
|
-
* @see {@link defineMessage} for more details
|
|
155
|
-
*/
|
|
156
|
-
export function defineMessages<M extends Record<string, MessageDescriptor>>(
|
|
157
|
-
messages: M
|
|
158
|
-
): M
|
|
159
|
-
|
|
160
151
|
/**
|
|
161
152
|
* Define a message for later use
|
|
162
153
|
*
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lingui/macro",
|
|
3
|
-
"version": "3.13.
|
|
3
|
+
"version": "3.13.1",
|
|
4
4
|
"description": "Macro for generating messages in ICU MessageFormat syntax",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": {
|
|
@@ -30,10 +30,12 @@
|
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@babel/runtime": "^7.11.2",
|
|
33
|
-
"@lingui/conf": "^3.13.
|
|
33
|
+
"@lingui/conf": "^3.13.1",
|
|
34
34
|
"ramda": "^0.27.1"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
+
"@lingui/core": "^3.13.0",
|
|
38
|
+
"@lingui/react": "^3.13.0",
|
|
37
39
|
"babel-plugin-macros": "2 || 3"
|
|
38
40
|
}
|
|
39
41
|
}
|