@royaloperahouse/chord 0.3.3 → 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 +24 -1
- package/README.md +2 -3
- package/dist/chord.cjs.development.js +1101 -387
- 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 +1088 -387
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/atoms/Badge/Badge.style.d.ts +2 -0
- package/dist/components/atoms/Badge/CinemaBadge.d.ts +4 -0
- package/dist/components/atoms/Badge/StreamBadge.d.ts +4 -0
- package/dist/components/atoms/Badge/index.d.ts +3 -0
- package/dist/components/atoms/RotatorButtons/RotatorButtons.d.ts +3 -0
- package/dist/components/atoms/RotatorButtons/RotatorButtons.style.d.ts +3 -0
- package/dist/components/atoms/RotatorButtons/index.d.ts +2 -0
- package/dist/components/atoms/SecondaryLogo/SecodaryLogo.style.d.ts +2 -0
- package/dist/components/atoms/SecondaryLogo/SecondaryLogo.d.ts +4 -0
- package/dist/components/atoms/SecondaryLogo/index.d.ts +2 -0
- 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 +5 -2
- package/dist/components/index.d.ts +3 -3
- package/dist/components/molecules/Accordion/Accordion.style.d.ts +2 -2
- package/dist/components/molecules/PageHeading/Cinema/Cinema.d.ts +4 -0
- package/dist/components/molecules/PageHeading/Cinema/index.d.ts +2 -0
- package/dist/components/molecules/PageHeading/Core/Core.d.ts +4 -0
- package/dist/components/molecules/PageHeading/Core/index.d.ts +2 -0
- package/dist/components/molecules/PageHeading/Impact/Impact.d.ts +4 -0
- package/dist/components/molecules/PageHeading/Impact/Impact.style.d.ts +8 -0
- package/dist/components/molecules/PageHeading/Impact/index.d.ts +2 -0
- package/dist/components/molecules/PageHeading/PageHeading.d.ts +4 -0
- package/dist/components/molecules/PageHeading/PageHeading.style.d.ts +7 -0
- package/dist/components/molecules/PageHeading/Stream/Stream.d.ts +4 -0
- package/dist/components/molecules/PageHeading/Stream/index.d.ts +2 -0
- package/dist/components/molecules/PageHeading/index.d.ts +5 -0
- package/dist/components/molecules/SearchBar/SearchBar.d.ts +1 -1
- package/dist/components/molecules/index.d.ts +2 -1
- package/dist/components/organisms/Navigation/Navigation.style.d.ts +3 -1
- package/dist/index.d.ts +3 -2
- package/dist/styles/themes.d.ts +360 -0
- package/dist/types/buttonTypes.d.ts +18 -0
- package/dist/types/card.d.ts +4 -0
- package/dist/types/editorial.d.ts +72 -3
- package/dist/types/navigation.d.ts +0 -4
- package/dist/types/types.d.ts +15 -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,11 +1,34 @@
|
|
|
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
|
+
|
|
10
|
+
## [0.3.6]
|
|
11
|
+
- PageHeading Component
|
|
12
|
+
- SectionTitle multiline fix
|
|
13
|
+
|
|
14
|
+
## [0.3.5]
|
|
15
|
+
- Fix for Searchbox border on iOS
|
|
16
|
+
- Fix for Accordion - Mobile Styling Issue
|
|
17
|
+
- Fix for Card Component - Styling Issues
|
|
18
|
+
- Change in Search layout
|
|
19
|
+
|
|
20
|
+
## [0.3.4]
|
|
21
|
+
- Added Rotator Buttons
|
|
22
|
+
- General Gotham SSm A & B font setup fixes
|
|
23
|
+
- Fix for Footer font and size in mobile view
|
|
24
|
+
- Subtitles 2 typography changes
|
|
25
|
+
|
|
3
26
|
## [0.3.3]
|
|
4
27
|
- Added AnchorTapBar Component
|
|
5
28
|
- Added Accordion Component
|
|
6
29
|
- Added Card Component
|
|
7
30
|
- Fixes to fonts setup
|
|
8
|
-
- Fix for Navigation Search font and mobile view
|
|
31
|
+
- Fix for Navigation Search font and mobile view
|
|
9
32
|
|
|
10
33
|
## [0.3.0]
|
|
11
34
|
- Design system project renamed and moved to chord
|
package/README.md
CHANGED
|
@@ -55,12 +55,11 @@ const App = ({ children }: InnerProps): React.ReactElement => (
|
|
|
55
55
|
|
|
56
56
|
## Components
|
|
57
57
|
|
|
58
|
-
Editorial, Footer, GlobalStyles, Grid, GridItem,
|
|
59
|
-
|
|
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
|
|
60
59
|
|
|
61
60
|
## Types
|
|
62
61
|
|
|
63
|
-
ThemeType
|
|
62
|
+
FooterData, INavigationProps, INavTopProps, ThemeType
|
|
64
63
|
|
|
65
64
|
|
|
66
65
|
## Documentation
|