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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hamzus-ui",
3
- "version": "0.0.196",
3
+ "version": "0.0.198",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "svelte": "index.js",
@@ -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
 
@@ -13,7 +13,9 @@
13
13
  width: 100%;
14
14
  height: 100%;
15
15
  display: flex;
16
- background-color: var(--bg-2);
16
+ background-color: var(--bg-blur);
17
+ backdrop-filter: blur(20px);
18
+ -webkit-backdrop-filter: blur(20px);
17
19
  }
18
20
 
19
21
 
@@ -69,7 +69,6 @@
69
69
  transition-timing-function: ease-in-out;
70
70
  overflow-x: clip;
71
71
  overflow-y: auto;
72
- background-color:var(--bg-2);
73
72
  }
74
73
  .sidebar.open {
75
74
  width: 250px;
@@ -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-2);
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