@banch0u/core-project-test-repository 1.8.3 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/dist/assets/css/antd.css +836 -0
  2. package/dist/assets/css/variables.css +6 -0
  3. package/dist/assets/icons/index.js +424 -1
  4. package/dist/components/Button/index.module.scss +14 -2
  5. package/dist/components/Delete/Delete.js +22 -0
  6. package/dist/components/Delete/Delete.module.scss +22 -0
  7. package/dist/components/DeleteModal/DeleteModal.js +31 -0
  8. package/dist/components/DeleteModal/DeleteModal.module.scss +11 -0
  9. package/dist/components/Filter/index.js +1 -1
  10. package/dist/components/Input/index.js +1 -2
  11. package/dist/components/Input/index.module.scss +21 -12
  12. package/dist/components/ProfileOptions/index.js +109 -66
  13. package/dist/components/ProfileOptions/index.module.scss +144 -12
  14. package/dist/components/Success/Success.js +19 -0
  15. package/dist/components/Success/Success.module.scss +26 -0
  16. package/dist/components/Table/index.js +4 -2
  17. package/dist/components/ViewModal/index.js +30 -0
  18. package/dist/helpers/paginationLength.js +3 -0
  19. package/dist/helpers/querySearch.js +22 -0
  20. package/dist/index.js +6 -0
  21. package/dist/layout/Header/AppSelect/index.js +107 -0
  22. package/dist/layout/Header/AppSelect/index.module.scss +68 -0
  23. package/dist/layout/Header/index.js +6 -84
  24. package/dist/layout/Header/index.module.scss +8 -12
  25. package/dist/layout/Portal/index.js +23 -0
  26. package/dist/layout/QuestionnairesLayout/index.js +17 -0
  27. package/dist/layout/QuestionnairesLayout/index.module.scss +0 -0
  28. package/dist/layout/QuestionnairesSidebar/index.js +126 -0
  29. package/dist/layout/QuestionnairesSidebar/index.module.scss +76 -0
  30. package/dist/layout/Sidebar/index.js +147 -0
  31. package/dist/layout/Sidebar/index.module.scss +50 -0
  32. package/dist/pages/Platform/constant.js +29 -2
  33. package/dist/pages/Platform/index.js +19 -30
  34. package/dist/pages/Platform/index.module.scss +20 -5
  35. package/dist/pages/Questionnnaires/Questionnaires.module.scss +194 -0
  36. package/dist/pages/Questionnnaires/QuestionnairesApplicationFormContent/constant.js +58 -0
  37. package/dist/pages/Questionnnaires/QuestionnairesApplicationFormContent/index.js +255 -0
  38. package/dist/pages/Questionnnaires/QuestionnairesCountriesContent/constant.js +58 -0
  39. package/dist/pages/Questionnnaires/QuestionnairesCountriesContent/index.js +247 -0
  40. package/dist/pages/Questionnnaires/QuestionnairesDeliveryMethodContent/constant.js +58 -0
  41. package/dist/pages/Questionnnaires/QuestionnairesDeliveryMethodContent/index.js +247 -0
  42. package/dist/pages/Questionnnaires/QuestionnairesDocumentRecieveMethodsContent/constant.js +58 -0
  43. package/dist/pages/Questionnnaires/QuestionnairesDocumentRecieveMethodsContent/index.js +258 -0
  44. package/dist/pages/Questionnnaires/QuestionnairesDocumentTypeContent/constant.js +58 -0
  45. package/dist/pages/Questionnnaires/QuestionnairesDocumentTypeContent/index.js +284 -0
  46. package/dist/pages/Questionnnaires/QuestionnairesDocumentWhomContent/constant.js +82 -0
  47. package/dist/pages/Questionnnaires/QuestionnairesDocumentWhomContent/index.js +331 -0
  48. package/dist/pages/Questionnnaires/QuestionnairesExecutionRulesContent/constant.js +58 -0
  49. package/dist/pages/Questionnnaires/QuestionnairesExecutionRulesContent/index.js +258 -0
  50. package/dist/pages/Questionnnaires/QuestionnairesMarginNoteTextsContent/constant.js +58 -0
  51. package/dist/pages/Questionnnaires/QuestionnairesMarginNoteTextsContent/index.js +249 -0
  52. package/dist/pages/Questionnnaires/QuestionnairesOrganizationsContent/constant.js +88 -0
  53. package/dist/pages/Questionnnaires/QuestionnairesOrganizationsContent/index.js +320 -0
  54. package/dist/pages/Questionnnaires/QuestionnairesStreetsContent/constant.js +58 -0
  55. package/dist/pages/Questionnnaires/QuestionnairesStreetsContent/index.js +240 -0
  56. package/dist/pages/Questionnnaires/QuestionnairesStructuresContent/constant.js +58 -0
  57. package/dist/pages/Questionnnaires/QuestionnairesStructuresContent/index.js +247 -0
  58. package/dist/pages/Questionnnaires/QuestionnairesSubtopicContent/constant.js +58 -0
  59. package/dist/pages/Questionnnaires/QuestionnairesSubtopicContent/index.js +317 -0
  60. package/dist/pages/Questionnnaires/QuestionnairesTopicContent/constant.js +58 -0
  61. package/dist/pages/Questionnnaires/QuestionnairesTopicContent/index.js +271 -0
  62. package/dist/pages/Questionnnaires/index.js +5 -0
  63. package/dist/routes/QuestionnaireRoutes.js +108 -0
  64. package/dist/store/slices/global/index.js +96 -3
  65. package/dist/store/slices/questionnaire/index.js +2500 -0
  66. package/dist/store/slices/questionnaire/service.js +1557 -0
  67. package/dist/store/store.js +2 -1
  68. package/dist/utils/path.js +30 -1
  69. package/package.json +2 -2
