@bynder/compact-view 4.2.2 → 4.2.3

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/components.js CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * bynder-compactview v4.2.2
3
+ * bynder-compactview v4.2.3
4
4
  * (c) 2024 Bynder
5
5
  */
6
6
 
package/index.d.ts CHANGED
@@ -65,6 +65,7 @@ interface Config {
65
65
  };
66
66
  hideSwitch?: boolean;
67
67
  __shouldAddOriginal__?: boolean;
68
+ noCache?: boolean;
68
69
  }
69
70
  interface Props {
70
71
  assetFieldSelection?: string;
@@ -83,10 +84,11 @@ interface Props {
83
84
  isContainerMode?: boolean;
84
85
  __shouldAddOriginal__?: boolean;
85
86
  hideSwitch?: boolean;
87
+ noCache?: boolean;
86
88
  }
87
89
  declare function App({ assetFieldSelection, assetFilter, assetTypes, defaultSearchTerm, language, mode,
88
90
  // eslint-disable-next-line no-console
89
- onSuccess, theme, hideExternalAccess, selectedAssets, hideLimitedUse, isContainerMode, __shouldAddOriginal__, hideSwitch }: Props): React.JSX.Element;
91
+ onSuccess, theme, hideExternalAccess, selectedAssets, hideLimitedUse, isContainerMode, __shouldAddOriginal__, hideSwitch, noCache }: Props): React.JSX.Element;
90
92
  declare const CompactView: typeof App;
91
93
  type CompactViewProps = Props;
92
94
  interface Props$0 {