empower-container 0.1.4 → 0.1.7

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 (86) hide show
  1. package/README.md +240 -236
  2. package/dist/cjs/DatetimeFormatter.js +24 -21
  3. package/dist/cjs/Information.js +6 -7
  4. package/dist/cjs/MenuBar.d.ts +0 -1
  5. package/dist/cjs/MenuBar.js +21 -18
  6. package/dist/cjs/Modal.d.ts +1 -0
  7. package/dist/cjs/Modal.js +2 -2
  8. package/dist/cjs/assets/Asset.js +1 -1
  9. package/dist/cjs/inputs/Input.d.ts +0 -1
  10. package/dist/cjs/inputs/Input.js +0 -1
  11. package/dist/cjs/inputs/Select.d.ts +0 -1
  12. package/dist/cjs/inputs/Select.js +3 -3
  13. package/dist/esm/DatetimeFormatter.js +24 -21
  14. package/dist/esm/Information.js +4 -2
  15. package/dist/esm/MenuBar.d.ts +0 -1
  16. package/dist/esm/MenuBar.js +21 -18
  17. package/dist/esm/Modal.d.ts +1 -0
  18. package/dist/esm/Modal.js +2 -2
  19. package/dist/esm/assets/Asset.js +1 -1
  20. package/dist/esm/inputs/Input.d.ts +0 -1
  21. package/dist/esm/inputs/Input.js +0 -1
  22. package/dist/esm/inputs/InputSelectionHandler.d.ts +1 -1
  23. package/dist/esm/inputs/Select.d.ts +0 -1
  24. package/dist/esm/inputs/Select.js +3 -3
  25. package/dist/scss/components/_modal.scss +41 -30
  26. package/dist/scss/elements/_button.scss +1 -3
  27. package/dist/scss/elements/_popover.scss +6 -38
  28. package/dist/scss/foundation/_mixins.scss +0 -2
  29. package/dist/scss/foundation/_typography.scss +0 -4
  30. package/dist/scss/library/_information.scss +68 -0
  31. package/dist/scss/library/{input.scss → _input.scss} +0 -2
  32. package/dist/scss/library/{menubar.scss → _menubar.scss} +0 -2
  33. package/{src/scss/library/select.scss → dist/scss/library/_select.scss} +0 -4
  34. package/dist/scss/style.scss +21 -5
  35. package/package.json +6 -3
  36. package/src/main/DatetimeFormatter.js +24 -21
  37. package/src/main/DatetimeFormatter.tsx +7 -4
  38. package/src/main/Information.js +13 -14
  39. package/src/main/Information.tsx +41 -36
  40. package/src/main/MenuBar.d.ts +0 -1
  41. package/src/main/MenuBar.js +25 -20
  42. package/src/main/MenuBar.tsx +39 -35
  43. package/src/main/Modal.d.ts +1 -0
  44. package/src/main/Modal.js +5 -5
  45. package/src/main/Modal.tsx +7 -10
  46. package/src/main/assets/Asset.js +3 -3
  47. package/src/main/assets/Asset.tsx +3 -3
  48. package/src/main/inputs/Input.d.ts +0 -1
  49. package/src/main/inputs/Input.js +0 -1
  50. package/src/main/inputs/Input.tsx +0 -1
  51. package/src/main/inputs/Select.d.ts +0 -1
  52. package/src/main/inputs/Select.js +3 -3
  53. package/src/main/inputs/Select.tsx +3 -3
  54. package/src/main/tsconfig.common.json +1 -0
  55. package/src/main/tsconfig.json +2 -1
  56. package/src/sample/App.d.ts +0 -1
  57. package/src/sample/App.js +1 -1
  58. package/src/sample/App.tsx +2 -1
  59. package/src/sample/TestMenuBar.d.ts +0 -1
  60. package/src/sample/TestMenuBar.js +32 -7
  61. package/src/sample/TestMenuBar.tsx +47 -9
  62. package/src/scss/components/_modal.scss +41 -30
  63. package/src/scss/elements/_button.scss +1 -3
  64. package/src/scss/elements/_popover.scss +6 -38
  65. package/src/scss/foundation/_mixins.scss +0 -2
  66. package/src/scss/foundation/_typography.scss +0 -4
  67. package/src/scss/library/_information.scss +68 -0
  68. package/src/scss/library/{input.scss → _input.scss} +0 -2
  69. package/src/scss/library/{menubar.scss → _menubar.scss} +0 -2
  70. package/{dist/scss/library/select.scss → src/scss/library/_select.scss} +0 -4
  71. package/src/scss/style.scss +21 -5
  72. package/dist/assets/Asset.d.ts +0 -15
  73. package/dist/assets/Asset.js +0 -47
  74. package/dist/assets/Asset.tsx +0 -75
  75. package/dist/assets/icons/icon-check-white-sm.svg +0 -3
  76. package/dist/assets/images/icon-arrowdown-graydark.svg +0 -3
  77. package/dist/assets/images/icon-arrowleft-graydark.svg +0 -3
  78. package/dist/assets/images/icon-arrowright-graydark.svg +0 -3
  79. package/dist/assets/images/icon-arrowup-graydark.svg +0 -3
  80. package/dist/assets/images/icon-check-graydark.svg +0 -3
  81. package/dist/scss/components/_index.scss +0 -1
  82. package/dist/scss/foundation/_index.scss +0 -5
  83. package/dist/scss/library/_index.scss +0 -3
  84. package/src/scss/components/_index.scss +0 -1
  85. package/src/scss/foundation/_index.scss +0 -5
  86. package/src/scss/library/_index.scss +0 -3
@@ -1,12 +1,13 @@
1
1
  import React from 'react';
2
2
 
3
- import './App.css';
3
+ // import './App.css';
4
4
  import TestMenuBar from './TestMenuBar';
5
5
 
6
6
  function App() {
7
7
  return (
8
8
  <div className="App">
9
9
  <TestMenuBar />
10
+
10
11
  </div>
11
12
  );
12
13
  }
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  declare const TestMenuBar: () => JSX.Element;
3
2
  export default TestMenuBar;
@@ -87,10 +87,11 @@ var TestMenuBar = function () {
87
87
  }
88
88
  ]
89
89
  },
90
+ info: null
90
91
  },
