@royaloperahouse/harmonic 0.9.3-a → 0.9.3-b
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/CHANGELOG.md +3 -0
- package/dist/harmonic.cjs.development.js +151 -310
- 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 +151 -310
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/types.d.ts +7 -15
- package/package.json +1 -1
package/dist/types/types.d.ts
CHANGED
|
@@ -478,26 +478,18 @@ export interface ITypeTagsProps {
|
|
|
478
478
|
list: string[];
|
|
479
479
|
}
|
|
480
480
|
export interface ITextOnlyProps {
|
|
481
|
-
/**
|
|
482
|
-
* Text placed in the TextOnly component
|
|
483
|
-
*/
|
|
481
|
+
/** Text placed in the TextOnly component */
|
|
484
482
|
text: string;
|
|
485
|
-
/**
|
|
486
|
-
* Set columnstart in Desktop
|
|
487
|
-
*/
|
|
483
|
+
/** Set columnStart in Desktop */
|
|
488
484
|
columnStartDesktop?: number;
|
|
489
|
-
/**
|
|
490
|
-
* Set columnSpan in Desktop
|
|
491
|
-
*/
|
|
485
|
+
/** Set columnSpan in Desktop */
|
|
492
486
|
columnSpanDesktop?: number;
|
|
493
|
-
/**
|
|
494
|
-
* Set columnstart in Device
|
|
495
|
-
*/
|
|
487
|
+
/** Set columnStart in Device */
|
|
496
488
|
columnStartDevice?: number;
|
|
497
|
-
/**
|
|
498
|
-
* Set columnSpam in Device
|
|
499
|
-
*/
|
|
489
|
+
/** Set columnSpan in Device */
|
|
500
490
|
columnSpanDevice?: number;
|
|
491
|
+
/** Custom CSS classes */
|
|
492
|
+
className?: string;
|
|
501
493
|
}
|
|
502
494
|
export declare type SectionTitleSize = 'small' | 'large';
|
|
503
495
|
export interface ISectionTitleProps {
|