@crowdin/app-project-module 0.28.8 → 0.28.10
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/out/index.js +1 -1
- package/out/models/index.d.ts +4 -3
- package/out/static/js/form.js +17 -17
- package/out/views/login.handlebars +5 -1
- package/out/views/main.handlebars +5 -1
- package/package.json +9 -9
package/out/index.js
CHANGED
|
@@ -108,7 +108,7 @@ function addCrowdinEndpoints(app, clientConfig) {
|
|
|
108
108
|
return options.inverse(this);
|
|
109
109
|
},
|
|
110
110
|
in: function (a, b, options) {
|
|
111
|
-
if (a.includes(b)) {
|
|
111
|
+
if (a.toString().includes(b.toString())) {
|
|
112
112
|
return options.fn(this);
|
|
113
113
|
}
|
|
114
114
|
return options.inverse(this);
|
package/out/models/index.d.ts
CHANGED
|
@@ -270,9 +270,10 @@ export interface IntegrationLogic {
|
|
|
270
270
|
*/
|
|
271
271
|
webhooks?: Webhooks;
|
|
272
272
|
}
|
|
273
|
-
export type FormEntity = FormField |
|
|
274
|
-
export interface
|
|
275
|
-
label
|
|
273
|
+
export type FormEntity = FormField | FormDelimiter;
|
|
274
|
+
export interface FormDelimiter {
|
|
275
|
+
label?: string;
|
|
276
|
+
labelHtml?: string;
|
|
276
277
|
}
|
|
277
278
|
export interface LoginForm {
|
|
278
279
|
fields: FormEntity[];
|