@fiscozen/dropdown 1.0.6 → 1.0.8
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 +16 -0
- package/dist/dropdown.css +2 -0
- package/dist/dropdown.js +9107 -8333
- package/dist/dropdown.umd.cjs +5 -9
- package/dist/index.d.ts +1 -0
- package/dist/src/FzDropdown.vue.d.ts +246 -78
- package/dist/src/FzIconDropdown.vue.d.ts +421 -41
- package/dist/src/types.d.ts +0 -1
- package/package.json +13 -13
- package/src/FzIconDropdown.vue +2 -2
- package/src/__tests__/FzDropdown.spec.ts +37 -22
- package/src/__tests__/__snapshots__/FzDropdown.spec.ts.snap +12 -12
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/style.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @fiscozen/dropdown
|
|
2
2
|
|
|
3
|
+
## 1.0.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a243ebb: Fix mobile dropdown menu issues: tapping the icon dropdown trigger again now closes the menu (it previously only ever re-opened it), and the floating menu no longer jumps to the top-left corner when its opener becomes hidden (e.g. an accordion collapses while the menu is still open).
|
|
8
|
+
- Updated dependencies [a243ebb]
|
|
9
|
+
- @fiscozen/composables@1.0.4
|
|
10
|
+
|
|
11
|
+
## 1.0.7
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [a9c33b8]
|
|
16
|
+
- @fiscozen/button@3.0.1
|
|
17
|
+
- @fiscozen/action@3.0.1
|
|
18
|
+
|
|
3
19
|
## 1.0.6
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
.fz-icon-button-wrapper[data-v-84505903]>button{gap:0!important;min-width:0!important}.fz-icon-button-wrapper--backoffice[data-v-84505903]>button{padding-left:5px;padding-right:5px}.fz-icon-button-wrapper--frontoffice[data-v-84505903]>button{padding-left:11px;padding-right:11px}a[data-v-9fa082d4]{text-decoration:none!important}.fz__actionlist[data-v-ae0f16c9]{box-shadow:0 1px 2px #0000000f,0 1px 3px #0000001a}
|
|
2
|
+
/*$vite$:1*/
|