@tekkare/auriga 0.1.11 → 0.1.12

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/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.1.11"
7
+ "version": "0.1.12"
8
8
  }
@@ -0,0 +1,245 @@
1
+ <template>
2
+ <div style="display: flex; flex-wrap: wrap; gap: 50px">
3
+ <div v-for="(c, index) in countries" :key="index">
4
+ <center>
5
+ <arg-flag :iso="c.iso" height="40" />
6
+ <p><strong>ISO</strong> : {{ c.iso }}</p>
7
+ <p style="font-size: 10px"><strong>Slug</strong> : {{ c.slug }}</p>
8
+ </center>
9
+ </div>
10
+ </div>
11
+ </template>
12
+ <script>
13
+ import {
14
+ defineComponent
15
+ } from "vue";
16
+ import argFlag from "./argFlag.vue";
17
+ export default defineComponent({
18
+ name: "allFlags",
19
+ components: { argFlag },
20
+ setup() {
21
+ const countries = [
22
+ { iso: "AL", slug: "albania", name: "Albania" },
23
+ { iso: "AR", slug: "argentina", name: "Argentina" },
24
+ { iso: "AU", slug: "australia", name: "Australia" },
25
+ { iso: "AT", slug: "austria", name: "Austria" },
26
+ { iso: "BH", slug: "bahrain", name: "Bahrain" },
27
+ { iso: "BD", slug: "bangladesh", name: "Bangladesh" },
28
+ { iso: "BY", slug: "belarus", name: "Belarus" },
29
+ { iso: "BE", slug: "belgium", name: "Belgium" },
30
+ { iso: "BJ", slug: "benin", name: "Benin" },
31
+ { iso: "BO", slug: "bolivia", name: "Bolivia" },
32
+ {
33
+ iso: "BA",
34
+ slug: "bosnia-and-herzegovina",
35
+ name: "Bosnia and Herzegovina"
36
+ },
37
+ { iso: "BW", slug: "botswana", name: "Botswana" },
38
+ { iso: "BR", slug: "brazil", name: "Brazil" },
39
+ { iso: "BG", slug: "bulgaria", name: "Bulgaria" },
40
+ { iso: "BF", slug: "burkina-faso", name: "Burkina Faso" },
41
+ { iso: "CM", slug: "cameroon", name: "Cameroon" },
42
+ { iso: "CA", slug: "canada", name: "Canada" },
43
+ { iso: "CL", slug: "chile", name: "Chile" },
44
+ { iso: "CN", slug: "china", name: "China" },
45
+ { iso: "CO", slug: "colombia", name: "Colombia" },
46
+ { iso: "CR", slug: "costa-rica", name: "Costa Rica" },
47
+ { iso: "CI", slug: "ivory-coast", name: "Ivory Coast" },
48
+ { iso: "HR", slug: "croatia", name: "Croatia" },
49
+ { iso: "CZ", slug: "czech-republic", name: "Czech Republic" },
50
+ { iso: "DK", slug: "denmark", name: "Denmark" },
51
+ { iso: "DO", slug: "dominican-republic", name: "Dominican Republic" },
52
+ { iso: "CD", slug: "democratic-republic-of-congo", name: "DR Congo" },
53
+ { iso: "EC", slug: "ecuador", name: "Ecuador" },
54
+ { iso: "EG", slug: "egypt", name: "Egypt" },
55
+ { iso: "SV", slug: "el-savador", name: "El Salvador" },
56
+ { iso: "EE", slug: "estonia", name: "Estonia" },
57
+ { iso: "ET", slug: "ethiopia", name: "Ethiopia" },
58
+ { iso: "FI", slug: "finland", name: "Finland" },
59
+ { iso: "FR", slug: "france", name: "France" },
60
+ { iso: "GE", slug: "georgia", name: "Georgia" },
61
+ { iso: "DE", slug: "germany", name: "Germany" },
62
+ { iso: "GH", slug: "ghana", name: "Ghana" },
63
+ { iso: "GR", slug: "greece", name: "Greece" },
64
+ { iso: "GT", slug: "guatemala", name: "Guatemala" },
65
+ { iso: "HT", slug: "haiti", name: "Haiti" },
66
+ { iso: "HU", slug: "hungary", name: "Hungary" },
67
+ { iso: "IS", slug: "iceland", name: "Iceland" },
68
+ { iso: "IN", slug: "india", name: "India" },
69
+ { iso: "ID", slug: "indonesia", name: "Indonesia" },
70
+ { iso: "IE", slug: "ireland", name: "Ireland" },
71
+ { iso: "IL", slug: "israel", name: "Israel" },
72
+ { iso: "IT", slug: "italy", name: "Italy" },
73
+ { iso: "JM", slug: "jamaica", name: "Jamaica" },
74
+ { iso: "JP", slug: "japan", name: "Japan" },
75
+ { iso: "JO", slug: "jordan", name: "Jordan" },
76
+ { iso: "KZ", slug: "kazakhstan", name: "Kazakhstan" },
77
+ { iso: "KE", slug: "kenya", name: "Kenya" },
78
+ { iso: "KR", slug: "south-korea", name: "Korea" },
79
+ { iso: "KG", slug: "kyrgyzstan", name: "Kyrgyzstan" },
80
+ { iso: "LV", slug: "latvia", name: "Latvia" },
81
+ { iso: "LB", slug: "lebanon", name: "Lebanon" },
82
+ { iso: "MK", slug: "republic-of-macedonia", name: "Macedonia" },
83
+ { iso: "MW", slug: "malawi", name: "Malawi" },
84
+ { iso: "MY", slug: "malaysia", name: "Malaysia" },
85
+ { iso: "ML", slug: "mali", name: "Mali" },
86
+ { iso: "MU", slug: "mauritius", name: "Mauritius" },
87
+ { iso: "MX", slug: "mexico", name: "Mexico" },
88
+ { iso: "MD", slug: "moldova", name: "Moldova" },
89
+ { iso: "ME", slug: "montenegro", name: "Montenegro" },
90
+ { iso: "MA", slug: "morocco", name: "Morocco" },
91
+ { iso: "MZ", slug: "mozambique", name: "Mozambique" },
92
+ { iso: "MM", slug: "myanmar", name: "Myanmar" },
93
+ { iso: "NL", slug: "netherlands", name: "Netherlands" },
94
+ { iso: "NZ", slug: "new-zealand", name: "New Zealand" },
95
+ { iso: "NG", slug: "nigeria", name: "Nigeria" },
96
+ { iso: "NO", slug: "norway", name: "Norway" },
97
+ { iso: "PK", slug: "pakistan", name: "Pakistan" },
98
+ { iso: "PS", slug: "palestine", name: "Palestine" },
99
+ { iso: "PA", slug: "panama", name: "Panama" },
100
+ { iso: "PY", slug: "paraguay", name: "Paraguay" },
101
+ { iso: "PE", slug: "peru", name: "Peru" },
102
+ { iso: "PH", slug: "philippines", name: "Philippines" },
103
+ { iso: "PL", slug: "republic-of-poland", name: "Poland" },
104
+ { iso: "PT", slug: "portugal", name: "Portugal" },
105
+ { iso: "QA", slug: "qatar", name: "Qatar" },
106
+ { iso: "RU", slug: "russia", name: "Russia" },
107
+ { iso: "RW", slug: "rwanda", name: "Rwanda" },
108
+ { iso: "LC", slug: "st-lucia", name: "Saint Lucia" },
109
+ { iso: "SA", slug: "saudi-arabia", name: "Saudi Arabia" },
110
+ { iso: "SN", slug: "senegal", name: "Senegal" },
111
+ { iso: "RS", slug: "serbia", name: "Serbia" },
112
+ { iso: "SL", slug: "sierra-leone", name: "Sierra Leone" },
113
+ { iso: "SG", slug: "singapore", name: "Singapore" },
114
+ { iso: "SK", slug: "slovakia", name: "Slovakia" },
115
+ { iso: "ZA", slug: "south-africa", name: "South Africa" },
116
+ { iso: "ES", slug: "spain", name: "Spain" },
117
+ { iso: "SZ", slug: "swaziland", name: "Swaziland" },
118
+ { iso: "SE", slug: "sweden", name: "Sweden" },
119
+ { iso: "CH", slug: "switzerland", name: "Switzerland" },
120
+ { iso: "TJ", slug: "tajikistan", name: "Tajikistan" },
121
+ { iso: "TZ", slug: "tanzania", name: "Tanzania" },
122
+ { iso: "TH", slug: "thailand", name: "Thailand" },
123
+ { iso: "TG", slug: "togo", name: "Togo" },
124
+ { iso: "TT", slug: "trinidad-and-tobago", name: "Trinidad and Tobago" },
125
+ { iso: "TN", slug: "tunisia", name: "Tunisia" },
126
+ { iso: "TR", slug: "turkey", name: "Turkey" },
127
+ { iso: "UG", slug: "uganda", name: "Uganda" },
128
+ { iso: "UA", slug: "ukraine", name: "Ukraine" },
129
+ { iso: "AE", slug: "united-arab-emirates", name: "United Arab Emirates" },
130
+ { iso: "GB", slug: "uk", name: "UK" },
131
+ { iso: "US", slug: "usa", name: "USA" },
132
+ { iso: "UY", slug: "uruguay", name: "Uruguay" },
133
+ { iso: "VE", slug: "venezuela", name: "Venezuela" },
134
+ { iso: "VN", slug: "vietnam", name: "Vietnam" },
135
+ { iso: "YE", slug: "yemen", name: "Yemen" },
136
+ { iso: "ZM", slug: "zambia", name: "Zambia" },
137
+ { iso: "ZW", slug: "zimbabwe", name: "Zimbabwe" },
138
+ { iso: "GB-ENG", slug: "england", name: "England" },
139
+ { iso: "GB-NIR", slug: "northern-ireland", name: "Northern Ireland" },
140
+ { iso: "GB-SCT", slug: "scotland", name: "Scotland" },
141
+ { iso: "AD", slug: "andorra", name: "Andorra" },
142
+ { iso: "AF", slug: "afghanistan", name: "Afghanistan" },
143
+ { iso: "AG", slug: "antigua-and-barbuda", name: "Antigua and Barbuda" },
144
+ { iso: "AM", slug: "armenia", name: "Armenia" },
145
+ { iso: "AN", slug: "netherlands-antilles", name: "Netherlands Antilles" },
146
+ { iso: "AO", slug: "angola", name: "Angola" },
147
+ { iso: "AW", slug: "aruba", name: "Aruba" },
148
+ { iso: "AZ", slug: "azerbaijan", name: "Azerbaijan" },
149
+ { iso: "BB", slug: "barbados", name: "Barbados" },
150
+ { iso: "BI", slug: "burundi", name: "Burundi" },
151
+ { iso: "BN", slug: "brunei", name: "Brunei" },
152
+ { iso: "BS", slug: "bahamas", name: "Bahamas" },
153
+ { iso: "BT", slug: "bhutan", name: "Bhutan" },
154
+ { iso: "BV", slug: "bouvet-island", name: "Bouvet Island" },
155
+ { iso: "BZ", slug: "belize", name: "Belize" },
156
+ {
157
+ iso: "CF",
158
+ slug: "central-african-republic",
159
+ name: "Central African Republic"
160
+ },
161
+ { iso: "CG", slug: "congo", name: "Congo" },
162
+ { iso: "CU", slug: "cuba", name: "Cuba" },
163
+ { iso: "CV", slug: "cabo-verde", name: "Cabo Verde" },
164
+ { iso: "CW", slug: "curacao", name: "Cura\xE7ao" },
165
+ { iso: "CY", slug: "cyprus", name: "Cyprus" },
166
+ { iso: "DJ", slug: "djibouti", name: "Djibouti" },
167
+ { iso: "DM", slug: "dominica", name: "Dominica" },
168
+ { iso: "ER", slug: "eritrea", name: "Eritrea" },
169
+ { iso: "FJ", slug: "fiji", name: "Fiji" },
170
+ { iso: "FM", slug: "micronesia", name: "Micronesia" },
171
+ { iso: "GA", slug: "gabon", name: "Gabon" },
172
+ { iso: "GB-WLS", slug: "wales", name: "Wales" },
173
+ { iso: "GD", slug: "grenada", name: "Grenada" },
174
+ { iso: "GM", slug: "gambia", name: "Gambia" },
175
+ { iso: "GN", slug: "guinea", name: "Guinea" },
176
+ { iso: "GQ", slug: "equatorial-guinea", name: "Equatorial Guinea" },
177
+ { iso: "GW", slug: "guinea-bissau", name: "Guinea-Bissau" },
178
+ { iso: "GY", slug: "guyana", name: "Guyana" },
179
+ { iso: "HK", slug: "hong-kong", name: "Hong Kong" },
180
+ { iso: "HN", slug: "honduras", name: "Honduras" },
181
+ { iso: "IQ", slug: "iraq", name: "Iraq" },
182
+ { iso: "IR", slug: "iran", name: "Iran" },
183
+ { iso: "KH", slug: "cambodia", name: "Cambodia" },
184
+ { iso: "KI", slug: "kiribati", name: "Kiribati" },
185
+ { iso: "KM", slug: "comoros", name: "Comoros" },
186
+ { iso: "KP", slug: "north-korea", name: "North Korea" },
187
+ { iso: "KW", slug: "kuwait", name: "Kuwait" },
188
+ { iso: "LA", slug: "lao", name: "Lao" },
189
+ { iso: "LI", slug: "liechtenstein", name: "Liechtenstein" },
190
+ { iso: "LK", slug: "sri-lanka", name: "Sri Lanka" },
191
+ { iso: "LR", slug: "liberia", name: "Liberia" },
192
+ { iso: "WS", slug: "samoa", name: "Samoa" },
193
+ { iso: "VU", slug: "vanuatu", name: "Vanuatu" },
194
+ { iso: "VI", slug: "us-virgin-islands", name: "US Virgin Islands" },
195
+ {
196
+ iso: "VC",
197
+ slug: "saint-vincent-and-the-grenadines",
198
+ name: "Saint Vincent and the Grenadines"
199
+ },
200
+ { iso: "TV", slug: "tuvalu", name: "Tuvalu" },
201
+ { iso: "TO", slug: "tonga", name: "Tonga" },
202
+ { iso: "TM", slug: "turkmenistan", name: "Turkmenistan" },
203
+ { iso: "TL", slug: "timor-leste", name: "Timor-Leste" },
204
+ { iso: "TD", slug: "chad", name: "Chad" },
205
+ { iso: "SY", slug: "syrian-arab-republic", name: "Syrian Arab Republic" },
206
+ { iso: "SX", slug: "sint-maarten", name: "Sint Maarten" },
207
+ {
208
+ iso: "ST",
209
+ slug: "sao-tome-and-principe",
210
+ name: "Sao Tome and Principe"
211
+ },
212
+ { iso: "SS", slug: "south-sudan", name: "South Sudan" },
213
+ { iso: "SR", slug: "suriname", name: "Suriname" },
214
+ { iso: "SO", slug: "somalia", name: "Somalia" },
215
+ { iso: "SM", slug: "san-marino", name: "San Marino" },
216
+ { iso: "SI", slug: "slovenia", name: "Slovenia" },
217
+ { iso: "SD", slug: "sudan", name: "Sudan" },
218
+ { iso: "SC", slug: "seychelles", name: "Seychelles" },
219
+ { iso: "SB", slug: "solomon-islands", name: "Solomon Islands" },
220
+ { iso: "RO", slug: "romania", name: "Romania" },
221
+ { iso: "PW", slug: "palau", name: "Palau" },
222
+ { iso: "PG", slug: "papua-new-guinea", name: "Papua New Guinea" },
223
+ { iso: "OM", slug: "oman", name: "Oman" },
224
+ { iso: "NR", slug: "nauru", name: "Nauru" },
225
+ { iso: "NI", slug: "nicaragua", name: "Nicaragua" },
226
+ { iso: "NE", slug: "niger", name: "Niger" },
227
+ { iso: "NA", slug: "namibia", name: "Namibia" },
228
+ { iso: "MV", slug: "maldives", name: "Maldives" },
229
+ { iso: "MT", slug: "malta", name: "Malta" },
230
+ { iso: "MR", slug: "mauritania", name: "Mauritania" },
231
+ { iso: "MN", slug: "mongolia", name: "Mongolia" },
232
+ { iso: "MH", slug: "marshall-islands", name: "Marshall Islands" },
233
+ { iso: "MG", slug: "madagascar", name: "Madagascar" },
234
+ { iso: "MC", slug: "monaco", name: "Monaco" },
235
+ { iso: "LY", slug: "libya", name: "Libya" },
236
+ { iso: "LU", slug: "luxembourg", name: "Luxembourg" },
237
+ { iso: "LT", slug: "lithuania", name: "Lithuania" },
238
+ { iso: "LS", slug: "lesotho", name: "Lesotho" }
239
+ ];
240
+ return {
241
+ countries
242
+ };
243
+ }
244
+ });
245
+ </script>
@@ -0,0 +1,8 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ countries: {
3
+ iso: string;
4
+ slug: string;
5
+ name: string;
6
+ }[];
7
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ export default _default;
@@ -1,9 +1,9 @@
1
1
  <template>
