@bynder/compact-view 5.0.0 → 5.0.2
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/index.d.ts +10 -0
- package/index.js +164 -153
- package/package.json +12 -5
- package/Components.d.ts +0 -20
package/index.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { App as CompactView, Props as CompactViewProps } from './App';
|
|
2
|
+
export { type File } from './select/file.type';
|
|
3
|
+
export { Login } from './login/LoginContext';
|
|
4
|
+
export { Modal } from './common/components/Modal';
|
|
5
|
+
export { type PortalConfig, type OnSuccessCallback, type AdditionalInfo, } from './app-config/appConfig.type';
|
|
6
|
+
export { CompactView, type CompactViewProps };
|
|
7
|
+
export { type SelectionMode as selectionMode } from './app-config/appConfig.type';
|
|
8
|
+
export { type Theme as theme } from './style/Theming';
|
|
9
|
+
export { type AssetFilterJson as assetFilter } from './filter/assetFilter.type';
|
|
10
|
+
export { type AssetType as assetType } from './views/asset/asset.type';
|