@citizenplane/pimp 18.9.35 → 18.9.36
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/dist/pimp.es.js +3984 -3926
- package/dist/pimp.umd.js +40 -40
- package/package.json +1 -1
- package/src/components/index.ts +2 -2
package/package.json
CHANGED
package/src/components/index.ts
CHANGED
|
@@ -5,7 +5,7 @@ import '@douxcode/vue-spring-bottom-sheet/dist/style.css'
|
|
|
5
5
|
|
|
6
6
|
import '@/assets/main.css'
|
|
7
7
|
|
|
8
|
-
import
|
|
8
|
+
import FloatingVue from 'floating-vue'
|
|
9
9
|
import { vMaska } from 'maska/vue'
|
|
10
10
|
import PrimeVue from 'primevue/config'
|
|
11
11
|
import ToastService from 'primevue/toastservice'
|
|
@@ -139,6 +139,7 @@ const Pimp: Plugin = {
|
|
|
139
139
|
app.use(PrimeVue, { unstyled: true })
|
|
140
140
|
app.use(VueTelInput)
|
|
141
141
|
app.use(ToastService)
|
|
142
|
+
app.use(FloatingVue)
|
|
142
143
|
|
|
143
144
|
Object.keys(Components).forEach((name) => {
|
|
144
145
|
app.component(name, Components[name as keyof typeof Components])
|
|
@@ -148,7 +149,6 @@ const Pimp: Plugin = {
|
|
|
148
149
|
app.directive('click-outside', ClickOutside)
|
|
149
150
|
app.directive('bind-once', BindOnceDirective)
|
|
150
151
|
app.directive('maska', vMaska)
|
|
151
|
-
app.directive('tooltip', vTooltip)
|
|
152
152
|
},
|
|
153
153
|
}
|
|
154
154
|
|