Skip to content

Commit b3fd610

Browse files
committed
v1.0.0-beta.15
1 parent 9b94e85 commit b3fd610

File tree

6 files changed

+34
-32
lines changed

6 files changed

+34
-32
lines changed

CHANGELOG.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ 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.15] - Nov 26th 2019
99

1010
### Fixed
11-
- `calcite-date-picker` - Corrected date picker calendar opening up on null or no value property.
12-
- `calcite-date-picker` - Change of input value updates the calendar to show same date.
11+
- `calcite-date-picker` - Corrected date picker calendar opening up on null or no value property.
12+
- `calcite-date-picker` - Change of input value updates the calendar to show same date.
13+
14+
## [v1.0.0-beta.14] - Nov 18th 2019
1315

1416
### Breaking Changes
1517
- `calcite-button` - `iconposition` attribute updated to `icon-position`
@@ -21,7 +23,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2123
- `calcite-alert` - `.closeCalciteAlert()` method updated to `.close()`
2224
- `calcite-alert` no longer requires a wrapping `calcite-alerts` component
2325
- `calcite-alerts` has been removed
24-
26+
2527
### Added
2628
- `calcite-notice` - new component has been added
2729
- `calcite-alert` - `scale` is now available as a configurable attribute
@@ -32,11 +34,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3234
### Fixed
3335
- Fix for `calcite-dropdown` taking up height when closed (#213)
3436
- Fixed incorrect dark theme color, other styling updates
35-
36-
### Updated
3737

3838
## [v1.0.0-beta.13] - Nov 11th 2019
39-
4039
### Added
4140
- Added accordion component (#10)
4241
- New `ScrollContent` method on modals, which allows manipulating scroll position of modal content

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.13",
3+
"version": "1.0.0-beta.15",
44
"description": "Web Components for Esri's Calcite Design System.",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

readme.md

Lines changed: 3 additions & 3 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].13/dist/calcite/calcite.esm.js"></script>
22-
<script nomodule="" src="https://unpkg.com/@esri/[email protected].13/dist/calcite/calcite.js"></script>
21+
<script type="module" src="https://unpkg.com/@esri/[email protected].15/dist/calcite/calcite.esm.js"></script>
22+
<script nomodule="" src="https://unpkg.com/@esri/[email protected].15/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.
@@ -84,4 +84,4 @@ We welcome contributions to this project. See [CONTRIBUTING.md](./CONTRIBUTING.m
8484

8585
## License
8686

87-
Apache 2.0. For a full copy of the license, see the [LICENSE](./LICENSE) file.
87+
Apache 2.0. For a full copy of the license, see the [LICENSE](./LICENSE) file.

src/components/calcite-popover/readme.md

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,22 @@
2323

2424
## Properties
2525

26-
| Property | Attribute | Description | Type | Default |
27-
| ------------------------------- | ------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
28-
| `addClickHandle` | `add-click-handle` | Adds a click handler to the referenceElement to toggle open the Popover. | `boolean` | `false` |
29-
| `closeButton` | `close-button` | Display a close button within the Popover. | `boolean` | `false` |
30-
| `disableFlip` | `disable-flip` | Prevents flipping the popover's placement when it starts to overlap its reference element. | `boolean` | `false` |
31-
| `disablePointer` | `disable-pointer` | Removes the caret pointer. | `boolean` | `false` |
32-
| `flowInner` | `flow-inner` | Makes the popover flow toward the inner of the reference element. | `boolean` | `false` |
33-
| `open` | `open` | Display and position the component. | `boolean` | `false` |
34-
| `placement` | `placement` | Determines where the component will be positioned relative to the referenceElement. | `"auto-start" \| "auto" \| "auto-end" \| "top-start" \| "top" \| "top-end" \| "right-start" \| "right" \| "right-end" \| "bottom-end" \| "bottom" \| "bottom-start" \| "left-end" \| "left" \| "left-start" \| "leading-start" \| "leading" \| "leading-end" \| "trailing-end" \| "trailing" \| "trailing-start"` | `"auto"` |
35-
| `referenceElement` _(required)_ | `reference-element` | Reference HTMLElement used to position this component according to the placement property. | `HTMLElement \| string` | `undefined` |
36-
| `textClose` | `text-close` | Text for close button. | `string` | `"Close"` |
37-
| `theme` | `theme` | Select theme (light or dark) | `"dark" \| "light"` | `"light"` |
38-
| `xOffset` | `x-offset` | Offset the position of the popover in the horizontal direction. | `number` | `0` |
39-
| `yOffset` | `y-offset` | Offset the position of the popover in the vertical direction. | `number` | `0` |
26+
| Property | Attribute | Description | Type | Default |
27+
| ------------------------------- | -------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
28+
| `addClickHandle` | `add-click-handle` | Adds a click handler to the referenceElement to toggle open the Popover. | `boolean` | `false` |
29+
| `boundariesElement` | `boundaries-element` | HTMLElement Used to position this component within the a boundary. | `HTMLElement \| string` | `undefined` |
30+
| `closeButton` | `close-button` | Display a close button within the Popover. | `boolean` | `false` |
31+
| `disableFlip` | `disable-flip` | Prevents flipping the popover's placement when it starts to overlap its reference element. | `boolean` | `false` |
32+
| `disablePointer` | `disable-pointer` | Removes the caret pointer. | `boolean` | `false` |
33+
| `flipPlacements` | -- | Defines the available placements that can be used when a flip occurs. | `Position[]` | `undefined` |
34+
| `flowInner` | `flow-inner` | Makes the popover flow toward the inner of the reference element. | `boolean` | `false` |
35+
| `open` | `open` | Display and position the component. | `boolean` | `false` |
36+
| `placement` | `placement` | Determines where the component will be positioned relative to the referenceElement. | `"top" \| "right" \| "bottom" \| "left" \| "auto-start" \| "auto" \| "auto-end" \| "top-start" \| "top-end" \| "right-start" \| "right-end" \| "bottom-end" \| "bottom-start" \| "left-end" \| "left-start" \| "leading-start" \| "leading" \| "leading-end" \| "trailing-end" \| "trailing" \| "trailing-start"` | `"auto"` |
37+
| `referenceElement` _(required)_ | `reference-element` | Reference HTMLElement used to position this component according to the placement property. | `HTMLElement \| string` | `undefined` |
38+
| `textClose` | `text-close` | Text for close button. | `string` | `"Close"` |
39+
| `theme` | `theme` | Select theme (light or dark) | `"dark" \| "light"` | `"light"` |
40+
| `xOffset` | `x-offset` | Offset the position of the popover in the horizontal direction. | `number` | `0` |
41+
| `yOffset` | `y-offset` | Offset the position of the popover in the vertical direction. | `number` | `0` |
4042

4143

4244
## Methods

0 commit comments

Comments
 (0)