@royaloperahouse/chord 1.17.0 → 1.18.1-b-chord-development
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 +42 -2
- package/dist/chord.cjs.development.js +600 -228
- 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 +600 -229
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/atoms/Basket/Basket.d.ts +1 -1
- package/dist/components/atoms/Basket/helpers.d.ts +3 -0
- package/dist/components/atoms/VideoControls/VideoControls.d.ts +8 -0
- package/dist/components/atoms/VideoControls/VideoControls.style.d.ts +10 -0
- package/dist/components/atoms/VideoControls/index.d.ts +2 -0
- package/dist/components/atoms/index.d.ts +2 -1
- package/dist/components/index.d.ts +3 -3
- package/dist/components/molecules/PageHeading/Compact/Compact.d.ts +4 -0
- package/dist/components/molecules/PageHeading/Compact/Compact.style.d.ts +24 -0
- package/dist/components/molecules/PageHeading/Compact/components/CompactHeaderBranding.d.ts +8 -0
- package/dist/components/molecules/PageHeading/Compact/index.d.ts +2 -0
- package/dist/components/molecules/PageHeading/index.d.ts +2 -1
- package/dist/components/molecules/index.d.ts +2 -2
- package/dist/helpers/devices.d.ts +1 -0
- package/dist/helpers/htmlStrings.d.ts +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/types/impactHeader.d.ts +59 -0
- package/dist/types/index.d.ts +2 -1
- package/dist/types/navigation.d.ts +9 -1
- package/package.json +1 -1
- package/README.GIT +0 -277
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.18.1]
|
|
2
|
+
- Fix iOS exception on VideoControls
|
|
3
|
+
|
|
4
|
+
## [1.18.0]
|
|
5
|
+
- Add Compact PageHeading component
|
|
6
|
+
|
|
1
7
|
## [1.17.0]
|
|
2
8
|
- Add Page Heading Panel variant
|
|
3
9
|
|
|
@@ -13,7 +19,7 @@
|
|
|
13
19
|
- Change to pagination component to align page numbers with URL numbers.
|
|
14
20
|
|
|
15
21
|
## [1.15.0]
|
|
16
|
-
-
|
|
22
|
+
- Add Compact PageHeading component
|
|
17
23
|
|
|
18
24
|
## [1.14.0]
|
|
19
25
|
- Added standfirst functionality to Accordion/ Accordions component and theme for Schools Platform
|
|
@@ -33,21 +39,55 @@
|
|
|
33
39
|
## [1.12.0]
|
|
34
40
|
- Search: Extend ContentSummary and SearchBar components to support new search results
|
|
35
41
|
|
|
42
|
+
## [1.11.0-a]
|
|
43
|
+
- Pagination: add new component
|
|
44
|
+
|
|
36
45
|
## [1.11.0]
|
|
37
46
|
- Carousels: Rewrite logic that cuts description, to support older browsers
|
|
38
47
|
|
|
48
|
+
## [1.10.0-a]
|
|
49
|
+
- ContentSummary: make image clickable
|
|
50
|
+
|
|
39
51
|
## [1.10.0]
|
|
40
52
|
- PageHeadingImpact: Replace CSS background-image with HTML image element
|
|
41
53
|
|
|
42
54
|
## [1.9.0]
|
|
43
55
|
- Card: Add a new prop for the hover line color
|
|
56
|
+
## [1.9.0-c]
|
|
57
|
+
- ContentSummary: make image clickable
|
|
58
|
+
|
|
59
|
+
## [1.9.0-b]
|
|
60
|
+
- ContentSummary: change image size
|
|
61
|
+
- SearchBar: Export component
|
|
62
|
+
|
|
63
|
+
## [1.9.0-a]
|
|
64
|
+
- ContentSummary: change image props
|
|
65
|
+
|
|
66
|
+
## [1.9.0]
|
|
67
|
+
- Card: Add a new prop for the hover line color
|
|
68
|
+
|
|
69
|
+
## [1.8.1-h]
|
|
70
|
+
- ContentSummary: add exports
|
|
71
|
+
|
|
72
|
+
## [1.8.1-g]
|
|
73
|
+
- ContentSummary: refactor
|
|
74
|
+
|
|
75
|
+
## [1.8.1-f]
|
|
76
|
+
- ContentSummary: update conditional rendering
|
|
77
|
+
|
|
78
|
+
## [1.8.1-c]
|
|
79
|
+
- ContentSummary: update for Search results
|
|
80
|
+
- ContentSummarySection: remove
|
|
81
|
+
|
|
82
|
+
## [1.8.1-b]
|
|
83
|
+
- Card: add new prop for the line color on hover
|
|
44
84
|
|
|
45
85
|
## [1.8.0]
|
|
46
86
|
- SearchBar: Disable
|
|
47
87
|
|
|
48
88
|
## [1.7.2]
|
|
49
89
|
- Add imageAltText to Card component
|
|
50
|
-
|
|
90
|
+
|
|
51
91
|
## [1.7.0]
|
|
52
92
|
- Add new ContentSummary component
|
|
53
93
|
- Add new ContentSummarySection component
|