@awes-io/ui 2.124.0 → 2.125.0

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,33 @@
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.125.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.124.1...@awes-io/ui@2.125.0) (2024-12-24)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * fix file uploader ([9ff10ec](https://github.com/awes-io/client/commit/9ff10ec81012b2bd143f176d6251ce36abdb5076))
12
+
13
+
14
+ ### Features
15
+
16
+ * icon color changed ([1f3cc8c](https://github.com/awes-io/client/commit/1f3cc8cde1e74fc143f9053708f687d088667519))
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.124.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.124.0...@awes-io/ui@2.124.1) (2024-12-18)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * fix page header style ([7733119](https://github.com/awes-io/client/commit/77331192886622bd9477910c72ab54d6722f1496))
28
+
29
+
30
+
31
+
32
+
6
33
  # [2.124.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.123.0...@awes-io/ui@2.124.0) (2024-12-17)
7
34
 
8
35
 
@@ -136,10 +136,13 @@
136
136
  var(--header-container-width) +
137
137
  ((2 * 80px) - (2 * var(--header-padding-horizontal)))
138
138
  );
139
- padding-left: 80px;
139
+ padding-left: min(
140
+ 80px,
141
+ max(var(--default-container-left-padding), calc((100% - (var(--container-width) - 48px)) / 2 ))
142
+ );
140
143
  padding-right: min(
141
144
  80px,
142
- max(24px, calc(100% - var(--container-width)))
145
+ max(24px, calc((100% - (var(--container-width) - 48px)) / 2 ))
143
146
  );
144
147
  }
145
148
 
@@ -16,7 +16,7 @@ export default{
16
16
  width: 100,
17
17
  height: 100,
18
18
  viewBox: '0 0 100 100',
19
- content: '<rect width="22" height="22" x="39" y="5" fill="#7fc876" rx="11" ry="11"><animate attributeName="opacity" begin="-0.8333333333333334s" dur="1s" keyTimes="0;1" repeatCount="indefinite" values="1;0"/></rect><rect width="22" height="22" x="39" y="5" fill="#202873" rx="11" ry="11" transform="rotate(60 50 50)"><animate attributeName="opacity" begin="-0.6666666666666666s" dur="1s" keyTimes="0;1" repeatCount="indefinite" values="1;0"/></rect><rect width="22" height="22" x="39" y="5" fill="#7fc876" rx="11" ry="11" transform="rotate(120 50 50)"><animate attributeName="opacity" begin="-0.5s" dur="1s" keyTimes="0;1" repeatCount="indefinite" values="1;0"/></rect><rect width="22" height="22" x="39" y="5" fill="#202873" rx="11" ry="11" transform="rotate(180 50 50)"><animate attributeName="opacity" begin="-0.3333333333333333s" dur="1s" keyTimes="0;1" repeatCount="indefinite" values="1;0"/></rect><rect width="22" height="22" x="39" y="5" fill="#7fc876" rx="11" ry="11" transform="rotate(240 50 50)"><animate attributeName="opacity" begin="-0.16666666666666666s" dur="1s" keyTimes="0;1" repeatCount="indefinite" values="1;0"/></rect><rect width="22" height="22" x="39" y="5" fill="#202873" rx="11" ry="11" transform="rotate(300 50 50)"><animate attributeName="opacity" begin="0s" dur="1s" keyTimes="0;1" repeatCount="indefinite" values="1;0"/></rect>'
19
+ content: '<rect width="22" height="22" x="39" y="5" fill="#7fc876" rx="11" ry="11"><animate attributeName="opacity" begin="-0.8333333333333334s" dur="1s" keyTimes="0;1" repeatCount="indefinite" values="1;0"/></rect><rect width="22" height="22" x="39" y="5" fill="var(--c-mono-100, #14171d)" rx="11" ry="11" transform="rotate(60 50 50)"><animate attributeName="opacity" begin="-0.6666666666666666s" dur="1s" keyTimes="0;1" repeatCount="indefinite" values="1;0"/></rect><rect width="22" height="22" x="39" y="5" fill="#7fc876" rx="11" ry="11" transform="rotate(120 50 50)"><animate attributeName="opacity" begin="-0.5s" dur="1s" keyTimes="0;1" repeatCount="indefinite" values="1;0"/></rect><rect width="22" height="22" x="39" y="5" fill="var(--c-mono-100, #14171d)" rx="11" ry="11" transform="rotate(180 50 50)"><animate attributeName="opacity" begin="-0.3333333333333333s" dur="1s" keyTimes="0;1" repeatCount="indefinite" values="1;0"/></rect><rect width="22" height="22" x="39" y="5" fill="#7fc876" rx="11" ry="11" transform="rotate(240 50 50)"><animate attributeName="opacity" begin="-0.16666666666666666s" dur="1s" keyTimes="0;1" repeatCount="indefinite" values="1;0"/></rect><rect width="22" height="22" x="39" y="5" fill="var(--c-mono-100, #14171d)" rx="11" ry="11" transform="rotate(300 50 50)"><animate attributeName="opacity" begin="0s" dur="1s" keyTimes="0;1" repeatCount="indefinite" values="1;0"/></rect>'
20
20
  },
21
21
  circle: {
22
22
  width: 10,
@@ -328,6 +328,8 @@ export default {
328
328
  this.maxFiles
329
329
  )
330
330
  })
331
+ } else {
332
+ maxFilesForUpload = files.length - 1
331
333
  }
332
334
  }
333
335
 
@@ -10,7 +10,10 @@
10
10
  'aw-page-header--container-default':
11
11
  isContainer && container === 'default'
12
12
  }"
13
- :style="{ '--header-container-width': headerContainerWidth }"
13
+ :style="{
14
+ '--header-container-width': headerContainerWidth,
15
+ '--default-container-left-padding': hideBreadcrumb ? '24px' : '80px'
16
+ }"
14
17
  >
15
18
  <div v-if="!hideBreadcrumb" class="aw-page-header__breadcrumbs">
16
19
  <slot name="breadcrumbs"> </slot>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awes-io/ui",
3
- "version": "2.124.0",
3
+ "version": "2.125.0",
4
4
  "description": "User Interface (UI) components",
5
5
  "keywords": [
6
6
  "ui",
@@ -114,5 +114,5 @@
114
114
  "rollup-plugin-visualizer": "^2.6.0",
115
115
  "rollup-plugin-vue": "^5.0.1"
116
116
  },
117
- "gitHead": "def894ee9eee53ca104a3c00dd3651db4c69f336"
117
+ "gitHead": "30ca908597013c8e56ffb149d1a20d8e827bdbbd"
118
118
  }