@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.
Files changed (70) hide show
  1. package/CHANGELOG.md +62 -1
  2. package/lib/components/EntityManager/Entity/Entity.js +20 -9
  3. package/lib/components/EntityManager/Entity/Entity.js.map +1 -1
  4. package/lib/components/EntityManager/Entity/SideBarRelations/hooks/useCustomSidebarData.js +9 -1
  5. package/lib/components/EntityManager/Entity/SideBarRelations/hooks/useCustomSidebarData.js.map +1 -1
  6. package/lib/components/EntityManager/Entity/actions-handlers/update/submit.js +2 -2
  7. package/lib/components/EntityManager/Entity/actions-handlers/update/submit.js.map +1 -1
  8. package/lib/components/EntityManager/EntityManager.js +2 -2
  9. package/lib/components/EntityManager/EntityManager.js.map +1 -1
  10. package/lib/components/EntityManager/utils/RecordEditContext/index.js +16 -0
  11. package/lib/components/EntityManager/utils/RecordEditContext/index.js.map +1 -0
  12. package/lib/components/EntityManager/utils/data-mappers.js +2 -2
  13. package/lib/components/EntityManager/utils/data-mappers.js.map +1 -1
  14. package/lib/components/EntityManager/utils/entity.js +2 -2
  15. package/lib/components/EntityManager/utils/entity.js.map +1 -1
  16. package/lib/components/InfoBoxes/container/InfoBoxContainer.js +17 -2
  17. package/lib/components/InfoBoxes/container/InfoBoxContainer.js.map +1 -1
  18. package/lib/components/InfoBoxes/hooks/useData.js +4 -2
  19. package/lib/components/InfoBoxes/hooks/useData.js.map +1 -1
  20. package/lib/components/ListingTable/ListingTable.js +4 -12
  21. package/lib/components/ListingTable/ListingTable.js.map +1 -1
  22. package/lib/components/ListingTable/mappers/populate-rows.js +2 -2
  23. package/lib/components/ListingTable/mappers/populate-rows.js.map +1 -1
  24. package/lib/components/ListingTable/service/index.js +2 -2
  25. package/lib/components/ListingTable/service/index.js.map +1 -1
  26. package/lib/icons/ContentIcon.js +47 -46
  27. package/lib/icons/ContentIcon.js.map +1 -1
  28. package/lib/icons/SettingsIcon.js +13 -32
  29. package/lib/icons/SettingsIcon.js.map +1 -1
  30. package/lib/icons/TaxonomyIcon.js +33 -52
  31. package/lib/icons/TaxonomyIcon.js.map +1 -1
  32. package/lib/icons/UsersIcon.js +13 -33
  33. package/lib/icons/UsersIcon.js.map +1 -1
  34. package/lib-es/components/EntityManager/Entity/Entity.js +13 -5
  35. package/lib-es/components/EntityManager/Entity/Entity.js.map +1 -1
  36. package/lib-es/components/EntityManager/Entity/SideBarRelations/hooks/useCustomSidebarData.js +10 -1
  37. package/lib-es/components/EntityManager/Entity/SideBarRelations/hooks/useCustomSidebarData.js.map +1 -1
  38. package/lib-es/components/EntityManager/Entity/actions-handlers/update/submit.js +2 -2
  39. package/lib-es/components/EntityManager/EntityManager.js +2 -2
  40. package/lib-es/components/EntityManager/utils/RecordEditContext/index.js +6 -0
  41. package/lib-es/components/EntityManager/utils/RecordEditContext/index.js.map +1 -0
  42. package/lib-es/components/EntityManager/utils/data-mappers.js +2 -2
  43. package/lib-es/components/EntityManager/utils/entity.js +2 -2
  44. package/lib-es/components/InfoBoxes/container/InfoBoxContainer.js +10 -2
  45. package/lib-es/components/InfoBoxes/container/InfoBoxContainer.js.map +1 -1
  46. package/lib-es/components/InfoBoxes/hooks/useData.js +4 -2
  47. package/lib-es/components/InfoBoxes/hooks/useData.js.map +1 -1
  48. package/lib-es/components/ListingTable/ListingTable.js +4 -9
  49. package/lib-es/components/ListingTable/ListingTable.js.map +1 -1
  50. package/lib-es/components/ListingTable/mappers/populate-rows.js +2 -2
  51. package/lib-es/components/ListingTable/service/index.js +2 -2
  52. package/lib-es/icons/ContentIcon.js +45 -45
  53. package/lib-es/icons/ContentIcon.js.map +1 -1
  54. package/lib-es/icons/SettingsIcon.js +13 -33
  55. package/lib-es/icons/SettingsIcon.js.map +1 -1
  56. package/lib-es/icons/TaxonomyIcon.js +33 -53
  57. package/lib-es/icons/TaxonomyIcon.js.map +1 -1
  58. package/lib-es/icons/UsersIcon.js +13 -34
  59. package/lib-es/icons/UsersIcon.js.map +1 -1
  60. package/package.json +11 -11
  61. package/src/components/EntityManager/Entity/Entity.js +86 -75
  62. package/src/components/EntityManager/Entity/SideBarRelations/hooks/useCustomSidebarData.js +12 -1
  63. package/src/components/EntityManager/utils/RecordEditContext/index.js +7 -0
  64. package/src/components/InfoBoxes/container/InfoBoxContainer.js +12 -2
  65. package/src/components/InfoBoxes/hooks/useData.js +5 -2
  66. package/src/components/ListingTable/ListingTable.js +11 -16
  67. package/src/icons/ContentIcon.js +68 -57
  68. package/src/icons/SettingsIcon.js +24 -36
  69. package/src/icons/TaxonomyIcon.js +46 -58
  70. package/src/icons/UsersIcon.js +21 -34