@@ -6,4 +6,10 @@
6
6
  --defaultFont: Inter;
7
7
  --secondaryFont: Lato;
8
8
  --transition: 250ms;
9
+
10
+ --lightBlue: #DEEAF6;
11
+ --blue: #035FB5;
12
+ --grey: #828282;
13
+ --black: #0C0C0C;
14
+ --white: #FFFFFF;
9
15
  }
@@ -69,7 +69,7 @@ export var DsgLogo = function DsgLogo(_ref) {
69
69
  fillRule: "evenodd",
70
70
  clipRule: "evenodd",
71
71
  d: "M3.20805 0.7854C1.43629 0.7854 0 2.21468 0 3.97777V69.0224C0 70.7855 1.4363 72.2147 3.20806 72.2147H93.0336C94.8053 72.2147 96.2416 70.7855 96.2416 69.0224V3.97777C96.2416 2.21467 94.8053 0.7854 93.0336 0.7854H3.20805ZM50.2241 13.4961L50.2315 13.5048L36.7042 48.5371L26.5667 36.5933L46.0124 13.496H32.3524L12.8275 36.5L32.3524 59.5039L46.1187 59.504L59.6128 24.5578L69.6808 36.4196L50.2241 59.5039L63.8841 59.504L83.409 36.5001L76.4884 28.3427L76.4869 28.3445L63.8841 13.4961H50.2241Z",
72
- fill: "#154766"
72
+ fill: "#035FB5"
73
73
  }), /*#__PURE__*/React.createElement("path", {
74
74
  d: "M230.044 65.6976C230.044 70.0422 227.872 72.2146 223.527 72.2146H201.105C196.882 72.2146 194.77 70.0422 194.77 65.6976V7.4547C194.77 3.07965 196.928 0.89212 201.242 0.89212H223.527C227.872 0.89212 230.044 3.07965 230.044 7.4547V22.6762H219.335V10.0524H205.435V63.0543H219.335V43.0931H211.405V34.024H230.044V65.6976Z",
75
75
  fill: dark ? "#fff" : "#10101C"
@@ -81,6 +81,20 @@ export var DsgLogo = function DsgLogo(_ref) {
81
81
  fill: dark ? "#fff" : "#10101C"
82
82
  }));
83
83
  };
