comand-component-library 4.1.32 → 4.1.34
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/comand-component-library.js +27843 -21502
- package/package.json +3 -2
- package/src/index.js +1 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "comand-component-library",
|
3
|
-
"version": "4.1.
|
3
|
+
"version": "4.1.34",
|
4
4
|
"license": "GPL-3.0-only",
|
5
5
|
"author": "CoManD-UI",
|
6
6
|
"private": false,
|
@@ -20,7 +20,8 @@
|
|
20
20
|
".": "./dist/comand-component-library.js",
|
21
21
|
"./css.js": "./src/css.js",
|
22
22
|
"./style.css": "./dist/style.css",
|
23
|
-
"./variables.scss": "./src/assets/styles/variables.scss"
|
23
|
+
"./variables.scss": "./src/assets/styles/variables.scss",
|
24
|
+
"./export-data.js": "./src/assets/data/export-data.js"
|
24
25
|
},
|
25
26
|
"dependencies": {
|
26
27
|
"clickout-event": "^1.1.2",
|
package/src/index.js
CHANGED
@@ -66,6 +66,7 @@ export { default as DirFancybox } from '@/directives/fancybox'
|
|
66
66
|
// export functions
|
67
67
|
export { createUuid, createHtmlId } from '@/utils/common'
|
68
68
|
export { getFileExtension } from '@/utils/getFileExtension'
|
69
|
+
export { capitalize } from '@/utils/string.js'
|
69
70
|
export { useScrollspy } from '@/composables/scrollspy.js'
|
70
71
|
export { setCookieDisclaimerCookie, getCookieDisclaimerCookie } from '@/utils/cookie'
|
71
72
|
|