@eagami/ui 5.14.1 → 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 +70 -11
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +8 -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
|
@@ -70,6 +70,7 @@ interface EagamiMessages {
|
|
|
70
70
|
clear: string;
|
|
71
71
|
};
|
|
72
72
|
colorPicker: {
|
|
73
|
+
dialogLabel: string;
|
|
73
74
|
placeholder: string;
|
|
74
75
|
clear: string;
|
|
75
76
|
hue: string;
|
|
@@ -154,6 +155,7 @@ interface EagamiMessages {
|
|
|
154
155
|
label: string;
|
|
155
156
|
};
|
|
156
157
|
multiSelect: {
|
|
158
|
+
dialogLabel: string;
|
|
157
159
|
placeholder: string;
|
|
158
160
|
searchPlaceholder: string;
|
|
159
161
|
searchEmpty: string;
|
|
@@ -1290,6 +1292,12 @@ declare class ColorPickerComponent implements ControlValueAccessor {
|
|
|
1290
1292
|
readonly showError: _angular_core.Signal<boolean>;
|
|
1291
1293
|
readonly showHint: _angular_core.Signal<boolean>;
|
|
1292
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>>;
|
|
1293
1301
|
readonly displayColor: _angular_core.Signal<string>;
|
|
1294
1302
|
/** Opaque version of the current color, used as the hue/SV reference. */
|
|
1295
1303
|
readonly opaqueColor: _angular_core.Signal<string>;
|