84
+ export var DsgLogoEmblem = function DsgLogoEmblem() {
85
+ return /*#__PURE__*/React.createElement("svg", {
86
+ width: "97",
87
+ height: "71.43",
88
+ viewBox: "0 0 97 71.43",
89
+ fill: "none",
90
+ xmlns: "http://www.w3.org/2000/svg"
91
+ }, /*#__PURE__*/React.createElement("path", {
92
+ fillRule: "evenodd",
93
+ clipRule: "evenodd",
94
+ d: "M3.20805 0.7854C1.43629 0.7854 0 2.21468 0 3.97777V69.0224C0 70.7855 1.4363 72.2147 3.20806 72.2147H93.0336C94.8053 72.2147 96.2416 70.7855 96.2416 69.0224V3.97777C96.2416 2.21467 94.8053 0.7854 93.0336 0.7854H3.20805ZM50.2241 13.4961L50.2315 13.5048L36.7042 48.5371L26.5667 36.5933L46.0124 13.496H32.3524L12.8275 36.5L32.3524 59.5039L46.1187 59.504L59.6128 24.5578L69.6808 36.4196L50.2241 59.5039L63.8841 59.504L83.409 36.5001L76.4884 28.3427L76.4869 28.3445L63.8841 13.4961H50.2241Z",
95
+ fill: "#035FB5"
96
+ }));
97
+ };
84
98
  export var ContractsIcon = function ContractsIcon() {
85
99
  return /*#__PURE__*/React.createElement("svg", {
86
100
  xmlns: "http://www.w3.org/2000/svg",
@@ -215,4 +229,413 @@ export var CategoryIcon = function CategoryIcon() {
215
229
  strokeLinecap: "round",
216
230
  strokeLinejoin: "round"
217
231
  }));
232
+ };
233
+ export var ArrowUp = function ArrowUp() {
234
+ return /*#__PURE__*/React.createElement("svg", {
235
+ width: "18",
236
+ height: "9",
237
+ viewBox: "0 0 18 9",
238
+ fill: "none",
239
+ xmlns: "http://www.w3.org/2000/svg"
240
+ }, /*#__PURE__*/React.createElement("path", {
241
+ d: "M1.08 8.05005L7.6 1.53005C8.37 0.760048 9.63 0.760048 10.4 1.53005L16.92 8.05005",
242
+ stroke: "white",
243
+ strokeWidth: "1.5",
244
+ strokeMiterlimit: "10",
245
+ strokeLinecap: "round",
246
+ strokeLinejoin: "round"
247
+ }));
248
+ };
249
+ export var ArrowDown = function ArrowDown() {
250
+ return /*#__PURE__*/React.createElement("svg", {
251
+ width: "18",
252
+ height: "9",
253
+ viewBox: "0 0 18 9",
254
+ fill: "none",
255
+ xmlns: "http://www.w3.org/2000/svg"
256
+ }, /*#__PURE__*/React.createElement("path", {
257
+ d: "M16.92 0.949951L10.4 7.46995C9.63 8.23995 8.37 8.23995 7.6 7.46995L1.08 0.949951",
258
+ stroke: "white",
259
+ strokeWidth: "1.5",
260
+ strokeMiterlimit: "10",
261
+ strokeLinecap: "round",
262
+ strokeLinejoin: "round"
263
+ }));
264
+ };
265
+ export var ArchiveIcon = function ArchiveIcon() {
266
+ return /*#__PURE__*/React.createElement("svg", {
267
+ width: "36",
268
+ height: "36",
269
+ viewBox: "0 0 36 36",
270
+ fill: "none",
271
+ xmlns: "http://www.w3.org/2000/svg"
272
+ }, /*#__PURE__*/React.createElement("path", {
273
+ d: "M33 15V22.5C33 30 30 33 22.5 33H13.5C6 33 3 30 3 22.5V13.5C3 6 6 3 13.5 3H21",
274
+ stroke: "#035FB5",
275
+ strokeWidth: "2.25",
276
+ strokeLinecap: "round",
277
+ strokeLinejoin: "round"
278
+ }), /*#__PURE__*/React.createElement("path", {
279
+ d: "M33 15H27C22.5 15 21 13.5 21 9V3L33 15Z",
280
+ stroke: "#035FB5",
281
+ strokeWidth: "2.25",
282
+ strokeLinecap: "round",
283
+ strokeLinejoin: "round"
284
+ }), /*#__PURE__*/React.createElement("path", {
285
+ d: "M10.5 19.5H19.5",
286
+ stroke: "#035FB5",
287
+ strokeWidth: "2.25",
288
+ strokeLinecap: "round",
289
+ strokeLinejoin: "round"
290
+ }), /*#__PURE__*/React.createElement("path", {
291
+ d: "M10.5 25.5H16.5",
292
+ stroke: "#035FB5",
293
+ strokeWidth: "2.25",
294
+ strokeLinecap: "round",
295
+ strokeLinejoin: "round"
296
+ }));
297
+ };
298
+ export var TransportIcon = function TransportIcon() {
299
+ return /*#__PURE__*/React.createElement("svg", {
300
+ width: "26",
301
+ height: "26",
302
+ viewBox: "0 0 26 26",
303
+ fill: "none",
304
+ xmlns: "http://www.w3.org/2000/svg"
305
+ }, /*#__PURE__*/React.createElement("path", {
306
+ d: "M16.25 2.16663V13C16.25 14.1916 15.275 15.1666 14.0833 15.1666H2.16666V6.49996C2.16666 4.10579 4.10582 2.16663 6.49999 2.16663H16.25Z",
307
+ stroke: "#035FB5",
308
+ strokeWidth: "1.625",
309
+ strokeLinecap: "round",
310
+ strokeLinejoin: "round"
311
+ }), /*#__PURE__*/React.createElement("path", {
312
+ d: "M23.8333 15.1666V18.4166C23.8333 20.215 22.3817 21.6666 20.5833 21.6666H19.5C19.5 20.475 18.525 19.5 17.3333 19.5C16.1417 19.5 15.1667 20.475 15.1667 21.6666H10.8333C10.8333 20.475 9.85832 19.5 8.66666 19.5C7.47499 19.5 6.49999 20.475 6.49999 21.6666H5.41666C3.61832 21.6666 2.16666 20.215 2.16666 18.4166V15.1666H14.0833C15.275 15.1666 16.25 14.1916 16.25 13V5.41663H18.2433C19.0233 5.41663 19.7383 5.83914 20.1283 6.5108L21.9808 9.74996H20.5833C19.9875 9.74996 19.5 10.2375 19.5 10.8333V14.0833C19.5 14.6791 19.9875 15.1666 20.5833 15.1666H23.8333Z",
313
+ stroke: "#035FB5",
314
+ strokeWidth: "1.625",
315
+ strokeLinecap: "round",
316
+ strokeLinejoin: "round"
317
+ }), /*#__PURE__*/React.createElement("path", {
318
+ d: "M8.66667 23.8333C9.86328 23.8333 10.8333 22.8633 10.8333 21.6667C10.8333 20.47 9.86328 19.5 8.66667 19.5C7.47005 19.5 6.5 20.47 6.5 21.6667C6.5 22.8633 7.47005 23.8333 8.66667 23.8333Z",
319
+ stroke: "#035FB5",
320
+ strokeWidth: "1.625",
321
+ strokeLinecap: "round",
322
+ strokeLinejoin: "round"
323
+ }), /*#__PURE__*/React.createElement("path", {
324
+ d: "M17.3333 23.8333C18.5299 23.8333 19.5 22.8633 19.5 21.6667C19.5 20.47 18.5299 19.5 17.3333 19.5C16.1367 19.5 15.1667 20.47 15.1667 21.6667C15.1667 22.8633 16.1367 23.8333 17.3333 23.8333Z",
325
+ stroke: "#035FB5",
326
+ strokeWidth: "1.625",
327
+ strokeLinecap: "round",
328
+ strokeLinejoin: "round"
329
+ }), /*#__PURE__*/React.createElement("path", {
330
+ d: "M23.8333 13V15.1667H20.5833C19.9875 15.1667 19.5 14.6792 19.5 14.0833V10.8333C19.5 10.2375 19.9875 9.75 20.5833 9.75H21.9808L23.8333 13Z",
331
+ stroke: "#035FB5",
332
+ strokeWidth: "1.625",
333
+ strokeLinecap: "round",
334
+ strokeLinejoin: "round"
335
+ }));
336
+ };
337
+ export var LabIcon = function LabIcon() {
338
+ return /*#__PURE__*/React.createElement("svg", {
339
+ width: "26",
340
+ height: "26",
341
+ viewBox: "0 0 26 26",
342
+ fill: "none",
343
+ xmlns: "http://www.w3.org/2000/svg"
344
+ }, /*#__PURE__*/React.createElement("path", {
345
+ d: "M22.3383 14.1591C21.9267 14.1591 21.58 13.8449 21.5258 13.4333C21.2658 10.9849 19.9442 8.76409 17.9075 7.35576C17.5392 7.09576 17.4525 6.59743 17.7017 6.22909C17.9617 5.86076 18.4708 5.77409 18.8283 6.02326C21.255 7.70243 22.815 10.3458 23.1292 13.2599C23.1725 13.7041 22.8583 14.1049 22.4033 14.1591C22.3925 14.1591 22.36 14.1591 22.3383 14.1591Z",
346
+ fill: "#035FB5"
347
+ }), /*#__PURE__*/React.createElement("path", {
348
+ d: "M3.78082 14.2133C3.74832 14.2133 3.72666 14.2133 3.69416 14.2133C3.24999 14.1591 2.92499 13.7583 2.96832 13.3141C3.26082 10.4 4.80999 7.76745 7.20416 6.06662C7.57249 5.80662 8.08166 5.89329 8.34166 6.26162C8.60166 6.62995 8.51499 7.13912 8.14666 7.39912C6.13166 8.81829 4.83166 11.0391 4.58249 13.4875C4.54999 13.8991 4.19249 14.2133 3.78082 14.2133Z",
349
+ fill: "#035FB5"
350
+ }), /*#__PURE__*/React.createElement("path", {
351
+ d: "M13.065 24.4941C11.4616 24.4941 9.93415 24.1258 8.50415 23.4108C8.10332 23.2049 7.94082 22.7174 8.14665 22.3166C8.35248 21.9158 8.83998 21.7533 9.24082 21.9591C11.5808 23.1399 14.3975 23.1616 16.7592 22.0241C17.16 21.8291 17.6475 22.0024 17.8425 22.4033C18.0375 22.8041 17.8642 23.2916 17.4633 23.4866C16.0767 24.1583 14.6033 24.4941 13.065 24.4941Z",
352
+ fill: "#035FB5"
353
+ }), /*#__PURE__*/React.createElement("path", {
354
+ d: "M13.065 9.14333C10.9525 9.14333 9.24084 7.43166 9.24084 5.31916C9.24084 3.20666 10.9525 1.495 13.065 1.495C15.1775 1.495 16.8892 3.20666 16.8892 5.31916C16.8892 7.43166 15.1667 9.14333 13.065 9.14333ZM13.065 3.13083C11.8517 3.13083 10.8658 4.11666 10.8658 5.33C10.8658 6.54333 11.8517 7.52916 13.065 7.52916C14.2783 7.52916 15.2642 6.54333 15.2642 5.33C15.2642 4.11666 14.2675 3.13083 13.065 3.13083Z",
355
+ fill: "#035FB5"
356
+ }), /*#__PURE__*/React.createElement("path", {
357
+ d: "M5.23249 22.3925C3.11999 22.3925 1.40833 20.6808 1.40833 18.5683C1.40833 16.4666 3.11999 14.7441 5.23249 14.7441C7.34499 14.7441 9.05666 16.4558 9.05666 18.5683C9.05666 20.67 7.34499 22.3925 5.23249 22.3925ZM5.23249 16.3691C4.01916 16.3691 3.03333 17.355 3.03333 18.5683C3.03333 19.7816 4.01916 20.7675 5.23249 20.7675C6.44583 20.7675 7.43166 19.7816 7.43166 18.5683C7.43166 17.355 6.44583 16.3691 5.23249 16.3691Z",
358
+ fill: "#035FB5"
359
+ }), /*#__PURE__*/React.createElement("path", {
360
+ d: "M20.7675 22.3925C18.655 22.3925 16.9434 20.6808 16.9434 18.5683C16.9434 16.4666 18.655 14.7441 20.7675 14.7441C22.88 14.7441 24.5917 16.4558 24.5917 18.5683C24.5809 20.67 22.8692 22.3925 20.7675 22.3925ZM20.7675 16.3691C19.5542 16.3691 18.5684 17.355 18.5684 18.5683C18.5684 19.7816 19.5542 20.7675 20.7675 20.7675C21.9809 20.7675 22.9667 19.7816 22.9667 18.5683C22.9559 17.355 21.9809 16.3691 20.7675 16.3691Z",
361
+ fill: "#035FB5"
362
+ }));
363
+ };
364
+ export var ConstructionRibbon = function ConstructionRibbon() {
365
+ return /*#__PURE__*/React.createElement("svg", {
366
+ width: "50",
367
+ height: "50",
368
+ viewBox: "0 0 100 100",
369
+ style: {
370
+ position: "absolute",
371
+ top: 0,
372
+ right: 0,
373
+ transform: "rotate(45deg)",
374
+ transformOrigin: "top right",
375
+ zIndex: 10
376
+ }
377
+ }, /*#__PURE__*/React.createElement("rect", {
378
+ width: "100",
379
+ height: "20",
380
+ fill: "#939393"
381
+ }), /*#__PURE__*/React.createElement("text", {
382
+ x: "50",
383
+ y: "14",
384
+ fill: "white",
385
+ fontSize: "12",
386
+ fontWeight: "bold",
387
+ textAnchor: "middle"
388
+ }, "Work"));
389
+ };
390
+ export var NotificationBell = function NotificationBell() {
391
+ return /*#__PURE__*/React.createElement("svg", {
392
+ width: "24",
393
+ height: "24",
394
+ viewBox: "0 0 24 24",
395
+ fill: "none",
396
+ xmlns: "http://www.w3.org/2000/svg"
397
+ }, /*#__PURE__*/React.createElement("path", {
398
+ d: "M12 6.44V9.77",
399
+ stroke: "#035FB5",
400
+ strokeWidth: "1.5",
401
+ strokeMiterlimit: "10",
402
+ strokeLinecap: "round"
403
+ }), /*#__PURE__*/React.createElement("path", {
404
+ d: "M12.02 2C8.34002 2 5.36002 4.98 5.36002 8.66V10.76C5.36002 11.44 5.08002 12.46 4.73002 13.04L3.46002 15.16C2.68002 16.47 3.22002 17.93 4.66002 18.41C9.44002 20 14.61 20 19.39 18.41C20.74 17.96 21.32 16.38 20.59 15.16L19.32 13.04C18.97 12.46 18.69 11.43 18.69 10.76V8.66C18.68 5 15.68 2 12.02 2Z",
405
+ stroke: "#035FB5",
406
+ strokeWidth: "1.5",
407
+ strokeMiterlimit: "10",
408
+ strokeLinecap: "round"
409
+ }), /*#__PURE__*/React.createElement("path", {
410
+ d: "M15.33 18.82C15.33 20.65 13.83 22.15 12 22.15C11.09 22.15 10.25 21.77 9.65004 21.17C9.05004 20.57 8.67004 19.73 8.67004 18.82",
411
+ stroke: "#035FB5",
412
+ strokeWidth: "1.5",
413
+ strokeMiterlimit: "10"
414
+ }));
415
+ };
416
+ export var MoonIcon = function MoonIcon() {
417
+ return /*#__PURE__*/React.createElement("svg", {
418
+ width: "24",
419
+ height: "24",
420
+ viewBox: "0 0 24 24",
421
+ fill: "none",
422
+ xmlns: "http://www.w3.org/2000/svg"
423
+ }, /*#__PURE__*/React.createElement("path", {
424
+ d: "M2.02997 12.42C2.38997 17.57 6.75997 21.76 11.99 21.99C15.68 22.15 18.98 20.43 20.96 17.72C21.78 16.61 21.34 15.87 19.97 16.12C19.3 16.24 18.61 16.29 17.89 16.26C13 16.06 8.99997 11.97 8.97997 7.14C8.96997 5.84 9.23997 4.61 9.72997 3.49C10.27 2.25 9.61997 1.66 8.36997 2.19C4.40997 3.86 1.69997 7.85 2.02997 12.42Z",
425
+ stroke: "#035FB5",
426
+ strokeWidth: "1.5",
427
+ strokeLinecap: "round",
428
+ strokeLinejoin: "round"
429
+ }));
430
+ };
431
+ export var LogOutIcon = function LogOutIcon() {
432
+ return /*#__PURE__*/React.createElement("svg", {
433
+ width: "20",
434
+ height: "20",
435
+ viewBox: "0 0 20 20",
436
+ fill: "none",
437
+ xmlns: "http://www.w3.org/2000/svg"
438
+ }, /*#__PURE__*/React.createElement("g", {
439
+ clipPath: "url(#clip0_1226_14276)"
440
+ }, /*#__PURE__*/React.createElement("path", {
441
+ d: "M7.50162 5.83341C7.51171 4.02089 7.59208 3.0393 8.2324 2.39898C8.96464 1.66675 10.1431 1.66675 12.5002 1.66675L13.3335 1.66675C15.6905 1.66675 16.869 1.66675 17.6013 2.39898C18.3335 3.13121 18.3335 4.30973 18.3335 6.66675L18.3335 13.3334C18.3335 15.6904 18.3335 16.8689 17.6013 17.6012C16.869 18.3334 15.6905 18.3334 13.3335 18.3334L12.5002 18.3334C10.1431 18.3334 8.96464 18.3334 8.2324 17.6012C7.59208 16.9609 7.51171 15.9793 7.50162 14.1667",
442
+ stroke: "#F50B0B",
443
+ strokeWidth: "1.5",
444
+ strokeLinecap: "round"
445
+ }), /*#__PURE__*/React.createElement("path", {
446
+ d: "M12.5 10L1.66667 10M1.66667 10L4.58333 7.5M1.66667 10L4.58333 12.5",
447
+ stroke: "#F50B0B",
448
+ strokeWidth: "1.5",
449
+ strokeLinecap: "round",
450
+ strokeLinejoin: "round"
451
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
452
+ id: "clip0_1226_14276"
453
+ }, /*#__PURE__*/React.createElement("rect", {
454
+ width: "20",
455
+ height: "20",
456
+ rx: "5",
457
+ fill: "#F50B0B"
458
+ }))));
459
+ };
460
+ export var ExportIcon = function ExportIcon() {
461
+ return /*#__PURE__*/React.createElement("svg", {
462
+ width: "24",
463
+ height: "24",
464
+ viewBox: "0 0 24 24",
465
+ fill: "none",
466
+ xmlns: "http://www.w3.org/2000/svg"
467
+ }, /*#__PURE__*/React.createElement("path", {
468
+ d: "M9.32007 6.49994L11.8801 3.93994L14.4401 6.49994",
469
+ stroke: "#F2F2F2",
470
+ strokeWidth: "1.5",
471
+ strokeMiterlimit: "10",
472
+ strokeLinecap: "round",
473
+ strokeLinejoin: "round"
474
+ }), /*#__PURE__*/React.createElement("path", {
475
+ d: "M11.8799 14.18V4.01001",
476
+ stroke: "#F2F2F2",
477
+ strokeWidth: "1.5",
478
+ strokeMiterlimit: "10",
479
+ strokeLinecap: "round",
480
+ strokeLinejoin: "round"
481
+ }), /*#__PURE__*/React.createElement("path", {
482
+ d: "M4 12C4 16.42 7 20 12 20C17 20 20 16.42 20 12",
483
+ stroke: "#F2F2F2",
484
+ strokeWidth: "1.5",
485
+ strokeMiterlimit: "10",
486
+ strokeLinecap: "round",
487
+ strokeLinejoin: "round"
488
+ }));
489
+ };
490
+ export var PlusIcon = function PlusIcon() {
491
+ return /*#__PURE__*/React.createElement("svg", {
492
+ width: "24",
493
+ height: "24",
494
+ viewBox: "0 0 24 24",
495
+ fill: "none",
496
+ xmlns: "http://www.w3.org/2000/svg"
497
+ }, /*#__PURE__*/React.createElement("path", {
498
+ d: "M12 22C17.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z",
499
+ stroke: "white",
500
+ strokeWidth: "1.5",
501
+ strokeLinecap: "round",
502
+ strokeLinejoin: "round"
503
+ }), /*#__PURE__*/React.createElement("path", {
504
+ d: "M8 12H16",
505
+ stroke: "white",
506
+ strokeWidth: "1.5",
507
+ strokeLinecap: "round",
508
+ strokeLinejoin: "round"
509
+ }), /*#__PURE__*/React.createElement("path", {
510
+ d: "M12 16V8",
511
+ stroke: "white",
512
+ strokeWidth: "1.5",
513
+ strokeLinecap: "round",
514
+ strokeLinejoin: "round"
515
+ }));
516
+ };
517
+ export var SearchIcon = function SearchIcon() {
518
+ return /*#__PURE__*/React.createElement("svg", {
519
+ width: "22",
520
+ height: "22",
521
+ viewBox: "0 0 22 22",
522
+ fill: "none",
523
+ xmlns: "http://www.w3.org/2000/svg"
524
+ }, /*#__PURE__*/React.createElement("path", {
525
+ d: "M10.083 18.3332C14.6394 18.3332 18.333 14.6395 18.333 10.0832C18.333 5.52682 14.6394 1.83317 10.083 1.83317C5.52666 1.83317 1.83301 5.52682 1.83301 10.0832C1.83301 14.6395 5.52666 18.3332 10.083 18.3332Z",
526
+ stroke: "#828282",
527
+ strokeWidth: "1.375",
528
+ strokeLinecap: "round",
529
+ strokeLinejoin: "round"
530
+ }), /*#__PURE__*/React.createElement("path", {
531
+ d: "M17.3527 18.9655C17.8385 20.4322 18.9477 20.5788 19.8002 19.2955C20.5794 18.1222 20.066 17.1597 18.6544 17.1597C17.6094 17.1505 17.0227 17.9663 17.3527 18.9655Z",
532
+ stroke: "#828282",
533
+ strokeWidth: "1.375",
534
+ strokeLinecap: "round",
535
+ strokeLinejoin: "round"
536
+ }));
537
+ };
538
+ export var OkIcon = function OkIcon() {
539
+ return /*#__PURE__*/React.createElement("svg", {
540
+ width: "140",
541
+ height: "140",
542
+ viewBox: "0 0 140 140",
543
+ fill: "none",
544
+ xmlns: "http://www.w3.org/2000/svg"
545
+ }, /*#__PURE__*/React.createElement("path", {
546
+ d: "M70.0001 128.333C102.083 128.333 128.333 102.083 128.333 69.9998C128.333 37.9165 102.083 11.6665 70.0001 11.6665C37.9167 11.6665 11.6667 37.9165 11.6667 69.9998C11.6667 102.083 37.9167 128.333 70.0001 128.333Z",
547
+ stroke: "#219653",
548
+ strokeWidth: "8.75",
549
+ strokeLinecap: "round",
550
+ strokeLinejoin: "round"
551
+ }), /*#__PURE__*/React.createElement("path", {
552
+ d: "M45.2083 70L61.7166 86.5084L94.7916 53.4917",
553
+ stroke: "#219653",
554
+ strokeWidth: "8.75",
555
+ strokeLinecap: "round",
556
+ strokeLinejoin: "round"
557
+ }));
558
+ };
559
+ export var EditIcon = function EditIcon() {
560
+ return /*#__PURE__*/React.createElement("svg", {
561
+ width: "24",
562
+ height: "24",
563
+ viewBox: "0 0 24 24",
564
+ fill: "none",
565
+ xmlns: "http://www.w3.org/2000/svg"
566
+ }, /*#__PURE__*/React.createElement("path", {
567
+ d: "M20.5 11.3V7.04001C20.5 3.01001 19.56 2 15.78 2H8.22C4.44 2 3.5 3.01001 3.5 7.04001V18.3C3.5 20.96 4.96001 21.59 6.73001 19.69L6.73999 19.68C7.55999 18.81 8.80999 18.88 9.51999 19.83L10.53 21.18",
568
+ stroke: "#016DAF",
569
+ strokeWidth: "1.5",
570
+ strokeLinecap: "round",
571
+ strokeLinejoin: "round"
572
+ }), /*#__PURE__*/React.createElement("path", {
573
+ d: "M8 7H16",
574
+ stroke: "#016DAF",
575
+ strokeWidth: "1.5",
576
+ strokeLinecap: "round",
577
+ strokeLinejoin: "round"
578
+ }), /*#__PURE__*/React.createElement("path", {
579
+ d: "M9 11H15",
580
+ stroke: "#016DAF",
581
+ strokeWidth: "1.5",
582
+ strokeLinecap: "round",
583
+ strokeLinejoin: "round"
584
+ }), /*#__PURE__*/React.createElement("path", {
585
+ d: "M18.211 14.7703L14.671 18.3103C14.531 18.4503 14.401 18.7103 14.371 18.9003L14.181 20.2503C14.111 20.7403 14.451 21.0803 14.941 21.0103L16.291 20.8203C16.481 20.7903 16.751 20.6603 16.881 20.5203L20.421 16.9803C21.031 16.3703 21.321 15.6603 20.421 14.7603C19.531 13.8703 18.821 14.1603 18.211 14.7703Z",
586
+ stroke: "#016DAF",
587
+ strokeWidth: "1.5",
588
+ strokeMiterlimit: "10",
589
+ strokeLinecap: "round",
590
+ strokeLinejoin: "round"
591
+ }), /*#__PURE__*/React.createElement("path", {
592
+ d: "M17.6992 15.2803C17.9992 16.3603 18.8392 17.2003 19.9192 17.5003",
593
+ stroke: "#016DAF",
594
+ strokeWidth: "1.5",
595
+ strokeMiterlimit: "10",
596
+ strokeLinecap: "round",
597
+ strokeLinejoin: "round"
598
+ }));
599
+ };
600
+ export var DeleteIconQ = function DeleteIconQ() {
601
+ return /*#__PURE__*/React.createElement("svg", {
602
+ width: "24",
603
+ height: "24",
604
+ viewBox: "0 0 24 24",
605
+ fill: "none",
606
+ xmlns: "http://www.w3.org/2000/svg"
607
+ }, /*#__PURE__*/React.createElement("path", {
608
+ d: "M8.81043 2L5.19043 5.63",
609
+ stroke: "#EB5757",
610
+ strokeWidth: "1.5",
611
+ strokeMiterlimit: "10",
612
+ strokeLinecap: "round",
613
+ strokeLinejoin: "round"
614
+ }), /*#__PURE__*/React.createElement("path", {
615
+ d: "M15.1904 2L18.8104 5.63",
616
+ stroke: "#EB5757",
617
+ strokeWidth: "1.5",
618
+ strokeMiterlimit: "10",
619
+ strokeLinecap: "round",
620
+ strokeLinejoin: "round"
621
+ }), /*#__PURE__*/React.createElement("path", {
622
+ d: "M2 7.85C2 6 2.99 5.85 4.22 5.85H19.78C21.01 5.85 22 6 22 7.85C22 10 21.01 9.85 19.78 9.85H4.22C2.99 9.85 2 10 2 7.85Z",
623
+ stroke: "#EB5757",
624
+ strokeWidth: "1.5"
625
+ }), /*#__PURE__*/React.createElement("path", {
626
+ d: "M9.75977 14V17.55",
627
+ stroke: "#EB5757",
628
+ strokeWidth: "1.5",
629
+ strokeLinecap: "round"
630
+ }), /*#__PURE__*/React.createElement("path", {
631
+ d: "M14.3604 14V17.55",
632
+ stroke: "#EB5757",
633
+ strokeWidth: "1.5",
634
+ strokeLinecap: "round"
635
+ }), /*#__PURE__*/React.createElement("path", {
636
+ d: "M3.5 10L4.91 18.64C5.23 20.58 6 22 8.86 22H14.89C18 22 18.46 20.64 18.82 18.76L20.5 10",
637
+ stroke: "#EB5757",
638
+ strokeWidth: "1.5",
639
+ strokeLinecap: "round"
640
+ }));
218
641
  };
