From 48d4828f8eb48e8c90c33d069b5102afceedd717 Mon Sep 17 00:00:00 2001 From: Artur Arseniev Date: Wed, 11 Jan 2023 15:25:16 +0400 Subject: [PATCH] Up --- src/style_manager/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/style_manager/index.ts b/src/style_manager/index.ts index 75440da60..2d7872c2b 100644 --- a/src/style_manager/index.ts +++ b/src/style_manager/index.ts @@ -65,7 +65,7 @@ import { isUndefined, isArray, isString, debounce, bindAll } from 'underscore'; import { isComponent } from '../utils/mixins'; -import { AddOptions, Model, Module } from '../common'; +import { AddOptions, Model } from '../common'; import defaults, { StyleManagerConfig } from './config/config'; import Sector, { SectorProperties } from './model/Sector'; import Sectors from './model/Sectors'; @@ -78,7 +78,7 @@ import Property, { PropertyProps, StyleProps } from './model/Property'; import Component from '../dom_components/model/Component'; import CssRule from '../css_composer/model/CssRule'; import StyleableModel from '../domain_abstract/model/StyleableModel'; -import { CustomPropertyView, ICustomPropertyView } from './view/PropertyView'; +import { CustomPropertyView } from './view/PropertyView'; type StyleTarget = StyleableModel;