@royaloperahouse/harmonic 0.13.1-c → 0.13.1-d
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/harmonic.cjs.development.js +23 -10
- package/dist/harmonic.cjs.development.js.map +1 -1
- package/dist/harmonic.cjs.production.min.js +1 -1
- package/dist/harmonic.cjs.production.min.js.map +1 -1
- package/dist/harmonic.esm.js +23 -10
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/types.d.ts +4 -0
- package/package.json +1 -1
package/dist/types/types.d.ts
CHANGED
|
@@ -543,6 +543,10 @@ export interface IBodyContentProps {
|
|
|
543
543
|
columnSpanDevice?: number;
|
|
544
544
|
/** Custom CSS classes */
|
|
545
545
|
className?: string;
|
|
546
|
+
/** Set to true to wrap the content in a Grid component */
|
|
547
|
+
renderGrid?: boolean;
|
|
548
|
+
/** Set to true to render the GridItem component */
|
|
549
|
+
renderGridItem?: boolean;
|
|
546
550
|
}
|
|
547
551
|
export declare type SectionTitleSize = 'small' | 'large';
|
|
548
552
|
export interface ISectionTitleProps {
|