venice-ui 1.0.31 → 1.0.32

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.
@@ -1,5 +1,5 @@
1
1
  import { FC } from 'react';
2
- import { InputSize, ButtonMode } from 'types';
2
+ import { InputSize, ButtonMode } from '../../types';
3
3
  export interface IButtonProps {
4
4
  text: string;
5
5
  mode?: ButtonMode;
@@ -1,4 +1,4 @@
1
- import { InputSize } from 'types';
1
+ import { InputSize } from '../../types';
2
2
  interface IButtonElement {
3
3
  mode: string;
4
4
  size: InputSize;
@@ -1,5 +1,5 @@
1
1
  import React, { FC } from 'react';
2
- import { IAction } from 'types';
2
+ import { IAction } from '../../types';
3
3
  interface ICardProps {
4
4
  children: React.ReactNode;
5
5
  title?: string;
@@ -1,5 +1,5 @@
1
1
  import React, { FC } from 'react';
2
- import { IAction } from 'types';
2
+ import { IAction } from '../../types';
3
3
  interface IElementHeader {
4
4
  title?: string;
5
5
  showTitle?: boolean;
@@ -1,5 +1,5 @@
1
1
  import { FC } from 'react';
2
- import { InputSize } from 'types';
2
+ import { InputSize } from '../../types';
3
3
  export interface ILoaderProps {
4
4
  color?: string;
5
5
  size: InputSize;
@@ -1,4 +1,4 @@
1
- import { InputSize } from 'types';
1
+ import { InputSize } from '../../types';
2
2
  export declare const Action1: import("styled-components").Keyframes;
3
3
  export declare const Action2: (move: string) => import("styled-components").Keyframes;
4
4
  export declare const Action3: import("styled-components").Keyframes;
@@ -1,5 +1,5 @@
1
1
  import { FC } from 'react';
2
- import { IAction, InputSize } from 'types';
2
+ import { IAction, InputSize } from '../../types';
3
3
  interface IMoreProps {
4
4
  options: IAction[];
5
5
  size?: InputSize;
@@ -1,5 +1,5 @@
1
1
  import { FC } from 'react';
2
- import { InputSize, IOption, LabelPosition } from 'types';
2
+ import { InputSize, IOption, LabelPosition } from '../../types';
3
3
  export interface ISelectorProps {
4
4
  label?: string;
5
5
  labelPosition?: LabelPosition;
@@ -1,5 +1,5 @@
1
1
  import React, { FC } from 'react';
2
- import { IIconsActions } from 'types';
2
+ import { IIconsActions } from '../../types';
3
3
  interface ISidepanel {
4
4
  isOpen: boolean;
5
5
  children: React.ReactNode;
@@ -1,4 +1,4 @@
1
- import { InputSize, LabelPosition } from 'types';
1
+ import { InputSize, LabelPosition } from '../../types';
2
2
  export declare const Text: import("styled-components").StyledComponent<"div", any, {}, never>;
3
3
  export declare const TextSmall: import("styled-components").StyledComponent<"div", any, {}, never>;
4
4
  export declare const TextHeader: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -1,4 +1,4 @@
1
- import { InputSize, PanelPosition } from 'types';
1
+ import { InputSize, PanelPosition } from '../../types';
2
2
  export declare const Container: import("styled-components").StyledComponent<"div", any, {}, never>;
3
3
  export declare const ScrollCotainer: import("styled-components").StyledComponent<"div", any, {}, never>;
4
4
  interface IPanelStyle {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "venice-ui",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "description": "Component library",
5
5
  "main": "index.js",
6
6
  "module": "./dist/esm/index.js",