Skip to content

Commit 8e99990

Browse files
committed
v1.0.0-beta.26
1 parent f31751b commit 8e99990

File tree

35 files changed

+300
-164
lines changed

35 files changed

+300
-164
lines changed

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.25",
3+
"version": "1.0.0-beta.26",
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].25/dist/calcite/calcite.esm.js"
24+
src="https://unpkg.com/@esri/[email protected].26/dist/calcite/calcite.esm.js"
2525
></script>
2626
<script
2727
nomodule=""
28-
src="https://unpkg.com/@esri/[email protected].25/dist/calcite/calcite.js"
28+
src="https://unpkg.com/@esri/[email protected].26/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].25/dist/calcite/calcite.css"
44+
href="https://unpkg.com/@esri/[email protected].26/dist/calcite/calcite.css"
4545
/>
4646
```
4747

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ individual `calcite-accordion` item
44

55
<!-- Auto Generated Below -->
66

7+
78
## Properties
89

910
| Property | Attribute | Description | Type | Default |
@@ -13,6 +14,7 @@ individual `calcite-accordion` item
1314
| `itemSubtitle` | `item-subtitle` | pass a title for the accordion item | `string` | `undefined` |
1415
| `itemTitle` | `item-title` | pass a title for the accordion item | `string` | `undefined` |
1516

17+
1618
## Events
1719

1820
| Event | Description | Type |
@@ -22,20 +24,20 @@ individual `calcite-accordion` item
2224
| `closeCalciteAccordionItem` | | `CustomEvent<any>` |
2325
| `registerCalciteAccordionItem` | | `CustomEvent<any>` |
2426

27+
2528
## Dependencies
2629

2730
### Depends on
2831

2932
- [calcite-icon](../calcite-icon)
3033

3134
### Graph
32-
3335
```mermaid
3436
graph TD;
3537
calcite-accordion-item --> calcite-icon
3638
style calcite-accordion-item fill:#f9f,stroke:#333,stroke-width:4px
3739
```
3840

39-
---
41+
----------------------------------------------
4042

41-
_Built with [StencilJS](https://stenciljs.com/)_
43+
*Built with [StencilJS](https://stenciljs.com/)*

src/components/calcite-accordion/readme.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ A basic implementation looks like this:
2020

2121
<!-- Auto Generated Below -->
2222

23+
2324
## Properties
2425

2526
| Property | Attribute | Description | Type | Default |
@@ -31,12 +32,14 @@ A basic implementation looks like this:
3132
| `selectionMode` | `selection-mode` | specify the selection mode - multi (allow any number of open items), single (allow one open item), or single-persist (allow and require one open item), defaults to multi | `"multi" \| "single" \| "single-persist"` | `"multi"` |
3233
| `theme` | `theme` | specify the theme of accordion, defaults to light | `"dark" \| "light"` | `undefined` |
3334

35+
3436
## Events
3537

3638
| Event | Description | Type |
3739
| -------------------------------- | ----------- | ------------------ |
3840
| `calciteAccordionItemHasChanged` | | `CustomEvent<any>` |
3941

40-
---
4142

42-
_Built with [StencilJS](https://stenciljs.com/)_
43+
----------------------------------------------
44+
45+
*Built with [StencilJS](https://stenciljs.com/)*

src/components/calcite-button/readme.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ You can programmatically focus a `calcite-button` with the `setFocus()` method:
66

77
<!-- Auto Generated Below -->
88

9+
910
## Properties
1011

1112
| Property | Attribute | Description | Type | Default |
@@ -23,27 +24,32 @@ You can programmatically focus a `calcite-button` with the `setFocus()` method:
2324
| `theme` | `theme` | Select theme (light or dark) | `"dark" \| "light"` | `undefined` |
2425
| `width` | `width` | specify the width of the button, defaults to auto | `"auto" \| "full" \| "half"` | `"auto"` |
2526

27+
2628
## Methods
2729

2830
### `setFocus() => Promise<void>`
2931

32+
33+
3034
#### Returns
3135

3236
Type: `Promise<void>`
3337

38+
39+
40+
3441
## Dependencies
3542

3643
### Used by
3744

38-
- [calcite-split-button](../calcite-split-button)
45+
- [calcite-split-button](../calcite-split-button)
3946

4047
### Depends on
4148

4249
- [calcite-loader](../calcite-loader)
4350
- [calcite-icon](../calcite-icon)
4451

4552
### Graph
46-
4753
```mermaid
4854
graph TD;
4955
calcite-button --> calcite-loader
@@ -52,6 +58,6 @@ graph TD;
5258
style calcite-button fill:#f9f,stroke:#333,stroke-width:4px
5359
```
5460

55-
---
61+
----------------------------------------------
5662

57-
_Built with [StencilJS](https://stenciljs.com/)_
63+
*Built with [StencilJS](https://stenciljs.com/)*

src/components/calcite-checkbox/readme.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ If you don't pass in an input, calcite-checkbox will act as the source of truth:
1818

1919
<!-- Auto Generated Below -->
2020

21+
2122
## Properties
2223

2324
| Property | Attribute | Description | Type | Default |
@@ -30,26 +31,27 @@ If you don't pass in an input, calcite-checkbox will act as the source of truth:
3031
| `theme` | `theme` | Determines what theme to use | `"dark" \| "light"` | `undefined` |
3132
| `value` | `value` | The value of the checkbox input | `string` | `""` |
3233

34+
3335
## Events
3436

3537
| Event | Description | Type |
3638
| ----------------------- | ------------------------------------------------ | ------------------ |
3739
| `calciteCheckboxChange` | Emitted when the checkbox checked status changes | `CustomEvent<any>` |
3840

41+
3942
## Dependencies
4043

4144
### Used by
4245

43-
- [calcite-card](../calcite-card)
46+
- [calcite-card](../calcite-card)
4447

4548
### Graph
46-
4749
```mermaid
4850
graph TD;
4951
calcite-card --> calcite-checkbox
5052
style calcite-checkbox fill:#f9f,stroke:#333,stroke-width:4px
5153
```
5254

53-
---
55+
----------------------------------------------
5456

55-
_Built with [StencilJS](https://stenciljs.com/)_
57+
*Built with [StencilJS](https://stenciljs.com/)*

src/components/calcite-chip/readme.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<!-- Auto Generated Below -->
44

5+
56
## Properties
67

78
| Property | Attribute | Description | Type | Default |
@@ -14,31 +15,32 @@
1415
| `theme` | `theme` | Select theme (light or dark) | `"dark" \| "light"` | `undefined` |
1516
| `value` _(required)_ | `value` | | `string` | `undefined` |
1617

18+
1719
## Events
1820

1921
| Event | Description | Type |
2022
| -------------------- | ------------------------------------------ | ------------------ |
2123
| `calciteChipDismiss` | Emitted when the dismiss button is clicked | `CustomEvent<any>` |
2224

25+
2326
## Dependencies
2427

2528
### Used by
2629

27-
- [calcite-combobox](../calcite-combobox)
30+
- [calcite-combobox](../calcite-combobox)
2831

2932
### Depends on
3033

3134
- [calcite-icon](../calcite-icon)
3235

3336
### Graph
34-
3537
```mermaid
3638
graph TD;
3739
calcite-chip --> calcite-icon
3840
calcite-combobox --> calcite-chip
3941
style calcite-chip fill:#f9f,stroke:#333,stroke-width:4px
4042
```
4143

42-
---
44+
----------------------------------------------
4345

44-
_Built with [StencilJS](https://stenciljs.com/)_
46+
*Built with [StencilJS](https://stenciljs.com/)*

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

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<!-- Auto Generated Below -->
44

5+
56
## Properties
67

78
| Property | Attribute | Description | Type | Default |
@@ -12,13 +13,15 @@
1213
| `textLabel` _(required)_ | `text-label` | | `string` | `undefined` |
1314
| `value` _(required)_ | `value` | | `string` | `undefined` |
1415

16+
1517
## Events
1618

1719
| Event | Description | Type |
1820
| ----------------------------- | ---------------------------------------------------- | ------------------ |
1921
| `calciteComboboxItemChange` | Emitted whenever the item is selected or unselected. | `CustomEvent<any>` |
2022
| `calciteComboboxItemKeyEvent` | | `CustomEvent<any>` |
2123

24+
2225
## Methods
2326

2427
### `toggleSelected(coerce?: boolean) => Promise<void>`
@@ -30,20 +33,22 @@ The first argument allows the value to be coerced, rather than swapping values.
3033

3134
Type: `Promise<void>`
3235

36+
37+
38+
3339
## Dependencies
3440

3541
### Depends on
3642

3743
- [calcite-icon](../calcite-icon)
3844

3945
### Graph
40-
4146
```mermaid
4247
graph TD;
4348
calcite-combobox-item --> calcite-icon
4449
style calcite-combobox-item fill:#f9f,stroke:#333,stroke-width:4px
4550
```
4651

47-
---
52+
----------------------------------------------
4853

49-
_Built with [StencilJS](https://stenciljs.com/)_
54+
*Built with [StencilJS](https://stenciljs.com/)*

src/components/calcite-combobox/readme.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<!-- Auto Generated Below -->
44

5+
56
## Properties
67

78
| Property | Attribute | Description | Type | Default |
@@ -13,28 +14,29 @@
1314
| `scale` | `scale` | specify the scale of the combobox, defaults to m | `"l" \| "m" \| "s"` | `"m"` |
1415
| `theme` | `theme` | Select theme (light or dark) | `"dark" \| "light"` | `undefined` |
1516

17+
1618
## Events
1719

1820
| Event | Description | Type |
1921
| ---------------------------- | ----------- | ------------------ |
2022
| `calciteComboboxChipDismiss` | | `CustomEvent<any>` |
2123
| `calciteLookupChange` | | `CustomEvent<any>` |
2224

25+
2326
## Dependencies
2427

2528
### Depends on
2629

2730
- [calcite-chip](../calcite-chip)
2831

2932
### Graph
30-
3133
```mermaid
3234
graph TD;
3335
calcite-combobox --> calcite-chip
3436
calcite-chip --> calcite-icon
3537
style calcite-combobox fill:#f9f,stroke:#333,stroke-width:4px
3638
```
3739

38-
---
40+
----------------------------------------------
3941

40-
_Built with [StencilJS](https://stenciljs.com/)_
42+
*Built with [StencilJS](https://stenciljs.com/)*

0 commit comments

Comments
 (0)