Skip to content

Commit 49fbdd5

Browse files
committed
v1.0.0-beta.24
1 parent 9fa2641 commit 49fbdd5

File tree

6 files changed

+25
-18
lines changed

6 files changed

+25
-18
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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+
## [v1.0.0-beta.24] - Apr 8th 2020
9+
10+
### Fixed
11+
12+
- fix NPM deployment issue
13+
814
## [v1.0.0-beta.23] - Apr 7th 2020
915

1016
### Breaking Changes
@@ -338,6 +344,7 @@ Fix issue with previous release.
338344

339345
First initial beta release.
340346

347+
[v1.0.0-beta.24]: https://github.com/Esri/calcite-components/compare/v1.0.0-beta.23...v1.0.0-beta.24 "v1.0.0-beta.24"
341348
[v1.0.0-beta.23]: https://github.com/Esri/calcite-components/compare/v1.0.0-beta.22...v1.0.0-beta.23 "v1.0.0-beta.23"
342349
[v1.0.0-beta.22]: https://github.com/Esri/calcite-components/compare/v1.0.0-beta.21...v1.0.0-beta.22 "v1.0.0-beta.22"
343350
[v1.0.0-beta.21]: https://github.com/Esri/calcite-components/compare/v1.0.0-beta.20...v1.0.0-beta.21 "v1.0.0-beta.21"

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.23",
3+
"version": "1.0.0-beta.24",
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
@@ -21,11 +21,11 @@ Calcite components can be loaded via two `<script>` tags in the head of your HTM
2121
```html
2222
<script
2323
type="module"
24-
src="https://unpkg.com/@esri/[email protected].23/dist/calcite/calcite.esm.js"
24+
src="https://unpkg.com/@esri/[email protected].24/dist/calcite/calcite.esm.js"
2525
></script>
2626
<script
2727
nomodule=""
28-
src="https://unpkg.com/@esri/[email protected].23/dist/calcite/calcite.js"
28+
src="https://unpkg.com/@esri/[email protected].24/dist/calcite/calcite.js"
2929
></script>
3030
```
3131

@@ -41,7 +41,7 @@ You will also need to explicitly load the `calcite.css` file:
4141
<link
4242
rel="stylesheet"
4343
type="text/css"
44-
href="https://unpkg.com/@esri/[email protected].23/dist/calcite/calcite.css"
44+
href="https://unpkg.com/@esri/[email protected].24/dist/calcite/calcite.css"
4545
/>
4646
```
4747

src/components/calcite-combobox-item/readme.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
## Properties
66

7-
| Property | Attribute | Description | Type | Default |
8-
| ------------------------ | ------------- | ----------- | --------- | ----------- |
9-
| `disabled` | `disabled` | | `boolean` | `false` |
10-
| `parentItem` | `parent-item` | | `any` | `undefined` |
11-
| `selected` | `selected` | | `boolean` | `false` |
12-
| `textLabel` _(required)_ | `text-label` | | `string` | `undefined` |
13-
| `value` _(required)_ | `value` | | `string` | `undefined` |
7+
| Property | Attribute | Description | Type | Default |
8+
| ------------------------ | ------------ | ----------- | -------------------------------- | ----------- |
9+
| `disabled` | `disabled` | | `boolean` | `false` |
10+
| `parentItem` | -- | | `HTMLCalciteComboboxItemElement` | `undefined` |
11+
| `selected` | `selected` | | `boolean` | `false` |
12+
| `textLabel` _(required)_ | `text-label` | | `string` | `undefined` |
13+
| `value` _(required)_ | `value` | | `string` | `undefined` |
1414

1515
## Events
1616

src/components/calcite-radio-group/readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
## Properties
66

7-
| Property | Attribute | Description | Type | Default |
8-
| -------------- | --------------- | ----------------------------------------------- | ------------------- | ----------- |
9-
| `name` | `name` | The group's name. Gets submitted with the form. | `string` | `undefined` |
10-
| `scale` | `scale` | The scale of the button | `"l" \| "m" \| "s"` | `"m"` |
11-
| `selectedItem` | `selected-item` | The group's selected item. | `any` | `undefined` |
12-
| `theme` | `theme` | The component's theme. | `"dark" \| "light"` | `undefined` |
7+
| Property | Attribute | Description | Type | Default |
8+
| -------------- | --------- | ----------------------------------------------- | ---------------------------------- | ----------- |
9+
| `name` | `name` | The group's name. Gets submitted with the form. | `string` | `undefined` |
10+
| `scale` | `scale` | The scale of the button | `"l" \| "m" \| "s"` | `"m"` |
11+
| `selectedItem` | -- | The group's selected item. | `HTMLCalciteRadioGroupItemElement` | `undefined` |
12+
| `theme` | `theme` | The component's theme. | `"dark" \| "light"` | `undefined` |
1313

1414
## Events
1515

0 commit comments

Comments
 (0)