Skip to content

Commit f1de1bf

Browse files
Merge pull request #31 from webdevnerdstuff/dev
Fix pip opacity
2 parents 66c91a5 + bdbd488 commit f1de1bf

8 files changed

+88
-88
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to the "vuetify-color-field" plugin will be documented in this file.
33

4+
## v1.1.7
5+
2024-02-27
6+
[main] (@webdevnerdstuff)
7+
* Fix pip opacity
8+
49
## v1.1.6
510
2024-02-26
611
[main] (@webdevnerdstuff)

Diff for: dist/scss/main.scss

+4
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,8 @@
3131
}
3232
}
3333
}
34+
35+
&--pip {
36+
opacity: 1;
37+
}
3438
}

Diff for: dist/vuetify-color-field.cjs.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/vuetify-color-field.es.js

+70-70
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wdns/vuetify-color-field",
3-
"version": "1.1.6",
3+
"version": "1.1.7",
44
"description": "Vuetify Color Field is a Vuetify VTextField Color Picker Component",
55
"private": false,
66
"publishConfig": {

Diff for: src/plugin/VColorField.vue

-14
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,6 @@
188188

189189
<!-- ================================================== Card Picker Container -->
190190
<Teleport to="body">
191-
<div class="position-elm-helper"></div>
192-
193191
<v-defaults-provider :defaults="defaults">
194192
<v-card
195193
ref="cardRef"
@@ -557,16 +555,4 @@ function updateMode(mode: Mode) {
557555

558556
<style lang="scss" scoped>
559557
@use './styles/main';
560-
561-
.position-elm-helper {
562-
background-color: #f00;
563-
border-radius: 50%;
564-
display: none;
565-
height: 10px;
566-
left: 0;
567-
position: absolute;
568-
top: 0;
569-
width: 10px;
570-
z-index: 99999999999;
571-
}
572558
</style>

Diff for: src/plugin/styles/main.scss

+4
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,8 @@
3131
}
3232
}
3333
}
34+
35+
&--pip {
36+
opacity: 1;
37+
}
3438
}

Diff for: vite.build.config.mts

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export default defineConfig({
4646
],
4747
output: {
4848
banner,
49+
exports: 'named',
4950
},
5051
},
5152
},

0 commit comments

Comments
 (0)