@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.
Files changed (67) hide show
  1. package/.prettierrc +7 -0
  2. package/package.json +20 -6
  3. package/public/favicon.ico +0 -0
  4. package/public/index.html +17 -0
  5. package/src/App.vue +70 -75
  6. package/src/assets/svgIcons/copy.svg +10 -0
  7. package/src/components/addNewButton/index.vue +27 -24
  8. package/src/components/banner/actionBanner/index.vue +30 -32
  9. package/src/components/banner/banner/index.vue +80 -88
  10. package/src/components/banner/infoBanner/index.vue +44 -36
  11. package/src/components/buttons/buttonIcon/index.vue +78 -83
  12. package/src/components/buttons/closeButton/index.vue +26 -26
  13. package/src/components/buttons/mainButton/index.vue +76 -80
  14. package/src/components/card/index.vue +52 -56
  15. package/src/components/collapsableInfoText/index.vue +76 -81
  16. package/src/components/deleteIcon/index.vue +28 -31
  17. package/src/components/draggableInputHandle/index.vue +17 -20
  18. package/src/components/dropdown/Dropdown.stories.js +8 -8
  19. package/src/components/dropdown/index.vue +72 -75
  20. package/src/components/errorMessage/index.vue +23 -23
  21. package/src/components/filter/filterSettings.vue +329 -349
  22. package/src/components/filter/index.vue +130 -130
  23. package/src/components/filter/parentDropdown.vue +40 -43
  24. package/src/components/icon/Icons.stories.js +4 -4
  25. package/src/components/icon/iconCache.js +1 -1
  26. package/src/components/icon/iconCollection.vue +37 -40
  27. package/src/components/icon/index.vue +65 -72
  28. package/src/components/iconWrapper/index.vue +118 -122
  29. package/src/components/infoCard/index.vue +17 -20
  30. package/src/components/infoText/index.vue +82 -88
  31. package/src/components/inputs/checkbox/index.vue +94 -91
  32. package/src/components/inputs/inputNumber/index.vue +488 -508
  33. package/src/components/inputs/inputNumberQuestion/index.vue +124 -127
  34. package/src/components/inputs/inputText/index.vue +252 -265
  35. package/src/components/inputs/radioButton/index.vue +120 -135
  36. package/src/components/inputs/searchInput/index.vue +81 -84
  37. package/src/components/inputs/select/index.vue +631 -644
  38. package/src/components/inputs/select/option/index.vue +91 -91
  39. package/src/components/inputs/select/select.stories.js +7 -7
  40. package/src/components/inputs/slider/index.vue +46 -46
  41. package/src/components/inputs/switchField/index.vue +152 -159
  42. package/src/components/inputs/textAreaInput/index.vue +113 -120
  43. package/src/components/inputs/toggle/index.vue +127 -137
  44. package/src/components/label/index.vue +61 -64
  45. package/src/components/markerItem/index.vue +40 -40
  46. package/src/components/modals/actionModal/index.vue +29 -32
  47. package/src/components/modals/infoModal/index.vue +27 -34
  48. package/src/components/modals/modal/index.vue +80 -88
  49. package/src/components/navigationTabs/index.vue +47 -50
  50. package/src/components/pageSubtitle/index.vue +29 -33
  51. package/src/components/pageTitle/index.vue +39 -47
  52. package/src/components/pagination/index.vue +62 -64
  53. package/src/components/progressBar/index.vue +67 -70
  54. package/src/components/projectMarker/index.vue +163 -172
  55. package/src/components/rangeSlider/Slider.vue +449 -449
  56. package/src/components/rangeSlider/index.vue +270 -282
  57. package/src/components/rangeSlider/utils/dom.js +3 -3
  58. package/src/components/selectedOptions/index.vue +51 -51
  59. package/src/components/sideMenu/index.vue +109 -117
  60. package/src/components/spinner/index.vue +34 -37
  61. package/src/components/tableDropdown/index.vue +326 -343
  62. package/src/components/tables/mainTable/index.vue +106 -109
  63. package/src/components/tables/viewTable/index.vue +92 -105
  64. package/src/components/threeDots/index.vue +171 -174
  65. package/src/components/videoThumbnail/index.vue +59 -67
  66. package/src/components/videoThumbnail/videoThumbnail.stories.js +6 -6
  67. 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
- }