@awes-io/ui 2.62.0 → 2.63.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.63.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.62.0...@awes-io/ui@2.63.0) (2023-04-07)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **aw-table-builder:** css classes added ([a94c2a6](https://github.com/awes-io/client/commit/a94c2a6088541beabe88306980bf93644d718429))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [2.62.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.61.1...@awes-io/ui@2.62.0) (2023-01-11)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div v-if="pagesTotal > 1" class="flex items-center lg:px-6">
|
|
2
|
+
<div v-if="pagesTotal > 1" class="aw-pagination flex items-center lg:px-6">
|
|
3
3
|
<!-- info text -->
|
|
4
4
|
<span class="flex-1 text-sm opacity-50 hidden lg:block">{{
|
|
5
5
|
$t('Show {from}-{to} of {total}', {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="relative">
|
|
2
|
+
<div class="aw-table-builder relative">
|
|
3
3
|
<div v-if="isEmpty && !collection.loading">
|
|
4
4
|
<!-- The empty container. Will be shown if the data (without filters) is empty. Your can compleatly overwrite the block. -->
|
|
5
5
|
<slot v-if="!isWatchParamsPresent" name="empty-container">
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
:arrow-nav="arrowNav"
|
|
154
154
|
@click:page="onPageClick($event, true)"
|
|
155
155
|
@click:limit="limit = $event"
|
|
156
|
-
class="mt-3 lg:mt-8"
|
|
156
|
+
class="aw-bale-builder__aw-pagination mt-3 lg:mt-8"
|
|
157
157
|
/>
|
|
158
158
|
|
|
159
159
|
<!-- Loading overlay -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awes-io/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.63.0",
|
|
4
4
|
"description": "User Interface (UI) components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui",
|
|
@@ -122,5 +122,5 @@
|
|
|
122
122
|
"vue-template-compiler": "^2.6.10",
|
|
123
123
|
"webfonts-generator": "^0.4.0"
|
|
124
124
|
},
|
|
125
|
-
"gitHead": "
|
|
125
|
+
"gitHead": "ba7458d978c7da739cb46dccdeac9f4a885c8cb2"
|
|
126
126
|
}
|