edvoyui-component-library-test-flight 0.0.115 → 0.0.117
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
CHANGED
|
@@ -13,7 +13,12 @@
|
|
|
13
13
|
>
|
|
14
14
|
<slot name="dropdownName" :open="isOpen">
|
|
15
15
|
{{ title }}
|
|
16
|
-
<ChevronDownStrokeSolid
|
|
16
|
+
<ChevronDownStrokeSolid v-if="isSolidArrow"
|
|
17
|
+
:class="isOpen ? 'text-gray-900 rotate-180' : 'text-gray-500'"
|
|
18
|
+
class="transition duration-100 ease-in-out transform rotate-0 size-6 group-hover:text-opacity-80"
|
|
19
|
+
aria-hidden="true"
|
|
20
|
+
/>
|
|
21
|
+
<ChevronDownStroke v-else
|
|
17
22
|
:class="isOpen ? 'text-gray-900 rotate-180' : 'text-gray-500'"
|
|
18
23
|
class="transition duration-100 ease-in-out transform rotate-0 size-6 group-hover:text-opacity-80"
|
|
19
24
|
aria-hidden="true"
|
|
@@ -117,6 +122,10 @@ defineProps({
|
|
|
117
122
|
type: String,
|
|
118
123
|
required: false,
|
|
119
124
|
},
|
|
125
|
+
isSolidArrow: {
|
|
126
|
+
type: Boolean,
|
|
127
|
+
default: false,
|
|
128
|
+
},
|
|
120
129
|
menuItems: {
|
|
121
130
|
type: Array as PropType<MenuItem[]>,
|
|
122
131
|
default: () => [
|