@alikhalilll/ui 1.1.1 → 1.2.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/README.md +1 -1
- package/dist/chunks/ATellInput.vue_vue_type_script_setup_true_lang-Bv_lLV_l.mjs +1485 -0
- package/dist/chunks/ATellInput.vue_vue_type_script_setup_true_lang-Bv_lLV_l.mjs.map +1 -0
- package/dist/index.d.ts +96 -1
- package/dist/index.mjs +34 -29
- package/dist/tell-input.d.ts +96 -1
- package/dist/tell-input.mjs +11 -6
- package/entries/tell-input/README.md +17 -2
- package/package.json +1 -1
- package/dist/chunks/ATellInput.vue_vue_type_script_setup_true_lang-Clc-B8SW.mjs +0 -1353
- package/dist/chunks/ATellInput.vue_vue_type_script_setup_true_lang-Clc-B8SW.mjs.map +0 -1
package/README.md
CHANGED
|
@@ -145,7 +145,7 @@ const country = ref<number | null>(null); // dial number, e.g. 20 for Egypt
|
|
|
145
145
|
</template>
|
|
146
146
|
```
|
|
147
147
|
|
|
148
|
-
The picker stays hidden until the user types or pastes something that matches a known dial code, then
|
|
148
|
+
The picker stays hidden until the user types or pastes something that matches a known dial code, then a flag-only trigger reveals at the end of the field with the dial code as an inline prefix, and `phone` is normalised to the national significant number (`01066105963` → `1066105963`, `+447911123456` → `7911123456`). RTL-aware, localisable via `locale` / `messages`, and accepts alternative numerals.
|
|
149
149
|
|
|
150
150
|
Full props, slots, theming recipes, and live demos → [tell-input docs](https://alikhalilll.github.io/ali-nuxt-toolkit/ui/tell-input) or [./entries/tell-input/README.md](./entries/tell-input/README.md).
|
|
151
151
|
|