@team-monolith/cds 0.2.7 → 0.2.9

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.
@@ -0,0 +1,2 @@
1
+ export { default as arrowDropDownFillSvg } from "remixicon/icons/Arrows/arrow-drop-down-fill.svg";
2
+ export { ReactComponent as ArrowDropDownFillIcon } from "remixicon/icons/Arrows/arrow-drop-down-fill.svg";
@@ -0,0 +1,2 @@
1
+ export { default as arrowDropDownFillSvg } from "remixicon/icons/Arrows/arrow-drop-down-fill.svg";
2
+ export { ReactComponent as ArrowDropDownFillIcon } from "remixicon/icons/Arrows/arrow-drop-down-fill.svg";
@@ -0,0 +1,2 @@
1
+ export { default as playList2FillSvg } from "remixicon/icons/Media/play-list-2-fill.svg";
2
+ export { ReactComponent as PlayList2FillIcon } from "remixicon/icons/Media/play-list-2-fill.svg";
@@ -0,0 +1,2 @@
1
+ export { default as playList2FillSvg } from "remixicon/icons/Media/play-list-2-fill.svg";
2
+ export { ReactComponent as PlayList2FillIcon } from "remixicon/icons/Media/play-list-2-fill.svg";
@@ -0,0 +1,2 @@
1
+ export { default as refreshLineSvg } from "remixicon/icons/System/refresh-line.svg";
2
+ export { ReactComponent as RefreshLineIcon } from "remixicon/icons/System/refresh-line.svg";
@@ -0,0 +1,2 @@
1
+ export { default as refreshLineSvg } from "remixicon/icons/System/refresh-line.svg";
2
+ export { ReactComponent as RefreshLineIcon } from "remixicon/icons/System/refresh-line.svg";
package/dist/index.d.ts CHANGED
@@ -23,11 +23,13 @@ export { default as Tooltip } from "./components/Tooltip";
23
23
  export * from "./components/Tooltip";
24
24
  export { default as color } from "./foundation/color";
25
25
  export { default as shadow } from "./foundation/shadows";
26
- export * from "./icons/arrows";
27
26
  export * from "./icons/brand";
28
27
  export * from "./icons/map";
29
28
  export * from "./icons/system";
30
29
  export * from "./icons/design";
30
+ export * from "./icons/Arrows";
31
+ export * from "./icons/Media";
32
+ export * from "./icons/System";
31
33
  export { default as Dropdown } from "./patterns/Dropdown/Dropdown";
32
34
  export * from "./patterns/Dropdown";
33
35
  export { default as DropdownItem } from "./patterns/Dropdown/DropdownItem";
package/dist/index.js CHANGED
@@ -23,11 +23,13 @@ export { default as Tooltip } from "./components/Tooltip";
23
23
  export * from "./components/Tooltip";
24
24
  export { default as color } from "./foundation/color";
25
25
  export { default as shadow } from "./foundation/shadows";
26
- export * from "./icons/arrows";
27
26
  export * from "./icons/brand";
28
27
  export * from "./icons/map";
29
28
  export * from "./icons/system";
30
29
  export * from "./icons/design";
30
+ export * from "./icons/Arrows";
31
+ export * from "./icons/Media";
32
+ export * from "./icons/System";
31
33
  export { default as Dropdown } from "./patterns/Dropdown/Dropdown";
32
34
  export * from "./patterns/Dropdown";
33
35
  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.7",
3
+ "version": "0.2.9",
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": {
@@ -0,0 +1,2 @@
1
+ export { default as arrowDropDownFillSvg } from "remixicon/icons/Arrows/arrow-drop-down-fill.svg";
2
+ export { ReactComponent as ArrowDropDownFillIcon } from "remixicon/icons/Arrows/arrow-drop-down-fill.svg";
@@ -0,0 +1,2 @@
1
+ export { default as playList2FillSvg } from "remixicon/icons/Media/play-list-2-fill.svg";
2
+ export { ReactComponent as PlayList2FillIcon } from "remixicon/icons/Media/play-list-2-fill.svg";
@@ -0,0 +1,2 @@
1
+ export { default as refreshLineSvg } from "remixicon/icons/System/refresh-line.svg";
2
+ export { ReactComponent as RefreshLineIcon } from "remixicon/icons/System/refresh-line.svg";
package/src/cds/index.ts CHANGED
@@ -36,12 +36,15 @@ export * from "./components/Tooltip";
36
36
  export { default as color } from "./foundation/color";
37
37
  export { default as shadow } from "./foundation/shadows";
38
38
 
39
- export * from "./icons/arrows";
40
39
  export * from "./icons/brand";
41
40
  export * from "./icons/map";
42
41
  export * from "./icons/system";
43
42
  export * from "./icons/design";
44
43
 
44
+ export * from "./icons/Arrows";
45
+ export * from "./icons/Media";
46
+ export * from "./icons/System";
47
+
45
48
  export { default as Dropdown } from "./patterns/Dropdown/Dropdown";
46
49
  export * from "./patterns/Dropdown";
47
50