aloha-vue 1.2.268 → 1.2.270

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.
@@ -7,6 +7,14 @@
7
7
  ---
8
8
  # Versions
9
9
 
10
+ ## 1.2.270
11
+
12
+ - Fixed styling issues for the `ALoading` component when used in the footer of the `AModal` component.
13
+
14
+ ## 1.2.269
15
+
16
+ - Fixed an issue with the `"select all"` button in the `ASelect` component to ensure it functions correctly.
17
+
10
18
  ## 1.2.268
11
19
 
12
20
  - Enhanced the `AWizard` component to support icons in addition to numbers, providing more flexibility in step representation. Documentation has been updated to include details on this new feature.
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "Vue.js"
15
15
  ],
16
16
  "homepage": "https://github.com/ilia-brykin/aloha/#README.md",
17
- "version": "1.2.268",
17
+ "version": "1.2.270",
18
18
  "author": {
19
19
  "name": "Ilia Brykin",
20
20
  "email": "brykin.ilia@gmail.com"
@@ -18,6 +18,9 @@
18
18
  margin: calc(var(--a_modal_footer_sticky_gap));
19
19
  }
20
20
  }
21
+ .a_loading {
22
+ margin: 0;
23
+ }
21
24
  }
22
25
  .a_modal_content_with_footer_sticky {
23
26
  .a_modal_body {
@@ -555,7 +555,7 @@ export default {
555
555
  onSelectAll,
556
556
  } = ModelChangeAPI(props, {
557
557
  changeModel,
558
- data: dataAll,
558
+ dataAll,
559
559
  dataKeyByKeyIdLocal,
560
560
  isMultiselect,
561
561
  togglePopover,