Skip to content

Commit

Permalink
fix: replace double quotes with single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
pvalchetskaya committed Mar 24, 2021
1 parent a68a9d0 commit b52a735
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/editor/editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {bind} from '@exadel/esl/modules/esl-utils/decorators/bind';
import {UIPRoot} from '../core/root';
import {ESLBaseElement, jsonAttr} from '@exadel/esl/modules/esl-base-element/core';
import {EventUtils} from '@exadel/esl/modules/esl-utils/dom/events';
import {attr} from "@exadel/esl/modules/esl-base-element/decorators/attr";
import {attr} from '@exadel/esl/modules/esl-base-element/decorators/attr';

interface EditorConfig {
theme: string;
Expand Down
8 changes: 4 additions & 4 deletions src/options/options.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {boolAttr, attr, ESLBaseElement} from "@exadel/esl/modules/esl-base-element/core";
import {bind} from "@exadel/esl/modules/esl-utils/decorators/bind";
import {UIPEditor} from "../editor/editor";
import {CSSUtil, TraversingQuery} from "@exadel/esl";
import {boolAttr, attr, ESLBaseElement} from '@exadel/esl/modules/esl-base-element/core';
import {bind} from '@exadel/esl/modules/esl-utils/decorators/bind';
import {UIPEditor} from '../editor/editor';
import {CSSUtil, TraversingQuery} from '@exadel/esl';

export class UIPOptions extends ESLBaseElement {
static is = 'uip-options';
Expand Down
2 changes: 1 addition & 1 deletion src/playground.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {UIPListSetting} from './settings/setting/list-setting/list-setting';
import {UIPClassSetting} from './settings/setting/class-setting/class-setting';
import {UIPCheckSetting} from './settings/setting/check-setting/check-setting';
import {UIPSnippets} from './snippets/snippets';
import {UIPOptions} from "./options/options";
import {UIPOptions} from './options/options';

export {
UIPRoot,
Expand Down
2 changes: 1 addition & 1 deletion src/preview/preview.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {bind} from '@exadel/esl/modules/esl-utils/decorators/bind';
import {UIPRoot} from '../core/root';
import {ESLBaseElement} from '@exadel/esl/modules/esl-base-element/core';
import {attr} from "@exadel/esl/modules/esl-base-element/decorators/attr";
import {attr} from '@exadel/esl/modules/esl-base-element/decorators/attr';

export class UIPPreview extends ESLBaseElement {
static is = 'uip-preview';
Expand Down
2 changes: 1 addition & 1 deletion src/settings/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {bind} from '@exadel/esl/modules/esl-utils/decorators/bind';
import {ESLBaseElement} from '@exadel/esl/modules/esl-base-element/core';
import {UIPRoot} from '../core/root';
import {EventUtils} from '@exadel/esl/modules/esl-utils/dom/events';
import {attr} from "@exadel/esl/modules/esl-base-element/decorators/attr";
import {attr} from '@exadel/esl/modules/esl-base-element/decorators/attr';

export class UIPSettings extends ESLBaseElement {
public static is = 'uip-settings';
Expand Down
2 changes: 1 addition & 1 deletion src/snippets/snippets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {ESLBaseElement} from '@exadel/esl/modules/esl-base-element/core';
import {bind} from '@exadel/esl/modules/esl-utils/decorators/bind';
import {UIPRoot} from '../core/root';
import {EventUtils} from '@exadel/esl/modules/esl-utils/dom/events';
import {attr} from "@exadel/esl/modules/esl-base-element/decorators/attr";
import {attr} from '@exadel/esl/modules/esl-base-element/decorators/attr';

export class UIPSnippets extends ESLBaseElement {
public static is = 'uip-snippets';
Expand Down

0 comments on commit b52a735

Please sign in to comment.