@orangelogic/design-system 2.151.0 → 2.152.0
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/library/chunks/{asset-link-format.Bctc22QM.js → asset-link-format.DzYh0_YS.js} +1127 -883
- package/library/chunks/{folder-select.TPHiDGrX.js → folder-select.BKAuh4GE.js} +1 -1
- package/library/chunks/{tree.BDAj1Xs2.js → tree.C2dPd6gt.js} +219 -245
- package/library/chunks/v4.CKZ6klMF.js +29 -0
- package/library/components/asset-link-format.js +1 -1
- package/library/components/atoms.js +1 -1
- package/library/components/file-on-demand.js +1 -1
- package/library/components/folder-select.js +2 -2
- package/library/components/molecules.js +1 -1
- package/library/components/organisms.js +1 -1
- package/library/components/tree-item.js +1 -1
- package/library/components/tree.js +6 -5
- package/library/components/types.js +16959 -17191
- package/library/package.json +1 -1
- package/library/packages/organisms/src/asset-link-format/asset-link-format.d.ts +7 -0
- package/package.json +1 -1
package/library/package.json
CHANGED
|
@@ -39,6 +39,13 @@ export default class CxAssetLinkFormat extends CortexElement {
|
|
|
39
39
|
'cx-space': typeof CxSpace;
|
|
40
40
|
'cx-typography': typeof CxTypography;
|
|
41
41
|
};
|
|
42
|
+
/**
|
|
43
|
+
* Transform requests must resolve to a web-displayable image (the browser renders the
|
|
44
|
+
* response directly), so extensions like PSD/TIFF/AI that the source asset may carry are not
|
|
45
|
+
* valid targets for the transformed link — fall back to JPG for those, same as the source
|
|
46
|
+
* extension fallback in asset-transformation-dialog.
|
|
47
|
+
*/
|
|
48
|
+
private static getTransformExtension;
|
|
42
49
|
private readonly localize;
|
|
43
50
|
/**
|
|
44
51
|
* The base URL for the asset service.
|