contentoh-components-library 21.2.101 → 21.2.102
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/.env.development +5 -2
- package/.env.production +25 -25
- package/dist/components/molecules/CustomSelect/CustomSelect.stories.js +21 -22
- package/dist/components/molecules/CustomSelect/SelectItem.js +10 -1
- package/dist/components/molecules/Dropdown/Dropdown.stories.js +96 -0
- package/dist/components/molecules/Dropdown/index.js +148 -0
- package/dist/components/molecules/Dropdown/styles.js +26 -0
- package/dist/components/molecules/HeaderTop/index.js +10 -5
- package/dist/components/molecules/HeaderTop/styles.js +1 -1
- package/dist/components/organisms/OrderDetail/OrderDetail.stories.js +1 -1
- package/dist/components/organisms/OrderDetail/index.js +11 -20
- package/dist/components/organisms/OrderDetail/styles.js +1 -1
- package/dist/components/pages/ProviderProductEdition/index.js +2 -2
- package/dist/components/pages/RetailerProductEdition/index.js +2 -2
- package/dist/global-files/fonts.css +12 -0
- package/dist/global-files/variables.js +2 -0
- package/dist/index.js +254 -46
- package/package.json +12 -1
- package/src/assets/images/customSelect/starIcon.svg +14 -0
- package/{dist/assets/images/chatPopup → src/assets/images/defaultImages}/Spinner.gif +0 -0
- package/src/assets/images/defaultImages/notFound.svg +124 -0
- package/src/components/atoms/ButtonFileChooser/ButtonFileChooser.stories.js +47 -0
- package/src/components/atoms/ButtonFileChooser/index.js +69 -0
- package/src/components/atoms/ButtonFileChooser/styles.js +4 -0
- package/src/components/atoms/ButtonV2/ButtonV2.stories.js +51 -0
- package/src/components/atoms/ButtonV2/index.js +79 -0
- package/src/components/atoms/ButtonV2/styles.js +195 -0
- package/src/components/atoms/CustomIcon/CustomIcon.stories.js +36 -0
- package/src/components/atoms/CustomIcon/index.js +41 -0
- package/src/components/atoms/CustomIcon/styles.js +85 -0
- package/src/components/atoms/IconFile/IconFile.stories.js +35 -0
- package/src/components/atoms/IconFile/index.js +119 -0
- package/src/components/atoms/IconFile/styles.js +67 -0
- package/src/components/atoms/Image/Image.stories.js +51 -0
- package/src/components/atoms/Image/index.js +55 -0
- package/src/components/atoms/Image/styles.js +34 -0
- package/src/components/atoms/ImageLink/ImageLink.stories.js +43 -0
- package/src/components/atoms/ImageLink/index.js +57 -0
- package/src/components/atoms/ImageLink/styles.js +30 -0
- package/src/components/atoms/ImagePreview/ImagePreview.stories.js +52 -0
- package/src/components/atoms/ImagePreview/index.js +191 -0
- package/src/components/atoms/ImagePreview/styles.js +77 -0
- package/src/components/atoms/InputText/InputText.stories.js +39 -0
- package/src/components/atoms/InputText/index.js +61 -0
- package/src/components/atoms/InputText/styles.js +89 -0
- package/src/components/atoms/NotFound/NotFound.stories.js +19 -0
- package/src/components/atoms/NotFound/index.js +52 -0
- package/src/components/atoms/NotFound/styles.js +55 -0
- package/src/components/atoms/SelectItemV2/SelectItemV2.stories.js +26 -0
- package/src/components/atoms/SelectItemV2/index.js +45 -0
- package/src/components/atoms/SelectItemV2/styles.js +55 -0
- package/src/components/atoms/Tooltip/Tooltip.stories.js +51 -0
- package/src/components/atoms/Tooltip/index.js +59 -0
- package/src/components/atoms/Tooltip/styles.js +42 -0
- package/src/components/molecules/ButtonDownloadFile/DownloadFile.stories.js +54 -0
- package/src/components/molecules/ButtonDownloadFile/index.js +111 -0
- package/src/components/molecules/ButtonDownloadFile/styles.js +66 -0
- package/src/components/molecules/CustomSelect/CustomSelect.stories.js +20 -12
- package/src/components/molecules/CustomSelect/SelectItem.js +7 -0
- package/src/components/molecules/Dropdown/Dropdown.stories.js +101 -0
- package/src/components/molecules/Dropdown/index.js +142 -0
- package/src/components/molecules/Dropdown/styles.js +75 -0
- package/src/components/molecules/HeaderTop/index.js +11 -6
- package/src/components/molecules/HeaderTop/styles.js +4 -0
- package/src/components/molecules/ImageTooltip/ImageTooltip.stories.js +46 -0
- package/src/components/molecules/ImageTooltip/index.js +62 -0
- package/src/components/molecules/ImageTooltip/styles.js +18 -0
- package/src/components/molecules/SelectV2/SelectV2.stories.js +114 -0
- package/src/components/molecules/SelectV2/index.js +332 -0
- package/src/components/molecules/SelectV2/styles.js +100 -0
- package/src/components/organisms/Chat/Chat.stories.js +199 -0
- package/src/components/organisms/Chat/ChatLists/ChatLists.stories.js +65 -0
- package/src/components/organisms/Chat/ChatLists/Rotoplas.jpeg +0 -0
- package/src/components/organisms/Chat/ChatLists/THD.png +0 -0
- package/src/components/organisms/Chat/ChatLists/index.js +141 -0
- package/src/components/organisms/Chat/ChatLists/styles.js +162 -0
- package/src/components/organisms/Chat/ContainerItems/ContainerItems.stories.js +142 -0
- package/src/components/organisms/Chat/ContainerItems/index.js +549 -0
- package/src/components/organisms/Chat/ContainerItems/styles.js +328 -0
- package/src/components/organisms/Chat/ContentChat/ContentChat.stories.js +102 -0
- package/src/components/organisms/Chat/ContentChat/Rotoplas.jpeg +0 -0
- package/src/components/organisms/Chat/ContentChat/THD.png +0 -0
- package/src/components/organisms/Chat/ContentChat/index.js +900 -0
- package/src/components/organisms/Chat/ContentChat/styles.js +41 -0
- package/src/components/organisms/Chat/Footer/Footer.stories.js +22 -0
- package/src/components/organisms/Chat/Footer/index.js +669 -0
- package/src/components/organisms/Chat/Footer/styles.js +286 -0
- package/src/components/organisms/Chat/Header/Header.stories.js +66 -0
- package/src/components/organisms/Chat/Header/index.js +94 -0
- package/src/components/organisms/Chat/Header/styles.js +49 -0
- package/src/components/organisms/Chat/index.js +294 -0
- package/src/components/organisms/Chat/styles.js +42 -0
- package/src/components/organisms/Modal/Modal.stories.js +55 -0
- package/src/components/organisms/Modal/index.js +97 -0
- package/src/components/organisms/Modal/styles.js +103 -0
- package/src/components/organisms/OrderDetail/OrderDetail.stories.js +1 -1
- package/src/components/organisms/OrderDetail/index.js +12 -19
- package/src/components/organisms/OrderDetail/styles.js +0 -1
- package/src/components/pages/ProviderProductEdition/index.js +2 -2
- package/src/components/pages/RetailerProductEdition/index.js +2 -2
- package/src/global-files/fonts.css +12 -0
- package/src/global-files/handle_http.js +231 -0
- package/src/global-files/utils.js +300 -0
- package/src/global-files/variables.js +2 -0
- package/src/index.js +16 -0
- package/dist/assets/images/chatPopup/close.svg +0 -3
- package/dist/assets/images/chatPopup/defaultImage.png +0 -0
- package/dist/assets/images/chatPopup/defaultProfile.png +0 -0
- package/dist/assets/images/chatPopup/doc.svg +0 -1
- package/dist/assets/images/chatPopup/document.svg +0 -1
- package/dist/assets/images/chatPopup/iconChat.svg +0 -19
- package/dist/assets/images/chatPopup/iconPlus.svg +0 -3
- package/dist/assets/images/chatPopup/pdf.svg +0 -75
- package/dist/assets/images/chatPopup/remove.svg +0 -4
- package/dist/assets/images/chatPopup/send.svg +0 -3
- package/dist/assets/images/chatPopup/svgIcon.svg +0 -109
- package/dist/assets/images/chatPopup/upload_file.svg +0 -3
- package/dist/assets/images/chatPopup/xls.svg +0 -53
- package/dist/components/atoms/ChatPopUp/ChatPopUp.stories.js +0 -28
- package/dist/components/atoms/ChatPopUp/index.js +0 -841
- package/dist/components/atoms/ChatPopUp/styles.js +0 -27
- package/dist/components/atoms/ChatPopUp/utils/handlersChat.js +0 -182
package/.env.development
CHANGED
|
@@ -21,10 +21,13 @@ REACT_APP_READ_REQUIRED_ORDERS=https://fc069ovhuk.execute-api.us-east-1.amazonaw
|
|
|
21
21
|
REACT_APP_CATEGORY_ENDPOINT=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/categories
|
|
22
22
|
REACT_APP_READ_PROVIDERS=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/providers
|
|
23
23
|
REACT_APP_PENDING_INVITATIONS=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/pending-invitations
|
|
24
|
+
REACT_APP_PRODUCTS_CHAT_ENDPOINT=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/products-chat
|
|
25
|
+
REACT_APP_TICKETS_CHAT_ENDPOINT=https://ocqbzaa4a2.execute-api.us-east-1.amazonaws.com/dev/ticket-chat
|
|
26
|
+
REACT_APP_IMAGES_ENDPOINT=https://content-management-images.s3.amazonaws.com
|
|
24
27
|
|
|
25
28
|
REACT_APP_IMAGES_BUCKET=content-management-images
|
|
29
|
+
REACT_APP_KEY_UPLOAD_TO_S3=AKIA5CPHLQTT46EQ5TIK
|
|
26
30
|
REACT_APP_IMAGES_PROFILE_BUCKET=content-management-profile
|
|
27
|
-
|
|
28
|
-
REACT_APP_AKUTS3=RSpwEaM0fsLEgN7BJzRyCKqyU0lNExTsPUvxyNXm
|
|
31
|
+
REACT_APP_ACCESS_KEY_UPLOAD_TO_S3=tZDdrmvwxM1cScspfxFM3XpU4HSYrCNPazyHd0BL
|
|
29
32
|
REACT_APP_USER_POOL_ID=us-east-1_XMZQdqkGj
|
|
30
33
|
REACT_APP_USER_POOL_WEB_CLIENT_ID=5ac8tpgs6gbsq13frvrpieep40
|
package/.env.production
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
REACT_APP_ARTICLE_DATA_ENDPOINT=https://
|
|
2
|
-
REACT_APP_ARTICLE_DATA_DATASHEET_ENDPOINT=https://
|
|
3
|
-
REACT_APP_ARTICLE_DATA_DESCRIPTION_ENDPOINT=https://
|
|
4
|
-
REACT_APP_ARTICLE_DATA_IMAGES_ENDPOINT=https://
|
|
5
|
-
REACT_APP_ARTICLE_DATA_ENDPOINT=https://
|
|
6
|
-
REACT_APP_VALID_EXPORT_ENDPOINT = https://
|
|
7
|
-
REACT_APP_SERVICES_ENDPOINT = https://
|
|
8
|
-
REACT_APP_EVALUATION_ENDPOINT = https://
|
|
9
|
-
REACT_APP_SEND_EVAL = https://
|
|
10
|
-
REACT_APP_COMMENTS_ENDPOINT = https://
|
|
11
|
-
REACT_APP_USER_ENDPOINT=https://
|
|
12
|
-
REACT_APP_ASSIGNATIONS_ENDPOINT = https://
|
|
13
|
-
REACT_APP_TASKS_ENDPOINT = https://
|
|
14
|
-
REACT_APP_USER_TASKS_ENDPOINT = https://
|
|
15
|
-
REACT_APP_CART = https://
|
|
16
|
-
REACT_APP_RETAILER_REQUEST = https://
|
|
17
|
-
REACT_APP_VERSIONS_ENDPOINT = https://
|
|
18
|
-
REACT_APP_RETAILER_ENDPOINT=https://
|
|
19
|
-
REACT_APP_READ_ORDERS_BY_STATUS=https://
|
|
20
|
-
REACT_APP_READ_REQUIRED_ORDERS=https://
|
|
21
|
-
REACT_APP_CATEGORY_ENDPOINT=https://
|
|
22
|
-
REACT_APP_READ_PROVIDERS=https://
|
|
23
|
-
REACT_APP_PENDING_INVITATIONS=https://
|
|
1
|
+
REACT_APP_ARTICLE_DATA_ENDPOINT=https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/articles-data
|
|
2
|
+
REACT_APP_ARTICLE_DATA_DATASHEET_ENDPOINT=https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/articles-data/datasheets
|
|
3
|
+
REACT_APP_ARTICLE_DATA_DESCRIPTION_ENDPOINT=https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/articles-data/descriptions
|
|
4
|
+
REACT_APP_ARTICLE_DATA_IMAGES_ENDPOINT=https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/articles-data/images
|
|
5
|
+
REACT_APP_ARTICLE_DATA_ENDPOINT=https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/articles-data
|
|
6
|
+
REACT_APP_VALID_EXPORT_ENDPOINT = https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/valid-export
|
|
7
|
+
REACT_APP_SERVICES_ENDPOINT = https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/services
|
|
8
|
+
REACT_APP_EVALUATION_ENDPOINT = https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/evaluations
|
|
9
|
+
REACT_APP_SEND_EVAL = https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/eval-status
|
|
10
|
+
REACT_APP_COMMENTS_ENDPOINT = https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/comments
|
|
11
|
+
REACT_APP_USER_ENDPOINT=https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/users
|
|
12
|
+
REACT_APP_ASSIGNATIONS_ENDPOINT = https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/assignations
|
|
13
|
+
REACT_APP_TASKS_ENDPOINT = https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/tasks
|
|
14
|
+
REACT_APP_USER_TASKS_ENDPOINT = https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/user-tasks
|
|
15
|
+
REACT_APP_CART = https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/cart
|
|
16
|
+
REACT_APP_RETAILER_REQUEST = https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/retailers-request
|
|
17
|
+
REACT_APP_VERSIONS_ENDPOINT = https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/versions
|
|
18
|
+
REACT_APP_RETAILER_ENDPOINT=https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/retailers
|
|
19
|
+
REACT_APP_READ_ORDERS_BY_STATUS=https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/read-orders-by-status
|
|
20
|
+
REACT_APP_READ_REQUIRED_ORDERS=https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/read-required-orders
|
|
21
|
+
REACT_APP_CATEGORY_ENDPOINT=https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/categories
|
|
22
|
+
REACT_APP_READ_PROVIDERS=https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/providers
|
|
23
|
+
REACT_APP_PENDING_INVITATIONS=https://6jqnpjf841.execute-api.us-east-1.amazonaws.com/prod/pending-invitations
|
|
24
24
|
|
|
25
25
|
REACT_APP_IMAGES_BUCKET=content-management-images-prod
|
|
26
|
+
REACT_APP_KEY_UPLOAD_TO_S3=AKIA5CPHLQTT46EQ5TIK
|
|
26
27
|
REACT_APP_IMAGES_PROFILE_BUCKET=content-management-profile-prod
|
|
27
|
-
|
|
28
|
-
REACT_APP_AKUTS3=tZDdrmvwxM1cScspfxFM3XpU4HSYrCNPazyHd0BL
|
|
28
|
+
REACT_APP_ACCESS_KEY_UPLOAD_TO_S3=tZDdrmvwxM1cScspfxFM3XpU4HSYrCNPazyHd0BL
|
|
29
29
|
REACT_APP_USER_POOL_ID=us-east-1_XMZQdqkGj
|
|
30
30
|
REACT_APP_USER_POOL_WEB_CLIENT_ID=5ac8tpgs6gbsq13frvrpieep40
|
|
@@ -11,6 +11,8 @@ var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/
|
|
|
11
11
|
|
|
12
12
|
var _index = require("./index");
|
|
13
13
|
|
|
14
|
+
var _starIcon = _interopRequireDefault(require("../../../assets/images/customSelect/starIcon.svg"));
|
|
15
|
+
|
|
14
16
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
15
17
|
|
|
16
18
|
var _default = {
|
|
@@ -26,29 +28,26 @@ var Template = function Template(args) {
|
|
|
26
28
|
var CustomSelectDefault = Template.bind({});
|
|
27
29
|
exports.CustomSelectDefault = CustomSelectDefault;
|
|
28
30
|
CustomSelectDefault.args = {
|
|
29
|
-
selectLabel: "Todos los departamentos",
|
|
31
|
+
// selectLabel: "Todos los departamentos",
|
|
30
32
|
defaultOption: "Todos los departamentos",
|
|
31
33
|
options: [{
|
|
32
|
-
id:
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
id: 1,
|
|
36
|
-
value: "Espejos"
|
|
37
|
-
}, {
|
|
38
|
-
id: 2,
|
|
39
|
-
value: "Persianas"
|
|
40
|
-
}]
|
|
41
|
-
}, {
|
|
42
|
-
id: 2,
|
|
43
|
-
value: "Eléctrico"
|
|
44
|
-
}, {
|
|
45
|
-
id: 3,
|
|
46
|
-
value: "Ferretería"
|
|
47
|
-
}, {
|
|
48
|
-
id: 4,
|
|
49
|
-
value: "Herramientas"
|
|
34
|
+
id: 47,
|
|
35
|
+
name: "Enero 2023",
|
|
36
|
+
isSelected: true
|
|
50
37
|
}, {
|
|
51
|
-
id:
|
|
52
|
-
|
|
53
|
-
}]
|
|
38
|
+
id: 49,
|
|
39
|
+
name: "Mis Favoritos"
|
|
40
|
+
}],
|
|
41
|
+
onClickItem: function onClickItem(v, id) {
|
|
42
|
+
if (v) {
|
|
43
|
+
console.log("Agregar a la lista", id);
|
|
44
|
+
} else {
|
|
45
|
+
console.log("Eliminar a la lista", id);
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
icon: _starIcon.default,
|
|
49
|
+
showSearchBar: true,
|
|
50
|
+
customOptions: /*#__PURE__*/(0, _jsxRuntime.jsx)("p", {
|
|
51
|
+
children: "Esto es un customOptions"
|
|
52
|
+
})
|
|
54
53
|
};
|
|
@@ -26,7 +26,8 @@ var SelecItem = function SelecItem(_ref) {
|
|
|
26
26
|
customSelectId = _ref.customSelectId,
|
|
27
27
|
setParameterArray = _ref.setParameterArray,
|
|
28
28
|
activeFilters = _ref.activeFilters,
|
|
29
|
-
setActiveFilters = _ref.setActiveFilters
|
|
29
|
+
setActiveFilters = _ref.setActiveFilters,
|
|
30
|
+
onClickItem = _ref.onClickItem;
|
|
30
31
|
|
|
31
32
|
var _useState = (0, _react.useState)(false),
|
|
32
33
|
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
|
@@ -46,6 +47,10 @@ var SelecItem = function SelecItem(_ref) {
|
|
|
46
47
|
id: "main-item-" + option.id,
|
|
47
48
|
label: option.name,
|
|
48
49
|
onChange: function onChange(e) {
|
|
50
|
+
if (onClickItem) {
|
|
51
|
+
onClickItem(e.target.checked, option.id);
|
|
52
|
+
}
|
|
53
|
+
|
|
49
54
|
var subOptions = option.subOptions;
|
|
50
55
|
var filtersCopy = (0, _objectSpread2.default)({}, activeFilters);
|
|
51
56
|
|
|
@@ -108,6 +113,10 @@ var SelecItem = function SelecItem(_ref) {
|
|
|
108
113
|
label: sub.name,
|
|
109
114
|
defaultChecked: activeFilters[option.name] && activeFilters[option.name][sub.name],
|
|
110
115
|
onChange: function onChange(e) {
|
|
116
|
+
if (onClickItem) {
|
|
117
|
+
onClickItem(e.target.checked, sub.id);
|
|
118
|
+
}
|
|
119
|
+
|
|
111
120
|
if (e.target.checked) {
|
|
112
121
|
setParameterArray(function (current) {
|
|
113
122
|
return [].concat((0, _toConsumableArray2.default)(current), [sub.id]).sort(function (a, b) {
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.default = exports.DropdownTest = void 0;
|
|
9
|
+
|
|
10
|
+
var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectSpread2"));
|
|
11
|
+
|
|
12
|
+
var _ButtonV = require("../../atoms/ButtonV2");
|
|
13
|
+
|
|
14
|
+
var _index = require("./index");
|
|
15
|
+
|
|
16
|
+
var _freeSolidSvgIcons = require("@fortawesome/free-solid-svg-icons");
|
|
17
|
+
|
|
18
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
19
|
+
|
|
20
|
+
var _default = {
|
|
21
|
+
title: "Components/molecules/Dropdown",
|
|
22
|
+
component: _index.Dropdown,
|
|
23
|
+
argTypes: {
|
|
24
|
+
positionDropdown: {
|
|
25
|
+
options: [undefined, "topStart", "topEnd", "topCenter", "rightStart", "rightEnd", "rightCenter", "bottomStart", "bottomEnd", "bottomCenter", "leftStart", "leftEnd", "leftCenter"],
|
|
26
|
+
control: {
|
|
27
|
+
type: "select"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
triggerType: {
|
|
31
|
+
options: [undefined, "hover", "click"],
|
|
32
|
+
control: {
|
|
33
|
+
type: "select"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
exports.default = _default;
|
|
39
|
+
|
|
40
|
+
var Template = function Template(args) {
|
|
41
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.Dropdown, (0, _objectSpread2.default)({}, args));
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
var DropdownTest = Template.bind({});
|
|
45
|
+
exports.DropdownTest = DropdownTest;
|
|
46
|
+
DropdownTest.args = {
|
|
47
|
+
items: [{
|
|
48
|
+
label: "Palomitas de maiz",
|
|
49
|
+
//icon: Icon1,
|
|
50
|
+
onClick: function onClick(event) {
|
|
51
|
+
console.log("Palomitaz de maiz");
|
|
52
|
+
}
|
|
53
|
+
}, {
|
|
54
|
+
label: "Sabritas",
|
|
55
|
+
//icon: Icon2,
|
|
56
|
+
onClick: function onClick(event) {
|
|
57
|
+
console.log("Sabritas");
|
|
58
|
+
}
|
|
59
|
+
}, {
|
|
60
|
+
label: "sabritas Doritos",
|
|
61
|
+
onClick: function onClick(event) {
|
|
62
|
+
console.log("Sabritas Doritos");
|
|
63
|
+
}
|
|
64
|
+
}, {
|
|
65
|
+
label: "Este es un texto muy largo que deberia llegar al limite establecido para el width",
|
|
66
|
+
//icon: Icon2,
|
|
67
|
+
onClick: function onClick(event) {
|
|
68
|
+
console.log("texto largo de prueba");
|
|
69
|
+
}
|
|
70
|
+
}, {
|
|
71
|
+
label: "galletas",
|
|
72
|
+
icon: undefined,
|
|
73
|
+
onClick: function onClick(event) {
|
|
74
|
+
console.log("galletas");
|
|
75
|
+
}
|
|
76
|
+
}, {
|
|
77
|
+
label: "jugo de uva",
|
|
78
|
+
//icon: Icon3,
|
|
79
|
+
onClick: function onClick(event) {
|
|
80
|
+
console.log("jugo de uva");
|
|
81
|
+
}
|
|
82
|
+
}],
|
|
83
|
+
triggerType: "click",
|
|
84
|
+
maxWidthDropdown: "200px",
|
|
85
|
+
maxHeightDropdown: "200px",
|
|
86
|
+
className: "dropdownPrueba",
|
|
87
|
+
classNameDropdown: "dropdownMenuPrueba",
|
|
88
|
+
positionDropdown: undefined,
|
|
89
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_ButtonV.ButtonV2, {
|
|
90
|
+
className: "buttonTrigger",
|
|
91
|
+
type: "white",
|
|
92
|
+
size: 14,
|
|
93
|
+
borderType: "oval",
|
|
94
|
+
label: "boton trigger"
|
|
95
|
+
})
|
|
96
|
+
};
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
4
|
+
|
|
5
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
6
|
+
|
|
7
|
+
Object.defineProperty(exports, "__esModule", {
|
|
8
|
+
value: true
|
|
9
|
+
});
|
|
10
|
+
exports.Dropdown = void 0;
|
|
11
|
+
|
|
12
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/slicedToArray"));
|
|
13
|
+
|
|
14
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
15
|
+
|
|
16
|
+
var _material = require("@mui/material");
|
|
17
|
+
|
|
18
|
+
var _styles = require("./styles");
|
|
19
|
+
|
|
20
|
+
var _ButtonV = require("../../atoms/ButtonV2");
|
|
21
|
+
|
|
22
|
+
var _freeSolidSvgIcons = require("@fortawesome/free-solid-svg-icons");
|
|
23
|
+
|
|
24
|
+
var _utils = require("../../../global-files/utils");
|
|
25
|
+
|
|
26
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
27
|
+
|
|
28
|
+
/* Este es un menu de opciones tipo select donde cada item
|
|
29
|
+
es un boton con su propio onClick */
|
|
30
|
+
var Dropdown = function Dropdown(props) {
|
|
31
|
+
var _positions$positionDr;
|
|
32
|
+
|
|
33
|
+
var items = props.items,
|
|
34
|
+
triggerType = props.triggerType,
|
|
35
|
+
children = props.children,
|
|
36
|
+
maxWidthDropdown = props.maxWidthDropdown,
|
|
37
|
+
maxHeightDropdown = props.maxHeightDropdown,
|
|
38
|
+
className = props.className,
|
|
39
|
+
classNameDropdown = props.classNameDropdown,
|
|
40
|
+
positionDropdown = props.positionDropdown;
|
|
41
|
+
var positions = {
|
|
42
|
+
topStart: "top-start",
|
|
43
|
+
topEnd: "top-end",
|
|
44
|
+
topCenter: "top",
|
|
45
|
+
rightStart: "right-start",
|
|
46
|
+
rightEnd: "right-end",
|
|
47
|
+
rightCenter: "right",
|
|
48
|
+
bottomStart: "bottom-start",
|
|
49
|
+
bottomEnd: "bottom-end",
|
|
50
|
+
bottomCenter: "bottom",
|
|
51
|
+
leftStart: "left-start",
|
|
52
|
+
leftEnd: "left-end",
|
|
53
|
+
leftCenter: "left"
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
var _useState = (0, _react.useState)(false),
|
|
57
|
+
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
|
58
|
+
showDropdown = _useState2[0],
|
|
59
|
+
setShowDropdown = _useState2[1];
|
|
60
|
+
|
|
61
|
+
var renderItems = function renderItems() {
|
|
62
|
+
var customItems = [];
|
|
63
|
+
|
|
64
|
+
if (!(0, _utils.isArrayEmpty)(items)) {
|
|
65
|
+
var useIconDefault = items.some(function (item) {
|
|
66
|
+
return item.icon ? true : false;
|
|
67
|
+
});
|
|
68
|
+
items.forEach(function (item, index) {
|
|
69
|
+
var _item$icon;
|
|
70
|
+
|
|
71
|
+
customItems.push( /*#__PURE__*/(0, _jsxRuntime.jsx)(_ButtonV.ButtonV2, {
|
|
72
|
+
className: "dropdownItem" + (useIconDefault ? item.icon ? "" : " iconDefault" : ""),
|
|
73
|
+
type: "whiteS3",
|
|
74
|
+
borderType: undefined,
|
|
75
|
+
size: 12,
|
|
76
|
+
label: (0, _utils.isStringEmpty)(item.label) ? undefined : item.label,
|
|
77
|
+
icon: useIconDefault ? (_item$icon = item.icon) !== null && _item$icon !== void 0 ? _item$icon : _freeSolidSvgIcons.faCircle : undefined,
|
|
78
|
+
onClick: function onClick(event) {
|
|
79
|
+
event.stopPropagation();
|
|
80
|
+
setTimeout(function () {
|
|
81
|
+
setShowDropdown(false);
|
|
82
|
+
item.onClick && item.onClick(event);
|
|
83
|
+
}, 275);
|
|
84
|
+
}
|
|
85
|
+
}, "item-" + index));
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
return customItems;
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_material.ClickAwayListener, {
|
|
93
|
+
onClickAway: function onClickAway(event) {
|
|
94
|
+
if (triggerType !== "hover") setShowDropdown(false);
|
|
95
|
+
},
|
|
96
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_styles.Container, {
|
|
97
|
+
className: !(0, _utils.isStringEmpty)(className) ? className : "",
|
|
98
|
+
maxWidthDropdown: maxWidthDropdown,
|
|
99
|
+
maxHeightDropdown: maxHeightDropdown,
|
|
100
|
+
onMouseEnter: function onMouseEnter(event) {
|
|
101
|
+
if (triggerType === "hover") {
|
|
102
|
+
setShowDropdown(true);
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
onMouseLeave: function onMouseLeave(event) {
|
|
106
|
+
if (triggerType === "hover") {
|
|
107
|
+
setShowDropdown(false);
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
onClick: function onClick(event) {
|
|
111
|
+
if (triggerType !== "hover") {
|
|
112
|
+
setShowDropdown(!showDropdown);
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_material.Tooltip, {
|
|
116
|
+
placement: (_positions$positionDr = positions[positionDropdown]) !== null && _positions$positionDr !== void 0 ? _positions$positionDr : positions.bottomStart,
|
|
117
|
+
open: showDropdown,
|
|
118
|
+
arrow: false,
|
|
119
|
+
componentsProps: {
|
|
120
|
+
tooltip: {
|
|
121
|
+
className: "dropdownMenu" + ((0, _utils.isStringEmpty)(classNameDropdown) ? "" : " " + classNameDropdown)
|
|
122
|
+
},
|
|
123
|
+
popper: {
|
|
124
|
+
disablePortal: true
|
|
125
|
+
},
|
|
126
|
+
transition: {
|
|
127
|
+
timeout: 300
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
TransitionComponent: _material.Fade,
|
|
131
|
+
enterDelay: 100,
|
|
132
|
+
followCursor: false,
|
|
133
|
+
disableFocusListener: true,
|
|
134
|
+
disableTouchListener: true,
|
|
135
|
+
disableHoverListener: true,
|
|
136
|
+
title: /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
|
|
137
|
+
children: renderItems()
|
|
138
|
+
}),
|
|
139
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
140
|
+
className: "containerIntern",
|
|
141
|
+
children: children
|
|
142
|
+
})
|
|
143
|
+
})
|
|
144
|
+
})
|
|
145
|
+
});
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
exports.Dropdown = Dropdown;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.Container = void 0;
|
|
9
|
+
|
|
10
|
+
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/taggedTemplateLiteral"));
|
|
11
|
+
|
|
12
|
+
var _variables = require("../../../global-files/variables");
|
|
13
|
+
|
|
14
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
15
|
+
|
|
16
|
+
var _templateObject;
|
|
17
|
+
|
|
18
|
+
var Container = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n width: fit-content;\n\n .containerIntern {\n width: inherit;\n border: inherit;\n border-radius: inherit;\n\n > * {\n width: inherit;\n border: inherit;\n border-radius: inherit;\n }\n }\n\n > .MuiTooltip-popper {\n background-color: transparent;\n\n .dropdownMenu {\n --background: white;\n box-shadow: 0px 0px 10px 1px gray;\n background-color: var(--background);\n padding: 0px 0px;\n border-radius: 7px;\n display: flex;\n flex-direction: column;\n gap: 0px;\n overflow: auto;\n max-width: ", ";\n max-height: ", ";\n\n .dropdownItem {\n width: 100%;\n border-radius: 0px;\n border: none;\n\n .button {\n justify-content: flex-start;\n border: inherit;\n text-align: left;\n font-family: ", ";\n padding: 10px;\n gap: 11px;\n\n .icon {\n font-size: calc(var(--size) + 1px);\n opacity: 0.75;\n }\n }\n\n &.iconDefault .button .icon {\n opacity: 0;\n }\n }\n }\n\n &[data-popper-placement*=\"bottom\"] .dropdownMenu {\n margin-top: 10px;\n }\n &[data-popper-placement*=\"top\"] .dropdownMenu {\n margin-bottom: 10px;\n }\n &[data-popper-placement*=\"left\"] .dropdownMenu {\n margin-right: 10px;\n }\n &[data-popper-placement*=\"right\"] .dropdownMenu {\n margin-left: 10px;\n }\n }\n"])), function (_ref) {
|
|
19
|
+
var maxWidthDropdown = _ref.maxWidthDropdown;
|
|
20
|
+
return maxWidthDropdown ? maxWidthDropdown : "400px";
|
|
21
|
+
}, function (_ref2) {
|
|
22
|
+
var maxHeightDropdown = _ref2.maxHeightDropdown;
|
|
23
|
+
return maxHeightDropdown ? maxHeightDropdown : "80vh";
|
|
24
|
+
}, _variables.FontFamily.RobotoRegular);
|
|
25
|
+
|
|
26
|
+
exports.Container = Container;
|
|
@@ -13,6 +13,8 @@ var _index2 = require("../../atoms/GeneralButton/index");
|
|
|
13
13
|
|
|
14
14
|
var _react = require("react");
|
|
15
15
|
|
|
16
|
+
var _Chat = require("../../organisms/Chat");
|
|
17
|
+
|
|
16
18
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
17
19
|
|
|
18
20
|
var HeaderTop = function HeaderTop(_ref) {
|
|
@@ -25,11 +27,14 @@ var HeaderTop = function HeaderTop(_ref) {
|
|
|
25
27
|
ref: headerTop,
|
|
26
28
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_index.ScreenHeader, {
|
|
27
29
|
text: "Edici\xF3n de producto"
|
|
28
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
31
|
+
className: "buttons-top",
|
|
32
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.Button, {
|
|
33
|
+
buttonType: "close-button",
|
|
34
|
+
onClick: function onClick() {
|
|
35
|
+
window.location.href = "/products";
|
|
36
|
+
}
|
|
37
|
+
})
|
|
33
38
|
})]
|
|
34
39
|
});
|
|
35
40
|
};
|
|
@@ -13,6 +13,6 @@ var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
|
13
13
|
|
|
14
14
|
var _templateObject;
|
|
15
15
|
|
|
16
|
-
var Container = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n display: flex;\n justify-content: space-between;\n"])));
|
|
16
|
+
var Container = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n display: flex;\n justify-content: space-between;\n .buttons-top {\n display: flex;\n align-items: center;\n }\n"])));
|
|
17
17
|
|
|
18
18
|
exports.Container = Container;
|
|
@@ -19,8 +19,6 @@ var _index = require("../../atoms/Status/index");
|
|
|
19
19
|
|
|
20
20
|
var _index2 = require("../../atoms/ProgressBar/index");
|
|
21
21
|
|
|
22
|
-
var _index3 = require("../../atoms/Loading/index");
|
|
23
|
-
|
|
24
22
|
var _moment = _interopRequireDefault(require("moment"));
|
|
25
23
|
|
|
26
24
|
require("moment/locale/es");
|
|
@@ -38,22 +36,17 @@ _moment.default.locale("es");
|
|
|
38
36
|
var OrderDetail = function OrderDetail(props) {
|
|
39
37
|
var order = props.order;
|
|
40
38
|
|
|
41
|
-
var _useState = (0, _react.useState)(
|
|
39
|
+
var _useState = (0, _react.useState)(order.payment !== "pagado"),
|
|
42
40
|
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
showPaymentButton = _useState2[0],
|
|
42
|
+
setShowPaymentButton = _useState2[1];
|
|
45
43
|
|
|
46
|
-
var _useState3 = (0, _react.useState)(
|
|
44
|
+
var _useState3 = (0, _react.useState)({}),
|
|
47
45
|
_useState4 = (0, _slicedToArray2.default)(_useState3, 2),
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
var _useState5 = (0, _react.useState)({}),
|
|
52
|
-
_useState6 = (0, _slicedToArray2.default)(_useState5, 2),
|
|
53
|
-
orderData = _useState6[0],
|
|
54
|
-
setOrderData = _useState6[1];
|
|
46
|
+
orderData = _useState4[0],
|
|
47
|
+
setOrderData = _useState4[1];
|
|
55
48
|
|
|
56
|
-
var
|
|
49
|
+
var _useState5 = (0, _react.useState)({
|
|
57
50
|
approved: "-",
|
|
58
51
|
rejected: "-",
|
|
59
52
|
in_progress: "-",
|
|
@@ -63,9 +56,9 @@ var OrderDetail = function OrderDetail(props) {
|
|
|
63
56
|
description: "-",
|
|
64
57
|
images: "-"
|
|
65
58
|
}),
|
|
66
|
-
|
|
67
|
-
dataGeneral =
|
|
68
|
-
setDataGeneral =
|
|
59
|
+
_useState6 = (0, _slicedToArray2.default)(_useState5, 2),
|
|
60
|
+
dataGeneral = _useState6[0],
|
|
61
|
+
setDataGeneral = _useState6[1];
|
|
69
62
|
|
|
70
63
|
var updBilling = function updBilling(articleId, newBillingStatus) {
|
|
71
64
|
props.updateBilling && props.updateBilling({
|
|
@@ -88,7 +81,6 @@ var OrderDetail = function OrderDetail(props) {
|
|
|
88
81
|
|
|
89
82
|
(0, _react.useEffect)(function () {
|
|
90
83
|
var ac = new AbortController();
|
|
91
|
-
setIsLoading(true);
|
|
92
84
|
props.getOrderDetail && props.getOrderDetail({
|
|
93
85
|
query: {
|
|
94
86
|
orderId: order.id_order
|
|
@@ -110,7 +102,6 @@ var OrderDetail = function OrderDetail(props) {
|
|
|
110
102
|
setDataGeneral((0, _objectSpread2.default)((0, _objectSpread2.default)({}, countArticles), {}, {
|
|
111
103
|
totalArticles: totalArticles
|
|
112
104
|
}));
|
|
113
|
-
setIsLoading(false);
|
|
114
105
|
});
|
|
115
106
|
return function () {
|
|
116
107
|
return ac.abort();
|
|
@@ -198,7 +189,7 @@ var OrderDetail = function OrderDetail(props) {
|
|
|
198
189
|
})]
|
|
199
190
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
200
191
|
className: "body",
|
|
201
|
-
children:
|
|
192
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Table.default, {
|
|
202
193
|
headers: [{
|
|
203
194
|
width: 140,
|
|
204
195
|
name: "UPC"
|
|
@@ -15,7 +15,7 @@ var _variables = require("../../../global-files/variables");
|
|
|
15
15
|
|
|
16
16
|
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6;
|
|
17
17
|
|
|
18
|
-
var MainContainer = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n position: fixed;\n top: 0;\n right: 0;\n width: 785px;\n height: 100vh;\n z-index: 5;\n background: #ffffff;\n box-sizing: border-box;\n font-family: ", ";\n & > * {\n padding: 0 30px;\n }\n
|
|
18
|
+
var MainContainer = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n position: fixed;\n top: 0;\n right: 0;\n width: 785px;\n height: 100vh;\n z-index: 5;\n background: #ffffff;\n box-sizing: border-box;\n font-family: ", ";\n & > * {\n padding: 0 30px;\n }\n .headerTitle {\n font-weight: bold;\n font-size: 25px;\n }\n\n display: grid;\n grid-template-columns: 1fr;\n grid-template-rows: 101px 120px 1fr 115px;\n grid-column-gap: 0px;\n grid-row-gap: 0px;\n\n .body {\n overflow-y: auto;\n }\n .footer {\n width: 100%;\n display: flex;\n align-items: center;\n height: 115px;\n border-top: 1px solid #e6e6e6;\n position: sticky;\n bottom: 0;\n padding: 20px;\n box-sizing: border-box;\n > h2 {\n margin-right: 20px;\n }\n > div {\n margin-right: 10px;\n }\n }\n"])), _variables.FontFamily.Roboto);
|
|
19
19
|
|
|
20
20
|
exports.MainContainer = MainContainer;
|
|
21
21
|
|
|
@@ -202,8 +202,8 @@ var S3_BUCKET = process.env.REACT_APP_IMAGES_BUCKET;
|
|
|
202
202
|
var REGION = "us-east-1";
|
|
203
203
|
|
|
204
204
|
_awsSdk.default.config.update({
|
|
205
|
-
accessKeyId: process.env.
|
|
206
|
-
secretAccessKey: process.env.
|
|
205
|
+
accessKeyId: process.env.REACT_APP_KEY_UPLOAD_TO_S3,
|
|
206
|
+
secretAccessKey: process.env.REACT_APP_ACCESS_KEY_UPLOAD_TO_S3
|
|
207
207
|
});
|
|
208
208
|
|
|
209
209
|
var myBucket = new _awsSdk.default.S3({
|
|
@@ -190,8 +190,8 @@ var S3_BUCKET = process.env.REACT_APP_IMAGES_BUCKET;
|
|
|
190
190
|
var REGION = "us-east-1";
|
|
191
191
|
|
|
192
192
|
_awsSdk.default.config.update({
|
|
193
|
-
accessKeyId: process.env.
|
|
194
|
-
secretAccessKey: process.env.
|
|
193
|
+
accessKeyId: process.env.REACT_APP_KEY_UPLOAD_TO_S3,
|
|
194
|
+
secretAccessKey: process.env.REACT_APP_ACCESS_KEY_UPLOAD_TO_S3
|
|
195
195
|
});
|
|
196
196
|
|
|
197
197
|
var myBucket = new _awsSdk.default.S3({
|
|
@@ -61,3 +61,15 @@
|
|
|
61
61
|
src: url("../assets/fonts/roboto/Roboto-Regular.ttf");
|
|
62
62
|
font-weight: 400;
|
|
63
63
|
}
|
|
64
|
+
|
|
65
|
+
@font-face {
|
|
66
|
+
font-family: "Roboto";
|
|
67
|
+
src: url("../assets/fonts/roboto/Roboto-Regular.ttf");
|
|
68
|
+
font-weight: 400;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.prueba {
|
|
72
|
+
color: #9e3e26;
|
|
73
|
+
color: #b42983;
|
|
74
|
+
color: #e7e7e7;
|
|
75
|
+
}
|