Skip to content

Commit

Permalink
Merge pull request #31 from webdevnerdstuff/dev
Browse files Browse the repository at this point in the history
Fix pip opacity
  • Loading branch information
webdevnerdstuff authored Feb 28, 2024
2 parents 66c91a5 + bdbd488 commit f1de1bf
Show file tree
Hide file tree
Showing 8 changed files with 88 additions and 88 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to the "vuetify-color-field" plugin will be documented in this file.

## v1.1.7
2024-02-27
[main] (@webdevnerdstuff)
* Fix pip opacity

## v1.1.6
2024-02-26
[main] (@webdevnerdstuff)
Expand Down
4 changes: 4 additions & 0 deletions dist/scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,8 @@
}
}
}

&--pip {
opacity: 1;
}
}
6 changes: 3 additions & 3 deletions dist/vuetify-color-field.cjs.js

Large diffs are not rendered by default.

140 changes: 70 additions & 70 deletions dist/vuetify-color-field.es.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wdns/vuetify-color-field",
"version": "1.1.6",
"version": "1.1.7",
"description": "Vuetify Color Field is a Vuetify VTextField Color Picker Component",
"private": false,
"publishConfig": {
Expand Down
14 changes: 0 additions & 14 deletions src/plugin/VColorField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,6 @@

<!-- ================================================== Card Picker Container -->
<Teleport to="body">
<div class="position-elm-helper"></div>

<v-defaults-provider :defaults="defaults">
<v-card
ref="cardRef"
Expand Down Expand Up @@ -557,16 +555,4 @@ function updateMode(mode: Mode) {
<style lang="scss" scoped>
@use './styles/main';
.position-elm-helper {
background-color: #f00;
border-radius: 50%;
display: none;
height: 10px;
left: 0;
position: absolute;
top: 0;
width: 10px;
z-index: 99999999999;
}
</style>
4 changes: 4 additions & 0 deletions src/plugin/styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,8 @@
}
}
}

&--pip {
opacity: 1;
}
}
1 change: 1 addition & 0 deletions vite.build.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export default defineConfig({
],
output: {
banner,
exports: 'named',
},
},
},
Expand Down

0 comments on commit f1de1bf

Please sign in to comment.