vueless 0.0.107 → 0.0.109
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/package.json +4 -4
- package/service.storybook/index.js +10 -1
- package/ui.button/index.stories.js +3 -0
- package/ui.container-modal/configs/default.config.js +1 -1
- package/ui.container-modal/index.vue +1 -1
- package/ui.dropdown-list/index.vue +1 -1
- package/ui.form-checkbox-group/configs/default.config.js +3 -0
- package/ui.form-checkbox-group/index.vue +1 -1
- package/ui.form-color-picker/index.vue +3 -2
- package/ui.form-date-picker-range/configs/default.config.js +0 -8
- package/ui.form-date-picker-range/index.vue +5 -1
- package/ui.form-radio/configs/default.config.js +1 -0
- package/ui.image-icon/configs/default.config.js +1 -1
- package/ui.image-icon/index.vue +0 -8
- package/ui.text-alert/configs/default.config.js +1 -1
- package/ui.text-block/configs/default.config.js +1 -0
- package/ui.text-money/configs/default.config.js +1 -1
- package/web-types.json +14 -22
- package/assets/icons/add.svg +0 -1
- package/assets/icons/apps.svg +0 -1
- package/assets/icons/arrow_back.svg +0 -1
- package/assets/icons/attach_file.svg +0 -1
- package/assets/icons/check.svg +0 -1
- package/assets/icons/check_circle.svg +0 -1
- package/assets/icons/close.svg +0 -1
- package/assets/icons/close_small.svg +0 -1
- package/assets/icons/delete.svg +0 -1
- package/assets/icons/description.svg +0 -1
- package/assets/icons/drag_indicator.svg +0 -1
- package/assets/icons/edit_note.svg +0 -1
- package/assets/icons/emoji_food_beverage.svg +0 -1
- package/assets/icons/error.svg +0 -1
- package/assets/icons/expand_more.svg +0 -1
- package/assets/icons/keyboard_arrow_down.svg +0 -1
- package/assets/icons/keyboard_arrow_left.svg +0 -1
- package/assets/icons/keyboard_arrow_right.svg +0 -1
- package/assets/icons/remove.svg +0 -1
- package/assets/icons/search.svg +0 -1
- package/assets/icons/star-fill.svg +0 -1
- package/assets/icons/star.svg +0 -1
- package/assets/icons/visibility-fill.svg +0 -1
- package/assets/icons/visibility_off-fill.svg +0 -1
- package/assets/icons/warning.svg +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vueless",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.109",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Vue Styleless Component Framework.",
|
|
6
6
|
"homepage": "https://vueless.com",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"@release-it/bumper": "^6.0.1",
|
|
38
38
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
39
39
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
40
|
-
"@vueless/plugin-vite": "^0.0.
|
|
41
|
-
"@vueless/storybook": "^0.0.
|
|
42
|
-
"@vueless/web-types": "^0.0.
|
|
40
|
+
"@vueless/plugin-vite": "^0.0.13",
|
|
41
|
+
"@vueless/storybook": "^0.0.20",
|
|
42
|
+
"@vueless/web-types": "^0.0.6",
|
|
43
43
|
"autoprefixer": "^10.4.19",
|
|
44
44
|
"cssnano": "^6.1.2",
|
|
45
45
|
"eslint": "^8.55.0",
|
|
@@ -22,7 +22,7 @@ export function getArgTypes(componentName) {
|
|
|
22
22
|
component.attributes?.forEach((attribute) => {
|
|
23
23
|
const type = attribute.value.type;
|
|
24
24
|
|
|
25
|
-
if (type === "string") {
|
|
25
|
+
if (type === "string" || type.includes("string")) {
|
|
26
26
|
types[attribute.name] = {
|
|
27
27
|
control: "text",
|
|
28
28
|
table: {
|
|
@@ -49,6 +49,15 @@ export function getArgTypes(componentName) {
|
|
|
49
49
|
};
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
+
if (type === "array") {
|
|
53
|
+
types[attribute.name] = {
|
|
54
|
+
control: "array",
|
|
55
|
+
table: {
|
|
56
|
+
defaultValue: { summary: attribute.default || [] },
|
|
57
|
+
},
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
|
|
52
61
|
if (type.includes("|")) {
|
|
53
62
|
const options = attribute.value.type.replace(/['|]/g, "").split(/\s+/);
|
|
54
63
|
|
|
@@ -5,6 +5,9 @@ import UIcon from "../ui.image-icon";
|
|
|
5
5
|
import URow from "../ui.container-row";
|
|
6
6
|
import UGroup from "../ui.container-group";
|
|
7
7
|
|
|
8
|
+
/**
|
|
9
|
+
* The `UButton` component. | [ view on GitHub](https://github.com/vuelessjs/vueless/tree/main/src/ui.button)
|
|
10
|
+
*/
|
|
8
11
|
export default {
|
|
9
12
|
id: "1010",
|
|
10
13
|
title: "Buttons & Links / Button",
|
|
@@ -56,7 +56,7 @@ import { computed } from "vue";
|
|
|
56
56
|
import UIcon from "../ui.image-icon";
|
|
57
57
|
import URadio from "../ui.form-radio";
|
|
58
58
|
import ULabel from "../ui.form-label";
|
|
59
|
-
import UIService
|
|
59
|
+
import UIService from "../service.ui";
|
|
60
60
|
|
|
61
61
|
import { UColorPicker } from "./constants";
|
|
62
62
|
import defaultConfig from "./configs/default.config";
|
|
@@ -120,7 +120,8 @@ const props = defineProps({
|
|
|
120
120
|
*/
|
|
121
121
|
name: {
|
|
122
122
|
type: String,
|
|
123
|
-
|
|
123
|
+
required: true,
|
|
124
|
+
default: "",
|
|
124
125
|
},
|
|
125
126
|
|
|
126
127
|
/**
|
|
@@ -185,14 +185,6 @@ export default /*tw*/ {
|
|
|
185
185
|
defaultVariants: {
|
|
186
186
|
size: "md",
|
|
187
187
|
variant: "button",
|
|
188
|
-
customRangeButton: {
|
|
189
|
-
range: {
|
|
190
|
-
from: 0,
|
|
191
|
-
to: 0,
|
|
192
|
-
},
|
|
193
|
-
label: "",
|
|
194
|
-
description: "",
|
|
195
|
-
},
|
|
196
188
|
timepicker: false,
|
|
197
189
|
disabled: false,
|
|
198
190
|
dateFormat: "d.m.Y",
|
|
@@ -265,7 +265,11 @@ const props = defineProps({
|
|
|
265
265
|
*/
|
|
266
266
|
customRangeButton: {
|
|
267
267
|
type: Object,
|
|
268
|
-
default: () =>
|
|
268
|
+
default: () => ({
|
|
269
|
+
range: { from: 0, to: 0 },
|
|
270
|
+
label: "",
|
|
271
|
+
description: "",
|
|
272
|
+
}),
|
|
269
273
|
},
|
|
270
274
|
|
|
271
275
|
/**
|
package/ui.image-icon/index.vue
CHANGED
|
@@ -46,14 +46,6 @@ const props = defineProps({
|
|
|
46
46
|
default: "",
|
|
47
47
|
},
|
|
48
48
|
|
|
49
|
-
/**
|
|
50
|
-
* Change icon variant from outline to filled.
|
|
51
|
-
*/
|
|
52
|
-
fill: {
|
|
53
|
-
type: Boolean,
|
|
54
|
-
default: UIService.get(defaultConfig, UIcon).default.fill,
|
|
55
|
-
},
|
|
56
|
-
|
|
57
49
|
/**
|
|
58
50
|
* Icon color.
|
|
59
51
|
* @values brand, grayscale, gray, red, orange, amber, yellow, lime, green, emerald, teal, cyan, sky, blue, indigo, violet, purple, fuchsia, pink, rose, white
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"framework": "vue",
|
|
3
3
|
"name": "vueless",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.109",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
"kind": "expression",
|
|
307
307
|
"type": "boolean"
|
|
308
308
|
},
|
|
309
|
-
"default": "
|
|
309
|
+
"default": "false"
|
|
310
310
|
},
|
|
311
311
|
{
|
|
312
312
|
"name": "config",
|
|
@@ -1116,7 +1116,7 @@
|
|
|
1116
1116
|
"kind": "expression",
|
|
1117
1117
|
"type": "boolean"
|
|
1118
1118
|
},
|
|
1119
|
-
"default": "
|
|
1119
|
+
"default": "false"
|
|
1120
1120
|
},
|
|
1121
1121
|
{
|
|
1122
1122
|
"name": "id",
|
|
@@ -1143,7 +1143,7 @@
|
|
|
1143
1143
|
"kind": "expression",
|
|
1144
1144
|
"type": "string"
|
|
1145
1145
|
},
|
|
1146
|
-
"default": "\"
|
|
1146
|
+
"default": "\"\""
|
|
1147
1147
|
}
|
|
1148
1148
|
],
|
|
1149
1149
|
"events": [
|
|
@@ -1317,12 +1317,13 @@
|
|
|
1317
1317
|
},
|
|
1318
1318
|
{
|
|
1319
1319
|
"name": "name",
|
|
1320
|
+
"required": true,
|
|
1320
1321
|
"description": "Color picker name.",
|
|
1321
1322
|
"value": {
|
|
1322
1323
|
"kind": "expression",
|
|
1323
1324
|
"type": "string"
|
|
1324
1325
|
},
|
|
1325
|
-
"default": "
|
|
1326
|
+
"default": "\"\""
|
|
1326
1327
|
},
|
|
1327
1328
|
{
|
|
1328
1329
|
"name": "disabled",
|
|
@@ -1666,7 +1667,7 @@
|
|
|
1666
1667
|
"kind": "expression",
|
|
1667
1668
|
"type": "object"
|
|
1668
1669
|
},
|
|
1669
|
-
"default": "
|
|
1670
|
+
"default": "{\n range: { from: 0, to: 0 },\n label: \"\",\n description: \"\"\n}"
|
|
1670
1671
|
},
|
|
1671
1672
|
{
|
|
1672
1673
|
"name": "variant",
|
|
@@ -2630,7 +2631,7 @@
|
|
|
2630
2631
|
"description": "List max height in pixels.",
|
|
2631
2632
|
"value": {
|
|
2632
2633
|
"kind": "expression",
|
|
2633
|
-
"type": "number
|
|
2634
|
+
"type": "number"
|
|
2634
2635
|
},
|
|
2635
2636
|
"default": "undefined"
|
|
2636
2637
|
},
|
|
@@ -3121,15 +3122,6 @@
|
|
|
3121
3122
|
},
|
|
3122
3123
|
"default": ""
|
|
3123
3124
|
},
|
|
3124
|
-
{
|
|
3125
|
-
"name": "fill",
|
|
3126
|
-
"description": "Change icon variant from outline to filled.",
|
|
3127
|
-
"value": {
|
|
3128
|
-
"kind": "expression",
|
|
3129
|
-
"type": "boolean"
|
|
3130
|
-
},
|
|
3131
|
-
"default": "false"
|
|
3132
|
-
},
|
|
3133
3125
|
{
|
|
3134
3126
|
"name": "color",
|
|
3135
3127
|
"description": "Icon color.",
|
|
@@ -3155,7 +3147,7 @@
|
|
|
3155
3147
|
"kind": "expression",
|
|
3156
3148
|
"type": "boolean"
|
|
3157
3149
|
},
|
|
3158
|
-
"default": "
|
|
3150
|
+
"default": "false"
|
|
3159
3151
|
},
|
|
3160
3152
|
{
|
|
3161
3153
|
"name": "variant",
|
|
@@ -4645,7 +4637,7 @@
|
|
|
4645
4637
|
"kind": "expression",
|
|
4646
4638
|
"type": "'brand' | 'grayscale' | 'gray' | 'red' | 'orange' | 'amber' | 'yellow' | 'lime' | 'green' | 'emerald' | 'teal' | 'cyan' | 'sky' | 'blue' | 'indigo' | 'violet' | 'purple' | 'fuchsia' | 'pink' | 'rose'"
|
|
4647
4639
|
},
|
|
4648
|
-
"default": "
|
|
4640
|
+
"default": "brand"
|
|
4649
4641
|
},
|
|
4650
4642
|
{
|
|
4651
4643
|
"name": "description",
|
|
@@ -5025,7 +5017,7 @@
|
|
|
5025
5017
|
"kind": "expression",
|
|
5026
5018
|
"type": "number"
|
|
5027
5019
|
},
|
|
5028
|
-
"default": "
|
|
5020
|
+
"default": "2"
|
|
5029
5021
|
},
|
|
5030
5022
|
{
|
|
5031
5023
|
"name": "delimiter",
|
|
@@ -5542,7 +5534,7 @@
|
|
|
5542
5534
|
"kind": "expression",
|
|
5543
5535
|
"type": "'top' | 'topInside' | 'topWithDesc' | 'bottom' | 'left' | 'right'"
|
|
5544
5536
|
},
|
|
5545
|
-
"default": "
|
|
5537
|
+
"default": "left"
|
|
5546
5538
|
},
|
|
5547
5539
|
{
|
|
5548
5540
|
"name": "disabled",
|
|
@@ -6487,7 +6479,7 @@
|
|
|
6487
6479
|
"kind": "expression",
|
|
6488
6480
|
"type": "number"
|
|
6489
6481
|
},
|
|
6490
|
-
"default": "
|
|
6482
|
+
"default": "null"
|
|
6491
6483
|
},
|
|
6492
6484
|
{
|
|
6493
6485
|
"name": "filters",
|
|
@@ -6732,7 +6724,7 @@
|
|
|
6732
6724
|
"kind": "expression",
|
|
6733
6725
|
"type": "boolean"
|
|
6734
6726
|
},
|
|
6735
|
-
"default": "
|
|
6727
|
+
"default": "false"
|
|
6736
6728
|
},
|
|
6737
6729
|
{
|
|
6738
6730
|
"name": "config",
|
package/assets/icons/add.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M445.93-445.93H194.02v-68.14h251.91v-252.15h68.14v252.15h252.15v68.14H514.07v251.91h-68.14v-251.91Z"/></svg>
|
package/assets/icons/apps.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M223.29-154.5q-29.12 0-48.95-19.84-19.84-19.83-19.84-48.95 0-29.12 19.84-48.91 19.83-19.8 48.95-19.8 29.12 0 48.91 19.8 19.8 19.79 19.8 48.91 0 29.12-19.8 48.95-19.79 19.84-48.91 19.84Zm256.8 0q-29.05 0-48.88-19.84-19.84-19.83-19.84-48.95 0-29.12 19.75-48.91 19.74-19.8 48.79-19.8t48.88 19.8q19.84 19.79 19.84 48.91 0 29.12-19.75 48.95-19.74 19.84-48.79 19.84Zm256.62 0q-29.12 0-48.91-19.84-19.8-19.83-19.8-48.95 0-29.12 19.8-48.91 19.79-19.8 48.91-19.8 29.12 0 48.95 19.8 19.84 19.79 19.84 48.91 0 29.12-19.84 48.95-19.83 19.84-48.95 19.84ZM223.29-411.37q-29.12 0-48.95-19.75-19.84-19.74-19.84-48.79t19.84-48.88q19.83-19.84 48.95-19.84 29.12 0 48.91 19.75 19.8 19.74 19.8 48.79t-19.8 48.88q-19.79 19.84-48.91 19.84Zm256.8 0q-29.05 0-48.88-19.75-19.84-19.74-19.84-48.79t19.75-48.88q19.74-19.84 48.79-19.84t48.88 19.75q19.84 19.74 19.84 48.79t-19.75 48.88q-19.74 19.84-48.79 19.84Zm256.62 0q-29.12 0-48.91-19.75-19.8-19.74-19.8-48.79t19.8-48.88q19.79-19.84 48.91-19.84 29.12 0 48.95 19.75 19.84 19.74 19.84 48.79t-19.84 48.88q-19.83 19.84-48.95 19.84ZM223.29-668q-29.12 0-48.95-19.8-19.84-19.79-19.84-48.91 0-29.12 19.84-48.95 19.83-19.84 48.95-19.84 29.12 0 48.91 19.84 19.8 19.83 19.8 48.95 0 29.12-19.8 48.91-19.79 19.8-48.91 19.8Zm256.8 0q-29.05 0-48.88-19.8-19.84-19.79-19.84-48.91 0-29.12 19.75-48.95 19.74-19.84 48.79-19.84t48.88 19.84q19.84 19.83 19.84 48.95 0 29.12-19.75 48.91-19.74 19.8-48.79 19.8Zm256.62 0q-29.12 0-48.91-19.8-19.8-19.79-19.8-48.91 0-29.12 19.8-48.95 19.79-19.84 48.91-19.84 29.12 0 48.95 19.84 19.84 19.83 19.84 48.95 0 29.12-19.84 48.91-19.83 19.8-48.95 19.8Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m283.8-445.93 244.18 244.17L480-154.02 154.02-480 480-806.22l47.98 47.98L283.8-514.07h522.42v68.14H283.8Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M737.33-324.39q0 105.46-74.69 177.91-74.69 72.46-180.26 72.46-105.58 0-180.35-72.46-74.77-72.45-74.77-177.85v-383.82q0-74.63 53.41-126.35 53.42-51.72 127.75-51.72 74.34 0 127.69 51.72 53.35 51.72 53.35 126.35v363.82q0 43.66-31.56 74.62-31.55 30.97-75.81 30.97-44.26 0-75.61-30.64t-31.35-74.95v-370h66.46v370q0 16.05 11.97 27.59t29.2 11.54q17.24 0 28.74-11.5 11.5-11.51 11.5-27.63v-363.58q.24-47.35-33.38-79.6-33.62-32.25-81.35-32.25-47.74 0-81.14 32.19-33.41 32.19-33.41 79.42v383.82q.24 77.83 55.57 130.96 55.33 53.13 133.62 53.13 77.86 0 133.03-53.16 55.17-53.17 54.93-130.93v-396.93h66.46v396.87Z"/></svg>
|
package/assets/icons/check.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M378-240.26 148.26-470l48.98-48.98L378-338.22l383.76-383.76L810.74-673 378-240.26Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m420.52-294.41 285.63-285.63-50.78-50.03-234.85 234.85-117.85-117.85-49.78 50.03 167.63 168.63Zm59.51 220.39q-83.46 0-157.54-31.88-74.07-31.88-129.39-87.2-55.32-55.32-87.2-129.36-31.88-74.04-31.88-157.51 0-84.46 31.88-158.54 31.88-74.07 87.16-128.9 55.28-54.84 129.34-86.82 74.06-31.99 157.55-31.99 84.48 0 158.59 31.97 74.1 31.97 128.91 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.6 0 83.5-31.99 157.57-31.98 74.07-86.82 129.36-54.83 55.29-128.87 87.17-74.04 31.88-158.51 31.88Zm-.03-68.13q141.04 0 239.45-98.75 98.4-98.76 98.4-239.1 0-141.04-98.4-239.45-98.41-98.4-239.57-98.4-140.16 0-238.95 98.4-98.78 98.41-98.78 239.57 0 140.16 98.75 238.95 98.76 98.78 239.1 98.78ZM480-480Z"/></svg>
|
package/assets/icons/close.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M249-201.26 201.26-249l231-231-231-231L249-758.74l231 231 231-231L758.74-711l-231 231 231 231L711-201.26l-231-231-231 231Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m305.02-257.28-47.74-47.74L432.02-480 257.28-653.98l47.74-47.74L480-526.98l173.98-174.74 47.74 47.74L526.98-480l174.74 174.98-47.74 47.74L480-432.02 305.02-257.28Z"/></svg>
|
package/assets/icons/delete.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M259.09-114.02q-28.45 0-48.41-19.89-19.96-19.89-19.96-48.24v-565.94h-45.07v-68.13h198.28v-34.3h271.9v34.3h198.52v68.13h-45.07v565.94q0 27.6-20.33 47.86-20.34 20.27-48.04 20.27H259.09Zm441.82-634.07H259.09v565.94h441.82v-565.94ZM363.89-266.24h64.07v-399h-64.07v399Zm168.15 0h64.31v-399h-64.31v399ZM259.09-748.09v565.94-565.94Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M319-249.52h322v-62.63H319v62.63Zm0-170h322v-62.63H319v62.63Zm-96.85 345.5q-27.6 0-47.86-20.27-20.27-20.26-20.27-47.86v-675.7q0-27.7 20.27-48.03 20.26-20.34 47.86-20.34h361.48l222.59 222.59v521.48q0 27.6-20.34 47.86-20.33 20.27-48.03 20.27h-515.7Zm326.7-557.83v-186h-326.7v675.7h515.7v-489.7h-189Zm-326.7-186v186-186 675.7-675.7Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M347.41-154.5q-30.1 0-51.51-21.43-21.4-21.44-21.4-51.54 0-30.1 21.43-51.31Q317.37-300 347.47-300q30.1 0 51.31 21.25Q420-257.51 420-227.41q0 30.1-21.25 51.51-21.24 21.4-51.34 21.4Zm265.34 0q-30.1 0-51.42-21.43Q540-197.37 540-227.47q0-30.1 21.39-51.31Q582.79-300 612.83-300q30.14 0 51.4 21.25 21.27 21.24 21.27 51.34 0 30.1-21.32 51.51-21.33 21.4-51.43 21.4ZM347.41-407.37q-30.1 0-51.51-21.39-21.4-21.4-21.4-51.44 0-30.23 21.43-51.33 21.44-21.1 51.54-21.1 30.1 0 51.31 21.19Q420-510.26 420-480.14q0 30.12-21.25 51.44-21.24 21.33-51.34 21.33Zm265.34 0q-30.1 0-51.42-21.39Q540-450.16 540-480.2q0-30.23 21.39-51.33 21.4-21.1 51.44-21.1 30.14 0 51.4 21.19 21.27 21.18 21.27 51.3 0 30.12-21.32 51.44-21.33 21.33-51.43 21.33ZM347.41-660q-30.1 0-51.51-21.39-21.4-21.4-21.4-51.44 0-30.14 21.43-51.4 21.44-21.27 51.54-21.27 30.1 0 51.31 21.32Q420-762.85 420-732.75t-21.25 51.42Q377.51-660 347.41-660Zm265.34 0q-30.1 0-51.42-21.39Q540-702.79 540-732.83q0-30.14 21.39-51.4 21.4-21.27 51.44-21.27 30.14 0 51.4 21.32 21.27 21.33 21.27 51.43t-21.32 51.42Q642.85-660 612.75-660Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M154.02-396.85v-68.13h310.76v68.13H154.02Zm0-170.5v-68.13h478.13v68.13H154.02Zm0-170.5v-68.37h478.13v68.37H154.02Zm365.02 583.83v-128.02L741-503q9.51-9.63 21.13-13.91 11.62-4.29 23.5-4.29 12.48 0 24.21 4.86T831.02-502l37 37q9.44 9.48 13.82 21.12 4.38 11.63 4.38 23.27 0 11.96-4.86 24.06-4.86 12.09-14.25 21.57L647.07-154.02H519.04Zm303.59-266.59-37-37 37 37Zm-240 203h38l120.28-121.23-18-19.02-19-18.03-121.28 120.22v38.06Zm140.28-140.28-19-18 37 37-18-19Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M154.02-114.02v-68.13h652.2v68.13h-652.2ZM309.8-258.57q-65.17 0-110.48-44.93-45.3-44.93-45.3-109.85v-432.87h664.07q28.1 0 48.11 20.08 20.02 20.08 20.02 48.05v160q0 28.1-20.02 48.12-20.01 20.01-48.11 20.01h-92.66v136.61q0 64.92-45.47 109.85-45.48 44.93-110.55 44.93H309.8Zm.24-519.28H657.3 222.15h87.89Zm415.39 159.76h92.42v-160h-92.42v160ZM569.15-326.93q34.84 0 61.5-26.52 26.65-26.52 26.65-60.14v-364.26H399.15v37.31l71 58q1 1 9 18v150q0 9.6-7 16.8-7 7.2-18 7.2h-151q-11 0-18-7.2t-7-16.8v-150q0-4 9-18l72-58v-37.31h-137v364.26q0 33.62 26.98 60.14 26.97 26.52 60.91 26.52h259.11ZM355.57-777.85h40-40Z"/></svg>
|
package/assets/icons/error.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M479.93-274.02q16.46 0 27.4-10.74 10.93-10.75 10.93-27.21t-10.86-27.52q-10.86-11.05-27.33-11.05-16.46 0-27.4 11.03-10.93 11.04-10.93 27.5 0 16.47 10.86 27.23 10.86 10.76 27.33 10.76Zm-31-158.74h68.14v-257.07h-68.14v257.07ZM480.3-74.02q-84.2 0-158.04-31.88-73.84-31.88-129.16-87.2-55.32-55.32-87.2-129.2-31.88-73.88-31.88-158.17 0-84.28 31.88-158.2 31.88-73.91 87.16-128.74 55.28-54.84 129.18-86.82 73.9-31.99 158.21-31.99 84.3 0 158.25 31.97 73.94 31.97 128.75 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.33 0 84.24-31.99 158.07-31.98 73.84-86.82 128.95-54.83 55.1-128.87 87.17Q564.5-74.02 480.3-74.02Zm.2-68.13q140.54 0 238.95-98.75 98.4-98.76 98.4-239.6 0-140.54-98.22-238.95-98.21-98.4-239.75-98.4-140.16 0-238.95 98.22-98.78 98.21-98.78 239.75 0 140.16 98.75 238.95 98.76 98.78 239.6 98.78ZM480-480Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480-339.5 234.26-585.24 283-633.98l197 198 197-197 48.74 48.74L480-339.5Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480-338.26 234.26-584 283-632.74l197 197 197-197L725.74-584 480-338.26Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M561-234.26 314.26-481 561-727.74 609.74-679l-198 198 198 198L561-234.26Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m524.26-481-198-198L375-727.74 621.74-481 375-234.26 326.26-283l198-198Z"/></svg>
|
package/assets/icons/remove.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M194.02-445.93v-68.14h572.2v68.14h-572.2Z"/></svg>
|
package/assets/icons/search.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M795.76-114.3 531.33-378.5q-29.76 25.26-69.6 39.41-39.84 14.16-85.16 14.16-109.84 0-185.96-76.2Q114.5-477.33 114.5-585t76.2-183.87q76.19-76.2 184.37-76.2 108.17 0 183.86 76.2 75.7 76.2 75.7 184.02 0 43.33-13.64 82.97t-40.92 74.4L845.5-164.04l-49.74 49.74ZM375.65-393.07q79.73 0 135.29-56.24Q566.5-505.55 566.5-585q0-79.45-55.6-135.69-55.59-56.24-135.25-56.24-80.49 0-136.76 56.24-56.26 56.24-56.26 135.69 0 79.45 56.23 135.69 56.23 56.24 136.79 56.24Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m224.15-107.56 67.39-291.29L65.41-594.78l298.52-25.72L480-895.3l116.07 274.8 298.52 25.72-226.13 195.93 67.63 291.29L480-262.3 224.15-107.56Z"/></svg>
|
package/assets/icons/star.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m326.37-249.79 153.64-91.89 153.64 92.9-41.28-173.94L727.5-540.33l-178.17-15.52L480-720.02l-69.33 163.41-178.17 15.28 135.22 117.38-41.35 174.16ZM224.15-107.56l67.39-291.29L65.41-594.78l298.43-25.67L480-895.3l116.16 274.85 298.43 25.67-226.13 195.93 67.63 291.29L480-262.3 224.15-107.56ZM480-474.52Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480.12-330q70.88 0 120.38-49.62t49.5-120.5q0-70.88-49.62-120.38T479.88-670Q409-670 359.5-620.38T310-499.88q0 70.88 49.62 120.38t120.5 49.5Zm-.3-61.83q-45.15 0-76.57-31.6-31.42-31.6-31.42-76.75t31.6-76.57q31.6-31.42 76.75-31.42t76.57 31.6q31.42 31.6 31.42 76.75t-31.6 76.57q-31.6 31.42-76.75 31.42ZM480-194.5q-147.91 0-267.35-84.67Q93.22-363.85 34.5-500q58.72-136.15 178.15-220.83Q332.09-805.5 480-805.5q147.91 0 267.35 84.67Q866.78-636.15 925.5-500q-58.72 136.15-178.15 220.83Q627.91-194.5 480-194.5Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M813.85-61.85 649.2-223.74q-35 14-79.24 21.62-44.24 7.62-89.96 7.62-147.2 0-267.75-82.46Q91.7-359.41 34.5-500q19.52-51.76 55.38-101.86t86.38-95.81L50.98-822.48l43.91-45.15 759.87 759.87-40.91 45.91ZM480-330q13.28 0 28.45-2.5 15.16-2.5 25.44-7.26L319.28-553.89q-4.52 11.28-6.9 25.56Q310-514.04 310-500q0 72 50 121t120 49Zm283.74 41.91L629.96-422.11q9.52-15.04 14.78-36.18T650-500q0-71-49.5-120.5T480-670q-20.8 0-41.09 4.76-20.28 4.76-36.8 15.04L287.57-765.5q35-16 90.21-28 55.22-12 107.22-12 143.96 0 264.01 82.34Q869.07-640.83 925.5-500q-25.76 64.48-67.12 118.08-41.36 53.59-94.64 93.83ZM578.07-474l-125.5-125.5q25.17-10.28 52.82-5.1 27.65 5.19 48.5 24.56 20.61 20.61 28.53 46 7.93 25.39-4.35 60.04Z"/></svg>
|
package/assets/icons/warning.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M34.74-116.89 480-886.22l445.26 769.33H34.74Zm113.8-65.74h662.92L480-754.98 148.54-182.63Zm335.64-54.85q12.96 0 21.87-9.08 8.91-9.09 8.91-22.05t-9.09-21.75q-9.08-8.79-22.05-8.79-12.96 0-21.87 8.96-8.91 8.97-8.91 21.93 0 12.96 9.09 21.87 9.08 8.91 22.05 8.91ZM454-348h60v-222.09h-60V-348Zm26-120.8Z"/></svg>
|