@mythpe/quasar-ui-qui 0.1.42 → 0.1.43

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mythpe/quasar-ui-qui",
3
- "version": "0.1.42",
3
+ "version": "0.1.43",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -58,7 +58,7 @@ export const useBindInput = <P extends G = G> (Props: MaybeRefOrGetter<P>, key:
58
58
  const nameLabel = computed(() => {
59
59
  const k = props.label === undefined ? props.name : props.label
60
60
  if (k && nameRegExp.test(k)) {
61
- return k?.toString?.()?.replaceAll(nameRegExp, '.*.')
61
+ return k?.toString?.()?.replaceAll?.(nameRegExp, '.*.')
62
62
  }
63
63
  return k
64
64
  })
@@ -253,7 +253,7 @@ export type BaseInputFormProps = {
253
253
  /**
254
254
  * Input Label.
255
255
  */
256
- label?: string | undefined;
256
+ label?: string | null;
257
257
  /**
258
258
  * Caption under label.
259
259
  */