bruce-models 1.4.2 → 1.4.4
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/bruce-models.es5.js +4 -1
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +4 -1
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/client-file/client-file.js +2 -1
- package/dist/lib/client-file/client-file.js.map +1 -1
- package/dist/lib/markup/markup.js +2 -0
- package/dist/lib/markup/markup.js.map +1 -1
- package/dist/types/client-file/client-file.d.ts +1 -0
- package/dist/types/markup/markup.d.ts +2 -1
- package/package.json +1 -1
package/dist/bruce-models.umd.js
CHANGED
|
@@ -4509,7 +4509,8 @@
|
|
|
4509
4509
|
const { api, filter, req: reqParams } = params;
|
|
4510
4510
|
const data = yield api.POST("files/filtered", filter, exports.Api.PrepReqParams(reqParams));
|
|
4511
4511
|
return {
|
|
4512
|
-
clientFiles: data.Items
|
|
4512
|
+
clientFiles: data.Items,
|
|
4513
|
+
totalCount: data.TotalCount
|
|
4513
4514
|
};
|
|
4514
4515
|
});
|
|
4515
4516
|
}
|
|
@@ -6567,6 +6568,8 @@
|
|
|
6567
6568
|
EItemType["Embed"] = "EMBED";
|
|
6568
6569
|
// Content is expected to be an SVG or font-awesome icon.
|
|
6569
6570
|
EItemType["Icon"] = "ICON";
|
|
6571
|
+
// Content is expected to be an image.
|
|
6572
|
+
EItemType["Image"] = "IMAGE";
|
|
6570
6573
|
})(EItemType = Div.EItemType || (Div.EItemType = {}));
|
|
6571
6574
|
let ItemAction;
|
|
6572
6575
|
(function (ItemAction) {
|