vueless 1.4.2 → 1.4.3-beta.1
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/package.json
CHANGED
|
@@ -7,13 +7,11 @@ export function normalizeColumns(columns: Column[]): ColumnObject[] {
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
export function mapRowColumns(row: Row, columns: ColumnObject[]): RowData {
|
|
10
|
-
const visibleKeys = new Set(columns.filter((col) => col.isShown !== false).map((col) => col.key));
|
|
11
|
-
|
|
12
10
|
const result: RowData = {};
|
|
13
11
|
|
|
14
|
-
for (const
|
|
15
|
-
if (
|
|
16
|
-
result[key] = row[key];
|
|
12
|
+
for (const col of columns) {
|
|
13
|
+
if (col.isShown !== false) {
|
|
14
|
+
result[col.key] = row[col.key];
|
|
17
15
|
}
|
|
18
16
|
}
|
|
19
17
|
|
package/ui.text-notify/config.ts
CHANGED
|
@@ -15,9 +15,9 @@ export default /*tw*/ {
|
|
|
15
15
|
bodyWarning: "{>body} bg-radial-[circle_at_0%_50%] from-warning/25 from-2.17% to-transparent",
|
|
16
16
|
bodyError: "{>body} bg-radial-[circle_at_0%_50%] from-error/25 from-2.17% to-transparent",
|
|
17
17
|
bodyInfo: "{>body} bg-radial-[circle_at_0%_50%] from-info/25 from-2.17% to-transparent",
|
|
18
|
-
content: "w-full flex flex-col max-w-full text-medium text-inverted
|
|
18
|
+
content: "w-full flex flex-col max-w-full text-medium text-inverted wrap-anywhere text-wrap",
|
|
19
19
|
label: "mb-0.5 font-medium",
|
|
20
|
-
description: "wrap-
|
|
20
|
+
description: "wrap-anywhere font-normal",
|
|
21
21
|
statusIcon: "{UIcon} brightness-125 dark:brightness-75",
|
|
22
22
|
successIcon: "{UIcon} {>statusIcon} text-success",
|
|
23
23
|
warningIcon: "{UIcon} {>statusIcon} text-warning",
|