nuxt-glorious 2.0.0-develop-6 → 2.0.0-develop-7
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
@@ -212,11 +212,7 @@ const inputClicked = (event: any) => {
|
|
212
212
|
v-for="(option, index) in props.options"
|
213
213
|
:key="index"
|
214
214
|
@click="addTagViaOption(option, $event)"
|
215
|
-
:class="[
|
216
|
-
isSelected(option.value)
|
217
|
-
? '!cursor-not-allowed bg-gray-50'
|
218
|
-
: '',
|
219
|
-
]"
|
215
|
+
:class="[isSelected(option.value) ? 'disabled' : '']"
|
220
216
|
>
|
221
217
|
{{
|
222
218
|
option[
|
@@ -679,6 +679,9 @@ button:focus-visible {
|
|
679
679
|
.glorious-input-options > div > div {
|
680
680
|
@apply p-2 hover:bg-gray-100 cursor-pointer rounded break-words;
|
681
681
|
}
|
682
|
+
.glorious-input-options > div > div.disabled {
|
683
|
+
@apply cursor-not-allowed bg-gray-50;
|
684
|
+
}
|
682
685
|
.glorious-input div > input::placeholder {
|
683
686
|
@apply text-gray-500;
|
684
687
|
}
|
package/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{
|
2
|
-
"version": "2.0.0-develop-
|
2
|
+
"version": "2.0.0-develop-7",
|
3
3
|
"name": "nuxt-glorious",
|
4
4
|
"description": "This package provides many things needed by a project, including server requests and authentication, SEO and other requirements of a project.",
|
5
5
|
"repository": "sajadhzj/nuxt-glorious",
|