@fewbox/den 0.1.43 → 0.2.0-preview.21

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.
Files changed (67) hide show
  1. package/engine.js +2 -0
  2. package/engine.js.map +1 -0
  3. package/index-core.d.ts +1 -4
  4. package/index-engine.d.ts +27 -0
  5. package/index.css +1 -1
  6. package/index.js +2 -1
  7. package/index.js.map +1 -1
  8. package/package.json +10 -1
  9. package/scripts/generate-packages.js +12 -0
  10. package/server.js +71 -0
  11. package/src/components/Auth/GoogleGrant/index.d.ts +10 -8
  12. package/src/components/Auth/GoogleSignin/index.d.ts +6 -5
  13. package/src/components/Engine/Base/index.d.ts +21 -22
  14. package/src/components/Engine/index.d.ts +305 -124
  15. package/src/components/Layout/Breakpoint/index.d.ts +28 -0
  16. package/src/components/Layout/Dock/index.d.ts +26 -27
  17. package/src/components/Layout/Flex/index.d.ts +40 -34
  18. package/src/components/Layout/FlexItem/index.d.ts +8 -7
  19. package/src/components/Layout/Position/index.d.ts +19 -17
  20. package/src/components/Layout/PositionArea/index.d.ts +5 -4
  21. package/src/components/Layout/Responsive/index.d.ts +2 -2
  22. package/src/components/Layout/XBase/index.d.ts +10 -8
  23. package/src/components/Layout/YBase/index.d.ts +10 -8
  24. package/src/components/View/VAnimation/index.d.ts +122 -118
  25. package/src/components/View/VAside/index.d.ts +5 -0
  26. package/src/components/View/VAvatar/index.d.ts +0 -1
  27. package/src/components/View/VBackground/index.d.ts +10 -10
  28. package/src/components/View/VCardWindow/index.d.ts +6 -5
  29. package/src/components/View/VChromeExtensionValidator/index.d.ts +8 -7
  30. package/src/components/View/VErrorBoundary/index.d.ts +1 -1
  31. package/src/components/View/VForm/index.d.ts +7 -7
  32. package/src/components/View/VGoogleFont/index.d.ts +5 -4
  33. package/src/components/View/VHyperlink/index.d.ts +7 -6
  34. package/src/components/View/VImage/index.d.ts +12 -8
  35. package/src/components/View/VInput/VColor/index.d.ts +0 -2
  36. package/src/components/View/VInput/VDate/index.d.ts +0 -2
  37. package/src/components/View/VInput/VDatetimeLocal/index.d.ts +0 -2
  38. package/src/components/View/VInput/VDropdown/index.d.ts +2 -0
  39. package/src/components/View/VInput/VFile/index.d.ts +5 -4
  40. package/src/components/View/VInput/VGroup/index.d.ts +1 -1
  41. package/src/components/View/VInput/VRange/index.d.ts +2 -1
  42. package/src/components/View/VInput/index.d.ts +5 -4
  43. package/src/components/View/VLabel/index.d.ts +53 -47
  44. package/src/components/View/VNav/index.d.ts +5 -0
  45. package/src/components/View/VPhoto/index.d.ts +12 -10
  46. package/src/components/View/VRoot/index.d.ts +5 -4
  47. package/src/components/View/VShadow/index.d.ts +5 -4
  48. package/src/components/View/VShape/VEllipse/index.d.ts +5 -4
  49. package/src/components/View/VShape/VLine/index.d.ts +5 -4
  50. package/src/components/View/VShape/VRectangle/index.d.ts +5 -4
  51. package/src/components/View/VSvg/index.d.ts +11 -7
  52. package/src/components/View/VText/index.d.ts +18 -16
  53. package/src/components/View/VTextArea/index.d.ts +2 -0
  54. package/src/components/View/VTheme/index.d.ts +14 -7
  55. package/src/components/View/VTooltip/index.d.ts +5 -4
  56. package/src/components/View/VVideo/index.d.ts +1 -4
  57. package/src/components/View/VZone/index.d.ts +9 -8
  58. package/src/components/core.d.ts +20 -6
  59. package/src/components/web.d.ts +10 -3
  60. package/src/store/index.d.ts +6 -6
  61. package/templates/.claude/skills/fewbox-den/SKILL.md +434 -96
  62. package/templates/style/_core.scss +94 -0
  63. package/templates/style/_root-properties.scss +51 -0
  64. package/templates/style/_variables.scss +166 -3
  65. package/tsconfig.app.tsbuildinfo +1 -0
  66. package/src/components/Layout/Display/index.d.ts +0 -18
  67. package/src/components/Layout/index.d.ts +0 -8
