@dative-gpi/foundation-shared-components 0.1.120 → 1.0.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.
- package/assets/images/map/imagery.png +0 -0
- package/assets/images/map/map.png +0 -0
- package/components/FSAccordion.vue +2 -1
- package/components/FSAccordionPanel.vue +20 -1
- package/components/FSBadge.vue +7 -3
- package/components/FSBreadcrumbs.vue +4 -2
- package/components/FSButton.vue +15 -8
- package/components/FSCalendar.vue +5 -2
- package/components/FSCalendarTwin.vue +6 -3
- package/components/FSCard.vue +4 -2
- package/components/FSCardPlaceholder.vue +80 -0
- package/components/FSCheckbox.vue +10 -7
- package/components/FSChip.vue +4 -2
- package/components/FSClickable.vue +5 -3
- package/components/FSClock.vue +18 -4
- package/components/FSCol.vue +12 -5
- package/components/FSColor.vue +4 -2
- package/components/FSColorIcon.vue +5 -3
- package/components/FSDialog.vue +28 -87
- package/components/FSDialogContent.vue +133 -0
- package/components/FSDialogForm.vue +25 -236
- package/components/FSDialogFormBody.vue +273 -0
- package/components/FSDialogMenu.vue +5 -2
- package/components/FSDialogMultiForm.vue +21 -197
- package/components/FSDialogMultiFormBody.vue +231 -0
- package/components/FSDialogSubmit.vue +4 -2
- package/components/FSDivider.vue +6 -4
- package/components/FSEditImage.vue +16 -9
- package/components/FSErrorToast.vue +2 -1
- package/components/FSFadeOut.vue +1 -1
- package/components/FSForm.vue +7 -7
- package/components/FSGrid.vue +4 -2
- package/components/FSGridMosaic.vue +3 -2
- package/components/FSIcon.vue +3 -2
- package/components/FSIconCard.vue +10 -3
- package/components/FSIconCheck.vue +2 -1
- package/components/FSIconFlag.vue +2 -1
- package/components/FSImage.vue +2 -1
- package/components/FSImageCard.vue +72 -0
- package/components/FSLabel.vue +4 -2
- package/components/FSLink.vue +5 -3
- package/components/FSLoader.vue +2 -1
- package/components/FSOptionGroup.vue +28 -20
- package/components/FSOptionItem.vue +8 -18
- package/components/FSPagination.vue +4 -2
- package/components/FSRadio.vue +23 -11
- package/components/FSRadioGroup.vue +23 -10
- package/components/FSRow.vue +8 -1
- package/components/FSSlideGroup.vue +27 -6
- package/components/FSSlider.vue +4 -2
- package/components/FSSpan.vue +2 -1
- package/components/FSSwitch.vue +13 -10
- package/components/FSTab.vue +4 -2
- package/components/FSTabs.vue +5 -14
- package/components/FSTag.vue +11 -4
- package/components/FSTagGroup.vue +4 -2
- package/components/FSText.vue +4 -2
- package/components/FSToggleSet.vue +30 -17
- package/components/FSTooltip.vue +15 -4
- package/components/FSWindow.vue +2 -2
- package/components/FSWrapGroup.vue +2 -1
- package/components/autocompletes/FSAutoCompleteAddress.vue +104 -0
- package/components/autocompletes/FSAutocompleteLanguage.vue +18 -26
- package/components/autocompletes/FSAutocompleteTag.vue +138 -0
- package/components/autocompletes/FSAutocompleteTimeZone.vue +19 -30
- package/components/buttons/FSButtonAdd.vue +28 -0
- package/components/buttons/FSButtonAddIcon.vue +28 -0
- package/components/buttons/FSButtonAddLabel.vue +27 -0
- package/components/buttons/FSButtonAddMini.vue +27 -0
- package/components/buttons/FSButtonFile.vue +4 -4
- package/components/buttons/FSButtonFileIcon.vue +4 -4
- package/components/buttons/FSButtonFileLabel.vue +4 -4
- package/components/buttons/FSButtonFileMini.vue +4 -4
- package/components/deviceOrganisations/FSConnectivity.vue +3 -2
- package/components/deviceOrganisations/FSConnectivityCard.vue +3 -2
- package/components/deviceOrganisations/FSStatus.vue +3 -2
- package/components/deviceOrganisations/FSStatusCard.vue +3 -2
- package/components/deviceOrganisations/FSStatusesCarousel.vue +3 -2
- package/components/deviceOrganisations/FSStatusesRow.vue +3 -2
- package/components/deviceOrganisations/FSWorstAlert.vue +5 -4
- package/components/deviceOrganisations/FSWorstAlertCard.vue +4 -2
- package/components/fields/FSAutocompleteField.vue +210 -97
- package/components/fields/FSBaseField.vue +2 -1
- package/components/fields/FSColorField.vue +65 -94
- package/components/fields/FSDateField.vue +12 -25
- package/components/fields/FSDateRangeField.vue +15 -27
- package/components/fields/FSDateTimeField.vue +22 -32
- package/components/fields/FSDateTimeRangeField.vue +43 -51
- package/components/fields/FSGradientField.vue +143 -0
- package/components/fields/FSIconField.vue +9 -6
- package/components/fields/FSMagicConfigField.vue +154 -0
- package/components/fields/FSMagicField.vue +185 -0
- package/components/fields/FSNumberField.vue +3 -1
- package/components/fields/FSPasswordField.vue +10 -10
- package/components/fields/FSRichTextField.vue +136 -50
- package/components/fields/FSSearchField.vue +41 -62
- package/components/fields/FSSelectField.vue +148 -53
- package/components/fields/FSTagField.vue +19 -16
- package/components/fields/FSTermField.vue +192 -186
- package/components/fields/FSTextArea.vue +4 -4
- package/components/fields/FSTextField.vue +29 -6
- package/components/fields/FSTimeField.vue +55 -20
- package/components/fields/FSTimeSlotField.vue +6 -5
- package/components/fields/FSTranslateField.vue +234 -0
- package/components/fields/FSTranslateRichTextField.vue +185 -0
- package/components/fields/FSTreeViewField.vue +520 -0
- package/components/lists/FSDataIteratorItem.vue +18 -3
- package/components/lists/FSDataTableUI.vue +138 -51
- package/components/lists/FSFilterButton.vue +4 -2
- package/components/lists/FSHiddenButton.vue +4 -2
- package/components/map/FSMap.vue +598 -0
- package/components/map/FSMapEditPointAddressOverlay.vue +164 -0
- package/components/map/FSMapLayerButton.vue +77 -0
- package/components/map/FSMapOverlay.vue +150 -0
- package/components/selects/FSSelectAutoRefresh.vue +62 -0
- package/components/selects/FSSelectDashboardVariableType.vue +47 -0
- package/components/selects/FSSelectDateSetting.vue +39 -37
- package/components/selects/FSSelectDays.vue +62 -0
- package/components/tiles/FSDashboardOrganisationTileUI.vue +7 -5
- package/components/tiles/FSDashboardOrganisationTypeTileUI.vue +7 -5
- package/components/tiles/FSDashboardShallowTileUI.vue +7 -5
- package/components/tiles/FSDeviceOrganisationTileUI.vue +11 -12
- package/components/tiles/FSFolderTileUI.vue +8 -6
- package/components/tiles/FSGroupTileUI.vue +13 -15
- package/components/tiles/{FSSimpleIconTileUI.vue → FSSimpleTileUI.vue} +29 -15
- package/components/tiles/FSTile.vue +5 -11
- package/components/tiles/FSUserOrganisationTileUI.vue +2 -1
- package/components/toggleSets/FSToggleSetPosition.vue +61 -0
- package/composables/index.ts +5 -1
- package/composables/useAddress.ts +158 -0
- package/composables/useAutocomplete.ts +4 -3
- package/composables/useColors.ts +8 -25
- package/composables/useDebounce.ts +2 -1
- package/composables/useMagicFieldProvider.ts +22 -0
- package/composables/useRules.ts +4 -12
- package/composables/useSlots.ts +46 -26
- package/composables/useTables.ts +29 -0
- package/composables/useTreeView.ts +48 -0
- package/elements/FSFormElement.ts +2 -1
- package/icons/flags/France.vue +21 -5
- package/icons/flags/Germany.vue +16 -4
- package/icons/flags/GreatBritain.vue +25 -6
- package/icons/flags/Italy.vue +21 -5
- package/icons/flags/Portugal.vue +225 -51
- package/icons/flags/Spain.vue +2781 -543
- package/icons/flags/UnitedStates.vue +31 -7
- package/icons/widgetTemplates/DevicesWidget.vue +189 -189
- package/icons/widgetTemplates/ProfileWidget.vue +9 -9
- package/icons/widgetTemplates/TextWidget.vue +6 -6
- package/models/breadcrumbs.ts +1 -1
- package/models/deviceAlerts.ts +1 -1
- package/models/deviceConnectivities.ts +1 -1
- package/models/index.ts +2 -0
- package/models/magicFields.ts +9 -0
- package/models/map.ts +18 -0
- package/models/richTextVariable.ts +5 -0
- package/models/rules.ts +11 -2
- package/models/tables.ts +30 -21
- package/models/variableNode.ts +104 -0
- package/package.json +21 -18
- package/plugins/colorPlugin.ts +2 -2
- package/plugins/index.ts +2 -1
- package/plugins/mapsPlugin.ts +37 -0
- package/shims-plugin.d.ts +2 -2
- package/shims-window.d.ts +3 -0
- package/styles/components/fs_button.scss +5 -0
- package/styles/components/fs_card.scss +0 -1
- package/styles/components/fs_col.scss +1 -0
- package/styles/components/fs_color_field.scss +12 -2
- package/styles/components/fs_data_iterator_item.scss +19 -6
- package/styles/components/fs_dialog.scss +12 -22
- package/styles/components/fs_gradient_field.scss +16 -0
- package/styles/components/fs_image_card.scss +18 -0
- package/styles/components/fs_magic_config_field.scss +13 -0
- package/styles/components/fs_map.scss +129 -0
- package/styles/components/fs_map_overlay.scss +38 -0
- package/styles/components/fs_meta_field.scss +6 -0
- package/styles/components/fs_option_group.scss +1 -0
- package/styles/components/fs_radio.scss +1 -1
- package/styles/components/fs_rich_text_field.scss +17 -5
- package/styles/components/fs_row.scss +1 -1
- package/styles/components/fs_select_field.scss +9 -14
- package/styles/components/fs_text.scss +1 -1
- package/styles/components/fs_time_field.scss +0 -4
- package/styles/components/fs_translate_field.scss +3 -0
- package/styles/components/fs_tree_view_field.scss +53 -0
- package/styles/components/index.scss +8 -1
- package/styles/globals/overrides.scss +54 -8
- package/styles/globals/scrollbars.scss +2 -2
- package/themes/default.ts +1 -1
- package/utils/gradient.ts +1601 -0
- package/utils/index.ts +3 -1
- package/utils/leafletMarkers.ts +23 -0
- package/utils/lexical.ts +3 -1
- package/components/selects/FSSelectTimeZone.vue +0 -67
- package/styles/components/fs_date_field.scss +0 -8
|
@@ -1,12 +1,36 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
<svg
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
id="flag-icons-us"
|
|
5
|
+
viewBox="0 0 640 480"
|
|
6
|
+
>
|
|
7
|
+
<g
|
|
8
|
+
fill-rule="evenodd"
|
|
9
|
+
>
|
|
10
|
+
<g
|
|
11
|
+
stroke-width="1pt"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
fill="#bd3d44"
|
|
15
|
+
d="M0 0h972.8v39.4H0zm0 78.8h972.8v39.4H0zm0 78.7h972.8V197H0zm0 78.8h972.8v39.4H0zm0 78.8h972.8v39.4H0zm0 78.7h972.8v39.4H0zm0 78.8h972.8V512H0z"
|
|
16
|
+
transform="scale(.9375)"
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
fill="#fff"
|
|
20
|
+
d="M0 39.4h972.8v39.4H0zm0 78.8h972.8v39.3H0zm0 78.7h972.8v39.4H0zm0 78.8h972.8v39.4H0zm0 78.8h972.8v39.4H0zm0 78.7h972.8v39.4H0z"
|
|
21
|
+
transform="scale(.9375)"
|
|
22
|
+
/>
|
|
7
23
|
</g>
|
|
8
|
-
<path
|
|
9
|
-
|
|
24
|
+
<path
|
|
25
|
+
fill="#192f5d"
|
|
26
|
+
d="M0 0h389.1v275.7H0z"
|
|
27
|
+
transform="scale(.9375)"
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
fill="#fff"
|
|
31
|
+
d="M32.4 11.8 36 22.7h11.4l-9.2 6.7 3.5 11-9.3-6.8-9.2 6.7 3.5-10.9-9.3-6.7H29zm64.9 0 3.5 10.9h11.5l-9.3 6.7 3.5 11-9.2-6.8-9.3 6.7 3.5-10.9-9.2-6.7h11.4zm64.8 0 3.6 10.9H177l-9.2 6.7 3.5 11-9.3-6.8-9.2 6.7 3.5-10.9-9.3-6.7h11.5zm64.9 0 3.5 10.9H242l-9.3 6.7 3.6 11-9.3-6.8-9.3 6.7 3.6-10.9-9.3-6.7h11.4zm64.8 0 3.6 10.9h11.4l-9.2 6.7 3.5 11-9.3-6.8-9.2 6.7 3.5-10.9-9.2-6.7h11.4zm64.9 0 3.5 10.9h11.5l-9.3 6.7 3.6 11-9.3-6.8-9.3 6.7 3.6-10.9-9.3-6.7h11.5zM64.9 39.4l3.5 10.9h11.5L70.6 57 74 67.9l-9-6.7-9.3 6.7L59 57l-9-6.7h11.4zm64.8 0 3.6 10.9h11.4l-9.3 6.7 3.6 10.9-9.3-6.7-9.3 6.7L124 57l-9.3-6.7h11.5zm64.9 0 3.5 10.9h11.5l-9.3 6.7 3.5 10.9-9.2-6.7-9.3 6.7 3.5-10.9-9.2-6.7H191zm64.8 0 3.6 10.9h11.4l-9.3 6.7 3.6 10.9-9.3-6.7-9.2 6.7 3.5-10.9-9.3-6.7H256zm64.9 0 3.5 10.9h11.5L330 57l3.5 10.9-9.2-6.7-9.3 6.7 3.5-10.9-9.2-6.7h11.4zM32.4 66.9 36 78h11.4l-9.2 6.7 3.5 10.9-9.3-6.8-9.2 6.8 3.5-11-9.3-6.7H29zm64.9 0 3.5 11h11.5l-9.3 6.7 3.5 10.9-9.2-6.8-9.3 6.8 3.5-11-9.2-6.7h11.4zm64.8 0 3.6 11H177l-9.2 6.7 3.5 10.9-9.3-6.8-9.2 6.8 3.5-11-9.3-6.7h11.5zm64.9 0 3.5 11H242l-9.3 6.7 3.6 10.9-9.3-6.8-9.3 6.8 3.6-11-9.3-6.7h11.4zm64.8 0 3.6 11h11.4l-9.2 6.7 3.5 10.9-9.3-6.8-9.2 6.8 3.5-11-9.2-6.7h11.4zm64.9 0 3.5 11h11.5l-9.3 6.7 3.6 10.9-9.3-6.8-9.3 6.8 3.6-11-9.3-6.7h11.5zM64.9 94.5l3.5 10.9h11.5l-9.3 6.7 3.5 11-9.2-6.8-9.3 6.7 3.5-10.9-9.2-6.7h11.4zm64.8 0 3.6 10.9h11.4l-9.3 6.7 3.6 11-9.3-6.8-9.3 6.7 3.6-10.9-9.3-6.7h11.5zm64.9 0 3.5 10.9h11.5l-9.3 6.7 3.5 11-9.2-6.8-9.3 6.7 3.5-10.9-9.2-6.7H191zm64.8 0 3.6 10.9h11.4l-9.2 6.7 3.5 11-9.3-6.8-9.2 6.7 3.5-10.9-9.3-6.7H256zm64.9 0 3.5 10.9h11.5l-9.3 6.7 3.5 11-9.2-6.8-9.3 6.7 3.5-10.9-9.2-6.7h11.4zM32.4 122.1 36 133h11.4l-9.2 6.7 3.5 11-9.3-6.8-9.2 6.7 3.5-10.9-9.3-6.7H29zm64.9 0 3.5 10.9h11.5l-9.3 6.7 3.5 10.9-9.2-6.7-9.3 6.7 3.5-10.9-9.2-6.7h11.4zm64.8 0 3.6 10.9H177l-9.2 6.7 3.5 11-9.3-6.8-9.2 6.7 3.5-10.9-9.3-6.7h11.5zm64.9 0 3.5 10.9H242l-9.3 6.7 3.6 11-9.3-6.8-9.3 6.7 3.6-10.9-9.3-6.7h11.4zm64.8 0 3.6 10.9h11.4l-9.2 6.7 3.5 11-9.3-6.8-9.2 6.7 3.5-10.9-9.2-6.7h11.4zm64.9 0 3.5 10.9h11.5l-9.3 6.7 3.6 11-9.3-6.8-9.3 6.7 3.6-10.9-9.3-6.7h11.5zM64.9 149.7l3.5 10.9h11.5l-9.3 6.7 3.5 10.9-9.2-6.8-9.3 6.8 3.5-11-9.2-6.7h11.4zm64.8 0 3.6 10.9h11.4l-9.3 6.7 3.6 10.9-9.3-6.8-9.3 6.8 3.6-11-9.3-6.7h11.5zm64.9 0 3.5 10.9h11.5l-9.3 6.7 3.5 10.9-9.2-6.8-9.3 6.8 3.5-11-9.2-6.7H191zm64.8 0 3.6 10.9h11.4l-9.2 6.7 3.5 10.9-9.3-6.8-9.2 6.8 3.5-11-9.3-6.7H256zm64.9 0 3.5 10.9h11.5l-9.3 6.7 3.5 10.9-9.2-6.8-9.3 6.8 3.5-11-9.2-6.7h11.4zM32.4 177.2l3.6 11h11.4l-9.2 6.7 3.5 10.8-9.3-6.7-9.2 6.7 3.5-10.9-9.3-6.7H29zm64.9 0 3.5 11h11.5l-9.3 6.7 3.6 10.8-9.3-6.7-9.3 6.7 3.6-10.9-9.3-6.7h11.4zm64.8 0 3.6 11H177l-9.2 6.7 3.5 10.8-9.3-6.7-9.2 6.7 3.5-10.9-9.3-6.7h11.5zm64.9 0 3.5 11H242l-9.3 6.7 3.6 10.8-9.3-6.7-9.3 6.7 3.6-10.9-9.3-6.7h11.4zm64.8 0 3.6 11h11.4l-9.2 6.7 3.5 10.8-9.3-6.7-9.2 6.7 3.5-10.9-9.2-6.7h11.4zm64.9 0 3.5 11h11.5l-9.3 6.7 3.6 10.8-9.3-6.7-9.3 6.7 3.6-10.9-9.3-6.7h11.5zM64.9 204.8l3.5 10.9h11.5l-9.3 6.7 3.5 11-9.2-6.8-9.3 6.7 3.5-10.9-9.2-6.7h11.4zm64.8 0 3.6 10.9h11.4l-9.3 6.7 3.6 11-9.3-6.8-9.3 6.7 3.6-10.9-9.3-6.7h11.5zm64.9 0 3.5 10.9h11.5l-9.3 6.7 3.5 11-9.2-6.8-9.3 6.7 3.5-10.9-9.2-6.7H191zm64.8 0 3.6 10.9h11.4l-9.2 6.7 3.5 11-9.3-6.8-9.2 6.7 3.5-10.9-9.3-6.7H256zm64.9 0 3.5 10.9h11.5l-9.3 6.7 3.5 11-9.2-6.8-9.3 6.7 3.5-10.9-9.2-6.7h11.4zM32.4 232.4l3.6 10.9h11.4l-9.2 6.7 3.5 10.9-9.3-6.7-9.2 6.7 3.5-11-9.3-6.7H29zm64.9 0 3.5 10.9h11.5L103 250l3.6 10.9-9.3-6.7-9.3 6.7 3.6-11-9.3-6.7h11.4zm64.8 0 3.6 10.9H177l-9 6.7 3.5 10.9-9.3-6.7-9.2 6.7 3.5-11-9.3-6.7h11.5zm64.9 0 3.5 10.9H242l-9.3 6.7 3.6 10.9-9.3-6.7-9.3 6.7 3.6-11-9.3-6.7h11.4zm64.8 0 3.6 10.9h11.4l-9.2 6.7 3.5 10.9-9.3-6.7-9.2 6.7 3.5-11-9.2-6.7h11.4zm64.9 0 3.5 10.9h11.5l-9.3 6.7 3.6 10.9-9.3-6.7-9.3 6.7 3.6-11-9.3-6.7h11.5z"
|
|
32
|
+
transform="scale(.9375)"
|
|
33
|
+
/>
|
|
10
34
|
</g>
|
|
11
35
|
</svg>
|
|
12
36
|
</template>
|
|
@@ -3,272 +3,272 @@
|
|
|
3
3
|
width="97"
|
|
4
4
|
height="97"
|
|
5
5
|
viewBox="0 0 97 97"
|
|
6
|
-
|
|
6
|
+
fill="none"
|
|
7
7
|
xmlns="http://www.w3.org/2000/svg"
|
|
8
8
|
>
|
|
9
9
|
<path
|
|
10
10
|
d="M58.7224 45.4456L64.2087 41.8107L64.4418 46.8901L58.9603 50.5297L58.7224 45.4456Z"
|
|
11
|
-
|
|
11
|
+
fill="#87CFE5"
|
|
12
12
|
/>
|
|
13
13
|
<path
|
|
14
14
|
d="M58.9602 50.5297L64.4417 46.89L69.0809 48.1349L63.5995 51.7698L58.9602 50.5297Z"
|
|
15
|
-
|
|
15
|
+
fill="#87CFE5"
|
|
16
16
|
/>
|
|
17
17
|
<path
|
|
18
18
|
d="M65.5598 44.7661L71.046 41.1312L71.5171 51.2948L66.0356 54.9297L65.5598 44.7661Z"
|
|
19
|
-
|
|
19
|
+
fill="#87CFE5"
|
|
20
20
|
/>
|
|
21
21
|
<path
|
|
22
22
|
d="M56.2861 42.2858L61.7676 38.6461L71.0461 41.1312L65.5599 44.7661L56.2861 42.2858Z"
|
|
23
|
-
|
|
23
|
+
fill="#87CFE5"
|
|
24
24
|
/>
|
|
25
25
|
<path
|
|
26
26
|
d="M56.7572 52.4493L56.2861 42.2858L65.5647 44.7661L66.0357 54.9296L56.7572 52.4493ZM58.7223 45.4455L58.9603 50.5297L63.5995 51.7698L63.3616 46.6857L58.7223 45.4455Z"
|
|
27
|
-
|
|
27
|
+
fill="#2C2C2C"
|
|
28
28
|
/>
|
|
29
29
|
<path
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
d="M58.1323 32.7448L63.6138 29.1051L63.8517 34.1892L58.3702 37.8242L58.1323 32.7448Z"
|
|
31
|
+
fill="#87CFE5"
|
|
32
|
+
/>
|
|
33
33
|
<path
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
34
|
+
d="M58.3704 37.8241L63.8518 34.1892L68.4911 35.4294L63.0049 39.0643L58.3704 37.8241Z"
|
|
35
|
+
fill="#87CFE5"
|
|
36
|
+
/>
|
|
37
37
|
<path
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
38
|
+
d="M65.2268 37.5771L70.713 33.9421L70.9272 38.5891L65.4457 42.2288L65.2268 37.5771Z"
|
|
39
|
+
fill="#87CFE5"
|
|
40
|
+
/>
|
|
41
41
|
<path
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
42
|
+
d="M64.97 32.0653L70.4562 28.4304L70.7132 33.9422L65.2269 37.5771L64.97 32.0653Z"
|
|
43
|
+
fill="#87CFE5"
|
|
44
|
+
/>
|
|
45
45
|
<path
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
d="M55.6914 29.585L61.1776 25.9453L70.4562 28.4304L64.9699 32.0653L55.6914 29.585Z"
|
|
47
|
+
fill="#87CFE5"
|
|
48
|
+
/>
|
|
49
49
|
<path
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
50
|
+
d="M55.6914 29.585L64.9699 32.0653L65.2269 37.577L65.441 42.2288L56.1625 39.7485L55.6914 29.585ZM63.0048 39.0643L62.7669 33.9801L58.1276 32.74L58.3655 37.8241L63.0048 39.0643Z"
|
|
51
|
+
fill="#2C2C2C"
|
|
52
|
+
/>
|
|
53
53
|
<path
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
54
|
+
d="M70.3184 48.5484L75.8046 44.9135L76.0425 49.9928L70.5563 53.6325L70.3184 48.5484Z"
|
|
55
|
+
fill="#87CFE5"
|
|
56
|
+
/>
|
|
57
57
|
<path
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
58
|
+
d="M70.5562 53.6325L76.0424 49.9928L80.6769 51.2377L75.1954 54.8726L70.5562 53.6325Z"
|
|
59
|
+
fill="#87CFE5"
|
|
60
|
+
/>
|
|
61
61
|
<path
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
62
|
+
d="M67.8821 45.3886L73.3636 41.7489L77.6079 42.8845L72.1264 46.5242L67.8821 45.3886Z"
|
|
63
|
+
fill="#87CFE5"
|
|
64
|
+
/>
|
|
65
65
|
<path
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
66
|
+
d="M77.1606 47.8689L82.6421 44.234L83.1179 54.3975L77.6317 58.0325L77.1606 47.8689Z"
|
|
67
|
+
fill="#87CFE5"
|
|
68
|
+
/>
|
|
69
69
|
<path
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
70
|
+
d="M72.1265 46.5242L77.6079 42.8845L82.6421 44.234L77.1607 47.8689L72.1265 46.5242Z"
|
|
71
|
+
fill="#87CFE5"
|
|
72
|
+
/>
|
|
73
73
|
<path
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
74
|
+
d="M67.8821 45.3885L72.1264 46.5242L77.1606 47.8689L77.6317 58.0324L68.3531 55.5521L67.8821 45.3885ZM75.1955 54.8726L74.9575 49.7885L70.3183 48.5483L70.5562 53.6325L75.1955 54.8726Z"
|
|
75
|
+
fill="#2C2C2C"
|
|
76
|
+
/>
|
|
77
77
|
<path
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
78
|
+
d="M68.51 38.4704L73.9962 34.8307L77.4412 39.3066L71.9597 42.9416L68.51 38.4704Z"
|
|
79
|
+
fill="#87CFE5"
|
|
80
|
+
/>
|
|
81
81
|
<path
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
82
|
+
d="M71.6219 35.7525L77.1081 32.1176L73.9962 34.8307L68.51 38.4704L71.6219 35.7525Z"
|
|
83
|
+
fill="#87CFE5"
|
|
84
|
+
/>
|
|
85
85
|
<path
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
86
|
+
d="M78.3547 41.0884L83.841 37.4535L77.6077 42.8845L72.1262 46.5242L78.3547 41.0884Z"
|
|
87
|
+
fill="#87CFE5"
|
|
88
|
+
/>
|
|
89
89
|
<path
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
90
|
+
d="M71.4553 32.1556L76.9416 28.5206L83.841 37.4535L78.3547 41.0884L71.4553 32.1556Z"
|
|
91
|
+
fill="#87CFE5"
|
|
92
|
+
/>
|
|
93
93
|
<path
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
94
|
+
d="M71.4553 32.1555L78.3547 41.0884L72.1262 46.5194L65.2268 37.5723L71.4553 32.1555ZM68.51 38.4703L71.9597 42.9415L75.0763 40.2236L71.6266 35.7524L68.51 38.4703Z"
|
|
95
|
+
fill="#2C2C2C"
|
|
96
|
+
/>
|
|
97
97
|
<path
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
98
|
+
d="M14.78 51.6225L25.7668 44.3384L26.2378 54.5162L15.2559 61.805L14.78 51.6225Z"
|
|
99
|
+
fill="#87CFE5"
|
|
100
|
+
/>
|
|
101
101
|
<path
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
102
|
+
d="M15.2559 61.8051L26.2378 54.5162L35.5306 57.0013L24.5439 64.2901L15.2559 61.8051Z"
|
|
103
|
+
fill="#87CFE5"
|
|
104
|
+
/>
|
|
105
105
|
<path
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
106
|
+
d="M28.479 50.2636L39.4657 42.9795L40.4126 63.3351L29.4259 70.6192L28.479 50.2636Z"
|
|
107
|
+
fill="#87CFE5"
|
|
108
|
+
/>
|
|
109
109
|
<path
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
110
|
+
d="M9.89819 45.2935L20.8802 38.0046L39.4658 42.9795L28.479 50.2636L9.89819 45.2935Z"
|
|
111
|
+
fill="#87CFE5"
|
|
112
|
+
/>
|
|
113
113
|
<path
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
114
|
+
d="M10.8451 65.6443L9.89819 45.2935L28.4791 50.2636L29.4259 70.6191L10.8451 65.6443ZM14.7801 51.6225L15.256 61.8003L24.544 64.2853L24.0682 54.1076L14.7801 51.6225Z"
|
|
115
|
+
fill="#2C2C2C"
|
|
116
|
+
/>
|
|
117
117
|
<path
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
118
|
+
d="M13.5952 26.178L24.582 18.8939L25.053 29.0717L14.071 36.3606L13.5952 26.178Z"
|
|
119
|
+
fill="#87CFE5"
|
|
120
|
+
/>
|
|
121
121
|
<path
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
122
|
+
d="M14.071 36.3606L25.053 29.0718L34.3458 31.5568L23.3591 38.8457L14.071 36.3606Z"
|
|
123
|
+
fill="#87CFE5"
|
|
124
|
+
/>
|
|
125
125
|
<path
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
126
|
+
d="M27.8081 35.8617L38.7948 28.5776L39.2278 37.8906L28.2411 45.1747L27.8081 35.8617Z"
|
|
127
|
+
fill="#87CFE5"
|
|
128
|
+
/>
|
|
129
129
|
<path
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
130
|
+
d="M27.2942 24.8239L38.2809 17.535L38.7948 28.5776L27.8081 35.8617L27.2942 24.8239Z"
|
|
131
|
+
fill="#87CFE5"
|
|
132
|
+
/>
|
|
133
133
|
<path
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
134
|
+
d="M8.71338 19.849L19.7001 12.5649L38.281 17.535L27.2942 24.8239L8.71338 19.849Z"
|
|
135
|
+
fill="#87CFE5"
|
|
136
|
+
/>
|
|
137
137
|
<path
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
138
|
+
d="M8.71338 19.849L27.2942 24.8239L27.8081 35.8664L28.2411 45.1794L9.66027 40.2046L8.71338 19.849ZM23.3592 38.8456L22.8834 28.6678L13.5953 26.1828L14.0711 36.3606L23.3592 38.8456Z"
|
|
139
|
+
fill="#2C2C2C"
|
|
140
|
+
/>
|
|
141
141
|
<path
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
142
|
+
d="M38.0098 57.8376L48.9917 50.5535L49.4676 60.7313L38.4808 68.0201L38.0098 57.8376Z"
|
|
143
|
+
fill="#87CFE5"
|
|
144
|
+
/>
|
|
145
145
|
<path
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
146
|
+
d="M38.4807 68.0202L49.4675 60.7313L58.7555 63.2164L47.7735 70.5052L38.4807 68.0202Z"
|
|
147
|
+
fill="#87CFE5"
|
|
148
|
+
/>
|
|
149
149
|
<path
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
150
|
+
d="M33.123 51.5086L44.1098 44.2197L52.608 46.4957L41.626 53.7798L33.123 51.5086Z"
|
|
151
|
+
fill="#87CFE5"
|
|
152
|
+
/>
|
|
153
153
|
<path
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
154
|
+
d="M51.7087 56.4787L62.6907 49.1946L63.6376 69.5502L52.6556 76.8343L51.7087 56.4787Z"
|
|
155
|
+
fill="#87CFE5"
|
|
156
|
+
/>
|
|
157
157
|
<path
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
158
|
+
d="M41.626 53.7798L52.608 46.4957L62.6906 49.1946L51.7087 56.4787L41.626 53.7798Z"
|
|
159
|
+
fill="#87CFE5"
|
|
160
|
+
/>
|
|
161
161
|
<path
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
162
|
+
d="M33.123 51.5085L41.6212 53.7845L51.7039 56.4834L52.6508 76.839L34.0747 71.8594L33.123 51.5085ZM47.7736 70.5052L47.2978 60.3274L38.0097 57.8423L38.4856 68.0201L47.7736 70.5052Z"
|
|
163
|
+
fill="#2C2C2C"
|
|
164
|
+
/>
|
|
165
165
|
<path
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
166
|
+
d="M34.384 37.6482L45.3708 30.3641L52.275 39.3208L41.293 46.6049L34.384 37.6482Z"
|
|
167
|
+
fill="#87CFE5"
|
|
168
|
+
/>
|
|
169
169
|
<path
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
170
|
+
d="M40.6221 32.2078L51.604 24.9237L45.3708 30.3642L34.384 37.6483L40.6221 32.2078Z"
|
|
171
|
+
fill="#87CFE5"
|
|
172
|
+
/>
|
|
173
173
|
<path
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
174
|
+
d="M54.102 42.8987L65.0888 35.6146L52.608 46.4956L41.626 53.7797L54.102 42.8987Z"
|
|
175
|
+
fill="#87CFE5"
|
|
176
|
+
/>
|
|
177
177
|
<path
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
178
|
+
d="M40.2842 25.0044L51.2709 17.7203L65.0888 35.6146L54.1021 42.8987L40.2842 25.0044Z"
|
|
179
|
+
fill="#87CFE5"
|
|
180
|
+
/>
|
|
181
181
|
<path
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
182
|
+
d="M40.2842 25.0044L54.102 42.8987L41.626 53.7797L27.8081 35.8616L40.2842 25.0044ZM34.384 37.6482L41.2929 46.6096L47.5309 41.1691L40.622 32.2077L34.384 37.6482Z"
|
|
183
|
+
fill="#2C2C2C"
|
|
184
|
+
/>
|
|
185
185
|
<path
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
186
|
+
d="M68.491 74.43L72.9066 71.5031L73.0969 75.5941L68.6813 78.5211L68.491 74.43Z"
|
|
187
|
+
fill="#87CFE5"
|
|
188
|
+
/>
|
|
189
189
|
<path
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
190
|
+
d="M68.6812 78.5211L73.0968 75.5941L76.832 76.5919L72.4164 79.5189L68.6812 78.5211Z"
|
|
191
|
+
fill="#87CFE5"
|
|
192
|
+
/>
|
|
193
193
|
<path
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
194
|
+
d="M74.001 73.8835L78.4166 70.9565L78.7973 79.1387L74.3816 82.0656L74.001 73.8835Z"
|
|
195
|
+
fill="#87CFE5"
|
|
196
|
+
/>
|
|
197
197
|
<path
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
198
|
+
d="M66.5305 71.8831L70.9461 68.9562L78.4165 70.9566L74.0009 73.8835L66.5305 71.8831Z"
|
|
199
|
+
fill="#87CFE5"
|
|
200
|
+
/>
|
|
201
201
|
<path
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
202
|
+
d="M66.9112 80.0653L66.5305 71.8832L74.0009 73.8836L74.3816 82.0657L66.9112 80.0653ZM68.4909 74.43L68.6812 78.5211L72.4164 79.5189L72.2261 75.4278L68.4909 74.43Z"
|
|
203
|
+
fill="#2C2C2C"
|
|
204
|
+
/>
|
|
205
205
|
<path
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
206
|
+
d="M68.0151 64.1999L72.4308 61.2729L72.6211 65.364L68.2055 68.291L68.0151 64.1999Z"
|
|
207
|
+
fill="#87CFE5"
|
|
208
|
+
/>
|
|
209
209
|
<path
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
210
|
+
d="M68.2053 68.291L72.6209 65.364L76.3562 66.3618L71.9405 69.2935L68.2053 68.291Z"
|
|
211
|
+
fill="#87CFE5"
|
|
212
|
+
/>
|
|
213
213
|
<path
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
214
|
+
d="M73.7297 68.0961L78.1454 65.1644L78.3167 68.9086L73.9058 71.8403L73.7297 68.0961Z"
|
|
215
|
+
fill="#87CFE5"
|
|
216
|
+
/>
|
|
217
217
|
<path
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
218
|
+
d="M73.5203 63.6534L77.9359 60.7264L78.1452 65.1644L73.7296 68.0961L73.5203 63.6534Z"
|
|
219
|
+
fill="#87CFE5"
|
|
220
|
+
/>
|
|
221
221
|
<path
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
222
|
+
d="M66.0547 61.6578L70.4703 58.7308L77.936 60.7265L73.5203 63.6534L66.0547 61.6578Z"
|
|
223
|
+
fill="#87CFE5"
|
|
224
|
+
/>
|
|
225
225
|
<path
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
226
|
+
d="M66.0547 61.6577L73.5251 63.6581L73.7297 68.096L73.9058 71.8402L66.4353 69.8399L66.0547 61.6577ZM71.9406 69.2934L71.7503 65.2024L68.0151 64.2045L68.2054 68.2956L71.9406 69.2934Z"
|
|
227
|
+
fill="#2C2C2C"
|
|
228
|
+
/>
|
|
229
229
|
<path
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
230
|
+
d="M77.8313 76.9293L82.2469 73.9976L82.4373 78.0934L78.0216 81.0203L77.8313 76.9293Z"
|
|
231
|
+
fill="#87CFE5"
|
|
232
|
+
/>
|
|
233
233
|
<path
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
234
|
+
d="M78.0217 81.0203L82.4374 78.0934L86.1678 79.0912L81.7522 82.0182L78.0217 81.0203Z"
|
|
235
|
+
fill="#87CFE5"
|
|
236
|
+
/>
|
|
237
237
|
<path
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
238
|
+
d="M75.8662 74.3824L80.2818 71.4554L83.6982 72.3677L79.2826 75.2947L75.8662 74.3824Z"
|
|
239
|
+
fill="#87CFE5"
|
|
240
|
+
/>
|
|
241
241
|
<path
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
242
|
+
d="M83.3367 76.3827L87.7523 73.451L88.1329 81.6332L83.7173 84.5649L83.3367 76.3827Z"
|
|
243
|
+
fill="#87CFE5"
|
|
244
|
+
/>
|
|
245
245
|
<path
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
246
|
+
d="M79.2827 75.2946L83.6983 72.3677L87.7524 73.451L83.3367 76.3827L79.2827 75.2946Z"
|
|
247
|
+
fill="#87CFE5"
|
|
248
|
+
/>
|
|
249
249
|
<path
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
250
|
+
d="M75.8662 74.3824L79.2826 75.2947L83.3366 76.3781L83.7173 84.5602L76.2469 82.5598L75.8662 74.3824ZM81.7521 82.0182L81.5618 77.9271L77.8266 76.9293L78.0169 81.0203L81.7521 82.0182Z"
|
|
251
|
+
fill="#2C2C2C"
|
|
252
|
+
/>
|
|
253
253
|
<path
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
254
|
+
d="M76.3706 68.8088L80.7862 65.8818L83.565 69.4835L79.1494 72.4104L76.3706 68.8088Z"
|
|
255
|
+
fill="#87CFE5"
|
|
256
|
+
/>
|
|
257
257
|
<path
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
258
|
+
d="M78.8782 66.6231L83.2938 63.6962L80.7862 65.8819L76.3706 68.8088L78.8782 66.6231Z"
|
|
259
|
+
fill="#87CFE5"
|
|
260
|
+
/>
|
|
261
261
|
<path
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
262
|
+
d="M84.2979 70.9233L88.7135 67.9916L83.6983 72.3677L79.2827 75.2947L84.2979 70.9233Z"
|
|
263
|
+
fill="#87CFE5"
|
|
264
|
+
/>
|
|
265
265
|
<path
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
266
|
+
d="M78.7449 63.7294L83.1605 60.8025L88.7133 67.9916L84.2977 70.9233L78.7449 63.7294Z"
|
|
267
|
+
fill="#87CFE5"
|
|
268
|
+
/>
|
|
269
269
|
<path
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
270
|
+
d="M78.7449 63.7295L84.2978 70.9233L79.2826 75.2995L73.7297 68.0962L78.7449 63.7295ZM76.3706 68.8089L79.1446 72.4105L81.6522 70.2248L78.8734 66.6232L76.3706 68.8089Z"
|
|
271
|
+
fill="#2C2C2C"
|
|
272
|
+
/>
|
|
273
273
|
</svg>
|
|
274
274
|
</template>
|
|
@@ -7,24 +7,24 @@
|
|
|
7
7
|
xmlns="http://www.w3.org/2000/svg"
|
|
8
8
|
>
|
|
9
9
|
<path
|
|
10
|
-
|
|
10
|
+
d="M32.8235 27.444C34.0514 26.9003 34.8392 25.6188 34.8327 23.86C34.8218 20.9089 32.5792 17.7518 29.791 16.7847C28.6471 16.388 27.5951 16.4236 26.753 16.8074L26.7514 16.8043L22.7543 18.8336L24.4695 22.2121L24.9815 21.9521C25.3615 23.4341 26.2318 24.8614 27.3741 25.9289L26.7515 26.245L28.78 29.4581L32.8235 27.444Z"
|
|
11
11
|
fill="#87CFE5"
|
|
12
|
-
|
|
12
|
+
/>
|
|
13
13
|
<path
|
|
14
|
-
|
|
14
|
+
d="M44.8262 33.6309C45.9052 33.2026 46.6053 32.1133 46.5998 30.6047C46.5907 28.1513 44.7191 25.5136 42.4012 24.7096C41.2975 24.3268 40.2946 24.4298 39.5476 24.9075L35.6574 26.8825L37.3725 30.261L38.5916 29.6421C38.8918 30.4468 39.3585 31.2131 39.938 31.8656L38.8494 32.4183L40.9447 35.5802L44.8262 33.6309Z"
|
|
15
15
|
fill="#87CFE5"
|
|
16
|
-
|
|
16
|
+
/>
|
|
17
17
|
<path
|
|
18
|
-
|
|
18
|
+
d="M34.282 37.0212C36.1748 35.8806 40.1627 36.3617 42.4469 37.154C45.5206 38.2201 51.6908 41.9937 51.7028 45.247L51.7175 49.247L51.6736 49.2318L47.7049 51.2466L45.9897 47.8681L46.7009 47.507L33.2418 42.8386L33.2379 41.7754L32.2831 42.2514L30.5926 38.8605L34.282 37.0212Z"
|
|
19
19
|
fill="#87CFE5"
|
|
20
|
-
|
|
20
|
+
/>
|
|
21
21
|
<path
|
|
22
|
-
|
|
22
|
+
d="M18.1185 35.7551L17.3235 36.1587L15.6083 32.7802L19.5592 30.7744C22.0085 29.4032 26.9776 30.0129 29.8433 31.0069C30.9519 31.3914 32.3634 32.0585 33.8258 32.8854C33.8208 32.8866 33.8158 32.8878 33.8108 32.889L33.8189 32.8903L31.2791 34.1553C30.1049 35.2383 29.8641 36.666 29.8678 37.6735L29.8825 41.6735L29.8434 41.6599L25.8805 43.6717L24.1654 40.2932L24.8707 39.9351L18.1253 37.5954L18.1185 35.7551Z"
|
|
23
23
|
fill="#87CFE5"
|
|
24
|
-
|
|
24
|
+
/>
|
|
25
25
|
<path
|
|
26
26
|
d="M30.8327 25.8593C30.8435 28.8104 28.6184 30.4178 25.8302 29.4507C23.0421 28.4836 20.7827 25.3208 20.7718 22.3697C20.761 19.4186 23.0029 17.817 25.791 18.7841C28.5792 19.7512 30.8218 22.9082 30.8327 25.8593ZM42.5998 32.604C42.6088 35.0574 40.7517 36.4018 38.4339 35.5978C36.116 34.7939 34.2275 32.1503 34.2185 29.697C34.2095 27.2437 36.0833 25.905 38.4012 26.709C40.719 27.513 42.5907 30.1507 42.5998 32.604ZM38.4469 39.1534C35.3733 38.0872 29.2151 37.5847 29.2271 40.838L29.2418 44.838L47.7175 51.2464L47.7028 47.2464C47.6908 43.9931 41.5206 40.2195 38.4469 39.1534ZM14.1089 35.1504C14.0937 31.0082 21.9298 31.6488 25.8433 33.0062C26.9519 33.3907 28.3634 34.0579 29.8258 34.8847C26.4068 35.7051 25.8623 38.1618 25.8678 39.6729L25.8825 43.6728L14.1253 39.5948L14.1089 35.1504Z"
|
|
27
27
|
fill="#2C2C2C"
|
|
28
|
-
|
|
28
|
+
/>
|
|
29
29
|
</svg>
|
|
30
30
|
</template>
|
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
xmlns="http://www.w3.org/2000/svg"
|
|
8
8
|
>
|
|
9
9
|
<path
|
|
10
|
-
|
|
10
|
+
d="M29.8345 17.2804L38.5746 19.2719L39.3944 53.4226L30.3539 48.5004L29.8345 17.2804Z"
|
|
11
11
|
fill="#87CFE5"
|
|
12
12
|
/>
|
|
13
13
|
<path
|
|
14
|
-
|
|
14
|
+
d="M20.1964 11.6523L47.9195 17.9692L48.0446 25.4935L16.5145 13.6786L20.1964 11.6523Z"
|
|
15
15
|
fill="#87CFE5"
|
|
16
16
|
/>
|
|
17
17
|
<path
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
fill="#87CFE5"
|
|
20
20
|
/>
|
|
21
21
|
<path
|
|
22
|
-
|
|
22
|
+
d="M30.3048 45.5521L30.3539 48.5004L26.3686 47.5923C26.3686 47.5923 29.9504 46.3011 30.3048 45.5521Z"
|
|
23
23
|
fill="#87CFE5"
|
|
24
24
|
/>
|
|
25
25
|
<path
|
|
26
|
-
|
|
26
|
+
d="M39.255 47.6171L39.3944 53.4226L43.0767 51.3994C43.0767 51.3994 39.6369 48.5338 39.255 47.6171Z"
|
|
27
27
|
fill="#87CFE5"
|
|
28
28
|
/>
|
|
29
29
|
<path
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
fill="#2C2C2C"
|
|
48
48
|
/>
|
|
49
49
|
<path
|
|
50
|
-
|
|
50
|
+
d="M26.6326 47.5908L26.6816 50.5391L22.6963 49.631C22.6963 49.631 26.2782 48.3398 26.6326 47.5908Z"
|
|
51
51
|
fill="#2C2C2C"
|
|
52
52
|
/>
|
|
53
53
|
<path
|
|
54
|
-
|
|
54
|
+
d="M35.3726 49.582L35.4216 52.5303L39.4045 53.4378C39.4045 53.4378 35.7544 50.4987 35.3726 49.582Z"
|
|
55
55
|
fill="#2C2C2C"
|
|
56
56
|
/>
|
|
57
57
|
<path
|
package/models/breadcrumbs.ts
CHANGED
package/models/deviceAlerts.ts
CHANGED
package/models/index.ts
CHANGED
|
@@ -6,6 +6,8 @@ export * from "./deviceStatuses";
|
|
|
6
6
|
export * from "./errors";
|
|
7
7
|
export * from "./grids";
|
|
8
8
|
export * from "./images";
|
|
9
|
+
export * from "./map";
|
|
10
|
+
export * from "./magicFields";
|
|
9
11
|
export * from "./modelStatuses";
|
|
10
12
|
export * from "./rules";
|
|
11
13
|
export * from "./tables";
|