decap-cms-ui-default 3.7.0 → 3.8.0
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/CHANGELOG.md +11 -0
- package/dist/decap-cms-ui-default.js +2 -2
- package/dist/decap-cms-ui-default.js.map +1 -1
- package/dist/esm/Icon/images/_index.js +24 -0
- package/dist/esm/styles.js +41 -40
- package/package.json +3 -2
- package/src/Icon/images/_index.js +4 -0
- package/src/Icon/images/copy.svg +1 -0
- package/src/Icon/images/download.svg +1 -0
- package/src/styles.js +9 -3
|
@@ -138,6 +138,28 @@ iconCodeBlock.defaultProps = {
|
|
|
138
138
|
height: "20",
|
|
139
139
|
viewBox: "0 0 22 20"
|
|
140
140
|
};
|
|
141
|
+
var iconCopy = function iconCopy(props) {
|
|
142
|
+
return ___EmotionJSX("svg", props, ___EmotionJSX("path", {
|
|
143
|
+
d: "M19 21H8V7h11m0-2H8a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m-3-4H4a2 2 0 0 0-2 2v14h2V3h12z"
|
|
144
|
+
}));
|
|
145
|
+
};
|
|
146
|
+
iconCopy.defaultProps = {
|
|
147
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
148
|
+
width: "24",
|
|
149
|
+
height: "24",
|
|
150
|
+
viewBox: "0 0 24 24"
|
|
151
|
+
};
|
|
152
|
+
var iconDownload = function iconDownload(props) {
|
|
153
|
+
return ___EmotionJSX("svg", props, ___EmotionJSX("path", {
|
|
154
|
+
d: "M5 20h14v-2H5m14-9h-4V3H9v6H5l7 7z"
|
|
155
|
+
}));
|
|
156
|
+
};
|
|
157
|
+
iconDownload.defaultProps = {
|
|
158
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
159
|
+
width: "24",
|
|
160
|
+
height: "24",
|
|
161
|
+
viewBox: "0 0 24 24"
|
|
162
|
+
};
|
|
141
163
|
var iconDragHandle = function iconDragHandle(props) {
|
|
142
164
|
return ___EmotionJSX("svg", props, ___EmotionJSX("path", {
|
|
143
165
|
d: "M3 15v-2h18v2H3Zm0-4V9h18v2H3Z"
|
|
@@ -579,6 +601,8 @@ const images = {
|
|
|
579
601
|
close: iconClose,
|
|
580
602
|
code: iconCode,
|
|
581
603
|
'code-block': iconCodeBlock,
|
|
604
|
+
copy: iconCopy,
|
|
605
|
+
download: iconDownload,
|
|
582
606
|
'drag-handle': iconDragHandle,
|
|
583
607
|
eye: iconEye,
|
|
584
608
|
folder: iconFolder,
|