@milaboratories/uikit 2.2.26 → 2.2.28
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/CHANGELOG.md +12 -0
- package/dist/pl-uikit.js +7 -8
- package/dist/pl-uikit.umd.cjs +3 -3
- package/dist/src/components/DataTable/index.d.ts +1 -1
- package/dist/src/components/DataTable/types.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/eslint.config.mjs +4 -0
- package/package.json +6 -5
- package/src/assets/base-btn.scss +5 -2
- package/src/components/DataTable/BaseCellComponent.vue +1 -1
- package/src/components/DataTable/index.ts +1 -1
- package/src/components/DataTable/types.ts +2 -2
- package/src/components/GridTable/types.ts +5 -5
- package/src/components/InputRange.vue +1 -1
- package/src/components/PlAccordion/ExpandTransition.vue +1 -1
- package/src/components/PlBtnSplit/__tests__/PlBtnSplit.spec.ts +1 -1
- package/src/components/PlCheckbox/__tests__/PlCheckbox.spec.ts +1 -1
- package/src/components/PlDropdown/PlDropdown.vue +1 -0
- package/src/components/PlDropdown/__tests__/PlDropdown.spec.ts +2 -2
- package/src/components/PlDropdownLegacy/PlDropdownLegacy.vue +1 -0
- package/src/components/PlDropdownLegacy/__tests__/PlDropdownLegacy.spec.ts +2 -2
- package/src/components/PlDropdownMulti/PlDropdownMulti.vue +10 -9
- package/src/components/PlDropdownMulti/__tests__/PlDropdownMulti.spec.ts +2 -2
- package/src/components/PlDropdownRef/PlDropdownRef.vue +1 -2
- package/src/components/PlDropdownRef/__tests__/PlDropdownRef.spec.ts +2 -2
- package/src/components/PlFileDialog/Shortcuts.vue +1 -1
- package/src/components/PlLogView/PlLogView.vue +1 -1
- package/src/components/PlLogView/useLogHandle.ts +0 -1
- package/src/components/PlNotificationAlert/PlNotificationAlert.vue +1 -1
- package/src/components/PlNumberField/PlNumberField.vue +2 -1
- package/src/components/PlProgressBar/PlProgressBar.vue +1 -1
- package/src/components/PlSpacer/PlSpacer.vue +1 -1
- package/src/components/PlTextArea/__tests__/PlTextArea.spec.ts +1 -1
- package/src/components/PlTextField/__tests__/TextField.spec.ts +3 -3
- package/src/components/PlTooltip/PlTooltip.vue +1 -1
- package/src/components/Slider.vue +4 -4
- package/src/components/SliderRange.vue +3 -3
- package/src/components/SliderRangeTriple.vue +3 -3
- package/src/composition/useMouseCapture.ts +1 -1
- package/src/composition/useTheme.ts +4 -3
- package/src/drafts/FileBaseInput.vue +1 -1
- package/src/helpers/utils.ts +3 -3
- package/src/index.ts +2 -2
- package/src/types.ts +14 -14
- package/.eslintignore +0 -2
- package/.eslintrc.json +0 -60
package/.eslintrc.json
DELETED
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"root": true,
|
|
3
|
-
"env": {
|
|
4
|
-
"es2021": true,
|
|
5
|
-
"node": false,
|
|
6
|
-
"browser": true
|
|
7
|
-
},
|
|
8
|
-
"extends": [
|
|
9
|
-
"eslint:recommended",
|
|
10
|
-
/** @see https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin#recommended-configs */
|
|
11
|
-
"plugin:@typescript-eslint/recommended",
|
|
12
|
-
"plugin:vue/vue3-recommended",
|
|
13
|
-
"plugin:prettier/recommended"
|
|
14
|
-
],
|
|
15
|
-
"parser": "vue-eslint-parser",
|
|
16
|
-
"parserOptions": {
|
|
17
|
-
"ecmaVersion": 12,
|
|
18
|
-
"sourceType": "module",
|
|
19
|
-
"parser": "@typescript-eslint/parser"
|
|
20
|
-
},
|
|
21
|
-
"plugins": [
|
|
22
|
-
"@typescript-eslint"
|
|
23
|
-
],
|
|
24
|
-
"ignorePatterns": [
|
|
25
|
-
"node_modules/**",
|
|
26
|
-
"**/dist/**"
|
|
27
|
-
],
|
|
28
|
-
"rules": {
|
|
29
|
-
"@typescript-eslint/no-var-requires": "off",
|
|
30
|
-
"@typescript-eslint/consistent-type-imports": "error",
|
|
31
|
-
"vue/multi-word-component-names": "off",
|
|
32
|
-
"vue/no-undef-components": "error",
|
|
33
|
-
"vue/component-name-in-template-casing": "warn",
|
|
34
|
-
"@typescript-eslint/no-explicit-any": "error",
|
|
35
|
-
/**
|
|
36
|
-
* Having a semicolon helps the optimizer interpret your code correctly.
|
|
37
|
-
* This avoids rare errors in optimized code.
|
|
38
|
-
* @see https://twitter.com/alex_kozack/status/1364210394328408066
|
|
39
|
-
*/
|
|
40
|
-
"semi": [
|
|
41
|
-
"warn",
|
|
42
|
-
"always"
|
|
43
|
-
],
|
|
44
|
-
/**
|
|
45
|
-
* Just for beauty
|
|
46
|
-
*/
|
|
47
|
-
"quotes": [
|
|
48
|
-
"warn",
|
|
49
|
-
"single"
|
|
50
|
-
],
|
|
51
|
-
"@typescript-eslint/no-unused-vars": [
|
|
52
|
-
"warn",
|
|
53
|
-
{
|
|
54
|
-
"argsIgnorePattern": "^_",
|
|
55
|
-
"varsIgnorePattern": "^_",
|
|
56
|
-
"caughtErrorsIgnorePattern": "^_"
|
|
57
|
-
}
|
|
58
|
-
]
|
|
59
|
-
}
|
|
60
|
-
}
|