@hostlink/nuxt-light 0.0.111 → 0.0.112

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/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "light",
3
3
  "configKey": "light",
4
- "version": "0.0.111"
4
+ "version": "0.0.112"
5
5
  }
@@ -17,6 +17,13 @@ const register = async () => {
17
17
  localStorage.setItem("username", user.username);
18
18
  } catch (e) {
19
19
 
20
+ Dialog.create({
21
+ title: "Error",
22
+ message: e.message,
23
+ ok: "OK",
24
+ })
25
+
26
+
20
27
  }
21
28
  }
22
29
 
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
2
  import { model } from "#imports"
3
- const columns = model("UserLog").columns(["userlog_id", "username", "login_dt", "logout_dt", "result", "user_agent"]);
3
+ const columns = model("UserLog").columns(["userlog_id", "username", "login_dt", "last_access_time", "logout_dt", "result", "user_agent"]);
4
4
  </script>
5
5
  <template>
6
6
  <l-page>
@@ -38,5 +38,11 @@ declare const _default: {
38
38
  searchable: boolean;
39
39
  whiteSpace: string;
40
40
  };
41
+ last_access_time: {
42
+ label: string;
43
+ sortable: boolean;
44
+ searchable: boolean;
45
+ searchType: string;
46
+ };
41
47
  };
42
48
  export default _default;
@@ -43,5 +43,11 @@ export default {
43
43
  sortable: true,
44
44
  searchable: true,
45
45
  whiteSpace: "pre-line"
46
+ },
47
+ last_access_time: {
48
+ label: "Last access time",
49
+ sortable: true,
50
+ searchable: true,
51
+ searchType: "date"
46
52
  }
47
53
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hostlink/nuxt-light",
3
- "version": "0.0.111",
3
+ "version": "0.0.112",
4
4
  "description": "HostLink Nuxt Light Framework",
5
5
  "repository": "@hostlink/nuxt-light",
6
6
  "license": "MIT",