quasar-ui-sellmate-ui-kit 3.0.6 → 3.1.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 (40) hide show
  1. package/.eslintrc.cjs +38 -7
  2. package/dist/index.common.js +2 -2
  3. package/dist/index.css +15 -49
  4. package/dist/index.esm.js +2 -2
  5. package/dist/index.min.css +2 -2
  6. package/dist/index.rtl.css +15 -49
  7. package/dist/index.rtl.min.css +2 -2
  8. package/dist/index.umd.js +55 -63
  9. package/dist/index.umd.min.js +2 -2
  10. package/package.json +3 -3
  11. package/src/assets/icons.js +6 -2
  12. package/src/components/SCaution.vue +55 -77
  13. package/src/components/SChip.vue +1 -1
  14. package/src/components/SDate.vue +1 -1
  15. package/src/components/SDateAutoRangePicker.vue +2 -2
  16. package/src/components/SDatePicker.vue +1 -1
  17. package/src/components/SDateRange.vue +1 -1
  18. package/src/components/SDateRangePicker.vue +6 -6
  19. package/src/components/SDialog.vue +1 -1
  20. package/src/components/SDropdown.vue +1 -1
  21. package/src/components/SFilePicker.vue +1 -1
  22. package/src/components/SHelp.vue +1 -1
  23. package/src/components/SInputNumber.vue +1 -1
  24. package/src/components/SPagination.vue +1 -1
  25. package/src/components/SSelect.vue +1 -1
  26. package/src/components/SSelectCheckbox.vue +1 -1
  27. package/src/components/SSelectCustom.vue +1 -1
  28. package/src/components/SSelectGroupCheckbox.vue +1 -1
  29. package/src/components/SSelectSearch.vue +1 -1
  30. package/src/components/SSelectSearchAutoComplete.vue +1 -1
  31. package/src/components/SSelectSearchCheckbox.vue +1 -1
  32. package/src/components/STableTree.vue +0 -1
  33. package/src/components/STimePicker.vue +2 -2
  34. package/src/components/STooltip.vue +1 -1
  35. package/src/components/TimePickerCard.vue +2 -2
  36. package/src/composables/table/use-navigator.js +1 -1
  37. package/src/css/app.scss +16 -0
  38. package/src/css/default.scss +0 -1
  39. package/src/css/quasar.variables.scss +0 -1
  40. package/src/css/fonts/Pretendard-Regular.subset.woff2 +0 -0
package/.eslintrc.cjs CHANGED
@@ -6,7 +6,7 @@ module.exports = {
6
6
  es2021: true,
7
7
  'vue/setup-compiler-macros': true,
8
8
  },
9
- extends: ['plugin:@typescript-eslint/recommended', 'plugin:vue/vue3-essential', 'airbnb-base'],
9
+ extends: ['plugin:@typescript-eslint/recommended', 'plugin:vue/vue3-essential', 'prettier', 'airbnb-base'],
10
10
  parserOptions: {
11
11
  parser: require.resolve('@typescript-eslint/parser'),
12
12
  ecmaVersion: 2021,
@@ -35,25 +35,56 @@ module.exports = {
35
35
  'import/namespace': 'error',
36
36
  'import/default': 'error',
37
37
  'import/export': 'error',
38
- 'import/extensions': 'off',
39
38
  'import/no-unresolved': 'off',
40
39
  'import/no-extraneous-dependencies': 'off',
41
40
  'import/prefer-default-export': 'off',
41
+ 'import/extensions': [
42
+ 'warn', 'never',
43
+ {
44
+ ignorePackages: true,
45
+ pattern: {
46
+ js: 'never',
47
+ ts: 'never',
48
+ wav: 'always',
49
+ png: 'always',
50
+ vue: 'always',
51
+ json: 'always'
52
+ },
53
+ },
54
+ ],
42
55
  'prefer-promise-reject-errors': 'off',
56
+ quotes: ['warn', 'single', { avoidEscape: true }],
57
+ 'no-unused-vars': 'off',
58
+ '@typescript-eslint/no-unused-vars': 'off',
59
+ 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
60
+ 'no-console': [
61
+ process.env.NODE_ENV === 'production' ? 'error' : 'off',
62
+ { allow: ['error', 'warn', 'info'] },
63
+ ],
43
64
  indent: 'off',
44
- 'max-len': ['warn', {
65
+ // 'max-len': ['warn', {
66
+ // code: 100,
67
+ // tabWidth: 1,
68
+ // ignoreUrls: true,
69
+ // ignoreComments: true,
70
+ // ignoreRegExpLiterals: true,
71
+ // ignoreStrings: true,
72
+ // ignoreTemplateLiterals: true,
73
+ // }],
74
+ 'max-len': 'off',
75
+ 'vue/max-len': ['warn', {
45
76
  code: 100,
46
77
  tabWidth: 1,
47
78
  ignoreUrls: true,
48
79
  ignoreComments: true,
80
+ ignoreTrailingComments: true,
49
81
  ignoreRegExpLiterals: true,
50
82
  ignoreStrings: true,
51
83
  ignoreTemplateLiterals: true,
84
+ ignoreHTMLAttributeValues: true,
85
+ ignoreHTMLTextContents: true,
52
86
  }],
53
- 'no-console': [
54
- process.env.NODE_ENV === 'production' ? 'error' : 'off',
55
- { allow: ['error', 'info', 'warn'] },
56
- ],
87
+
57
88
  'linebreak-style': 0,
58
89
  'arrow-parens': 'off',
59
90
  'no-bitwise': ['error', { allow: ['>>'] }],