@royaloperahouse/chord 0.3.4 → 0.3.5
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 +10 -4
- package/README.md +2 -3
- package/dist/chord.cjs.development.js +148 -130
- 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 +148 -130
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/molecules/SearchBar/SearchBar.d.ts +1 -1
- package/dist/components/organisms/Navigation/Navigation.style.d.ts +3 -1
- package/dist/types/card.d.ts +4 -0
- package/dist/types/navigation.d.ts +0 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
-
## [0.3.
|
|
3
|
+
## [0.3.5]
|
|
4
|
+
- Fix for Searchbox border on iOS
|
|
5
|
+
- Fix for Accordion - Mobile Styling Issue
|
|
6
|
+
- Fix for Card Component - Styling Issues
|
|
7
|
+
- Change in Search layout
|
|
8
|
+
|
|
9
|
+
## [0.3.4]
|
|
4
10
|
- Added Rotator Buttons
|
|
5
11
|
- General Gotham SSm A & B font setup fixes
|
|
6
|
-
- Fix for Footer font and size in mobile view
|
|
7
|
-
- Subtitles 2 typography changes
|
|
12
|
+
- Fix for Footer font and size in mobile view
|
|
13
|
+
- Subtitles 2 typography changes
|
|
8
14
|
|
|
9
15
|
## [0.3.3]
|
|
10
16
|
- Added AnchorTapBar Component
|
|
11
17
|
- Added Accordion Component
|
|
12
18
|
- Added Card Component
|
|
13
19
|
- Fixes to fonts setup
|
|
14
|
-
- Fix for Navigation Search font and mobile view
|
|
20
|
+
- Fix for Navigation Search font and mobile view
|
|
15
21
|
|
|
16
22
|
## [0.3.0]
|
|
17
23
|
- 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, AnchorTapBar, Cards, Editorial, Footer, GlobalStyles, Grid, GridItem, Icon, Heading, Navigation, PeopleListing, PrimaryButton, PromoWithTitle, RotatorButtons, SecondaryButton, SectionSplitter, SectionTitle, Sponsorship, 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
|