@royaloperahouse/harmonic 0.18.3 → 0.18.4
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/components/atoms/Icons/SvgIcons/Access/Captioned.svg.d.ts +4 -0
- package/dist/components/atoms/Icons/SvgIcons/Access/FamilyFriendly.svg.d.ts +4 -0
- package/dist/components/atoms/Icons/SvgIcons/Access/TouchTour.svg.d.ts +4 -0
- package/dist/components/atoms/Icons/SvgIcons/index.d.ts +3 -0
- package/dist/components/molecules/SkipToMain/SkipToMain.style.d.ts +1 -1
- package/dist/components/organisms/Carousels/HighlightsCarousel/helper.d.ts +1 -1
- package/dist/harmonic.cjs.development.js +89 -12
- 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 +89 -12
- 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
|
@@ -518,6 +518,10 @@ export interface ITextLinkProps extends AnchorHTMLAttributes<HTMLAnchorElement>
|
|
|
518
518
|
* Color of text and icon
|
|
519
519
|
*/
|
|
520
520
|
textColor?: ThemeColor;
|
|
521
|
+
/**
|
|
522
|
+
* Disable default truncation
|
|
523
|
+
*/
|
|
524
|
+
disableTruncation?: boolean;
|
|
521
525
|
}
|
|
522
526
|
export interface ISectionSplitterProps {
|
|
523
527
|
/** Set the width of the Section to full */
|