@eagami/ui 5.14.2 → 5.14.3
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/fesm2022/eagami-ui.mjs +36 -7
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagami/ui",
|
|
3
|
-
"version": "5.14.
|
|
3
|
+
"version": "5.14.3",
|
|
4
4
|
"description": "Lightweight, accessible, themeable Angular UI component library and icon set built on CSS custom properties",
|
|
5
5
|
"author": "Michal Wiraszka <michal@eagami.com>",
|
|
6
6
|
"license": "MIT",
|
package/types/eagami-ui.d.ts
CHANGED
|
@@ -1292,6 +1292,12 @@ declare class ColorPickerComponent implements ControlValueAccessor {
|
|
|
1292
1292
|
readonly showError: _angular_core.Signal<boolean>;
|
|
1293
1293
|
readonly showHint: _angular_core.Signal<boolean>;
|
|
1294
1294
|
readonly rgb: _angular_core.Signal<Rgb>;
|
|
1295
|
+
/**
|
|
1296
|
+
* Presets whose colour matches the current one. Comparing the parsed colour
|
|
1297
|
+
* rather than the emitted string keeps the pressed state working in every
|
|
1298
|
+
* output format, not only when the value happens to be canonical hex.
|
|
1299
|
+
*/
|
|
1300
|
+
protected readonly activePresets: _angular_core.Signal<Set<string>>;
|
|
1295
1301
|
readonly displayColor: _angular_core.Signal<string>;
|
|
1296
1302
|
/** Opaque version of the current color, used as the hue/SV reference. */
|
|
1297
1303
|
readonly opaqueColor: _angular_core.Signal<string>;
|