@true-engineering/true-react-common-ui-kit 3.36.0 → 3.37.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 CHANGED
@@ -11,6 +11,12 @@
11
11
 
12
12
  # Release Notes
13
13
 
14
+ ## 3.37.0
15
+
16
+ ### Changes
17
+
18
+ - **IUiKitTheme**: Удалено поле name
19
+
14
20
  ## 3.36.0
15
21
 
16
22
  ### Changes
@@ -69,7 +69,6 @@ export type IComponentName = keyof IComponentStyles;
69
69
  export type IUiKitAnimations = Record<string, any>;
70
70
  export type IUiKitHelpers = Record<string, Styles | (() => Styles)>;
71
71
  export interface IUiKitTheme {
72
- name: string;
73
72
  components?: Partial<IComponentStyles>;
74
73
  icons?: Partial<Record<ICommonIcon, ISvgIcon>>;
75
74
  complexIcons?: Partial<Record<IComplexIcon, string>>;
@@ -1110,7 +1110,6 @@ var animations = {
1110
1110
  }
1111
1111
  };
1112
1112
  var common = {
1113
- name: "common",
1114
1113
  animations,
1115
1114
  colors,
1116
1115
  dimensions,