@@ -0,0 +1,28 @@
1
+ import { IBaseProps } from '../../Engine/Base';
2
+ export declare const ScreenSizeType: {
3
+ readonly ExtraSmall: "extra-small";
4
+ readonly Small: "small";
5
+ readonly Medium: "medium";
6
+ readonly Large: "large";
7
+ readonly ExtraLarge: "extra-large";
8
+ readonly ExtraExtraLarge: "extra-extra-large";
9
+ };
10
+ export type ScreenSizeType = typeof ScreenSizeType[keyof typeof ScreenSizeType];
11
+ export declare const BreakpointCategory: {
12
+ readonly Visible: "visiable";
13
+ readonly Hidden: "hidden";
14
+ };
15
+ export type BreakpointCategory = typeof BreakpointCategory[keyof typeof BreakpointCategory];
16
+ export declare const BreakpointType: {
17
+ readonly Only: "only";
18
+ readonly Up: "up";
19
+ readonly Down: "down";
20
+ };
21
+ export type BreakpointType = typeof BreakpointType[keyof typeof BreakpointType];
22
+ export interface IBreakpointDisplayProps extends IBaseProps {
23
+ category: BreakpointCategory;
24
+ type?: BreakpointType;
25
+ breakpoint?: ScreenSizeType | ScreenSizeType[];
26
+ }
27
+ declare const BreakpointDisplay: (props: IBreakpointDisplayProps) => React.JSX.Element;
28
+ export default BreakpointDisplay;
@@ -1,28 +1,30 @@
1
- import { IBaseProps, IBaseStates } from '../../Engine/Base';
1
+ import { IBaseProps } from '../../Engine/Base';
2
2
  import { Property } from 'csstype';
3
- export declare enum DockCategory {
4
- Top = "top",
5
- Right = "right",
6
- Bottom = "bottom",
7
- Left = "left",
8
- LeftTop = "left-top",
9
- RightTop = "right-top",
10
- LeftBottom = "left-bottom",
11
- RightBottom = "right-bottom",
12
- InnerTop = "inner-top",
13
- InnerRight = "inner-right",
14
- InnerBottom = "inner-bottom",
15
- InnerLeft = "inner-left",
16
- InnerLeftTop = "inner-left-top",
17
- InnerRightTop = "inner-right-top",
18
- InnerLeftBottom = "inner-left-bottom",
19
- InnerRightBottom = "inner-right-bottom"
20
- }
21
- export declare enum DockAlignment {
22
- Horizontal = "horizontal",
23
- Vertical = "vertical"
24
- }
25
- type AlignmentCategory = DockCategory.LeftTop | DockCategory.RightTop | DockCategory.RightBottom | DockCategory.LeftBottom;
3
+ export declare const DockCategory: {
4
+ readonly Top: "top";
5
+ readonly Right: "right";
6
+ readonly Bottom: "bottom";
7
+ readonly Left: "left";
8
+ readonly LeftTop: "left-top";
9
+ readonly RightTop: "right-top";
10
+ readonly LeftBottom: "left-bottom";
11
+ readonly RightBottom: "right-bottom";
12
+ readonly InnerTop: "inner-top";
13
+ readonly InnerRight: "inner-right";
14
+ readonly InnerBottom: "inner-bottom";
15
+ readonly InnerLeft: "inner-left";
16
+ readonly InnerLeftTop: "inner-left-top";
17
+ readonly InnerRightTop: "inner-right-top";
18
+ readonly InnerLeftBottom: "inner-left-bottom";
19
+ readonly InnerRightBottom: "inner-right-bottom";
20
+ };
21
+ export type DockCategory = typeof DockCategory[keyof typeof DockCategory];
22
+ export declare const DockAlignment: {
23
+ readonly Horizontal: "horizontal";
24
+ readonly Vertical: "vertical";
25
+ };
26
+ export type DockAlignment = typeof DockAlignment[keyof typeof DockAlignment];
27
+ type AlignmentCategory = typeof DockCategory.LeftTop | typeof DockCategory.RightTop | typeof DockCategory.RightBottom | typeof DockCategory.LeftBottom;
26
28
  type NonAlignmentCategory = Exclude<DockCategory, AlignmentCategory>;
