@royaloperahouse/chord 0.3.6 → 0.3.7
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 +7 -0
- package/README.md +1 -1
- package/dist/chord.cjs.development.js +616 -330
- package/dist/chord.cjs.development.js.map +1 -1
- package/dist/chord.cjs.production.min.js +1 -1
- package/dist/chord.cjs.production.min.js.map +1 -1
- package/dist/chord.esm.js +611 -330
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/atoms/TypeTags/TypeTags.style.d.ts +0 -1
- package/dist/components/atoms/Typography/Typography.d.ts +7 -0
- package/dist/components/atoms/Typography/Typography.style.d.ts +3 -0
- package/dist/components/atoms/Typography/index.d.ts +2 -0
- package/dist/components/atoms/index.d.ts +2 -2
- package/dist/components/index.d.ts +2 -2
- package/dist/components/molecules/Accordion/Accordion.style.d.ts +2 -2
- package/dist/index.d.ts +3 -2
- package/dist/styles/themes.d.ts +168 -24
- package/dist/types/types.d.ts +3 -18
- package/dist/types/typography.d.ts +73 -0
- package/package.json +1 -1
- package/dist/components/atoms/Heading/Heading.d.ts +0 -3
- package/dist/components/atoms/Heading/Heading.style.d.ts +0 -3
- package/dist/components/atoms/Heading/index.d.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## [0.3.7]
|
|
4
|
+
- Typography change for Subtitle 2
|
|
5
|
+
- AltHeader, BodyText, Header, Overline and Subtitle Components
|
|
6
|
+
- REMOVED Heading Component - replaced by Header Component
|
|
7
|
+
- Accordion Component able to support other components as content
|
|
8
|
+
- made 'devices' public
|
|
9
|
+
|
|
3
10
|
## [0.3.6]
|
|
4
11
|
- PageHeading Component
|
|
5
12
|
- SectionTitle multiline fix
|
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ const App = ({ children }: InnerProps): React.ReactElement => (
|
|
|
55
55
|
|
|
56
56
|
## Components
|
|
57
57
|
|
|
58
|
-
Accordion, Accordions, AnchorTapBar, Cards, Editorial, Footer, GlobalStyles, Grid, GridItem, Icon,
|
|
58
|
+
Accordion, Accordions, AltHeader, AnchorTapBar, BodyText, Cards, Editorial, Footer, GlobalStyles, Grid, GridItem, Icon, Header, Overline,Navigation, PageHeading, PeopleListing, PrimaryButton, PromoWithTitle, RotatorButtons, SecondaryButton, SectionSplitter, SectionTitle, Sponsorship, Subtitle, TabLink, Tabs, TertiaryButton, TextOnly, ThemeProvider, TypeTags
|
|
59
59
|
|
|
60
60
|
## Types
|
|
61
61
|
|