@konfuzio/document-validation-ui 0.1.19-dev.2 → 0.1.19

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 (143) hide show
  1. package/.eslintrc.js +10 -10
  2. package/.prettierrc.json +1 -1
  3. package/LICENSE +21 -21
  4. package/README.md +24 -24
  5. package/cypress.config.js +13 -13
  6. package/dist/js/app.js +1 -1
  7. package/dist/js/app.js.map +1 -1
  8. package/dist/js/chunk-vendors.js +1 -1
  9. package/dist/js/chunk-vendors.js.map +1 -1
  10. package/jest.config.js +4 -4
  11. package/package.json +66 -66
  12. package/src/api.js +82 -82
  13. package/src/assets/images/AcceptedCheckMark.vue +8 -8
  14. package/src/assets/images/AcceptedUser.vue +8 -8
  15. package/src/assets/images/ActionIcon.vue +60 -60
  16. package/src/assets/images/ArrowDownKey.vue +11 -11
  17. package/src/assets/images/ArrowUpKey.vue +11 -11
  18. package/src/assets/images/CategoryIconImg.vue +13 -13
  19. package/src/assets/images/CheckMark.vue +8 -8
  20. package/src/assets/images/DraggableIcon.vue +14 -14
  21. package/src/assets/images/EditDocIcon.vue +12 -12
  22. package/src/assets/images/EmptyStateImg.vue +129 -129
  23. package/src/assets/images/ErrorIcon.vue +28 -28
  24. package/src/assets/images/EyeIcon.vue +11 -11
  25. package/src/assets/images/FileNameNotSavedImage.vue +26 -26
  26. package/src/assets/images/FileNameSavedImage.vue +14 -14
  27. package/src/assets/images/FitZoomIcon.vue +16 -16
  28. package/src/assets/images/GridIcon.vue +16 -16
  29. package/src/assets/images/KeyboardIcon.vue +16 -16
  30. package/src/assets/images/MagicWandIcon.vue +16 -16
  31. package/src/assets/images/MinusIcon.vue +13 -13
  32. package/src/assets/images/NotFoundIcon.vue +16 -16
  33. package/src/assets/images/NotOptimizedIllustration.vue +651 -651
  34. package/src/assets/images/PlusIcon.vue +13 -13
  35. package/src/assets/images/QuestionMark.vue +12 -12
  36. package/src/assets/images/ServerImage.vue +73 -73
  37. package/src/assets/images/SettingsIcon.vue +14 -14
  38. package/src/assets/images/SplitLines.vue +18 -18
  39. package/src/assets/images/SplitZigZag.vue +49 -49
  40. package/src/assets/images/StarIcon.vue +16 -16
  41. package/src/assets/images/StatusImg.vue +14 -14
  42. package/src/assets/images/TranslateArrows.vue +33 -33
  43. package/src/assets/scss/ann_set_table_options.scss +26 -26
  44. package/src/assets/scss/annotation_details.scss +141 -141
  45. package/src/assets/scss/choose_label_set_modal.scss +65 -65
  46. package/src/assets/scss/document_action_bar.scss +37 -37
  47. package/src/assets/scss/document_annotations.scss +558 -558
  48. package/src/assets/scss/document_category.scss +85 -85
  49. package/src/assets/scss/document_dashboard.scss +52 -52
  50. package/src/assets/scss/document_edit.scss +410 -410
  51. package/src/assets/scss/document_error.scss +81 -81
  52. package/src/assets/scss/document_name.scss +60 -60
  53. package/src/assets/scss/document_page.scss +12 -12
  54. package/src/assets/scss/document_thumbnails.scss +41 -41
  55. package/src/assets/scss/document_toolbar.scss +111 -111
  56. package/src/assets/scss/document_top_bar.scss +171 -171
  57. package/src/assets/scss/document_viewport_modal.scss +25 -25
  58. package/src/assets/scss/documents_list.scss +141 -141
  59. package/src/assets/scss/edit_page_thumbnail.scss +53 -53
  60. package/src/assets/scss/empty_state.scss +34 -34
  61. package/src/assets/scss/extracting_data.scss +35 -35
  62. package/src/assets/scss/imports.scss +1 -1
  63. package/src/assets/scss/multi_ann_table_overlay.scss +38 -38
  64. package/src/assets/scss/multi_ann_table_popup.scss +12 -12
  65. package/src/assets/scss/new_annotation.scss +102 -102
  66. package/src/assets/scss/scrolling_document.scss +19 -19
  67. package/src/assets/scss/theme.scss +801 -801
  68. package/src/assets/scss/variables.scss +66 -66
  69. package/src/components/App.cy.js +7 -7
  70. package/src/components/App.vue +187 -187
  71. package/src/components/DocumentAnnotations/AnnotationActionButtons.vue +152 -152
  72. package/src/components/DocumentAnnotations/AnnotationContent.vue +210 -210
  73. package/src/components/DocumentAnnotations/AnnotationDetails.vue +251 -251
  74. package/src/components/DocumentAnnotations/AnnotationRow.vue +752 -752
  75. package/src/components/DocumentAnnotations/AnnotationSetActionButtons.vue +89 -89
  76. package/src/components/DocumentAnnotations/ChooseLabelSetModal.vue +186 -186
  77. package/src/components/DocumentAnnotations/DocumentAnnotations.cy.js +441 -441
  78. package/src/components/DocumentAnnotations/DocumentAnnotations.vue +534 -534
  79. package/src/components/DocumentAnnotations/DocumentLabel.vue +189 -189
  80. package/src/components/DocumentAnnotations/EmptyAnnotation.vue +193 -193
  81. package/src/components/DocumentAnnotations/EmptyState.vue +21 -21
  82. package/src/components/DocumentAnnotations/ExtractingData.vue +41 -41
  83. package/src/components/DocumentAnnotations/LoadingAnnotations.vue +43 -43
  84. package/src/components/DocumentAnnotations/LoadingLabels.vue +43 -43
  85. package/src/components/DocumentAnnotations/MultiAnnotationTableOverlay.vue +338 -338
  86. package/src/components/DocumentAnnotations/index.js +8 -8
  87. package/src/components/DocumentCategory.vue +281 -281
  88. package/src/components/DocumentDashboard.vue +170 -170
  89. package/src/components/DocumentEdit/DocumentEdit.cy.js +541 -541
  90. package/src/components/DocumentEdit/DocumentEdit.vue +503 -503
  91. package/src/components/DocumentEdit/EditConfirmationModal.vue +55 -55
  92. package/src/components/DocumentEdit/EditPageThumbnail.vue +114 -114
  93. package/src/components/DocumentEdit/EditPages.vue +161 -161
  94. package/src/components/DocumentEdit/EditSidebar.vue +154 -154
  95. package/src/components/DocumentEdit/RenameAndCategorize.vue +184 -184
  96. package/src/components/DocumentEdit/SidebarButtons.vue +53 -53
  97. package/src/components/DocumentEdit/SplitInfoBar.vue +21 -21
  98. package/src/components/DocumentEdit/index.js +4 -4
  99. package/src/components/DocumentModals/DocumentErrorModal.vue +58 -58
  100. package/src/components/DocumentModals/NotOptimizedViewportModal.vue +51 -51
  101. package/src/components/DocumentPage/ActionBar.vue +48 -48
  102. package/src/components/DocumentPage/AnnSetTableOptions.vue +111 -111
  103. package/src/components/DocumentPage/BoxSelection.vue +152 -152
  104. package/src/components/DocumentPage/DocumentPage.cy.js +92 -92
  105. package/src/components/DocumentPage/DocumentPage.vue +568 -568
  106. package/src/components/DocumentPage/DocumentToolbar.cy.js +215 -215
  107. package/src/components/DocumentPage/DocumentToolbar.vue +228 -228
  108. package/src/components/DocumentPage/DummyPage.vue +55 -55
  109. package/src/components/DocumentPage/MultiAnnSelection.vue +371 -371
  110. package/src/components/DocumentPage/NewAnnotation.vue +308 -308
  111. package/src/components/DocumentPage/ScrollingDocument.vue +149 -149
  112. package/src/components/DocumentPage/ScrollingPage.vue +179 -179
  113. package/src/components/DocumentPage/index.js +5 -5
  114. package/src/components/DocumentThumbnails/DocumentThumbnails.cy.js +67 -67
  115. package/src/components/DocumentThumbnails/DocumentThumbnails.vue +132 -132
  116. package/src/components/DocumentThumbnails/LoadingThumbnail.vue +25 -25
  117. package/src/components/DocumentThumbnails/index.js +1 -1
  118. package/src/components/DocumentTopBar/DocumentName.vue +236 -236
  119. package/src/components/DocumentTopBar/DocumentTopBar.cy.js +222 -222
  120. package/src/components/DocumentTopBar/DocumentTopBar.vue +202 -202
  121. package/src/components/DocumentTopBar/DocumentTopBarButtons.vue +183 -183
  122. package/src/components/DocumentTopBar/KeyboardActionsDescription.vue +74 -74
  123. package/src/components/DocumentTopBar/index.js +3 -3
  124. package/src/components/DocumentsList/DocumentsList.vue +121 -121
  125. package/src/components/DocumentsList/index.js +1 -1
  126. package/src/components/ErrorMessage.vue +40 -40
  127. package/src/components/index.js +1 -1
  128. package/src/constants.js +5 -5
  129. package/src/directives/scroll.js +28 -28
  130. package/src/i18n.js +22 -22
  131. package/src/icons.js +45 -45
  132. package/src/locales/de.json +148 -148
  133. package/src/locales/en.json +148 -148
  134. package/src/main.js +26 -26
  135. package/src/store/category.js +191 -191
  136. package/src/store/display.js +311 -311
  137. package/src/store/document.js +1438 -1438
  138. package/src/store/edit.js +316 -316
  139. package/src/store/index.js +21 -21
  140. package/src/store/project.js +143 -143
  141. package/src/store/selection.js +210 -210
  142. package/src/utils/utils.js +54 -54
  143. package/vue.config.js +25 -25
