Files
directus/package.json
Nitwel 2dc48e8edf Custom Tooltip (#43)
* implemented basic tooltip

* add animation

* finish up tooltip, added instant option

* implemented basic tooltip

* add animation

* finish up tooltip, added instant option

* Uninstall v-tooltip

* Match folder structure of focus to tooltip

* Register new directives

* remove duplicate folder

* Export functions, cleanup animate

* Export update tooltip function

* Increase test covergae

* Added start and end options

* Structure positioning tests

* tooltip right end will now show on the right end

* Add tests for modifier states

* Update test coverage

* Fix stylelint issues

* made top as default position

* added inverted option

* fix lint

* Move tooltip style vars to theme

* Remove line clamp

* Update tests

Co-authored-by: Rijk van Zanten <rijkvanzanten@me.com>
2020-02-18 17:58:24 -05:00

107 lines
3.1 KiB
JSON

{
"name": "directus",
"version": "8.5.1",
"private": true,
"description": "Directus is an Open-Source Headless CMS & API for Managing Custom Databases",
"author": "Rijk van Zanten <rijk@rngr.org>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"lint:styles": "stylelint \"**/*.{vue,scss}\"",
"fix": "prettier --write \"src/**/*.{js,vue,ts}\"",
"fix:styles": "stylelint --fix \"**/*.{vue,scss}\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.149",
"@types/nanoid": "^2.1.0",
"@vue/composition-api": "^0.3.4",
"axios": "^0.19.2",
"date-fns": "^2.9.0",
"debug": "^4.1.1",
"lodash": "^4.17.15",
"nanoid": "^2.1.11",
"pinia": "0.0.5",
"vue": "^2.6.11",
"vue-i18n": "^8.15.3",
"vue-router": "^3.1.5",
"vuedraggable": "^2.23.2"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@storybook/addon-actions": "^5.3.12",
"@storybook/addon-centered": "^5.3.12",
"@storybook/addon-knobs": "^5.3.12",
"@storybook/addon-links": "^5.3.12",
"@storybook/addon-notes": "^5.3.12",
"@storybook/addon-viewport": "^5.3.12",
"@storybook/addons": "^5.3.12",
"@storybook/core": "^5.3.12",
"@storybook/vue": "^5.3.12",
"@types/jest": "^24.0.19",
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-router": "^4.1.0",
"@vue/cli-plugin-typescript": "^4.1.0",
"@vue/cli-plugin-unit-jest": "^4.1.0",
"@vue/cli-plugin-vuex": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-prettier": "^5.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.30",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"css-loader": "^3.4.2",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.0.0",
"html-loader": "^0.5.5",
"lint-staged": "^9.5.0",
"mockdate": "^2.0.5",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-is": "^16.12.0",
"regenerator-runtime": "^0.13.3",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"storybook-addon-themes": "^5.3.0",
"stylelint": "^13.1.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.14.2",
"typescript": "^3.7.4",
"vue-cli-plugin-storybook": "^1.1.0",
"vue-loader": "^15.8.3",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.2.0",
"webpack": "^4.41.5",
"webpack-merge": "^4.2.2"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"vue-cli-service lint",
"git add"
],
"*.{scss}": [
"stylelint --fix",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"stylelint --fix",
"git add"
]
}
}