@awes-io/ui 2.144.5 → 2.144.6

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 CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.144.6](https://github.com/awes-io/client/compare/@awes-io/ui@2.144.5...@awes-io/ui@2.144.6) (2026-03-28)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * show model edit buttons above bottom bar ([a830711](https://github.com/awes-io/client/commit/a830711bf171c856cc5c668981116ff43705241f))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [2.144.5](https://github.com/awes-io/client/compare/@awes-io/ui@2.144.4...@awes-io/ui@2.144.5) (2026-03-24)
7
18
 
8
19
 
@@ -1,8 +1,7 @@
1
1
  .aw-model-edit {
2
2
  &__panel {
3
3
  @apply sticky mt-8 flex flex-wrap;
4
- bottom: theme('spacing.4', 1rem);
5
- border-radius: 0.625rem;
4
+ bottom: calc(1rem + var(--page-buttons-bottom, 0px));
6
5
  z-index: 10;
7
6
  }
8
7
 
package/nuxt/index.js CHANGED
@@ -35,7 +35,7 @@ const dayjsReplaceMap = {
35
35
  }
36
36
 
37
37
  const getDayjsLang = (code) => {
38
- let needle = code.toLowerCase().split('-')[0]
38
+ let needle = code.toLowerCase()
39
39
 
40
40
  if (dayjsReplaceMap[needle]) {
41
41
  needle = dayjsReplaceMap[needle]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awes-io/ui",
3
- "version": "2.144.5",
3
+ "version": "2.144.6",
4
4
  "description": "User Interface (UI) components",
5
5
  "keywords": [
6
6
  "ui",
@@ -116,5 +116,5 @@
116
116
  "peerDependencies": {
117
117
  "nuxt": "^2.18.1"
118
118
  },
119
- "gitHead": "0fa90b1b7fa53692c8012ba25fcdd57ad9a3ca51"
119
+ "gitHead": "e9815e4edd97f00a5b51557335159a4b797256bb"
120
120
  }