@@ -125,7 +125,7 @@
125
125
  line-height: 24px;
126
126
  letter-spacing: 0.5px;
127
127
  border: 1px solid #219653;
128
- color: #fff;
128
+ color: #219653;
129
129
  cursor: pointer;
130
130
  transition: 250ms;
131
131
 
@@ -136,7 +136,19 @@
136
136
  svg {
137
137
  path {
138
138
  transition: 250ms;
139
- fill: #219653 !important;
139
+ stroke: #219653;
140
+ }
141
+ }
142
+ }
143
+ .button_green_white:hover {
144
+ background: gray;
145
+ border: 1px solid gray;
146
+ transition: 250ms;
147
+ color: grey;
148
+ svg {
149
+ path {
150
+ transition: 250ms;
151
+ stroke: gray;
140
152
  }
141
153
  }
142
154
  }
@@ -0,0 +1,22 @@
1
+ import React from "react";
2
+ import style from "./Delete.module.scss";
3
+ import Button from "../Button";
4
+ var Delete = function Delete(_ref) {
5
+ var value = _ref.value,
6
+ onCancel = _ref.onCancel,
7
+ onDelete = _ref.onDelete;
8
+ return /*#__PURE__*/React.createElement("div", {
9
+ className: style.container
10
+ }, /*#__PURE__*/React.createElement("h3", {
11
+ className: style.value
12
+ }, value, " silm\u0259k ist\u0259diyinizd\u0259n \u0259minsizinmi?"), /*#__PURE__*/React.createElement("div", {
13
+ className: style.footer
14
+ }, /*#__PURE__*/React.createElement(Button, {
15
+ color: "white",
16
+ onClick: onCancel
17
+ }, "Geri"), /*#__PURE__*/React.createElement(Button, {
18
+ color: "red",
19
+ onClick: onDelete
20
+ }, "Soraq\xE7an\u0131 sil")));
21
+ };
22
+ export default Delete;
@@ -0,0 +1,22 @@
1
+ .container {
2
+ width: 100%;
3
+ }
4
+ .footer {
5
+ width: 100%;
6
+ display: flex;
7
+ gap: 20px;
8
+ align-items: center;
9
+ margin-top: 9px;
10
+ button {
11
+ padding: 5px 19px;
12
+ }
13
+ }
14
+
15
+ .value {
16
+ font-family: Inter;
17
+ font-size: 16px;
18
+ font-weight: 500;
19
+ line-height: 24px;
20
+ text-align: left;
21
+ color: #1c1c1c;
22
+ }
@@ -0,0 +1,31 @@
1
+ import { Modal } from "antd";
2
+ import React from "react";
3
+ import { useSelector } from "react-redux";
4
+ import style from "./DeleteModal.module.scss";
5
+ var DeleteModal = function DeleteModal(_ref) {
6
+ var children = _ref.children,
7
+ width = _ref.width,
8
+ onCancel = _ref.onCancel;
9
+ var _useSelector = useSelector(function (state) {
10
+ return state.global;
11
+ }),
12
+ deleteModalVisible = _useSelector.deleteModalVisible;
13
+ return /*#__PURE__*/React.createElement(Modal, {
14
+ open: deleteModalVisible,
15
+ width: width,
16
+ onCancel: onCancel,
17
+ okButtonProps: {
18
+ style: {
19
+ display: "none"
20
+ }
21
+ },
22
+ cancelButtonProps: {
23
+ style: {
24
+ display: "none"
25
+ }
26
+ },
27
+ className: style.absolute,
28
+ closable: false
29
+ }, children);
30
+ };
31
+ export default DeleteModal;
@@ -0,0 +1,11 @@
1
+ .absolute {
2
+ position: absolute;
3
+ right: 5px;
4
+ top: 105px;
5
+ }
6
+ .absolute > div > div {
7
+ padding: 12px !important;
8
+ }
9
+ .absolute > div > div > div {
10
+ margin: 0 !important;
11
+ }
@@ -161,6 +161,6 @@ var Filter = function Filter(_ref) {
161
161
  onOpenChange: handleOpenChange // Updated to use onOpenChange
162
162
  }, /*#__PURE__*/React.createElement(Button, {
163
163
  color: "white"
164
- }, /*#__PURE__*/React.createElement(FilterIcon, null), " Filter menyu"));
164
+ }, /*#__PURE__*/React.createElement(FilterIcon, null)));
165
165
  };
