Skip to content

Commit 63faef9

Browse files
Version Packages (#268)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 007e4ad commit 63faef9

13 files changed

+44
-73
lines changed

.changeset/fifty-deers-reflect.md

-5
This file was deleted.

.changeset/five-peas-sort.md

-5
This file was deleted.

.changeset/giant-gifts-whisper.md

-5
This file was deleted.

.changeset/olive-eggs-obey.md

-5
This file was deleted.

.changeset/pink-timers-yawn.md

-18
This file was deleted.

.changeset/serious-actors-cry.md

-5
This file was deleted.

.changeset/sour-walls-serve.md

-5
This file was deleted.

.changeset/stupid-ties-drum.md

-5
This file was deleted.

.changeset/tame-countries-fix.md

-5
This file was deleted.

.changeset/ten-boats-whisper.md

-5
This file was deleted.

.changeset/unlucky-gifts-develop.md

-9
This file was deleted.

packages/components/CHANGELOG.md

+43
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,48 @@
11
# @crowdstrike/glide-core
22

3+
## 0.6.3
4+
5+
### Patch Changes
6+
7+
- [#243](https://github.com/CrowdStrike/glide-core/pull/243) [`c2ad82b`](https://github.com/CrowdStrike/glide-core/commit/c2ad82bd74fdb21faff7d4ae2e70b8c8250fe4f8) Thanks [@clintcs](https://github.com/clintcs)! - Remove the left margin on Button when a prefix icon is present to improve visual balancing.
8+
9+
- [#243](https://github.com/CrowdStrike/glide-core/pull/243) [`c2ad82b`](https://github.com/CrowdStrike/glide-core/commit/c2ad82bd74fdb21faff7d4ae2e70b8c8250fe4f8) Thanks [@clintcs](https://github.com/clintcs)! - Form control labels now truncate with an ellipsis when too long, and they show a tooltip when the truncated label is hovered.
10+
11+
- [#273](https://github.com/CrowdStrike/glide-core/pull/273) [`007e4ad`](https://github.com/CrowdStrike/glide-core/commit/007e4ad454874362e9d05412f20c84c3e3f2de5d) Thanks [@clintcs](https://github.com/clintcs)! - Menu no longer opens, showing an empty menu, when no options are provided.
12+
13+
- [#261](https://github.com/CrowdStrike/glide-core/pull/261) [`e6f5415`](https://github.com/CrowdStrike/glide-core/commit/e6f541501d51ac03006c0f0c018e891ff1db9a66) Thanks [@clintcs](https://github.com/clintcs)! - Menu no longer opens when its target is disabled programmatically.
14+
15+
- [#243](https://github.com/CrowdStrike/glide-core/pull/243) [`c2ad82b`](https://github.com/CrowdStrike/glide-core/commit/c2ad82bd74fdb21faff7d4ae2e70b8c8250fe4f8) Thanks [@clintcs](https://github.com/clintcs)! - Add a Form Controls Layout component.
16+
17+
Form Controls Layout accepts any number of Glide Core form controls in its default slot.
18+
It supports a single attribute, `split`, whose value can be `"left"` or `"middle"`:
19+
20+
- `"left"`, the default, puts the controls' labels into a one-third column and the controls themselves into a two-thirds column.
21+
- `"middle"` puts the controls' labels and controls into two equal-width columns.
22+
23+
```html
24+
<glide-core-form-controls-layout split="left">
25+
<glide-core-input label="Label" placeholder="Placeholder" />
26+
<glide-core-checkbox label="Label" />
27+
</glide-core-form-controls-layout>
28+
```
29+
30+
- [#243](https://github.com/CrowdStrike/glide-core/pull/243) [`c2ad82b`](https://github.com/CrowdStrike/glide-core/commit/c2ad82bd74fdb21faff7d4ae2e70b8c8250fe4f8) Thanks [@clintcs](https://github.com/clintcs)! - Add a `disabled` attribute to Tooltip.
31+
32+
- [#243](https://github.com/CrowdStrike/glide-core/pull/243) [`c2ad82b`](https://github.com/CrowdStrike/glide-core/commit/c2ad82bd74fdb21faff7d4ae2e70b8c8250fe4f8) Thanks [@clintcs](https://github.com/clintcs)! - Prevent Checkbox's checkbox from shrinking when its summary wraps.
33+
34+
- [#270](https://github.com/CrowdStrike/glide-core/pull/270) [`16e5625`](https://github.com/CrowdStrike/glide-core/commit/16e5625dd0c90fed4b9b77ee020da8b31219a009) Thanks [@ynotdraw](https://github.com/ynotdraw)! - Adjusted the padding of Dropdown to match Input and Textarea.
35+
36+
- [#269](https://github.com/CrowdStrike/glide-core/pull/269) [`281628c`](https://github.com/CrowdStrike/glide-core/commit/281628cf7dfd99fb63f9fa51f96cfaa5c0f35e59) Thanks [@ynotdraw](https://github.com/ynotdraw)! - Updated the color value of `--glide-core-icon-display-light` for improved dark mode support. Increased the rounding value of `--glide-core-border-radius-round` which adjusted the Tag's border radius.
37+
38+
- [#272](https://github.com/CrowdStrike/glide-core/pull/272) [`86a012a`](https://github.com/CrowdStrike/glide-core/commit/86a012a10f16533faca022a26eed6d1d83484f45) Thanks [@ynotdraw](https://github.com/ynotdraw)! - Added `position: relative` to the Split Container component so that the menu is properly positioned.
39+
40+
- [#271](https://github.com/CrowdStrike/glide-core/pull/271) [`8f1859d`](https://github.com/CrowdStrike/glide-core/commit/8f1859d52227747b92803a6de3ee97841eb35ce4) Thanks [@ynotdraw](https://github.com/ynotdraw)! - Updated the set-containing-block export so that it can be imported properly by consumers.
41+
42+
```js
43+
import { setContainingBlock } from '@crowdstrike/glide-core/library/set-containing-block.js';
44+
```
45+
346
## 0.6.2
447

548
### Patch Changes

packages/components/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@crowdstrike/glide-core",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"description": "CrowdStrike's Glide Design System components package for providing web components",
55
"author": "CrowdStrike UX Team",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)