91
92
  menubar: {
92
93
  config: {
93
- title: 'Test Title2',
94
+ title: 'Test Title',
94
95
  icon: Asset_1.SVG_REQUEST,
95
96
  showInfo: true,
96
97
  iconType: ['check', "back", 'standard']
@@ -227,29 +228,52 @@ var TestMenuBar = function () {
227
228
  menubar.dropdown.selection.endDate = data;
228
229
  break;
229
230
  case 'icon':
230
- menubar.info = '<p>In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content. Lorem ipsum may be used as a placeholder before the final copy is</p>';
231
+ // menubar.info = '<p>In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content. Lorem ipsum may be used as a placeholder before the final copy is</p>';
232
+ var infoMenuBar = {
233
+ infoDetails: {
234
+ "companyPolicy": "<p><strong>Certifying Daily Time Records (DTR) </strong></p>\n<p>All Employees are expected to certify all DTRs covering a pay period as true, correct, accurate and final that will serve as basis to compute their pay.</p>\n<p><strong>Failure</strong> to certify DTRs shall result to an Auto-Certification at the end of the pay cutoff. Uncertified DTRs will be deemed true, correct, accurate and final, except for Absences incurred on the day of the cutoff itself, either on the 10th or 26th of the month.</p>\n<p>For these absences, either of the following will apply:</p>\n<p>1. The employee is given until the 12th or the 27th to amend the DTR and seek approval;</p>\n<p>2. The Timekeeping &amp; Benefits department will verify the details of the absence incurred and amend the DTR appropriately.</p>\n<p>The Company has two (2) pay cutoff periods:</p>\n<p>1. Payroll for the 15th -- 26th of the previous month to the 10th of the current month 2. Payroll for the 30th -- 11th to the 25th of the current month.</p>\n<p><strong>Clock In</strong></p>\n<p>When an employee clocks into work, the Company&rsquo;s online system shall provide the applicable status:</p>\n<p><strong> ON TIME</strong> - Clock In before the start of shift and/ or before the grace period (if any) ends</p>\n<p>TARDY - Clock In within the first four (4) hours after the shift has started</p>\n<p>ABSENT (1ST HALF and TARDY) - Clock In beyond the first four (4) hours after the shift has started will be tagged as Tardy. The first four (4) hours after the shift has started will be tagged as Absent - 1st Half.</p>\n<p><strong> Tardiness</strong></p>\n<p>1. Failure to come ON TIME six (6) times or accumulation of at least 60 minutes of TARDINESS (whichever comes first) within the 11th of the current month to the 10th of the following month, shall constitute an offense of TARDINESS.</p>\n<p>Employees are expected to time in upon arriving at their respective office. However, due to unforeseen circumstances preventing the employee to timely Clock In within the Company&rsquo;s online system, employees are allowed to amend their Clock In time, subject to the approval of their respective Department Head / Immediate Superior. Amendments to Clock In within the Company&rsquo;s online system can be done on or before the payroll cutoff.</p>\n<p>2. Employee reporting to work after the official start of the assigned work shift and, if any, after the grace period. Applicable only to Time-bounded Work Shifts.</p>\n<p>Tardiness computed in payroll is equivalent to length of time computed as the difference between the clock in time and the grace period. If no Grace Period allowed, it will be the difference between the clock in time and the start of the shift.</p>\n<p>Example:</p>\n<p>Start Time - 6:00 AM</p>\n<p>Grace Period - 6:10 AM (10 minutes from the start of the shift)</p>\n<p>Clock In - 6:15 AM</p>\n<p>Tardiness = 5 minutes (time in excess of the end of the Grace Period)</p>\n<p>Computed Tardiness will be the basis of payroll deductions.</p>\n<p><strong>Clock Out</strong></p>\n<p>When an employee clocks out of work, the Company&rsquo;s online system shall provide the applicable status:</p>\n<p><strong> SHIFT ENDED</strong> - Clock out on or beyond the end of shift will be tagged as Shift Ended</p>\n<p><strong>UNDERTIME</strong> - Clock out before the expected end of shift will tag the talent as Undertime</p>\n<p><strong>ABSENT (2ND HALF and Undertime)</strong> - Clock out within the first four (4) hours after the shift has started will be tagged as Undertime. The last four (4) hours before the shift ends will be tagged as Absent - 2nd Half.</p>\n<p><strong> Undertime </strong></p>\n<p>An employee leaving work earlier than the required end of a Work Shift. Undertime computed in payroll is equivalent to length of time computed as the difference between the end of shift and the clock out time.</p>\n<p>Example:</p>\n<p>End Time - 3:00 PM</p>\n<p>Clock In - 2:55 PM</p>\n<p>Undertime = 5 minutes (time out short of the end of the Grace Period)</p>\n<p>Computed Undertime will be the basis of payroll deductions.</p>",
235
+ "systemPolicy": "<p><strong>Certify </strong></p>\n<p>1. Certification of DTR can only be done<strong> within the cutoff. </strong></p>\n<p>2. You cannot certify an <strong>incomplete DTR, current day</strong> and <strong>an ongoing shift. </strong></p>\n<p>3. Failure to certify DTRs shall result to an Auto-Certification at the end of the pay cutoff.</p>\n<p><strong>What you can do:</strong></p>\n<p>1. If with time logged (whether complete or incomplete), allows <strong>DTR amendment</strong> or <strong>Certify</strong>.</p>\n<p>2. If registered Absent, allows DTR amendment, File a Leave or Certify.</p>\n<p><strong>Amendment can be done in the following ways: </strong></p>\n<p>1. Time Recorder - Previous Shift</p>\n<p>2. Requests - File Request / DTR amendment</p>\n<p>3. Express Button - Amendment</p>\n<p><strong>Filing of leave can be done in the following ways:</strong></p>\n<p>1. Time Recorder - Previous Shift</p>\n<p>2. Requests - File Request / File Leave</p>\n<p>3. Express Button - File Leave</p>\n<p><strong>Amend DTR</strong></p>\n<p>1. You cannot amend an<strong> Ongoing / Current Shift.</strong> Filing of DTR amendment is allowed the next day after you have Clocked In.</p>\n<p>2. Amendments are disallowed by the end of the cutoff (10th or 25th).</p>\n<p>3. You are expected to amend your DTR within <strong>twenty-four (24) hours upon return to work</strong> in the succeeding Work Shift.</p>\n<p>4. You can only adjust your CLOCK IN DATE one (1) day prior your Chosen Work Date.</p>\n<p><strong>E.g</strong></p>\n<p>Work Date: November 08, 2019 - 12:00am to 09:00am</p>\n<p>Clock in Date: November 07, 2019 Clock In Time:11:00pm</p>\n<p>Clock out Date: November 08, 2019 Clock out Time:09:00am</p>\n<p>5. You can only adjust your CLOCK OUT DATE one (1) day after your Chosen Work Date.</p>\n<p><strong>E.g</strong></p>\n<p>Work Date: November 08, 2019 - 8:00am to 05:00pm</p>\n<p>Clock in Date: November 08, 2019 Clock In Time:08:00am</p>\n<p>Clock out Date: November 09, 2019 Clock out Time:02:00am</p>\n<p>6. DTR amendment request can be canceled / edited provided the request is still pending.</p>\n<p>7. DTR amendment requests that have already passed or requests that have already been denied cannot be canceled.</p>\n<p>8. DTRs that have been previously certified <strong>CANNOT</strong> be amended.</p>\n<p><strong> File Leave </strong></p>\n<p>1. Filing of Sick / Emergency Leave is allowed the next day after you have Clocked In.</p>\n<p>2. You cannot file a backdated Vacation Leave.</p>\n<p>3. You cannot file a future - dated Sick / Emergency Leave.</p>\n<p>4. The employee is expected to file a Sick or Emergency Leave within the Company online system within <strong>twenty-four (24) hours upon return to work</strong> in the succeeding Work Shift.</p>\n<p>5. Leave request can be edited provided the request is still pending.</p>\n<p>6. Approved leave request can be canceled before the effectivity date.</p>\n<p>7. Reporting to work on a day with a pre-approved SIL.</p>\n<p>- Will cancel the leave</p>\n<p>- Credit back the approved SIL to the Leave balance</p>\n<p>- Record the DTR for the day</p>",
236
+ "instruction": "<p><strong>What you can do:</strong></p>\n<p>1. If with time logged (whether complete or incomplete), allows DTR amendment or Certify.</p>\n<p>2. If without time logged, allows DTR Amemdment.</p>\n<p>3. If registered Absent, allows DTR amendment, File a Leave or Certify.</p>\n<p><strong>Amendment can be done in the following ways:</strong></p>\n<p>1. Time Recorder - Previous Shift</p>\n<p>2. Requests - File Request / DTR amendment</p>\n<p>3. Express Button - Amendment</p>\n<p><strong>Filing of leave can be done in the following ways:</strong></p>\n<p>1. Time Recorder - Previous Shift</p>\n<p>2. Requests - File Request / File Leave</p>\n<p>3. Express Button - File Leave</p>"
237
+ },
238
+ listRow: [
239
+ "COMPANY POLICY",
240
+ "SYSTEM POLICY",
241
+ "INSTRUCTION"
242
+ ],
243
+ "loaded": false,
244
+ "cardIconDesc": false
245
+ };
246
+ menubar.info = infoMenuBar;
231
247
  break;
232
248
  default: break;
233
249
  }
234
250
  statedata.menubar = menubar;
235
- setStateData(__assign(__assign({}, statedata), { statedata: statedata }));
251
+ statedata.modal = modal;
252
+ setStateData(__assign({}, statedata));
236
253
  };
237
254
  var displayModal = function (event) {
238
255
  event.preventDefault();
239
256
  modal.show = true;
240
257
  statedata.modal = modal;
241
- setStateData(__assign(__assign({}, statedata), { statedata: statedata }));
258
+ setStateData(__assign({}, statedata));
242
259
  };
243
260
  var getModalActions = function (action, data) {
244
261
  console.log(action, data, 'action modal');
245
262
  switch (action) {
246
263
  case 'icon':
247
- modal.show = false;
264
+ switch (data) {
265
+ case 'close':
266
+ modal.show = false;
267
+ break;
268
+ case 'info':
269
+ modal.info = 'Hello menubar info';
270
+ break;
271
+ }
248
272
  break;
249
273
  default: break;
250
274
  }
251
275
  statedata.modal = modal;
252
- setStateData(__assign(__assign({}, statedata), { statedata: statedata }));
276
+ setStateData(__assign({}, statedata));
253
277
  };
254
278
  var View = function () {
255
279
  return (react_1.default.createElement(react_1.default.Fragment, null,
@@ -278,7 +302,7 @@ var TestMenuBar = function () {
278
302
  value: "view-shift-schedule", // string optional
279
303
  },
280
304
  ]
281
- }, getActions: function (action, data) { return getActions(action, data); } },
305
+ }, info: menubar.info, getActions: function (action, data) { return getActions(action, data); } },
282
306
  react_1.default.createElement("h2", null, "CHILDREN AGAIN")),
