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/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 functions
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'
@@ -12,16 +12,8 @@ function lowercaseFirstLetter(string) {
12
12
  return ""
13
13
  }
14
14
 
15
- function fullName(firstName, middleName = null, lastName) {
16
- let fullName = ""
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}