@team-monolith/cds 0.2.0 → 0.2.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/dist/icons/design.d.ts +4 -0
- package/dist/icons/design.js +13 -0
- package/dist/icons/system.d.ts +3 -0
- package/dist/icons/system.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
- package/src/cds/icons/design.tsx +15 -0
- package/src/cds/icons/system.tsx +15 -0
- package/src/cds/index.ts +1 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
export var PencilFillIcon = function (props) { return (_jsx("svg", __assign({}, props, { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M12.8995 6.85431L17.1421 11.0969L7.24264 20.9964H3V16.7538L12.8995 6.85431ZM14.3137 5.44009L16.435 3.31877C16.8256 2.92825 17.4587 2.92825 17.8492 3.31877L20.6777 6.1472C21.0682 6.53772 21.0682 7.17089 20.6777 7.56141L18.5563 9.68273L14.3137 5.44009Z", fill: "currentColor" }) }))); };
|
package/dist/icons/system.d.ts
CHANGED
package/dist/icons/system.js
CHANGED
|
@@ -19,3 +19,4 @@ export var EyeFillIcon = function (props) { return (_jsx("svg", __assign({}, pro
|
|
|
19
19
|
export var InformationFillIcon = function (props) { return (_jsx("svg", __assign({}, props, { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM11 11V17H13V11H11ZM11 7V9H13V7H11Z", fill: "currentColor" }) }))); };
|
|
20
20
|
export var FilterFillIcon = function (props) { return (_jsx("svg", __assign({}, props, { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M21 4V6H20L14 15V22H10V15L4 6H3V4H21Z", fill: "currentColor" }) }))); };
|
|
21
21
|
export var CheckboxMultipleBlankLine = function (props) { return (_jsx("svg", __assign({}, props, { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24" }, { children: _jsx("path", { fill: "currentColor", d: "M7 7V3a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-4v3.992C17 21.55 16.551 22 15.992 22H3.008A1.006 1.006 0 0 1 2 20.992l.003-12.985C2.003 7.451 2.452 7 3.01 7H7Zm2 0h6.993C16.549 7 17 7.449 17 8.007V15h3V4H9v3ZM4.003 9L4 20h11V9H4.003Z" }) }))); };
|
|
22
|
+
export var ForbidFillIcon = function (props) { return (_jsx("svg", __assign({}, props, { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM8.52313 7.10891C8.25459 7.30029 7.99828 7.51644 7.75736 7.75736C7.51644 7.99828 7.30029 8.25459 7.10891 8.52313L15.4769 16.8911C15.7454 16.6997 16.0017 16.4836 16.2426 16.2426C16.4836 16.0017 16.6997 15.7454 16.8911 15.4769L8.52313 7.10891Z", fill: "currentColor" }) }))); };
|
package/dist/index.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export * from "./icons/arrows";
|
|
|
27
27
|
export * from "./icons/brand";
|
|
28
28
|
export * from "./icons/map";
|
|
29
29
|
export * from "./icons/system";
|
|
30
|
+
export * from "./icons/design";
|
|
30
31
|
export { default as Dropdown } from "./patterns/Dropdown/Dropdown";
|
|
31
32
|
export * from "./patterns/Dropdown";
|
|
32
33
|
export { default as DropdownItem } from "./patterns/Dropdown/DropdownItem";
|
package/dist/index.js
CHANGED
|
@@ -27,6 +27,7 @@ export * from "./icons/arrows";
|
|
|
27
27
|
export * from "./icons/brand";
|
|
28
28
|
export * from "./icons/map";
|
|
29
29
|
export * from "./icons/system";
|
|
30
|
+
export * from "./icons/design";
|
|
30
31
|
export { default as Dropdown } from "./patterns/Dropdown/Dropdown";
|
|
31
32
|
export * from "./patterns/Dropdown";
|
|
32
33
|
export { default as DropdownItem } from "./patterns/Dropdown/DropdownItem";
|
package/package.json
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export const PencilFillIcon = (props: { className?: string }) => (
|
|
2
|
+
<svg
|
|
3
|
+
{...props}
|
|
4
|
+
width="24"
|
|
5
|
+
height="24"
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
fill="none"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
>
|
|
10
|
+
<path
|
|
11
|
+
d="M12.8995 6.85431L17.1421 11.0969L7.24264 20.9964H3V16.7538L12.8995 6.85431ZM14.3137 5.44009L16.435 3.31877C16.8256 2.92825 17.4587 2.92825 17.8492 3.31877L20.6777 6.1472C21.0682 6.53772 21.0682 7.17089 20.6777 7.56141L18.5563 9.68273L14.3137 5.44009Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
);
|
package/src/cds/icons/system.tsx
CHANGED
|
@@ -126,3 +126,18 @@ export const CheckboxMultipleBlankLine = (props: { className?: string }) => (
|
|
|
126
126
|
/>
|
|
127
127
|
</svg>
|
|
128
128
|
);
|
|
129
|
+
export const ForbidFillIcon = (props: { className?: string }) => (
|
|
130
|
+
<svg
|
|
131
|
+
{...props}
|
|
132
|
+
width="24"
|
|
133
|
+
height="24"
|
|
134
|
+
viewBox="0 0 24 24"
|
|
135
|
+
fill="none"
|
|
136
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
137
|
+
>
|
|
138
|
+
<path
|
|
139
|
+
d="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM8.52313 7.10891C8.25459 7.30029 7.99828 7.51644 7.75736 7.75736C7.51644 7.99828 7.30029 8.25459 7.10891 8.52313L15.4769 16.8911C15.7454 16.6997 16.0017 16.4836 16.2426 16.2426C16.4836 16.0017 16.6997 15.7454 16.8911 15.4769L8.52313 7.10891Z"
|
|
140
|
+
fill="currentColor"
|
|
141
|
+
/>
|
|
142
|
+
</svg>
|
|
143
|
+
);
|
package/src/cds/index.ts
CHANGED
|
@@ -40,6 +40,7 @@ export * from "./icons/arrows";
|
|
|
40
40
|
export * from "./icons/brand";
|
|
41
41
|
export * from "./icons/map";
|
|
42
42
|
export * from "./icons/system";
|
|
43
|
+
export * from "./icons/design";
|
|
43
44
|
|
|
44
45
|
export { default as Dropdown } from "./patterns/Dropdown/Dropdown";
|
|
45
46
|
export * from "./patterns/Dropdown";
|