@rcarls/rc-fab-menu 0.4.0 → 0.4.2
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 +43 -0
- package/package.json +5 -5
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# @rcarls/rc-fab-menu
|
|
2
|
+
|
|
3
|
+
## 0.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @rcarls/rc-common@0.4.2
|
|
8
|
+
- @rcarls/rc-menu@0.4.2
|
|
9
|
+
- @rcarls/rc-menu-button@0.4.2
|
|
10
|
+
|
|
11
|
+
## 0.4.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- @rcarls/rc-common@0.4.1
|
|
16
|
+
- @rcarls/rc-menu@0.4.1
|
|
17
|
+
- @rcarls/rc-menu-button@0.4.1
|
|
18
|
+
|
|
19
|
+
## 0.4.0
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- 4624eb2: Add the rc-fab-menu package for floating action menu surfaces.
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- 55e8ab5: Preserve UA-like control and surface styling until an optional theme supplies decorative tokens.
|
|
28
|
+
Restore themed button hover and pressed state layers, including a pointer-origin Material ripple.
|
|
29
|
+
- 83d4734: Document `position`/`placement` attributes and the 17 CSS custom properties
|
|
30
|
+
that had no `@cssprop` tag, and correct 12 more whose documented default no
|
|
31
|
+
longer matched the "preserve UA-like component defaults" pass (most default
|
|
32
|
+
to `revert` now, and `--rc-fab-menu-popup-duration` defaults to `0ms`, not
|
|
33
|
+
`160ms`). Also fix the package README's theming and properties tables to
|
|
34
|
+
match, and the root README's dependency column, which was missing rc-common.
|
|
35
|
+
- Updated dependencies [e57277f]
|
|
36
|
+
- Updated dependencies [69e31c1]
|
|
37
|
+
- Updated dependencies [4cb5551]
|
|
38
|
+
- Updated dependencies [ccca8e2]
|
|
39
|
+
- Updated dependencies [037b1b3]
|
|
40
|
+
- Updated dependencies [3e89095]
|
|
41
|
+
- @rcarls/rc-common@0.4.0
|
|
42
|
+
- @rcarls/rc-menu-button@0.4.0
|
|
43
|
+
- @rcarls/rc-menu@0.4.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.2",
|
|
7
7
|
"description": "Floating action button menu wrapper for an rc-menu action surface.",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"test:browser:firefox": "vitest --run --project=firefox"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@rcarls/rc-common": "
|
|
49
|
-
"@rcarls/rc-menu": "
|
|
50
|
-
"@rcarls/rc-menu-button": "
|
|
48
|
+
"@rcarls/rc-common": "0.4.2",
|
|
49
|
+
"@rcarls/rc-menu": "0.4.2",
|
|
50
|
+
"@rcarls/rc-menu-button": "0.4.2"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@custom-elements-manifest/analyzer": "0.11.0",
|
|
@@ -64,4 +64,4 @@
|
|
|
64
64
|
"peerDependencies": {
|
|
65
65
|
"lit": "^3.0.0"
|
|
66
66
|
}
|
|
67
|
-
}
|
|
67
|
+
}
|