mautourco-components 0.2.11 → 0.2.13

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 (141) hide show
  1. package/dist/components/atoms/Icon/Icon.d.ts +1 -1
  2. package/dist/components/atoms/Icon/Icon.js +1 -1
  3. package/dist/components/atoms/Icon/icons/AccomIcon.d.ts +12 -0
  4. package/dist/components/atoms/Icon/icons/AccomIcon.js +36 -0
  5. package/dist/components/atoms/Icon/icons/ArrowDownOutlineIcon.d.ts +8 -0
  6. package/dist/components/atoms/Icon/icons/ArrowDownOutlineIcon.js +36 -0
  7. package/dist/components/atoms/Icon/icons/ArrowRightOutlineIcon.js +1 -1
  8. package/dist/components/atoms/Icon/icons/BusIcon.d.ts +12 -0
  9. package/dist/components/atoms/Icon/icons/BusIcon.js +36 -0
  10. package/dist/components/atoms/Icon/icons/Calendar2Icon.d.ts +12 -0
  11. package/dist/components/atoms/Icon/icons/Calendar2Icon.js +36 -0
  12. package/dist/components/atoms/Icon/icons/MapIcon.d.ts +8 -0
  13. package/dist/components/atoms/Icon/icons/MapIcon.js +36 -0
  14. package/dist/components/atoms/Icon/icons/MicroIcon.d.ts +12 -0
  15. package/dist/components/atoms/Icon/icons/MicroIcon.js +36 -0
  16. package/dist/components/atoms/Icon/icons/MoreVerticalIcon.d.ts +12 -0
  17. package/dist/components/atoms/Icon/icons/MoreVerticalIcon.js +36 -0
  18. package/dist/components/atoms/Icon/icons/NightIcon.d.ts +12 -0
  19. package/dist/components/atoms/Icon/icons/NightIcon.js +36 -0
  20. package/dist/components/atoms/Icon/icons/RowExcursion.d.ts +16 -0
  21. package/dist/components/atoms/Icon/icons/RowExcursion.js +28 -0
  22. package/dist/components/atoms/Icon/icons/StopWatchIcon.d.ts +12 -0
  23. package/dist/components/atoms/Icon/icons/StopWatchIcon.js +36 -0
  24. package/dist/components/atoms/Icon/icons/Utensils.d.ts +12 -0
  25. package/dist/components/atoms/Icon/icons/Utensils.js +36 -0
  26. package/dist/components/atoms/Icon/icons/WalletIcon.d.ts +12 -0
  27. package/dist/components/atoms/Icon/icons/WalletIcon.js +36 -0
  28. package/dist/components/atoms/Icon/icons/registry.d.ts +11 -0
  29. package/dist/components/atoms/Icon/icons/registry.js +49 -27
  30. package/dist/components/atoms/Typography/Typography.d.ts +3 -1
  31. package/dist/components/atoms/Typography/Typography.js +3 -15
  32. package/dist/components/molecules/ActionDropdown/ActionDropdown.css +2119 -0
  33. package/dist/components/molecules/ActionDropdown/ActionDropdown.d.ts +21 -0
  34. package/dist/components/molecules/ActionDropdown/ActionDropdown.js +34 -0
  35. package/dist/components/molecules/DateDisplay/DateDisplay.d.ts +14 -0
  36. package/dist/components/molecules/DateDisplay/DateDisplay.js +39 -0
  37. package/dist/components/molecules/FromTo/FromTo.d.ts +8 -0
  38. package/dist/components/molecules/FromTo/FromTo.js +24 -0
  39. package/dist/components/molecules/TableServiceItem/DetailsCol.d.ts +12 -0
  40. package/dist/components/molecules/TableServiceItem/DetailsCol.js +17 -0
  41. package/dist/components/molecules/TableServiceItem/ItemCol.d.ts +13 -0
  42. package/dist/components/molecules/TableServiceItem/ItemCol.js +24 -0
  43. package/dist/components/molecules/TableServiceItem/RowAccommodation.d.ts +16 -0
  44. package/dist/components/molecules/TableServiceItem/RowAccommodation.js +37 -0
  45. package/dist/components/molecules/TableServiceItem/RowExcursion.d.ts +16 -0
  46. package/dist/components/molecules/TableServiceItem/RowExcursion.js +22 -0
  47. package/dist/components/molecules/TableServiceItem/RowOtherServices.d.ts +9 -0
  48. package/dist/components/molecules/TableServiceItem/RowOtherServices.js +34 -0
  49. package/dist/components/molecules/TableServiceItem/RowTransfer.d.ts +15 -0
  50. package/dist/components/molecules/TableServiceItem/RowTransfer.js +37 -0
  51. package/dist/components/molecules/TableServiceItem/index.d.ts +17 -0
  52. package/dist/components/molecules/TableServiceItem/index.js +15 -0
  53. package/dist/components/molecules/TextWithIcon/TextWithIcon.d.ts +30 -0
  54. package/dist/components/molecules/TextWithIcon/TextWithIcon.js +31 -0
  55. package/dist/components/molecules/TooltipDisplay/TooltipDisplay.d.ts +13 -0
  56. package/dist/components/molecules/TooltipDisplay/TooltipDisplay.js +18 -0
  57. package/dist/components/organisms/DateTimePicker/DateTimePicker.d.ts +2 -0
  58. package/dist/components/organisms/DateTimePicker/DateTimePicker.js +31 -3
  59. package/dist/components/organisms/RoundTrip/RoundTrip.js +1 -1
  60. package/dist/components/organisms/Table/Table.css +2280 -0
  61. package/dist/components/organisms/Table/Table.d.ts +50 -0
  62. package/dist/components/organisms/Table/Table.js +95 -0
  63. package/dist/components/organisms/Table/TableCell.d.ts +15 -0
  64. package/dist/components/organisms/Table/TableCell.js +16 -0
  65. package/dist/components/organisms/Table/columns/booking-columns.d.ts +7 -0
  66. package/dist/components/organisms/Table/columns/booking-columns.js +83 -0
  67. package/dist/components/organisms/Table/columns/detail-resume-columns.d.ts +3 -0
  68. package/dist/components/organisms/Table/columns/detail-resume-columns.js +178 -0
  69. package/dist/components/organisms/Table/columns/index.d.ts +12 -0
  70. package/dist/components/organisms/Table/columns/index.js +9 -0
  71. package/dist/components/organisms/Table/columns/quotation-columns.d.ts +7 -0
  72. package/dist/components/organisms/Table/columns/quotation-columns.js +91 -0
  73. package/dist/components/organisms/Table/constant.d.ts +6 -0
  74. package/dist/components/organisms/Table/constant.js +24 -0
  75. package/dist/components/organisms/Table/index.d.ts +2 -0
  76. package/dist/components/organisms/Table/index.js +2 -0
  77. package/dist/components/organisms/TransferLine/TransferLine.js +1 -1
  78. package/dist/components/ui/popover.d.ts +3 -3
  79. package/dist/components/ui/popover.js +5 -5
  80. package/dist/components/ui/tooltip.d.ts +7 -0
  81. package/dist/components/ui/tooltip.js +42 -0
  82. package/dist/index.d.ts +41 -33
  83. package/dist/index.js +26 -20
  84. package/dist/styles/components/typography.css +1 -0
  85. package/dist/types/table/action-dropdown-type.types.d.ts +5 -0
  86. package/dist/types/table/action-dropdown-type.types.js +6 -0
  87. package/dist/types/table/booking.types.d.ts +16 -0
  88. package/dist/types/table/booking.types.js +1 -0
  89. package/dist/types/table/detail-resume.types.d.ts +155 -0
  90. package/dist/types/table/detail-resume.types.js +7 -0
  91. package/dist/types/table/index.d.ts +3 -0
  92. package/dist/types/table/index.js +3 -0
  93. package/dist/types/table/quotation.types.d.ts +23 -0
  94. package/dist/types/table/quotation.types.js +1 -0
  95. package/package.json +6 -1
  96. package/src/components/atoms/Icon/Icon.tsx +2 -8
  97. package/src/components/atoms/Icon/icons/AccomIcon.tsx +45 -0
  98. package/src/components/atoms/Icon/icons/ArrowDownOutlineIcon.tsx +41 -0
  99. package/src/components/atoms/Icon/icons/ArrowRightOutlineIcon.tsx +2 -7
  100. package/src/components/atoms/Icon/icons/BusIcon.tsx +52 -0
  101. package/src/components/atoms/Icon/icons/Calendar2Icon.tsx +54 -0
  102. package/src/components/atoms/Icon/icons/MapIcon.tsx +48 -0
  103. package/src/components/atoms/Icon/icons/MicroIcon.tsx +45 -0
  104. package/src/components/atoms/Icon/icons/MoreVerticalIcon.tsx +53 -0
  105. package/src/components/atoms/Icon/icons/NightIcon.tsx +45 -0
  106. package/src/components/atoms/Icon/icons/RowExcursion.tsx +54 -0
  107. package/src/components/atoms/Icon/icons/StopWatchIcon.tsx +45 -0
  108. package/src/components/atoms/Icon/icons/Utensils.tsx +45 -0
  109. package/src/components/atoms/Icon/icons/WalletIcon.tsx +45 -0
  110. package/src/components/atoms/Icon/icons/registry.tsx +50 -28
  111. package/src/components/atoms/Typography/Typography.tsx +22 -30
  112. package/src/components/molecules/ActionDropdown/ActionDropdown.css +23 -0
  113. package/src/components/molecules/ActionDropdown/ActionDropdown.tsx +53 -0
  114. package/src/components/molecules/DateDisplay/DateDisplay.tsx +47 -0
  115. package/src/components/molecules/FromTo/FromTo.tsx +31 -0
  116. package/src/components/molecules/TableServiceItem/DetailsCol.tsx +25 -0
  117. package/src/components/molecules/TableServiceItem/ItemCol.tsx +68 -0
  118. package/src/components/molecules/TableServiceItem/RowAccommodation.tsx +56 -0
  119. package/src/components/molecules/TableServiceItem/RowExcursion.tsx +40 -0
  120. package/src/components/molecules/TableServiceItem/RowOtherServices.tsx +50 -0
  121. package/src/components/molecules/TableServiceItem/RowTransfer.tsx +60 -0
  122. package/src/components/molecules/TableServiceItem/index.ts +24 -0
  123. package/src/components/molecules/TextWithIcon/TextWithIcon.tsx +62 -0
  124. package/src/components/molecules/TooltipDisplay/TooltipDisplay.tsx +32 -0
  125. package/src/components/organisms/CarBookingCard/index.ts +2 -0
  126. package/src/components/organisms/DateTimePicker/DateTimePicker.tsx +33 -2
  127. package/src/components/organisms/RoundTrip/RoundTrip.tsx +1 -0
  128. package/src/components/organisms/SearchBarTransfer/index.ts +1 -0
  129. package/src/components/organisms/Table/Table.css +185 -0
  130. package/src/components/organisms/Table/Table.tsx +273 -0
  131. package/src/components/organisms/Table/TableCell.tsx +40 -0
  132. package/src/components/organisms/Table/columns/booking-columns.tsx +118 -0
  133. package/src/components/organisms/Table/columns/detail-resume-columns.tsx +226 -0
  134. package/src/components/organisms/Table/columns/index.ts +11 -0
  135. package/src/components/organisms/Table/columns/quotation-columns.tsx +150 -0
  136. package/src/components/organisms/Table/constant.ts +31 -0
  137. package/src/components/organisms/Table/index.ts +2 -0
  138. package/src/components/organisms/TransferLine/TransferLine.tsx +1 -0
  139. package/src/components/ui/popover.tsx +10 -10
  140. package/src/components/ui/tooltip.tsx +45 -0
  141. package/src/styles/components/typography.css +4 -0
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import { type IconName } from './icons/registry';
3
3
  interface IconProps {
4
4
  name: IconName;
5
- size?: "xs" | "sm" | "md" | "lg" | "xl";
5
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
6
6
  className?: string;
7
7
  color?: string;
8
8
  style?: React.CSSProperties;
@@ -1,7 +1,7 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { ICONS } from './icons/registry';
3
3
  var Icon = function (_a) {
4
- var name = _a.name, _b = _a.size, size = _b === void 0 ? "md" : _b, _c = _a.className, className = _c === void 0 ? "" : _c, color = _a.color, style = _a.style;
4
+ var name = _a.name, _b = _a.size, size = _b === void 0 ? 'md' : _b, _c = _a.className, className = _c === void 0 ? '' : _c, color = _a.color, style = _a.style;
5
5
  var IconComponent = ICONS[name];
6
6
  return _jsx(IconComponent, { size: size, className: className, color: color, style: style });
7
7
  };
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ interface AccomIconProps {
3
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
4
+ className?: string;
5
+ color?: string;
6
+ /**
7
+ * Couleur par défaut si aucune couleur n'est spécifiée
8
+ */
9
+ defaultColor?: string;
10
+ }
11
+ declare const AccomIcon: React.FC<AccomIconProps>;
12
+ export default AccomIcon;
@@ -0,0 +1,36 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ var AccomIcon = function (_a) {
14
+ var _b = _a.size, size = _b === void 0 ? 'md' : _b, _c = _a.className, className = _c === void 0 ? '' : _c, color = _a.color;
15
+ var getSizeClasses = function () {
16
+ switch (size) {
17
+ case 'xs':
18
+ return 'w-3 h-3';
19
+ case 'sm':
20
+ return 'w-4 h-4';
21
+ case 'md':
22
+ return 'w-5 h-5';
23
+ case 'lg':
24
+ return 'w-6 h-6';
25
+ case 'xl':
26
+ return 'w-8 h-8';
27
+ default:
28
+ return 'w-5 h-5';
29
+ }
30
+ };
31
+ var sizeClasses = getSizeClasses();
32
+ var colorClass = color ? "text-".concat(color) : 'text-current';
33
+ var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
34
+ return (_jsx("svg", __assign({ className: classes, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M13.915 7.99902C13.915 7.84443 13.8535 7.69623 13.7441 7.58691C13.6348 7.47762 13.4867 7.41602 13.332 7.41602H2.66504C2.51045 7.4161 2.36225 7.47759 2.25293 7.58691C2.14361 7.69623 2.08212 7.84443 2.08203 7.99902V11.249H13.915V7.99902ZM12.582 3.99902C12.5819 3.84443 12.5205 3.69623 12.4111 3.58691C12.3018 3.47759 12.1536 3.4161 11.999 3.41602H8.74902V5.91602H12.582V3.99902ZM3.41504 5.91602H7.24902V3.41602H3.99902C3.84431 3.41602 3.69533 3.47752 3.58594 3.58691C3.47672 3.69622 3.41513 3.84451 3.41504 3.99902V5.91602ZM14.082 6.05664C14.3505 6.1603 14.5972 6.31895 14.8047 6.52637C15.1953 6.91699 15.415 7.44661 15.415 7.99902V13.333C15.4149 13.7471 15.0791 14.083 14.665 14.083C14.2511 14.0828 13.9152 13.747 13.915 13.333V12.749H2.08203V13.333C2.08186 13.7471 1.74614 14.083 1.33203 14.083C0.917926 14.083 0.582207 13.7471 0.582031 13.333V7.99902C0.582117 7.44661 0.801759 6.91699 1.19238 6.52637C1.39981 6.31894 1.64659 6.16033 1.91504 6.05664V3.99902C1.91513 3.44668 2.13487 2.91698 2.52539 2.52637C2.91609 2.13567 3.44649 1.91602 3.99902 1.91602H11.999C12.5514 1.9161 13.0811 2.13574 13.4717 2.52637C13.8623 2.91699 14.0819 3.44661 14.082 3.99902V6.05664Z", fill: "currentColor" }) })));
35
+ };
36
+ export default AccomIcon;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ interface ArrowDownOutlineIconProps {
3
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
4
+ className?: string;
5
+ color?: string;
6
+ }
7
+ declare const ArrowDownOutlineIcon: React.FC<ArrowDownOutlineIconProps>;
8
+ export default ArrowDownOutlineIcon;
@@ -0,0 +1,36 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ var ArrowDownOutlineIcon = function (_a) {
14
+ var _b = _a.size, size = _b === void 0 ? 'md' : _b, _c = _a.className, className = _c === void 0 ? '' : _c, color = _a.color;
15
+ var getSizeClasses = function () {
16
+ switch (size) {
17
+ case 'xs':
18
+ return 'w-3 h-3';
19
+ case 'sm':
20
+ return 'w-4 h-4';
21
+ case 'md':
22
+ return 'w-5 h-5';
23
+ case 'lg':
24
+ return 'w-6 h-6';
25
+ case 'xl':
26
+ return 'w-8 h-8';
27
+ default:
28
+ return 'w-5 h-5';
29
+ }
30
+ };
31
+ var sizeClasses = getSizeClasses();
32
+ var colorClass = color ? "text-".concat(color) : 'text-current';
33
+ var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
34
+ return (_jsx("svg", __assign({ className: classes, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M7.24889 3.33398C7.24889 2.91977 7.58468 2.58398 7.99889 2.58398C8.41296 2.58416 8.74889 2.91988 8.74889 3.33398V10.8564L12.1346 7.4707C12.4275 7.17781 12.9023 7.17781 13.1952 7.4707C13.4881 7.7636 13.4881 8.23836 13.1952 8.53125L8.52917 13.1973C8.23627 13.4902 7.76151 13.4902 7.46862 13.1973L2.80163 8.53125L2.74987 8.47363C2.50994 8.17912 2.5273 7.74519 2.80163 7.4707C3.07628 7.19605 3.51095 7.1785 3.80553 7.41895L3.86217 7.4707L7.24889 10.8564V3.33398Z", fill: "black" }) })));
35
+ };
36
+ export default ArrowDownOutlineIcon;
@@ -31,6 +31,6 @@ var ArrowRightOutlineIcon = function (_a) {
31
31
  var sizeClasses = getSizeClasses();
32
32
  var colorClass = color ? "text-".concat(color) : "text-current";
33
33
  var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
34
- return (_jsx("svg", __assign({ className: classes, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M6 12L10 8L6 4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round", fill: "none" }) })));
34
+ return (_jsx("svg", __assign({ className: classes, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M7.46875 2.80358C7.74324 2.52925 8.17716 2.51189 8.47168 2.75182L8.5293 2.80358L13.1953 7.47057C13.4882 7.76346 13.4882 8.23822 13.1953 8.53112L8.5293 13.1971C8.2364 13.49 7.76164 13.49 7.46875 13.1971C7.17586 12.9042 7.17586 12.4295 7.46875 12.1366L10.8545 8.75084H3.33203C2.91793 8.75084 2.58221 8.41491 2.58203 8.00084C2.58203 7.58663 2.91782 7.25084 3.33203 7.25084H10.8545L7.46875 3.86413L7.41699 3.80749C7.17655 3.5129 7.1941 3.07823 7.46875 2.80358Z", fill: "currentColor" }) })));
35
35
  };
36
36
  export default ArrowRightOutlineIcon;
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ interface BusIconProps {
3
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
4
+ className?: string;
5
+ color?: string;
6
+ /**
7
+ * Couleur par défaut si aucune couleur n'est spécifiée
8
+ */
9
+ defaultColor?: string;
10
+ }
11
+ declare const BusIcon: React.FC<BusIconProps>;
12
+ export default BusIcon;
@@ -0,0 +1,36 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ var BusIcon = function (_a) {
14
+ var _b = _a.size, size = _b === void 0 ? 'md' : _b, _c = _a.className, className = _c === void 0 ? '' : _c, color = _a.color;
15
+ var getSizeClasses = function () {
16
+ switch (size) {
17
+ case 'xs':
18
+ return 'w-3 h-3';
19
+ case 'sm':
20
+ return 'w-4 h-4';
21
+ case 'md':
22
+ return 'w-5 h-5';
23
+ case 'lg':
24
+ return 'w-6 h-6';
25
+ case 'xl':
26
+ return 'w-8 h-8';
27
+ default:
28
+ return 'w-5 h-5';
29
+ }
30
+ };
31
+ var sizeClasses = getSizeClasses();
32
+ var colorClass = color ? "text-".concat(color) : 'text-current';
33
+ var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
34
+ return (_jsxs("svg", __assign({ className: classes, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [_jsx("g", __assign({ "clip-path": "url(#clip0_7033_40084)" }, { children: _jsx("path", { d: "M12.5821 8.08301H3.41512V11.333C3.41512 11.6552 3.67694 11.917 3.99911 11.917H11.9991C12.3211 11.9168 12.5821 11.6551 12.5821 11.333V8.08301ZM5.33895 9.25L5.41512 9.25391C5.79348 9.29216 6.08895 9.61156 6.08895 10C6.08895 10.3884 5.79348 10.7078 5.41512 10.7461L5.33895 10.75H5.33211C4.9179 10.75 4.58211 10.4142 4.58211 10C4.58211 9.58579 4.9179 9.25 5.33211 9.25H5.33895ZM10.672 9.25C11.0862 9.25 11.422 9.58579 11.422 10C11.422 10.4142 11.0862 10.75 10.672 10.75H10.6651C10.2511 10.7498 9.91512 10.4141 9.91512 10C9.91512 9.5859 10.2511 9.25018 10.6651 9.25H10.672ZM3.99911 2.75C3.67705 2.75 3.4153 3.01099 3.41512 3.33301V6.58301H12.5821V3.33301C12.5819 3.0111 12.321 2.75018 11.9991 2.75H3.99911ZM9.33211 3.25C9.74633 3.25 10.0821 3.58579 10.0821 4C10.0821 4.41421 9.74633 4.75 9.33211 4.75H6.66512C6.25106 4.74982 5.91512 4.41411 5.91512 4C5.91512 3.58589 6.25106 3.25018 6.66512 3.25H9.33211ZM14.0821 11.333C14.0821 12.2187 13.5284 12.973 12.7491 13.2744V14C12.7491 14.4141 12.4132 14.7498 11.9991 14.75C11.5849 14.75 11.2491 14.4142 11.2491 14V13.417H4.74911V14C4.74911 14.4141 4.41317 14.7498 3.99911 14.75C3.58489 14.75 3.24911 14.4142 3.24911 14V13.2754C2.46934 12.9742 1.91512 12.219 1.91512 11.333V5.21387L1.66708 5.33789C1.29669 5.52273 0.846371 5.37226 0.661216 5.00195C0.476074 4.63149 0.626713 4.18131 0.997153 3.99609L1.91512 3.53613V3.33301C1.9153 2.18256 2.84862 1.25 3.99911 1.25H11.9991C13.1494 1.25018 14.0819 2.18267 14.0821 3.33301V3.53613L15.0011 3.99609C15.3714 4.18142 15.5212 4.63156 15.336 5.00195C15.1508 5.37235 14.7006 5.52293 14.3302 5.33789L14.0821 5.21289V11.333Z", fill: "#303642" }) })), _jsx("defs", { children: _jsx("clipPath", __assign({ id: "clip0_7033_40084" }, { children: _jsx("rect", { width: "16", height: "16", fill: "white" }) })) })] })));
35
+ };
36
+ export default BusIcon;
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+ interface Calendar2IconProps {
3
+ size?: "xs" | "sm" | "md" | "lg" | "xl";
4
+ className?: string;
5
+ color?: string;
6
+ /**
7
+ * Couleur par défaut si aucune couleur n'est spécifiée
8
+ */
9
+ defaultColor?: string;
10
+ }
11
+ declare const Calendar2Icon: React.FC<Calendar2IconProps>;
12
+ export default Calendar2Icon;
@@ -0,0 +1,36 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ var Calendar2Icon = function (_a) {
14
+ var _b = _a.size, size = _b === void 0 ? "md" : _b, _c = _a.className, className = _c === void 0 ? "" : _c, color = _a.color;
15
+ var getSizeClasses = function () {
16
+ switch (size) {
17
+ case "xs":
18
+ return "w-3 h-3";
19
+ case "sm":
20
+ return "w-4 h-4";
21
+ case "md":
22
+ return "w-5 h-5";
23
+ case "lg":
24
+ return "w-6 h-6";
25
+ case "xl":
26
+ return "w-8 h-8";
27
+ default:
28
+ return "w-5 h-5";
29
+ }
30
+ };
31
+ var sizeClasses = getSizeClasses();
32
+ var colorClass = color ? "text-".concat(color) : "text-current";
33
+ var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
34
+ return (_jsx("svg", __assign({ className: classes, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M13.25 7.41699H2.75V13.334C2.75 13.656 3.01099 13.9168 3.33301 13.917H12.667C12.989 13.9168 13.25 13.656 13.25 13.334V7.41699ZM8.66699 11.251C9.08106 11.2512 9.41699 11.5869 9.41699 12.001C9.41682 12.4149 9.08095 12.7508 8.66699 12.751H4.66699C4.25289 12.751 3.91717 12.415 3.91699 12.001C3.91699 11.5868 4.25278 11.251 4.66699 11.251H8.66699ZM11.3398 11.251L11.417 11.2549C11.795 11.2934 12.0898 11.6128 12.0898 12.001C12.0897 12.3891 11.7949 12.7085 11.417 12.7471L11.3398 12.751H11.333C10.9191 12.7508 10.5832 12.4149 10.583 12.001C10.583 11.5869 10.9189 11.2512 11.333 11.251H11.3398ZM4.67285 8.58398L4.75 8.58789C5.1282 8.62629 5.42285 8.94565 5.42285 9.33398C5.42285 9.72231 5.1282 10.0417 4.75 10.0801L4.67285 10.084H4.66699C4.25278 10.084 3.91699 9.7482 3.91699 9.33398C3.91699 8.91977 4.25278 8.58398 4.66699 8.58398H4.67285ZM11.333 8.58398L11.4102 8.58789C11.7883 8.62636 12.083 8.94571 12.083 9.33398C12.083 9.72226 11.7883 10.0416 11.4102 10.0801L11.333 10.084H7.33301C6.91894 10.0838 6.58301 9.74809 6.58301 9.33398C6.58301 8.91988 6.91894 8.58416 7.33301 8.58398H11.333ZM9.91699 4.00098V3.41699H6.08301V4.00098C6.08283 4.41504 5.74711 4.75098 5.33301 4.75098C4.91905 4.7508 4.58318 4.41493 4.58301 4.00098V3.41699H3.33301C3.01099 3.41717 2.75 3.67892 2.75 4.00098V5.91699H13.25V4.00098C13.25 3.67892 12.989 3.41717 12.667 3.41699H11.417V4.00098C11.4168 4.41493 11.0809 4.7508 10.667 4.75098C10.2529 4.75098 9.91717 4.41504 9.91699 4.00098ZM14.75 13.334C14.75 14.4845 13.8174 15.4168 12.667 15.417H3.33301C2.18256 15.4168 1.25 14.4845 1.25 13.334V4.00098C1.25 2.85049 2.18256 1.91717 3.33301 1.91699H4.58301V1.33398C4.58301 0.919879 4.91894 0.58416 5.33301 0.583984C5.74722 0.583984 6.08301 0.919771 6.08301 1.33398V1.91699H9.91699V1.33398C9.91699 0.919771 10.2528 0.583984 10.667 0.583984C11.0811 0.58416 11.417 0.919879 11.417 1.33398V1.91699H12.667C13.8174 1.91717 14.75 2.85049 14.75 4.00098V13.334Z", fill: "currentColor" }) })));
35
+ };
36
+ export default Calendar2Icon;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ interface MapIconProps {
3
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
4
+ className?: string;
5
+ color?: string;
6
+ }
7
+ declare const MapIcon: React.FC<MapIconProps>;
8
+ export default MapIcon;
@@ -0,0 +1,36 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ var MapIcon = function (_a) {
14
+ var _b = _a.size, size = _b === void 0 ? 'md' : _b, _c = _a.className, className = _c === void 0 ? '' : _c, color = _a.color;
15
+ var getSizeClasses = function () {
16
+ switch (size) {
17
+ case 'xs':
18
+ return 'w-3 h-3';
19
+ case 'sm':
20
+ return 'w-4 h-4';
21
+ case 'md':
22
+ return 'w-5 h-5';
23
+ case 'lg':
24
+ return 'w-6 h-6';
25
+ case 'xl':
26
+ return 'w-8 h-8';
27
+ default:
28
+ return 'w-5 h-5';
29
+ }
30
+ };
31
+ var sizeClasses = getSizeClasses();
32
+ var colorClass = color ? "text-".concat(color) : 'text-current';
33
+ var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
34
+ return (_jsxs("svg", __assign({ className: classes, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [_jsx("g", __assign({ "clip-path": "url(#clip0_7033_40039)" }, { children: _jsx("path", { d: "M11.2483 5.33398C11.2483 4.47217 10.9064 3.6456 10.2971 3.03613C9.6876 2.42664 8.86022 2.08398 7.99827 2.08398C7.13645 2.08408 6.30982 2.42673 5.70042 3.03613C5.09104 3.64561 4.74827 4.47212 4.74827 5.33398C4.74827 6.29385 5.27536 7.37034 6.01975 8.38379C6.70202 9.31263 7.49819 10.0927 7.99827 10.5488C8.49845 10.0929 9.29531 9.31298 9.97776 8.38379C10.722 7.37039 11.2483 6.2939 11.2483 5.33398ZM2.11545 13.917H13.8821L12.6047 10.084H10.5403C9.9137 10.8175 9.29437 11.4056 8.90354 11.7559C8.88906 11.7688 8.87406 11.7812 8.85862 11.793C8.61164 11.9816 8.30904 12.084 7.99827 12.084C7.68762 12.0839 7.38578 11.9815 7.13889 11.793C7.12325 11.781 7.10764 11.769 7.09299 11.7559C6.70253 11.4056 6.08382 10.8175 5.45725 10.084H3.39573L2.11545 13.917ZM8.58225 5.33398C8.58225 5.01182 8.32043 4.75098 7.99827 4.75098C7.67627 4.75117 7.41526 5.01194 7.41526 5.33398C7.41526 5.65603 7.67627 5.91679 7.99827 5.91699C8.32043 5.91699 8.58225 5.65615 8.58225 5.33398ZM10.0823 5.33398C10.0823 6.48458 9.14886 7.41699 7.99827 7.41699C6.84784 7.41679 5.91526 6.48446 5.91526 5.33398C5.91526 4.18351 6.84784 3.25117 7.99827 3.25098C9.14886 3.25098 10.0823 4.18339 10.0823 5.33398ZM12.7395 5.60547C12.6711 6.66975 12.2087 7.6965 11.6506 8.58398H12.6643C12.9246 8.58392 13.1794 8.65556 13.4006 8.79004L13.4934 8.85156L13.5803 8.91992C13.7498 9.06348 13.8835 9.24462 13.9699 9.44922L14.009 9.55273L15.342 13.5527C15.4129 13.7655 15.4324 13.9922 15.3987 14.2139C15.3648 14.4357 15.2788 14.6471 15.1477 14.8291C15.0166 15.011 14.8442 15.1594 14.6448 15.2617C14.4451 15.364 14.2236 15.4168 13.9992 15.417H1.99827C1.77384 15.4169 1.5525 15.3641 1.35276 15.2617C1.15295 15.1593 0.980017 15.0103 0.848853 14.8281C0.717783 14.646 0.631562 14.4348 0.597876 14.2129C0.564278 13.9911 0.584401 13.7645 0.655493 13.5518L1.99143 9.55176L2.03049 9.44727C2.1314 9.20941 2.29628 9.00342 2.50706 8.85156L2.59983 8.79004C2.82065 8.65595 3.07444 8.58412 3.3342 8.58398H4.34592C3.78785 7.6966 3.32547 6.66961 3.25706 5.60547L3.24827 5.33398C3.24827 4.07429 3.74919 2.86637 4.63987 1.97559C5.53058 1.08487 6.73862 0.584082 7.99827 0.583984C9.25805 0.583984 10.4668 1.08479 11.3576 1.97559C12.2483 2.86635 12.7483 4.07435 12.7483 5.33398L12.7395 5.60547Z", fill: "#0F7173" }) })), _jsx("defs", { children: _jsx("clipPath", __assign({ id: "clip0_7033_40039" }, { children: _jsx("rect", { width: "16", height: "16", fill: "white" }) })) })] })));
35
+ };
36
+ export default MapIcon;
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ interface MicroIconProps {
3
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
4
+ className?: string;
5
+ color?: string;
6
+ /**
7
+ * Couleur par défaut si aucune couleur n'est spécifiée
8
+ */
9
+ defaultColor?: string;
10
+ }
11
+ declare const MicroIcon: React.FC<MicroIconProps>;
12
+ export default MicroIcon;
@@ -0,0 +1,36 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ var MicroIcon = function (_a) {
14
+ var _b = _a.size, size = _b === void 0 ? 'md' : _b, _c = _a.className, className = _c === void 0 ? '' : _c, color = _a.color;
15
+ var getSizeClasses = function () {
16
+ switch (size) {
17
+ case 'xs':
18
+ return 'w-3 h-3';
19
+ case 'sm':
20
+ return 'w-4 h-4';
21
+ case 'md':
22
+ return 'w-5 h-5';
23
+ case 'lg':
24
+ return 'w-6 h-6';
25
+ case 'xl':
26
+ return 'w-8 h-8';
27
+ default:
28
+ return 'w-5 h-5';
29
+ }
30
+ };
31
+ var sizeClasses = getSizeClasses();
32
+ var colorClass = color ? "text-".concat(color) : 'text-current';
33
+ var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
34
+ return (_jsx("svg", __assign({ className: classes, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M13.2483 4.66699C13.2481 3.24041 12.0919 2.08398 10.6653 2.08398C9.23869 2.08402 8.08246 3.24043 8.08228 4.66699C8.08228 6.09371 9.23858 7.25094 10.6653 7.25098C12.092 7.25098 13.2483 6.09373 13.2483 4.66699ZM11.4182 13.4951C11.7613 13.7267 11.8518 14.1928 11.6204 14.5361C11.3888 14.8793 10.9227 14.9697 10.5794 14.7383L11.4182 13.4951ZM3.98267 10.9131L4.42505 11.3555L8.58521 8.18066C7.96507 7.81271 7.45102 7.28567 7.09888 6.65527L3.98267 10.9131ZM14.7483 4.66699C14.7483 6.92215 12.9205 8.75098 10.6653 8.75098C10.5528 8.75097 10.4415 8.74428 10.3313 8.73535L5.27857 12.5928C5.00602 12.801 4.66671 12.9035 4.32447 12.8809C4.20997 12.8732 4.0983 12.8497 3.99048 12.8154C3.99552 12.9172 4.01271 13.0297 4.0481 13.1504C4.17793 13.5929 4.46693 13.8718 4.79224 13.9277C5.18515 13.9952 5.61486 13.8161 6.30591 13.4336C6.6149 13.2626 6.98393 13.0496 7.35767 12.8877C7.73847 12.7228 8.18027 12.584 8.66529 12.584C9.77777 12.584 10.6751 12.9943 11.4182 13.4951L10.9983 14.1162L10.5794 14.7383C9.98919 14.3406 9.38204 14.084 8.66529 14.084C8.46446 14.084 8.23608 14.1417 7.95435 14.2637C7.66545 14.3888 7.37916 14.5542 7.03248 14.7461C6.41186 15.0896 5.52676 15.5761 4.53834 15.4062C3.48252 15.2248 2.84601 14.3817 2.60865 13.5723C2.44363 13.0095 2.43217 12.3121 2.70826 11.7256C2.56708 11.5208 2.48052 11.2813 2.46119 11.0303C2.4353 10.6931 2.53101 10.3578 2.73072 10.085L6.58521 4.81738C6.58341 4.76758 6.58228 4.71724 6.58228 4.66699C6.58246 2.412 8.41026 0.584017 10.6653 0.583984C12.9203 0.583984 14.7481 2.41198 14.7483 4.66699Z", fill: "currentColor" }) })));
35
+ };
36
+ export default MicroIcon;
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ interface MoreVerticalProps {
3
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
4
+ className?: string;
5
+ color?: string;
6
+ /**
7
+ * Couleur par défaut si aucune couleur n'est spécifiée
8
+ */
9
+ defaultColor?: string;
10
+ }
11
+ declare const MoreVerticalIcon: React.FC<MoreVerticalProps>;
12
+ export default MoreVerticalIcon;
@@ -0,0 +1,36 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ var MoreVerticalIcon = function (_a) {
14
+ var _b = _a.size, size = _b === void 0 ? 'md' : _b, _c = _a.className, className = _c === void 0 ? '' : _c, color = _a.color;
15
+ var getSizeClasses = function () {
16
+ switch (size) {
17
+ case 'xs':
18
+ return 'w-3 h-3';
19
+ case 'sm':
20
+ return 'w-4 h-4';
21
+ case 'md':
22
+ return 'w-5 h-5';
23
+ case 'lg':
24
+ return 'w-6 h-6';
25
+ case 'xl':
26
+ return 'w-8 h-8';
27
+ default:
28
+ return 'w-5 h-5';
29
+ }
30
+ };
31
+ var sizeClasses = getSizeClasses();
32
+ var colorClass = color ? "text-".concat(color) : 'text-current';
33
+ var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
34
+ return (_jsx("svg", __assign({ className: classes, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M8 14.333C7.90795 14.333 7.83301 14.408 7.83301 14.5L7.8457 14.5645C7.87089 14.6245 7.93077 14.667 8 14.667C8.06904 14.6669 8.12815 14.6244 8.15332 14.5645L8.16602 14.5L8.15332 14.4355C8.1365 14.3955 8.10446 14.3636 8.06445 14.3467L8 14.333ZM8 9.66699C7.90806 9.66699 7.83318 9.74111 7.83301 9.83301L7.8457 9.89844C7.87102 9.95823 7.93098 10 8 10C8.0919 9.99982 8.16602 9.92495 8.16602 9.83301C8.16588 9.76407 8.12424 9.70492 8.06445 9.67969L8 9.66699ZM8 5C7.90795 5 7.83301 5.07495 7.83301 5.16699L7.8457 5.23145C7.87095 5.29138 7.93088 5.33301 8 5.33301C8.06894 5.33288 8.12808 5.29123 8.15332 5.23145L8.16602 5.16699L8.15332 5.10156C8.1364 5.06169 8.10438 5.02951 8.06445 5.0127L8 5ZM9.5 14.5C9.5 15.3283 8.82828 15.9998 8 16C7.22335 16 6.58463 15.4097 6.50781 14.6533L6.5 14.5L6.50781 14.3467C6.58462 13.5903 7.22335 13 8 13L8.15332 13.0078C8.90957 13.0848 9.5 13.7234 9.5 14.5ZM9.5 9.83301C9.5 10.6613 8.82828 11.3328 8 11.333C7.17157 11.333 6.5 10.6614 6.5 9.83301C6.50018 9.00473 7.17168 8.33301 8 8.33301L8.15332 8.34082C8.90948 8.41774 9.49984 9.05659 9.5 9.83301ZM9.5 5.16699C9.49982 5.99516 8.82817 6.66682 8 6.66699C7.22346 6.66699 6.58477 6.07654 6.50781 5.32031L6.5 5.16699L6.50781 5.01367C6.58448 4.25713 7.22324 3.66699 8 3.66699L8.15332 3.6748C8.90955 3.75177 9.5 4.39045 9.5 5.16699Z", fill: "currentColor" }) })));
35
+ };
36
+ export default MoreVerticalIcon;
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ interface NightIconProps {
3
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
4
+ className?: string;
5
+ color?: string;
6
+ /**
7
+ * Couleur par défaut si aucune couleur n'est spécifiée
8
+ */
9
+ defaultColor?: string;
10
+ }
11
+ declare const NightIcon: React.FC<NightIconProps>;
12
+ export default NightIcon;
@@ -0,0 +1,36 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ var NightIcon = function (_a) {
14
+ var _b = _a.size, size = _b === void 0 ? 'md' : _b, _c = _a.className, className = _c === void 0 ? '' : _c, color = _a.color;
15
+ var getSizeClasses = function () {
16
+ switch (size) {
17
+ case 'xs':
18
+ return 'w-3 h-3';
19
+ case 'sm':
20
+ return 'w-4 h-4';
21
+ case 'md':
22
+ return 'w-5 h-5';
23
+ case 'lg':
24
+ return 'w-6 h-6';
25
+ case 'xl':
26
+ return 'w-8 h-8';
27
+ default:
28
+ return 'w-5 h-5';
29
+ }
30
+ };
31
+ var sizeClasses = getSizeClasses();
32
+ var colorClass = color ? "text-".concat(color) : 'text-current';
33
+ var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
34
+ return (_jsx("svg", __assign({ className: classes, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M6.00764 5C6.00764 4.30117 6.15448 3.61779 6.43049 2.99023C5.9555 3.13903 5.50121 3.35522 5.08284 3.63477C4.21956 4.21164 3.54658 5.03196 3.14924 5.99121C2.752 6.95043 2.64787 8.00613 2.85042 9.02441C3.053 10.0428 3.55372 10.9777 4.28792 11.7119C5.02211 12.4461 5.95707 12.9468 6.97542 13.1494C7.9937 13.352 9.0494 13.2478 10.0086 12.8506C10.9679 12.4533 11.7882 11.7803 12.3651 10.917C12.6447 10.4984 12.8598 10.0436 13.0086 9.56836C12.3812 9.84424 11.6985 9.99219 10.9998 9.99219C9.6757 9.99219 8.40586 9.46657 7.46956 8.53027C6.53326 7.59397 6.00764 6.32413 6.00764 5ZM7.50764 5C7.50764 5.92631 7.87511 6.81473 8.5301 7.46973C9.1851 8.12472 10.0735 8.49219 10.9998 8.49219C11.9261 8.49219 12.8146 8.12472 13.4696 7.46973C13.684 7.25525 14.0067 7.1906 14.2869 7.30664C14.5672 7.42273 14.7498 7.69665 14.7498 8C14.7498 9.33502 14.3538 10.64 13.6121 11.75C12.8704 12.86 11.8162 13.7254 10.5828 14.2363C9.3496 14.7471 7.99262 14.8805 6.68342 14.6201C5.37405 14.3597 4.1704 13.7174 3.22639 12.7734C2.28239 11.8294 1.64016 10.6258 1.37971 9.31641C1.11938 8.00721 1.25271 6.65023 1.7635 5.41699C2.27439 4.18359 3.1398 3.12939 4.24983 2.3877C5.35986 1.646 6.66481 1.25 7.99983 1.25C8.30318 1.25 8.5771 1.43263 8.69319 1.71289C8.80923 1.99313 8.74458 2.31579 8.5301 2.53027C7.87511 3.18527 7.50764 4.07369 7.50764 5Z", fill: "currentColor" }) })));
35
+ };
36
+ export default NightIcon;
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import { ItemColProps } from '../../../molecules/TableServiceItem/ItemCol';
3
+ export interface RowExcursionProps {
4
+ data: {
5
+ languages?: string[];
6
+ duration?: string;
7
+ accessibility?: string;
8
+ transferType?: string;
9
+ };
10
+ }
11
+ export declare function RowExcursion(): import("react/jsx-runtime").JSX.Element;
12
+ export declare namespace RowExcursion {
13
+ var FirstCol: React.FC<Omit<ItemColProps, "status" | "serviceType">>;
14
+ var DetailsCol: React.FC<RowExcursionProps>;
15
+ }
16
+ export declare const DetailsCol: React.FC<RowExcursionProps>;
@@ -0,0 +1,28 @@
1
+ import { Fragment as _Fragment, jsx as _jsx } from "react/jsx-runtime";
2
+ import { DetailsCol as DetailsColComponent } from '../../../molecules/TableServiceItem/DetailsCol';
3
+ import { ItemCol } from '../../../molecules/TableServiceItem/ItemCol';
4
+ var clientType = {
5
+ standard: 'STD',
6
+ honeymooners: 'HMN',
7
+ vip: 'VIP',
8
+ vvip: 'VVIP',
9
+ };
10
+ export function RowExcursion() {
11
+ return _jsx(_Fragment, {});
12
+ }
13
+ export var DetailsCol = function (props) {
14
+ var _a;
15
+ var data = props.data;
16
+ return (_jsx(DetailsColComponent, { data: [
17
+ { icon: 'micro', value: "Languages: ".concat((_a = data.languages) === null || _a === void 0 ? void 0 : _a.join(' and ')) },
18
+ { icon: 'stopwatch', value: "Duration: ".concat(data.duration) },
19
+ { icon: 'user', value: "Difficulty: ".concat(data.accessibility) },
20
+ { icon: 'bus', value: "Type: ".concat(data.transferType) },
21
+ ] }));
22
+ };
23
+ var FirstCol = function (props) {
24
+ var serviceName = props.serviceName, offers = props.offers;
25
+ return (_jsx(ItemCol, { serviceType: "Excursion", serviceName: serviceName, offers: offers, iconName: "map-pin" }));
26
+ };
27
+ RowExcursion.FirstCol = FirstCol;
28
+ RowExcursion.DetailsCol = DetailsCol;
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ interface StopWatchIconProps {
3
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
4
+ className?: string;
5
+ color?: string;
6
+ /**
7
+ * Couleur par défaut si aucune couleur n'est spécifiée
8
+ */
9
+ defaultColor?: string;
10
+ }
11
+ declare const StopWatchIcon: React.FC<StopWatchIconProps>;
12
+ export default StopWatchIcon;
@@ -0,0 +1,36 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ var StopWatchIcon = function (_a) {
14
+ var _b = _a.size, size = _b === void 0 ? 'md' : _b, _c = _a.className, className = _c === void 0 ? '' : _c, color = _a.color;
15
+ var getSizeClasses = function () {
16
+ switch (size) {
17
+ case 'xs':
18
+ return 'w-3 h-3';
19
+ case 'sm':
20
+ return 'w-4 h-4';
21
+ case 'md':
22
+ return 'w-5 h-5';
23
+ case 'lg':
24
+ return 'w-6 h-6';
25
+ case 'xl':
26
+ return 'w-8 h-8';
27
+ default:
28
+ return 'w-5 h-5';
29
+ }
30
+ };
31
+ var sizeClasses = getSizeClasses();
32
+ var colorClass = color ? "text-".concat(color) : 'text-current';
33
+ var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
34
+ return (_jsx("svg", __assign({ className: classes, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M12.585 9.33398C12.585 6.80268 10.5323 4.75098 8.00098 4.75098C5.46982 4.75115 3.41797 6.80279 3.41797 9.33398C3.41797 11.8652 5.46982 13.9168 8.00098 13.917C10.5323 13.917 12.585 11.8653 12.585 9.33398ZM9.4707 6.80371C9.76354 6.51087 10.2383 6.51098 10.5312 6.80371C10.8241 7.0966 10.8241 7.57136 10.5312 7.86426L8.53125 9.86426C8.23834 10.157 7.76354 10.1571 7.4707 9.86426C7.17803 9.57141 7.17803 9.09656 7.4707 8.80371L9.4707 6.80371ZM9.33496 0.583984L9.41113 0.587891C9.78941 0.626215 10.085 0.945597 10.085 1.33398C10.085 1.72237 9.78941 2.04175 9.41113 2.08008L9.33496 2.08398H6.66797C6.25376 2.08398 5.91797 1.7482 5.91797 1.33398C5.91797 0.919771 6.25376 0.583984 6.66797 0.583984H9.33496ZM14.085 9.33398C14.085 12.6937 11.3607 15.417 8.00098 15.417C4.64139 15.4168 1.91797 12.6936 1.91797 9.33398C1.91797 5.97436 4.64139 3.25115 8.00098 3.25098C11.3607 3.25098 14.085 5.97425 14.085 9.33398Z", fill: "currentColor" }) })));
35
+ };
36
+ export default StopWatchIcon;
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ interface UtensilsIconProps {
3
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
4
+ className?: string;
5
+ color?: string;
6
+ /**
7
+ * Couleur par défaut si aucune couleur n'est spécifiée
8
+ */
9
+ defaultColor?: string;
10
+ }
11
+ declare const UtensilsIcon: React.FC<UtensilsIconProps>;
12
+ export default UtensilsIcon;
@@ -0,0 +1,36 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ var UtensilsIcon = function (_a) {
14
+ var _b = _a.size, size = _b === void 0 ? 'md' : _b, _c = _a.className, className = _c === void 0 ? '' : _c, color = _a.color;
15
+ var getSizeClasses = function () {
16
+ switch (size) {
17
+ case 'xs':
18
+ return 'w-3 h-3';
19
+ case 'sm':
20
+ return 'w-4 h-4';
21
+ case 'md':
22
+ return 'w-5 h-5';
23
+ case 'lg':
24
+ return 'w-6 h-6';
25
+ case 'xl':
26
+ return 'w-8 h-8';
27
+ default:
28
+ return 'w-5 h-5';
29
+ }
30
+ };
31
+ var sizeClasses = getSizeClasses();
32
+ var colorClass = color ? "text-".concat(color) : 'text-current';
33
+ var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
34
+ return (_jsx("svg", __assign({ className: classes, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M3.91699 14.667V8.08398H3.33301C2.18572 8.08381 1.25018 7.14827 1.25 6.00098V1.33398C1.25 0.919771 1.58579 0.583984 2 0.583984C2.41421 0.583984 2.75 0.919771 2.75 1.33398V6.00098C2.75018 6.31984 3.01414 6.5838 3.33301 6.58398H3.91699V1.33398C3.91699 0.919771 4.25278 0.583984 4.66699 0.583984C5.08106 0.58416 5.41699 0.919879 5.41699 1.33398V6.58398H6C6.15463 6.58398 6.30273 6.52238 6.41211 6.41309C6.52143 6.30377 6.58292 6.15557 6.58301 6.00098V1.33398C6.58301 0.919879 6.91894 0.58416 7.33301 0.583984C7.74722 0.583984 8.08301 0.919771 8.08301 1.33398V6.00098C8.08292 6.55339 7.86328 7.08301 7.47266 7.47363C7.08197 7.86423 6.55246 8.08398 6 8.08398H5.41699V14.667C5.41699 15.0811 5.08106 15.4168 4.66699 15.417C4.25278 15.417 3.91699 15.0812 3.91699 14.667ZM13.25 14.667V10.751H12C10.8525 10.751 9.91699 9.81454 9.91699 8.66699V4.66699C9.91708 3.5843 10.3468 2.54594 11.1123 1.78027C11.8781 1.0145 12.917 0.583984 14 0.583984L14.1475 0.598633C14.2914 0.627508 14.4249 0.698334 14.5303 0.803711C14.6709 0.944363 14.75 1.13507 14.75 1.33398V14.667C14.75 15.0812 14.4142 15.417 14 15.417C13.5858 15.417 13.25 15.0812 13.25 14.667ZM11.417 8.66699C11.417 8.98611 11.6809 9.25098 12 9.25098H13.25V2.19434C12.847 2.31656 12.476 2.53763 12.1729 2.84082C11.6887 3.32518 11.4171 3.98212 11.417 4.66699V8.66699Z", fill: "#303642" }) })));
35
+ };
36
+ export default UtensilsIcon;
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ interface WalletIconProps {
3
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
4
+ className?: string;
5
+ color?: string;
6
+ /**
7
+ * Couleur par défaut si aucune couleur n'est spécifiée
8
+ */
9
+ defaultColor?: string;
10
+ }
11
+ declare const WalletIcon: React.FC<WalletIconProps>;
12
+ export default WalletIcon;