@zywave/zui-formfield 4.3.0-pre.1 → 4.3.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/lab.html +12 -0
  3. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [4.3.0](https://gitlab.com/zywave/inner-source/booster/zui/compare/@zywave/zui-formfield@4.3.0-pre.1...@zywave/zui-formfield@4.3.0) (2026-03-04)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * hide 'No results' essage during async select loading ([bc8e139](https://gitlab.com/zywave/inner-source/booster/zui/commit/bc8e139))
12
+
13
+
14
+
6
15
  ## [4.2.1](https://gitlab.com/zywave/inner-source/booster/zui/compare/@zywave/zui-formfield@4.2.1-pre.2...@zywave/zui-formfield@4.2.1) (2025-09-19)
7
16
 
8
17
  **Note:** Version bump only for package @zywave/zui-formfield
package/lab.html CHANGED
@@ -177,6 +177,18 @@
177
177
  validation-message-minlength="Please use at least 2 characters."
178
178
  ></zui-input>
179
179
  </zui-formfield>
180
+ <zui-formfield
181
+ label="NAICS Code"
182
+ tooltip="Enter a 2 to 6-digit NAICS code (e.g., '54' for Professional Services or '541511' for Programming).">
183
+ <zui-input
184
+ type="text"
185
+ inputmode="numeric"
186
+ minlength="2"
187
+ maxlength="6"
188
+ regex="^[0-9]{2,6}$"
189
+ placeholder="Enter 2-6 NAICS code">
190
+ </zui-input>
191
+ </zui-formfield>
180
192
  <zui-formfield label="ZUI date input">
181
193
  <zui-input name="zui-input-date" type="date"></zui-input>
182
194
  </zui-formfield>
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@zywave/zui-formfield",
3
- "version": "4.3.0-pre.1",
3
+ "version": "4.3.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "license": "UNLICENSED",
7
7
  "dependencies": {
8
- "@zywave/zui-base": "^4.6.1-pre.0",
9
- "@zywave/zui-tooltip": "^4.3.3-pre.0"
8
+ "@zywave/zui-base": "^4.6.1",
9
+ "@zywave/zui-tooltip": "^4.3.3"
10
10
  },
11
11
  "scripts": {
12
12
  "build": "npm run build:scss && npm run build:ts",
@@ -25,5 +25,5 @@
25
25
  "access": "public"
26
26
  },
27
27
  "customElements": "dist/custom-elements.json",
28
- "gitHead": "8c4145cd7a819c56b9633cbe4c23962c58e51ba1"
28
+ "gitHead": "6ccacba5d09f8f9b2548272f06482a8c392af6c9"
29
29
  }