283
307
  react_1.default.createElement("div", null,
284
308
  react_1.default.createElement("button", { className: "button", onClick: function (event) { return displayModal(event); } },
@@ -478,6 +502,7 @@ var TestMenuBar = function () {
478
502
  react_1.default.createElement("b", null, "Approved"),
479
503
  " - 17 Same Request(s)")))))))));
480
504
  };
505
+ console.log(menubar.info, 'menubar');
481
506
  return View();
482
507
  };
483
508
  exports.default = TestMenuBar;
@@ -3,9 +3,6 @@ import { MenuBar, Modal } from '../main';
3
3
  import { SVG_SUBMIT, SVG_UNDO, SVG_REQUEST, SVG_ADD } from '../main/assets/Asset';
4
4
 
5
5
 
6
-
7
-
8
-
9
6
  const TestMenuBar = () => {
10
7
 
11
8
 
@@ -65,10 +62,11 @@ const TestMenuBar = () => {
65
62
  }
66
63
  ]
67
64
  },
65
+ info: null
68
66
  },
69
67
  menubar: {
70
68
  config: {
71
- title: 'Test Title2',
69
+ title: 'Test Title',
72
70
  icon: SVG_REQUEST,
73
71
  showInfo: true,
74
72
  iconType: ['check', "back", 'standard']
@@ -172,6 +170,8 @@ const TestMenuBar = () => {
172
170
  info: null
173
171
  }
174
172
 
173
+
174
+
175
175
  })
176
176
 
177
177
 
