@uxf/core 11.78.0 → 11.80.4

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 CHANGED
@@ -228,3 +228,4 @@ import { Validator } from "@uxf/core";
228
228
  Validator.isEmail("...");
229
229
  Validator.isPhone("...");
230
230
  ```
231
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxf/core",
3
- "version": "11.78.0",
3
+ "version": "11.80.4",
4
4
  "description": "UXF Core",
5
5
  "author": "Petr Vejvoda <vejvoda@uxf.cz>",
6
6
  "homepage": "https://gitlab.com/uxf-npm/core#readme",
package/types/index.d.ts CHANGED
@@ -25,3 +25,8 @@ export type TypedReducerActions<Actions> = {
25
25
  payload: Actions[K];
26
26
  };
27
27
  }[keyof Actions];
28
+ export type SelectableId = string | number;
29
+ export interface SelectableOption<ID extends SelectableId> {
30
+ id: ID;
31
+ label: string;
32
+ }