Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Akryum/floating-vue
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.0-beta.17
Choose a base ref
...
head repository: Akryum/floating-vue
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.0-beta.18
Choose a head ref
  • 5 commits
  • 9 files changed
  • 2 contributors

Commits on May 30, 2022

  1. chore: changelog

    Akryum committed May 30, 2022
    Copy the full SHA
    77dbe53 View commit details
  2. Copy the full SHA
    a27d1a3 View commit details

Commits on Jul 7, 2022

  1. Copy the full SHA
    949d68c View commit details

Commits on Aug 2, 2022

  1. fix: duplicate classes

    Akryum committed Aug 2, 2022
    Copy the full SHA
    9740a35 View commit details
  2. v2.0.0-beta.18

    Akryum committed Aug 2, 2022
    Copy the full SHA
    4c07dcd View commit details
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# [2.0.0-beta.17](https://github.com/Akryum/v-tooltip/compare/v2.0.0-beta.16...v2.0.0-beta.17) (2022-05-30)


### Bug Fixes

* remove browser outline on dropdown, fix [#848](https://github.com/Akryum/v-tooltip/issues/848) ([48508c4](https://github.com/Akryum/v-tooltip/commit/48508c47a84319efd5ebebdc596b32de51fdb528))
* scoped CSS not working ([0524082](https://github.com/Akryum/v-tooltip/commit/05240825e0f0191d8b30bea650bd7a0aeddd709e))



# [2.0.0-beta.16](https://github.com/Akryum/v-tooltip/compare/v2.0.0-beta.15...v2.0.0-beta.16) (2022-04-29)


2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"npmClient": "yarn",
"useWorkspaces": true,
"version": "2.0.0-beta.17",
"version": "2.0.0-beta.18",
"packages": [
"packages/*"
]
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "floating-vue-monorepo",
"version": "2.0.0-beta.16",
"version": "2.0.0-beta.17",
"private": true,
"workspaces": [
"packages/*"
4 changes: 2 additions & 2 deletions packages/demo-vue3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "demo2",
"version": "2.0.0-beta.17",
"version": "2.0.0-beta.18",
"private": true,
"scripts": {
"dev": "vite",
@@ -10,7 +10,7 @@
},
"dependencies": {
"core-js": "^3.6.5",
"floating-vue": "^2.0.0-beta.17",
"floating-vue": "^2.0.0-beta.18",
"vue": "^3.0.0",
"vue-router": "^4.0.0-0"
},
4 changes: 2 additions & 2 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "2.0.0-beta.17",
"version": "2.0.0-beta.18",
"description": "floating-vue docs",
"private": true,
"main": "index.js",
@@ -21,7 +21,7 @@
"license": "MIT",
"dependencies": {
"color": "^3.1.3",
"floating-vue": "^2.0.0-beta.17",
"floating-vue": "^2.0.0-beta.18",
"vue-feather-icons": "^5.1.0",
"vue-github-button": "^1.3.0"
},
6 changes: 3 additions & 3 deletions packages/docs/src/guide/css.md
Original file line number Diff line number Diff line change
@@ -99,10 +99,10 @@ HTML result:

By default, multiple elements are mounted in the popper content:

- `popper`: the root element of the popper. This will positionned by popperjs.
- `wrapper`: an intermediary element to allow transforming both the content and the arrow (usefull for zoom transitions).
- `popper`: the root element of the popper. This will be positioned by popperjs.
- `wrapper`: an intermediary element to allow transforming both the content and the arrow (useful for zoom transitions).
- `inner`: the main popper content. Ideal target for main styles such as background, border, text color...
- `arrow-container`: contains the arrow graphics. This will be positionned by popperjs.
- `arrow-container`: contains the arrow graphics. This will be positioned by popperjs.
- `arrow-outer`: the bigger arrow. Visible by default. If you want a border, should use the border color - otherwise, should use the background color.
- `arrow-inner`: the smaller arrow, useful to simulate a border. Hidden by default. The default `dropdown` theme makes it visible to display the default border. Should use the background color.

2 changes: 1 addition & 1 deletion packages/floating-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "floating-vue",
"version": "2.0.0-beta.17",
"version": "2.0.0-beta.18",
"description": "Easy Vue tooltips, dropdowns, menus & popovers using floating-ui",
"author": "Guillaume Chau <guillaume.b.chau@gmail.com>",
"scripts": {
1 change: 0 additions & 1 deletion packages/floating-vue/src/components/Popper.vue
Original file line number Diff line number Diff line change
@@ -10,7 +10,6 @@ export default {
<div
ref="reference"
class="v-popper"
v-bind="$attrs"
:class="{
'v-popper--shown': slotData.isShown,
}"
6 changes: 0 additions & 6 deletions packages/floating-vue/src/index.ts
Original file line number Diff line number Diff line change
@@ -50,14 +50,8 @@ export function install (app, options: FloatingVueConfig = {}) {
app.directive('tooltip', PrivateVTooltip)
app.directive('close-popper', PrivateVClosePopper)
// Components
// eslint-disable-next-line vue/component-definition-name-casing
app.component('v-tooltip', PrivateTooltip)
app.component('VTooltip', PrivateTooltip)
// eslint-disable-next-line vue/component-definition-name-casing
app.component('v-dropdown', PrivateDropdown)
app.component('VDropdown', PrivateDropdown)
// eslint-disable-next-line vue/component-definition-name-casing
app.component('v-menu', PrivateMenu)
app.component('VMenu', PrivateMenu)
}