@vue-interface/select-field 0.9.17 → 0.11.1

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.
Files changed (48) hide show
  1. package/dist/select-field.es.js +780 -0
  2. package/dist/select-field.umd.js +15 -0
  3. package/dist/style.css +1 -0
  4. package/index.js +5 -2
  5. package/package.json +28 -34
  6. package/src/SelectField.vue +97 -53
  7. package/.eslintrc.js +0 -53
  8. package/babel.config.js +0 -11
  9. package/dist/SelectField.common.js +0 -5079
  10. package/dist/SelectField.common.js.map +0 -1
  11. package/dist/SelectField.css +0 -1
  12. package/dist/SelectField.umd.js +0 -5089
  13. package/dist/SelectField.umd.js.map +0 -1
  14. package/dist/SelectField.umd.min.js +0 -2
  15. package/dist/SelectField.umd.min.js.map +0 -1
  16. package/dist/demo.html +0 -19
  17. package/docs/.vuepress/config.js +0 -44
  18. package/docs/.vuepress/dist/404.html +0 -19
  19. package/docs/.vuepress/dist/assets/css/0.styles.275ee968.css +0 -1
  20. package/docs/.vuepress/dist/assets/img/search.83621669.svg +0 -1
  21. package/docs/.vuepress/dist/assets/js/10.5d93d289.js +0 -1
  22. package/docs/.vuepress/dist/assets/js/11.97ab3884.js +0 -1
  23. package/docs/.vuepress/dist/assets/js/2.f3d148c3.js +0 -1
  24. package/docs/.vuepress/dist/assets/js/3.81681fff.js +0 -1
  25. package/docs/.vuepress/dist/assets/js/4.82fa7382.js +0 -1
  26. package/docs/.vuepress/dist/assets/js/5.3dae6ad4.js +0 -1
  27. package/docs/.vuepress/dist/assets/js/6.6a04f815.js +0 -1
  28. package/docs/.vuepress/dist/assets/js/7.c033cb49.js +0 -1
  29. package/docs/.vuepress/dist/assets/js/8.6d6eb599.js +0 -1
  30. package/docs/.vuepress/dist/assets/js/9.eaefe866.js +0 -1
  31. package/docs/.vuepress/dist/assets/js/app.7ed065d3.js +0 -13
  32. package/docs/.vuepress/dist/examples/index.html +0 -21
  33. package/docs/.vuepress/dist/examples/test.html +0 -17
  34. package/docs/.vuepress/dist/index.html +0 -53
  35. package/docs/.vuepress/dist/options.html +0 -41
  36. package/docs/.vuepress/dist/tailwindcss.html +0 -85
  37. package/docs/README.md +0 -17
  38. package/docs/examples/README.md +0 -3
  39. package/docs/options.md +0 -46
  40. package/docs/tailwindcss.md +0 -76
  41. package/index.html +0 -188
  42. package/main.vue +0 -8
  43. package/postcss.config.js +0 -1
  44. package/public/favicon.ico +0 -0
  45. package/public/index.html +0 -17
  46. package/src/css/SelectField.css +0 -1
  47. package/tailwind.config.js +0 -22
  48. package/vue.config.js +0 -11
package/public/index.html DELETED
@@ -1,17 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8">
5
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
7
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
8
- <title><%= htmlWebpackPlugin.options.title %></title>
9
- </head>
10
- <body>
11
- <noscript>
12
- <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
13
- </noscript>
14
- <div id="app"></div>
15
- <!-- built files will be auto injected -->
16
- </body>
17
- </html>
@@ -1 +0,0 @@
1
- @tailwind components;
@@ -1,22 +0,0 @@
1
- const plugin = require('tailwindcss/plugin');
2
-
3
- module.exports = {
4
- purge: {
5
- content: [
6
- './src/**/*.vue',
7
- './node_modules/@vue-interface/**/src/**/*.vue'
8
- ],
9
- options: {
10
- whitelistPatterns: [/^bg-/]
11
- }
12
- },
13
- corePlugins: {
14
- container: false,
15
- },
16
- plugins: [
17
- require('@vue-interface/form-control/tailwindcss'),
18
- require('@vue-interface/form-control/tailwindcss/form-control'),
19
- require('@vue-interface/form-control/tailwindcss/form-select'),
20
- require('@vue-interface/form-control/tailwindcss/custom-fields'),
21
- ]
22
- };
package/vue.config.js DELETED
@@ -1,11 +0,0 @@
1
- module.exports = {
2
- css: {
3
- loaderOptions: {
4
- postcss: {
5
- plugins: [
6
- require('tailwindcss')
7
- ]
8
- }
9
- }
10
- }
11
- };