@awes-io/ui 2.101.0 → 2.102.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,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.102.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.101.0...@awes-io/ui@2.102.0) (2024-04-24)
7
+
8
+
9
+ ### Features
10
+
11
+ * **aw-select-object:** pass close function to slots ([ade33a0](https://github.com/awes-io/client/commit/ade33a0dfae9aaef4cd228557b21b5290c35909a))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.101.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.100.1...@awes-io/ui@2.101.0) (2024-04-19)
7
18
 
8
19
 
@@ -67,7 +67,9 @@
67
67
  }
68
68
 
69
69
  &__element {
70
- @apply w-full truncate block bg-surface;
70
+ @apply w-full truncate block;
71
+ background-color: var(--c-surface);
72
+ color: var(--c-on-surface);
71
73
  line-height: 1.5;
72
74
  border-radius: 0.625rem;
73
75
 
@@ -110,7 +112,8 @@
110
112
  }
111
113
 
112
114
  &--page &__element {
113
- @apply bg-page-bg;
115
+ background-color: var(--c-page-bg);
116
+ color: var(--c-on-page-bg);
114
117
  }
115
118
 
116
119
  &__fake-input {
@@ -177,7 +177,8 @@
177
177
  optionsList,
178
178
  isLoading,
179
179
  hasSearch: !isLoading && !!_searchPhraseLength,
180
- searchPhrase
180
+ searchPhrase,
181
+ close
181
182
  }"
182
183
  ></slot>
183
184
 
@@ -222,7 +223,8 @@
222
223
  v-bind="{
223
224
  ...optionsList[i],
224
225
  searchPhrase,
225
- highlightSearch
226
+ highlightSearch,
227
+ close
226
228
  }"
227
229
  >
228
230
  <span v-html="highlightSearch(optionLabel)" />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awes-io/ui",
3
- "version": "2.101.0",
3
+ "version": "2.102.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": "681e292d386de18b2ae3fd98a3de3b71d8b6742d"
117
+ "gitHead": "c8f5b80c78849f95b0bd80be7b0293047a9fd828"
118
118
  }