@@ -1,80 +1,80 @@
1
1
  import React from 'react';
2
- import { ICON_SIZE } from '../constants';
2
+ import { ICON_COLOR } from '../constants';
3
3
  function ContentIcon({
4
- width = ICON_SIZE.WIDTH,
5
- height = ICON_SIZE.HEIGHT
4
+ fill = ICON_COLOR.FILL,
5
+ stroke = ICON_COLOR.STROKE
6
6
  }) {
7
7
  return /*#__PURE__*/React.createElement("svg", {
8
- width: width,
9
- height: height,
10
- viewBox: "0 0 20 20",
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, "icons/content"), /*#__PURE__*/React.createElement("g", {
15
- id: "Symbols",
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: "main-menu/collapsed",
22
- transform: "translate(-15, -201)"
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.25 L5.15925,3.09075 C6.03787467,2.21239064 7.46212533,2.21239064 8.34075,3.09075 L13.5,8.25 M11.25,6 L13.03425,4.21575 C13.9128747,3.33739064 15.3371253,3.33739064 16.21575,4.21575 L18,6 M2.25,18 L15.75,18 C16.9926407,18 18,16.9926407 18,15.75 L18,2.25 C18,1.00735931 16.9926407,0 15.75,0 L2.25,0 C1.00735931,0 0,1.00735931 0,2.25 L0,15.75 C0,16.9926407 1.00735931,18 2.25,18 Z",
36
- id: "Shape",
37
- stroke: "#63779C",
38
- strokeWidth: "1.5",
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: "#63779C",
44
- cx: "10.875",
45
- cy: "2.625",
46
- r: "1.125"
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: "8.75",
50
- x2: 18,
51
- y2: "8.75",
52
+ y1: "9.23611111",
53
+ x2: 19,
54
+ y2: "9.23611111",
52
55
  id: "Path",
53
- stroke: "#63779C",
54
- strokeWidth: "1.5",
56
+ stroke: stroke,
55
57
  strokeLinecap: "round",
56
58
  strokeLinejoin: "round"
57
59
  }), /*#__PURE__*/React.createElement("line", {
58
- x1: "3.75",
59
- y1: "11.75",
60
- x2: "14.4999997",
61
- y2: "11.75",
60
+ x1: "3.95833334",
61
+ y1: "12.4027778",
62
+ x2: "15.3055553",
63
+ y2: "12.4027778",
62
64
  id: "Path",
63
- stroke: "#63779C",
64
- strokeWidth: "1.5",
65
+ stroke: stroke,
65
66
  strokeLinecap: "round",
66
67
  strokeLinejoin: "round"
67
68
  }), /*#__PURE__*/React.createElement("line", {
68
- x1: "3.75",
69
- y1: "14.75",
70
- x2: "11.4999997",
71
- y2: "14.75",
69
+ x1: "3.95833334",
70
+ y1: "15.5694445",
71
+ x2: "12.1388885",
72
+ y2: "15.5694445",
72
73
  id: "Path",
73
- stroke: "#63779C",
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","ICON_SIZE","ContentIcon","width","WIDTH","height","HEIGHT","createElement","viewBox","version","xmlns","xmlnsXlink","id","stroke","strokeWidth","fill","fillRule","transform","d","strokeLinecap","strokeLinejoin","cx","cy","r","x1","y1","x2","y2"],"sources":["../../src/icons/ContentIcon.js"],"sourcesContent":["import React from 'react';\nimport { ICON_SIZE } from '../constants';\n\nfunction ContentIcon({ width = ICON_SIZE.WIDTH, height = ICON_SIZE.HEIGHT }) {\n return (\n <svg\n width={width}\n height={height}\n viewBox=\"0 0 20 20\"\n version=\"1.1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlnsXlink=\"http://www.w3.org/1999/xlink\">\n <title>icons/content</title>\n <g id=\"Symbols\" stroke=\"none\" strokeWidth={1} fill=\"none\" fillRule=\"evenodd\">\n <g id=\"main-menu/collapsed\" transform=\"translate(-15, -201)\">\n <g id=\"Group-4\" transform=\"translate(9, 19)\">\n <g id=\"Group-3\" transform=\"translate(0, 176)\">\n <g id=\"photograph\" transform=\"translate(7, 7)\">\n <g id=\"Group\">\n <path\n d=\"M0,8.25 L5.15925,3.09075 C6.03787467,2.21239064 7.46212533,2.21239064 8.34075,3.09075 L13.5,8.25 M11.25,6 L13.03425,4.21575 C13.9128747,3.33739064 15.3371253,3.33739064 16.21575,4.21575 L18,6 M2.25,18 L15.75,18 C16.9926407,18 18,16.9926407 18,15.75 L18,2.25 C18,1.00735931 16.9926407,0 15.75,0 L2.25,0 C1.00735931,0 0,1.00735931 0,2.25 L0,15.75 C0,16.9926407 1.00735931,18 2.25,18 Z\"\n id=\"Shape\"\n stroke=\"#63779C\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <circle id=\"Oval\" fill=\"#63779C\" cx=\"10.875\" cy=\"2.625\" r=\"1.125\" />\n </g>\n <line\n x1={0}\n y1=\"8.75\"\n x2={18}\n y2=\"8.75\"\n id=\"Path\"\n stroke=\"#63779C\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <line\n x1=\"3.75\"\n y1=\"11.75\"\n x2=\"14.4999997\"\n y2=\"11.75\"\n id=\"Path\"\n stroke=\"#63779C\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <line\n x1=\"3.75\"\n y1=\"14.75\"\n x2=\"11.4999997\"\n y2=\"14.75\"\n id=\"Path\"\n stroke=\"#63779C\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </g>\n </g>\n </g>\n </g>\n </g>\n </svg>\n );\n}\n\nexport default ContentIcon;\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,SAAS,QAAQ,cAAc;AAExC,SAASC,WAAWA,CAAC;EAAEC,KAAK,GAAGF,SAAS,CAACG,KAAK;EAAEC,MAAM,GAAGJ,SAAS,CAACK;AAAO,CAAC,EAAE;EAC3E,oBACEN,KAAA,CAAAO,aAAA;IACEJ,KAAK,EAAEA,KAAM;IACbE,MAAM,EAAEA,MAAO;IACfG,OAAO,EAAC,WAAW;IACnBC,OAAO,EAAC,KAAK;IACbC,KAAK,EAAC,4BAA4B;IAClCC,UAAU,EAAC;EAA8B,gBACzCX,KAAA,CAAAO,aAAA,gBAAO,eAAoB,CAAC,eAC5BP,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,SAAS;IAACC,MAAM,EAAC,MAAM;IAACC,WAAW,EAAE,CAAE;IAACC,IAAI,EAAC,MAAM;IAACC,QAAQ,EAAC;EAAS,gBAC1EhB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,qBAAqB;IAACK,SAAS,EAAC;EAAsB,gBAC1DjB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,SAAS;IAACK,SAAS,EAAC;EAAkB,gBAC1CjB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,SAAS;IAACK,SAAS,EAAC;EAAmB,gBAC3CjB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,YAAY;IAACK,SAAS,EAAC;EAAiB,gBAC5CjB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC;EAAO,gBACXZ,KAAA,CAAAO,aAAA;IACEW,CAAC,EAAC,gYAAgY;IAClYN,EAAE,EAAC,OAAO;IACVC,MAAM,EAAC,SAAS;IAChBC,WAAW,EAAC,KAAK;IACjBK,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC;EAAO,CACvB,CAAC,eACFpB,KAAA,CAAAO,aAAA;IAAQK,EAAE,EAAC,MAAM;IAACG,IAAI,EAAC,SAAS;IAACM,EAAE,EAAC,QAAQ;IAACC,EAAE,EAAC,OAAO;IAACC,CAAC,EAAC;EAAO,CAAE,CAClE,CAAC,eACJvB,KAAA,CAAAO,aAAA;IACEiB,EAAE,EAAE,CAAE;IACNC,EAAE,EAAC,MAAM;IACTC,EAAE,EAAE,EAAG;IACPC,EAAE,EAAC,MAAM;IACTf,EAAE,EAAC,MAAM;IACTC,MAAM,EAAC,SAAS;IAChBC,WAAW,EAAC,KAAK;IACjBK,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC;EAAO,CACvB,CAAC,eACFpB,KAAA,CAAAO,aAAA;IACEiB,EAAE,EAAC,MAAM;IACTC,EAAE,EAAC,OAAO;IACVC,EAAE,EAAC,YAAY;IACfC,EAAE,EAAC,OAAO;IACVf,EAAE,EAAC,MAAM;IACTC,MAAM,EAAC,SAAS;IAChBC,WAAW,EAAC,KAAK;IACjBK,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC;EAAO,CACvB,CAAC,eACFpB,KAAA,CAAAO,aAAA;IACEiB,EAAE,EAAC,MAAM;IACTC,EAAE,EAAC,OAAO;IACVC,EAAE,EAAC,YAAY;IACfC,EAAE,EAAC,OAAO;IACVf,EAAE,EAAC,MAAM;IACTC,MAAM,EAAC,SAAS;IAChBC,WAAW,EAAC,KAAK;IACjBK,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC;EAAO,CACvB,CACA,CACF,CACF,CACF,CACF,CACA,CAAC;AAEV;AAEA,eAAelB,WAAW"}
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, "icons/setting"), /*#__PURE__*/React.createElement("g", {
15
- id: "Symbols",
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
- }, /*#__PURE__*/React.createElement("g", {
21
- id: "main-menu/collapsed",
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
- stroke: "#63779C",
35
- strokeLinecap: "round",
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.487777778 11.3877778,-0.487777778 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.487777778,11.3877778 -0.487777778,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",
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.3333333,10 C13.3333333,11.8409492 11.8409492,13.3333333 10,13.3333333 C8.15905083,13.3333333 6.66666667,11.8409492 6.66666667,10 C6.66666667,8.15905083 8.15905083,6.66666667 10,6.66666667 C11.8409492,6.66666667 13.3333333,8.15905083 13.3333333,10 L13.3333333,10 Z",
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
- })), /*#__PURE__*/React.createElement("rect", {
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","stroke","strokeWidth","fill","fillRule","transform","strokeLinecap","strokeLinejoin","d","fillOpacity","x","y"],"sources":["../../src/icons/SettingsIcon.js"],"sourcesContent":["import React from 'react';\nimport { ICON_SIZE } from '../constants';\n\nfunction SettingsIcon({ width = ICON_SIZE.WIDTH, height = ICON_SIZE.HEIGHT }) {\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>icons/setting</title>\n <g id=\"Symbols\" stroke=\"none\" strokeWidth={1} fill=\"none\" fillRule=\"evenodd\">\n <g id=\"main-menu/collapsed\" transform=\"translate(-14, -494)\">\n <g id=\"Group-4\" transform=\"translate(9, 19)\">\n <g id=\"settings\" transform=\"translate(0, 470)\">\n <g id=\"icons/setting\" transform=\"translate(6, 6)\">\n <g\n id=\"Group\"\n stroke=\"#63779C\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth=\"1.5\">\n <path\n d=\"M8.13888889,1.46333333 C8.61222222,-0.487777778 11.3877778,-0.487777778 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.487777778,11.3877778 -0.487777778,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.3333333,10 C13.3333333,11.8409492 11.8409492,13.3333333 10,13.3333333 C8.15905083,13.3333333 6.66666667,11.8409492 6.66666667,10 C6.66666667,8.15905083 8.15905083,6.66666667 10,6.66666667 C11.8409492,6.66666667 13.3333333,8.15905083 13.3333333,10 L13.3333333,10 Z\"\n id=\"Path\"\n />\n </g>\n <rect\n id=\"Rectangle\"\n fillOpacity={0}\n fill=\"#000000\"\n fillRule=\"nonzero\"\n x={0}\n y={0}\n width={20}\n height={20}\n />\n </g>\n </g>\n </g>\n </g>\n </g>\n </svg>\n );\n}\n\nexport default SettingsIcon;\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,SAAS,QAAQ,cAAc;AAExC,SAASC,YAAYA,CAAC;EAAEC,KAAK,GAAGF,SAAS,CAACG,KAAK;EAAEC,MAAM,GAAGJ,SAAS,CAACK;AAAO,CAAC,EAAE;EAC5E,oBACEN,KAAA,CAAAO,aAAA;IACEJ,KAAK,EAAEA,KAAM;IACbE,MAAM,EAAEA,MAAO;IACfG,OAAO,EAAC,WAAW;IACnBC,OAAO,EAAC,KAAK;IACbC,KAAK,EAAC,4BAA4B;IAClCC,UAAU,EAAC;EAA8B,gBACzCX,KAAA,CAAAO,aAAA,gBAAO,eAAoB,CAAC,eAC5BP,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,SAAS;IAACC,MAAM,EAAC,MAAM;IAACC,WAAW,EAAE,CAAE;IAACC,IAAI,EAAC,MAAM;IAACC,QAAQ,EAAC;EAAS,gBAC1EhB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,qBAAqB;IAACK,SAAS,EAAC;EAAsB,gBAC1DjB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,SAAS;IAACK,SAAS,EAAC;EAAkB,gBAC1CjB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,UAAU;IAACK,SAAS,EAAC;EAAmB,gBAC5CjB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,eAAe;IAACK,SAAS,EAAC;EAAiB,gBAC/CjB,KAAA,CAAAO,aAAA;IACEK,EAAE,EAAC,OAAO;IACVC,MAAM,EAAC,SAAS;IAChBK,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC,OAAO;IACtBL,WAAW,EAAC;EAAK,gBACjBd,KAAA,CAAAO,aAAA;IACEa,CAAC,EAAC,ygDAAygD;IAC3gDR,EAAE,EAAC;EAAM,CACV,CAAC,eACFZ,KAAA,CAAAO,aAAA;IACEa,CAAC,EAAC,6QAA6Q;IAC/QR,EAAE,EAAC;EAAM,CACV,CACA,CAAC,eACJZ,KAAA,CAAAO,aAAA;IACEK,EAAE,EAAC,WAAW;IACdS,WAAW,EAAE,CAAE;IACfN,IAAI,EAAC,SAAS;IACdC,QAAQ,EAAC,SAAS;IAClBM,CAAC,EAAE,CAAE;IACLC,CAAC,EAAE,CAAE;IACLpB,KAAK,EAAE,EAAG;IACVE,MAAM,EAAE;EAAG,CACZ,CACA,CACF,CACF,CACF,CACF,CACA,CAAC;AAEV;AAEA,eAAeH,YAAY"}
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 21 21",
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, "icons/taxonomy"), /*#__PURE__*/React.createElement("g", {
15
- id: "Symbols",
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
- }, /*#__PURE__*/React.createElement("g", {
21
- id: "main-menu/collapsed",
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
- stroke: "#63779C",
35
- strokeLinecap: "round",
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: "12.6666667",
42
- width: "6.33333333",
43
- height: "6.33333333",
44
- rx: 2
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: "12.6666667",
48
- y: "12.6666667",
49
- width: "6.33333333",
50
- height: "6.33333333",
51
- rx: 2
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.33333333",
55
- y: 0,
56
- width: "6.33333333",
57
- height: "6.33333333",
58
- rx: 2
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.16666667,12.6666667 L3.16666667,11.6111111 C3.16666667,10.4451766 4.11184331,9.5 5.27777778,9.5 L13.7222222,9.5 C14.8881567,9.5 15.8333333,10.4451766 15.8333333,11.6111111 L15.8333333,12.6666667",
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.5",
64
- y1: "6.33333333",
65
- x2: "9.5",
66
- y2: "9.5",
52
+ x1: "9.91304346",
53
+ y1: "6.60869564",
54
+ x2: "9.91304346",
55
+ y2: "9.91304346",
67
56
  id: "Path"
68
- })), /*#__PURE__*/React.createElement("rect", {
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","stroke","strokeWidth","fill","fillRule","transform","strokeLinecap","strokeLinejoin","x","y","rx","d","x1","y1","x2","y2","fillOpacity"],"sources":["../../src/icons/TaxonomyIcon.js"],"sourcesContent":["import React from 'react';\nimport { ICON_SIZE } from '../constants';\n\nfunction TaxonomyIcon({ width = ICON_SIZE.WIDTH, height = ICON_SIZE.HEIGHT }) {\n return (\n <svg\n width={width}\n height={height}\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>icons/taxonomy</title>\n <g id=\"Symbols\" stroke=\"none\" strokeWidth={1} fill=\"none\" fillRule=\"evenodd\">\n <g id=\"main-menu/collapsed\" transform=\"translate(-15, -412)\">\n <g id=\"Group-4\" transform=\"translate(9, 19)\">\n <g id=\"scheme\" transform=\"translate(0, 386)\">\n <g id=\"icons/taxonomy\" transform=\"translate(7, 8)\">\n <g\n id=\"Group\"\n stroke=\"#63779C\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth=\"1.5\">\n <rect\n id=\"Rectangle\"\n x={0}\n y=\"12.6666667\"\n width=\"6.33333333\"\n height=\"6.33333333\"\n rx={2}\n />\n <rect\n id=\"Rectangle\"\n x=\"12.6666667\"\n y=\"12.6666667\"\n width=\"6.33333333\"\n height=\"6.33333333\"\n rx={2}\n />\n <rect\n id=\"Rectangle\"\n x=\"6.33333333\"\n y={0}\n width=\"6.33333333\"\n height=\"6.33333333\"\n rx={2}\n />\n <path\n d=\"M3.16666667,12.6666667 L3.16666667,11.6111111 C3.16666667,10.4451766 4.11184331,9.5 5.27777778,9.5 L13.7222222,9.5 C14.8881567,9.5 15.8333333,10.4451766 15.8333333,11.6111111 L15.8333333,12.6666667\"\n id=\"Path\"\n />\n <line x1=\"9.5\" y1=\"6.33333333\" x2=\"9.5\" y2=\"9.5\" id=\"Path\" />\n </g>\n <rect\n id=\"Rectangle\"\n fillOpacity={0}\n fill=\"#000000\"\n fillRule=\"nonzero\"\n x={0}\n y={0}\n width={19}\n height={19}\n />\n </g>\n </g>\n </g>\n </g>\n </g>\n </svg>\n );\n}\n\nexport default TaxonomyIcon;\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,SAAS,QAAQ,cAAc;AAExC,SAASC,YAAYA,CAAC;EAAEC,KAAK,GAAGF,SAAS,CAACG,KAAK;EAAEC,MAAM,GAAGJ,SAAS,CAACK;AAAO,CAAC,EAAE;EAC5E,oBACEN,KAAA,CAAAO,aAAA;IACEJ,KAAK,EAAEA,KAAM;IACbE,MAAM,EAAEA,MAAO;IACfG,OAAO,EAAC,WAAW;IACnBC,OAAO,EAAC,KAAK;IACbC,KAAK,EAAC,4BAA4B;IAClCC,UAAU,EAAC;EAA8B,gBACzCX,KAAA,CAAAO,aAAA,gBAAO,gBAAqB,CAAC,eAC7BP,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,SAAS;IAACC,MAAM,EAAC,MAAM;IAACC,WAAW,EAAE,CAAE;IAACC,IAAI,EAAC,MAAM;IAACC,QAAQ,EAAC;EAAS,gBAC1EhB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,qBAAqB;IAACK,SAAS,EAAC;EAAsB,gBAC1DjB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,SAAS;IAACK,SAAS,EAAC;EAAkB,gBAC1CjB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,QAAQ;IAACK,SAAS,EAAC;EAAmB,gBAC1CjB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,gBAAgB;IAACK,SAAS,EAAC;EAAiB,gBAChDjB,KAAA,CAAAO,aAAA;IACEK,EAAE,EAAC,OAAO;IACVC,MAAM,EAAC,SAAS;IAChBK,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC,OAAO;IACtBL,WAAW,EAAC;EAAK,gBACjBd,KAAA,CAAAO,aAAA;IACEK,EAAE,EAAC,WAAW;IACdQ,CAAC,EAAE,CAAE;IACLC,CAAC,EAAC,YAAY;IACdlB,KAAK,EAAC,YAAY;IAClBE,MAAM,EAAC,YAAY;IACnBiB,EAAE,EAAE;EAAE,CACP,CAAC,eACFtB,KAAA,CAAAO,aAAA;IACEK,EAAE,EAAC,WAAW;IACdQ,CAAC,EAAC,YAAY;IACdC,CAAC,EAAC,YAAY;IACdlB,KAAK,EAAC,YAAY;IAClBE,MAAM,EAAC,YAAY;IACnBiB,EAAE,EAAE;EAAE,CACP,CAAC,eACFtB,KAAA,CAAAO,aAAA;IACEK,EAAE,EAAC,WAAW;IACdQ,CAAC,EAAC,YAAY;IACdC,CAAC,EAAE,CAAE;IACLlB,KAAK,EAAC,YAAY;IAClBE,MAAM,EAAC,YAAY;IACnBiB,EAAE,EAAE;EAAE,CACP,CAAC,eACFtB,KAAA,CAAAO,aAAA;IACEgB,CAAC,EAAC,uMAAuM;IACzMX,EAAE,EAAC;EAAM,CACV,CAAC,eACFZ,KAAA,CAAAO,aAAA;IAAMiB,EAAE,EAAC,KAAK;IAACC,EAAE,EAAC,YAAY;IAACC,EAAE,EAAC,KAAK;IAACC,EAAE,EAAC,KAAK;IAACf,EAAE,EAAC;EAAM,CAAE,CAC3D,CAAC,eACJZ,KAAA,CAAAO,aAAA;IACEK,EAAE,EAAC,WAAW;IACdgB,WAAW,EAAE,CAAE;IACfb,IAAI,EAAC,SAAS;IACdC,QAAQ,EAAC,SAAS;IAClBI,CAAC,EAAE,CAAE;IACLC,CAAC,EAAE,CAAE;IACLlB,KAAK,EAAE,EAAG;IACVE,MAAM,EAAE;EAAG,CACZ,CACA,CACF,CACF,CACF,CACF,CACA,CAAC;AAEV;AAEA,eAAeH,YAAY"}
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 21 20",
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, "icons/user"), /*#__PURE__*/React.createElement("g", {
15
- id: "Symbols",
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
- }, /*#__PURE__*/React.createElement("g", {
21
- id: "main-menu/collapsed",
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(0, 0.76)",
35
- stroke: "#63779C",
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.23883333,15.0013865 C4.45382875,13.7994901 6.95566666,13.1696336 9.5,13.1733169 C12.1388889,13.1733169 14.6162778,13.8370665 16.7611667,15.0013865 M12.6666667,7.09333314 C12.6666667,8.77227878 11.2489017,10.1333331 9.5,10.1333331 C7.75109829,10.1333331 6.33333333,8.77227878 6.33333333,7.09333314 C6.33333333,5.4143875 7.75109829,4.05333314 9.5,4.05333314 C11.2489017,4.05333314 12.6666667,5.4143875 12.6666667,7.09333314 L12.6666667,7.09333314 Z M19,9.11999981 C19,12.378262 17.1893103,15.3890205 14.25,17.0181516 C11.3106898,18.6472827 7.68931021,18.6472827 4.74999996,17.0181516 C1.81068971,15.3890205 4.68760833e-16,12.378262 4.68760833e-16,9.11999981 C4.68760833e-16,4.08316296 4.25329495,0 9.5,0 C14.746705,0 19,4.08316296 19,9.11999981 L19,9.11999981 Z",
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
- })), /*#__PURE__*/React.createElement("rect", {
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","stroke","strokeWidth","fill","fillRule","transform","strokeLinecap","strokeLinejoin","d","fillOpacity","x","y"],"sources":["../../src/icons/UsersIcon.js"],"sourcesContent":["import React from 'react';\nimport { ICON_SIZE } from '../constants';\n\nfunction UserIcon({ width = ICON_SIZE.WIDTH, height = ICON_SIZE.HEIGHT }) {\n return (\n <svg\n width={width}\n height={height}\n viewBox=\"0 0 21 20\"\n version=\"1.1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlnsXlink=\"http://www.w3.org/1999/xlink\">\n <title>icons/user</title>\n <g id=\"Symbols\" stroke=\"none\" strokeWidth={1} fill=\"none\" fillRule=\"evenodd\">\n <g id=\"main-menu/collapsed\" transform=\"translate(-14, -453)\">\n <g id=\"Group-4\" transform=\"translate(9, 19)\">\n <g id=\"Group-15\" transform=\"translate(0, 428)\">\n <g id=\"icons/user\" transform=\"translate(6, 6)\">\n <g\n id=\"Group\"\n transform=\"translate(0, 0.76)\"\n stroke=\"#63779C\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth=\"1.5\">\n <path\n d=\"M2.23883333,15.0013865 C4.45382875,13.7994901 6.95566666,13.1696336 9.5,13.1733169 C12.1388889,13.1733169 14.6162778,13.8370665 16.7611667,15.0013865 M12.6666667,7.09333314 C12.6666667,8.77227878 11.2489017,10.1333331 9.5,10.1333331 C7.75109829,10.1333331 6.33333333,8.77227878 6.33333333,7.09333314 C6.33333333,5.4143875 7.75109829,4.05333314 9.5,4.05333314 C11.2489017,4.05333314 12.6666667,5.4143875 12.6666667,7.09333314 L12.6666667,7.09333314 Z M19,9.11999981 C19,12.378262 17.1893103,15.3890205 14.25,17.0181516 C11.3106898,18.6472827 7.68931021,18.6472827 4.74999996,17.0181516 C1.81068971,15.3890205 4.68760833e-16,12.378262 4.68760833e-16,9.11999981 C4.68760833e-16,4.08316296 4.25329495,0 9.5,0 C14.746705,0 19,4.08316296 19,9.11999981 L19,9.11999981 Z\"\n id=\"Shape\"\n />\n </g>\n <rect\n id=\"Rectangle\"\n fillOpacity={0}\n fill=\"#000000\"\n fillRule=\"nonzero\"\n x={0}\n y={0}\n width={19}\n height=\"18.24\"\n />\n </g>\n </g>\n </g>\n </g>\n </g>\n </svg>\n );\n}\n\nexport default UserIcon;\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,SAAS,QAAQ,cAAc;AAExC,SAASC,QAAQA,CAAC;EAAEC,KAAK,GAAGF,SAAS,CAACG,KAAK;EAAEC,MAAM,GAAGJ,SAAS,CAACK;AAAO,CAAC,EAAE;EACxE,oBACEN,KAAA,CAAAO,aAAA;IACEJ,KAAK,EAAEA,KAAM;IACbE,MAAM,EAAEA,MAAO;IACfG,OAAO,EAAC,WAAW;IACnBC,OAAO,EAAC,KAAK;IACbC,KAAK,EAAC,4BAA4B;IAClCC,UAAU,EAAC;EAA8B,gBACzCX,KAAA,CAAAO,aAAA,gBAAO,YAAiB,CAAC,eACzBP,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,SAAS;IAACC,MAAM,EAAC,MAAM;IAACC,WAAW,EAAE,CAAE;IAACC,IAAI,EAAC,MAAM;IAACC,QAAQ,EAAC;EAAS,gBAC1EhB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,qBAAqB;IAACK,SAAS,EAAC;EAAsB,gBAC1DjB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,SAAS;IAACK,SAAS,EAAC;EAAkB,gBAC1CjB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,UAAU;IAACK,SAAS,EAAC;EAAmB,gBAC5CjB,KAAA,CAAAO,aAAA;IAAGK,EAAE,EAAC,YAAY;IAACK,SAAS,EAAC;EAAiB,gBAC5CjB,KAAA,CAAAO,aAAA;IACEK,EAAE,EAAC,OAAO;IACVK,SAAS,EAAC,oBAAoB;IAC9BJ,MAAM,EAAC,SAAS;IAChBK,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC,OAAO;IACtBL,WAAW,EAAC;EAAK,gBACjBd,KAAA,CAAAO,aAAA;IACEa,CAAC,EAAC,4vBAA4vB;IAC9vBR,EAAE,EAAC;EAAO,CACX,CACA,CAAC,eACJZ,KAAA,CAAAO,aAAA;IACEK,EAAE,EAAC,WAAW;IACdS,WAAW,EAAE,CAAE;IACfN,IAAI,EAAC,SAAS;IACdC,QAAQ,EAAC,SAAS;IAClBM,CAAC,EAAE,CAAE;IACLC,CAAC,EAAE,CAAE;IACLpB,KAAK,EAAE,EAAG;IACVE,MAAM,EAAC;EAAO,CACf,CACA,CACF,CACF,CACF,CACF,CACA,CAAC;AAEV;AAEA,eAAeH,QAAQ"}
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.0-project-admin-customisations.0",
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.0-project-admin-customisations.0",
31
- "@blaze-cms/core-errors": "0.139.0-project-admin-customisations.0",
32
- "@blaze-cms/plugin-render-hooks-ui": "0.139.0-project-admin-customisations.0",
33
- "@blaze-cms/react-form-builder": "0.139.0-project-admin-customisations.0",
34
- "@blaze-cms/react-page-builder": "0.139.0-project-admin-customisations.0",
35
- "@blaze-cms/setup-ui": "0.139.0-project-admin-customisations.0",
36
- "@blaze-cms/versioning-ui": "0.139.0-project-admin-customisations.0",
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.5.19",
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.0-project-admin-customisations.0"
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": "20623d0001dddc54159030f527efb9d8d3eb42b9"
69
+ "gitHead": "7631974706a04751ed0abf368bd0cd3b1c4c1b07"
70
70
  }