edvoyui-component-library-test-flight 0.0.176 → 0.0.178
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/library-vue-ts.cjs.js +2 -2
- package/dist/library-vue-ts.css +1 -1
- package/dist/library-vue-ts.es.js +7 -7
- package/dist/library-vue-ts.umd.js +4 -4
- package/dist/slideover/EUISlideover.vue.d.ts +1 -1
- package/dist/tabs/EUITabs.vue.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/pillSelect/EUIPillSelect.vue +4 -4
- package/src/components/slideover/EUISlideover.vue +1 -1
- package/src/components/tabs/EUITabs.vue +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "/Volumes/work/repos/edvoy-ui-v2/src/components/slideover/EUISlideover.vue?vue&type=script&lang.ts";
|
|
2
|
-
import "/Volumes/work/repos/edvoy-ui-v2/src/components/slideover/EUISlideover.vue?vue&type=style&index=0&scoped=
|
|
2
|
+
import "/Volumes/work/repos/edvoy-ui-v2/src/components/slideover/EUISlideover.vue?vue&type=style&index=0&scoped=23459b37&lang.scss";
|
|
3
3
|
declare const _default: any;
|
|
4
4
|
export default _default;
|
|
5
5
|
//# sourceMappingURL=EUISlideover.vue.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "/Volumes/work/repos/edvoy-ui-v2/src/components/tabs/EUITabs.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
-
import "/Volumes/work/repos/edvoy-ui-v2/src/components/tabs/EUITabs.vue?vue&type=style&index=0&scoped=
|
|
2
|
+
import "/Volumes/work/repos/edvoy-ui-v2/src/components/tabs/EUITabs.vue?vue&type=style&index=0&scoped=ce073413&lang.css";
|
|
3
3
|
declare const _default: any;
|
|
4
4
|
export default _default;
|
|
5
5
|
//# sourceMappingURL=EUITabs.vue.d.ts.map
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<p v-if="label" class="mb-3 text-sm font-medium text-gray-500 font-inter">
|
|
4
4
|
{{ label }}<span v-if="required" class="text-red-500">*</span>
|
|
5
5
|
</p>
|
|
6
|
-
<div class="flex flex-row flex-wrap gap-3">
|
|
6
|
+
<div class="flex flex-row flex-wrap w-full gap-3">
|
|
7
7
|
<EUIButton
|
|
8
8
|
v-for="(item, idx) in items"
|
|
9
9
|
:key="`${name}-${idx}`"
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
size="md"
|
|
12
12
|
color="white"
|
|
13
13
|
:class="[
|
|
14
|
+
'!px-5 !text-sm leading-6 focus:!outline-0 !font-medium',
|
|
14
15
|
isSelected(item)
|
|
15
|
-
? '!bg-
|
|
16
|
-
: '!bg-gray-100 !text-gray-600
|
|
17
|
-
'px-4 py-2 text-sm leading-6 focus:outline-none rounded-3xl transition-colors duration-100 ease-in-out',
|
|
16
|
+
? '!bg-violet-100 !text-violet-500'
|
|
17
|
+
: '!bg-gray-100 !text-gray-600 hover:!text-gray-800',
|
|
18
18
|
]"
|
|
19
19
|
rounded
|
|
20
20
|
@click="handleSelect(item)"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
/>
|
|
43
43
|
<span
|
|
44
44
|
:class="[
|
|
45
|
-
'w-full py-1
|
|
45
|
+
'w-full py-1 tracking-wide z-10 flex items-center justify-start gap-2',
|
|
46
46
|
activeTabIndex === tabindex
|
|
47
47
|
? ' font-semibold'
|
|
48
48
|
: ' text-gray-600 font-medium hover:text-gray-600 bg-transparent z-0 transition-colors duration-300 ease-in origin-center',
|