@bynder/compact-view 3.2.4 → 3.3.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/components.d.ts +2 -2
- package/components.js +4 -4
- package/index.d.ts +5 -1
- package/index.js +2 -2
- package/package.json +1 -1
package/components.d.ts
CHANGED
|
@@ -166,7 +166,7 @@ interface Props$7 {
|
|
|
166
166
|
declare function Oops({ error, onRetry }: Props$7): JSX.Element;
|
|
167
167
|
interface ShadowRootProps {
|
|
168
168
|
children: React.ReactNode;
|
|
169
|
-
|
|
169
|
+
isContainerMode?: boolean;
|
|
170
170
|
}
|
|
171
171
|
/**
|
|
172
172
|
* This component will create a shadow root if it is the first ShadowRoot in the tree.
|
|
@@ -174,7 +174,7 @@ interface ShadowRootProps {
|
|
|
174
174
|
* which component will be first in the tree, especially when the components are used
|
|
175
175
|
* externally from the npm package.
|
|
176
176
|
*/
|
|
177
|
-
declare function ShadowRoot({ children,
|
|
177
|
+
declare function ShadowRoot({ children, isContainerMode }: ShadowRootProps): JSX.Element;
|
|
178
178
|
interface Props$8 {
|
|
179
179
|
width?: number;
|
|
180
180
|
className?: string;
|