aloha-vue 1.2.270 → 1.2.271
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/.github/workflows/docs.yml +0 -1
- package/{README_VERSIONS.md → CHANGELOG.md} +5 -0
- package/README.md +2 -2
- package/docs/.eslintrc.js +0 -44
- package/docs/dist/assets/aloha_logo-DHoGGOI1.png +0 -0
- package/docs/dist/assets/index-BzHmSwFD.css +1 -0
- package/docs/dist/assets/vendor-BZSh2VgM.css +7 -0
- package/docs/dist/assets/vendor-tinymce-ConXFpxE.css +1 -0
- package/docs/images/aloha_logo.png +0 -0
- package/docs/index.html +2 -2
- package/docs/package.json +13 -34
- package/docs/src/main.js +1 -0
- package/docs/src/router/index.js +86 -86
- package/docs/src/views/PageSvg/PageSvg.pug +0 -4
- package/docs/styles/styles.scss +3 -3
- package/docs/vite.config.mjs +74 -0
- package/package.json +1 -1
- package/src/styles/components/ATabs.scss +3 -1
- package/src/ui/ATinymce/compositionAPI/ATinymceAPI.js +2 -2
- package/docs/dist/assets/logo.png +0 -0
- package/docs/webpack.config.js +0 -216
|
@@ -7,6 +7,11 @@
|
|
|
7
7
|
---
|
|
8
8
|
# Versions
|
|
9
9
|
|
|
10
|
+
## 1.2.271
|
|
11
|
+
|
|
12
|
+
- Documentation Build: Replaced `Webpack` with `Vite` for building the documentation.
|
|
13
|
+
- Corrected styles for the `ATabs` component when the `isVertical` prop is set to ´true´.
|
|
14
|
+
|
|
10
15
|
## 1.2.270
|
|
11
16
|
|
|
12
17
|
- Fixed styling issues for the `ALoading` component when used in the footer of the `AModal` component.
|
package/README.md
CHANGED
package/docs/.eslintrc.js
CHANGED
|
@@ -3,23 +3,6 @@ const WARN = 1;
|
|
|
3
3
|
const ERROR = 2;
|
|
4
4
|
|
|
5
5
|
module.exports = exports = {
|
|
6
|
-
root: true,
|
|
7
|
-
parser: "vue-eslint-parser",
|
|
8
|
-
parserOptions: {
|
|
9
|
-
parser: {
|
|
10
|
-
js: "@babel/eslint-parser",
|
|
11
|
-
},
|
|
12
|
-
allowImportExportEverywhere: true,
|
|
13
|
-
ecmaVersion: 2021,
|
|
14
|
-
sourceType: "module",
|
|
15
|
-
impliedStrict: true,
|
|
16
|
-
ecmaFeatures: {
|
|
17
|
-
spread: true,
|
|
18
|
-
globalReturn: false,
|
|
19
|
-
impliedStrict: false,
|
|
20
|
-
jsx: false,
|
|
21
|
-
},
|
|
22
|
-
},
|
|
23
6
|
plugins: ["jest"],
|
|
24
7
|
extends: [
|
|
25
8
|
"eslint:recommended",
|
|
@@ -28,34 +11,8 @@ module.exports = exports = {
|
|
|
28
11
|
|
|
29
12
|
globals: {
|
|
30
13
|
__dirname: false,
|
|
31
|
-
_: false,
|
|
32
|
-
$: false,
|
|
33
|
-
L: false,
|
|
34
|
-
angular: false,
|
|
35
|
-
window: false,
|
|
36
|
-
event: false,
|
|
37
|
-
beforeEach: false,
|
|
38
|
-
afterEach: false,
|
|
39
14
|
module: false,
|
|
40
|
-
it: false,
|
|
41
|
-
describe: false,
|
|
42
|
-
inject: false,
|
|
43
|
-
expect: false,
|
|
44
|
-
spyOn: false,
|
|
45
|
-
jasmine: false,
|
|
46
|
-
sinon: false,
|
|
47
|
-
xdescribe: false,
|
|
48
|
-
Raven: false,
|
|
49
|
-
console: false,
|
|
50
|
-
setTimeout: false,
|
|
51
|
-
clearTimeout: false,
|
|
52
|
-
history: false,
|
|
53
|
-
localStorage: false,
|
|
54
|
-
CKEDITOR: false,
|
|
55
|
-
document: false,
|
|
56
|
-
require: false,
|
|
57
15
|
process: false,
|
|
58
|
-
MediaElementPlayer: false,
|
|
59
16
|
},
|
|
60
17
|
|
|
61
18
|
rules: {
|
|
@@ -192,7 +149,6 @@ module.exports = exports = {
|
|
|
192
149
|
"jest/valid-expect": "error"
|
|
193
150
|
},
|
|
194
151
|
env: {
|
|
195
|
-
jquery: true,
|
|
196
152
|
es6: true,
|
|
197
153
|
browser: true,
|
|
198
154
|
"jest/globals": true,
|
|
Binary file
|