comand-component-library 4.0.1 → 4.0.3

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 (50) hide show
  1. package/README.md +32 -32
  2. package/dist/comand-component-library.js +3227 -1413
  3. package/dist/comand-component-library.umd.cjs +3 -4
  4. package/dist/index.html +16 -16
  5. package/dist/style.css +1 -1
  6. package/dist/styles/demopage-only.css +4 -0
  7. package/dist/styles/templates/casual.css +3 -0
  8. package/package.json +4 -4
  9. package/src/App.vue +2117 -0
  10. package/src/ComponentLibrary.vue +150 -586
  11. package/src/assets/data/fake-select-options.json +3 -2
  12. package/src/assets/data/form-elements.json +1 -1
  13. package/src/assets/styles/global-styles.scss +14 -10
  14. package/src/componentSettingsDataAndControls.vue +705 -0
  15. package/src/components/CmdAddressData.vue +1 -2
  16. package/src/components/CmdBox.vue +60 -42
  17. package/src/components/CmdCopyrightInformation.vue +5 -3
  18. package/src/components/CmdFakeSelect.vue +138 -67
  19. package/src/components/CmdFancyBox.vue +2 -2
  20. package/src/components/CmdFormElement.vue +53 -27
  21. package/src/components/CmdGoogleMaps.vue +5 -0
  22. package/src/components/CmdHeadline.vue +13 -5
  23. package/src/components/CmdIcon.vue +6 -2
  24. package/src/components/CmdImage.vue +6 -1
  25. package/src/components/CmdImageGallery.vue +15 -4
  26. package/src/components/CmdInputGroup.vue +76 -24
  27. package/src/components/CmdListOfLinks.vue +20 -7
  28. package/src/components/CmdListOfRequirements.vue +10 -18
  29. package/src/components/CmdLoginForm.vue +14 -2
  30. package/src/components/CmdMainNavigation.vue +5 -1
  31. package/src/components/CmdMultistepFormProgressBar.vue +12 -7
  32. package/src/components/CmdOpeningHoursItem.vue +1 -3
  33. package/src/components/CmdPagination.vue +5 -1
  34. package/src/components/CmdSiteFooter.vue +11 -1
  35. package/src/components/CmdSiteHeader.vue +2 -0
  36. package/src/components/CmdSlideButton.vue +7 -1
  37. package/src/components/CmdSlideshow.vue +33 -5
  38. package/src/components/CmdSocialNetworks.vue +18 -13
  39. package/src/components/CmdSocialNetworksItem.vue +5 -1
  40. package/src/components/CmdSystemMessage.vue +7 -1
  41. package/src/components/CmdTabs.vue +5 -5
  42. package/src/components/CmdTextImageBlock.vue +11 -2
  43. package/src/components/CmdThumbnailScroller.vue +22 -4
  44. package/src/components/CmdTooltip.vue +49 -14
  45. package/src/components/CmdTooltipForFormElements.vue +96 -0
  46. package/src/components/CmdUploadForm.vue +25 -20
  47. package/src/components/CmdWidthLimitationWrapper.vue +1 -1
  48. package/src/components/ComponentSettings.vue +1 -1
  49. package/src/main.js +1 -1
  50. package/src/assets/data/accordion.json +0 -45
package/README.md CHANGED
@@ -1,32 +1,32 @@
1
- # comand-component-library (fka: comand-ui-kit)
2
-
3
- ## Project description
4
- ```
5
- Library with UI vue-components for oyur web site projects.
6
- The library is based on comand-frontend-framework which is a required dependency.
7
- The components use the same html/css-structure and variables.
8
- ```
9
-
10
-
11
- ## Project setup
12
- ```
13
- npm install
14
- ```
15
-
16
- ### Compiles and hot-reloads for development
17
- ```
18
- npm run serve
19
- ```
20
-
21
- ### Compiles and minifies for production
22
- ```
23
- npm run build
24
- ```
25
-
26
- ### Lints and fixes files
27
- ```
28
- npm run lint
29
- ```
30
-
31
- ### Customize configuration
32
- See [Configuration Reference](https://cli.vuejs.org/config/).
1
+ # comand-component-library (fka: comand-ui-kit)
2
+
3
+ ## Project description
4
+ ```
5
+ Library with UI vue3-components for your web-based projects.
6
+ The library is based on comand-frontend-framework which is a required dependency.
7
+ The components use the same html/css-structure and variables.
8
+ ```
9
+
10
+
11
+ ## Project setup
12
+ ```
13
+ npm install
14
+ ```
15
+
16
+ ### Compiles and hot-reloads for development
17
+ ```
18
+ npm run serve
19
+ ```
20
+
21
+ ### Compiles and minifies for production
22
+ ```
23
+ npm run build
24
+ ```
25
+
26
+ ### Lints and fixes files
27
+ ```
28
+ npm run lint
29
+ ```
30
+
31
+ ### Customize configuration
32
+ See [Configuration Reference](https://cli.vuejs.org/config/).