@royaloperahouse/harmonic 0.7.0-a → 0.7.1
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/README.GIT +278 -0
- package/README.md +43 -252
- package/dist/components/atoms/Dropdown/Dropdown.d.ts +1 -1
- package/dist/components/atoms/Icons/SvgIcons/index.d.ts +0 -2
- package/dist/components/atoms/Tab/Tab.d.ts +1 -1
- package/dist/components/molecules/Pagination/Pagination.d.ts +1 -2
- package/dist/components/molecules/Pagination/Pagination.style.d.ts +4 -3
- package/dist/components/organisms/Carousels/HighlightsCarousel/helper.d.ts +1 -1
- package/dist/harmonic.cjs.development.css +0 -319
- package/dist/harmonic.cjs.development.js +69 -113
- 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 +77 -124
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/styles/HarmonicThemeProvider/HarmonicThemeProvider.d.ts +0 -1
- package/dist/types/types.d.ts +1 -9
- package/package.json +1 -1
- package/dist/components/atoms/Icons/SvgIcons/Arrows/ArrowPagination.svg.d.ts +0 -4
- package/dist/components/atoms/Icons/SvgIcons/Arrows/LastPageArrow.svg.d.ts +0 -4
package/dist/types/types.d.ts
CHANGED
|
@@ -154,10 +154,6 @@ export interface ITabProps {
|
|
|
154
154
|
* Additional CSS class names to apply to the navigation component.
|
|
155
155
|
*/
|
|
156
156
|
className?: string;
|
|
157
|
-
/**
|
|
158
|
-
* The unique ID to assign to the link element.
|
|
159
|
-
*/
|
|
160
|
-
tabLinkId?: string;
|
|
161
157
|
/**
|
|
162
158
|
* Defines the ARIA role of the element for accessibility purposes.
|
|
163
159
|
*/
|
|
@@ -225,11 +221,7 @@ export interface IDropdownProps {
|
|
|
225
221
|
*/
|
|
226
222
|
ariaLabel?: string;
|
|
227
223
|
/**
|
|
228
|
-
*
|
|
229
|
-
*/
|
|
230
|
-
tabLinkId?: string;
|
|
231
|
-
/**
|
|
232
|
-
* Defines if it is needed to trim the text of the Tab and add 3 dots in the end
|
|
224
|
+
* Defines if it is needed to trim the text of the Tab and add 3 dots in the end
|
|
233
225
|
*/
|
|
234
226
|
trimTabText?: boolean;
|
|
235
227
|
}
|
package/package.json
CHANGED