Skip to content

Commit 1bc7ef3

Browse files
committed
v1.0.0-beta.13
1 parent 841d98b commit 1bc7ef3

File tree

4 files changed

+25
-19
lines changed

4 files changed

+25
-19
lines changed

CHANGELOG.md

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,38 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [v1.0.0-beta.13] - Nov 11th 2019
9+
910
### Added
10-
- Added accordion component
11+
- Added accordion component (#10)
12+
- New `ScrollContent` method on modals, which allows manipulating scroll position of modal content
13+
- Border radius on popover (#218)
1114

1215
### Fixed
1316
- Fix clicks of radio group item in Edge (#139)
1417
- Fix clicks of calcite-switch in Edge (#138)
18+
- Fix `calcite-button` of type `submit` (#193)
19+
- Fix `calcite-dropdown` focus style (#181)
1520

16-
### Added
17-
- new `ScrollContent` method on modals, which allows manipulating scroll position of modal content
21+
### Updated
22+
- Improved modal styling (#191)
1823

1924
## [v1.0.0-beta.12] - Nov 1st 2019
2025

2126
### Updated
22-
- medium modals are now a more readable line length (#205)
27+
- Medium modals are now a more readable line length (#205)
2328
- Popover modifier enhancements (#207)
24-
- progress component style
25-
- button component style
26-
- dropdown component style
27-
- popover and tooltip shadow / caret style
29+
- Progress component style
30+
- Button component style
31+
- Dropdown component style
32+
- Popover and tooltip shadow / caret style
2833

2934
### Fixed
30-
- fix back and secondary slots in modal (#209)
31-
- make docked modal's content section visible on mobile (#203)
32-
- fix display of modals in edge (#135)
33-
- fix escape key press when no element is focused but modal is open (#130)
34-
- fix for button form submission (#193)
35+
- Fix back and secondary slots in modal (#209)
36+
- Make docked modal's content section visible on mobile (#203)
37+
- Fix display of modals in edge (#135)
38+
- Fix escape key press when no element is focused but modal is open (#130)
39+
- Fix for button form submission (#193)
3540

3641
## [v1.0.0-beta.11] - Oct 22nd 2019
3742

@@ -135,7 +140,8 @@ Fix issue with previous release.
135140
## [v1.0.0-beta.1] - Aug 2nd 2019
136141

137142
First initial beta release.
138-
[Unreleased]: https://github.com/Esri/calcite-components/compare/v1.0.0-beta.12...master "master"
143+
[Unreleased]: https://github.com/Esri/calcite-components/compare/v1.0.0-beta.13...master "master"
144+
[v1.0.0-beta.13]: https://github.com/Esri/calcite-components/compare/v1.0.0-beta.12...v1.0.0-beta.13 "v1.0.0-beta.13"
139145
[v1.0.0-beta.12]: https://github.com/Esri/calcite-components/compare/v1.0.0-beta.11...v1.0.0-beta.12 "v1.0.0-beta.12"
140146
[v1.0.0-beta.11]: https://github.com/Esri/calcite-components/compare/v1.0.0-beta.10...v1.0.0-beta.11 "v1.0.0-beta.11"
141147
[v1.0.0-beta.10]: https://github.com/Esri/calcite-components/compare/v1.0.0-beta.9...v1.0.0-beta.10 "v1.0.0-beta.10"

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@esri/calcite-components",
3-
"version": "1.0.0-beta.12",
3+
"version": "1.0.0-beta.13",
44
"description": "Web Components for Esri's Calcite Design System.",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ npm install --save @esri/calcite-components
1818
Calcite components can be loaded via two `<script>` tags in the head of your HTML document:
1919

2020
```html
21-
<script type="module" src="https://unpkg.com/@esri/[email protected].12/dist/calcite/calcite.esm.js"></script>
22-
<script nomodule="" src="https://unpkg.com/@esri/[email protected].12/dist/calcite/calcite.js"></script>
21+
<script type="module" src="https://unpkg.com/@esri/[email protected].13/dist/calcite/calcite.esm.js"></script>
22+
<script nomodule="" src="https://unpkg.com/@esri/[email protected].13/dist/calcite/calcite.js"></script>
2323
```
2424

2525
Browsers that support modules will load the first, while older browsers will load the second, bundled version.

0 commit comments

Comments
 (0)