@coorpacademy/components 11.11.9 → 11.11.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ import { Props } from './types';
3
+ declare const BulkProgressBar: {
4
+ (props: Props): JSX.Element;
5
+ propTypes: {
6
+ 'data-name': import("prop-types").Requireable<string>;
7
+ status: import("prop-types").Validator<string>;
8
+ progress: import("prop-types").Validator<number>;
9
+ };
10
+ };
11
+ export default BulkProgressBar;
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/molecule/bulk-progress-bar/index.tsx"],"names":[],"mappings":";AAIA,OAAO,EAAC,KAAK,EAAoB,MAAM,SAAS,CAAC;AA4BjD,QAAA,MAAM,eAAe;YAAW,KAAK;;;;;;CAepC,CAAC;AAIF,eAAe,eAAe,CAAC"}
@@ -0,0 +1,60 @@
1
+ import React from 'react';
2
+ import ProgressBar from '../progress-bar';
3
+ import StatusItem from '../../atom/status-item';
4
+ import style from './style.css';
5
+ import { propTypes } from './types';
6
+ const cm_negative_100 = '#ed3436';
7
+ const cm_primary_blue = '#0061FF';
8
+ const cm_positive_100 = '#35CC7F';
9
+ const STATUS = {
10
+ inProgress: 'inProgress',
11
+ fail: 'fail'
12
+ };
13
+
14
+ const renderStatusIcon = (status, progress) => {
15
+ if (status === STATUS.inProgress) return /*#__PURE__*/React.createElement("div", {
16
+ role: "status",
17
+ className: style.progressText
18
+ }, `${progress} %`);
19
+ return /*#__PURE__*/React.createElement(StatusItem, {
20
+ icon: status === STATUS.fail ? 'invalid' : 'valid'
21
+ });
22
+ };
23
+
24
+ const resolveProgressBarColor = status => {
25
+ switch (status) {
26
+ case STATUS.fail:
27
+ return cm_negative_100;
28
+
29
+ case STATUS.inProgress:
30
+ return cm_primary_blue;
31
+
32
+ default:
33
+ return cm_positive_100;
34
+ }
35
+ };
36
+
37
+ const BulkProgressBar = props => {
38
+ const {
39
+ 'data-name': dataName,
40
+ status,
41
+ progress
42
+ } = props;
43
+ return /*#__PURE__*/React.createElement("div", {
44
+ className: style.container,
45
+ "data-name": dataName
46
+ }, /*#__PURE__*/React.createElement(ProgressBar, {
47
+ className: style.progressBar,
48
+ value: progress,
49
+ max: 100,
50
+ steps: 0,
51
+ style: {
52
+ backgroundColor: resolveProgressBarColor(status),
53
+ borderRadius: '10px'
54
+ }
55
+ }), renderStatusIcon(status, progress));
56
+ };
57
+
58
+ BulkProgressBar.propTypes = process.env.NODE_ENV !== "production" ? propTypes : {};
59
+ export default BulkProgressBar;
60
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":["React","ProgressBar","StatusItem","style","propTypes","cm_negative_100","cm_primary_blue","cm_positive_100","STATUS","inProgress","fail","renderStatusIcon","status","progress","progressText","resolveProgressBarColor","BulkProgressBar","props","dataName","container","progressBar","backgroundColor","borderRadius"],"sources":["../../../src/molecule/bulk-progress-bar/index.tsx"],"sourcesContent":["import React from 'react';\nimport ProgressBar from '../progress-bar';\nimport StatusItem from '../../atom/status-item';\nimport style from './style.css';\nimport {Props, propTypes, Status} from './types';\n\nconst cm_negative_100 = '#ed3436';\nconst cm_primary_blue = '#0061FF';\nconst cm_positive_100 = '#35CC7F';\n\nconst STATUS = {\n inProgress: 'inProgress',\n fail: 'fail'\n};\n\nconst renderStatusIcon = (status: Status, progress: number) => {\n if (status === STATUS.inProgress)\n return <div role=\"status\" className={style.progressText}>{`${progress} %`}</div>;\n return <StatusItem icon={status === STATUS.fail ? 'invalid' : 'valid'} />;\n};\n\nconst resolveProgressBarColor = (status: Status) => {\n switch (status) {\n case STATUS.fail:\n return cm_negative_100;\n case STATUS.inProgress:\n return cm_primary_blue;\n default:\n return cm_positive_100;\n }\n};\n\nconst BulkProgressBar = (props: Props) => {\n const {'data-name': dataName, status, progress} = props;\n\n return (\n <div className={style.container} data-name={dataName}>\n <ProgressBar\n className={style.progressBar}\n value={progress}\n max={100}\n steps={0}\n style={{backgroundColor: resolveProgressBarColor(status), borderRadius: '10px'}}\n />\n {renderStatusIcon(status, progress)}\n </div>\n );\n};\n\nBulkProgressBar.propTypes = propTypes;\n\nexport default BulkProgressBar;\n"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,OAAOC,WAAP,MAAwB,iBAAxB;AACA,OAAOC,UAAP,MAAuB,wBAAvB;AACA,OAAOC,KAAP,MAAkB,aAAlB;AACA,SAAeC,SAAf,QAAuC,SAAvC;AAEA,MAAMC,eAAe,GAAG,SAAxB;AACA,MAAMC,eAAe,GAAG,SAAxB;AACA,MAAMC,eAAe,GAAG,SAAxB;AAEA,MAAMC,MAAM,GAAG;EACbC,UAAU,EAAE,YADC;EAEbC,IAAI,EAAE;AAFO,CAAf;;AAKA,MAAMC,gBAAgB,GAAG,CAACC,MAAD,EAAiBC,QAAjB,KAAsC;EAC7D,IAAID,MAAM,KAAKJ,MAAM,CAACC,UAAtB,EACE,oBAAO;IAAK,IAAI,EAAC,QAAV;IAAmB,SAAS,EAAEN,KAAK,CAACW;EAApC,GAAoD,GAAED,QAAS,IAA/D,CAAP;EACF,oBAAO,oBAAC,UAAD;IAAY,IAAI,EAAED,MAAM,KAAKJ,MAAM,CAACE,IAAlB,GAAyB,SAAzB,GAAqC;EAAvD,EAAP;AACD,CAJD;;AAMA,MAAMK,uBAAuB,GAAIH,MAAD,IAAoB;EAClD,QAAQA,MAAR;IACE,KAAKJ,MAAM,CAACE,IAAZ;MACE,OAAOL,eAAP;;IACF,KAAKG,MAAM,CAACC,UAAZ;MACE,OAAOH,eAAP;;IACF;MACE,OAAOC,eAAP;EANJ;AAQD,CATD;;AAWA,MAAMS,eAAe,GAAIC,KAAD,IAAkB;EACxC,MAAM;IAAC,aAAaC,QAAd;IAAwBN,MAAxB;IAAgCC;EAAhC,IAA4CI,KAAlD;EAEA,oBACE;IAAK,SAAS,EAAEd,KAAK,CAACgB,SAAtB;IAAiC,aAAWD;EAA5C,gBACE,oBAAC,WAAD;IACE,SAAS,EAAEf,KAAK,CAACiB,WADnB;IAEE,KAAK,EAAEP,QAFT;IAGE,GAAG,EAAE,GAHP;IAIE,KAAK,EAAE,CAJT;IAKE,KAAK,EAAE;MAACQ,eAAe,EAAEN,uBAAuB,CAACH,MAAD,CAAzC;MAAmDU,YAAY,EAAE;IAAjE;EALT,EADF,EAQGX,gBAAgB,CAACC,MAAD,EAASC,QAAT,CARnB,CADF;AAYD,CAfD;;AAiBAG,eAAe,CAACZ,SAAhB,2CAA4BA,SAA5B;AAEA,eAAeY,eAAf"}
@@ -0,0 +1,32 @@
1
+ @value colors: "../../variables/colors.css";
2
+ @value cm_grey_400 from colors;
3
+ @value cm_grey_75 from colors;
4
+
5
+ .container {
6
+ display: flex;
7
+ justify-content: space-between;
8
+ align-items: center;
9
+ width: 100%;
10
+ }
11
+
12
+ .progressBar {
13
+ width: 100%;
14
+ height: 10px;
15
+ border-radius: 10px;
16
+ background-color: cm_grey_75;
17
+ margin-right: 16px;
18
+ }
19
+
20
+ .progressBar p {
21
+ display: none;
22
+ }
23
+
24
+ .progressText {
25
+ font-family: Gilroy;
26
+ font-style: normal;
27
+ font-weight: 600;
28
+ font-size: 14px;
29
+ line-height: 20px;
30
+ white-space: nowrap;
31
+ color: cm_grey_400;
32
+ }
@@ -0,0 +1,13 @@
1
+ import PropTypes from 'prop-types';
2
+ export declare const propTypes: {
3
+ 'data-name': PropTypes.Requireable<string>;
4
+ status: PropTypes.Validator<string>;
5
+ progress: PropTypes.Validator<number>;
6
+ };
7
+ export declare type Status = 'inProgress' | 'fail' | 'success';
8
+ export declare type Props = {
9
+ 'data-name': string;
10
+ status: Status;
11
+ progress: number;
12
+ };
13
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/molecule/bulk-progress-bar/types.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AAEnC,eAAO,MAAM,SAAS;;;;CAIrB,CAAC;AAEF,oBAAY,MAAM,GAAG,YAAY,GAAG,MAAM,GAAG,SAAS,CAAC;AAEvD,oBAAY,KAAK,GAAG;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC"}
@@ -0,0 +1,7 @@
1
+ import PropTypes from 'prop-types';
2
+ export const propTypes = {
3
+ 'data-name': PropTypes.string,
4
+ status: PropTypes.oneOf(['success', 'inProgress', 'fail']).isRequired,
5
+ progress: PropTypes.number.isRequired
6
+ };
7
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","names":["PropTypes","propTypes","string","status","oneOf","isRequired","progress","number"],"sources":["../../../src/molecule/bulk-progress-bar/types.ts"],"sourcesContent":["import PropTypes from 'prop-types';\n\nexport const propTypes = {\n 'data-name': PropTypes.string,\n status: PropTypes.oneOf(['success', 'inProgress', 'fail']).isRequired,\n progress: PropTypes.number.isRequired\n};\n\nexport type Status = 'inProgress' | 'fail' | 'success';\n\nexport type Props = {\n 'data-name': string;\n status: Status;\n progress: number;\n};\n"],"mappings":"AAAA,OAAOA,SAAP,MAAsB,YAAtB;AAEA,OAAO,MAAMC,SAAS,GAAG;EACvB,aAAaD,SAAS,CAACE,MADA;EAEvBC,MAAM,EAAEH,SAAS,CAACI,KAAV,CAAgB,CAAC,SAAD,EAAY,YAAZ,EAA0B,MAA1B,CAAhB,EAAmDC,UAFpC;EAGvBC,QAAQ,EAAEN,SAAS,CAACO,MAAV,CAAiBF;AAHJ,CAAlB"}
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ import { Props } from './types';
3
+ declare const BulkProgressBar: {
4
+ (props: Props): JSX.Element;
5
+ propTypes: {
6
+ 'data-name': import("prop-types").Requireable<string>;
7
+ status: import("prop-types").Validator<string>;
8
+ progress: import("prop-types").Validator<number>;
9
+ };
10
+ };
11
+ export default BulkProgressBar;
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/molecule/bulk-progress-bar/index.tsx"],"names":[],"mappings":";AAIA,OAAO,EAAC,KAAK,EAAoB,MAAM,SAAS,CAAC;AA4BjD,QAAA,MAAM,eAAe;YAAW,KAAK;;;;;;CAepC,CAAC;AAIF,eAAe,eAAe,CAAC"}
@@ -0,0 +1,73 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+
6
+ var _react = _interopRequireDefault(require("react"));
7
+
8
+ var _progressBar = _interopRequireDefault(require("../progress-bar"));
9
+
10
+ var _statusItem = _interopRequireDefault(require("../../atom/status-item"));
11
+
12
+ var _style = _interopRequireDefault(require("./style.css"));
13
+
14
+ var _types = require("./types");
15
+
16
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17
+
18
+ const cm_negative_100 = '#ed3436';
19
+ const cm_primary_blue = '#0061FF';
20
+ const cm_positive_100 = '#35CC7F';
21
+ const STATUS = {
22
+ inProgress: 'inProgress',
23
+ fail: 'fail'
24
+ };
25
+
26
+ const renderStatusIcon = (status, progress) => {
27
+ if (status === STATUS.inProgress) return /*#__PURE__*/_react.default.createElement("div", {
28
+ role: "status",
29
+ className: _style.default.progressText
30
+ }, `${progress} %`);
31
+ return /*#__PURE__*/_react.default.createElement(_statusItem.default, {
32
+ icon: status === STATUS.fail ? 'invalid' : 'valid'
33
+ });
34
+ };
35
+
36
+ const resolveProgressBarColor = status => {
37
+ switch (status) {
38
+ case STATUS.fail:
39
+ return cm_negative_100;
40
+
41
+ case STATUS.inProgress:
42
+ return cm_primary_blue;
43
+
44
+ default:
45
+ return cm_positive_100;
46
+ }
47
+ };
48
+
49
+ const BulkProgressBar = props => {
50
+ const {
51
+ 'data-name': dataName,
52
+ status,
53
+ progress
54
+ } = props;
55
+ return /*#__PURE__*/_react.default.createElement("div", {
56
+ className: _style.default.container,
57
+ "data-name": dataName
58
+ }, /*#__PURE__*/_react.default.createElement(_progressBar.default, {
59
+ className: _style.default.progressBar,
60
+ value: progress,
61
+ max: 100,
62
+ steps: 0,
63
+ style: {
64
+ backgroundColor: resolveProgressBarColor(status),
65
+ borderRadius: '10px'
66
+ }
67
+ }), renderStatusIcon(status, progress));
68
+ };
69
+
70
+ BulkProgressBar.propTypes = process.env.NODE_ENV !== "production" ? _types.propTypes : {};
71
+ var _default = BulkProgressBar;
72
+ exports.default = _default;
73
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":["cm_negative_100","cm_primary_blue","cm_positive_100","STATUS","inProgress","fail","renderStatusIcon","status","progress","style","progressText","resolveProgressBarColor","BulkProgressBar","props","dataName","container","progressBar","backgroundColor","borderRadius","propTypes"],"sources":["../../../src/molecule/bulk-progress-bar/index.tsx"],"sourcesContent":["import React from 'react';\nimport ProgressBar from '../progress-bar';\nimport StatusItem from '../../atom/status-item';\nimport style from './style.css';\nimport {Props, propTypes, Status} from './types';\n\nconst cm_negative_100 = '#ed3436';\nconst cm_primary_blue = '#0061FF';\nconst cm_positive_100 = '#35CC7F';\n\nconst STATUS = {\n inProgress: 'inProgress',\n fail: 'fail'\n};\n\nconst renderStatusIcon = (status: Status, progress: number) => {\n if (status === STATUS.inProgress)\n return <div role=\"status\" className={style.progressText}>{`${progress} %`}</div>;\n return <StatusItem icon={status === STATUS.fail ? 'invalid' : 'valid'} />;\n};\n\nconst resolveProgressBarColor = (status: Status) => {\n switch (status) {\n case STATUS.fail:\n return cm_negative_100;\n case STATUS.inProgress:\n return cm_primary_blue;\n default:\n return cm_positive_100;\n }\n};\n\nconst BulkProgressBar = (props: Props) => {\n const {'data-name': dataName, status, progress} = props;\n\n return (\n <div className={style.container} data-name={dataName}>\n <ProgressBar\n className={style.progressBar}\n value={progress}\n max={100}\n steps={0}\n style={{backgroundColor: resolveProgressBarColor(status), borderRadius: '10px'}}\n />\n {renderStatusIcon(status, progress)}\n </div>\n );\n};\n\nBulkProgressBar.propTypes = propTypes;\n\nexport default BulkProgressBar;\n"],"mappings":";;;;;AAAA;;AACA;;AACA;;AACA;;AACA;;;;AAEA,MAAMA,eAAe,GAAG,SAAxB;AACA,MAAMC,eAAe,GAAG,SAAxB;AACA,MAAMC,eAAe,GAAG,SAAxB;AAEA,MAAMC,MAAM,GAAG;EACbC,UAAU,EAAE,YADC;EAEbC,IAAI,EAAE;AAFO,CAAf;;AAKA,MAAMC,gBAAgB,GAAG,CAACC,MAAD,EAAiBC,QAAjB,KAAsC;EAC7D,IAAID,MAAM,KAAKJ,MAAM,CAACC,UAAtB,EACE,oBAAO;IAAK,IAAI,EAAC,QAAV;IAAmB,SAAS,EAAEK,cAAA,CAAMC;EAApC,GAAoD,GAAEF,QAAS,IAA/D,CAAP;EACF,oBAAO,6BAAC,mBAAD;IAAY,IAAI,EAAED,MAAM,KAAKJ,MAAM,CAACE,IAAlB,GAAyB,SAAzB,GAAqC;EAAvD,EAAP;AACD,CAJD;;AAMA,MAAMM,uBAAuB,GAAIJ,MAAD,IAAoB;EAClD,QAAQA,MAAR;IACE,KAAKJ,MAAM,CAACE,IAAZ;MACE,OAAOL,eAAP;;IACF,KAAKG,MAAM,CAACC,UAAZ;MACE,OAAOH,eAAP;;IACF;MACE,OAAOC,eAAP;EANJ;AAQD,CATD;;AAWA,MAAMU,eAAe,GAAIC,KAAD,IAAkB;EACxC,MAAM;IAAC,aAAaC,QAAd;IAAwBP,MAAxB;IAAgCC;EAAhC,IAA4CK,KAAlD;EAEA,oBACE;IAAK,SAAS,EAAEJ,cAAA,CAAMM,SAAtB;IAAiC,aAAWD;EAA5C,gBACE,6BAAC,oBAAD;IACE,SAAS,EAAEL,cAAA,CAAMO,WADnB;IAEE,KAAK,EAAER,QAFT;IAGE,GAAG,EAAE,GAHP;IAIE,KAAK,EAAE,CAJT;IAKE,KAAK,EAAE;MAACS,eAAe,EAAEN,uBAAuB,CAACJ,MAAD,CAAzC;MAAmDW,YAAY,EAAE;IAAjE;EALT,EADF,EAQGZ,gBAAgB,CAACC,MAAD,EAASC,QAAT,CARnB,CADF;AAYD,CAfD;;AAiBAI,eAAe,CAACO,SAAhB,2CAA4BA,gBAA5B;eAEeP,e"}
@@ -0,0 +1,32 @@
1
+ @value colors: "../../variables/colors.css";
2
+ @value cm_grey_400 from colors;
3
+ @value cm_grey_75 from colors;
4
+
5
+ .container {
6
+ display: flex;
7
+ justify-content: space-between;
8
+ align-items: center;
9
+ width: 100%;
10
+ }
11
+
12
+ .progressBar {
13
+ width: 100%;
14
+ height: 10px;
15
+ border-radius: 10px;
16
+ background-color: cm_grey_75;
17
+ margin-right: 16px;
18
+ }
19
+
20
+ .progressBar p {
21
+ display: none;
22
+ }
23
+
24
+ .progressText {
25
+ font-family: Gilroy;
26
+ font-style: normal;
27
+ font-weight: 600;
28
+ font-size: 14px;
29
+ line-height: 20px;
30
+ white-space: nowrap;
31
+ color: cm_grey_400;
32
+ }
@@ -0,0 +1,13 @@
1
+ import PropTypes from 'prop-types';
2
+ export declare const propTypes: {
3
+ 'data-name': PropTypes.Requireable<string>;
4
+ status: PropTypes.Validator<string>;
5
+ progress: PropTypes.Validator<number>;
6
+ };
7
+ export declare type Status = 'inProgress' | 'fail' | 'success';
8
+ export declare type Props = {
9
+ 'data-name': string;
10
+ status: Status;
11
+ progress: number;
12
+ };
13
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/molecule/bulk-progress-bar/types.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AAEnC,eAAO,MAAM,SAAS;;;;CAIrB,CAAC;AAEF,oBAAY,MAAM,GAAG,YAAY,GAAG,MAAM,GAAG,SAAS,CAAC;AAEvD,oBAAY,KAAK,GAAG;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC"}
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.propTypes = void 0;
5
+
6
+ var _propTypes = _interopRequireDefault(require("prop-types"));
7
+
8
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
9
+
10
+ const propTypes = {
11
+ 'data-name': _propTypes.default.string,
12
+ status: _propTypes.default.oneOf(['success', 'inProgress', 'fail']).isRequired,
13
+ progress: _propTypes.default.number.isRequired
14
+ };
15
+ exports.propTypes = propTypes;
16
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","names":["propTypes","PropTypes","string","status","oneOf","isRequired","progress","number"],"sources":["../../../src/molecule/bulk-progress-bar/types.ts"],"sourcesContent":["import PropTypes from 'prop-types';\n\nexport const propTypes = {\n 'data-name': PropTypes.string,\n status: PropTypes.oneOf(['success', 'inProgress', 'fail']).isRequired,\n progress: PropTypes.number.isRequired\n};\n\nexport type Status = 'inProgress' | 'fail' | 'success';\n\nexport type Props = {\n 'data-name': string;\n status: Status;\n progress: number;\n};\n"],"mappings":";;;;;AAAA;;;;AAEO,MAAMA,SAAS,GAAG;EACvB,aAAaC,kBAAA,CAAUC,MADA;EAEvBC,MAAM,EAAEF,kBAAA,CAAUG,KAAV,CAAgB,CAAC,SAAD,EAAY,YAAZ,EAA0B,MAA1B,CAAhB,EAAmDC,UAFpC;EAGvBC,QAAQ,EAAEL,kBAAA,CAAUM,MAAV,CAAiBF;AAHJ,CAAlB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coorpacademy/components",
3
- "version": "11.11.9",
3
+ "version": "11.11.10",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -165,5 +165,5 @@
165
165
  "last 2 versions",
166
166
  "IE 11"
167
167
  ],
168
- "gitHead": "d8a5f101e6611bff7168d750b4d6324602d4b2f9"
168
+ "gitHead": "9f79a606a352035ade90913070638849044cf692"
169
169
  }