comand-component-library 4.1.31 → 4.1.33
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 +31802 -19129
- package/package.json +3 -2
- package/src/assets/data/export-data.js +50 -0
- package/src/router/index.js +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "comand-component-library",
|
3
|
-
"version": "4.1.
|
3
|
+
"version": "4.1.33",
|
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",
|
@@ -0,0 +1,50 @@
|
|
1
|
+
// export components
|
2
|
+
export { default as addressData } from "./address-data.json"
|
3
|
+
export { default as bankAccountData } from "./bank-account-data.json"
|
4
|
+
export { default as boxProduct } from "./box-product.json"
|
5
|
+
export { default as boxUser } from "./box-user.json"
|
6
|
+
export { default as boxUserFakeData } from "./box-user-fake-data.json"
|
7
|
+
export { default as breadcrumbs } from "./breadcrumbs.json"
|
8
|
+
export { default as cookieDisclaimer } from "./cookie-disclaimer.json"
|
9
|
+
export { default as datalistOptions } from "./datalist-options.json"
|
10
|
+
export { default as companyLogo } from "./company-logo.json"
|
11
|
+
export { default as fakeSelectColors } from "./fake-select-colors.json"
|
12
|
+
export { default as componentStructure } from "./component-structure.json"
|
13
|
+
export { default as fakeSelectCountries } from "./fake-select-countries.json"
|
14
|
+
export { default as fakeSelectFilterOptions } from "./fake-select-filter-options.json"
|
15
|
+
export { default as fakeSelectOptionsWithIcons } from "./fake-select-options-with-icons.json"
|
16
|
+
export { default as fakeSelectOptions } from "./fake-select-options.json"
|
17
|
+
export { default as formElements } from "./form-elements.json"
|
18
|
+
export { default as icon } from "./icon.json"
|
19
|
+
export { default as imageGallery } from "./image-gallery.json"
|
20
|
+
export { default as imageZoom } from "./image-zoom.json"
|
21
|
+
export { default as image } from "./image.json"
|
22
|
+
export { default as inputGroupCheckboxes } from "./input-group-checkboxes.json"
|
23
|
+
export { default as inputGroupRadiobuttons } from "./input-group-radiobuttons.json"
|
24
|
+
export { default as inputGroupReplacedRadiobuttons } from "./input-group-replaced-radiobuttons.json"
|
25
|
+
export { default as inputGroupToggleSwitchRadiobuttons } from "./input-group-toggle-switch-radiobuttons.json"
|
26
|
+
export { default as listOfLinksSectionAnchors } from "./list-of-links-section-anchors.json"
|
27
|
+
export { default as listOfLinks } from "./list-of-links.json"
|
28
|
+
export { default as listOfComponents } from "./listOfComponents.json"
|
29
|
+
export { default as mainNavigation } from "./main-navigation.json"
|
30
|
+
export { default as multipleswitchCheckbox } from "./multipleswitch-checkbox.json"
|
31
|
+
export { default as multipleswitchRadio } from "./multipleswitch-radio.json"
|
32
|
+
export { default as multistepFormProgressBar } from "./multistep-form-progress-bar.json"
|
33
|
+
export { default as openingHours } from "./opening-hours.json"
|
34
|
+
export { default as selectOptions } from "./select-options.json"
|
35
|
+
export { default as slideshow } from "./slideshow.json"
|
36
|
+
export { default as socialNetworksPageByJson } from "./social-networks-page-by-json.json"
|
37
|
+
export { default as socialNetworksPageByProperty } from "./social-networks-page-by-property.json"
|
38
|
+
export { default as switchLanguage } from "./switch-language.json"
|
39
|
+
export { default as tableLarge } from "./table-large.json"
|
40
|
+
export { default as tableSmall } from "./table-small.json"
|
41
|
+
export { default as tabs } from "./tabs.json"
|
42
|
+
export { default as textImageBlock } from "./text-image-block.json"
|
43
|
+
export { default as thumbnailScrollerImages } from "./thumbnail-scroller-images.json"
|
44
|
+
export { default as thumbnailScrollerText } from "./thumbnail-scroller-text.json"
|
45
|
+
|
46
|
+
// export pages
|
47
|
+
export { default as boxesFaqs } from "./pages/boxes-faqs.json"
|
48
|
+
export { default as boxesTeamOverview } from "./pages/boxes-team-overview.json"
|
49
|
+
export { default as listOfDownloads } from "./pages/list-of-downloads.json"
|
50
|
+
export { default as listOfSiteLinks } from "./pages/list-of-site-links.json"
|