@tekkare/auriga 0.2.102 → 0.2.104
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
|
@@ -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
|
|
@@ -145,7 +146,10 @@
|
|
|
145
146
|
v-for="(block, index) in filterBlocks"
|
|
146
147
|
:key="index"
|
|
147
148
|
class="oip_card block_card action"
|
|
148
|
-
:class="
|
|
149
|
+
:class="[
|
|
150
|
+
selectedBlock?.title === block.title ? 'block_selected' : '',
|
|
151
|
+
block.disable ? 'disable' : '',
|
|
152
|
+
]"
|
|
149
153
|
@click="selectBlock(block)"
|
|
150
154
|
>
|
|
151
155
|
<slot
|
|
@@ -366,5 +370,5 @@ export default defineComponent({
|
|
|
366
370
|
</script>
|
|
367
371
|
|
|
368
372
|
<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}
|
|
373
|
+
.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
374
|
</style>
|