@dxtmisha/functional 1.4.2 → 1.6.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.
@@ -90,6 +90,8 @@ export type ConstrRegistration = {
90
90
  * Тип привязки конструктора для привязки компонента с поддержкой классов и стилей
91
91
  */
92
92
  export type ConstrBind<T> = T & Record<string, any> & {
93
+ /** Optional key/ Опциональный ключ */
94
+ key?: string;
93
95
  /** Optional CSS classes/ Опциональные CSS классы */
94
96
  class?: ConstrClass;
95
97
  /** Optional styles/ Опциональные стили */
@@ -38,6 +38,8 @@ export type ListDataFullItem<Item extends ListDataBasic = ListDataBasic> = ListD
38
38
  highlight?: string;
39
39
  /** Whether the item is selected/ Выбран ли элемент */
40
40
  selected: boolean;
41
+ /** Whether the item is disabled/ Отключен ли элемент */
42
+ disabled?: boolean;
41
43
  };
42
44
  /**
43
45
  * Array of extended list items with state/
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dxtmisha/functional",
3
3
  "private": false,
4
- "version": "1.4.2",
4
+ "version": "1.6.4",
5
5
  "type": "module",
6
6
  "description": "Comprehensive functional utilities library for DXT UI - classes, composables, functions and types for modern web development",
7
7
  "keywords": [
@@ -1,4 +0,0 @@
1
- /**
2
- * @vitest-environment jsdom
3
- */
4
- export {};