fansunited-widget-either-or 2.10.0 → 2.11.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/README.md +12 -2
- package/components/EitherOrs/ActionsMenu.d.ts +1 -1
- package/components/EitherOrs/EitherOrRow.d.ts +1 -1
- package/components/EitherOrs/EitherOrsTable.d.ts +1 -1
- package/constants/constants.d.ts +0 -24
- package/either-or-manager.es.js +41722 -34080
- package/either-or-manager.umd.js +1276 -271
- package/factories/EitherOrFactory.d.ts +0 -1
- package/models/Labels/LabelsModel.d.ts +2 -0
- package/models/RequestBody/RequestBody.d.ts +1 -0
- package/package.json +1 -1
- package/helpers/helpers.d.ts +0 -1
|
@@ -7,7 +7,6 @@ export default class EitherOrFactory {
|
|
|
7
7
|
createNewRequestBody: (requestBody: RequestBody | null) => RequestBody;
|
|
8
8
|
finalizeNewRequestBody: (requestBody: RequestBody, config: Features) => RequestBody;
|
|
9
9
|
private reconstructImages;
|
|
10
|
-
private reconstructBranding;
|
|
11
10
|
private reconstructContext;
|
|
12
11
|
createImagesModel: () => {
|
|
13
12
|
main: any;
|
|
@@ -253,5 +253,7 @@ export default class LabelsModel {
|
|
|
253
253
|
cloneEitherOrMessage: string;
|
|
254
254
|
cloneEitherOrErrorMessage: string;
|
|
255
255
|
translationErrorMessage: string;
|
|
256
|
+
brandingTemplateLabel: string;
|
|
257
|
+
brandingTemplatePlaceholder: string;
|
|
256
258
|
constructor(labels?: LabelsModel);
|
|
257
259
|
}
|
package/package.json
CHANGED
package/helpers/helpers.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const remapKeysToSpecificCase: (obj: any, type: "camel" | "snake") => any;
|