@team-monolith/cds 0.2.7 → 0.2.8
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/icons/index.d.ts +1 -0
- package/dist/icons/index.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -1
- package/src/App.tsx +1 -1
- package/src/cds/icons/index.ts +1 -0
- package/src/cds/index.ts +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "remixicon/icons/Arrows/*.svg";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "remixicon/icons/Arrows/*.svg";
|
package/dist/index.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export * from "./icons/brand";
|
|
|
28
28
|
export * from "./icons/map";
|
|
29
29
|
export * from "./icons/system";
|
|
30
30
|
export * from "./icons/design";
|
|
31
|
+
export * from "./icons";
|
|
31
32
|
export { default as Dropdown } from "./patterns/Dropdown/Dropdown";
|
|
32
33
|
export * from "./patterns/Dropdown";
|
|
33
34
|
export { default as DropdownItem } from "./patterns/Dropdown/DropdownItem";
|
package/dist/index.js
CHANGED
|
@@ -28,6 +28,7 @@ export * from "./icons/brand";
|
|
|
28
28
|
export * from "./icons/map";
|
|
29
29
|
export * from "./icons/system";
|
|
30
30
|
export * from "./icons/design";
|
|
31
|
+
export * from "./icons";
|
|
31
32
|
export { default as Dropdown } from "./patterns/Dropdown/Dropdown";
|
|
32
33
|
export * from "./patterns/Dropdown";
|
|
33
34
|
export { default as DropdownItem } from "./patterns/Dropdown/DropdownItem";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@team-monolith/cds",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"dependencies": {
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"@types/react-dom": "^17.0.11",
|
|
13
13
|
"react": "^17.0.2",
|
|
14
14
|
"react-dom": "^17.0.2",
|
|
15
|
+
"remixicon": "^3.4.0",
|
|
15
16
|
"typescript": "^4.5.5"
|
|
16
17
|
},
|
|
17
18
|
"scripts": {
|
package/src/App.tsx
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "remixicon/icons/Arrows/*.svg";
|
package/src/cds/index.ts
CHANGED
|
@@ -41,6 +41,7 @@ export * from "./icons/brand";
|
|
|
41
41
|
export * from "./icons/map";
|
|
42
42
|
export * from "./icons/system";
|
|
43
43
|
export * from "./icons/design";
|
|
44
|
+
export * from "./icons";
|
|
44
45
|
|
|
45
46
|
export { default as Dropdown } from "./patterns/Dropdown/Dropdown";
|
|
46
47
|
export * from "./patterns/Dropdown";
|