jobdone-shared-files 1.1.17 → 1.1.18
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/index.js +12 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -6,6 +6,11 @@ import projectNavbar from "./ProjectManagement/projectNavbar.vue";
|
|
|
6
6
|
import { modalShow, modalHide } from "./common/ModalSetup";
|
|
7
7
|
import ModalFileRepositorySelector from "./ModalFileRepositorySelector.vue";
|
|
8
8
|
import autocompleteSelect from "./autocompleteSelect.vue";
|
|
9
|
+
import textareaAutoHeight from "./common/directives/textareaAutoHeight.js";
|
|
10
|
+
import selectPlaceholder from "./common/directives/selectPlaceholder.js";
|
|
11
|
+
import collapse from "./common/directives/collapse.js";
|
|
12
|
+
import popovers from "./common/directives/popovers.js";
|
|
13
|
+
import tooltip from "./common/directives/tooltip.js";
|
|
9
14
|
|
|
10
15
|
export default {
|
|
11
16
|
paginate,
|
|
@@ -21,4 +26,11 @@ export default {
|
|
|
21
26
|
// Common
|
|
22
27
|
modalShow,
|
|
23
28
|
modalHide,
|
|
29
|
+
|
|
30
|
+
// Directives
|
|
31
|
+
textareaAutoHeight,
|
|
32
|
+
selectPlaceholder,
|
|
33
|
+
collapse,
|
|
34
|
+
popovers,
|
|
35
|
+
tooltip,
|
|
24
36
|
}
|