nuxt-glorious 1.3.0 → 1.3.1-0

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": "1.3.0"
4
+ "version": "1.3.1-0"
5
5
  }
@@ -178,6 +178,7 @@ const inputClicked = (event: any) => {
178
178
  @click="typeInput = 'password'"
179
179
  ></GIcon>
180
180
 
181
+ {{ props.options }}
181
182
  <div
182
183
  v-if="props.options.length > 0"
183
184
  class="glorious-input-options hidden"
@@ -1,5 +1,6 @@
1
1
  export const useGloriousCore = {
2
2
  numbersWithSeparateSamePrice: (value) => {
3
+ if (typeof value === "undefined") return "";
3
4
  let nStr = value.match(/\d+/g)?.join("") + "";
4
5
  nStr = nStr.replace(/\,/g, "");
5
6
  if (nStr === "undefined") nStr = "";
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.3.0",
2
+ "version": "1.3.1-0",
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",