hamzus-ui 0.0.196 → 0.0.198
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
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
export let limit = 20;
|
|
18
18
|
export let offset = 0;
|
|
19
19
|
export let getRows = (filters) => {};
|
|
20
|
+
export let onChange = ()=>{};
|
|
20
21
|
export let onClick = undefined;
|
|
21
22
|
export let version = 1;
|
|
22
23
|
|
|
@@ -45,7 +46,7 @@
|
|
|
45
46
|
|
|
46
47
|
setContext(TABLE_CTX, table);
|
|
47
48
|
|
|
48
|
-
|
|
49
|
+
$: onChange($table)
|
|
49
50
|
|
|
50
51
|
|
|
51
52
|
|
|
@@ -101,7 +101,9 @@
|
|
|
101
101
|
width: 100%;
|
|
102
102
|
padding: 7px;
|
|
103
103
|
border-bottom: 1px solid var(--stroke);
|
|
104
|
-
background-color: var(--bg-
|
|
104
|
+
background-color: var(--bg-blur);
|
|
105
|
+
backdrop-filter: blur(20px);
|
|
106
|
+
-webkit-backdrop-filter: blur(20px);
|
|
105
107
|
position: relative;
|
|
106
108
|
}
|
|
107
109
|
|