Commit ebb6a499 authored by Дмитрий Малюгин's avatar Дмитрий Малюгин 🕓
Browse files

fix: remove aliases (not all before)

parent 1c66693b
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
{
  "name": "@d.malygin/UI_storybook",
  "version": "1.0.4",
  "version": "1.0.5",
  "type": "module",
  "scripts": {
    "dev": "vite",
+1 −1
Original line number Diff line number Diff line
import type { TThemeColor } from '@interfaces/common';
import type { TThemeColor } from '../interfaces/common';

export const convert100ThemeToColor = (theme: TThemeColor) => {
  switch (theme) {
+1 −1
Original line number Diff line number Diff line
import { EThemeColor, type TDarkness, type TSize, type TThemeColor } from '@interfaces/common';
import { EThemeColor, type TDarkness, type TSize, type TThemeColor } from '../interfaces/common';
import {
  convert100ThemeToColor,
  convert200ThemeToColor,
+1 −1
Original line number Diff line number Diff line
import type { iconsSet } from '@/common/constants/icons';
import type { iconsSet } from '../constants/icons';

export type TIcon = keyof typeof iconsSet;

+2 −2
Original line number Diff line number Diff line
import type { TDarkness, TIcon, TPosition, TTextStyle, TThemeColor } from '@interfaces/common';
import type { TDarkness, TIcon, TPosition, TTextStyle, TThemeColor } from '../interfaces/common';
import type {
  ICheckboxProps,
  IKnobProps,
  IProgressBarProps,
  IRatingProps,
  ISelectProps,
} from '@interfaces/componentsProps';
} from '../interfaces/componentsProps';

export interface ITableColumn {
  name: string;
Loading