@blaze-cms/plugin-data-ui 0.139.0-project-admin-customisations.0 → 0.139.1-core-styles.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 +62 -1
- package/lib/components/EntityManager/Entity/Entity.js +20 -9
- package/lib/components/EntityManager/Entity/Entity.js.map +1 -1
- package/lib/components/EntityManager/Entity/SideBarRelations/hooks/useCustomSidebarData.js +9 -1
- package/lib/components/EntityManager/Entity/SideBarRelations/hooks/useCustomSidebarData.js.map +1 -1
- package/lib/components/EntityManager/Entity/actions-handlers/update/submit.js +2 -2
- package/lib/components/EntityManager/Entity/actions-handlers/update/submit.js.map +1 -1
- package/lib/components/EntityManager/EntityManager.js +2 -2
- package/lib/components/EntityManager/EntityManager.js.map +1 -1
- package/lib/components/EntityManager/utils/RecordEditContext/index.js +16 -0
- package/lib/components/EntityManager/utils/RecordEditContext/index.js.map +1 -0
- package/lib/components/EntityManager/utils/data-mappers.js +2 -2
- package/lib/components/EntityManager/utils/data-mappers.js.map +1 -1
- package/lib/components/EntityManager/utils/entity.js +2 -2
- package/lib/components/EntityManager/utils/entity.js.map +1 -1
- package/lib/components/InfoBoxes/container/InfoBoxContainer.js +17 -2
- package/lib/components/InfoBoxes/container/InfoBoxContainer.js.map +1 -1
- package/lib/components/InfoBoxes/hooks/useData.js +4 -2
- package/lib/components/InfoBoxes/hooks/useData.js.map +1 -1
- package/lib/components/ListingTable/ListingTable.js +4 -12
- package/lib/components/ListingTable/ListingTable.js.map +1 -1
- package/lib/components/ListingTable/mappers/populate-rows.js +2 -2
- package/lib/components/ListingTable/mappers/populate-rows.js.map +1 -1
- package/lib/components/ListingTable/service/index.js +2 -2
- package/lib/components/ListingTable/service/index.js.map +1 -1
- package/lib/icons/ContentIcon.js +47 -46
- package/lib/icons/ContentIcon.js.map +1 -1
- package/lib/icons/SettingsIcon.js +13 -32
- package/lib/icons/SettingsIcon.js.map +1 -1
- package/lib/icons/TaxonomyIcon.js +33 -52
- package/lib/icons/TaxonomyIcon.js.map +1 -1
- package/lib/icons/UsersIcon.js +13 -33
- package/lib/icons/UsersIcon.js.map +1 -1
- package/lib-es/components/EntityManager/Entity/Entity.js +13 -5
- package/lib-es/components/EntityManager/Entity/Entity.js.map +1 -1
- package/lib-es/components/EntityManager/Entity/SideBarRelations/hooks/useCustomSidebarData.js +10 -1
- package/lib-es/components/EntityManager/Entity/SideBarRelations/hooks/useCustomSidebarData.js.map +1 -1
- package/lib-es/components/EntityManager/Entity/actions-handlers/update/submit.js +2 -2
- package/lib-es/components/EntityManager/EntityManager.js +2 -2
- package/lib-es/components/EntityManager/utils/RecordEditContext/index.js +6 -0
- package/lib-es/components/EntityManager/utils/RecordEditContext/index.js.map +1 -0
- package/lib-es/components/EntityManager/utils/data-mappers.js +2 -2
- package/lib-es/components/EntityManager/utils/entity.js +2 -2
- package/lib-es/components/InfoBoxes/container/InfoBoxContainer.js +10 -2
- package/lib-es/components/InfoBoxes/container/InfoBoxContainer.js.map +1 -1
- package/lib-es/components/InfoBoxes/hooks/useData.js +4 -2
- package/lib-es/components/InfoBoxes/hooks/useData.js.map +1 -1
- package/lib-es/components/ListingTable/ListingTable.js +4 -9
- package/lib-es/components/ListingTable/ListingTable.js.map +1 -1
- package/lib-es/components/ListingTable/mappers/populate-rows.js +2 -2
- package/lib-es/components/ListingTable/service/index.js +2 -2
- package/lib-es/icons/ContentIcon.js +45 -45
- package/lib-es/icons/ContentIcon.js.map +1 -1
- package/lib-es/icons/SettingsIcon.js +13 -33
- package/lib-es/icons/SettingsIcon.js.map +1 -1
- package/lib-es/icons/TaxonomyIcon.js +33 -53
- package/lib-es/icons/TaxonomyIcon.js.map +1 -1
- package/lib-es/icons/UsersIcon.js +13 -34
- package/lib-es/icons/UsersIcon.js.map +1 -1
- package/package.json +11 -11
- package/src/components/EntityManager/Entity/Entity.js +86 -75
- package/src/components/EntityManager/Entity/SideBarRelations/hooks/useCustomSidebarData.js +12 -1
- package/src/components/EntityManager/utils/RecordEditContext/index.js +7 -0
- package/src/components/InfoBoxes/container/InfoBoxContainer.js +12 -2
- package/src/components/InfoBoxes/hooks/useData.js +5 -2
- package/src/components/ListingTable/ListingTable.js +11 -16
- package/src/icons/ContentIcon.js +68 -57
- package/src/icons/SettingsIcon.js +24 -36
- package/src/icons/TaxonomyIcon.js +46 -58
- package/src/icons/UsersIcon.js +21 -34
|
@@ -1,80 +1,80 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ICON_COLOR } from '../constants';
|
|
3
3
|
function ContentIcon({
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
fill = ICON_COLOR.FILL,
|
|
5
|
+
stroke = ICON_COLOR.STROKE
|
|
6
6
|
}) {
|
|
7
7
|
return /*#__PURE__*/React.createElement("svg", {
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
10
|
-
viewBox: "0 0
|
|
8
|
+
width: "19px",
|
|
9
|
+
height: "19px",
|
|
10
|
+
viewBox: "0 0 21 21",
|
|
11
11
|
version: "1.1",
|
|
12
12
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13
13
|
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
14
|
-
}, /*#__PURE__*/React.createElement("title", null, "
|
|
15
|
-
id: "
|
|
14
|
+
}, /*#__PURE__*/React.createElement("title", null, "content"), /*#__PURE__*/React.createElement("g", {
|
|
15
|
+
id: "Page-1",
|
|
16
16
|
stroke: "none",
|
|
17
17
|
strokeWidth: 1,
|
|
18
18
|
fill: "none",
|
|
19
19
|
fillRule: "evenodd"
|
|
20
20
|
}, /*#__PURE__*/React.createElement("g", {
|
|
21
|
-
id: "
|
|
22
|
-
transform: "translate(
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Group-4",
|
|
25
|
-
transform: "translate(9, 19)"
|
|
26
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
27
|
-
id: "Group-3",
|
|
28
|
-
transform: "translate(0, 176)"
|
|
29
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
30
|
-
id: "photograph",
|
|
31
|
-
transform: "translate(7, 7)"
|
|
21
|
+
id: "content",
|
|
22
|
+
transform: "translate(1, 1)"
|
|
32
23
|
}, /*#__PURE__*/React.createElement("g", {
|
|
33
24
|
id: "Group"
|
|
34
25
|
}, /*#__PURE__*/React.createElement("path", {
|
|
35
|
-
d: "M0,8.
|
|
36
|
-
id: "Shape",
|
|
37
|
-
stroke:
|
|
38
|
-
|
|
26
|
+
d: "M0,8.70833334 L5.445875,3.26245834 C6.37331215,2.33530123 7.87668785,2.33530123 8.804125,3.26245834 L14.25,8.70833334",
|
|
27
|
+
id: "Shape-path",
|
|
28
|
+
stroke: stroke,
|
|
29
|
+
strokeLinecap: "round",
|
|
30
|
+
strokeLinejoin: "round"
|
|
31
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
d: "M11.875,6.33333334 L13.758375,4.44995834 C14.6858122,3.52280123 16.1891878,3.52280123 17.116625,4.44995834 L19,6.33333334",
|
|
33
|
+
id: "Shape-path",
|
|
34
|
+
stroke: stroke,
|
|
35
|
+
strokeLinecap: "round",
|
|
36
|
+
strokeLinejoin: "round"
|
|
37
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
d: "M2.375,19 L16.625,19 C17.9366763,19 19,17.9366763 19,16.625 L19,2.375 C19,1.06332371 17.9366763,0 16.625,0 L2.375,0 C1.06332371,0 0,1.06332371 0,2.375 L0,16.625 C0,17.9366763 1.06332371,19 2.375,19 Z",
|
|
39
|
+
id: "Shape-path",
|
|
40
|
+
stroke: stroke,
|
|
39
41
|
strokeLinecap: "round",
|
|
40
42
|
strokeLinejoin: "round"
|
|
41
43
|
}), /*#__PURE__*/React.createElement("circle", {
|
|
42
44
|
id: "Oval",
|
|
43
|
-
fill:
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
45
|
+
fill: fill,
|
|
46
|
+
fillRule: "nonzero",
|
|
47
|
+
cx: "11.4791666",
|
|
48
|
+
cy: "2.77083334",
|
|
49
|
+
r: "1.1875"
|
|
47
50
|
})), /*#__PURE__*/React.createElement("line", {
|
|
48
51
|
x1: 0,
|
|
49
|
-
y1: "
|
|
50
|
-
x2:
|
|
51
|
-
y2: "
|
|
52
|
+
y1: "9.23611111",
|
|
53
|
+
x2: 19,
|
|
54
|
+
y2: "9.23611111",
|
|
52
55
|
id: "Path",
|
|
53
|
-
stroke:
|
|
54
|
-
strokeWidth: "1.5",
|
|
56
|
+
stroke: stroke,
|
|
55
57
|
strokeLinecap: "round",
|
|
56
58
|
strokeLinejoin: "round"
|
|
57
59
|
}), /*#__PURE__*/React.createElement("line", {
|
|
58
|
-
x1: "3.
|
|
59
|
-
y1: "
|
|
60
|
-
x2: "
|
|
61
|
-
y2: "
|
|
60
|
+
x1: "3.95833334",
|
|
61
|
+
y1: "12.4027778",
|
|
62
|
+
x2: "15.3055553",
|
|
63
|
+
y2: "12.4027778",
|
|
62
64
|
id: "Path",
|
|
63
|
-
stroke:
|
|
64
|
-
strokeWidth: "1.5",
|
|
65
|
+
stroke: stroke,
|
|
65
66
|
strokeLinecap: "round",
|
|
66
67
|
strokeLinejoin: "round"
|
|
67
68
|
}), /*#__PURE__*/React.createElement("line", {
|
|
68
|
-
x1: "3.
|
|
69
|
-
y1: "
|
|
70
|
-
x2: "
|
|
71
|
-
y2: "
|
|
69
|
+
x1: "3.95833334",
|
|
70
|
+
y1: "15.5694445",
|
|
71
|
+
x2: "12.1388885",
|
|
72
|
+
y2: "15.5694445",
|
|
72
73
|
id: "Path",
|
|
73
|
-
stroke:
|
|
74
|
-
strokeWidth: "1.5",
|
|
74
|
+
stroke: stroke,
|
|
75
75
|
strokeLinecap: "round",
|
|
76
76
|
strokeLinejoin: "round"
|
|
77
|
-
}))))
|
|
77
|
+
}))));
|
|
78
78
|
}
|
|
79
79
|
export default ContentIcon;
|
|
80
80
|
//# sourceMappingURL=ContentIcon.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ContentIcon.js","names":["React","
|
|
1
|
+
{"version":3,"file":"ContentIcon.js","names":["React","ICON_COLOR","ContentIcon","fill","FILL","stroke","STROKE","createElement","width","height","viewBox","version","xmlns","xmlnsXlink","id","strokeWidth","fillRule","transform","d","strokeLinecap","strokeLinejoin","cx","cy","r","x1","y1","x2","y2"],"sources":["../../src/icons/ContentIcon.js"],"sourcesContent":["import React from 'react';\nimport { ICON_COLOR } from '../constants';\n\nfunction ContentIcon({ fill = ICON_COLOR.FILL, stroke = ICON_COLOR.STROKE }) {\n return (\n <svg\n width=\"19px\"\n height=\"19px\"\n viewBox=\"0 0 21 21\"\n version=\"1.1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlnsXlink=\"http://www.w3.org/1999/xlink\">\n <title>content</title>\n <g id=\"Page-1\" stroke=\"none\" strokeWidth={1} fill=\"none\" fillRule=\"evenodd\">\n <g id=\"content\" transform=\"translate(1, 1)\">\n <g id=\"Group\">\n <path\n d=\"M0,8.70833334 L5.445875,3.26245834 C6.37331215,2.33530123 7.87668785,2.33530123 8.804125,3.26245834 L14.25,8.70833334\"\n id=\"Shape-path\"\n stroke={stroke}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M11.875,6.33333334 L13.758375,4.44995834 C14.6858122,3.52280123 16.1891878,3.52280123 17.116625,4.44995834 L19,6.33333334\"\n id=\"Shape-path\"\n stroke={stroke}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M2.375,19 L16.625,19 C17.9366763,19 19,17.9366763 19,16.625 L19,2.375 C19,1.06332371 17.9366763,0 16.625,0 L2.375,0 C1.06332371,0 0,1.06332371 0,2.375 L0,16.625 C0,17.9366763 1.06332371,19 2.375,19 Z\"\n id=\"Shape-path\"\n stroke={stroke}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <circle\n id=\"Oval\"\n fill={fill}\n fillRule=\"nonzero\"\n cx=\"11.4791666\"\n cy=\"2.77083334\"\n r=\"1.1875\"\n />\n </g>\n <line\n x1={0}\n y1=\"9.23611111\"\n x2={19}\n y2=\"9.23611111\"\n id=\"Path\"\n stroke={stroke}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <line\n x1=\"3.95833334\"\n y1=\"12.4027778\"\n x2=\"15.3055553\"\n y2=\"12.4027778\"\n id=\"Path\"\n stroke={stroke}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <line\n x1=\"3.95833334\"\n y1=\"15.5694445\"\n x2=\"12.1388885\"\n y2=\"15.5694445\"\n id=\"Path\"\n stroke={stroke}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </g>\n </g>\n </svg>\n );\n}\n\nexport default ContentIcon;\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,UAAU,QAAQ,cAAc;AAEzC,SAASC,WAAWA,CAAC;EAAEC,IAAI,GAAGF,UAAU,CAACG,IAAI;EAAEC,MAAM,GAAGJ,UAAU,CAACK;AAAO,CAAC,EAAE;EAC3E,oBACEN,KAAA,CAAAO,aAAA;IACEC,KAAK,EAAC,MAAM;IACZC,MAAM,EAAC,MAAM;IACbC,OAAO,EAAC,WAAW;IACnBC,OAAO,EAAC,KAAK;IACbC,KAAK,EAAC,4BAA4B;IAClCC,UAAU,EAAC;EAA8B,gBACzCb,KAAA,CAAAO,aAAA,gBAAO,SAAc,CAAC,eACtBP,KAAA,CAAAO,aAAA;IAAGO,EAAE,EAAC,QAAQ;IAACT,MAAM,EAAC,MAAM;IAACU,WAAW,EAAE,CAAE;IAACZ,IAAI,EAAC,MAAM;IAACa,QAAQ,EAAC;EAAS,gBACzEhB,KAAA,CAAAO,aAAA;IAAGO,EAAE,EAAC,SAAS;IAACG,SAAS,EAAC;EAAiB,gBACzCjB,KAAA,CAAAO,aAAA;IAAGO,EAAE,EAAC;EAAO,gBACXd,KAAA,CAAAO,aAAA;IACEW,CAAC,EAAC,uHAAuH;IACzHJ,EAAE,EAAC,YAAY;IACfT,MAAM,EAAEA,MAAO;IACfc,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC;EAAO,CACvB,CAAC,eACFpB,KAAA,CAAAO,aAAA;IACEW,CAAC,EAAC,2HAA2H;IAC7HJ,EAAE,EAAC,YAAY;IACfT,MAAM,EAAEA,MAAO;IACfc,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC;EAAO,CACvB,CAAC,eACFpB,KAAA,CAAAO,aAAA;IACEW,CAAC,EAAC,yMAAyM;IAC3MJ,EAAE,EAAC,YAAY;IACfT,MAAM,EAAEA,MAAO;IACfc,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC;EAAO,CACvB,CAAC,eACFpB,KAAA,CAAAO,aAAA;IACEO,EAAE,EAAC,MAAM;IACTX,IAAI,EAAEA,IAAK;IACXa,QAAQ,EAAC,SAAS;IAClBK,EAAE,EAAC,YAAY;IACfC,EAAE,EAAC,YAAY;IACfC,CAAC,EAAC;EAAQ,CACX,CACA,CAAC,eACJvB,KAAA,CAAAO,aAAA;IACEiB,EAAE,EAAE,CAAE;IACNC,EAAE,EAAC,YAAY;IACfC,EAAE,EAAE,EAAG;IACPC,EAAE,EAAC,YAAY;IACfb,EAAE,EAAC,MAAM;IACTT,MAAM,EAAEA,MAAO;IACfc,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC;EAAO,CACvB,CAAC,eACFpB,KAAA,CAAAO,aAAA;IACEiB,EAAE,EAAC,YAAY;IACfC,EAAE,EAAC,YAAY;IACfC,EAAE,EAAC,YAAY;IACfC,EAAE,EAAC,YAAY;IACfb,EAAE,EAAC,MAAM;IACTT,MAAM,EAAEA,MAAO;IACfc,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC;EAAO,CACvB,CAAC,eACFpB,KAAA,CAAAO,aAAA;IACEiB,EAAE,EAAC,YAAY;IACfC,EAAE,EAAC,YAAY;IACfC,EAAE,EAAC,YAAY;IACfC,EAAE,EAAC,YAAY;IACfb,EAAE,EAAC,MAAM;IACTT,MAAM,EAAEA,MAAO;IACfc,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC;EAAO,CACvB,CACA,CACF,CACA,CAAC;AAEV;AAEA,eAAelB,WAAW"}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { ICON_SIZE } from '../constants';
|
|
2
|
+
import { ICON_SIZE, ICON_COLOR } from '../constants';
|
|
3
3
|
function SettingsIcon({
|
|
4
4
|
width = ICON_SIZE.WIDTH,
|
|
5
|
-
height = ICON_SIZE.HEIGHT
|
|
5
|
+
height = ICON_SIZE.HEIGHT,
|
|
6
|
+
stroke = ICON_COLOR.STROKE
|
|
6
7
|
}) {
|
|
7
8
|
return /*#__PURE__*/React.createElement("svg", {
|
|
8
9
|
width: width,
|
|
@@ -11,46 +12,25 @@ function SettingsIcon({
|
|
|
11
12
|
version: "1.1",
|
|
12
13
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13
14
|
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
14
|
-
}, /*#__PURE__*/React.createElement("title", null, "
|
|
15
|
-
id: "
|
|
15
|
+
}, /*#__PURE__*/React.createElement("title", null, "setting"), /*#__PURE__*/React.createElement("g", {
|
|
16
|
+
id: "Page-1",
|
|
16
17
|
stroke: "none",
|
|
17
18
|
strokeWidth: 1,
|
|
18
19
|
fill: "none",
|
|
19
|
-
fillRule: "evenodd"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
transform: "translate(-14, -494)"
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Group-4",
|
|
25
|
-
transform: "translate(9, 19)"
|
|
26
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
27
|
-
id: "settings",
|
|
28
|
-
transform: "translate(0, 470)"
|
|
29
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
30
|
-
id: "icons/setting",
|
|
31
|
-
transform: "translate(6, 6)"
|
|
20
|
+
fillRule: "evenodd",
|
|
21
|
+
strokeLinecap: "round",
|
|
22
|
+
strokeLinejoin: "round"
|
|
32
23
|
}, /*#__PURE__*/React.createElement("g", {
|
|
33
24
|
id: "Group",
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
strokeLinejoin: "round",
|
|
37
|
-
strokeWidth: "1.5"
|
|
25
|
+
transform: "translate(1, 1)",
|
|
26
|
+
stroke: stroke
|
|
38
27
|
}, /*#__PURE__*/React.createElement("path", {
|
|
39
|
-
d: "M8.13888889,1.46333333 C8.61222222,-0.
|
|
28
|
+
d: "M8.13888889,1.46333333 C8.61222222,-0.487777777 11.3877778,-0.487777777 11.8611111,1.46333333 C12.0051589,2.05784356 12.4244819,2.54780471 12.9896128,2.78193979 C13.5547438,3.01607487 14.1977123,2.96622362 14.72,2.64777778 C16.4344444,1.60333333 18.3977778,3.56555556 17.3533333,5.28111111 C17.0353472,5.803171 16.9856162,6.44564563 17.2194755,7.0104213 C17.4533348,7.57519696 17.9426987,7.99444609 18.5366667,8.13888889 C20.4877778,8.61222222 20.4877778,11.3877778 18.5366667,11.8611111 C17.9421564,12.0051589 17.4521953,12.4244819 17.2180602,12.9896128 C16.9839251,13.5547438 17.0337764,14.1977123 17.3522222,14.72 C18.3966667,16.4344444 16.4344444,18.3977778 14.7188889,17.3533333 C14.196829,17.0353472 13.5543544,16.9856162 12.9895787,17.2194755 C12.424803,17.4533348 12.0055539,17.9426987 11.8611111,18.5366667 C11.3877778,20.4877778 8.61222222,20.4877778 8.13888889,18.5366667 C7.99484107,17.9421564 7.57551807,17.4521953 7.01038716,17.2180602 C6.44525624,16.9839251 5.80228769,17.0337764 5.28,17.3522222 C3.56555556,18.3966667 1.60222222,16.4344444 2.64666667,14.7188889 C2.96465281,14.196829 3.01438377,13.5543544 2.78052448,12.9895787 C2.5466652,12.424803 2.05730134,12.0055539 1.46333333,11.8611111 C-0.487777777,11.3877778 -0.487777777,8.61222222 1.46333333,8.13888889 C2.05784356,7.99484107 2.54780471,7.57551807 2.78193979,7.01038716 C3.01607487,6.44525624 2.96622362,5.80228769 2.64777778,5.28 C1.60333333,3.56555556 3.56555556,1.60222222 5.28111111,2.64666667 C6.38777778,3.32222222 7.83222222,2.72444444 8.13888889,1.46333333 Z",
|
|
40
29
|
id: "Path"
|
|
41
30
|
}), /*#__PURE__*/React.createElement("path", {
|
|
42
|
-
d: "M13.
|
|
31
|
+
d: "M13.6666666,10.3333333 C13.6666666,12.1742825 12.1742825,13.6666666 10.3333333,13.6666666 C8.49238416,13.6666666 7,12.1742825 7,10.3333333 C7,8.49238416 8.49238416,7 10.3333333,7 C12.1742825,7 13.6666666,8.49238416 13.6666666,10.3333333 L13.6666666,10.3333333 Z",
|
|
43
32
|
id: "Path"
|
|
44
|
-
}))
|
|
45
|
-
id: "Rectangle",
|
|
46
|
-
fillOpacity: 0,
|
|
47
|
-
fill: "#000000",
|
|
48
|
-
fillRule: "nonzero",
|
|
49
|
-
x: 0,
|
|
50
|
-
y: 0,
|
|
51
|
-
width: 20,
|
|
52
|
-
height: 20
|
|
53
|
-
})))))));
|
|
33
|
+
}))));
|
|
54
34
|
}
|
|
55
35
|
export default SettingsIcon;
|
|
56
36
|
//# sourceMappingURL=SettingsIcon.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SettingsIcon.js","names":["React","ICON_SIZE","SettingsIcon","width","WIDTH","height","HEIGHT","createElement","viewBox","version","xmlns","xmlnsXlink","id","
|
|
1
|
+
{"version":3,"file":"SettingsIcon.js","names":["React","ICON_SIZE","ICON_COLOR","SettingsIcon","width","WIDTH","height","HEIGHT","stroke","STROKE","createElement","viewBox","version","xmlns","xmlnsXlink","id","strokeWidth","fill","fillRule","strokeLinecap","strokeLinejoin","transform","d"],"sources":["../../src/icons/SettingsIcon.js"],"sourcesContent":["import React from 'react';\nimport { ICON_SIZE, ICON_COLOR } from '../constants';\n\nfunction SettingsIcon({\n width = ICON_SIZE.WIDTH,\n height = ICON_SIZE.HEIGHT,\n stroke = ICON_COLOR.STROKE\n}) {\n return (\n <svg\n width={width}\n height={height}\n viewBox=\"0 0 22 22\"\n version=\"1.1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlnsXlink=\"http://www.w3.org/1999/xlink\">\n <title>setting</title>\n <g\n id=\"Page-1\"\n stroke=\"none\"\n strokeWidth={1}\n fill=\"none\"\n fillRule=\"evenodd\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\">\n <g id=\"Group\" transform=\"translate(1, 1)\" stroke={stroke}>\n <path\n d=\"M8.13888889,1.46333333 C8.61222222,-0.487777777 11.3877778,-0.487777777 11.8611111,1.46333333 C12.0051589,2.05784356 12.4244819,2.54780471 12.9896128,2.78193979 C13.5547438,3.01607487 14.1977123,2.96622362 14.72,2.64777778 C16.4344444,1.60333333 18.3977778,3.56555556 17.3533333,5.28111111 C17.0353472,5.803171 16.9856162,6.44564563 17.2194755,7.0104213 C17.4533348,7.57519696 17.9426987,7.99444609 18.5366667,8.13888889 C20.4877778,8.61222222 20.4877778,11.3877778 18.5366667,11.8611111 C17.9421564,12.0051589 17.4521953,12.4244819 17.2180602,12.9896128 C16.9839251,13.5547438 17.0337764,14.1977123 17.3522222,14.72 C18.3966667,16.4344444 16.4344444,18.3977778 14.7188889,17.3533333 C14.196829,17.0353472 13.5543544,16.9856162 12.9895787,17.2194755 C12.424803,17.4533348 12.0055539,17.9426987 11.8611111,18.5366667 C11.3877778,20.4877778 8.61222222,20.4877778 8.13888889,18.5366667 C7.99484107,17.9421564 7.57551807,17.4521953 7.01038716,17.2180602 C6.44525624,16.9839251 5.80228769,17.0337764 5.28,17.3522222 C3.56555556,18.3966667 1.60222222,16.4344444 2.64666667,14.7188889 C2.96465281,14.196829 3.01438377,13.5543544 2.78052448,12.9895787 C2.5466652,12.424803 2.05730134,12.0055539 1.46333333,11.8611111 C-0.487777777,11.3877778 -0.487777777,8.61222222 1.46333333,8.13888889 C2.05784356,7.99484107 2.54780471,7.57551807 2.78193979,7.01038716 C3.01607487,6.44525624 2.96622362,5.80228769 2.64777778,5.28 C1.60333333,3.56555556 3.56555556,1.60222222 5.28111111,2.64666667 C6.38777778,3.32222222 7.83222222,2.72444444 8.13888889,1.46333333 Z\"\n id=\"Path\"\n />\n <path\n d=\"M13.6666666,10.3333333 C13.6666666,12.1742825 12.1742825,13.6666666 10.3333333,13.6666666 C8.49238416,13.6666666 7,12.1742825 7,10.3333333 C7,8.49238416 8.49238416,7 10.3333333,7 C12.1742825,7 13.6666666,8.49238416 13.6666666,10.3333333 L13.6666666,10.3333333 Z\"\n id=\"Path\"\n />\n </g>\n </g>\n </svg>\n );\n}\n\nexport default SettingsIcon;\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,SAAS,EAAEC,UAAU,QAAQ,cAAc;AAEpD,SAASC,YAAYA,CAAC;EACpBC,KAAK,GAAGH,SAAS,CAACI,KAAK;EACvBC,MAAM,GAAGL,SAAS,CAACM,MAAM;EACzBC,MAAM,GAAGN,UAAU,CAACO;AACtB,CAAC,EAAE;EACD,oBACET,KAAA,CAAAU,aAAA;IACEN,KAAK,EAAEA,KAAM;IACbE,MAAM,EAAEA,MAAO;IACfK,OAAO,EAAC,WAAW;IACnBC,OAAO,EAAC,KAAK;IACbC,KAAK,EAAC,4BAA4B;IAClCC,UAAU,EAAC;EAA8B,gBACzCd,KAAA,CAAAU,aAAA,gBAAO,SAAc,CAAC,eACtBV,KAAA,CAAAU,aAAA;IACEK,EAAE,EAAC,QAAQ;IACXP,MAAM,EAAC,MAAM;IACbQ,WAAW,EAAE,CAAE;IACfC,IAAI,EAAC,MAAM;IACXC,QAAQ,EAAC,SAAS;IAClBC,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC;EAAO,gBACtBpB,KAAA,CAAAU,aAAA;IAAGK,EAAE,EAAC,OAAO;IAACM,SAAS,EAAC,iBAAiB;IAACb,MAAM,EAAEA;EAAO,gBACvDR,KAAA,CAAAU,aAAA;IACEY,CAAC,EAAC,ygDAAygD;IAC3gDP,EAAE,EAAC;EAAM,CACV,CAAC,eACFf,KAAA,CAAAU,aAAA;IACEY,CAAC,EAAC,uQAAuQ;IACzQP,EAAE,EAAC;EAAM,CACV,CACA,CACF,CACA,CAAC;AAEV;AAEA,eAAeZ,YAAY"}
|
|
@@ -1,80 +1,60 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { ICON_SIZE } from '../constants';
|
|
2
|
+
import { ICON_SIZE, ICON_COLOR } from '../constants';
|
|
3
3
|
function TaxonomyIcon({
|
|
4
4
|
width = ICON_SIZE.WIDTH,
|
|
5
|
-
height = ICON_SIZE.HEIGHT
|
|
5
|
+
height = ICON_SIZE.HEIGHT,
|
|
6
|
+
stroke = ICON_COLOR.STROKE
|
|
6
7
|
}) {
|
|
7
8
|
return /*#__PURE__*/React.createElement("svg", {
|
|
8
9
|
width: width,
|
|
9
10
|
height: height,
|
|
10
|
-
viewBox: "0 0
|
|
11
|
+
viewBox: "0 0 22 22",
|
|
11
12
|
version: "1.1",
|
|
12
13
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13
14
|
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
14
|
-
}, /*#__PURE__*/React.createElement("title", null, "
|
|
15
|
-
id: "
|
|
15
|
+
}, /*#__PURE__*/React.createElement("title", null, "taxonomy"), /*#__PURE__*/React.createElement("g", {
|
|
16
|
+
id: "Page-1",
|
|
16
17
|
stroke: "none",
|
|
17
|
-
strokeWidth: 1,
|
|
18
|
+
strokeWidth: "1",
|
|
18
19
|
fill: "none",
|
|
19
|
-
fillRule: "evenodd"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
transform: "translate(-15, -412)"
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Group-4",
|
|
25
|
-
transform: "translate(9, 19)"
|
|
26
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
27
|
-
id: "scheme",
|
|
28
|
-
transform: "translate(0, 386)"
|
|
29
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
30
|
-
id: "icons/taxonomy",
|
|
31
|
-
transform: "translate(7, 8)"
|
|
20
|
+
fillRule: "evenodd",
|
|
21
|
+
strokeLinecap: "round",
|
|
22
|
+
strokeLinejoin: "round"
|
|
32
23
|
}, /*#__PURE__*/React.createElement("g", {
|
|
33
24
|
id: "Group",
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
strokeLinejoin: "round",
|
|
37
|
-
strokeWidth: "1.5"
|
|
25
|
+
transform: "translate(1, 1)",
|
|
26
|
+
stroke: stroke
|
|
38
27
|
}, /*#__PURE__*/React.createElement("rect", {
|
|
39
28
|
id: "Rectangle",
|
|
40
|
-
x: 0,
|
|
41
|
-
y: "
|
|
42
|
-
width: "6.
|
|
43
|
-
height: "6.
|
|
44
|
-
rx:
|
|
29
|
+
x: "0",
|
|
30
|
+
y: "13.2173913",
|
|
31
|
+
width: "6.78260868",
|
|
32
|
+
height: "6.60869564",
|
|
33
|
+
rx: "1.5"
|
|
45
34
|
}), /*#__PURE__*/React.createElement("rect", {
|
|
46
35
|
id: "Rectangle",
|
|
47
|
-
x: "
|
|
48
|
-
y: "
|
|
49
|
-
width: "6.
|
|
50
|
-
height: "6.
|
|
51
|
-
rx:
|
|
36
|
+
x: "13.2173913",
|
|
37
|
+
y: "13.2173913",
|
|
38
|
+
width: "6.78260868",
|
|
39
|
+
height: "6.60869564",
|
|
40
|
+
rx: "1.5"
|
|
52
41
|
}), /*#__PURE__*/React.createElement("rect", {
|
|
53
42
|
id: "Rectangle",
|
|
54
|
-
x: "6.
|
|
55
|
-
y: 0,
|
|
56
|
-
width: "6.
|
|
57
|
-
height: "6.
|
|
58
|
-
rx:
|
|
43
|
+
x: "6.60869564",
|
|
44
|
+
y: "0",
|
|
45
|
+
width: "6.78260868",
|
|
46
|
+
height: "6.60869564",
|
|
47
|
+
rx: "1.5"
|
|
59
48
|
}), /*#__PURE__*/React.createElement("path", {
|
|
60
|
-
d: "M3.
|
|
49
|
+
d: "M3.30434782,13.2173913 L3.30434782,12.115942 C3.30434782,10.8993147 4.2906191,9.91304346 5.50724637,9.91304346 L14.3188405,9.91304346 C15.5354678,9.91304346 16.5217391,10.8993147 16.5217391,12.115942 L16.5217391,13.2173913",
|
|
61
50
|
id: "Path"
|
|
62
51
|
}), /*#__PURE__*/React.createElement("line", {
|
|
63
|
-
x1: "9.
|
|
64
|
-
y1: "6.
|
|
65
|
-
x2: "9.
|
|
66
|
-
y2: "9.
|
|
52
|
+
x1: "9.91304346",
|
|
53
|
+
y1: "6.60869564",
|
|
54
|
+
x2: "9.91304346",
|
|
55
|
+
y2: "9.91304346",
|
|
67
56
|
id: "Path"
|
|
68
|
-
}))
|
|
69
|
-
id: "Rectangle",
|
|
70
|
-
fillOpacity: 0,
|
|
71
|
-
fill: "#000000",
|
|
72
|
-
fillRule: "nonzero",
|
|
73
|
-
x: 0,
|
|
74
|
-
y: 0,
|
|
75
|
-
width: 19,
|
|
76
|
-
height: 19
|
|
77
|
-
})))))));
|
|
57
|
+
}))));
|
|
78
58
|
}
|
|
79
59
|
export default TaxonomyIcon;
|
|
80
60
|
//# sourceMappingURL=TaxonomyIcon.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TaxonomyIcon.js","names":["React","ICON_SIZE","TaxonomyIcon","width","WIDTH","height","HEIGHT","createElement","viewBox","version","xmlns","xmlnsXlink","id","
|
|
1
|
+
{"version":3,"file":"TaxonomyIcon.js","names":["React","ICON_SIZE","ICON_COLOR","TaxonomyIcon","width","WIDTH","height","HEIGHT","stroke","STROKE","createElement","viewBox","version","xmlns","xmlnsXlink","id","strokeWidth","fill","fillRule","strokeLinecap","strokeLinejoin","transform","x","y","rx","d","x1","y1","x2","y2"],"sources":["../../src/icons/TaxonomyIcon.js"],"sourcesContent":["import React from 'react';\nimport { ICON_SIZE, ICON_COLOR } from '../constants';\n\nfunction TaxonomyIcon({\n width = ICON_SIZE.WIDTH,\n height = ICON_SIZE.HEIGHT,\n stroke = ICON_COLOR.STROKE\n}) {\n return (\n <svg\n width={width}\n height={height}\n viewBox=\"0 0 22 22\"\n version=\"1.1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlnsXlink=\"http://www.w3.org/1999/xlink\">\n <title>taxonomy</title>\n <g\n id=\"Page-1\"\n stroke=\"none\"\n strokeWidth=\"1\"\n fill=\"none\"\n fillRule=\"evenodd\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\">\n <g id=\"Group\" transform=\"translate(1, 1)\" stroke={stroke}>\n <rect\n id=\"Rectangle\"\n x=\"0\"\n y=\"13.2173913\"\n width=\"6.78260868\"\n height=\"6.60869564\"\n rx=\"1.5\"\n />\n <rect\n id=\"Rectangle\"\n x=\"13.2173913\"\n y=\"13.2173913\"\n width=\"6.78260868\"\n height=\"6.60869564\"\n rx=\"1.5\"\n />\n <rect\n id=\"Rectangle\"\n x=\"6.60869564\"\n y=\"0\"\n width=\"6.78260868\"\n height=\"6.60869564\"\n rx=\"1.5\"\n />\n <path\n d=\"M3.30434782,13.2173913 L3.30434782,12.115942 C3.30434782,10.8993147 4.2906191,9.91304346 5.50724637,9.91304346 L14.3188405,9.91304346 C15.5354678,9.91304346 16.5217391,10.8993147 16.5217391,12.115942 L16.5217391,13.2173913\"\n id=\"Path\"\n />\n <line x1=\"9.91304346\" y1=\"6.60869564\" x2=\"9.91304346\" y2=\"9.91304346\" id=\"Path\" />\n </g>\n </g>\n </svg>\n );\n}\n\nexport default TaxonomyIcon;\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,SAAS,EAAEC,UAAU,QAAQ,cAAc;AAEpD,SAASC,YAAYA,CAAC;EACpBC,KAAK,GAAGH,SAAS,CAACI,KAAK;EACvBC,MAAM,GAAGL,SAAS,CAACM,MAAM;EACzBC,MAAM,GAAGN,UAAU,CAACO;AACtB,CAAC,EAAE;EACD,oBACET,KAAA,CAAAU,aAAA;IACEN,KAAK,EAAEA,KAAM;IACbE,MAAM,EAAEA,MAAO;IACfK,OAAO,EAAC,WAAW;IACnBC,OAAO,EAAC,KAAK;IACbC,KAAK,EAAC,4BAA4B;IAClCC,UAAU,EAAC;EAA8B,gBACzCd,KAAA,CAAAU,aAAA,gBAAO,UAAe,CAAC,eACvBV,KAAA,CAAAU,aAAA;IACEK,EAAE,EAAC,QAAQ;IACXP,MAAM,EAAC,MAAM;IACbQ,WAAW,EAAC,GAAG;IACfC,IAAI,EAAC,MAAM;IACXC,QAAQ,EAAC,SAAS;IAClBC,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC;EAAO,gBACtBpB,KAAA,CAAAU,aAAA;IAAGK,EAAE,EAAC,OAAO;IAACM,SAAS,EAAC,iBAAiB;IAACb,MAAM,EAAEA;EAAO,gBACvDR,KAAA,CAAAU,aAAA;IACEK,EAAE,EAAC,WAAW;IACdO,CAAC,EAAC,GAAG;IACLC,CAAC,EAAC,YAAY;IACdnB,KAAK,EAAC,YAAY;IAClBE,MAAM,EAAC,YAAY;IACnBkB,EAAE,EAAC;EAAK,CACT,CAAC,eACFxB,KAAA,CAAAU,aAAA;IACEK,EAAE,EAAC,WAAW;IACdO,CAAC,EAAC,YAAY;IACdC,CAAC,EAAC,YAAY;IACdnB,KAAK,EAAC,YAAY;IAClBE,MAAM,EAAC,YAAY;IACnBkB,EAAE,EAAC;EAAK,CACT,CAAC,eACFxB,KAAA,CAAAU,aAAA;IACEK,EAAE,EAAC,WAAW;IACdO,CAAC,EAAC,YAAY;IACdC,CAAC,EAAC,GAAG;IACLnB,KAAK,EAAC,YAAY;IAClBE,MAAM,EAAC,YAAY;IACnBkB,EAAE,EAAC;EAAK,CACT,CAAC,eACFxB,KAAA,CAAAU,aAAA;IACEe,CAAC,EAAC,gOAAgO;IAClOV,EAAE,EAAC;EAAM,CACV,CAAC,eACFf,KAAA,CAAAU,aAAA;IAAMgB,EAAE,EAAC,YAAY;IAACC,EAAE,EAAC,YAAY;IAACC,EAAE,EAAC,YAAY;IAACC,EAAE,EAAC,YAAY;IAACd,EAAE,EAAC;EAAM,CAAE,CAChF,CACF,CACA,CAAC;AAEV;AAEA,eAAeZ,YAAY"}
|
|
@@ -1,54 +1,33 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { ICON_SIZE } from '../constants';
|
|
2
|
+
import { ICON_SIZE, ICON_COLOR } from '../constants';
|
|
3
3
|
function UserIcon({
|
|
4
4
|
width = ICON_SIZE.WIDTH,
|
|
5
|
-
height = ICON_SIZE.HEIGHT
|
|
5
|
+
height = ICON_SIZE.HEIGHT,
|
|
6
|
+
stroke = ICON_COLOR.STROKE
|
|
6
7
|
}) {
|
|
7
8
|
return /*#__PURE__*/React.createElement("svg", {
|
|
8
9
|
width: width,
|
|
9
10
|
height: height,
|
|
10
|
-
viewBox: "0 0
|
|
11
|
+
viewBox: "0 0 22 22",
|
|
11
12
|
version: "1.1",
|
|
12
13
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13
14
|
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
14
|
-
}, /*#__PURE__*/React.createElement("title", null, "
|
|
15
|
-
id: "
|
|
15
|
+
}, /*#__PURE__*/React.createElement("title", null, "user"), /*#__PURE__*/React.createElement("g", {
|
|
16
|
+
id: "Page-1",
|
|
16
17
|
stroke: "none",
|
|
17
18
|
strokeWidth: 1,
|
|
18
19
|
fill: "none",
|
|
19
|
-
fillRule: "evenodd"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
transform: "translate(-14, -453)"
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Group-4",
|
|
25
|
-
transform: "translate(9, 19)"
|
|
26
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
27
|
-
id: "Group-15",
|
|
28
|
-
transform: "translate(0, 428)"
|
|
29
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
30
|
-
id: "icons/user",
|
|
31
|
-
transform: "translate(6, 6)"
|
|
20
|
+
fillRule: "evenodd",
|
|
21
|
+
strokeLinecap: "round",
|
|
22
|
+
strokeLinejoin: "round"
|
|
32
23
|
}, /*#__PURE__*/React.createElement("g", {
|
|
33
24
|
id: "Group",
|
|
34
|
-
transform: "translate(
|
|
35
|
-
stroke:
|
|
36
|
-
strokeLinecap: "round",
|
|
37
|
-
strokeLinejoin: "round",
|
|
38
|
-
strokeWidth: "1.5"
|
|
25
|
+
transform: "translate(1, 0.76)",
|
|
26
|
+
stroke: stroke
|
|
39
27
|
}, /*#__PURE__*/React.createElement("path", {
|
|
40
|
-
d: "M2.
|
|
28
|
+
d: "M2.35666666,16.4488888 C4.68824079,15.1310199 7.32175438,14.4403878 10,14.4444089 C12.7777778,14.4444089 15.3855556,15.1722221 17.6433334,16.4488888 M13.3333334,7.7777776 C13.3333334,9.61872677 11.8409492,11.1111109 10,11.1111109 C8.15905083,11.1111109 6.66666666,9.61872677 6.66666666,7.7777776 C6.66666666,5.93682842 8.15905083,4.44444425 10,4.44444425 C11.8409492,4.44444425 13.3333334,5.93682842 13.3333334,7.7777776 L13.3333334,7.7777776 Z M20,10 C20,13.5726558 18.0940108,16.8739261 15,18.660254 C11.9059893,20.446582 8.09401075,20.446582 5,18.660254 C1.90598917,16.8739261 0,13.5726558 0,10 C0,4.47715239 4.47715258,0 10,0 C15.5228474,0 20,4.47715239 20,10 L20,10 Z",
|
|
41
29
|
id: "Shape"
|
|
42
|
-
}))
|
|
43
|
-
id: "Rectangle",
|
|
44
|
-
fillOpacity: 0,
|
|
45
|
-
fill: "#000000",
|
|
46
|
-
fillRule: "nonzero",
|
|
47
|
-
x: 0,
|
|
48
|
-
y: 0,
|
|
49
|
-
width: 19,
|
|
50
|
-
height: "18.24"
|
|
51
|
-
})))))));
|
|
30
|
+
}))));
|
|
52
31
|
}
|
|
53
32
|
export default UserIcon;
|
|
54
33
|
//# sourceMappingURL=UsersIcon.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UsersIcon.js","names":["React","ICON_SIZE","UserIcon","width","WIDTH","height","HEIGHT","createElement","viewBox","version","xmlns","xmlnsXlink","id","
|
|
1
|
+
{"version":3,"file":"UsersIcon.js","names":["React","ICON_SIZE","ICON_COLOR","UserIcon","width","WIDTH","height","HEIGHT","stroke","STROKE","createElement","viewBox","version","xmlns","xmlnsXlink","id","strokeWidth","fill","fillRule","strokeLinecap","strokeLinejoin","transform","d"],"sources":["../../src/icons/UsersIcon.js"],"sourcesContent":["import React from 'react';\nimport { ICON_SIZE, ICON_COLOR } from '../constants';\n\nfunction UserIcon({\n width = ICON_SIZE.WIDTH,\n height = ICON_SIZE.HEIGHT,\n stroke = ICON_COLOR.STROKE\n}) {\n return (\n <svg\n width={width}\n height={height}\n viewBox=\"0 0 22 22\"\n version=\"1.1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlnsXlink=\"http://www.w3.org/1999/xlink\">\n <title>user</title>\n <g\n id=\"Page-1\"\n stroke=\"none\"\n strokeWidth={1}\n fill=\"none\"\n fillRule=\"evenodd\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\">\n <g id=\"Group\" transform=\"translate(1, 0.76)\" stroke={stroke}>\n <path\n d=\"M2.35666666,16.4488888 C4.68824079,15.1310199 7.32175438,14.4403878 10,14.4444089 C12.7777778,14.4444089 15.3855556,15.1722221 17.6433334,16.4488888 M13.3333334,7.7777776 C13.3333334,9.61872677 11.8409492,11.1111109 10,11.1111109 C8.15905083,11.1111109 6.66666666,9.61872677 6.66666666,7.7777776 C6.66666666,5.93682842 8.15905083,4.44444425 10,4.44444425 C11.8409492,4.44444425 13.3333334,5.93682842 13.3333334,7.7777776 L13.3333334,7.7777776 Z M20,10 C20,13.5726558 18.0940108,16.8739261 15,18.660254 C11.9059893,20.446582 8.09401075,20.446582 5,18.660254 C1.90598917,16.8739261 0,13.5726558 0,10 C0,4.47715239 4.47715258,0 10,0 C15.5228474,0 20,4.47715239 20,10 L20,10 Z\"\n id=\"Shape\"\n />\n </g>\n </g>\n </svg>\n );\n}\n\nexport default UserIcon;\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,SAAS,EAAEC,UAAU,QAAQ,cAAc;AAEpD,SAASC,QAAQA,CAAC;EAChBC,KAAK,GAAGH,SAAS,CAACI,KAAK;EACvBC,MAAM,GAAGL,SAAS,CAACM,MAAM;EACzBC,MAAM,GAAGN,UAAU,CAACO;AACtB,CAAC,EAAE;EACD,oBACET,KAAA,CAAAU,aAAA;IACEN,KAAK,EAAEA,KAAM;IACbE,MAAM,EAAEA,MAAO;IACfK,OAAO,EAAC,WAAW;IACnBC,OAAO,EAAC,KAAK;IACbC,KAAK,EAAC,4BAA4B;IAClCC,UAAU,EAAC;EAA8B,gBACzCd,KAAA,CAAAU,aAAA,gBAAO,MAAW,CAAC,eACnBV,KAAA,CAAAU,aAAA;IACEK,EAAE,EAAC,QAAQ;IACXP,MAAM,EAAC,MAAM;IACbQ,WAAW,EAAE,CAAE;IACfC,IAAI,EAAC,MAAM;IACXC,QAAQ,EAAC,SAAS;IAClBC,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC;EAAO,gBACtBpB,KAAA,CAAAU,aAAA;IAAGK,EAAE,EAAC,OAAO;IAACM,SAAS,EAAC,oBAAoB;IAACb,MAAM,EAAEA;EAAO,gBAC1DR,KAAA,CAAAU,aAAA;IACEY,CAAC,EAAC,kqBAAkqB;IACpqBP,EAAE,EAAC;EAAO,CACX,CACA,CACF,CACA,CAAC;AAEV;AAEA,eAAeZ,QAAQ"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blaze-cms/plugin-data-ui",
|
|
3
|
-
"version": "0.139.
|
|
3
|
+
"version": "0.139.1-core-styles.0",
|
|
4
4
|
"description": "Blaze plugin data ui",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib-es/index.js",
|
|
@@ -27,17 +27,17 @@
|
|
|
27
27
|
},
|
|
28
28
|
"license": "GPL-3.0",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@blaze-cms/admin-ui-utils": "0.139.
|
|
31
|
-
"@blaze-cms/core-errors": "0.139.
|
|
32
|
-
"@blaze-cms/plugin-render-hooks-ui": "0.139.
|
|
33
|
-
"@blaze-cms/react-form-builder": "0.139.
|
|
34
|
-
"@blaze-cms/react-page-builder": "0.139.
|
|
35
|
-
"@blaze-cms/setup-ui": "0.139.
|
|
36
|
-
"@blaze-cms/versioning-ui": "0.139.
|
|
30
|
+
"@blaze-cms/admin-ui-utils": "0.139.1-core-styles.0",
|
|
31
|
+
"@blaze-cms/core-errors": "0.139.1-core-styles.0",
|
|
32
|
+
"@blaze-cms/plugin-render-hooks-ui": "0.139.1-core-styles.0",
|
|
33
|
+
"@blaze-cms/react-form-builder": "0.139.1-core-styles.0",
|
|
34
|
+
"@blaze-cms/react-page-builder": "0.139.1-core-styles.0",
|
|
35
|
+
"@blaze-cms/setup-ui": "0.139.1-core-styles.0",
|
|
36
|
+
"@blaze-cms/versioning-ui": "0.139.1-core-styles.0",
|
|
37
37
|
"@blaze-react/button": "0.5.19",
|
|
38
38
|
"@blaze-react/more": "0.5.19",
|
|
39
39
|
"@blaze-react/multiselect": "0.6.6",
|
|
40
|
-
"@blaze-react/select": "0.
|
|
40
|
+
"@blaze-react/select": "0.8.0-alpha.64",
|
|
41
41
|
"@blaze-react/table": "0.5.31",
|
|
42
42
|
"@blaze-react/toaster": "0.5.17",
|
|
43
43
|
"@blaze-react/utils": "0.5.15",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"uuid": "^3.3.3"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@blaze-cms/core-ui": "0.139.
|
|
57
|
+
"@blaze-cms/core-ui": "0.139.1-core-styles.0"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"@apollo/client": "3.x",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"lib/*",
|
|
67
67
|
"lib-es/*"
|
|
68
68
|
],
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "7631974706a04751ed0abf368bd0cd3b1c4c1b07"
|
|
70
70
|
}
|