ng-hub-ui-forms 22.24.0 → 22.26.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 +4 -4
- package/fesm2022/ng-hub-ui-forms.mjs +228 -102
- package/fesm2022/ng-hub-ui-forms.mjs.map +1 -1
- package/package.json +2 -3
- package/styles/_group-addons.scss +54 -11
- package/types/ng-hub-ui-forms.d.ts +23 -1
package/README.md
CHANGED
|
@@ -258,8 +258,8 @@ one place: `--hub-field-floating-inset` (how far the value drops), `--hub-field-
|
|
|
258
258
|
#### Addons and attached content
|
|
259
259
|
|
|
260
260
|
`prepend` / `append` are group addons carrying **text** — a currency, a unit, a protocol.
|
|
261
|
-
Available on `hub-input`, `hub-select`, `hub-textarea` and `hub-
|
|
262
|
-
renders as a box with a value.
|
|
261
|
+
Available on `hub-input`, `hub-select`, `hub-textarea`, `hub-datepicker` and `hub-timepicker`:
|
|
262
|
+
every field that renders as a box with a value.
|
|
263
263
|
|
|
264
264
|
```html
|
|
265
265
|
<hub-input formControlName="amount" label="Amount" prepend="€" append=".00" />
|
|
@@ -299,8 +299,8 @@ reader put it back together on every row.
|
|
|
299
299
|
</hub-input>
|
|
300
300
|
```
|
|
301
301
|
|
|
302
|
-
`hub-input`, `hub-select`, `hub-textarea` and `hub-
|
|
303
|
-
only as a **direct child** of the template — wrap one in a `<div>` and it falls back to the
|
|
302
|
+
`hub-input`, `hub-select`, `hub-textarea`, `hub-datepicker` and `hub-timepicker` are the five that
|
|
303
|
+
close flush, and only as a **direct child** of the template — wrap one in a `<div>` and it falls back to the
|
|
304
304
|
treatment an action gets.
|
|
305
305
|
|
|
306
306
|
Whatever is projected wears the field's border, radius and height rather than its own, so a
|