@tekkare/auriga 0.2.101 → 0.2.103
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 +1 -1
- package/dist/runtime/components/allFlags.vue +7 -2
- package/dist/runtime/components/argChart.vue +10 -6
- package/dist/runtime/components/argChart.vue.d.ts +9 -0
- package/dist/runtime/components/argFlag.vue +1972 -202
- package/dist/runtime/components/argFlag.vue.d.ts +20 -0
- package/dist/runtime/components/argHomeAllBlocks.vue +5 -4
- package/package.json +1 -1
|
@@ -13,6 +13,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13
13
|
type: BooleanConstructor;
|
|
14
14
|
default: boolean;
|
|
15
15
|
};
|
|
16
|
+
square: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
radius: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
16
24
|
emoji: {
|
|
17
25
|
type: BooleanConstructor;
|
|
18
26
|
default: boolean;
|
|
@@ -227,6 +235,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
227
235
|
ZA: string;
|
|
228
236
|
ZM: string;
|
|
229
237
|
ZW: string;
|
|
238
|
+
NP: string;
|
|
239
|
+
VA: string;
|
|
230
240
|
};
|
|
231
241
|
countryName: import("vue").ComputedRef<string>;
|
|
232
242
|
size: import("vue").ComputedRef<string>;
|
|
@@ -246,6 +256,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
246
256
|
type: BooleanConstructor;
|
|
247
257
|
default: boolean;
|
|
248
258
|
};
|
|
259
|
+
square: {
|
|
260
|
+
type: BooleanConstructor;
|
|
261
|
+
default: boolean;
|
|
262
|
+
};
|
|
263
|
+
radius: {
|
|
264
|
+
type: BooleanConstructor;
|
|
265
|
+
default: boolean;
|
|
266
|
+
};
|
|
249
267
|
emoji: {
|
|
250
268
|
type: BooleanConstructor;
|
|
251
269
|
default: boolean;
|
|
@@ -253,6 +271,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
253
271
|
}>>, {
|
|
254
272
|
height: string;
|
|
255
273
|
round: boolean;
|
|
274
|
+
square: boolean;
|
|
275
|
+
radius: boolean;
|
|
256
276
|
emoji: boolean;
|
|
257
277
|
}, {}>;
|
|
258
278
|
export default _default;
|
|
@@ -76,9 +76,10 @@
|
|
|
76
76
|
v-for="(block, index) in filterCategoryBlocks(category)"
|
|
77
77
|
:key="index"
|
|
78
78
|
class="oip_card block_card action"
|
|
79
|
-
:class="
|
|
80
|
-
selectedBlock?.title === block.title ? 'block_selected' : ''
|
|
81
|
-
|
|
79
|
+
:class="[
|
|
80
|
+
selectedBlock?.title === block.title ? 'block_selected' : '',
|
|
81
|
+
block.disable ? 'disable' : '',
|
|
82
|
+
]"
|
|
82
83
|
@click="selectBlock(block)"
|
|
83
84
|
>
|
|
84
85
|
<slot
|
|
@@ -366,5 +367,5 @@ export default defineComponent({
|
|
|
366
367
|
</script>
|
|
367
368
|
|
|
368
369
|
<style scoped>
|
|
369
|
-
.arg_home_all_blocks{align-items:flex-start;align-self:stretch;display:flex;flex-direction:column;gap:24px}.block_card{align-self:stretch;cursor:pointer;flex:0 0 calc(50% - 59px);margin:0!important;padding:24px!important}.block_card:not(.block_selected):hover .block_title{color:var(--primary)!important}.block_descr{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;font-size:14px;font-style:normal;font-weight:400;line-height:160%;overflow:hidden}.block_content{align-items:flex-start;display:flex;flex-direction:column;gap:12px}.block_title{align-items:flex-end;display:flex;flex-direction:row;font-size:16px;font-style:normal;font-weight:700;gap:8px;line-height:normal}.block_selected{background:var(--primary)!important;border:1px solid var(--primary)!important;box-shadow:var(--large-shadow)!important;color:var(--white)!important}.full_stretch{align-self:stretch}.population p{color:var(--medium);font-size:12px;font-weight:400;line-height:14px}.block_selected>.block_content>.card_head>.population p,.block_selected>.block_content>.card_head>.population svg{color:var(--white)!important}.home_subtitle{color:var(--dark);font-size:14px;font-style:normal;font-weight:400;line-height:160%}.category_container{border-top:1.5px solid var(--light);padding:24px 0;position:relative}.category_label{align-items:center;background:var(--lightest);border-radius:4px;display:flex;gap:8px;left:24px;padding:4px 12px;position:absolute;top:-14px}.category_label>p,p.category_label{color:var(--medium);font-size:14px;font-weight:500;text-transform:uppercase}.stretch{align-self:stretch}
|
|
370
|
+
.arg_home_all_blocks{align-items:flex-start;align-self:stretch;display:flex;flex-direction:column;gap:24px}.block_card{align-self:stretch;cursor:pointer;flex:0 0 calc(50% - 59px);margin:0!important;padding:24px!important}.block_card.disable{background:var(--light)!important;pointer-events:none}.block_card:not(.block_selected,.disable):hover .block_title{color:var(--primary)!important}.block_descr{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;font-size:14px;font-style:normal;font-weight:400;line-height:160%;overflow:hidden}.block_content{align-items:flex-start;display:flex;flex-direction:column;gap:12px}.block_title{align-items:flex-end;display:flex;flex-direction:row;font-size:16px;font-style:normal;font-weight:700;gap:8px;line-height:normal}.block_selected{background:var(--primary)!important;border:1px solid var(--primary)!important;box-shadow:var(--large-shadow)!important;color:var(--white)!important}.full_stretch{align-self:stretch}.population p{color:var(--medium);font-size:12px;font-weight:400;line-height:14px}.block_selected>.block_content>.card_head>.population p,.block_selected>.block_content>.card_head>.population svg{color:var(--white)!important}.home_subtitle{color:var(--dark);font-size:14px;font-style:normal;font-weight:400;line-height:160%}.category_container{border-top:1.5px solid var(--light);padding:24px 0;position:relative}.category_label{align-items:center;background:var(--lightest);border-radius:4px;display:flex;gap:8px;left:24px;padding:4px 12px;position:absolute;top:-14px}.category_label>p,p.category_label{color:var(--medium);font-size:14px;font-weight:500;text-transform:uppercase}.stretch{align-self:stretch}
|
|
370
371
|
</style>
|