@fewbox/den-web 0.1.5 → 0.1.7

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,8 +1,6 @@
1
1
  import { DirectionType, FullColorType, PseudoType, FullFontSizeType, FontWeightType } from '..';
2
2
  import { Property } from 'csstype';
3
3
  export type TLength = (string & {}) | 0;
4
- export type ViewPropsKey = keyof IViewProps;
5
- export declare const ViewPropsKeys: ViewPropsKey[];
6
4
  export interface IViewProps {
7
5
  className?: string;
8
6
  style?: React.CSSProperties;
@@ -1,5 +1,6 @@
1
1
  import { IBaseProps } from '../../Engine/Base';
2
2
  import { ColorType } from '../../Engine';
3
+ import './index.scss';
3
4
  export interface IVAvatarProps extends IBaseProps {
4
5
  avatar: string | JSX.Element;
5
6
  badge?: string | JSX.Element;
@@ -1,4 +1,4 @@
1
- import { IBaseProps } from '../../../Engine/Base';
1
+ import { IBaseProps } from '../../Engine/Base';
2
2
  export declare enum ImageCategory {
3
3
  Default = "default",
4
4
  Circle = "circle",
@@ -1,4 +1,4 @@
1
- import { IBaseInputProps } from "../..";
1
+ import { IBaseInputProps } from "..";
2
2
  export interface IVBase64FileProps extends IBaseInputProps {
3
3
  fileIcon?: JSX.Element;
4
4
  base64Image: string;
@@ -10,9 +10,8 @@ export interface InputFile {
10
10
  }
11
11
  export interface IVFileProps extends IBaseInputProps {
12
12
  category?: FileCategory;
13
- fileIcon: JSX.Element;
14
- caption?: JSX.Element | string;
15
- emptyMessage: string;
13
+ appearance: JSX.Element;
14
+ loader?: JSX.Element;
16
15
  loaderSize?: FontSizeType;
17
16
  loaderColor?: ColorType;
18
17
  previewImageWidth?: number;
@@ -72,6 +72,7 @@ export { default as VDate } from './View/VInput/VDate';
72
72
  export { default as VDatetimeLocal } from './View/VInput/VDatetimeLocal';
73
73
  export { default as VEmail } from './View/VInput/VEmail';
74
74
  export { default as VFile, FileCategory } from './View/VInput/VFile';
75
+ export { default as VBase64File } from './View/VInput/VBase64File';
75
76
  export { default as VMonth } from './View/VInput/VMonth';
76
77
  export { default as VNumber } from './View/VInput/VNumber';
77
78
  export { default as VPassword } from './View/VInput/VPassword';
@@ -93,6 +94,7 @@ export { default as VSvg, SvgCategory } from './View/VSvg';
93
94
  export { default as VChromeExtensionValidator, ExtensionStatus } from './View/VChromeExtensionValidator';
94
95
  export { default as VBoundary } from './View/VBoundary';
95
96
  export { default as VHyperlink, HyperlinkCategory } from './View/VHyperlink';
97
+ export { default as VImage, ImageCategory } from './View/VImage';
96
98
  export { default as VLabel, LabelCategory, LabelType, LabelAlignType } from './View/VLabel';
97
99
  export { default as VText, TextCategory, TextAlignType } from './View/VText';
98
100
  export { default as VTextArea } from './View/VTextArea';