@jitera/jitera-web-ui-library 1.10.0 → 1.11.0
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.
- package/dist/index.d.ts +8 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
import React, {
|
2
|
+
import React, {
|
3
|
+
ReactNode,
|
4
|
+
CSSProperties,
|
5
|
+
ForwardRefExoticComponent,
|
6
|
+
RefAttributes,
|
7
|
+
ReactElement
|
8
|
+
} from 'react'
|
3
9
|
import {
|
4
10
|
ButtonProps as ButtonProps$1,
|
5
11
|
ColProps as ColProps$1,
|
@@ -41,6 +47,7 @@ interface BoxProps
|
|
41
47
|
extends PreviewProps,
|
42
48
|
ComponentProps<{
|
43
49
|
children?: ReactNode | undefined
|
50
|
+
style?: CSSProperties
|
44
51
|
}> {}
|
45
52
|
declare const Box: React.ForwardRefExoticComponent<BoxProps & React.RefAttributes<HTMLDivElement>>
|
46
53
|
|