@terraware/web-components 4.2.12 → 4.2.14-rc.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 (304) hide show
  1. package/components/AntSwitch/index.js +8 -14
  2. package/components/Autocomplete/Autocomplete.js +67 -70
  3. package/components/Badge/index.js +16 -20
  4. package/components/BusySpinner/index.js +30 -35
  5. package/components/Button/Button.js +23 -27
  6. package/components/Button/button.test.js +8 -10
  7. package/components/Checkbox.js +10 -19
  8. package/components/Confirm/index.js +44 -51
  9. package/components/DatePicker/DatePicker.js +116 -117
  10. package/components/DialogBox/DialogBox.js +76 -66
  11. package/components/Divisor.js +15 -20
  12. package/components/Dropdown.js +54 -61
  13. package/components/EditableTable/index.js +129 -135
  14. package/components/ErrorBox/ErrorBox.js +37 -36
  15. package/components/FileChooser/index.js +73 -77
  16. package/components/FormBottomBar/index.js +63 -69
  17. package/components/Icon/Icon.js +14 -21
  18. package/components/Icon/icons/index.d.ts +1 -1
  19. package/components/Icon/icons/index.d.ts.map +1 -1
  20. package/components/Icon/icons/index.js +251 -255
  21. package/components/IconTooltip/index.js +29 -34
  22. package/components/Map/MapBox.js +199 -220
  23. package/components/Map/MapContainer.js +14 -18
  24. package/components/Map/MapDateSliderControl.js +44 -46
  25. package/components/Map/MapDrawer.js +32 -33
  26. package/components/Map/MapLegend.js +96 -95
  27. package/components/Map/MapViewStyleControl.js +38 -48
  28. package/components/Map/ReactMapboxWrapper.js +2 -9
  29. package/components/Map/index.js +47 -55
  30. package/components/Map/types.js +2 -8
  31. package/components/Map/useMaintainLayerOrder.js +4 -11
  32. package/components/Markdown/index.js +14 -21
  33. package/components/Message/Message.js +59 -51
  34. package/components/MultiSelect/MultiSelect.test.js +22 -24
  35. package/components/MultiSelect/index.js +73 -69
  36. package/components/Navbar/NavFooter.js +8 -13
  37. package/components/Navbar/NavItem.js +43 -37
  38. package/components/Navbar/NavSection.js +13 -17
  39. package/components/Navbar/Navbar.js +35 -38
  40. package/components/Navbar/SubNavbar.js +8 -13
  41. package/components/Note.js +14 -19
  42. package/components/OverlayModal/OverlayModal.js +36 -37
  43. package/components/PageForm/index.js +30 -35
  44. package/components/PhotoChooser/index.js +93 -98
  45. package/components/Pill/index.js +29 -31
  46. package/components/PillList/index.js +16 -22
  47. package/components/PlacementWrapper/index.js +20 -25
  48. package/components/PopoverMenu/Popover.js +33 -37
  49. package/components/PopoverMenu/index.js +41 -46
  50. package/components/PopoverMultiSelect/index.js +18 -21
  51. package/components/ProgressCircle/ProgressCircle.js +23 -26
  52. package/components/RadioButton.js +7 -14
  53. package/components/Select/Select.js +8 -13
  54. package/components/Select/SelectT.js +110 -108
  55. package/components/Separator/index.js +8 -14
  56. package/components/Size.js +1 -5
  57. package/components/Slider/index.js +7 -13
  58. package/components/SummaryBox.js +36 -39
  59. package/components/Tabs/index.js +75 -77
  60. package/components/TextTruncated/index.js +64 -65
  61. package/components/Textfield/Textfield.js +100 -95
  62. package/components/Textfield/TruncatedTextArea.js +44 -46
  63. package/components/TimelineSlider/TimelineMarker.js +24 -28
  64. package/components/TimelineSlider/TimelineRail.js +5 -11
  65. package/components/TimelineSlider/index.js +47 -51
  66. package/components/Tooltip/Tooltip.js +21 -26
  67. package/components/ViewPhotosDialog/index.js +58 -62
  68. package/components/VirtualWalkthrough/Annotation.d.ts +41 -0
  69. package/components/VirtualWalkthrough/Annotation.d.ts.map +1 -0
  70. package/components/VirtualWalkthrough/Annotation.js +197 -0
  71. package/components/VirtualWalkthrough/AnnotationEditPane.d.ts +20 -0
  72. package/components/VirtualWalkthrough/AnnotationEditPane.d.ts.map +1 -0
  73. package/components/VirtualWalkthrough/AnnotationEditPane.js +136 -0
  74. package/components/VirtualWalkthrough/AnnotationPanel.d.ts +13 -0
  75. package/components/VirtualWalkthrough/AnnotationPanel.d.ts.map +1 -0
  76. package/components/VirtualWalkthrough/AnnotationPanel.js +196 -0
  77. package/components/VirtualWalkthrough/Application.d.ts +9 -0
  78. package/components/VirtualWalkthrough/Application.d.ts.map +1 -0
  79. package/components/VirtualWalkthrough/Application.js +32 -0
  80. package/components/VirtualWalkthrough/AutoRotator.d.ts +109 -0
  81. package/components/VirtualWalkthrough/AutoRotator.d.ts.map +1 -0
  82. package/components/VirtualWalkthrough/AutoRotator.js +217 -0
  83. package/components/VirtualWalkthrough/BlockingSpinner.d.ts +3 -0
  84. package/components/VirtualWalkthrough/BlockingSpinner.d.ts.map +1 -0
  85. package/components/VirtualWalkthrough/BlockingSpinner.js +27 -0
  86. package/components/VirtualWalkthrough/BoundaryRing.d.ts +9 -0
  87. package/components/VirtualWalkthrough/BoundaryRing.d.ts.map +1 -0
  88. package/components/VirtualWalkthrough/BoundaryRing.js +33 -0
  89. package/components/VirtualWalkthrough/CameraInfo.d.ts +16 -0
  90. package/components/VirtualWalkthrough/CameraInfo.d.ts.map +1 -0
  91. package/components/VirtualWalkthrough/CameraInfo.js +88 -0
  92. package/components/VirtualWalkthrough/ControlsInfoPane.d.ts +37 -0
  93. package/components/VirtualWalkthrough/ControlsInfoPane.d.ts.map +1 -0
  94. package/components/VirtualWalkthrough/ControlsInfoPane.js +196 -0
  95. package/components/VirtualWalkthrough/GradientSky.d.ts +9 -0
  96. package/components/VirtualWalkthrough/GradientSky.d.ts.map +1 -0
  97. package/components/VirtualWalkthrough/GradientSky.js +73 -0
  98. package/components/VirtualWalkthrough/SplatControls.d.ts +50 -0
  99. package/components/VirtualWalkthrough/SplatControls.d.ts.map +1 -0
  100. package/components/VirtualWalkthrough/SplatControls.js +252 -0
  101. package/components/VirtualWalkthrough/SplatCrop.d.ts +8 -0
  102. package/components/VirtualWalkthrough/SplatCrop.d.ts.map +1 -0
  103. package/components/VirtualWalkthrough/SplatCrop.js +18 -0
  104. package/components/VirtualWalkthrough/SplatFadeCrop.d.ts +8 -0
  105. package/components/VirtualWalkthrough/SplatFadeCrop.d.ts.map +1 -0
  106. package/components/VirtualWalkthrough/SplatFadeCrop.js +18 -0
  107. package/components/VirtualWalkthrough/SplatModel.d.ts +15 -0
  108. package/components/VirtualWalkthrough/SplatModel.d.ts.map +1 -0
  109. package/components/VirtualWalkthrough/SplatModel.js +60 -0
  110. package/components/VirtualWalkthrough/SplatRevealRain.d.ts +18 -0
  111. package/components/VirtualWalkthrough/SplatRevealRain.d.ts.map +1 -0
  112. package/components/VirtualWalkthrough/SplatRevealRain.js +38 -0
  113. package/components/VirtualWalkthrough/TfAnnotationManager.d.ts +110 -0
  114. package/components/VirtualWalkthrough/TfAnnotationManager.d.ts.map +1 -0
  115. package/components/VirtualWalkthrough/TfAnnotationManager.js +368 -0
  116. package/components/VirtualWalkthrough/TfXrNavigation.d.ts +15 -0
  117. package/components/VirtualWalkthrough/TfXrNavigation.d.ts.map +1 -0
  118. package/components/VirtualWalkthrough/TfXrNavigation.js +24 -0
  119. package/components/VirtualWalkthrough/annotation-styles.css +5 -0
  120. package/components/VirtualWalkthrough/application-styles.css +4 -0
  121. package/components/VirtualWalkthrough/boundary-ring.d.ts +47 -0
  122. package/components/VirtualWalkthrough/boundary-ring.d.ts.map +1 -0
  123. package/components/VirtualWalkthrough/boundary-ring.js +125 -0
  124. package/components/VirtualWalkthrough/boundary-ring.test.js +109 -0
  125. package/components/VirtualWalkthrough/groundPlane.d.ts +14 -0
  126. package/components/VirtualWalkthrough/groundPlane.d.ts.map +1 -0
  127. package/components/VirtualWalkthrough/groundPlane.js +47 -0
  128. package/components/VirtualWalkthrough/groundPlane.test.js +45 -0
  129. package/components/VirtualWalkthrough/gsplat-fade-crop-effect.d.ts +19 -0
  130. package/components/VirtualWalkthrough/gsplat-fade-crop-effect.d.ts.map +1 -0
  131. package/components/VirtualWalkthrough/gsplat-fade-crop-effect.js +119 -0
  132. package/components/VirtualWalkthrough/walkthrough-camera.d.ts +77 -0
  133. package/components/VirtualWalkthrough/walkthrough-camera.d.ts.map +1 -0
  134. package/components/VirtualWalkthrough/walkthrough-camera.js +320 -0
  135. package/components/svg/BlobbyGrayIconImage.js +36 -41
  136. package/components/svg/BlobbyGrayIconImport.js +36 -41
  137. package/components/svg/BlobbyGrayIconUploadToTheCloud.js +36 -41
  138. package/components/svg/BlobbyIconCloudChecked.js +161 -158
  139. package/components/svg/BlobbyIconExportOrUploadPhoto.js +161 -158
  140. package/components/svg/BlobbyIconFolder.js +161 -158
  141. package/components/svg/BlobbyIconGraphReport.js +161 -158
  142. package/components/svg/BlobbyIconHappy.js +161 -158
  143. package/components/svg/BlobbyIconHeartMonitor.js +161 -158
  144. package/components/svg/BlobbyIconLeaf.js +161 -158
  145. package/components/svg/BlobbyIconLibrary.js +161 -158
  146. package/components/svg/BlobbyIconNursery.js +163 -160
  147. package/components/svg/BlobbyIconOrganization.js +161 -158
  148. package/components/svg/BlobbyIconParchment.js +161 -158
  149. package/components/svg/BlobbyIconPeople.js +161 -158
  150. package/components/svg/BlobbyIconSeedBank.js +161 -158
  151. package/components/svg/BlobbyIconSeedling.js +161 -158
  152. package/components/svg/BlobbyIconSeeds.js +161 -158
  153. package/components/svg/BlobbyIconSite.js +164 -161
  154. package/components/svg/BlobbyIconSparkles.js +161 -158
  155. package/components/svg/BlobbyIconWrench.js +161 -158
  156. package/components/svg/Bug.js +18 -27
  157. package/components/svg/Calendar.js +18 -27
  158. package/components/svg/CaretDown.js +18 -27
  159. package/components/svg/CaretLeft.js +18 -27
  160. package/components/svg/CaretRight.js +18 -27
  161. package/components/svg/CaretUp.js +18 -27
  162. package/components/svg/ChevronDown.js +18 -27
  163. package/components/svg/ChevronUp.js +18 -27
  164. package/components/svg/Close.js +18 -27
  165. package/components/svg/Critical.js +18 -27
  166. package/components/svg/Edit.js +161 -158
  167. package/components/svg/Error.js +18 -27
  168. package/components/svg/Filter.js +18 -27
  169. package/components/svg/Folder.js +18 -27
  170. package/components/svg/Help.js +18 -27
  171. package/components/svg/Home.js +18 -27
  172. package/components/svg/IconAdd.js +18 -27
  173. package/components/svg/IconArrowRight.js +19 -28
  174. package/components/svg/IconBusinessNetwork.js +18 -27
  175. package/components/svg/IconCalendar.d.ts +1 -1
  176. package/components/svg/IconCalendar.d.ts.map +1 -1
  177. package/components/svg/IconCalendar.js +18 -27
  178. package/components/svg/IconCancel.js +18 -27
  179. package/components/svg/IconChargingBattery.js +18 -27
  180. package/components/svg/IconChecklist.js +19 -28
  181. package/components/svg/IconCheckmark.js +18 -27
  182. package/components/svg/IconCoinInHand.js +18 -27
  183. package/components/svg/IconColumns.js +18 -27
  184. package/components/svg/IconComment.js +18 -27
  185. package/components/svg/IconDashboard.js +18 -27
  186. package/components/svg/IconDataMigration.js +18 -27
  187. package/components/svg/IconDocument.d.ts +8 -0
  188. package/components/svg/IconDocument.d.ts.map +1 -0
  189. package/components/svg/IconDocument.js +21 -0
  190. package/components/svg/IconDownloadFromTheCloud.js +19 -28
  191. package/components/svg/IconEdit.js +19 -28
  192. package/components/svg/IconExpand.js +19 -28
  193. package/components/svg/IconExport.js +18 -27
  194. package/components/svg/IconExternalLink.js +18 -27
  195. package/components/svg/IconEye.js +18 -27
  196. package/components/svg/IconEyeOff.js +18 -27
  197. package/components/svg/IconFile.js +18 -27
  198. package/components/svg/IconFolder.js +18 -27
  199. package/components/svg/IconFullScreen.js +18 -27
  200. package/components/svg/IconFutures.js +18 -27
  201. package/components/svg/IconGraphReport.js +18 -27
  202. package/components/svg/IconHeartMonitor.js +18 -27
  203. package/components/svg/IconHelp.js +19 -28
  204. package/components/svg/IconHistory.js +18 -27
  205. package/components/svg/IconImport.js +18 -27
  206. package/components/svg/IconIndex.js +18 -27
  207. package/components/svg/IconLayers.js +18 -27
  208. package/components/svg/IconLibrary.js +18 -27
  209. package/components/svg/IconList.js +18 -27
  210. package/components/svg/IconLivePlant.js +18 -27
  211. package/components/svg/IconLocations.js +18 -27
  212. package/components/svg/IconMail.js +18 -27
  213. package/components/svg/IconManager.js +18 -27
  214. package/components/svg/IconMarker.js +18 -27
  215. package/components/svg/IconMenu.js +18 -27
  216. package/components/svg/IconMenuHorizontal.js +18 -27
  217. package/components/svg/IconModule.js +18 -27
  218. package/components/svg/IconMyLocation.js +18 -27
  219. package/components/svg/IconNote.js +19 -28
  220. package/components/svg/IconNursery.js +18 -27
  221. package/components/svg/IconOrg.js +18 -27
  222. package/components/svg/IconParchment.js +18 -27
  223. package/components/svg/IconPhoto.js +18 -27
  224. package/components/svg/IconPlantsFilled.js +18 -27
  225. package/components/svg/IconRedo.js +18 -27
  226. package/components/svg/IconRestorationSite.js +18 -27
  227. package/components/svg/IconSeedBank.js +18 -27
  228. package/components/svg/IconSeedling.js +18 -27
  229. package/components/svg/IconSettings.js +18 -27
  230. package/components/svg/IconSlice.js +18 -27
  231. package/components/svg/IconSubmit.js +18 -27
  232. package/components/svg/IconSubtract.js +19 -28
  233. package/components/svg/IconSynced.js +18 -27
  234. package/components/svg/IconTrashCan.js +18 -27
  235. package/components/svg/IconTreasureMap.js +18 -27
  236. package/components/svg/IconUnavailable.js +18 -27
  237. package/components/svg/IconUndo.js +18 -27
  238. package/components/svg/IconVariable.js +18 -27
  239. package/components/svg/IconVideo.js +19 -28
  240. package/components/svg/IconWifi.js +18 -27
  241. package/components/svg/Info.js +18 -27
  242. package/components/svg/Key.js +18 -27
  243. package/components/svg/Leaf.js +18 -27
  244. package/components/svg/Lock.js +18 -27
  245. package/components/svg/Logo.js +40 -45
  246. package/components/svg/MenuVertical.js +18 -27
  247. package/components/svg/Notification.js +18 -27
  248. package/components/svg/Person.js +18 -27
  249. package/components/svg/Plus.js +18 -27
  250. package/components/svg/RestorationSite.js +18 -27
  251. package/components/svg/Search.js +18 -27
  252. package/components/svg/Seeds.js +18 -27
  253. package/components/svg/Site.js +18 -27
  254. package/components/svg/Sparkles.js +18 -27
  255. package/components/svg/Species.js +18 -27
  256. package/components/svg/Species2.js +161 -158
  257. package/components/svg/Spinner.js +27 -36
  258. package/components/svg/Star.js +18 -27
  259. package/components/svg/Success.js +18 -27
  260. package/components/svg/SuccessFilled.js +18 -27
  261. package/components/svg/TerrawareLogoDesktop.js +44 -49
  262. package/components/svg/TerrawareLogoMobile.js +20 -29
  263. package/components/svg/Touchscreen.js +18 -27
  264. package/components/svg/UploadCloud.js +161 -158
  265. package/components/svg/Warning.js +18 -27
  266. package/components/svg/WelcomeClipboard.js +130 -135
  267. package/components/svg/index.d.ts +1 -0
  268. package/components/svg/index.d.ts.map +1 -1
  269. package/components/svg/index.js +127 -888
  270. package/components/table/EnhancedTableToolbar.js +45 -47
  271. package/components/table/EnhancedTableToolbarV2.js +18 -26
  272. package/components/table/TableCellRenderer.js +137 -143
  273. package/components/table/TableHeader.js +45 -47
  274. package/components/table/TableHeaderItem.js +65 -64
  275. package/components/table/density.js +3 -11
  276. package/components/table/index.js +225 -218
  277. package/components/table/sort.js +8 -18
  278. package/components/table/sort.test.js +6 -8
  279. package/components/table/types.js +1 -5
  280. package/components/types/index.js +1 -5
  281. package/hooks/useBoolean.d.ts +4 -0
  282. package/hooks/useBoolean.d.ts.map +1 -0
  283. package/hooks/useBoolean.js +12 -0
  284. package/hooks/useCameraPosition.d.ts +8 -0
  285. package/hooks/useCameraPosition.d.ts.map +1 -0
  286. package/hooks/useCameraPosition.js +33 -0
  287. package/index.js +57 -398
  288. package/license-report.html +1 -1
  289. package/package.json +10 -3
  290. package/style-dictionary-dist/TerrawareTheme.js +1 -7
  291. package/theme.js +7 -14
  292. package/utils/color.d.ts +2 -0
  293. package/utils/color.d.ts.map +1 -0
  294. package/utils/color.js +14 -0
  295. package/utils/date.js +13 -24
  296. package/utils/date.test.js +40 -43
  297. package/utils/index.js +5 -53
  298. package/utils/preventDefaultEvent.js +1 -7
  299. package/utils/text.js +2 -9
  300. package/utils/text.test.js +9 -11
  301. package/utils/useDeviceInfo.js +10 -16
  302. package/virtualWalkthrough.d.ts +31 -0
  303. package/virtualWalkthrough.d.ts.map +1 -0
  304. package/virtualWalkthrough.js +28 -0
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgPlus = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 24 24",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgPlus = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 24 24",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M11.988 2.49a.75.75 0 0 0-.738.76v8h-8a.751.751 0 1 0 0 1.5h8v8a.751.751 0 1 0 1.5 0v-8h8a.75.75 0 1 0 0-1.5h-8v-8a.75.75 0 0 0-.762-.76"
26
- }));
27
- };
28
- var _default = exports.default = SvgPlus;
17
+ })]
18
+ });
19
+ export default SvgPlus;
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgRestorationSite = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 24 24",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgRestorationSite = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 24 24",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M12 1.5c-.775 0-1.495.247-1.999.751a2.44 2.44 0 0 0-.54.86c-.226-.069-.453-.139-.679-.134a2.47 2.47 0 0 0-1.596.653c-.597.537-.94 1.374-.897 2.264-.848.058-1.617.463-2.065 1.12-.476.698-.55 1.655-.162 2.54-.35.19-.648.453-.876.752a3.38 3.38 0 0 0-.686 2.047c0 .94.404 1.88 1.185 2.512.614.498 1.493.68 2.459.633.144.748.429 1.445.966 1.953.718.678 1.734 1.049 2.89 1.049v.75c0 .366-.122 1.021-.404 1.485s-.618.765-1.346.765a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5c-.728 0-1.064-.3-1.346-.765-.282-.464-.404-1.119-.404-1.485v-.75c1.156 0 2.172-.37 2.89-1.049.537-.508.822-1.205.966-1.953.966.047 1.845-.135 2.46-.633a3.23 3.23 0 0 0 1.184-2.513c0-.722-.23-1.45-.686-2.046a2.8 2.8 0 0 0-.876-.752c.388-.885.314-1.842-.162-2.54-.448-.657-1.217-1.062-2.065-1.12.043-.89-.3-1.727-.896-2.264a2.47 2.47 0 0 0-1.597-.653c-.226-.005-.453.066-.679.133a2.44 2.44 0 0 0-.54-.859C13.495 1.747 12.775 1.5 12 1.5M12 3c.475 0 .755.128.938.312.183.183.312.463.312.938a.75.75 0 0 0 1.28.53c.25-.25.454-.307.659-.303a.98.98 0 0 1 .621.268c.39.35.624.96.27 1.67a.75.75 0 0 0 .934 1.037c.701-.263 1.244 0 1.522.408s.357.937-.316 1.61a.75.75 0 0 0 .53 1.28c.376 0 .641.163.873.467.232.303.377.751.377 1.135 0 .51-.22 1.018-.628 1.348-.407.33-1.012.528-1.959.318a.75.75 0 0 0-.913.732c0 .696-.233 1.227-.64 1.611-.407.385-1.016.639-1.86.639v-.75a.751.751 0 1 0-1.5 0v3c0 .63.146 1.468.616 2.25h-2.232c.47-.782.616-1.62.616-2.25v-3a.75.75 0 1 0-1.5 0V17c-.844 0-1.453-.254-1.86-.639-.407-.384-.64-.915-.64-1.611a.75.75 0 0 0-.913-.732c-.947.21-1.552.012-1.96-.318A1.74 1.74 0 0 1 4 12.352c0-.384.145-.832.377-1.135s.497-.467.873-.467a.75.75 0 0 0 .53-1.28c-.673-.673-.594-1.202-.316-1.61.278-.407.82-.671 1.522-.408a.75.75 0 0 0 .935-1.037c-.355-.71-.12-1.32.268-1.67a.98.98 0 0 1 .623-.268c.204-.004.408.053.658.303a.75.75 0 0 0 1.28-.53c0-.475.129-.755.312-.938.183-.184.463-.312.938-.312"
26
- }));
27
- };
28
- var _default = exports.default = SvgRestorationSite;
17
+ })]
18
+ });
19
+ export default SvgRestorationSite;
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgSearch = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 24 24",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgSearch = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 24 24",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M10.25 3C6.255 3 3 6.255 3 10.25s3.255 7.25 7.25 7.25c1.728 0 3.317-.61 4.565-1.625l4.905 4.905a.75.75 0 1 0 1.06-1.06l-4.905-4.905A7.2 7.2 0 0 0 17.5 10.25C17.5 6.255 14.245 3 10.25 3m0 1.5A5.74 5.74 0 0 1 16 10.25a5.73 5.73 0 0 1-1.604 3.985.8.8 0 0 0-.16.16A5.73 5.73 0 0 1 10.25 16a5.74 5.74 0 0 1-5.75-5.75 5.74 5.74 0 0 1 5.75-5.75"
26
- }));
27
- };
28
- var _default = exports.default = SvgSearch;
17
+ })]
18
+ });
19
+ export default SvgSearch;
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgSeeds = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 24 24",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgSeeds = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 24 24",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M6 4C3.862 4 2 5.502 2 7.5S3.862 11 6 11s4-1.502 4-3.5S8.138 4 6 4m0 1.5c1.452 0 2.5.96 2.5 2s-1.048 2-2.5 2-2.5-.96-2.5-2 1.048-2 2.5-2m11.427.74c-.835.014-1.637.314-2.255.932-1.413 1.413-1.158 3.79.353 5.303 1.512 1.511 3.89 1.766 5.303.353s1.158-3.79-.353-5.303c-.85-.85-1.975-1.303-3.048-1.285m.287 1.508c.575.052 1.187.325 1.7.838 1.027 1.027 1.089 2.446.354 3.182-.736.735-2.155.673-3.182-.354s-1.089-2.446-.354-3.182c.368-.367.907-.536 1.482-.484m-9.649 4.163c-1.372.014-2.643.688-3.21 1.94-.823 1.82.254 3.956 2.202 4.838a4.4 4.4 0 0 0 2.363.363C10.09 20.244 11.46 21 13 21c2.138 0 4-1.502 4-3.5S15.138 14 13 14c-.363 0-.713.047-1.05.127a4.37 4.37 0 0 0-2.008-1.817 4.5 4.5 0 0 0-1.877-.399m-.191 1.504c.454-.04.954.038 1.45.263 1.323.598 1.882 1.905 1.453 2.852-.428.948-1.778 1.39-3.101.791s-1.883-1.905-1.454-2.852c.268-.592.896-.987 1.652-1.054M13 15.5c1.452 0 2.5.96 2.5 2s-1.048 2-2.5 2c-.918 0-1.683-.406-2.113-.95a3.15 3.15 0 0 0 1.258-1.402c.233-.516.309-1.057.26-1.588q.285-.059.595-.06"
26
- }));
27
- };
28
- var _default = exports.default = SvgSeeds;
17
+ })]
18
+ });
19
+ export default SvgSeeds;
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgSite = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 24 24",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgSite = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 24 24",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M9.271 4a.75.75 0 0 0-.462.144l-5.5 4A.75.75 0 0 0 3 8.75v10.5a.75.75 0 0 0 1.191.606l5.059-3.678 5.059 3.678a.75.75 0 0 0 .882 0l5.5-4A.75.75 0 0 0 21 15.25V4.75a.75.75 0 0 0-1.191-.606L14.75 7.822 9.691 4.144A.75.75 0 0 0 9.271 4M9.25 5.678l5.059 3.678a.75.75 0 0 0 .882 0L19.5 6.223v8.645l-4.75 3.454-5.059-3.678a.75.75 0 0 0-.882 0L4.5 17.777V9.132zm-.507 3.311a.75.75 0 0 0-.523.23l-.47.47-.47-.47a.75.75 0 1 0-1.06 1.061l.47.47-.47.47a.75.75 0 1 0 1.06 1.06l.47-.47.47.47a.751.751 0 0 0 1.23-.817.8.8 0 0 0-.17-.243l-.47-.47.47-.47a.75.75 0 0 0-.537-1.29m9.007.511a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m-6.5.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m2 1.25a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m3 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m-1.5 2a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5"
26
- }));
27
- };
28
- var _default = exports.default = SvgSite;
17
+ })]
18
+ });
19
+ export default SvgSite;
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgSparkles = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 24 24",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgSparkles = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 24 24",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M5.962 1.501a.75.75 0 0 0-.674.512l-.943 2.832-2.832.943a.75.75 0 0 0 0 1.424l2.83.944.945 2.831a.75.75 0 0 0 1.424 0l.943-2.832 2.832-.943a.75.75 0 0 0 0-1.424l-2.832-.943-.943-2.832a.75.75 0 0 0-.75-.512M6 4.623l.35 1.052a.75.75 0 0 0 .475.474l1.052.351-1.052.35a.75.75 0 0 0-.474.475L6 8.377l-.35-1.052a.75.75 0 0 0-.475-.474L4.123 6.5l1.052-.35a.75.75 0 0 0 .474-.475zm9.72 1.378a.75.75 0 0 0-.684.52l-1.463 4.552-4.552 1.463a.75.75 0 0 0 0 1.428l4.552 1.463 1.463 4.553a.75.75 0 0 0 1.428 0l1.463-4.553 4.553-1.463a.75.75 0 0 0 0-1.428l-4.553-1.463-1.463-4.552A.75.75 0 0 0 15.72 6m.03 3.2.867 2.697a.75.75 0 0 0 .485.485l2.698.867-2.698.867a.75.75 0 0 0-.485.485L15.75 17.3l-.867-2.698a.75.75 0 0 0-.484-.485L11.7 13.25l2.699-.867a.75.75 0 0 0 .484-.485zM5.212 14a.75.75 0 0 0-.674.512l-.757 2.27-2.268.755a.75.75 0 0 0 0 1.424l2.268.756.757 2.27a.75.75 0 0 0 1.424 0l.756-2.27 2.27-.756a.75.75 0 0 0 0-1.424l-2.27-.757-.756-2.268a.75.75 0 0 0-.75-.512m.038 3.121.163.49a.75.75 0 0 0 .475.475l.489.163-.49.163a.75.75 0 0 0-.474.475l-.163.49-.164-.49a.75.75 0 0 0-.475-.475l-.489-.163.49-.163a.75.75 0 0 0 .474-.475z"
26
- }));
27
- };
28
- var _default = exports.default = SvgSparkles;
17
+ })]
18
+ });
19
+ export default SvgSparkles;
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgSpecies = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 24 24",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgSpecies = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 24 24",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M22 17.74a.75.75 0 0 0-.22-.52l-2.5-2.5a.75.75 0 1 0-1.06 1.06L19.44 17h-6.69c-.7 0-1.25-.55-1.25-1.25v-7a.751.751 0 1 0-1.5 0v7c0 1.51 1.24 2.75 2.75 2.75h6.69l-1.22 1.22a.75.75 0 1 0 1.06 1.06l2.5-2.5a.75.75 0 0 0 .22-.54m-.5-11.5a.75.75 0 0 0-.22-.52l-2.5-2.5a.75.75 0 1 0-1.06 1.06l1.22 1.22H3.25a.75.75 0 1 0 0 1.5h15.69l-1.22 1.22a.75.75 0 1 0 1.06 1.06l2.5-2.5a.75.75 0 0 0 .22-.54"
26
- }));
27
- };
28
- var _default = exports.default = SvgSpecies;
17
+ })]
18
+ });
19
+ export default SvgSpecies;