@eturnity/eturnity_reusable_components 6.42.1-EPDM-8599.0 → 6.42.1-EPDM-3013.7
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/package.json +6 -3
- package/postcss.config.js +6 -0
- package/src/App.vue +1 -13
- package/src/assets/svgIcons/update.svg +3 -0
- package/src/components/filter/filterSettings.vue +645 -0
- package/src/components/filter/index.vue +132 -0
- package/src/components/filter/parentDropdown.vue +91 -0
- package/src/components/iconWrapper/index.vue +125 -118
- package/src/components/inputs/searchInput/index.vue +20 -10
- package/src/components/inputs/select/index.vue +4 -11
- package/src/components/inputs/select/option/index.vue +57 -48
- package/src/helpers/translateLang.js +2 -0
- package/src/components/infoCard/index.vue +0 -38
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@eturnity/eturnity_reusable_components",
|
3
|
-
"version": "6.42.1-EPDM-
|
3
|
+
"version": "6.42.1-EPDM-3013.7",
|
4
4
|
"private": false,
|
5
5
|
"scripts": {
|
6
6
|
"dev": "vue-cli-service serve",
|
@@ -11,11 +11,14 @@
|
|
11
11
|
},
|
12
12
|
"dependencies": {
|
13
13
|
"@vueform/slider": "1.0.5",
|
14
|
-
"core-js": "^3.31.1",
|
15
14
|
"html-loader": "0.5.5",
|
15
|
+
"postcss": "^8.4.25",
|
16
16
|
"v-click-outside": "2.1.4",
|
17
17
|
"vue": "2.6.11",
|
18
|
-
"vue-styled-components": "1.6.0"
|
18
|
+
"vue-styled-components": "1.6.0",
|
19
|
+
"vue2-datepicker": "3.11.1",
|
20
|
+
"vuedraggable": "2.24.3",
|
21
|
+
"core-js": "^3.31.1"
|
19
22
|
},
|
20
23
|
"devDependencies": {
|
21
24
|
"@storybook/addon-actions": "6.2.8",
|
package/src/App.vue
CHANGED
@@ -4,16 +4,6 @@
|
|
4
4
|
<br />
|
5
5
|
|
6
6
|
{{ alignItems }}
|
7
|
-
<infoCard>
|
8
|
-
Hello there here is a lot of text decnicninec
|
9
|
-
ceecc
|
10
|
-
ec
|
11
|
-
ececc
|
12
|
-
ececeecec
|
13
|
-
cecececec
|
14
|
-
<br>
|
15
|
-
deed
|
16
|
-
</infoCard>
|
17
7
|
<input-number
|
18
8
|
:value="value"
|
19
9
|
:minNumber="0"
|
@@ -122,7 +112,6 @@ import iconCollection from '@/components/icon/iconCollection'
|
|
122
112
|
import dropdownComponent from '@/components/dropdown'
|
123
113
|
import videoThumbnail from '@/components/videoThumbnail'
|
124
114
|
import icon from '@/components/icon'
|
125
|
-
import infoCard from '@/components/infoCard'
|
126
115
|
// import TableDropdown from "@/components/tableDropdown"
|
127
116
|
|
128
117
|
const PageContainer = styled.div`
|
@@ -147,8 +136,7 @@ export default {
|
|
147
136
|
iconCollection,
|
148
137
|
dropdownComponent,
|
149
138
|
videoThumbnail,
|
150
|
-
icon
|
151
|
-
infoCard
|
139
|
+
icon
|
152
140
|
},
|
153
141
|
data() {
|
154
142
|
return {
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M11.4545 4.45454L8.90909 7H10.8182C10.8182 9.10636 9.10636 10.8182 7 10.8182C6.35727 10.8182 5.74636 10.6591 5.21818 10.3727L4.28909 11.3018C5.07182 11.7982 6.00091 12.0909 7 12.0909C9.81273 12.0909 12.0909 9.81272 12.0909 7H14L11.4545 4.45454ZM3.18182 7C3.18182 4.89363 4.89364 3.18182 7 3.18182C7.64273 3.18182 8.25364 3.34091 8.78182 3.62727L9.71091 2.69818C8.92818 2.20182 7.99909 1.90909 7 1.90909C4.18727 1.90909 1.90909 4.18727 1.90909 7H0L2.54545 9.54545L5.09091 7H3.18182Z" fill="#263238"/>
|
3
|
+
</svg>
|