@bynder/compact-view 5.0.1 → 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 +78 -78
- package/package.json +12 -5
- package/Components.d.ts +0 -20
package/package.json
CHANGED
|
@@ -1,18 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bynder/compact-view",
|
|
3
3
|
"description": "Bynder Compact View",
|
|
4
|
-
"version": "5.0.
|
|
4
|
+
"version": "5.0.2",
|
|
5
5
|
"author": "Bynder",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"main": "index.js",
|
|
8
|
-
"module": "index.
|
|
9
|
-
"types": "
|
|
8
|
+
"module": "index.mjs",
|
|
9
|
+
"types": "index.d.ts",
|
|
10
10
|
"files": [
|
|
11
11
|
"index.js",
|
|
12
|
+
"index.esm.js",
|
|
12
13
|
"index.d.ts",
|
|
13
|
-
"
|
|
14
|
-
"components.d.ts"
|
|
14
|
+
"README.md"
|
|
15
15
|
],
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"import": "./index.mjs",
|
|
19
|
+
"require": "./index.js",
|
|
20
|
+
"types": "./index.d.ts"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
16
23
|
"dependencies": {},
|
|
17
24
|
"peerDependencies": {
|
|
18
25
|
"react": ">=16.8.0 <19.0.0",
|
package/Components.d.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export { AssetCard as Asset } from './views/asset/asset-card/AssetCard';
|
|
2
|
-
export { type Asset as displayAsset } from './views/asset/asset.type';
|
|
3
|
-
export { AssetList } from './views/asset/AssetList';
|
|
4
|
-
export { Button } from '@bynder/design-system';
|
|
5
|
-
export { Card } from '@bynder/design-system';
|
|
6
|
-
export { Checkbox } from '@bynder/design-system';
|
|
7
|
-
export { Chip } from './common/components/Chip';
|
|
8
|
-
export { Dropdown } from './common/components/dropdown/Dropdown';
|
|
9
|
-
export { DropdownListItem } from './common/components/dropdown/DropdownListItem';
|
|
10
|
-
export { MetaPropertyFilterContent as Metaproperty, type MetapropertyType as metaproperty, } from './filter/filters/metaproperty/MetapropertyFilterContent';
|
|
11
|
-
export { MetapropertyOptionComponent as MetapropertyOption, type MetapropertyOptionType as metapropertyOption, } from './filter/filters/metaproperty/MetapropertyOption';
|
|
12
|
-
export { SmartFilterContent as Smartfilter, type SmartfilterType as smartfilter, } from './filter/filters/metaproperty/SmartFilterContent';
|
|
13
|
-
export { HorizontalScroll } from './common/components/HorizontalScroll';
|
|
14
|
-
export { InfiniteScroll } from './common/components/InfiniteScroll';
|
|
15
|
-
export { Modal } from './common/components/Modal';
|
|
16
|
-
export { NoResults } from './common/components/NoResults';
|
|
17
|
-
export { Oops } from './error-handling/Oops';
|
|
18
|
-
export { ShadowRoot } from './style/shadowroot/ShadowRoot';
|
|
19
|
-
export { Skeleton } from './common/components/Skeleton';
|
|
20
|
-
export { Spinner } from './common/components/Spinner';
|