Countries
<loomi-countries> — a searchable country dropdown with a flag icon beside every name.
Defaults to a full built-in country list (mode="names"); set mode="phone" to show
just the selected country’s flag + dial code beside a phone-number input instead.
Form-associated: submits the ISO code under name in names mode, or the dial code
and number concatenated in phone mode.
npm install @loomidev/countries litimport "@loomidev/countries";Basic Usage
Section titled “Basic Usage”Ships with its own built-in dataset of 250 countries (name, ISO 3166-1 alpha-2 code,
dial code, flag) — there’s no data attribute to wire up.
<loomi-countries name="country" label="Country"></loomi-countries>Selecting a Value
Section titled “Selecting a Value”selection accepts a country name, an ISO alpha-2 code, or a dial code — whichever is
most convenient for the caller — and resolves to the canonical alpha-2 code.
<loomi-countries selection="GH"></loomi-countries><loomi-countries selection="Ghana"></loomi-countries><loomi-countries selection="+233"></loomi-countries>selection isn’t just a one-time initial value — setting it again later (as an
attribute or the .selection property) re-syncs the visible selection.
document.querySelector("loomi-countries").selection = "NG"; // updates immediatelyPlaceholder vs Label
Section titled “Placeholder vs Label”Same convention as <loomi-select>: placeholder shows hint text that disappears once
something is selected; label is always visible and floats above the trigger once a
value is chosen.
<loomi-countries placeholder="What is your nationality"></loomi-countries><loomi-countries label="Where are you from?" required></loomi-countries>Disabled & Readonly
Section titled “Disabled & Readonly”<loomi-countries disabled label="Country"></loomi-countries><loomi-countries readonly selection="GH" label="Country"></loomi-countries>Phone Mode
Section titled “Phone Mode”Set mode="phone" to show just the selected country’s flag (plus its dial code) beside
a type="tel" number field — one compound control instead of wiring up a select and an
input yourself with custom glue code.
<loomi-countries mode="phone" name="phone" label="Phone number"></loomi-countries>Pre-select the country the same way as in names mode:
<loomi-countries mode="phone" selection="GH" label="Phone number"></loomi-countries>Picking a country from the panel automatically focuses the number field. The number
field always accepts digits only — letters and punctuation are stripped as you type,
the same way <loomi-input numeric> behaves. It also auto-formats those digits using
the selected country’s typical national number layout — pick Ghana and type
241234567 and the field shows (241)234-567. The form-submitted value is the dial
code and the (formatted) number concatenated, e.g. +233(241)234-567; read .value
for just what’s in the field.
const el = document.querySelector("loomi-countries");el.addEventListener("input", () => console.log(el.value)); // "(241)234-567"About 20 territories (mostly ones that share a dial code with a parent country, like Åland Islands) have no typical format in the underlying dataset — for those, the field just accepts plain digits with no formatting.
Overriding the Format With a Mask
Section titled “Overriding the Format With a Mask”Set mask to override the country’s auto-detected format — same Alpine-style wildcards
as <loomi-input>’s mask: 9 any digit, a any letter, * any alphanumeric (in
practice only 9 is reachable here, since the field is already digit-only). Every
other character in the template is a literal inserted automatically.
<loomi-countries mode="phone" mask="999.999.9999" label="Phone number"></loomi-countries>mask only applies in phone mode; it’s ignored in names mode. Leave it unset to use
the selected country’s own format.
Searching
Section titled “Searching”The dropdown panel always includes a search box — with 250 entries, scrolling to find
one isn’t realistic, so unlike <loomi-select> this isn’t behind a searchable flag.
Search matches the country name, its ISO code, or its dial code, so typing “233” finds
Ghana in phone mode just as well as typing “gha” does.
Reacting to Selection
Section titled “Reacting to Selection”const el = document.querySelector("loomi-countries");el.addEventListener("select", (e) => { console.log(e.detail); // { code: "GH", name: "Ghana", dialCode: "+233" }});Get the Selected Value on Form Submission
Section titled “Get the Selected Value on Form Submission”Every <loomi-countries> participates in ElementInternals form association, so its
value submits like a native form control under whatever name you gave it.
new FormData(form).get("country"); // "GH" in `names` modenew FormData(form).get("phone"); // "+233241234567" in `phone` modeRequired Fields
Section titled “Required Fields”<loomi-countries required label="Country"></loomi-countries><loomi-countries mode="phone" required label="Phone number"></loomi-countries>Clearing
Section titled “Clearing”document.querySelector("loomi-countries").reset();<loomi-countries size="small"></loomi-countries><loomi-countries size="regular"></loomi-countries><loomi-countries size="medium"></loomi-countries><loomi-countries size="big"></loomi-countries>Label inside the field
Section titled “Label inside the field”Use label-position="inside" to keep a compact label inside the top of the field,
with the selected country or phone number displayed beneath it:
<loomi-countries label="Country" label-position="inside"></loomi-countries>Accessibility
Section titled “Accessibility”For the library-wide baseline, see Foundations — Accessibility.
Responsive behavior
Section titled “Responsive behavior”For the shared container and viewport rules, see Foundations — Responsive behavior.
Dark mode
Section titled “Dark mode”For theme activation, token overrides, and contrast guidance, see Foundations — Dark mode.
Attributes
Section titled “Attributes”| Attribute | Default | Description |
|---|---|---|
name | (blank) | Submitted with the form. |
mode | names | names | phone. |
placeholder | Select a country | Trigger text when nothing is selected (names mode). |
label | (blank) | Floating label (takes precedence over placeholder). |
label-position | default | default keeps the floating label; inside keeps a compact label inside the top of the field. |
selection | (blank) | Country name, ISO alpha-2 code, or dial code. Resolves to the alpha-2 code. |
value | (blank) | The phone number portion, excluding the dial code (phone mode, digits only). |
mask | (blank) | Overrides the selected country’s auto-detected formatting mask — 9/a/* wildcards, same as <loomi-input> (phone mode only). |
disabled | false | Disable the control. (boolean) |
readonly | false | Read-only (cannot open). (boolean) |
required | false | Marks the field required. (boolean) |
size | medium | tiny | small | regular | medium | big |
empty-placeholder | No countries found | Shown when a search matches nothing. |
invalid | false | Reflects validity state; set automatically. (boolean) |
locale | (blank) | Locale for built-in strings (search box, placeholders, aria-labels). |
no-clearing | false | Remove the default bottom margin. (boolean) |
Parts: trigger, panel, field (phone mode), input (phone mode).
Methods: reset(), validate(), checkValidity(), reportValidity().
Flags are circle-flags (HatScripts, MIT) rather than the more detailed flag-icons set — at the ~20px size these render at, simplified circular artwork looks just as good and is roughly 10x lighter, and every flag gets the same circular footprint regardless of its native aspect ratio, which keeps names aligned down a long list.
Events
Section titled “Events”| Event | Description |
|---|---|
change | Fired when the value is committed or changed. |
input | Fired while the value is edited. |
loomi-select | Fired when a country is selected. |
Full Example
Section titled “Full Example”<loomi-countries name="country" label="What is your nationality" selection="gh" required></loomi-countries>
<loomi-countries mode="phone" name="phone" label="Phone number" selection="GH"></loomi-countries>Framework integration
Section titled “Framework integration”<loomi-countries> is a standard custom element, so the browser can use it in plain HTML, Blade, React, Vue, Angular, Svelte, Astro, and most other frameworks. The important beginner rule is: install the package, import it once before the tag is rendered, then write the Loomi tag in your template.
Where to run commands
Section titled “Where to run commands”Run install commands from the app where you want to use this component. That means the folder that contains that app’s package.json. Do not run these install commands from packages/countries unless you are editing LoomiUI itself.
cd /path/to/your-appnpm install @loomidev/countries litIf you are contributing to LoomiUI itself, first move to the top-level components folder. That is where the main package.json for all packages lives, and pnpm --filter ... commands should be run from there:
cd /path/to/your-copy-of-loomiui/componentspnpm --filter @loomidev/countries buildpnpm --filter @loomidev/countries typecheckChoose your framework
Section titled “Choose your framework”Use the CDN version for prototypes, documentation pages, or a quick reproduction. The import map tells the browser where to find Lit, which Loomi components use internally.
<script type="importmap"> { "imports": { "lit": "https://esm.sh/lit@3.3.3", "lit/": "https://esm.sh/lit@3.3.3/" } }</script><script type="module" src="https://esm.sh/@loomidev/countries"></script>
<loomi-countries name="country" label="Country"></loomi-countries>In Vite, Webpack, Parcel, Rollup, or a framework build pipeline, install the package and import it once in your main app JavaScript file. After that, you can use the Loomi tag anywhere in your app.
import "@loomidev/countries";Because this is a form-capable component, give it a name when it should submit with a native <form>. Read its value with new FormData(form).get("the-name") just like you would for a built-in input.
Run the install command from your Laravel project root, then import the component in resources/js/app.js. If your project uses Laravel Vite, npm run dev and npm run build should also be run from the Laravel project root.
cd /path/to/your-laravel-appnpm install @loomidev/countries litnpm run devimport "@loomidev/countries";<loomi-countries name="country" label="Country"></loomi-countries>React can render Loomi tags directly. If you need to set selection or value after mount, use a ref.
import { useEffect, useRef } from "react";import "@loomidev/countries";
export function LoomiExample() { const el = useRef(null);
useEffect(() => { el.current.selection = "GH"; }, []);
return <loomi-countries ref={el} name="country" label="Country"></loomi-countries>;}If TypeScript does not recognize the Loomi tag in JSX, add it to your app’s JSX type declarations.
Import the package in the component that uses it, or once in your main Vue file. Vue templates can use Loomi tags directly.
<script setup>import { onMounted, ref } from "vue";import "@loomidev/countries";
const el = ref(null);
onMounted(() => { el.value.selection = "GH";});</script>
<template> <loomi-countries ref="el" name="country" label="Country"></loomi-countries></template>If Vue warns that the tag is an unknown component, configure compilerOptions.isCustomElement for tags that start with loomi- in your Vite or Vue config.
Import the package once and tell Angular to allow custom HTML tags with CUSTOM_ELEMENTS_SCHEMA. For NgModule apps, add the schema to the module instead of the standalone component.
import { AfterViewInit, CUSTOM_ELEMENTS_SCHEMA, Component, ElementRef, ViewChild } from "@angular/core";import "@loomidev/countries";
@Component({ selector: "app-root", standalone: true, schemas: [CUSTOM_ELEMENTS_SCHEMA], template: ` <loomi-countries #el name="country" label="Country"></loomi-countries> `,})export class AppComponent implements AfterViewInit { @ViewChild("el") el!: ElementRef<any>;
ngAfterViewInit() { this.el.nativeElement.selection = "GH"; }}Svelte can import the package inside a component script. Astro can import it in the frontmatter of the page or layout where the tag appears.
<script> import { onMount } from "svelte"; import "@loomidev/countries";
let el;
onMount(() => { el.selection = "GH"; });</script>
<loomi-countries bind:this={el} name="country" label="Country"></loomi-countries>---import "@loomidev/countries";---
<loomi-countries name="country" label="Country"></loomi-countries>Server-side rendering notes
Section titled “Server-side rendering notes”Frameworks such as Next.js, Nuxt, SvelteKit, and Astro sometimes render HTML on the server before browser-only code runs. If your framework complains, move the Loomi import to client-side code. In Next.js, that usually means a component with "use client"; in Nuxt, it often means a .client.ts plugin.
Dependencies
Section titled “Dependencies”@loomidev/core@loomidev/theme