@eturnity/eturnity_reusable_components 7.24.3-EPDM-11320.0 → 7.24.3-EPDM-11143.1
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/.prettierrc +7 -0
- package/package.json +20 -6
- package/public/favicon.ico +0 -0
- package/public/index.html +17 -0
- package/src/App.vue +70 -75
- package/src/assets/svgIcons/copy.svg +10 -0
- package/src/components/addNewButton/index.vue +27 -24
- package/src/components/banner/actionBanner/index.vue +30 -32
- package/src/components/banner/banner/index.vue +80 -88
- package/src/components/banner/infoBanner/index.vue +44 -36
- package/src/components/buttons/buttonIcon/index.vue +78 -83
- package/src/components/buttons/closeButton/index.vue +26 -26
- package/src/components/buttons/mainButton/index.vue +76 -80
- package/src/components/card/index.vue +52 -56
- package/src/components/collapsableInfoText/index.vue +76 -81
- package/src/components/deleteIcon/index.vue +28 -31
- package/src/components/draggableInputHandle/index.vue +17 -20
- package/src/components/dropdown/Dropdown.stories.js +8 -8
- package/src/components/dropdown/index.vue +72 -75
- package/src/components/errorMessage/index.vue +23 -23
- package/src/components/filter/filterSettings.vue +329 -349
- package/src/components/filter/index.vue +130 -130
- package/src/components/filter/parentDropdown.vue +40 -43
- package/src/components/icon/Icons.stories.js +4 -4
- package/src/components/icon/iconCache.js +1 -1
- package/src/components/icon/iconCollection.vue +37 -40
- package/src/components/icon/index.vue +65 -72
- package/src/components/iconWrapper/index.vue +118 -122
- package/src/components/infoCard/index.vue +17 -20
- package/src/components/infoText/index.vue +82 -88
- package/src/components/inputs/checkbox/index.vue +94 -91
- package/src/components/inputs/inputNumber/index.vue +488 -508
- package/src/components/inputs/inputNumberQuestion/index.vue +124 -127
- package/src/components/inputs/inputText/index.vue +252 -265
- package/src/components/inputs/radioButton/index.vue +120 -135
- package/src/components/inputs/searchInput/index.vue +81 -84
- package/src/components/inputs/select/index.vue +631 -644
- package/src/components/inputs/select/option/index.vue +91 -91
- package/src/components/inputs/select/select.stories.js +7 -7
- package/src/components/inputs/slider/index.vue +46 -46
- package/src/components/inputs/switchField/index.vue +152 -159
- package/src/components/inputs/textAreaInput/index.vue +113 -120
- package/src/components/inputs/toggle/index.vue +127 -137
- package/src/components/label/index.vue +61 -64
- package/src/components/markerItem/index.vue +40 -40
- package/src/components/modals/actionModal/index.vue +29 -32
- package/src/components/modals/infoModal/index.vue +27 -34
- package/src/components/modals/modal/index.vue +80 -88
- package/src/components/navigationTabs/index.vue +47 -50
- package/src/components/pageSubtitle/index.vue +29 -33
- package/src/components/pageTitle/index.vue +39 -47
- package/src/components/pagination/index.vue +62 -64
- package/src/components/progressBar/index.vue +67 -70
- package/src/components/projectMarker/index.vue +163 -172
- package/src/components/rangeSlider/Slider.vue +449 -449
- package/src/components/rangeSlider/index.vue +270 -282
- package/src/components/rangeSlider/utils/dom.js +3 -3
- package/src/components/selectedOptions/index.vue +51 -51
- package/src/components/sideMenu/index.vue +109 -117
- package/src/components/spinner/index.vue +34 -37
- package/src/components/tableDropdown/index.vue +326 -343
- package/src/components/tables/mainTable/index.vue +106 -109
- package/src/components/tables/viewTable/index.vue +92 -105
- package/src/components/threeDots/index.vue +171 -174
- package/src/components/videoThumbnail/index.vue +59 -67
- package/src/components/videoThumbnail/videoThumbnail.stories.js +6 -6
- package/.eslintrc.js +0 -125
package/.eslintrc.js
DELETED
@@ -1,125 +0,0 @@
|
|
1
|
-
module.exports = {
|
2
|
-
root: true,
|
3
|
-
env: {
|
4
|
-
browser: true,
|
5
|
-
node: true,
|
6
|
-
es6: true
|
7
|
-
},
|
8
|
-
extends: ['plugin:vue/recommended', 'eslint:recommended',],
|
9
|
-
plugins: ['vue'],
|
10
|
-
parserOptions: {
|
11
|
-
ecmaVersion: 2020,
|
12
|
-
sourceType: 'module',
|
13
|
-
},
|
14
|
-
rules: {
|
15
|
-
'vue/component-name-in-template-casing': ['warn', 'PascalCase', {
|
16
|
-
registeredComponentsOnly: false,
|
17
|
-
ignores: []
|
18
|
-
}],
|
19
|
-
'vue/multi-word-component-names': ['warn', {
|
20
|
-
ignores: []
|
21
|
-
}],
|
22
|
-
'vue/html-closing-bracket-newline': ['warn', {
|
23
|
-
singleline: 'never',
|
24
|
-
multiline: 'always'
|
25
|
-
}],
|
26
|
-
'vue/html-closing-bracket-spacing': ['warn', {
|
27
|
-
startTag: 'never',
|
28
|
-
endTag: 'never',
|
29
|
-
selfClosingTag: 'always'
|
30
|
-
}],
|
31
|
-
"vue/no-multi-spaces": ["warn", {
|
32
|
-
"ignoreProperties": false
|
33
|
-
}],
|
34
|
-
'vue/html-end-tags': 'warn',
|
35
|
-
'keyword-spacing': ['warn', {
|
36
|
-
before: true, // Require a space before keywords
|
37
|
-
after: true // Require a space after keywords
|
38
|
-
}],
|
39
|
-
// Enforce one space after comma
|
40
|
-
'comma-spacing': ['warn', {
|
41
|
-
before: false, // No space before comma
|
42
|
-
after: true // Require a space after comma
|
43
|
-
}],
|
44
|
-
'func-call-spacing': ['warn', 'never'],
|
45
|
-
// Enforce one space around binary operators (+, -, *, /, etc.)
|
46
|
-
'space-infix-ops': 'warn',
|
47
|
-
// Enforce no space inside parentheses
|
48
|
-
'space-in-parens': ['warn', 'never'],
|
49
|
-
// Enforce one space before block statements (if, else, for, etc.)
|
50
|
-
'space-before-blocks': 'warn',
|
51
|
-
// Enforce no spaces inside square brackets
|
52
|
-
'array-bracket-spacing': ['warn', 'never'],
|
53
|
-
// Enforce one space before function parentheses
|
54
|
-
'space-before-function-paren': ['warn', 'never'],
|
55
|
-
// Enforce one space inside braces of object literals
|
56
|
-
'object-curly-spacing': ['warn', 'always'],
|
57
|
-
// Enforce one space before and after arrow functions (optional)
|
58
|
-
'arrow-spacing': ['warn', { before: true, after: true }],
|
59
|
-
// Enforce one space after colon in object literals
|
60
|
-
'key-spacing': ['warn', {
|
61
|
-
beforeColon: false, // No space before colon
|
62
|
-
afterColon: true, // Require one space after colon
|
63
|
-
mode: 'strict' // Enforce spacing between key and value
|
64
|
-
}],
|
65
|
-
'vue/html-indent': ['warn', 2],
|
66
|
-
'vue/html-quotes': ['warn', 'double'],
|
67
|
-
'vue/html-self-closing': ['warn', {
|
68
|
-
html: {
|
69
|
-
void: 'always',
|
70
|
-
normal: 'never',
|
71
|
-
component: 'always'
|
72
|
-
},
|
73
|
-
svg: 'always',
|
74
|
-
math: 'always'
|
75
|
-
}],
|
76
|
-
'vue/require-default-prop': 'warn',
|
77
|
-
'vue/require-prop-types': 'warn',
|
78
|
-
'vue/script-indent': ['warn', 2, {
|
79
|
-
baseIndent: 1,
|
80
|
-
switchCase: 1,
|
81
|
-
ignores: []
|
82
|
-
}],
|
83
|
-
'vue/v-on-event-hyphenation': ['warn', 'always', {
|
84
|
-
autofix: true,
|
85
|
-
ignore: []
|
86
|
-
}],
|
87
|
-
'vue/prop-name-casing': ['warn', 'camelCase'],
|
88
|
-
'vue/order-in-components': 'warn',
|
89
|
-
'vue/this-in-template': ['warn', 'never'],
|
90
|
-
'vue/attributes-order': ['warn', {
|
91
|
-
order: [
|
92
|
-
'DEFINITION',
|
93
|
-
'LIST_RENDERING',
|
94
|
-
'CONDITIONALS',
|
95
|
-
'RENDER_MODIFIERS',
|
96
|
-
'GLOBAL',
|
97
|
-
['UNIQUE', 'SLOT'],
|
98
|
-
'TWO_WAY_BINDING',
|
99
|
-
'OTHER_DIRECTIVES',
|
100
|
-
'OTHER_ATTR',
|
101
|
-
'EVENTS',
|
102
|
-
'CONTENT'
|
103
|
-
],
|
104
|
-
alphabetical: true
|
105
|
-
}],
|
106
|
-
'vue/no-unused-vars': 'warn',
|
107
|
-
'vue/no-use-v-if-with-v-for': ['warn', {
|
108
|
-
allowUsingIterationVar: false
|
109
|
-
}],
|
110
|
-
'no-unused-vars': 'warn',
|
111
|
-
'no-undef': 'warn',
|
112
|
-
'no-console': 'warn',
|
113
|
-
'no-debugger': 'warn',
|
114
|
-
'no-multi-spaces': 'warn',
|
115
|
-
'no-mixed-spaces-and-tabs': 'warn',
|
116
|
-
"no-redeclare": "warn",
|
117
|
-
"no-unsafe-finally": "warn",
|
118
|
-
'vue/no-v-for-template-key': 'warn',
|
119
|
-
'vue/no-reserved-component-names': 'warn',
|
120
|
-
'max-len': ['warn', { code: 80, tabWidth: 2, ignoreUrls: true }],
|
121
|
-
},
|
122
|
-
globals: {
|
123
|
-
_: true
|
124
|
-
}
|
125
|
-
}
|