@@ -211,21 +211,46 @@ const TestMenuBar = () => {
211
211
  break;
212
212
 
213
213
  case 'icon':
214
- menubar.info = '<p>In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content. Lorem ipsum may be used as a placeholder before the final copy is</p>';
214
+ switch (data) {
215
+ case 'info':
216
+ // menubar.info = '<p>In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content. Lorem ipsum may be used as a placeholder before the final copy is</p>';
217
+ const infoMenuBar = {
218
+ infoDetails: {
219
+ "companyPolicy": "<p><strong>Certifying Daily Time Records (DTR) </strong></p>\n<p>All Employees are expected to certify all DTRs covering a pay period as true, correct, accurate and final that will serve as basis to compute their pay.</p>\n<p><strong>Failure</strong> to certify DTRs shall result to an Auto-Certification at the end of the pay cutoff. Uncertified DTRs will be deemed true, correct, accurate and final, except for Absences incurred on the day of the cutoff itself, either on the 10th or 26th of the month.</p>\n<p>For these absences, either of the following will apply:</p>\n<p>1. The employee is given until the 12th or the 27th to amend the DTR and seek approval;</p>\n<p>2. The Timekeeping &amp; Benefits department will verify the details of the absence incurred and amend the DTR appropriately.</p>\n<p>The Company has two (2) pay cutoff periods:</p>\n<p>1. Payroll for the 15th -- 26th of the previous month to the 10th of the current month 2. Payroll for the 30th -- 11th to the 25th of the current month.</p>\n<p><strong>Clock In</strong></p>\n<p>When an employee clocks into work, the Company&rsquo;s online system shall provide the applicable status:</p>\n<p><strong> ON TIME</strong> - Clock In before the start of shift and/ or before the grace period (if any) ends</p>\n<p>TARDY - Clock In within the first four (4) hours after the shift has started</p>\n<p>ABSENT (1ST HALF and TARDY) - Clock In beyond the first four (4) hours after the shift has started will be tagged as Tardy. The first four (4) hours after the shift has started will be tagged as Absent - 1st Half.</p>\n<p><strong> Tardiness</strong></p>\n<p>1. Failure to come ON TIME six (6) times or accumulation of at least 60 minutes of TARDINESS (whichever comes first) within the 11th of the current month to the 10th of the following month, shall constitute an offense of TARDINESS.</p>\n<p>Employees are expected to time in upon arriving at their respective office. However, due to unforeseen circumstances preventing the employee to timely Clock In within the Company&rsquo;s online system, employees are allowed to amend their Clock In time, subject to the approval of their respective Department Head / Immediate Superior. Amendments to Clock In within the Company&rsquo;s online system can be done on or before the payroll cutoff.</p>\n<p>2. Employee reporting to work after the official start of the assigned work shift and, if any, after the grace period. Applicable only to Time-bounded Work Shifts.</p>\n<p>Tardiness computed in payroll is equivalent to length of time computed as the difference between the clock in time and the grace period. If no Grace Period allowed, it will be the difference between the clock in time and the start of the shift.</p>\n<p>Example:</p>\n<p>Start Time - 6:00 AM</p>\n<p>Grace Period - 6:10 AM (10 minutes from the start of the shift)</p>\n<p>Clock In - 6:15 AM</p>\n<p>Tardiness = 5 minutes (time in excess of the end of the Grace Period)</p>\n<p>Computed Tardiness will be the basis of payroll deductions.</p>\n<p><strong>Clock Out</strong></p>\n<p>When an employee clocks out of work, the Company&rsquo;s online system shall provide the applicable status:</p>\n<p><strong> SHIFT ENDED</strong> - Clock out on or beyond the end of shift will be tagged as Shift Ended</p>\n<p><strong>UNDERTIME</strong> - Clock out before the expected end of shift will tag the talent as Undertime</p>\n<p><strong>ABSENT (2ND HALF and Undertime)</strong> - Clock out within the first four (4) hours after the shift has started will be tagged as Undertime. The last four (4) hours before the shift ends will be tagged as Absent - 2nd Half.</p>\n<p><strong> Undertime </strong></p>\n<p>An employee leaving work earlier than the required end of a Work Shift. Undertime computed in payroll is equivalent to length of time computed as the difference between the end of shift and the clock out time.</p>\n<p>Example:</p>\n<p>End Time - 3:00 PM</p>\n<p>Clock In - 2:55 PM</p>\n<p>Undertime = 5 minutes (time out short of the end of the Grace Period)</p>\n<p>Computed Undertime will be the basis of payroll deductions.</p>",
220
+ "systemPolicy": "<p><strong>Certify </strong></p>\n<p>1. Certification of DTR can only be done<strong> within the cutoff. </strong></p>\n<p>2. You cannot certify an <strong>incomplete DTR, current day</strong> and <strong>an ongoing shift. </strong></p>\n<p>3. Failure to certify DTRs shall result to an Auto-Certification at the end of the pay cutoff.</p>\n<p><strong>What you can do:</strong></p>\n<p>1. If with time logged (whether complete or incomplete), allows <strong>DTR amendment</strong> or <strong>Certify</strong>.</p>\n<p>2. If registered Absent, allows DTR amendment, File a Leave or Certify.</p>\n<p><strong>Amendment can be done in the following ways: </strong></p>\n<p>1. Time Recorder - Previous Shift</p>\n<p>2. Requests - File Request / DTR amendment</p>\n<p>3. Express Button - Amendment</p>\n<p><strong>Filing of leave can be done in the following ways:</strong></p>\n<p>1. Time Recorder - Previous Shift</p>\n<p>2. Requests - File Request / File Leave</p>\n<p>3. Express Button - File Leave</p>\n<p><strong>Amend DTR</strong></p>\n<p>1. You cannot amend an<strong> Ongoing / Current Shift.</strong> Filing of DTR amendment is allowed the next day after you have Clocked In.</p>\n<p>2. Amendments are disallowed by the end of the cutoff (10th or 25th).</p>\n<p>3. You are expected to amend your DTR within <strong>twenty-four (24) hours upon return to work</strong> in the succeeding Work Shift.</p>\n<p>4. You can only adjust your CLOCK IN DATE one (1) day prior your Chosen Work Date.</p>\n<p><strong>E.g</strong></p>\n<p>Work Date: November 08, 2019 - 12:00am to 09:00am</p>\n<p>Clock in Date: November 07, 2019 Clock In Time:11:00pm</p>\n<p>Clock out Date: November 08, 2019 Clock out Time:09:00am</p>\n<p>5. You can only adjust your CLOCK OUT DATE one (1) day after your Chosen Work Date.</p>\n<p><strong>E.g</strong></p>\n<p>Work Date: November 08, 2019 - 8:00am to 05:00pm</p>\n<p>Clock in Date: November 08, 2019 Clock In Time:08:00am</p>\n<p>Clock out Date: November 09, 2019 Clock out Time:02:00am</p>\n<p>6. DTR amendment request can be canceled / edited provided the request is still pending.</p>\n<p>7. DTR amendment requests that have already passed or requests that have already been denied cannot be canceled.</p>\n<p>8. DTRs that have been previously certified <strong>CANNOT</strong> be amended.</p>\n<p><strong> File Leave </strong></p>\n<p>1. Filing of Sick / Emergency Leave is allowed the next day after you have Clocked In.</p>\n<p>2. You cannot file a backdated Vacation Leave.</p>\n<p>3. You cannot file a future - dated Sick / Emergency Leave.</p>\n<p>4. The employee is expected to file a Sick or Emergency Leave within the Company online system within <strong>twenty-four (24) hours upon return to work</strong> in the succeeding Work Shift.</p>\n<p>5. Leave request can be edited provided the request is still pending.</p>\n<p>6. Approved leave request can be canceled before the effectivity date.</p>\n<p>7. Reporting to work on a day with a pre-approved SIL.</p>\n<p>- Will cancel the leave</p>\n<p>- Credit back the approved SIL to the Leave balance</p>\n<p>- Record the DTR for the day</p>",
221
+ "instruction": "<p><strong>What you can do:</strong></p>\n<p>1. If with time logged (whether complete or incomplete), allows DTR amendment or Certify.</p>\n<p>2. If without time logged, allows DTR Amemdment.</p>\n<p>3. If registered Absent, allows DTR amendment, File a Leave or Certify.</p>\n<p><strong>Amendment can be done in the following ways:</strong></p>\n<p>1. Time Recorder - Previous Shift</p>\n<p>2. Requests - File Request / DTR amendment</p>\n<p>3. Express Button - Amendment</p>\n<p><strong>Filing of leave can be done in the following ways:</strong></p>\n<p>1. Time Recorder - Previous Shift</p>\n<p>2. Requests - File Request / File Leave</p>\n<p>3. Express Button - File Leave</p>"
222
+ },
223
+ listRow: [
224
+ "COMPANY POLICY",
225
+ "SYSTEM POLICY",
226
+ "INSTRUCTION"
227
+ ],
228
+ "loaded": false,
229
+ "cardIconDesc": false
230
+ }
231
+
232
+ menubar.info = infoMenuBar
233
+ break;
234
+ }
235
+
236
+
237
+
238
+
215
239
  break;
216
240
 
217
241
  default: break;
218
242
  }
