@rcarls/rc-toolbar 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +55 -0
- package/package.json +3 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# @rcarls/rc-toolbar
|
|
2
|
+
|
|
3
|
+
## 0.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @rcarls/rc-common@0.4.1
|
|
8
|
+
|
|
9
|
+
## 0.4.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 74d9046: Add native button-based chip controls and let toolbars coordinate groups of
|
|
14
|
+
interactive chips with roving focus.
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- b7270df: Compose the Markdown editor toolbar from `rc-toolbar`, `rc-button`, and
|
|
19
|
+
`rc-select`, and include native buttons inside direct `rc-button` wrappers in
|
|
20
|
+
toolbar roving-focus navigation.
|
|
21
|
+
- 4df89fd: Document the `label` and `orientation` attributes in the class JSDoc so the
|
|
22
|
+
generated ApiTable's attributes section is no longer empty.
|
|
23
|
+
- Updated dependencies [e57277f]
|
|
24
|
+
- Updated dependencies [ccca8e2]
|
|
25
|
+
- Updated dependencies [037b1b3]
|
|
26
|
+
- @rcarls/rc-common@0.4.0
|
|
27
|
+
|
|
28
|
+
## 0.3.2
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- Updated dependencies [88b4086]
|
|
33
|
+
- @rcarls/rc-common@0.3.2
|
|
34
|
+
|
|
35
|
+
## 0.3.1
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- @rcarls/rc-common@0.3.1
|
|
40
|
+
|
|
41
|
+
## 0.3.0
|
|
42
|
+
|
|
43
|
+
### Changed
|
|
44
|
+
|
|
45
|
+
- Update package metadata, README intro, and docs links.
|
|
46
|
+
|
|
47
|
+
### Dependencies
|
|
48
|
+
|
|
49
|
+
- Sync internal dependencies to 0.3.0.
|
|
50
|
+
|
|
51
|
+
## 0.2.0
|
|
52
|
+
|
|
53
|
+
### Patch Changes
|
|
54
|
+
|
|
55
|
+
- @rcarls/rc-common@0.2.0
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.4.
|
|
6
|
+
"version": "0.4.1",
|
|
7
7
|
"description": "Toolbar that groups consumer-supplied controls into one tab stop with arrow-key navigation.",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"test:browser:firefox": "vitest --run --project=firefox"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@rcarls/rc-common": "
|
|
48
|
+
"@rcarls/rc-common": "0.4.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@custom-elements-manifest/analyzer": "0.11.0",
|
|
@@ -62,4 +62,4 @@
|
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"lit": "^3.0.0"
|
|
64
64
|
}
|
|
65
|
-
}
|
|
65
|
+
}
|