@7365admin1/layer-common 4.0.3-staging.220 → 4.0.3-staging.221

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.
@@ -46,7 +46,7 @@
46
46
  persistent-placeholder
47
47
  :density="density"
48
48
  :disabled="props.disabled"
49
- :placeholder="placeholder || currentMask"
49
+ :placeholder="placeholder"
50
50
  @focus="emit('focus')"
51
51
  @blur="emit('blur')"
52
52
  />
@@ -104,7 +104,7 @@ const currentMask = computed(() => {
104
104
  const country = countries.find(
105
105
  (c: TPhoneMask) => c.code === selectedCode.value
106
106
  );
107
- if (!country) return "############";
107
+ if (!country) return "";
108
108
  return generateMaskFromRegex(country.regex);
109
109
  });
110
110
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@7365admin1/layer-common",
3
3
  "license": "MIT",
4
4
  "type": "module",
5
- "version": "4.0.3-staging.220",
5
+ "version": "4.0.3-staging.221",
6
6
  "author": "7365admin1",
7
7
  "main": "./nuxt.config.ts",
8
8
  "//files": "What a consumer extending this layer actually loads. Without this npm ships the whole working tree - the changesets, the CI workflows, the render harness in tools/ and any scratch directory that happened to exist at publish time. Nuxt resolves a layer by directory, so every runtime directory below has to stay listed; adding a new top-level runtime directory means adding it here too.",