219
243
  statedata.menubar = menubar;
244
+ statedata.modal = modal;
220
245
 
221
- setStateData({ ...statedata, statedata })
246
+ setStateData({ ...statedata });
222
247
  }
223
248
 
224
249
  const displayModal = (event) => {
225
250
  event.preventDefault();
226
251
  modal.show = true;
227
252
  statedata.modal = modal
228
- setStateData({ ...statedata, statedata })
253
+ setStateData({ ...statedata });
229
254
  }
230
255
 
231
256
  const getModalActions = (action, data) => {
@@ -233,13 +258,24 @@ const TestMenuBar = () => {
233
258
  console.log(action, data, 'action modal');
234
259
  switch (action) {
235
260
  case 'icon':
236
- modal.show = false;
261
+
262
+ switch (data) {
263
+ case 'close':
264
+ modal.show = false;
265
+ break;
266
+
267
+ case 'info':
268
+ modal.info = 'Hello menubar info';
269
+ break;
270
+ }
271
+
272
+
237
273
  break;
238
274
  default: break;
239
275
  }
240
276
 
241
277
  statedata.modal = modal
242
- setStateData({ ...statedata, statedata })
278
+ setStateData({ ...statedata });
243
279
  }
244
280
 
245
281
  const View = () => {
@@ -291,6 +327,7 @@ const TestMenuBar = () => {
291
327
  },
292
328
  ]
293
329
  }}
330
+ info={menubar.info}
294
331
  getActions={(action, data) => getActions(action, data)}
295
332
  >
296
333
  <h2>CHILDREN AGAIN</h2>
@@ -318,6 +355,7 @@ const TestMenuBar = () => {
318
355
  )
319
356
  }
320
357
 
358
+ console.log(menubar.info, 'menubar')
321
359
  return View();
322
360
  };
323
361
 
@@ -1,5 +1,5 @@
1
1
  /* Modal */
2
- .e-modal{
2
+ .em-modal{
3
3
  position: fixed;
4
4
  top: 0;
5
5
  left: 0;
@@ -9,47 +9,58 @@
9
9
  padding: 30px 15px;
10
10
  display: flex;
11
11
  justify-content: center;
12
- overflow: auto;
12
+ overflow: auto;
13
+
14
+ &:before{
15
+ content: '';
16
+ width: 100vw;
17
+ height: 100vh;
18
+ z-index: 9000;
19
+ position: fixed;
20
+ top: 0;
21
+ left: 0;
22
+ opacity: 0.9;
23
+ background: linear-gradient(to bottom, rgba(13,14,28,0.9), rgba(8,19,117,0.9));
24
+ }
13
25
  }
14
26
 
15
- .e-modal .e-modal-container{
27
+ .em-modal-container{
16
28
  position: relative;
17
29
  z-index: 9001;
18
30
  margin: auto;
19
31
  display: flex;
20
32
  height: initial;
21
- }
22
33
 
23
- .e-modal .e-modal-container > div{
24
- margin: auto;
34
+ > div{
35
+ margin: auto;
36
+ }
25
37
  }
26
38
 
27
- .e-modal:before{
28
- content: '';
29
- width: 100vw;
30
- height: 100vh;
31
- z-index: 9000;
32
- position: fixed;
33
- top: 0;
34
- left: 0;
35
- opacity: 0.9;
36
- background: linear-gradient(to bottom, rgba(13,14,28,0.9), rgba(8,19,117,0.9));
37
- }
39
+ .em-card {
40
+ background-color: $white;
41
+ padding: 5px;
42
+ box-shadow: $shadow-card;
43
+ border-radius: 10px;
38
44
 
39
- .e-modal .card.modal-sm{
40
- width: 100vw;
41
- max-width: 400px;
42
- margin: 0 auto;
43
- }
45
+ &.modal-sm{
46
+ width: 100vw;
47
+ max-width: 400px;
48
+ margin: 0 auto;
49
+ }
44
50
 
45
- .e-modal .card.modal-md{
46
- width: 100vw;
47
- max-width: 600px;
48
- margin: 0 auto;
51
+ &.modal-md{
52
+ width: 100vw;
53
+ max-width: 600px;
54
+ margin: 0 auto;
55
+ }
56
+
57
+ &.modal-lg{
58
+ width: 100vw;
59
+ max-width: 960px;
60
+ margin: 0 auto;
61
+ }
49
62
  }
50
63
 
51
- .e-modal .card.modal-lg{
52
- width: 100vw;
53
- max-width: 960px;
54
- margin: 0 auto;
64
+ .em-card-content {
65
+ padding: 15px;
55
66
  }
@@ -1,5 +1,3 @@
1
- @use '../foundation' as *;
2
-
3
1
  .button{
4
2
  display: inline-flex;
5
3
  align-items: center;
@@ -105,5 +103,5 @@
105
103
  color: $gray;
106
104
  }
107
105
  }
108
- }
106
+ }
109
107
  }
