@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@true-engineering/true-react-common-ui-kit",
3
- "version": "3.36.0",
3
+ "version": "3.37.0",
4
4
  "description": "True Engineering React UI Kit with theming support",
5
5
  "author": "True Engineering (https://trueengineering.ru)",
6
6
  "keywords": [
@@ -156,7 +156,6 @@ export interface ICommonUiKitTheme extends IUiKitTheme {
156
156
  }
157
157
 
158
158
  export const common: ICommonUiKitTheme = {
159
- name: 'common',
160
159
  animations,
161
160
  colors,
162
161
  dimensions,
@@ -144,7 +144,6 @@ export type IUiKitAnimations = Record<string, any>;
144
144
  export type IUiKitHelpers = Record<string, Styles | (() => Styles)>;
145
145
 
146
146
  export interface IUiKitTheme {
147
- name: string;
148
147
  components?: Partial<IComponentStyles>;
149
148
  icons?: Partial<Record<ICommonIcon, ISvgIcon>>;
150
149
  complexIcons?: Partial<Record<IComplexIcon, string>>;