27
29
  interface IDockBaseProps extends IBaseProps {
28
30
  offset?: number;
@@ -35,8 +37,5 @@ export type IDockProps = ({
35
37
  } | {
36
38
  category: NonAlignmentCategory;
37
39
  }) & IDockBaseProps;
38
- export interface IDockStates extends IBaseStates {
39
- isMounted: boolean;
40
- }
41
40
  declare const Dock: (props: IDockProps) => React.JSX.Element;
42
41
  export default Dock;
@@ -1,37 +1,43 @@
1
1
  import { IBaseProps } from '../../Engine/Base';
2
- export declare enum FlexDirectionType {
3
- Row = "row",
4
- RowReverse = "row-reverse",
5
- Column = "column",
6
- ColumnReverse = "column-reverse"
7
- }
8
- export declare enum FlexWrapType {
9
- NoWrap = "nowrap",
10
- Wrap = "wrap"
11
- }
12
- export declare enum FlexJustifyContentType {
13
- Start = "flex-start",
14
- Center = "center",
15
- End = "flex-end",
16
- SpaceBetween = "space-between",
17
- SpaceAround = "space-around",
18
- SpaceEvenly = "space-evenly"
19
- }
20
- export declare enum FlexAlignItemsType {
21
- Start = "flex-start",
22
- Center = "center",
23
- End = "flex-end",
24
- Stretch = "stretch",
25
- Baseline = "baseline"
26
- }
27
- export declare enum FlexAlignContentType {
28
- Start = "flex-start",
29
- Center = "center",
30
- End = "flex-end",
31
- SpaceBetween = "space-between",
32
- SpaceAround = "space-around",
33
- SpaceEvenly = "space-evenly"
34
- }
2
+ import { FullGapType } from '../../Engine';
3
+ export declare const FlexDirectionType: {
4
+ readonly Row: "row";
5
+ readonly RowReverse: "row-reverse";
6
+ readonly Column: "column";
7
+ readonly ColumnReverse: "column-reverse";
8
+ };
9
+ export type FlexDirectionType = typeof FlexDirectionType[keyof typeof FlexDirectionType];
10
+ export declare const FlexWrapType: {
11
+ readonly NoWrap: "nowrap";
12
+ readonly Wrap: "wrap";
13
+ };
14
+ export type FlexWrapType = typeof FlexWrapType[keyof typeof FlexWrapType];
15
+ export declare const FlexJustifyContentType: {
16
+ readonly Start: "flex-start";
17
+ readonly Center: "center";
18
+ readonly End: "flex-end";
19
+ readonly SpaceBetween: "space-between";
20
+ readonly SpaceAround: "space-around";
21
+ readonly SpaceEvenly: "space-evenly";
22
+ };
23
+ export type FlexJustifyContentType = typeof FlexJustifyContentType[keyof typeof FlexJustifyContentType];
24
+ export declare const FlexAlignItemsType: {
25
+ readonly Start: "flex-start";
26
+ readonly Center: "center";
27
+ readonly End: "flex-end";
28
+ readonly Stretch: "stretch";
29
+ readonly Baseline: "baseline";
30
+ };
31
+ export type FlexAlignItemsType = typeof FlexAlignItemsType[keyof typeof FlexAlignItemsType];
32
+ export declare const FlexAlignContentType: {
33
+ readonly Start: "flex-start";
34
+ readonly Center: "center";
35
+ readonly End: "flex-end";
36
+ readonly SpaceBetween: "space-between";
37
+ readonly SpaceAround: "space-around";
38
+ readonly SpaceEvenly: "space-evenly";
39
+ };
40
+ export type FlexAlignContentType = typeof FlexAlignContentType[keyof typeof FlexAlignContentType];
35
41
  export interface IFlexProps extends IBaseProps<'div'> {
36
42
  vClassName: string;
37
43
  direction?: FlexDirectionType;
@@ -39,7 +45,7 @@ export interface IFlexProps extends IBaseProps<'div'> {
39
45
  justifyContent?: FlexJustifyContentType;
40
46
  alignItems?: FlexAlignItemsType;
41
47
  alignContent?: FlexAlignContentType;
42
- gap?: string;
48
+ gap?: FullGapType;
43
49
  }
44
50
  declare const Flex: (props: IFlexProps) => React.JSX.Element;
45
51
  export default Flex;
@@ -1,12 +1,13 @@
1
1
  import { Property } from 'csstype';
2
2
  import { IBaseProps } from '../../Engine/Base';
3
- export declare enum FlexItemAlignSelfType {
4
- Start = "start",
5
- Center = "center",
6
- End = "end",
7
- Stretch = "stretch",
8
- Baseline = "baseline"
9
- }
3
+ export declare const FlexItemAlignSelfType: {
4
+ readonly Start: "start";
5
+ readonly Center: "center";
6
+ readonly End: "end";
7
+ readonly Stretch: "stretch";
8
+ readonly Baseline: "baseline";
9
+ };
10
+ export type FlexItemAlignSelfType = typeof FlexItemAlignSelfType[keyof typeof FlexItemAlignSelfType];
10
11
  export interface IFlexItemProps extends IBaseProps<any> {
11
12
  alignSelf?: FlexItemAlignSelfType;
12
13
  order?: Property.Order;
@@ -1,22 +1,24 @@
1
1
  import { IBaseProps } from '../../Engine/Base';
2
2
  import { Property } from 'csstype';
3
- export declare enum PositionCategory {
4
- Edge = "edge",
5
- Window = "window",
6
- Area = "area",
7
- Self = "self"
8
- }
9
- export declare enum PositionType {
10
- Top = "top",
11
- Right = "right",
12
- Bottom = "bottom",
13
- Left = "left",
14
- LeftTop = "left-top",
15
- RightTop = "right-top",
16
- LeftBottom = "left-bottom",
17
- RightBottom = "right-bottom",
18
- Center = "center"
19
- }
3
+ export declare const PositionCategory: {
4
+ readonly Edge: "edge";
5
+ readonly Window: "window";
6
+ readonly Area: "area";
7
+ readonly Self: "self";
8
+ };
9
+ export type PositionCategory = typeof PositionCategory[keyof typeof PositionCategory];
10
+ export declare const PositionType: {
11
+ readonly Top: "top";
12
+ readonly Right: "right";
13
+ readonly Bottom: "bottom";
14
+ readonly Left: "left";
15
+ readonly LeftTop: "left-top";
16
+ readonly RightTop: "right-top";
17
+ readonly LeftBottom: "left-bottom";
18
+ readonly RightBottom: "right-bottom";
19
+ readonly Center: "center";
20
+ };
21
+ export type PositionType = typeof PositionType[keyof typeof PositionType];
20
22
  export interface IPositionProps extends IBaseProps {
21
23
  category: PositionCategory;
22
24
  type?: PositionType;
@@ -1,8 +1,9 @@
1
1
  import { IBaseProps } from '../../Engine/Base';
2
- export declare enum PositionAreaCategory {
3
- Default = "default",
4
- FullSize = "full-size"
5
- }
2
+ export declare const PositionAreaCategory: {
3
+ readonly Default: "default";
4
+ readonly FullSize: "full-size";
5
+ };
6
+ export type PositionAreaCategory = typeof PositionAreaCategory[keyof typeof PositionAreaCategory];
6
7
  export interface IPositionAreaProps extends IBaseProps {
7
8
  category?: PositionAreaCategory;
8
9
  }
@@ -1,6 +1,6 @@
1
- import { BreakpointType } from '..';
1
+ import { ScreenSizeType } from "../Breakpoint";
2
2
  export interface IResponsiveProps {
3
- breakpointType?: BreakpointType;
3
+ breakpointType?: ScreenSizeType;
4
4
  desktop: React.JSX.Element;
5
5
  mobile: React.JSX.Element;
6
6
  }
@@ -1,16 +1,18 @@
1
1
  import { Property } from 'csstype';
2
2
  import { IBaseProps } from '../../Engine/Base';
3
+ import { FullGapType } from '../../Engine';
3
4
  import { FlexAlignContentType, FlexJustifyContentType, FlexWrapType } from '../Flex';
4
5
  import { FlexItemAlignSelfType } from '../FlexItem';
5
- export declare enum XCrossType {
6
- Top = "top",
7
- Middle = "middle",
8
- Bottom = "bottom",
9
- Stretch = "stretch",
10
- Baseline = "baseline"
11
- }
6
+ export declare const XCrossType: {
7
+ readonly Top: "top";
8
+ readonly Middle: "middle";
9
+ readonly Bottom: "bottom";
10
+ readonly Stretch: "stretch";
11
+ readonly Baseline: "baseline";
12
+ };
13
+ export type XCrossType = typeof XCrossType[keyof typeof XCrossType];
12
14
  export interface IXBaseProps extends IBaseProps {
13
- gap?: string;
15
+ gap?: FullGapType;
14
16
  cross?: XCrossType;
15
17
  itemsShrink?: Property.FlexShrink;
16
18
  }
@@ -1,16 +1,18 @@
1
1
  import { Property } from 'csstype';
2
2
  import { IBaseProps } from '../../Engine/Base';
3
+ import { FullGapType } from '../../Engine';
3
4
  import { FlexAlignContentType, FlexWrapType, FlexJustifyContentType } from '../Flex';
4
5
  import { FlexItemAlignSelfType } from '../FlexItem';
5
- export declare enum YCrossType {
6
- Left = "left",
7
- Center = "center",
8
- Right = "right",
9
- Baseline = "baseline",
10
- Stretch = "stretch"
11
- }
6
+ export declare const YCrossType: {
7
+ readonly Left: "left";
8
+ readonly Center: "center";
9
+ readonly Right: "right";
10
+ readonly Baseline: "baseline";
11
+ readonly Stretch: "stretch";
12
+ };
13
+ export type YCrossType = typeof YCrossType[keyof typeof YCrossType];
12
14
  export interface IYBaseProps extends IBaseProps {
13
- gap?: string;
15
+ gap?: FullGapType;
14
16
  cross?: YCrossType;
15
17
  itemsShrink?: Property.FlexShrink;
16
18
  }
@@ -1,122 +1,126 @@
1
1
  import { IBaseProps } from '../../Engine/Base';
2
- export declare enum AnimationCategory {
3
- Bounce = "animate__bounce",
4
- Flash = "animate__flash",
5
- Pulse = "animate__pulse",
6
- RubberBand = "animate__rubberBand",
7
- ShakeX = "animate__shakeX",
8
- ShakeY = "animate__shakeY",
9
- HeadShake = "animate__headShake",
10
- Swing = "animate__swing",
11
- Tada = "animate__tada",
12
- Wobble = "animate__wobble",
13
- Jello = "animate__jello",
14
- HeartBeat = "animate__heartBeat",
15
- BackInDown = "animate__backInDown",
16
- BackInLeft = "animate__backInLeft",
17
- BackInRight = "animate__backInRight",
18
- BackInUp = "animate__backInUp",
19
- BackOutDown = "animate__backOutDown",
20
- BackOutLeft = "animate__backOutLeft",
21
- BackOutRight = "animate__backOutRight",
22
- BackOutUp = "animate__backOutUp",
23
- BounceIn = "animate__bounceIn",
24
- BounceInDown = "animate__bounceInDown",
25
- BounceInLeft = "animate__bounceInLeft",
26
- BounceInRight = "animate__bounceInRight",
27
- BounceInUp = "animate__bounceInUp",
28
- BounceOut = "animate__bounceOut",
29
- BounceOutDown = "animate__bounceOutDown",
30
- BounceOutLeft = "animate__bounceOutLeft",
31
- BounceOutRight = "animate__bounceOutRight",
32
- BounceOutUp = "animate__bounceOutUp",
33
- FadeIn = "animate__fadeIn",
34
- FadeInDown = "animate__fadeInDown",
35
- FadeInDownBig = "animate__fadeInDownBig",
36
- FadeInLeft = "animate__fadeInLeft",
37
- FadeInLeftBig = "animate__fadeInLeftBig",
38
- FadeInRight = "animate__fadeInRight",
39
- FadeInRightBig = "animate__fadeInRightBig",
40
- FadeInUp = "animate__fadeInUp",
41
- FadeInUpBig = "animate__fadeInUpBig",
42
- FadeInTopLeft = "animate__fadeInTopLeft",
43
- FadeInTopRight = "animate__fadeInTopRight",
44
- FadeInBottomLeft = "animate__fadeInBottomLeft",
45
- FadeInBottomRight = "animate__fadeInBottomRight",
46
- FadeOut = "animate__fadeOut",
47
- FadeOutDown = "animate__fadeOutDown",
48
- FadeOutDownBig = "animate__fadeOutDownBig",
49
- FadeOutLeft = "animate__fadeOutLeft",
50
- FadeOutLeftBig = "animate__fadeOutLeftBig",
51
- FadeOutRight = "animate__fadeOutRight",
52
- FadeOutRightBig = "animate__fadeOutRightBig",
53
- FadeOutUp = "animate__fadeOutUp",
54
- FadeOutUpBig = "animate__fadeOutUpBig",
55
- FadeOutTopLeft = "animate__fadeOutTopLeft",
56
- FadeOutTopRight = "animate__fadeOutTopRight",
57
- FadeOutBottomLeft = "animate__fadeOutBottomLeft",
58
- FadeOutBottomRight = "animate__fadeOutBottomRight",
59
- Flip = "animate__flip",
60
- FlipInX = "animate__flipInX",
61
- FlipInY = "animate__flipInY",
62
- FlipOutX = "animate__flipOutX",
63
- FlipOutY = "animate__flipOutY",
64
- LightSpeedInRight = "animate__lightSpeedInRight",
65
- LightSpeedInLeft = "animate__lightSpeedInLeft",
66
- LightSpeedOutRight = "animate__lightSpeedOutRight",
67
- LightSpeedOutLeft = "animate__lightSpeedOutLeft",
68
- RotateIn = "animate__rotateIn",
69
- RotateInDownLeft = "animate__rotateInDownLeft",
70
- RotateInDownRight = "animate__rotateInDownRight",
71
- RotateInUpLeft = "animate__rotateInUpLeft",
72
- RotateInUpRight = "animate__rotateInUpRight",
73
- RotateOut = "animate__rotateOut",
74
- RotateOutDownLeft = "animate__rotateOutDownLeft",
75
- RotateOutDownRight = "animate__rotateOutDownRight",
76
- RotateOutUpLeft = "animate__rotateOutUpLeft",
77
- RotateOutUpRight = "animate__rotateOutUpRight",
78
- Hinge = "animate__hinge",
79
- JackInTheBox = "animate__jackInTheBox",
80
- RollIn = "animate__rollIn",
81
- RollOut = "animate__rollOut",
82
- ZoomIn = "animate__zoomIn",
83
- ZoomInDown = "animate__zoomInDown",
84
- ZoomInLeft = "animate__zoomInLeft",
85
- ZoomInRight = "animate__zoomInRight",
86
- ZoomInUp = "animate__zoomInUp",
87
- ZoomOut = "animate__zoomOut",
88
- ZoomOutDown = "animate__zoomOutDown",
89
- ZoomOutLeft = "animate__zoomOutLeft",
90
- ZoomOutRight = "animate__zoomOutRight",
91
- ZoomOutUp = "animate__zoomOutUp",
92
- SlideInDown = "animate__slideInDown",
93
- SlideInLeft = "animate__slideInLeft",
94
- SlideInRight = "animate__slideInRight",
95
- SlideInUp = "animate__slideInUp",
96
- SlideOutDown = "animate__slideOutDown",
97
- SlideOutLeft = "animate__slideOutLeft",
98
- SlideOutRight = "animate__slideOutRight",
99
- SlideOutUp = "animate__slideOutUp"
100
- }
101
- export declare enum AnimationRepeat {
102
- Once = "animate__repeat-1",
103
- Twice = "animate__repeat-2",
104
- Thrice = "animate__repeat-3",
105
- Infinite = "animate__infinite"
106
- }
107
- export declare enum AnimationSpeed {
108
- Slow = "animate__slow",
109
- Slower = "animate__slower",
110
- Fast = "animate__fast",
111
- Faster = "animate__faster"
112
- }
113
- export declare enum AnimationDelay {
114
- Delay1Second = "animate__delay-1s",
115
- Delay2Second = "animate__delay-2s",
116
- Delay3Second = "animate__delay-3s",
117
- Delay4Second = "animate__delay-4s",
118
- Delay5Second = "animate__delay-5s"
119
- }
2
+ export declare const AnimationCategory: {
3
+ readonly Bounce: "animate__bounce";
4
+ readonly Flash: "animate__flash";
5
+ readonly Pulse: "animate__pulse";
6
+ readonly RubberBand: "animate__rubberBand";
7
+ readonly ShakeX: "animate__shakeX";
8
+ readonly ShakeY: "animate__shakeY";
9
+ readonly HeadShake: "animate__headShake";
10
+ readonly Swing: "animate__swing";
11
+ readonly Tada: "animate__tada";
12
+ readonly Wobble: "animate__wobble";
13
+ readonly Jello: "animate__jello";
14
+ readonly HeartBeat: "animate__heartBeat";
15
+ readonly BackInDown: "animate__backInDown";
16
+ readonly BackInLeft: "animate__backInLeft";
17
+ readonly BackInRight: "animate__backInRight";
18
+ readonly BackInUp: "animate__backInUp";
19
+ readonly BackOutDown: "animate__backOutDown";
20
+ readonly BackOutLeft: "animate__backOutLeft";
21
+ readonly BackOutRight: "animate__backOutRight";
22
+ readonly BackOutUp: "animate__backOutUp";
23
+ readonly BounceIn: "animate__bounceIn";
24
+ readonly BounceInDown: "animate__bounceInDown";
25
+ readonly BounceInLeft: "animate__bounceInLeft";
26
+ readonly BounceInRight: "animate__bounceInRight";
27
+ readonly BounceInUp: "animate__bounceInUp";
28
+ readonly BounceOut: "animate__bounceOut";
29
+ readonly BounceOutDown: "animate__bounceOutDown";
30
+ readonly BounceOutLeft: "animate__bounceOutLeft";
31
+ readonly BounceOutRight: "animate__bounceOutRight";
32
+ readonly BounceOutUp: "animate__bounceOutUp";
33
+ readonly FadeIn: "animate__fadeIn";
34
+ readonly FadeInDown: "animate__fadeInDown";
35
+ readonly FadeInDownBig: "animate__fadeInDownBig";
36
+ readonly FadeInLeft: "animate__fadeInLeft";
37
+ readonly FadeInLeftBig: "animate__fadeInLeftBig";
38
+ readonly FadeInRight: "animate__fadeInRight";
39
+ readonly FadeInRightBig: "animate__fadeInRightBig";
40
+ readonly FadeInUp: "animate__fadeInUp";
41
+ readonly FadeInUpBig: "animate__fadeInUpBig";
42
+ readonly FadeInTopLeft: "animate__fadeInTopLeft";
43
+ readonly FadeInTopRight: "animate__fadeInTopRight";
44
+ readonly FadeInBottomLeft: "animate__fadeInBottomLeft";
45
+ readonly FadeInBottomRight: "animate__fadeInBottomRight";
46
+ readonly FadeOut: "animate__fadeOut";
47
+ readonly FadeOutDown: "animate__fadeOutDown";
48
+ readonly FadeOutDownBig: "animate__fadeOutDownBig";
49
+ readonly FadeOutLeft: "animate__fadeOutLeft";
50
+ readonly FadeOutLeftBig: "animate__fadeOutLeftBig";
51
+ readonly FadeOutRight: "animate__fadeOutRight";
52
+ readonly FadeOutRightBig: "animate__fadeOutRightBig";
53
+ readonly FadeOutUp: "animate__fadeOutUp";
54
+ readonly FadeOutUpBig: "animate__fadeOutUpBig";
55
+ readonly FadeOutTopLeft: "animate__fadeOutTopLeft";
56
+ readonly FadeOutTopRight: "animate__fadeOutTopRight";
57
+ readonly FadeOutBottomLeft: "animate__fadeOutBottomLeft";
58
+ readonly FadeOutBottomRight: "animate__fadeOutBottomRight";
59
+ readonly Flip: "animate__flip";
60
+ readonly FlipInX: "animate__flipInX";
61
+ readonly FlipInY: "animate__flipInY";
62
+ readonly FlipOutX: "animate__flipOutX";
63
+ readonly FlipOutY: "animate__flipOutY";
64
+ readonly LightSpeedInRight: "animate__lightSpeedInRight";
65
+ readonly LightSpeedInLeft: "animate__lightSpeedInLeft";
66
+ readonly LightSpeedOutRight: "animate__lightSpeedOutRight";
67
+ readonly LightSpeedOutLeft: "animate__lightSpeedOutLeft";
68
+ readonly RotateIn: "animate__rotateIn";
69
+ readonly RotateInDownLeft: "animate__rotateInDownLeft";
70
+ readonly RotateInDownRight: "animate__rotateInDownRight";
71
+ readonly RotateInUpLeft: "animate__rotateInUpLeft";
72
+ readonly RotateInUpRight: "animate__rotateInUpRight";
73
+ readonly RotateOut: "animate__rotateOut";
74
+ readonly RotateOutDownLeft: "animate__rotateOutDownLeft";
75
+ readonly RotateOutDownRight: "animate__rotateOutDownRight";
76
+ readonly RotateOutUpLeft: "animate__rotateOutUpLeft";
77
+ readonly RotateOutUpRight: "animate__rotateOutUpRight";
78
+ readonly Hinge: "animate__hinge";
79
+ readonly JackInTheBox: "animate__jackInTheBox";
80
+ readonly RollIn: "animate__rollIn";
81
+ readonly RollOut: "animate__rollOut";
82
+ readonly ZoomIn: "animate__zoomIn";
83
+ readonly ZoomInDown: "animate__zoomInDown";
84
+ readonly ZoomInLeft: "animate__zoomInLeft";
85
+ readonly ZoomInRight: "animate__zoomInRight";
86
+ readonly ZoomInUp: "animate__zoomInUp";
87
+ readonly ZoomOut: "animate__zoomOut";
88
+ readonly ZoomOutDown: "animate__zoomOutDown";
89
+ readonly ZoomOutLeft: "animate__zoomOutLeft";
90
+ readonly ZoomOutRight: "animate__zoomOutRight";
91
+ readonly ZoomOutUp: "animate__zoomOutUp";
92
+ readonly SlideInDown: "animate__slideInDown";
93
+ readonly SlideInLeft: "animate__slideInLeft";
94
+ readonly SlideInRight: "animate__slideInRight";
95
+ readonly SlideInUp: "animate__slideInUp";
96
+ readonly SlideOutDown: "animate__slideOutDown";
97
+ readonly SlideOutLeft: "animate__slideOutLeft";
98
+ readonly SlideOutRight: "animate__slideOutRight";
99
+ readonly SlideOutUp: "animate__slideOutUp";
100
+ };
101
+ export type AnimationCategory = typeof AnimationCategory[keyof typeof AnimationCategory];
102
+ export declare const AnimationRepeat: {
103
+ readonly Once: "animate__repeat-1";
104
+ readonly Twice: "animate__repeat-2";
105
+ readonly Thrice: "animate__repeat-3";
106
+ readonly Infinite: "animate__infinite";
107
+ };
108
+ export type AnimationRepeat = typeof AnimationRepeat[keyof typeof AnimationRepeat];
109
+ export declare const AnimationSpeed: {
110
+ readonly Slow: "animate__slow";
111
+ readonly Slower: "animate__slower";
112
+ readonly Fast: "animate__fast";
113
+ readonly Faster: "animate__faster";
114
+ };
115
+ export type AnimationSpeed = typeof AnimationSpeed[keyof typeof AnimationSpeed];
116
+ export declare const AnimationDelay: {
117
+ readonly Delay1Second: "animate__delay-1s";
118
+ readonly Delay2Second: "animate__delay-2s";
119
+ readonly Delay3Second: "animate__delay-3s";
120
+ readonly Delay4Second: "animate__delay-4s";
121
+ readonly Delay5Second: "animate__delay-5s";
122
+ };
123
+ export type AnimationDelay = typeof AnimationDelay[keyof typeof AnimationDelay];
120
124
  export interface IVAnimationProps extends IBaseProps {
121
125
  category: AnimationCategory;
122
126
  repeat?: AnimationRepeat;
@@ -0,0 +1,5 @@
1
+ import { IBaseProps } from '../../Engine/Base';
2
+ export interface IVAsideProps extends IBaseProps<'aside'> {
3
+ }
4
+ declare const VAside: (props: IVAsideProps) => React.JSX.Element;
5
+ export default VAside;
@@ -1,6 +1,5 @@
1
1
  import { IBaseProps } from '../../Engine/Base';
2
2
  import { ColorType } from '../../Engine';
3
- import './index.scss';
4
3
  export interface IVAvatarProps extends IBaseProps {
5
4
  avatar: string | React.JSX.Element;
6
5
  badge?: string | React.JSX.Element;
@@ -1,17 +1,17 @@
1
1
  import { Property } from 'csstype';
2
2
  import { IBaseProps } from '../../Engine/Base';
3
- type TLength = (string & {}) | 0;
4
- export declare enum BackgroundPositionType {
5
- Top = "top",
6
- Right = "right",
7
- Bottom = "bottom",
8
- Left = "left",
9
- Center = "center"
10
- }
3
+ export declare const BackgroundPositionType: {
4
+ readonly Top: "top";
5
+ readonly Right: "right";
6
+ readonly Bottom: "bottom";
7
+ readonly Left: "left";
8
+ readonly Center: "center";
9
+ };
10
+ export type BackgroundPositionType = typeof BackgroundPositionType[keyof typeof BackgroundPositionType];
11
11
  export interface IVBackgroundProps extends IBaseProps {
12
12
  image: string;
13
- imageWidth?: Property.Width<TLength>;
14
- imageHeight?: Property.Height<TLength>;
13
+ imageWidth?: Property.Width;
14
+ imageHeight?: Property.Height;
15
15
  position?: BackgroundPositionType;
16
16
  }
17
17
  declare const VBackground: (props: IVBackgroundProps) => React.JSX.Element;