@@ -1,40 +1,8 @@
1
- @use '../foundation' as *;
2
-
3
- .MuiPopover-root .MuiPopover-paper {
4
- box-shadow: none;
5
- overflow: visible;
6
-
7
- }
8
-
9
-
10
- .popover.em-popover-input .button-check {
11
- border-radius: 10px;
12
- height: 40px;
13
- width: 40px;
14
- }
15
-
16
- .popover.em-popover-input .button-check svg path{
17
- fill: #393F5A;
18
- }
19
-
20
- .popover.em-popover-input .button-check:hover {
21
- background-color: $blue-light1;
22
- }
23
-
24
- .card{
1
+ .em-popover {
25
2
  background-color: $white;
26
- padding: 5px;
27
- box-shadow: 0 30px 60px rgb(0 0 0 / 20%);
28
- border-radius: 10px;
29
- }
30
-
31
- .card .card-belt{
32
- padding: 10px 15px;
33
- min-height: 40px;
34
- box-shadow: none;
35
- background-color: transparent;
36
- }
37
-
38
- .card .card-content{
39
- padding: 15px;
3
+ border-top: 5px solid $blue-light4;
4
+ border-bottom-left-radius: $border-radius-md;
5
+ border-bottom-right-radius: $border-radius-md;
6
+ box-shadow: $shadow-popover;
7
+ max-width: 650px;
40
8
  }
@@ -1,5 +1,3 @@
1
- @use 'settings' as *;
2
-
3
1
  // Breakpoint: Smaller devices
4
2
  @mixin xs {
5
3
  @media (min-width: #{$screen-xs-min}) {
@@ -1,7 +1,3 @@
1
- @use 'colors' as *;
2
- @use 'mixins' as *;
3
- @use 'settings' as *;
4
-
5
1
  body {
6
2
  font-family: 'Roboto', sans-serif;
7
3
  }
@@ -0,0 +1,68 @@
1
+ .em-belt-info {
2
+ position: relative;
3
+
4
+ .em-info-icon {
5
+ display: flex;
6
+ justify-content: center;
7
+ align-items: center;
8
+ height: 40px;
9
+ width: 40px;
10
+ border-radius: $border-radius-md;
11
+
12
+ &:hover {
13
+ background-color: $blue-light;
14
+
15
+ svg {
16
+ path {
17
+ stroke: #5C7FF3;
18
+ }
19
+
20
+ circle {
21
+ fill: #5C7FF3;
22
+ }
23
+ }
24
+ }
25
+ }
26
+ }
27
+
28
+ .em-popover-i {
29
+ background-color: $white;
30
+ width: 650px;
31
+ border-bottom-left-radius: $border-radius-md;
32
+ border-bottom-right-radius: $border-radius-md;
33
+
34
+ .em-popover-i-content {
35
+ > div {
36
+ max-height: calc(75vh - 120px);
37
+ overflow-y: auto;
38
+ border-bottom: 1px solid $gray-light1;
39
+ padding: 15px;
40
+
41
+ &:last-of-type {
42
+ border: none;
43
+ border-bottom-left-radius: $border-radius-md;
44
+ border-bottom-right-radius: $border-radius-md;
45
+ }
46
+ }
47
+
48
+ .em-popover-i-title {
49
+ display: flex;
50
+ justify-content: space-between;
51
+ align-items: center;
52
+ }
53
+
54
+ .em-popover-i-category {
55
+ display: flex;
56
+ justify-content: space-between;
57
+
58
+ &:hover {
59
+ cursor: pointer;
60
+ background-color: $gray-light;
61
+ }
62
+ }
63
+
64
+ .em-popover-i-close {
65
+ cursor: pointer;
66
+ }
67
+ }
68
+ }
@@ -1,5 +1,3 @@
1
- @use '../foundation' as *;
2
-
3
1
  .em-input {
4
2
  position: relative;
5
3
  width: 100%;
@@ -1,5 +1,3 @@
1
- @use '../foundation' as *;
2
-
3
1
  .em-card-belt {
4
2
  display: flex;
5
3
  justify-content: space-between;
@@ -1,5 +1,3 @@
1
- @use '../foundation' as *;
2
-
3
1
  .em-select {
4
2
  position: relative;
5
3
  width: 100%;
@@ -66,8 +64,6 @@
66
64
  background-color: $white;
67
65
  font-size: 0.875rem;
68
66
  color: $gray-dark;
69
- border-bottom-left-radius: 5px;
70
- border-bottom-right-radius: 5px;
71
67
  border-top: 5px solid $blue;
72
68
  box-shadow: 0 15px 30px 0 rgb(19 37 154 / 15%);
73
69
  z-index: 100;
@@ -1,8 +1,24 @@
1
+ @import url("https://fonts.googleapis.com/css?family=Quicksand:400,700|Roboto:400,400i,700&display=swap");
1
2
 
2
- @use 'components';
3
- @use 'foundation';
4
- @use 'elements';
5
- @use 'library';
3
+ @import 'foundation/colors';
4
+ @import 'foundation/settings';
5
+ @import 'foundation/mixins';
6
+ @import 'foundation/typography';
7
+ @import 'foundation/normalize';
8
+ @import 'components/modal';
9
+ @import 'elements/button';
10
+ @import 'elements/popover';
11
+ @import 'library/input';
12
+ @import 'library/menubar';
13
+ @import 'library/select';
14
+ @import 'library/information';
6
15
 
7
- @import url("https://fonts.googleapis.com/css?family=Quicksand:400,700|Roboto:400,400i,700&display=swap");
16
+ body {
17
+ font-family: 'Roboto', sans-serif;
18
+ }
8
19
 
20
+ * {
21
+ box-sizing: border-box;
22
+ margin: 0;
23
+ padding: 0;
24
+ }
@@ -1,15 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const SVG_BACK: JSX.Element;
3
- export declare const SVG_CHECK: JSX.Element;
4
- export declare const SVG_CHECK_ACTIVE: JSX.Element;
5
- export declare const SVG_CHECK_INACTIVE: JSX.Element;
6
- export declare const SVG_CHECK_NEUTRAL: JSX.Element;
7
- export declare const SVG_CLOSE_GRAY: JSX.Element;
8
- export declare const SVG_SUBMIT: JSX.Element;
9
- export declare const SVG_UNDO: JSX.Element;
10
- export declare const SVG_ARROWRIGHT: JSX.Element;
11
- export declare const SVG_ARROWLEFT: JSX.Element;
12
- export declare const SVG_ARROWDOWN: JSX.Element;
13
- export declare const SVG_REQUEST: JSX.Element;
14
- export declare const SVG_ADD: JSX.Element;
15
- export declare const SVG_INFORMATION: JSX.Element;
@@ -1,47 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.SVG_INFORMATION = exports.SVG_ADD = exports.SVG_REQUEST = exports.SVG_ARROWDOWN = exports.SVG_ARROWLEFT = exports.SVG_ARROWRIGHT = exports.SVG_UNDO = exports.SVG_SUBMIT = exports.SVG_CLOSE_GRAY = exports.SVG_CHECK_NEUTRAL = exports.SVG_CHECK_INACTIVE = exports.SVG_CHECK_ACTIVE = exports.SVG_CHECK = exports.SVG_BACK = void 0;
7
- var react_1 = __importDefault(require("react"));
8
- exports.SVG_BACK = react_1.default.createElement("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
9
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.69612 4.29289C8.08664 4.68342 8.08664 5.31658 7.69612 5.70711L3.40323 10L7.69612 14.2929C8.08664 14.6834 8.08664 15.3166 7.69612 15.7071C7.3056 16.0976 6.67243 16.0976 6.28191 15.7071L1.28191 10.7071C0.891382 10.3166 0.891382 9.68342 1.28191 9.29289L6.28191 4.29289C6.67243 3.90237 7.3056 3.90237 7.69612 4.29289Z", fill: "#393F5A" }),
10
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0.989014 10C0.989014 9.44772 1.43673 9 1.98901 9H17.989C18.5413 9 18.989 9.44772 18.989 10C18.989 10.5523 18.5413 11 17.989 11H1.98901C1.43673 11 0.989014 10.5523 0.989014 10Z", fill: "#5C7FF3" }));
11
- exports.SVG_CHECK = react_1.default.createElement("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
12
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.6823 4.26895C18.0861 4.64578 18.1079 5.27857 17.7311 5.68232L8.39773 15.6823C8.2086 15.885 7.94385 16 7.66667 16C7.38949 16 7.12474 15.885 6.93562 15.6823L2.26895 10.6823C1.89211 10.2786 1.91393 9.64578 2.31769 9.26895C2.72144 8.89211 3.35423 8.91393 3.73106 9.31769L7.66667 13.5344L16.2689 4.31769C16.6458 3.91393 17.2786 3.89211 17.6823 4.26895Z", fill: "#393F5A" }));
13
- exports.SVG_CHECK_ACTIVE = react_1.default.createElement("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
14
- react_1.default.createElement("rect", { className: "check-box", width: "20", height: "20", rx: "5", fill: "#5C7FF3" }),
15
- react_1.default.createElement("path", { className: "check", fillRule: "evenodd", clipRule: "evenodd", d: "M16.6631 5.26895C17.0913 5.64578 17.1144 6.27857 16.7148 6.68232L8.79556 14.6823C8.59498 14.885 8.31418 15 8.0202 15C7.72622 15 7.44543 14.885 7.24484 14.6823L3.28525 10.6823C2.88558 10.2786 2.90872 9.64578 3.33694 9.26895C3.76516 8.89211 4.4363 8.91393 4.83597 9.31768L8.0202 12.5344L15.164 5.31769C15.5637 4.91393 16.2348 4.89211 16.6631 5.26895Z", fill: "white" }));
16
- exports.SVG_CHECK_INACTIVE = react_1.default.createElement("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
17
- react_1.default.createElement("path", { className: "check-box-inactive", fillRule: "evenodd", clipRule: "evenodd", d: "M15 2H5C3.34315 2 2 3.34315 2 5V15C2 16.6569 3.34315 18 5 18H15C16.6569 18 18 16.6569 18 15V5C18 3.34315 16.6569 2 15 2ZM5 0C2.23858 0 0 2.23858 0 5V15C0 17.7614 2.23858 20 5 20H15C17.7614 20 20 17.7614 20 15V5C20 2.23858 17.7614 0 15 0H5Z", fill: "#AFC7FD" }));
18
- exports.SVG_CHECK_NEUTRAL = react_1.default.createElement("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
19
- react_1.default.createElement("path", { className: "check-box", fillRule: "evenodd", clipRule: "evenodd", d: "M15 2H5C3.34315 2 2 3.34315 2 5V15C2 16.6569 3.34315 18 5 18H15C16.6569 18 18 16.6569 18 15V5C18 3.34315 16.6569 2 15 2ZM5 0C2.23858 0 0 2.23858 0 5V15C0 17.7614 2.23858 20 5 20H15C17.7614 20 20 17.7614 20 15V5C20 2.23858 17.7614 0 15 0H5Z", fill: "#AFC7FD" }),
20
- react_1.default.createElement("path", { className: "check-box", d: "M4 6C4 4.89543 4.89543 4 6 4H14C15.1046 4 16 4.89543 16 6V14C16 15.1046 15.1046 16 14 16H6C4.89543 16 4 15.1046 4 14V6Z", fill: "#AFC7FD" }));
21
- exports.SVG_CLOSE_GRAY = react_1.default.createElement("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
22
- react_1.default.createElement("path", { d: "M4.70711 3.29289C4.31658 2.90237 3.68342 2.90237 3.29289 3.29289C2.90237 3.68342 2.90237 4.31658 3.29289 4.70711L4.70711 3.29289ZM15.2929 16.7071C15.6834 17.0976 16.3166 17.0976 16.7071 16.7071C17.0976 16.3166 17.0976 15.6834 16.7071 15.2929L15.2929 16.7071ZM3.29289 4.70711L15.2929 16.7071L16.7071 15.2929L4.70711 3.29289L3.29289 4.70711Z", fill: "#9FA5B7" }),
23
- react_1.default.createElement("path", { d: "M4.70711 16.7071C4.31658 17.0976 3.68342 17.0976 3.29289 16.7071C2.90237 16.3166 2.90237 15.6834 3.29289 15.2929L4.70711 16.7071ZM15.2929 3.29289C15.6834 2.90237 16.3166 2.90237 16.7071 3.29289C17.0976 3.68342 17.0976 4.31658 16.7071 4.70711L15.2929 3.29289ZM3.29289 15.2929L15.2929 3.29289L16.7071 4.70711L4.70711 16.7071L3.29289 15.2929Z", fill: "#9FA5B7" }));
24
- exports.SVG_SUBMIT = react_1.default.createElement("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
25
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.91396 10L2.88989 16.0933L16.4333 10L2.88989 3.90673L4.91396 10ZM2.61324 10L0.0483426 17.7214C-0.228127 18.5537 0.733799 19.2809 1.59727 18.8925L19.3907 10.8871C20.2031 10.5216 20.2031 9.47843 19.3907 9.11295L1.59726 1.10753C0.733796 0.719051 -0.228127 1.44632 0.048342 2.2786L2.61324 10Z", fill: "#393F5A" }),
26
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 10C3 9.44772 3.44772 9 4 9L17 9C17.5523 9 18 9.44772 18 10C18 10.5523 17.5523 11 17 11L4 11C3.44772 11 3 10.5523 3 10Z", fill: "#393F5A" }));
27
- exports.SVG_UNDO = react_1.default.createElement("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
28
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.69612 1.29289C8.08664 1.68342 8.08664 2.31658 7.69612 2.70711L3.40323 7L7.69612 11.2929C8.08664 11.6834 8.08664 12.3166 7.69612 12.7071C7.3056 13.0976 6.67243 13.0976 6.28191 12.7071L1.28191 7.70711C0.891382 7.31658 0.891382 6.68342 1.28191 6.29289L6.28191 1.29289C6.67243 0.902369 7.3056 0.902369 7.69612 1.29289Z", fill: "#393F5A" }),
29
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 7C2 6.44772 2.44772 6 3 6H13C16.3137 6 19 8.68629 19 12C19 15.3137 16.3137 18 13 18H2C1.44772 18 1 17.5523 1 17C1 16.4477 1.44772 16 2 16H13C15.2091 16 17 14.2091 17 12C17 9.79086 15.2091 8 13 8H3C2.44772 8 2 7.55228 2 7Z", fill: "#393F5A" }));
30
- exports.SVG_ARROWRIGHT = react_1.default.createElement("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
31
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.79289 16.2071C7.40237 15.8166 7.40237 15.1834 7.79289 14.7929L12.0858 10.5L7.79289 6.20711C7.40237 5.81658 7.40237 5.18342 7.79289 4.79289C8.18342 4.40237 8.81658 4.40237 9.20711 4.79289L14.2071 9.79289C14.5976 10.1834 14.5976 10.8166 14.2071 11.2071L9.20711 16.2071C8.81658 16.5976 8.18342 16.5976 7.79289 16.2071Z", fill: "#9FA5B7" }));
32
- exports.SVG_ARROWLEFT = react_1.default.createElement("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
33
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.2071 4.79289C13.5976 5.18342 13.5976 5.81658 13.2071 6.20711L8.91421 10.5L13.2071 14.7929C13.5976 15.1834 13.5976 15.8166 13.2071 16.2071C12.8166 16.5976 12.1834 16.5976 11.7929 16.2071L6.79289 11.2071C6.40237 10.8166 6.40237 10.1834 6.79289 9.79289L11.7929 4.79289C12.1834 4.40237 12.8166 4.40237 13.2071 4.79289Z", fill: "#9FA5B7" }));
34
- exports.SVG_ARROWDOWN = react_1.default.createElement("svg", { width: "12", height: "7", viewBox: "0 0 12 7", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
35
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0.292893 0.292893C0.683417 -0.0976311 1.31658 -0.0976311 1.70711 0.292893L6 4.58579L10.2929 0.292893C10.6834 -0.0976311 11.3166 -0.0976311 11.7071 0.292893C12.0976 0.683417 12.0976 1.31658 11.7071 1.70711L6.70711 6.70711C6.31658 7.09763 5.68342 7.09763 5.29289 6.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683417 0.292893 0.292893Z", fill: "#9FA5B7" }));
36
- exports.SVG_REQUEST = react_1.default.createElement("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
37
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6 2L6 4L14 4L14 2L6 2ZM4 4C4 5.10457 4.89543 6 6 6L14 6C15.1046 6 16 5.10457 16 4L16 2C16 0.895431 15.1046 -8.55899e-09 14 3.97233e-08L6 3.89414e-07C4.89543 4.37697e-07 4 0.895431 4 2L4 4Z", fill: "#393F5A" }),
38
- react_1.default.createElement("path", { d: "M16 10C16 10.5523 15.5523 11 15 11L5 11C4.44771 11 4 10.5523 4 10C4 9.44772 4.44772 9 5 9L15 9C15.5523 9 16 9.44771 16 10Z", fill: "#393F5A" }),
39
- react_1.default.createElement("path", { d: "M12 14C12 14.5523 11.5523 15 11 15L5 15C4.44772 15 4 14.5523 4 14C4 13.4477 4.44772 13 5 13L11 13C11.5523 13 12 13.4477 12 14Z", fill: "#393F5A" }),
40
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14 4H18V18H2V4H6L6 2H2C0.895431 2 0 2.89543 0 4V18C0 19.1046 0.895431 20 2 20H18C19.1046 20 20 19.1046 20 18V4C20 2.89543 19.1046 2 18 2H14V4Z", fill: "#393F5A" }));
41
- exports.SVG_ADD = react_1.default.createElement("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
42
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10 2C10.5523 2 11 2.44772 11 3V17C11 17.5523 10.5523 18 10 18C9.44772 18 9 17.5523 9 17V3C9 2.44772 9.44772 2 10 2Z", fill: "#393F5A" }),
43
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 10C2 9.44772 2.44772 9 3 9L17 9C17.5523 9 18 9.44772 18 10C18 10.5523 17.5523 11 17 11L3 11C2.44772 11 2 10.5523 2 10Z", fill: "#393F5A" }));
44
- exports.SVG_INFORMATION = react_1.default.createElement("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
45
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 10C2 14.4183 5.58172 18 10 18C14.4183 18 18 14.4183 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10ZM10 0C4.47715 0 0 4.47715 0 10C0 15.5228 4.47715 20 10 20C15.5228 20 20 15.5228 20 10C20 4.47715 15.5228 0 10 0Z", fill: "#393F5A" }),
46
- react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10 8C10.5523 8 11 8.44772 11 9V14C11 14.5523 10.5523 15 10 15C9.44772 15 9 14.5523 9 14V9C9 8.44772 9.44772 8 10 8Z", fill: "#393F5A" }),
47
- react_1.default.createElement("path", { d: "M11 6C11 6.55228 10.5523 7 10 7C9.44772 7 9 6.55228 9 6C9 5.44772 9.44772 5 10 5C10.5523 5 11 5.44772 11 6Z", fill: "#393F5A" }));