nuxt-glorious 2.0.0-develop-23 → 2.0.0-develop-25

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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "nuxt-glorious",
3
3
  "configKey": "glorious",
4
- "version": "2.0.0-develop-23"
4
+ "version": "2.0.0-develop-25"
5
5
  }
@@ -238,12 +238,16 @@ const inputClicked = (event: any) => {
238
238
  ]
239
239
  : item
240
240
  }}
241
- <GIcon
242
- name="glorious-x"
243
- :size="10"
244
- color="#ff0000"
245
- @click="removeTag(item)"
246
- />
241
+ <div
242
+ class="delete-option border border-red-500 rounded p-1 hover:bg-red-50"
243
+ >
244
+ <GIcon
245
+ name="glorious-x"
246
+ :size="10"
247
+ color="#ff0000"
248
+ @click="removeTag(item)"
249
+ />
250
+ </div>
247
251
  </div>
248
252
  </div>
249
253
  <GIcon
@@ -33,7 +33,7 @@ watch(
33
33
  class="glorious-scaffold-modal animation"
34
34
  :class="[
35
35
  modelValue ? 'open' : 'close',
36
- `size-${getAttribute(props.size, 'icon', 'size')}`,
36
+ `size-${getAttribute(props.size, 'modal', 'size')}`,
37
37
  ]"
38
38
  >
39
39
  <!-- header -->
@@ -77,6 +77,7 @@ watch(
77
77
  >
78
78
  {{ props.okBtn }}
79
79
  </GButton>
80
+
80
81
  <GButton
81
82
  :color="getAttribute(props.colorBtn, 'modal', 'colorBtn')"
82
83
  v-show="props.closeBtn !== ''"
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.0.0-develop-23",
2
+ "version": "2.0.0-develop-25",
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",