2
2
  <div class="oip_table_card">
3
3
  <div class="table_card_header">
4
- <slot name="Chart" />
4
+ <slot :name="haveChart ? 'Chart' : 'Title'" />
5
5
  </div>
6
- <slot name="Table" />
6
+ <slot v-if="haveTable" name="Table" />
7
7
  </div>
8
8
  </template>
9
9
 
@@ -19,6 +19,16 @@ import {
19
19
 
20
20
  export default defineComponent({
21
21
  name: "argChartTableCard",
22
+ props: {
23
+ haveChart: {
24
+ type: Boolean,
25
+ default: true,
26
+ },
27
+ haveTable: {
28
+ type: Boolean,
29
+ default: true,
30
+ },
31
+ },
22
32
  });
23
33
  </script>
24
34
 
@@ -1,2 +1,23 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import("vue").DefineComponent<{
2
+ haveChart: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ haveTable: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ }, any, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
11
+ haveChart: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
15
+ haveTable: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ }>>, {
20
+ haveChart: boolean;
21
+ haveTable: boolean;
22
+ }, {}>;
2
23
  export default _default;
@@ -329,7 +329,7 @@ export default defineComponent({
329
329
  });
330
330
  function changeInput() {
331
331
  setTimeout(() => {
332
- emit("changeAddInputValue", searchNameAdd);
332
+ emit("changeAddInputValue", searchNameAdd.value);
333
333
  }, 500);
334
334
  }
