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.
@@ -40,7 +40,6 @@ jobs:
40
40
  run: |
41
41
  cd docs/
42
42
  npm run build-production
43
- npm run build-css
44
43
 
45
44
  - name: Deploy to GitHub Pages
46
45
  if: ${{ success() }}
@@ -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
@@ -22,10 +22,10 @@ $ npm install aloha-vue
22
22
  ### Documentation
23
23
 
24
24
  ``` bash
25
- # at aloha/docs
26
25
  # serve with hot reloading at localhost:9000
27
26
  # node v18.16
28
- $ npm run serve
27
+ $ cd docs
28
+ $ npm run dev
29
29
  ```
30
30
 
31
31
 
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,