comand-component-library 4.1.92 → 4.1.94
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/comand-component-library.js +4077 -3830
- package/dist/style.css +1 -1
- package/package.json +2 -3
- package/src/ComponentLibrary.vue +111 -33
- package/src/assets/data/listOfComponents.json +1 -0
- package/src/assets/data/smart-search.json +28 -0
- package/src/componentSettingsDataAndControls.vue +1 -1
- package/src/components/CmdFlexibleScrollContainer.vue +41 -0
- package/src/components/CmdFormElement.vue +18 -20
- package/src/components/CmdInnerLink.vue +14 -5
- package/src/components/CmdLink.vue +10 -4
- package/src/components/CmdListOfLinks.vue +4 -0
- package/src/components/CmdListOfLinksItem.vue +4 -0
- package/src/components/CmdSmartSearch.vue +135 -0
- package/src/index.js +3 -2
- package/src/utils/string.js +2 -10
package/src/index.js
CHANGED
@@ -12,6 +12,7 @@ export { default as CmdCookieDisclaimer } from '@/components/CmdCookieDisclaimer
|
|
12
12
|
export { default as CmdCopyrightInformation } from '@/components/CmdCopyrightInformation.vue'
|
13
13
|
export { default as CmdFakeSelect } from '@/components/CmdFakeSelect.vue'
|
14
14
|
export { openFancyBox, default as CmdFancyBox } from '@/components/CmdFancyBox.vue'
|
15
|
+
export { default as CmdFlexibleScrollContainer } from '@/components/CmdFlexibleScrollContainer.vue'
|
15
16
|
export { default as CmdForm } from '@/components/CmdForm.vue'
|
16
17
|
export { default as CmdFormElement } from '@/components/CmdFormElement.vue'
|
17
18
|
export { default as CmdFormFilters } from '@/components/CmdFormFilters.vue'
|
@@ -63,16 +64,16 @@ export { default as DirFocus } from '@/directives/focus'
|
|
63
64
|
export { default as DirTelephone } from '@/directives/telephone'
|
64
65
|
export { default as DirFancybox } from '@/directives/fancybox'
|
65
66
|
|
66
|
-
// export
|
67
|
+
// export utils
|
67
68
|
export { createUuid, createHtmlId } from '@/utils/common'
|
68
69
|
export { getFileExtension } from '@/utils/getFileExtension'
|
69
70
|
export { capitalizeFirstLetter, lowercaseFirstLetter, fullName } from '@/utils/string'
|
70
|
-
export { useScrollspy } from '@/composables/scrollspy'
|
71
71
|
export { setCookieDisclaimerCookie, getCookieDisclaimerCookie } from '@/utils/cookie'
|
72
72
|
export { currentDate, formatDate, formatTime } from "@/utils/date"
|
73
73
|
|
74
74
|
// export composables
|
75
75
|
export { useSequence } from '@/composables/sequence'
|
76
|
+
export { useScrollspy } from '@/composables/scrollspy'
|
76
77
|
|
77
78
|
// export mixins
|
78
79
|
export { default as I18n } from '@/mixins/I18n.js'
|
package/src/utils/string.js
CHANGED
@@ -12,16 +12,8 @@ function lowercaseFirstLetter(string) {
|
|
12
12
|
return ""
|
13
13
|
}
|
14
14
|
|
15
|
-
function fullName(
|
16
|
-
|
17
|
-
fullName += firstName + " "
|
18
|
-
|
19
|
-
if(middleName) {
|
20
|
-
fullName += middleName + " "
|
21
|
-
}
|
22
|
-
|
23
|
-
fullName += lastName
|
24
|
-
return fullName
|
15
|
+
function fullName(...names) {
|
16
|
+
return names.join(" ")
|
25
17
|
}
|
26
18
|
|
27
19
|
export {capitalizeFirstLetter, lowercaseFirstLetter, fullName}
|