166
166
  export default Filter;
@@ -36,8 +36,7 @@ var Input = function Input(_ref) {
36
36
  } : false,
37
37
  placeholder: placeholder
38
38
  }, rest)) : /*#__PURE__*/React.createElement(AntdInput, _extends({
39
- className: style.input,
40
- placeholder: placeholder
39
+ className: className ? className : size === "sm" ? style.input_sm : style.input
41
40
  }, rest)));
42
41
  };
43
42
  export default Input;
@@ -8,6 +8,16 @@
8
8
  height: 48px;
9
9
  width: 100%;
10
10
  }
11
+ .input_sm {
12
+ padding: 9px 16px !important;
13
+ border-radius: 6px !important;
14
+ font-size: 16px !important;
15
+ font-weight: 500 !important;
16
+ line-height: 24px !important;
17
+ text-align: left !important;
18
+ height: 34px;
19
+ width: 100%;
20
+ }
11
21
  .textarea {
12
22
  padding: 9px 16px !important;
13
23
  border-radius: 6px !important;
@@ -30,22 +40,12 @@
30
40
  }
31
41
  }
32
42
 
33
- .input_sm {
34
- padding: 9px 16px !important;
35
- border-radius: 6px !important;
36
- font-size: 16px !important;
37
- font-weight: 500 !important;
38
- line-height: 24px !important;
39
- text-align: left !important;
40
- height: 34;
41
- width: 100%;
42
- }
43
43
  .date_sm {
44
44
  padding: 8px 16px !important;
45
45
  // border: 1px solid #bdbdbd !important;
46
46
  border-radius: 6px !important;
47
47
  width: 100%;
48
- height: 34;
48
+ height: 34px;
49
49
  input {
50
50
  font-size: 16px !important;
51
51
  font-weight: 500 !important;
@@ -53,7 +53,16 @@
53
53
  text-align: left !important;
54
54
  }
55
55
  }
56
-
56
+ .input_sm {
57
+ padding: 8px 16px !important;
58
+ border-radius: 6px !important;
59
+ font-size: 16px !important;
60
+ font-weight: 500 !important;
61
+ line-height: 24px !important;
62
+ text-align: left !important;
63
+ height: 34px;
64
+ width: 100%;
65
+ }
57
66
  .input_xs {
58
67
  // padding: 9px 16px !important;
59
68
  border-radius: 6px !important;