@paris-ias/list 1.0.183 → 1.0.185
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
|
@@ -119,7 +119,6 @@ defineProps<{
|
|
|
119
119
|
.logo-placeholder {
|
|
120
120
|
width: 200px;
|
|
121
121
|
height: 200px;
|
|
122
|
-
animation: logo-pulse 1.5s ease-in-out infinite;
|
|
123
122
|
}
|
|
124
123
|
.logo-placeholder [class^=IEA_] {
|
|
125
124
|
fill: #000;
|
|
@@ -129,14 +128,6 @@ defineProps<{
|
|
|
129
128
|
animation: logo-idle 1s ease-out 1 forwards;
|
|
130
129
|
}
|
|
131
130
|
|
|
132
|
-
@keyframes logo-pulse {
|
|
133
|
-
0%, 100% {
|
|
134
|
-
opacity: 0.15;
|
|
135
|
-
}
|
|
136
|
-
50% {
|
|
137
|
-
opacity: 0.45;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
131
|
@keyframes logo-idle {
|
|
141
132
|
0% {
|
|
142
133
|
opacity: 0;
|
|
@@ -42,10 +42,6 @@ const props = defineProps({
|
|
|
42
42
|
},
|
|
43
43
|
})
|
|
44
44
|
const visible = computed(() => {
|
|
45
|
-
/* console.log(
|
|
46
|
-
"SHOULD DISPLAY FILTERS:",
|
|
47
|
-
$stores[props.type]?.filtersCount && $stores[props.type]?.filtersCount > 0,
|
|
48
|
-
) */
|
|
49
45
|
return !!(
|
|
50
46
|
$stores[props.type]?.filtersCount && $stores[props.type]?.filtersCount > 0
|
|
51
47
|
)
|