@enso-ui/themes 2.0.4 → 3.0.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/.eslintrc.js
CHANGED
|
@@ -1,44 +1,46 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
-
|
|
2
|
+
root: true,
|
|
3
3
|
extends: [
|
|
4
4
|
'airbnb-base',
|
|
5
|
-
'plugin:vue/recommended'
|
|
5
|
+
'plugin:vue/vue3-recommended',
|
|
6
6
|
],
|
|
7
7
|
plugins: [
|
|
8
8
|
'vue',
|
|
9
9
|
],
|
|
10
10
|
globals: {
|
|
11
11
|
axios: true,
|
|
12
|
-
route: true,
|
|
13
12
|
},
|
|
14
13
|
parserOptions: {
|
|
15
14
|
parser: 'babel-eslint',
|
|
16
15
|
sourceType: 'module',
|
|
17
|
-
|
|
18
|
-
allowImportExportEverywhere: true
|
|
16
|
+
ecmaVersion: 2017,
|
|
17
|
+
allowImportExportEverywhere: true,
|
|
19
18
|
},
|
|
20
19
|
rules: {
|
|
21
20
|
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
22
21
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
23
22
|
indent: ['error', 4],
|
|
23
|
+
'arrow-parens': ['error', 'as-needed'],
|
|
24
24
|
'vue/html-indent': 0,
|
|
25
25
|
'vue/attributes-order': 0,
|
|
26
26
|
'no-plusplus': 0,
|
|
27
|
-
'no-debugger': 0,
|
|
28
27
|
'no-param-reassign': 0,
|
|
29
28
|
'no-mixed-operators': 0,
|
|
29
|
+
'no-underscore-dangle': 0,
|
|
30
30
|
'func-names': 0,
|
|
31
31
|
'no-shadow': 0,
|
|
32
|
+
'vue/multi-word-component-names': 0,
|
|
32
33
|
'vue/max-attributes-per-line': 0,
|
|
34
|
+
'vue/first-attribute-linebreak': 0,
|
|
33
35
|
'no-return-assign': ['error', 'except-parens'],
|
|
34
36
|
'vue/html-closing-bracket-newline': ['error', {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
singleline: 'never',
|
|
38
|
+
multiline: 'never',
|
|
37
39
|
}],
|
|
38
40
|
'vue/html-closing-bracket-spacing': ['error', {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}]
|
|
41
|
+
startTag: 'never',
|
|
42
|
+
endTag: 'never',
|
|
43
|
+
selfClosingTag: 'never',
|
|
44
|
+
}],
|
|
43
45
|
},
|
|
44
|
-
};
|
|
46
|
+
};
|
package/bulma/extensions.sass
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@import "~bulma-extensions/bulma-badge/dist/css/bulma-badge"
|
|
2
|
-
@import "~bulma-extensions/bulma-calendar/dist/css/bulma-calendar"
|
|
3
|
-
@import "~bulma-extensions/bulma-pricingtable/dist/css/bulma-pricingtable"
|
|
4
|
-
@import "~bulma-extensions/bulma-steps/dist/css/bulma-steps"
|
|
5
|
-
@import "~bulma-extensions/bulma-timeline/dist/css/bulma-timeline"
|
|
6
|
-
@import "~bulma-extensions/bulma-tagsinput/dist/css/bulma-tagsinput"
|
|
1
|
+
@import "~bulma-extensions/bulma-badge/dist/css/bulma-badge.min"
|
|
2
|
+
@import "~bulma-extensions/bulma-calendar/dist/css/bulma-calendar.min"
|
|
3
|
+
@import "~bulma-extensions/bulma-pricingtable/dist/css/bulma-pricingtable.min"
|
|
4
|
+
@import "~bulma-extensions/bulma-steps/dist/css/bulma-steps.min"
|
|
5
|
+
@import "~bulma-extensions/bulma-timeline/dist/css/bulma-timeline.min"
|
|
6
|
+
@import "~bulma-extensions/bulma-tagsinput/dist/css/bulma-tagsinput.min"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enso-ui/themes",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Enso UI Themes",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,22 +21,19 @@
|
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://github.com/enso-ui/themes#readme",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@enso-ui/ui": "^4.0",
|
|
25
24
|
"bulma": "^0.9.0",
|
|
26
|
-
"bulma-extensions": "^
|
|
25
|
+
"bulma-extensions": "^6.0.0",
|
|
27
26
|
"flatpickr": "^4.5.0"
|
|
28
27
|
},
|
|
29
28
|
"devDependencies": {
|
|
30
|
-
"@
|
|
31
|
-
"@vue/cli-plugin-
|
|
32
|
-
"@vue/cli-plugin-eslint": "^4.0.5",
|
|
33
|
-
"@vue/cli-service": "^4.0.5",
|
|
29
|
+
"@vue/cli-plugin-babel": "5.0.0-beta.6",
|
|
30
|
+
"@vue/cli-plugin-eslint": "5.0.0-beta.6",
|
|
34
31
|
"@vue/eslint-config-airbnb": "^5.0.0",
|
|
35
32
|
"autoprefixer": "^9.6.1",
|
|
36
33
|
"babel-eslint": "^10.0.1",
|
|
37
34
|
"cross-env": "^6.0.0",
|
|
38
|
-
"eslint": "^
|
|
35
|
+
"eslint": "^7.0",
|
|
39
36
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
40
|
-
"eslint-plugin-vue": "^
|
|
37
|
+
"eslint-plugin-vue": "^8.0.0"
|
|
41
38
|
}
|
|
42
39
|
}
|