@akad/design-system
Advanced tools
Comparing version 0.2.0-beta.6 to 0.2.0-beta.7
{ | ||
"name": "@akad/design-system", | ||
"version": "0.2.0-beta.6", | ||
"version": "0.2.0-beta.7", | ||
"main": "react/react.js", | ||
@@ -5,0 +5,0 @@ "types": "react/main.d.ts", |
@@ -5,2 +5,6 @@ export interface FluidProps { | ||
} | ||
export interface TestIdProps { | ||
type: StringConstructor; | ||
default: string; | ||
} | ||
export interface ContainerConfig { | ||
@@ -11,2 +15,3 @@ name: string; | ||
fluid: FluidProps; | ||
testId: TestIdProps; | ||
}; | ||
@@ -13,0 +18,0 @@ } |
@@ -9,5 +9,6 @@ import { default as React } from 'react'; | ||
style?: object; | ||
testId?: string; | ||
} | ||
declare const DsContainer: { | ||
({ children, fluid, className, style, }: DsContainerProps): import("react/jsx-runtime").JSX.Element; | ||
({ children, fluid, className, style, testId, }: DsContainerProps): import("react/jsx-runtime").JSX.Element; | ||
propTypes: { | ||
@@ -18,2 +19,3 @@ children: PropTypes.Requireable<PropTypes.ReactNodeLike>; | ||
style: PropTypes.Requireable<object>; | ||
testId: PropTypes.Requireable<string>; | ||
}; | ||
@@ -20,0 +22,0 @@ displayName: string; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
1317323
14513