Skip to content

Commit 6d4939c

Browse files
committed
1.0.0-beta.38
1 parent 534ad25 commit 6d4939c

File tree

13 files changed

+56
-48
lines changed

13 files changed

+56
-48
lines changed

CHANGELOG.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
11
# Changelog
22

3-
All notable changes to this project will be documented in this file.
3+
This document maintains a list of released versions and changes introduced by them.
4+
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
45

5-
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6-
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6+
## [1.0.0-beta.38](https://github.com/Esri/calcite-components/compare/v1.0.0-beta.37...v1.0.0-beta.38) (2020-09-04)
7+
8+
### Features
9+
10+
- **calcite-label:** adds disable-spacing property also updates label-text spacing ([2cca2c6](https://github.com/Esri/calcite-components/commit/2cca2c6f2cf215240841df9b1c135cbf1de33e3c)), closes [#916](https://github.com/Esri/calcite-components/issues/916) [#916](https://github.com/Esri/calcite-components/issues/916)
11+
- **label:** Adds disabled prop to label, radio-group ([#923](https://github.com/Esri/calcite-components/issues/923)) ([cc34b51](https://github.com/Esri/calcite-components/commit/cc34b51914d100b68d529b81bf39faee4c1b7b93))
12+
- **label:** Updates alignment and spacing ([#914](https://github.com/Esri/calcite-components/issues/914)) ([943e5c2](https://github.com/Esri/calcite-components/commit/943e5c2318fd9ba2661e55ef712c7e2788aa9a09))
13+
- **split-button:** add secondary click event ([#889](https://github.com/Esri/calcite-components/issues/889)) ([bb3b141](https://github.com/Esri/calcite-components/commit/bb3b141336c855a418b6cdcc53e807c87714946d))
14+
- **tabs:** add tab-title disabled state ([#879](https://github.com/Esri/calcite-components/issues/879)) ([adef10f](https://github.com/Esri/calcite-components/commit/adef10f5c0f341f3b6198ffafa587ed1f649ecf1))
15+
16+
### Bug Fixes
17+
18+
- **dropdown:** fix tab through ([#880](https://github.com/Esri/calcite-components/issues/880)) ([acbef6f](https://github.com/Esri/calcite-components/commit/acbef6f47726d5cc8dd28f385b84126deb90304d))
19+
- **input:** emit calcite input input on up and down click on number input [#886](https://github.com/Esri/calcite-components/issues/886) ([#888](https://github.com/Esri/calcite-components/issues/888)) ([01a140b](https://github.com/Esri/calcite-components/commit/01a140bbe89e4208e2be6f889891633c12ccc826))
20+
- **input:** No longer set clearable by default on type date or time ([#895](https://github.com/Esri/calcite-components/issues/895)) ([d5d9d6a](https://github.com/Esri/calcite-components/commit/d5d9d6a0fb620c69e329ca4454bd30311e5bf007))
21+
- **tree:** change tabindex to 0 to prevent forced first tab stop on page ([#911](https://github.com/Esri/calcite-components/issues/911)) ([ef4a7ad](https://github.com/Esri/calcite-components/commit/ef4a7adfc7572411717d77f6240497f095730362)), closes [#634](https://github.com/Esri/calcite-components/issues/634)
722

823
## 1.0.0-beta.37
924

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

src/components/calcite-alert/readme.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,12 @@ A single instance of an alert. Multiple alerts will aggregate in a queue.
55
```html
66
<calcite-alert>
77
<div slot="alert-title">Title of alert</div>
8-
<div slot="alert-message">
9-
Message text of the alert
10-
</div>
8+
<div slot="alert-message">Message text of the alert</div>
119
<a slot="alert-link" href="#">Retry</a>
1210
</calcite-alert>
1311
<calcite-alert>
1412
<div slot="alert-title">Title of alert</div>
15-
<div slot="alert-message">
16-
Message text of the alert
17-
</div>
13+
<div slot="alert-message">Message text of the alert</div>
1814
<a slot="alert-link" href="#">Retry</a>
1915
</calcite-alert>
2016
```

src/components/calcite-checkbox/readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ If you don't pass in an input, calcite-checkbox will act as the source of truth:
2323
| `checked` | `checked` | The checked state of the checkbox. | `boolean` | `false` |
2424
| `disabled` | `disabled` | True if the checkbox is disabled | `boolean` | `false` |
2525
| `focused` | `focused` | The focused state of the checkbox. | `boolean` | `false` |
26+
| `guid` | `guid` | The id attribute of the checkbox. When omitted, a globally unique identifier is used. | `string` | `undefined` |
2627
| `hovered` | `hovered` | The hovered state of the checkbox. | `boolean` | `false` |
2728
| `indeterminate` | `indeterminate` | True if the checkbox is initially indeterminate, which is independent from its checked state https://css-tricks.com/indeterminate-checkboxes/ | `boolean` | `false` |
2829
| `name` | `name` | The name of the checkbox input | `string` | `""` |

src/components/calcite-label/readme.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@ It allows consumers to set a `status` attribute that child `calcite-input` and `
2222

2323
## Properties
2424

25-
| Property | Attribute | Description | Type | Default |
26-
| -------- | --------- | -------------------------------------------------------------------- | ------------------------------------------------- | ----------- |
27-
| `layout` | `layout` | is the wrapped element positioned inline with the label slotted text | `"default" \| "inline" \| "inline-space-between"` | `"default"` |
28-
| `scale` | `scale` | specify the scale of the input, defaults to m | `"l" \| "m" \| "s"` | `"m"` |
29-
| `status` | `status` | specify the status of the label and any child input / input messages | `"idle" \| "invalid" \| "valid"` | `"idle"` |
30-
| `theme` | `theme` | specify theme of the label and its any child input / input messages | `"dark" \| "light"` | `undefined` |
25+
| Property | Attribute | Description | Type | Default |
26+
| ---------------- | ----------------- | -------------------------------------------------------------------- | ------------------------------------------------- | ----------- |
27+
| `disableSpacing` | `disable-spacing` | Turn off spacing around the label | `boolean` | `undefined` |
28+
| `disabled` | `disabled` | is the label disabled | `boolean` | `undefined` |
29+
| `for` | `for` | The id of the input associated with the label | `string` | `undefined` |
30+
| `layout` | `layout` | is the wrapped element positioned inline with the label slotted text | `"default" \| "inline" \| "inline-space-between"` | `"default"` |
31+
| `scale` | `scale` | specify the scale of the input, defaults to m | `"l" \| "m" \| "s"` | `"m"` |
32+
| `status` | `status` | specify the status of the label and any child input / input messages | `"idle" \| "invalid" \| "valid"` | `"idle"` |
33+
| `theme` | `theme` | specify theme of the label and its any child input / input messages | `"dark" \| "light"` | `undefined` |
3134

3235
## Events
3336

src/components/calcite-modal/readme.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,12 @@ calcite modal allows you to show a modal/dialog to your users. The modal handles
55
```html
66
<calcite-modal aria-labelledby="modal-title">
77
<h3 slot="header" id="modal-title">Title of the modal</h3>
8-
<div slot="content">
9-
The actual content of the modal
10-
</div>
8+
<div slot="content">The actual content of the modal</div>
119
<calcite-button slot="back" color="light" appearance="outline" icon="chevron-left" width="full">
1210
Back
1311
</calcite-button>
14-
<calcite-button slot="secondary" width="full" appearance="outline">
15-
Cancel
16-
</calcite-button>
17-
<calcite-button slot="primary" width="full">
18-
Save
19-
</calcite-button>
12+
<calcite-button slot="secondary" width="full" appearance="outline"> Cancel </calcite-button>
13+
<calcite-button slot="primary" width="full"> Save </calcite-button>
2014
</calcite-modal>
2115
```
2216

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

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

55
## Properties
66

7-
| Property | Attribute | Description | Type | Default |
8-
| -------------------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | -------------------------------------------------- |
9-
| `checked` | `checked` | The checked state of the radio button. | `boolean` | `false` |
10-
| `disabled` | `disabled` | The disabled state of the radio button. | `boolean` | `false` |
11-
| `focused` | `focused` | The focused state of the radio button. | `boolean` | `false` |
12-
| `guid` | `guid` | The id attribute of the radio button. When omitted, a globally unique identifier is used. | `string` | `this.el.id \|\|`calcite-radio-button-\${guid()}`` |
13-
| `hidden` | `hidden` | The radio button's hidden status. When a radio button is hidden it is not focusable or checkable. | `boolean` | `false` |
14-
| `hovered` | `hovered` | The hovered state of the radio button. | `boolean` | `false` |
15-
| `name` _(required)_ | `name` | The name of the radio button. <code>name</code> is passed as a property automatically from <code>calcite-radio-button-group</code>. | `string` | `undefined` |
16-
| `required` | `required` | Requires that a value is selected for the radio button group before the parent form will submit. | `boolean` | `false` |
17-
| `scale` | `scale` | The scale (size) of the radio button. <code>scale</code> is passed as a property automatically from <code>calcite-radio-button-group</code>. | `"l" \| "m" \| "s"` | `"m"` |
18-
| `theme` | `theme` | The color theme of the radio button, <code>theme</code> is passed as a property automatically from <code>calcite-radio-button-group</code>. | `"dark" \| "light"` | `"light"` |
19-
| `value` _(required)_ | `value` | The value of the radio button. | `string` | `undefined` |
7+
| Property | Attribute | Description | Type | Default |
8+
| -------------------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ----------- |
9+
| `checked` | `checked` | The checked state of the radio button. | `boolean` | `false` |
10+
| `disabled` | `disabled` | The disabled state of the radio button. | `boolean` | `false` |
11+
| `focused` | `focused` | The focused state of the radio button. | `boolean` | `false` |
12+
| `guid` | `guid` | The id attribute of the radio button. When omitted, a globally unique identifier is used. | `string` | `undefined` |
13+
| `hidden` | `hidden` | The radio button's hidden status. When a radio button is hidden it is not focusable or checkable. | `boolean` | `false` |
14+
| `hovered` | `hovered` | The hovered state of the radio button. | `boolean` | `false` |
15+
| `name` _(required)_ | `name` | The name of the radio button. <code>name</code> is passed as a property automatically from <code>calcite-radio-button-group</code>. | `string` | `undefined` |
16+
| `required` | `required` | Requires that a value is selected for the radio button group before the parent form will submit. | `boolean` | `false` |
17+
| `scale` | `scale` | The scale (size) of the radio button. <code>scale</code> is passed as a property automatically from <code>calcite-radio-button-group</code>. | `"l" \| "m" \| "s"` | `"m"` |
18+
| `theme` | `theme` | The color theme of the radio button, <code>theme</code> is passed as a property automatically from <code>calcite-radio-button-group</code>. | `"dark" \| "light"` | `"light"` |
19+
| `value` _(required)_ | `value` | The value of the radio button. | `string` | `undefined` |
2020

2121
## Events
2222

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
| Property | Attribute | Description | Type | Default |
88
| -------------- | ------------ | ------------------------------------------------------------------- | ---------------------------------- | -------------- |
99
| `appearance` | `appearance` | specify the appearance style of the radio group, defaults to solid. | `"outline" \| "solid"` | `"solid"` |
10+
| `disabled` | `disabled` | is the radio group disabled | `boolean` | `undefined` |
1011
| `layout` | `layout` | specify the layout of the radio group, defaults to horizontal | `"horizontal" \| "vertical"` | `"horizontal"` |
1112
| `name` | `name` | The group's name. Gets submitted with the form. | `string` | `undefined` |
1213
| `scale` | `scale` | The scale of the radio group | `"l" \| "m" \| "s"` | `undefined` |

src/components/calcite-split-button/readme.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@ Basic Usage:
3434

3535
## Events
3636

37-
| Event | Description | Type |
38-
| -------------------------------- | ---------------------------------------- | ------------------ |
39-
| `calciteSplitButtonPrimaryClick` | fired when the primary button is clicked | `CustomEvent<any>` |
37+
| Event | Description | Type |
38+
| ---------------------------------- | ------------------------------------------ | ------------------ |
39+
| `calciteSplitButtonPrimaryClick` | fired when the primary button is clicked | `CustomEvent<any>` |
40+
| `calciteSplitButtonSecondaryClick` | fired when the secondary button is clicked | `CustomEvent<any>` |
4041

4142
## Dependencies
4243

0 commit comments

Comments
 (0)