335
335
  function isInViewport(el) {
@@ -17,7 +17,7 @@ export default defineComponent({
17
17
  type: String,
18
18
  default: "en"
19
19
  },
20
- short: {
20
+ compact: {
21
21
  type: Boolean,
22
22
  default: false
23
23
  }
@@ -25,40 +25,40 @@ export default defineComponent({
25
25
  setup(props) {
26
26
  function monthToString(month) {
27
27
  if (month === 0) {
28
- return props.lang === "fr" ? props.short ? "Jan." : "Janvier" : props.short ? "Jan" : "January";
28
+ return props.lang === "fr" ? props.compact ? "Jan." : "Janvier" : props.compact ? "Jan" : "January";
29
29
  }
30
30
  if (month === 1) {
31
- return props.lang === "fr" ? props.short ? "F\xE9v." : "F\xE9vrier" : props.short ? "Feb." : "February";
31
+ return props.lang === "fr" ? props.compact ? "F\xE9v." : "F\xE9vrier" : props.compact ? "Feb." : "February";
32
32
  }
33
33
  if (month === 2) {
34
- return props.lang === "fr" ? props.short ? "Mar." : "Mars" : props.short ? "Mar." : "March";
34
+ return props.lang === "fr" ? props.compact ? "Mar." : "Mars" : props.compact ? "Mar." : "March";
35
35
  }
36
36
  if (month === 3) {
37
- return props.lang === "fr" ? props.short ? "Avr." : "Avril" : props.short ? "Apr." : "April";
37
+ return props.lang === "fr" ? props.compact ? "Avr." : "Avril" : props.compact ? "Apr." : "April";
38
38
  }
39
39
  if (month === 4) {
40
40
  return props.lang === "fr" ? "Mai" : "May";
41
41
  }
42
42
  if (month === 5) {
43
- return props.lang === "fr" ? "Juin" : props.short ? "Jun." : "June";
43
+ return props.lang === "fr" ? "Juin" : props.compact ? "Jun." : "June";
44
44
  }
45
45
  if (month === 6) {
46
- return props.lang === "fr" ? props.short ? "Juil." : "Juillet" : props.short ? "Jul." : "July";
46
+ return props.lang === "fr" ? props.compact ? "Juil." : "Juillet" : props.compact ? "Jul." : "July";
47
47
  }
48
48
  if (month === 7) {
49
- return props.lang === "fr" ? props.short ? "Ao\xFB." : "Ao\xFBt" : props.short ? "Aug." : "August";
49
+ return props.lang === "fr" ? props.compact ? "Ao\xFB." : "Ao\xFBt" : props.compact ? "Aug." : "August";
50
50
  }
51
51
  if (month === 8) {
52
- return props.lang === "fr" ? props.short ? "Sep." : "Septembre" : props.short ? "Sep." : "September";
52
+ return props.lang === "fr" ? props.compact ? "Sep." : "Septembre" : props.compact ? "Sep." : "September";
53
53
  }
54
54
  if (month === 9) {
55
- return props.lang === "fr" ? props.short ? "Oct." : "Octobre" : props.short ? "Oct." : "October";
55
+ return props.lang === "fr" ? props.compact ? "Oct." : "Octobre" : props.compact ? "Oct." : "October";
56
56
  }
57
57
  if (month === 10) {
58
- return props.lang === "fr" ? props.short ? "Nov." : "Novembre" : props.short ? "Nov." : "November";
58
+ return props.lang === "fr" ? props.compact ? "Nov." : "Novembre" : props.compact ? "Nov." : "November";
59
59
  }
60
60
  if (month === 11) {
61
- return props.lang === "fr" ? props.short ? "D\xE9c." : "D\xE9cembre" : props.short ? "Dec." : "December";
61
+ return props.lang === "fr" ? props.compact ? "D\xE9c." : "D\xE9cembre" : props.compact ? "Dec." : "December";
62
62
  }
63
63
  }
64
64
  function formatDate(str) {
@@ -7,7 +7,7 @@ declare const _default: import("vue").DefineComponent<{
7
7
  type: StringConstructor;
8
8
  default: string;
9
9
  };
10
- short: {
10
+ compact: {
11
11
  type: BooleanConstructor;
12
12
  default: boolean;
13
13
  };
@@ -23,12 +23,12 @@ declare const _default: import("vue").DefineComponent<{
23
23
  type: StringConstructor;
24
24
  default: string;
25
25
  };
26
- short: {
26
+ compact: {
27
27
  type: BooleanConstructor;
28
28
  default: boolean;
29
29
  };
30
30
  }>>, {
31
31
  lang: string;
32
- short: boolean;
32
+ compact: boolean;
33
33
  }, {}>;
34
34
  export default _default;
@@ -24,7 +24,8 @@ export default defineComponent({
24
24
  props: {
25
25
  errorType: {
26
26
  type: String,
27
- default: "result"
27
+ default: "result",
28
+ required: true
28
29
  },
29
30
  errorTitle: {
30
31
  type: String,
@@ -2,6 +2,7 @@ declare const _default: import("vue").DefineComponent<{
2
2
  errorType: {
3
3
  type: StringConstructor;
4
4
  default: string;
5
+ required: true;
5
6
  };
6
7
  errorTitle: {
7
8
  type: StringConstructor;
@@ -32,6 +33,7 @@ declare const _default: import("vue").DefineComponent<{
32
33
  errorType: {
33
34
  type: StringConstructor;
34
35
  default: string;
36
+ required: true;
35
37
  };
36
38
  errorTitle: {
37
39
  type: StringConstructor;
@@ -81,7 +81,7 @@ export default defineComponent({
81
81
  transition: all ease 0.7s;
82
82
  cursor: pointer;
83
83
  z-index: 98;
84
- width: calc(100% - 32px);
84
+ width: calc(100% - 48px);
85
85
  }
86
86
 
87
87
  .filter_card {