package/jest.config.js CHANGED
@@ -1,4 +1,4 @@
1
- module.exports = {
2
- preset: "@vue/cli-plugin-unit-jest/presets/no-babel",
3
- setupFiles: ["./tests/setup.js"],
4
- };
1
+ module.exports = {
2
+ preset: "@vue/cli-plugin-unit-jest/presets/no-babel",
3
+ setupFiles: ["./tests/setup.js"],
4
+ };
package/package.json CHANGED
@@ -1,66 +1,66 @@
1
- {
2
- "name": "@konfuzio/document-validation-ui",
3
- "version": "0.1.19-dev.2",
4
- "repository": "git://github.com:konfuzio-ai/document-validation-ui.git",
5
- "main": "dist/app.js",
6
- "scripts": {
7
- "serve": "vue-cli-service serve",
8
- "build": "vue-cli-service build --name DocumentValidationUi ./src/main.js",
9
- "test:unit": "vue-cli-service test:unit",
10
- "cypress:open": "cypress open",
11
- "i18n:report": "vue-cli-service i18n:report --src \"./src/**/*.?(js|vue)\" --locales \"./src/locales/**/*.json\"",
12
- "lint": "vue-cli-service lint",
13
- "format": "prettier . --write",
14
- "prepublishOnly": "npm run build"
15
- },
16
- "pre-commit": [
17
- "test:unit",
18
- "lint"
19
- ],
20
- "files": [
21
- "dist/*",
22
- "src/*",
23
- "*.json",
24
- "*.js"
25
- ],
26
- "dependencies": {
27
- "@fortawesome/fontawesome-svg-core": "^6.3.0",
28
- "@fortawesome/free-solid-svg-icons": "^6.3.0",
29
- "@fortawesome/vue-fontawesome": "^2.0.10",
30
- "@sentry/tracing": "^6.19.4",
31
- "@sentry/vue": "^6.2.0",
32
- "axios": "^0.21.1",
33
- "axios-extensions": "^3.1.6",
34
- "bignumber.js": "^9.1.0",
35
- "buefy": "^0.9.22",
36
- "konva": "^8.3.13",
37
- "sass": "^1.56.0",
38
- "sass-loader": "^13.1.0",
39
- "vue": "^2.6.14",
40
- "vue-i18n": "^8.27.1",
41
- "vue-i18n-bridge": "^9.2.2",
42
- "vue-konva": "^2.1.7",
43
- "vue-observe-visibility": "^1.0.0",
44
- "vue-template-compiler": "^2.6.10",
45
- "vuedraggable": "^2.24.3",
46
- "vuex": "^3.6.2"
47
- },
48
- "devDependencies": {
49
- "@4tw/cypress-drag-drop": "^2.2.5",
50
- "@intlify/vue-i18n-loader": "^1.x",
51
- "@vue/cli-plugin-eslint": "^5.0.8",
52
- "@vue/cli-plugin-unit-jest": "^5.0.8",
53
- "@vue/cli-service": "^5.0.8",
54
- "@vue/test-utils": "^1.1.3",
55
- "@vue/vue2-jest": "^27.0.0",
56
- "babel-jest": "^27.0.6",
57
- "cypress": "^13.2.0",
58
- "dotenv": "^16.3.1",
59
- "eslint": "^8.30.0",
60
- "eslint-config-prettier": "^8.6.0",
61
- "eslint-plugin-vue": "^9.8.0",
62
- "jest": "^27.0.5",
63
- "pre-commit": "^1.2.2",
64
- "prettier": "2.8.1"
65
- }
66
- }
1
+ {
2
+ "name": "@konfuzio/document-validation-ui",
3
+ "version": "0.1.19",
4
+ "repository": "git://github.com:konfuzio-ai/document-validation-ui.git",
5
+ "main": "dist/app.js",
6
+ "scripts": {
7
+ "serve": "vue-cli-service serve",
8
+ "build": "vue-cli-service build --name DocumentValidationUi ./src/main.js",
9
+ "test:unit": "vue-cli-service test:unit",
10
+ "cypress:open": "cypress open",
11
+ "i18n:report": "vue-cli-service i18n:report --src \"./src/**/*.?(js|vue)\" --locales \"./src/locales/**/*.json\"",
12
+ "lint": "vue-cli-service lint",
13
+ "format": "prettier . --write",
14
+ "prepublishOnly": "npm run build"
15
+ },
16
+ "pre-commit": [
17
+ "test:unit",
18
+ "lint"
19
+ ],
20
+ "files": [
21
+ "dist/*",
22
+ "src/*",
23
+ "*.json",
24
+ "*.js"
25
+ ],
26
+ "dependencies": {
27
+ "@fortawesome/fontawesome-svg-core": "^6.3.0",
28
+ "@fortawesome/free-solid-svg-icons": "^6.3.0",
29
+ "@fortawesome/vue-fontawesome": "^2.0.10",
30
+ "@sentry/tracing": "^6.19.4",
31
+ "@sentry/vue": "^6.2.0",
32
+ "axios": "^0.21.1",
33
+ "axios-extensions": "^3.1.6",
34
+ "bignumber.js": "^9.1.0",
35
+ "buefy": "^0.9.22",
36
+ "konva": "^8.3.13",
37
+ "sass": "^1.56.0",
38
+ "sass-loader": "^13.1.0",
39
+ "vue": "^2.6.14",
40
+ "vue-i18n": "^8.27.1",
41
+ "vue-i18n-bridge": "^9.2.2",
42
+ "vue-konva": "^2.1.7",
43
+ "vue-observe-visibility": "^1.0.0",
44
+ "vue-template-compiler": "^2.6.10",
45
+ "vuedraggable": "^2.24.3",
46
+ "vuex": "^3.6.2"
47
+ },
48
+ "devDependencies": {
49
+ "@4tw/cypress-drag-drop": "^2.2.5",
50
+ "@intlify/vue-i18n-loader": "^1.x",
51
+ "@vue/cli-plugin-eslint": "^5.0.8",
52
+ "@vue/cli-plugin-unit-jest": "^5.0.8",
53
+ "@vue/cli-service": "^5.0.8",
54
+ "@vue/test-utils": "^1.1.3",
55
+ "@vue/vue2-jest": "^27.0.0",
56
+ "babel-jest": "^27.0.6",
57
+ "cypress": "^13.2.0",
58
+ "dotenv": "^16.3.1",
59
+ "eslint": "^8.30.0",
60
+ "eslint-config-prettier": "^8.6.0",
61
+ "eslint-plugin-vue": "^9.8.0",
62
+ "jest": "^27.0.5",
63
+ "pre-commit": "^1.2.2",
64
+ "prettier": "2.8.1"
65
+ }
66
+ }
package/src/api.js CHANGED
@@ -1,82 +1,82 @@
1
- import axios from "axios";
2
- import { cacheAdapterEnhancer } from "axios-extensions";
3
-
4
- let HTTP, FILE_REQUEST, authToken, appLocale;
5
- const DEFAULT_URL = "https://app.konfuzio.com";
6
- const FILE_URL = process.env.VUE_APP_DOCUMENT_IMAGES_URL;
7
-
8
- axios.defaults.xsrfCookieName = "csrftoken";
9
- axios.defaults.xsrfHeaderName = "X-CSRFToken";
10
-
11
- HTTP = axios.create({
12
- baseURL: process.env.VUE_APP_API_URL || `${DEFAULT_URL}/api/v3/`,
13
- });
14
-
15
- FILE_REQUEST = axios.create({
16
- baseURL: FILE_URL || `${DEFAULT_URL}`,
17
- responseType: "blob",
18
- adapter: cacheAdapterEnhancer(axios.defaults.adapter),
19
- });
20
-
21
- const setAuthToken = (token) => {
22
- authToken = token;
23
- };
24
-
25
- const setApiUrl = (url) => {
26
- HTTP.defaults.baseURL = url;
27
- };
28
-
29
- const setFileUrl = (url) => {
30
- FILE_REQUEST.defaults.baseURL = url;
31
- };
32
-
33
- const setLocale = (locale) => {
34
- appLocale = locale;
35
- };
36
-
37
- const getInterceptorConfig = (config) => {
38
- if (authToken) {
39
- config.headers["Authorization"] = `Token ${authToken}`;
40
- config.headers["Accept-Language"] = `${appLocale}-${appLocale}`;
41
- }
42
- return config;
43
- };
44
-
45
- HTTP.interceptors.request.use(getInterceptorConfig, (error) => {
46
- return Promise.reject(error);
47
- });
48
-
49
- FILE_REQUEST.interceptors.request.use(getInterceptorConfig, (error) => {
50
- return Promise.reject(error);
51
- });
52
-
53
- const makeFileRequest = (fileUrl) => {
54
- return new Promise((resolve, reject) => {
55
- if (process.env.NODE_ENV === "test") {
56
- reject("Running unit tests!");
57
- return;
58
- }
59
- FILE_REQUEST.get(fileUrl)
60
- .then((response) => {
61
- return response.data;
62
- })
63
- .then((myBlob) => {
64
- resolve(myBlob);
65
- })
66
- .catch((error) => {
67
- reject(error);
68
- });
69
- });
70
- };
71
-
72
- export default {
73
- HTTP,
74
- setApiUrl,
75
- setFileUrl,
76
- makeFileRequest,
77
- setAuthToken,
78
- setLocale,
79
- FILE_REQUEST,
80
- DEFAULT_URL,
81
- FILE_URL
82
- };
1
+ import axios from "axios";
2
+ import { cacheAdapterEnhancer } from "axios-extensions";
3
+
4
+ let HTTP, FILE_REQUEST, authToken, appLocale;
5
+ const DEFAULT_URL = "https://app.konfuzio.com";
6
+ const FILE_URL = process.env.VUE_APP_DOCUMENT_IMAGES_URL;
7
+
8
+ axios.defaults.xsrfCookieName = "csrftoken";
9
+ axios.defaults.xsrfHeaderName = "X-CSRFToken";
10
+
11
+ HTTP = axios.create({
12
+ baseURL: process.env.VUE_APP_API_URL || `${DEFAULT_URL}/api/v3/`,
13
+ });
14
+
15
+ FILE_REQUEST = axios.create({
16
+ baseURL: FILE_URL || `${DEFAULT_URL}`,
17
+ responseType: "blob",
18
+ adapter: cacheAdapterEnhancer(axios.defaults.adapter),
19
+ });
20
+
21
+ const setAuthToken = (token) => {
22
+ authToken = token;
23
+ };
24
+
25
+ const setApiUrl = (url) => {
26
+ HTTP.defaults.baseURL = url;
27
+ };
28
+
29
+ const setFileUrl = (url) => {
30
+ FILE_REQUEST.defaults.baseURL = url;
31
+ };
32
+
33
+ const setLocale = (locale) => {
34
+ appLocale = locale;
35
+ };
36
+
37
+ const getInterceptorConfig = (config) => {
38
+ if (authToken) {
39
+ config.headers["Authorization"] = `Token ${authToken}`;
40
+ config.headers["Accept-Language"] = `${appLocale}-${appLocale}`;
41
+ }
42
+ return config;
43
+ };
44
+
45
+ HTTP.interceptors.request.use(getInterceptorConfig, (error) => {
46
+ return Promise.reject(error);
47
+ });
48
+
49
+ FILE_REQUEST.interceptors.request.use(getInterceptorConfig, (error) => {
50
+ return Promise.reject(error);
51
+ });
52
+
53
+ const makeFileRequest = (fileUrl) => {
54
+ return new Promise((resolve, reject) => {
55
+ if (process.env.NODE_ENV === "test") {
56
+ reject("Running unit tests!");
57
+ return;
58
+ }
59
+ FILE_REQUEST.get(fileUrl)
60
+ .then((response) => {
61
+ return response.data;
62
+ })
63
+ .then((myBlob) => {
64
+ resolve(myBlob);
65
+ })
66
+ .catch((error) => {
67
+ reject(error);
68
+ });
69
+ });
70
+ };
71
+
72
+ export default {
73
+ HTTP,
74
+ setApiUrl,
75
+ setFileUrl,
76
+ makeFileRequest,
77
+ setAuthToken,
78
+ setLocale,
79
+ FILE_REQUEST,
80
+ DEFAULT_URL,
81
+ FILE_URL
82
+ };
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path
4
- fill="#4bb543"
5
- d="M18.71,7.21a1,1,0,0,0-1.42,0L9.84,14.67,6.71,11.53A1,1,0,1,0,5.29,13l3.84,3.84a1,1,0,0,0,1.42,0l8.16-8.16A1,1,0,0,0,18.71,7.21Z"
6
- />
7
- </svg>
8
- </template>
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
+ <path
4
+ fill="#4bb543"
5
+ d="M18.71,7.21a1,1,0,0,0-1.42,0L9.84,14.67,6.71,11.53A1,1,0,1,0,5.29,13l3.84,3.84a1,1,0,0,0,1.42,0l8.16-8.16A1,1,0,0,0,18.71,7.21Z"
6
+ />
7
+ </svg>
8
+ </template>
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path
4
- fill="#4bb543"
5
- d="M15.71,12.71a6,6,0,1,0-7.42,0,10,10,0,0,0-6.22,8.18,1,1,0,0,0,2,.22,8,8,0,0,1,15.9,0,1,1,0,0,0,1,.89h.11a1,1,0,0,0,.88-1.1A10,10,0,0,0,15.71,12.71ZM12,12a4,4,0,1,1,4-4A4,4,0,0,1,12,12Z"
6
- />
7
- </svg>
8
- </template>
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
+ <path
4
+ fill="#4bb543"
5
+ d="M15.71,12.71a6,6,0,1,0-7.42,0,10,10,0,0,0-6.22,8.18,1,1,0,0,0,2,.22,8,8,0,0,1,15.9,0,1,1,0,0,0,1,.89h.11a1,1,0,0,0,.88-1.1A10,10,0,0,0,15.71,12.71ZM12,12a4,4,0,1,1,4-4A4,4,0,0,1,12,12Z"
6
+ />
7
+ </svg>
8
+ </template>
@@ -1,60 +1,60 @@
1
- <template>
2
- <div>
3
- <svg
4
- v-if="icon === 'arrows'"
5
- width="19"
6
- height="8"
7
- viewBox="0 0 19 8"
8
- fill="none"
9
- xmlns="http://www.w3.org/2000/svg"
10
- >
11
- <path
12
- fill-rule="evenodd"
13
- clip-rule="evenodd"
14
- d="M14.4979 1.64529C14.2376 1.38494 14.2376 0.962827 14.4979 0.702477C14.7583 0.442128 15.1804 0.442127 15.4408 0.702477L18.2692 3.5309C18.5295 3.79125 18.5295 4.21336 18.2692 4.47371L15.4408 7.30214C15.1804 7.56249 14.7583 7.56249 14.4979 7.30214C14.2376 7.04179 14.2376 6.61968 14.4979 6.35933L16.1883 4.66898H11.1981C10.8299 4.66898 10.5315 4.3705 10.5315 4.00231C10.5315 3.63412 10.8299 3.33564 11.1981 3.33564L16.1883 3.33564L14.4979 1.64529ZM7.42688 3.33564C7.79507 3.33564 8.09355 3.63412 8.09355 4.00231C8.09355 4.3705 7.79507 4.66898 7.42688 4.66898H2.4367L4.12705 6.35933C4.3874 6.61968 4.3874 7.04179 4.12705 7.30214C3.8667 7.56249 3.44459 7.56249 3.18424 7.30214L0.355815 4.47371C0.0954656 4.21336 0.0954652 3.79125 0.355815 3.5309L3.18424 0.702477C3.44459 0.442127 3.8667 0.442128 4.12705 0.702477C4.3874 0.962827 4.3874 1.38494 4.12705 1.64529L2.4367 3.33564L7.42688 3.33564Z"
15
- fill="white"
16
- />
17
- </svg>
18
-
19
- <svg
20
- v-if="icon === 'grid'"
21
- width="14"
22
- height="14"
23
- viewBox="0 0 14 14"
24
- fill="none"
25
- xmlns="http://www.w3.org/2000/svg"
26
- >
27
- <path
28
- fill-rule="evenodd"
29
- clip-rule="evenodd"
30
- d="M0.332031 0.998698C0.332031 0.630508 0.630508 0.332031 0.998698 0.332031H5.66536C6.03355 0.332031 6.33203 0.630508 6.33203 0.998698V5.66536C6.33203 6.03355 6.03355 6.33203 5.66536 6.33203H0.998698C0.630508 6.33203 0.332031 6.03355 0.332031 5.66536V0.998698ZM1.66536 1.66536V4.9987H4.9987V1.66536H1.66536ZM7.66536 0.998698C7.66536 0.630508 7.96384 0.332031 8.33203 0.332031H12.9987C13.3669 0.332031 13.6654 0.630508 13.6654 0.998698V5.66536C13.6654 6.03355 13.3669 6.33203 12.9987 6.33203H8.33203C7.96384 6.33203 7.66536 6.03355 7.66536 5.66536V0.998698ZM8.9987 1.66536V4.9987H12.332V1.66536H8.9987ZM0.332031 8.33203C0.332031 7.96384 0.630508 7.66536 0.998698 7.66536H5.66536C6.03355 7.66536 6.33203 7.96384 6.33203 8.33203V12.9987C6.33203 13.3669 6.03355 13.6654 5.66536 13.6654H0.998698C0.630508 13.6654 0.332031 13.3669 0.332031 12.9987V8.33203ZM1.66536 8.9987V12.332H4.9987V8.9987H1.66536ZM7.66536 8.33203C7.66536 7.96384 7.96384 7.66536 8.33203 7.66536H12.9987C13.3669 7.66536 13.6654 7.96384 13.6654 8.33203V12.9987C13.6654 13.3669 13.3669 13.6654 12.9987 13.6654H8.33203C7.96384 13.6654 7.66536 13.3669 7.66536 12.9987V8.33203ZM8.9987 8.9987V12.332H12.332V8.9987H8.9987Z"
31
- fill="white"
32
- />
33
- </svg>
34
- <svg
35
- width="6"
36
- height="10"
37
- viewBox="0 0 6 10"
38
- fill="none"
39
- xmlns="http://www.w3.org/2000/svg"
40
- >
41
- <path
42
- d="M1.5 3.94922C1.30222 3.94922 1.10888 4.00787 0.94443 4.11775C0.779981 4.22763 0.651809 4.38381 0.576121 4.56654C0.500433 4.74926 0.48063 4.95033 0.519215 5.14431C0.5578 5.33829 0.653041 5.51647 0.792894 5.65633C0.932746 5.79618 1.11093 5.89142 1.30491 5.93C1.49889 5.96859 1.69996 5.94879 1.88268 5.8731C2.06541 5.79741 2.22159 5.66924 2.33147 5.50479C2.44135 5.34034 2.5 5.147 2.5 4.94922C2.5 4.684 2.39464 4.42965 2.20711 4.24211C2.01957 4.05458 1.76522 3.94922 1.5 3.94922ZM1.5 7.44922C1.30222 7.44922 1.10888 7.50787 0.94443 7.61775C0.779981 7.72763 0.651809 7.88381 0.576121 8.06654C0.500433 8.24926 0.48063 8.45033 0.519215 8.64431C0.5578 8.83829 0.653041 9.01647 0.792894 9.15633C0.932746 9.29618 1.11093 9.39142 1.30491 9.43C1.49889 9.46859 1.69996 9.44879 1.88268 9.3731C2.06541 9.29741 2.22159 9.16924 2.33147 9.00479C2.44135 8.84034 2.5 8.647 2.5 8.44922C2.5 8.184 2.39464 7.92965 2.20711 7.74211C2.01957 7.55458 1.76522 7.44922 1.5 7.44922ZM5 2.44922C5.19778 2.44922 5.39112 2.39057 5.55557 2.28069C5.72002 2.17081 5.84819 2.01463 5.92388 1.8319C5.99957 1.64918 6.01937 1.44811 5.98079 1.25413C5.9422 1.06015 5.84696 0.881965 5.70711 0.742112C5.56725 0.60226 5.38907 0.507019 5.19509 0.468434C5.00111 0.429849 4.80004 0.449652 4.61732 0.52534C4.43459 0.601027 4.27841 0.7292 4.16853 0.893649C4.05865 1.0581 4 1.25144 4 1.44922C4 1.71444 4.10536 1.96879 4.29289 2.15633C4.48043 2.34386 4.73478 2.44922 5 2.44922ZM1.5 0.449219C1.30222 0.449219 1.10888 0.507868 0.94443 0.61775C0.779981 0.727631 0.651809 0.88381 0.576121 1.06654C0.500433 1.24926 0.48063 1.45033 0.519215 1.64431C0.5578 1.83829 0.653041 2.01647 0.792894 2.15633C0.932746 2.29618 1.11093 2.39142 1.30491 2.43C1.49889 2.46859 1.69996 2.44879 1.88268 2.3731C2.06541 2.29741 2.22159 2.16924 2.33147 2.00479C2.44135 1.84034 2.5 1.647 2.5 1.44922C2.5 1.184 2.39464 0.929649 2.20711 0.742112C2.01957 0.554576 1.76522 0.449219 1.5 0.449219ZM5 7.44922C4.80222 7.44922 4.60888 7.50787 4.44443 7.61775C4.27998 7.72763 4.15181 7.88381 4.07612 8.06654C4.00043 8.24926 3.98063 8.45033 4.01922 8.64431C4.0578 8.83829 4.15304 9.01647 4.29289 9.15633C4.43275 9.29618 4.61093 9.39142 4.80491 9.43C4.99889 9.46859 5.19996 9.44879 5.38268 9.3731C5.56541 9.29741 5.72159 9.16924 5.83147 9.00479C5.94135 8.84034 6 8.647 6 8.44922C6 8.184 5.89464 7.92965 5.70711 7.74211C5.51957 7.55458 5.26522 7.44922 5 7.44922ZM5 3.94922C4.80222 3.94922 4.60888 4.00787 4.44443 4.11775C4.27998 4.22763 4.15181 4.38381 4.07612 4.56654C4.00043 4.74926 3.98063 4.95033 4.01922 5.14431C4.0578 5.33829 4.15304 5.51647 4.29289 5.65633C4.43275 5.79618 4.61093 5.89142 4.80491 5.93C4.99889 5.96859 5.19996 5.94879 5.38268 5.8731C5.56541 5.79741 5.72159 5.66924 5.83147 5.50479C5.94135 5.34034 6 5.147 6 4.94922C6 4.684 5.89464 4.42965 5.70711 4.24211C5.51957 4.05458 5.26522 3.94922 5 3.94922Z"
43
- fill="white"
44
- />
45
- </svg>
46
- </div>
47
- </template>
48
-
49
- <script>
50
- export default {
51
- name: "ActionIcon",
52
- props: {
53
- icon: {
54
- type: String,
55
- default: null,
56
- required: false,
57
- },
58
- },
59
- };
60
- </script>
1
+ <template>
2
+ <div>
3
+ <svg
4
+ v-if="icon === 'arrows'"
5
+ width="19"
6
+ height="8"
7
+ viewBox="0 0 19 8"
8
+ fill="none"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ >
11
+ <path
12
+ fill-rule="evenodd"
13
+ clip-rule="evenodd"
14
+ d="M14.4979 1.64529C14.2376 1.38494 14.2376 0.962827 14.4979 0.702477C14.7583 0.442128 15.1804 0.442127 15.4408 0.702477L18.2692 3.5309C18.5295 3.79125 18.5295 4.21336 18.2692 4.47371L15.4408 7.30214C15.1804 7.56249 14.7583 7.56249 14.4979 7.30214C14.2376 7.04179 14.2376 6.61968 14.4979 6.35933L16.1883 4.66898H11.1981C10.8299 4.66898 10.5315 4.3705 10.5315 4.00231C10.5315 3.63412 10.8299 3.33564 11.1981 3.33564L16.1883 3.33564L14.4979 1.64529ZM7.42688 3.33564C7.79507 3.33564 8.09355 3.63412 8.09355 4.00231C8.09355 4.3705 7.79507 4.66898 7.42688 4.66898H2.4367L4.12705 6.35933C4.3874 6.61968 4.3874 7.04179 4.12705 7.30214C3.8667 7.56249 3.44459 7.56249 3.18424 7.30214L0.355815 4.47371C0.0954656 4.21336 0.0954652 3.79125 0.355815 3.5309L3.18424 0.702477C3.44459 0.442127 3.8667 0.442128 4.12705 0.702477C4.3874 0.962827 4.3874 1.38494 4.12705 1.64529L2.4367 3.33564L7.42688 3.33564Z"
15
+ fill="white"
16
+ />
17
+ </svg>
18
+
19
+ <svg
20
+ v-if="icon === 'grid'"
21
+ width="14"
22
+ height="14"
23
+ viewBox="0 0 14 14"
24
+ fill="none"
25
+ xmlns="http://www.w3.org/2000/svg"
26
+ >
27
+ <path
28
+ fill-rule="evenodd"
29
+ clip-rule="evenodd"
30
+ d="M0.332031 0.998698C0.332031 0.630508 0.630508 0.332031 0.998698 0.332031H5.66536C6.03355 0.332031 6.33203 0.630508 6.33203 0.998698V5.66536C6.33203 6.03355 6.03355 6.33203 5.66536 6.33203H0.998698C0.630508 6.33203 0.332031 6.03355 0.332031 5.66536V0.998698ZM1.66536 1.66536V4.9987H4.9987V1.66536H1.66536ZM7.66536 0.998698C7.66536 0.630508 7.96384 0.332031 8.33203 0.332031H12.9987C13.3669 0.332031 13.6654 0.630508 13.6654 0.998698V5.66536C13.6654 6.03355 13.3669 6.33203 12.9987 6.33203H8.33203C7.96384 6.33203 7.66536 6.03355 7.66536 5.66536V0.998698ZM8.9987 1.66536V4.9987H12.332V1.66536H8.9987ZM0.332031 8.33203C0.332031 7.96384 0.630508 7.66536 0.998698 7.66536H5.66536C6.03355 7.66536 6.33203 7.96384 6.33203 8.33203V12.9987C6.33203 13.3669 6.03355 13.6654 5.66536 13.6654H0.998698C0.630508 13.6654 0.332031 13.3669 0.332031 12.9987V8.33203ZM1.66536 8.9987V12.332H4.9987V8.9987H1.66536ZM7.66536 8.33203C7.66536 7.96384 7.96384 7.66536 8.33203 7.66536H12.9987C13.3669 7.66536 13.6654 7.96384 13.6654 8.33203V12.9987C13.6654 13.3669 13.3669 13.6654 12.9987 13.6654H8.33203C7.96384 13.6654 7.66536 13.3669 7.66536 12.9987V8.33203ZM8.9987 8.9987V12.332H12.332V8.9987H8.9987Z"
31
+ fill="white"
32
+ />
33
+ </svg>
34
+ <svg
35
+ width="6"
36
+ height="10"
37
+ viewBox="0 0 6 10"
38
+ fill="none"
39
+ xmlns="http://www.w3.org/2000/svg"
40
+ >
41
+ <path
42
+ d="M1.5 3.94922C1.30222 3.94922 1.10888 4.00787 0.94443 4.11775C0.779981 4.22763 0.651809 4.38381 0.576121 4.56654C0.500433 4.74926 0.48063 4.95033 0.519215 5.14431C0.5578 5.33829 0.653041 5.51647 0.792894 5.65633C0.932746 5.79618 1.11093 5.89142 1.30491 5.93C1.49889 5.96859 1.69996 5.94879 1.88268 5.8731C2.06541 5.79741 2.22159 5.66924 2.33147 5.50479C2.44135 5.34034 2.5 5.147 2.5 4.94922C2.5 4.684 2.39464 4.42965 2.20711 4.24211C2.01957 4.05458 1.76522 3.94922 1.5 3.94922ZM1.5 7.44922C1.30222 7.44922 1.10888 7.50787 0.94443 7.61775C0.779981 7.72763 0.651809 7.88381 0.576121 8.06654C0.500433 8.24926 0.48063 8.45033 0.519215 8.64431C0.5578 8.83829 0.653041 9.01647 0.792894 9.15633C0.932746 9.29618 1.11093 9.39142 1.30491 9.43C1.49889 9.46859 1.69996 9.44879 1.88268 9.3731C2.06541 9.29741 2.22159 9.16924 2.33147 9.00479C2.44135 8.84034 2.5 8.647 2.5 8.44922C2.5 8.184 2.39464 7.92965 2.20711 7.74211C2.01957 7.55458 1.76522 7.44922 1.5 7.44922ZM5 2.44922C5.19778 2.44922 5.39112 2.39057 5.55557 2.28069C5.72002 2.17081 5.84819 2.01463 5.92388 1.8319C5.99957 1.64918 6.01937 1.44811 5.98079 1.25413C5.9422 1.06015 5.84696 0.881965 5.70711 0.742112C5.56725 0.60226 5.38907 0.507019 5.19509 0.468434C5.00111 0.429849 4.80004 0.449652 4.61732 0.52534C4.43459 0.601027 4.27841 0.7292 4.16853 0.893649C4.05865 1.0581 4 1.25144 4 1.44922C4 1.71444 4.10536 1.96879 4.29289 2.15633C4.48043 2.34386 4.73478 2.44922 5 2.44922ZM1.5 0.449219C1.30222 0.449219 1.10888 0.507868 0.94443 0.61775C0.779981 0.727631 0.651809 0.88381 0.576121 1.06654C0.500433 1.24926 0.48063 1.45033 0.519215 1.64431C0.5578 1.83829 0.653041 2.01647 0.792894 2.15633C0.932746 2.29618 1.11093 2.39142 1.30491 2.43C1.49889 2.46859 1.69996 2.44879 1.88268 2.3731C2.06541 2.29741 2.22159 2.16924 2.33147 2.00479C2.44135 1.84034 2.5 1.647 2.5 1.44922C2.5 1.184 2.39464 0.929649 2.20711 0.742112C2.01957 0.554576 1.76522 0.449219 1.5 0.449219ZM5 7.44922C4.80222 7.44922 4.60888 7.50787 4.44443 7.61775C4.27998 7.72763 4.15181 7.88381 4.07612 8.06654C4.00043 8.24926 3.98063 8.45033 4.01922 8.64431C4.0578 8.83829 4.15304 9.01647 4.29289 9.15633C4.43275 9.29618 4.61093 9.39142 4.80491 9.43C4.99889 9.46859 5.19996 9.44879 5.38268 9.3731C5.56541 9.29741 5.72159 9.16924 5.83147 9.00479C5.94135 8.84034 6 8.647 6 8.44922C6 8.184 5.89464 7.92965 5.70711 7.74211C5.51957 7.55458 5.26522 7.44922 5 7.44922ZM5 3.94922C4.80222 3.94922 4.60888 4.00787 4.44443 4.11775C4.27998 4.22763 4.15181 4.38381 4.07612 4.56654C4.00043 4.74926 3.98063 4.95033 4.01922 5.14431C4.0578 5.33829 4.15304 5.51647 4.29289 5.65633C4.43275 5.79618 4.61093 5.89142 4.80491 5.93C4.99889 5.96859 5.19996 5.94879 5.38268 5.8731C5.56541 5.79741 5.72159 5.66924 5.83147 5.50479C5.94135 5.34034 6 5.147 6 4.94922C6 4.684 5.89464 4.42965 5.70711 4.24211C5.51957 4.05458 5.26522 3.94922 5 3.94922Z"
43
+ fill="white"
44
+ />
45
+ </svg>
46
+ </div>
47
+ </template>
48
+
49
+ <script>
50
+ export default {
51
+ name: "ActionIcon",
52
+ props: {
53
+ icon: {
54
+ type: String,
55
+ default: null,
56
+ required: false,
57
+ },
58
+ },
59
+ };
60
+ </script>
@@ -1,11 +1,11 @@
1
- <template>
2
- <svg
3
- width="8"
4
- height="6"
5
- viewBox="0 0 8 6"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- >
9
- <path d="M4 0.5L0 5.5L8 5.5L4 0.5Z" fill="white" />
10
- </svg>
11
- </template>
1
+ <template>
2
+ <svg
3
+ width="8"
4
+ height="6"
5
+ viewBox="0 0 8 6"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path d="M4 0.5L0 5.5L8 5.5L4 0.5Z" fill="white" />
10
+ </svg>
11
+ </template>
@@ -1,11 +1,11 @@
1
- <template>
2
- <svg
3
- width="8"
4
- height="6"
5
- viewBox="0 0 8 6"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- >
9
- <path d="M4 5.5L0 0.5L8 0.5L4 5.5Z" fill="white" />
10
- </svg>
11
- </template>
1
+ <template>
2
+ <svg
3
+ width="8"
4
+ height="6"
5
+ viewBox="0 0 8 6"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path d="M4 5.5L0 0.5L8 0.5L4 5.5Z" fill="white" />
10
+ </svg>
11
+ </template>
@@ -1,13 +1,13 @@
1
- <template>
2
- <svg
3
- xmlns="http://www.w3.org/2000/svg"
4
- width="22"
5
- height="22"
6
- viewBox="0 0 22 22"
7
- >
8
- <path
9
- fill="#1A1A1A"
10
- d="M20.47,7.37s0,0,0-.08l-.06-.15a.71.71,0,0,0-.07-.09.94.94,0,0,0-.09-.12l-.09-.07L20,6.78l-7.5-4.63a1,1,0,0,0-1.06,0L4,6.78l-.09.08-.09.07a.94.94,0,0,0-.09.12.71.71,0,0,0-.07.09l-.06.15s0,0,0,.08a1.15,1.15,0,0,0,0,.26v8.74a1,1,0,0,0,.47.85l7.5,4.63h0a.47.47,0,0,0,.15.06s.05,0,.08,0a.86.86,0,0,0,.52,0s.05,0,.08,0a.47.47,0,0,0,.15-.06h0L20,17.22a1,1,0,0,0,.47-.85V7.63A1.15,1.15,0,0,0,20.47,7.37ZM11,19.21l-5.5-3.4V9.43L11,12.82Zm1-8.12L6.4,7.63,12,4.18l5.6,3.45Zm6.5,4.72L13,19.21V12.82l5.5-3.39Z"
11
- />
12
- </svg>
13
- </template>
1
+ <template>
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ width="22"
5
+ height="22"
6
+ viewBox="0 0 22 22"
7
+ >
8
+ <path
9
+ fill="#1A1A1A"
10
+ d="M20.47,7.37s0,0,0-.08l-.06-.15a.71.71,0,0,0-.07-.09.94.94,0,0,0-.09-.12l-.09-.07L20,6.78l-7.5-4.63a1,1,0,0,0-1.06,0L4,6.78l-.09.08-.09.07a.94.94,0,0,0-.09.12.71.71,0,0,0-.07.09l-.06.15s0,0,0,.08a1.15,1.15,0,0,0,0,.26v8.74a1,1,0,0,0,.47.85l7.5,4.63h0a.47.47,0,0,0,.15.06s.05,0,.08,0a.86.86,0,0,0,.52,0s.05,0,.08,0a.47.47,0,0,0,.15-.06h0L20,17.22a1,1,0,0,0,.47-.85V7.63A1.15,1.15,0,0,0,20.47,7.37ZM11,19.21l-5.5-3.4V9.43L11,12.82Zm1-8.12L6.4,7.63,12,4.18l5.6,3.45Zm6.5,4.72L13,19.21V12.82l5.5-3.39Z"
11
+ />
12
+ </svg>
13
+ </template>
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path
4
- fill="#E1E1E1"
5
- d="M18.71,7.21a1,1,0,0,0-1.42,0L9.84,14.67,6.71,11.53A1,1,0,1,0,5.29,13l3.84,3.84a1,1,0,0,0,1.42,0l8.16-8.16A1,1,0,0,0,18.71,7.21Z"
6
- />
7
- </svg>
8
- </template>
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
+ <path
4
+ fill="#E1E1E1"
5
+ d="M18.71,7.21a1,1,0,0,0-1.42,0L9.84,14.67,6.71,11.53A1,1,0,1,0,5.29,13l3.84,3.84a1,1,0,0,0,1.42,0l8.16-8.16A1,1,0,0,0,18.71,7.21Z"
6
+ />
7
+ </svg>
8
+ </template>
@@ -1,14 +1,14 @@
1
- <template>
2
- <svg
3
- width="12"
4
- height="12"
5
- viewBox="0 0 12 12"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- >
9
- <path
10
- d="M4.5 4.94922C4.30222 4.94922 4.10888 5.00787 3.94443 5.11775C3.77998 5.22763 3.65181 5.38381 3.57612 5.56654C3.50043 5.74926 3.48063 5.95033 3.51922 6.14431C3.5578 6.33829 3.65304 6.51647 3.79289 6.65633C3.93275 6.79618 4.11093 6.89142 4.30491 6.93C4.49889 6.96859 4.69996 6.94879 4.88268 6.8731C5.06541 6.79741 5.22159 6.66924 5.33147 6.50479C5.44135 6.34034 5.5 6.147 5.5 5.94922C5.5 5.684 5.39464 5.42965 5.20711 5.24211C5.01957 5.05458 4.76522 4.94922 4.5 4.94922ZM4.5 8.44922C4.30222 8.44922 4.10888 8.50787 3.94443 8.61775C3.77998 8.72763 3.65181 8.88381 3.57612 9.06654C3.50043 9.24926 3.48063 9.45033 3.51922 9.64431C3.5578 9.83829 3.65304 10.0165 3.79289 10.1563C3.93275 10.2962 4.11093 10.3914 4.30491 10.43C4.49889 10.4686 4.69996 10.4488 4.88268 10.3731C5.06541 10.2974 5.22159 10.1692 5.33147 10.0048C5.44135 9.84034 5.5 9.647 5.5 9.44922C5.5 9.184 5.39464 8.92965 5.20711 8.74211C5.01957 8.55458 4.76522 8.44922 4.5 8.44922ZM8 3.44922C8.19778 3.44922 8.39112 3.39057 8.55557 3.28069C8.72002 3.17081 8.84819 3.01463 8.92388 2.8319C8.99957 2.64918 9.01937 2.44811 8.98079 2.25413C8.9422 2.06015 8.84696 1.88196 8.70711 1.74211C8.56725 1.60226 8.38907 1.50702 8.19509 1.46843C8.00111 1.42985 7.80004 1.44965 7.61732 1.52534C7.43459 1.60103 7.27841 1.7292 7.16853 1.89365C7.05865 2.0581 7 2.25144 7 2.44922C7 2.71444 7.10536 2.96879 7.29289 3.15633C7.48043 3.34386 7.73478 3.44922 8 3.44922ZM4.5 1.44922C4.30222 1.44922 4.10888 1.50787 3.94443 1.61775C3.77998 1.72763 3.65181 1.88381 3.57612 2.06654C3.50043 2.24926 3.48063 2.45033 3.51922 2.64431C3.5578 2.83829 3.65304 3.01647 3.79289 3.15633C3.93275 3.29618 4.11093 3.39142 4.30491 3.43C4.49889 3.46859 4.69996 3.44879 4.88268 3.3731C5.06541 3.29741 5.22159 3.16924 5.33147 3.00479C5.44135 2.84034 5.5 2.647 5.5 2.44922C5.5 2.184 5.39464 1.92965 5.20711 1.74211C5.01957 1.55458 4.76522 1.44922 4.5 1.44922ZM8 8.44922C7.80222 8.44922 7.60888 8.50787 7.44443 8.61775C7.27998 8.72763 7.15181 8.88381 7.07612 9.06654C7.00043 9.24926 6.98063 9.45033 7.01922 9.64431C7.0578 9.83829 7.15304 10.0165 7.29289 10.1563C7.43275 10.2962 7.61093 10.3914 7.80491 10.43C7.99889 10.4686 8.19996 10.4488 8.38268 10.3731C8.56541 10.2974 8.72159 10.1692 8.83147 10.0048C8.94135 9.84034 9 9.647 9 9.44922C9 9.184 8.89464 8.92965 8.70711 8.74211C8.51957 8.55458 8.26522 8.44922 8 8.44922ZM8 4.94922C7.80222 4.94922 7.60888 5.00787 7.44443 5.11775C7.27998 5.22763 7.15181 5.38381 7.07612 5.56654C7.00043 5.74926 6.98063 5.95033 7.01922 6.14431C7.0578 6.33829 7.15304 6.51647 7.29289 6.65633C7.43275 6.79618 7.61093 6.89142 7.80491 6.93C7.99889 6.96859 8.19996 6.94879 8.38268 6.8731C8.56541 6.79741 8.72159 6.66924 8.83147 6.50479C8.94135 6.34034 9 6.147 9 5.94922C9 5.684 8.89464 5.42965 8.70711 5.24211C8.51957 5.05458 8.26522 4.94922 8 4.94922Z"
11
- fill="white"
12
- />
13
- </svg>
14
- </template>
1
+ <template>
2
+ <svg
3
+ width="12"
4
+ height="12"
5
+ viewBox="0 0 12 12"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M4.5 4.94922C4.30222 4.94922 4.10888 5.00787 3.94443 5.11775C3.77998 5.22763 3.65181 5.38381 3.57612 5.56654C3.50043 5.74926 3.48063 5.95033 3.51922 6.14431C3.5578 6.33829 3.65304 6.51647 3.79289 6.65633C3.93275 6.79618 4.11093 6.89142 4.30491 6.93C4.49889 6.96859 4.69996 6.94879 4.88268 6.8731C5.06541 6.79741 5.22159 6.66924 5.33147 6.50479C5.44135 6.34034 5.5 6.147 5.5 5.94922C5.5 5.684 5.39464 5.42965 5.20711 5.24211C5.01957 5.05458 4.76522 4.94922 4.5 4.94922ZM4.5 8.44922C4.30222 8.44922 4.10888 8.50787 3.94443 8.61775C3.77998 8.72763 3.65181 8.88381 3.57612 9.06654C3.50043 9.24926 3.48063 9.45033 3.51922 9.64431C3.5578 9.83829 3.65304 10.0165 3.79289 10.1563C3.93275 10.2962 4.11093 10.3914 4.30491 10.43C4.49889 10.4686 4.69996 10.4488 4.88268 10.3731C5.06541 10.2974 5.22159 10.1692 5.33147 10.0048C5.44135 9.84034 5.5 9.647 5.5 9.44922C5.5 9.184 5.39464 8.92965 5.20711 8.74211C5.01957 8.55458 4.76522 8.44922 4.5 8.44922ZM8 3.44922C8.19778 3.44922 8.39112 3.39057 8.55557 3.28069C8.72002 3.17081 8.84819 3.01463 8.92388 2.8319C8.99957 2.64918 9.01937 2.44811 8.98079 2.25413C8.9422 2.06015 8.84696 1.88196 8.70711 1.74211C8.56725 1.60226 8.38907 1.50702 8.19509 1.46843C8.00111 1.42985 7.80004 1.44965 7.61732 1.52534C7.43459 1.60103 7.27841 1.7292 7.16853 1.89365C7.05865 2.0581 7 2.25144 7 2.44922C7 2.71444 7.10536 2.96879 7.29289 3.15633C7.48043 3.34386 7.73478 3.44922 8 3.44922ZM4.5 1.44922C4.30222 1.44922 4.10888 1.50787 3.94443 1.61775C3.77998 1.72763 3.65181 1.88381 3.57612 2.06654C3.50043 2.24926 3.48063 2.45033 3.51922 2.64431C3.5578 2.83829 3.65304 3.01647 3.79289 3.15633C3.93275 3.29618 4.11093 3.39142 4.30491 3.43C4.49889 3.46859 4.69996 3.44879 4.88268 3.3731C5.06541 3.29741 5.22159 3.16924 5.33147 3.00479C5.44135 2.84034 5.5 2.647 5.5 2.44922C5.5 2.184 5.39464 1.92965 5.20711 1.74211C5.01957 1.55458 4.76522 1.44922 4.5 1.44922ZM8 8.44922C7.80222 8.44922 7.60888 8.50787 7.44443 8.61775C7.27998 8.72763 7.15181 8.88381 7.07612 9.06654C7.00043 9.24926 6.98063 9.45033 7.01922 9.64431C7.0578 9.83829 7.15304 10.0165 7.29289 10.1563C7.43275 10.2962 7.61093 10.3914 7.80491 10.43C7.99889 10.4686 8.19996 10.4488 8.38268 10.3731C8.56541 10.2974 8.72159 10.1692 8.83147 10.0048C8.94135 9.84034 9 9.647 9 9.44922C9 9.184 8.89464 8.92965 8.70711 8.74211C8.51957 8.55458 8.26522 8.44922 8 8.44922ZM8 4.94922C7.80222 4.94922 7.60888 5.00787 7.44443 5.11775C7.27998 5.22763 7.15181 5.38381 7.07612 5.56654C7.00043 5.74926 6.98063 5.95033 7.01922 6.14431C7.0578 6.33829 7.15304 6.51647 7.29289 6.65633C7.43275 6.79618 7.61093 6.89142 7.80491 6.93C7.99889 6.96859 8.19996 6.94879 8.38268 6.8731C8.56541 6.79741 8.72159 6.66924 8.83147 6.50479C8.94135 6.34034 9 6.147 9 5.94922C9 5.684 8.89464 5.42965 8.70711 5.24211C8.51957 5.05458 8.26522 4.94922 8 4.94922Z"
11
+ fill="white"
12
+ />
13
+ </svg>
14
+ </template>
@@ -1,12 +1,12 @@
1
- <template>
2
- <svg
3
- xmlns="http://www.w3.org/2000/svg"
4
- height="24"
5
- width="24"
6
- viewBox="0 0 24 24"
7
- >
8
- <path
9
- d="M20.71,16.71l-2.42-2.42a1,1,0,0,0-1.42,0l-3.58,3.58a1,1,0,0,0-.29.71V21a1,1,0,0,0,1,1h2.42a1,1,0,0,0,.71-.29l3.58-3.58A1,1,0,0,0,20.71,16.71ZM16,20H15V19l2.58-2.58,1,1Zm-6,0H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v1a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0L12.06,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h4a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM8,14h6a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Zm0-4H9A1,1,0,0,0,9,8H8a1,1,0,0,0,0,2Zm2,6H8a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Z"
10
- />
11
- </svg>
12
- </template>
1
+ <template>
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ height="24"
5
+ width="24"
6
+ viewBox="0 0 24 24"
7
+ >
8
+ <path
9
+ d="M20.71,16.71l-2.42-2.42a1,1,0,0,0-1.42,0l-3.58,3.58a1,1,0,0,0-.29.71V21a1,1,0,0,0,1,1h2.42a1,1,0,0,0,.71-.29l3.58-3.58A1,1,0,0,0,20.71,16.71ZM16,20H15V19l2.58-2.58,1,1Zm-6,0H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v1a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0L12.06,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h4a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM8,14h6a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Zm0-4H9A1,1,0,0,0,9,8H8a1,1,0,0,0,0,2Zm2,6H8a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Z"
10
+ />
11
+ </svg>
12
+ </template>