@hexclave/tanstack-start 1.0.34 → 1.0.36
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/components-page/account-settings/active-sessions/active-sessions-page.js +1 -1
- package/dist/components-page/account-settings/api-keys/api-keys-page.js +2 -2
- package/dist/components-page/account-settings/teams/team-api-keys-section.js +2 -2
- package/dist/esm/components-page/account-settings/active-sessions/active-sessions-page.js +1 -1
- package/dist/esm/components-page/account-settings/api-keys/api-keys-page.js +2 -2
- package/dist/esm/components-page/account-settings/teams/team-api-keys-section.js +2 -2
- package/dist/esm/lib/hexclave-app/apps/implementations/common.js +1 -1
- package/dist/lib/hexclave-app/apps/implementations/common.js +1 -1
- package/package.json +3 -3
|
@@ -5,10 +5,10 @@ let _hexclave_shared_dist_utils_errors = require("@hexclave/shared/dist/utils/er
|
|
|
5
5
|
let _hexclave_ui = require("@hexclave/ui");
|
|
6
6
|
let react = require("react");
|
|
7
7
|
let react_jsx_runtime = require("react/jsx-runtime");
|
|
8
|
+
let _hexclave_shared_dist_utils_dates = require("@hexclave/shared/dist/utils/dates");
|
|
8
9
|
let _________lib_hooks_js = require("../../../lib/hooks.js");
|
|
9
10
|
let _________lib_translations_js = require("../../../lib/translations.js");
|
|
10
11
|
let ___page_layout_js = require("../page-layout.js");
|
|
11
|
-
let _hexclave_shared_dist_utils_dates = require("@hexclave/shared/dist/utils/dates");
|
|
12
12
|
|
|
13
13
|
//#region src/components-page/account-settings/active-sessions/active-sessions-page.tsx
|
|
14
14
|
function ActiveSessionsPage(props) {
|
|
@@ -3,11 +3,11 @@ const require_chunk = require('../../../chunk-BE-pF4vm.js');
|
|
|
3
3
|
let _hexclave_ui = require("@hexclave/ui");
|
|
4
4
|
let react = require("react");
|
|
5
5
|
let react_jsx_runtime = require("react/jsx-runtime");
|
|
6
|
-
let _________components_api_key_dialogs_js = require("../../../components/api-key-dialogs.js");
|
|
7
|
-
let _________components_api_key_table_js = require("../../../components/api-key-table.js");
|
|
8
6
|
let _________lib_hooks_js = require("../../../lib/hooks.js");
|
|
9
7
|
let _________lib_translations_js = require("../../../lib/translations.js");
|
|
10
8
|
let ___page_layout_js = require("../page-layout.js");
|
|
9
|
+
let _________components_api_key_dialogs_js = require("../../../components/api-key-dialogs.js");
|
|
10
|
+
let _________components_api_key_table_js = require("../../../components/api-key-table.js");
|
|
11
11
|
|
|
12
12
|
//#region src/components-page/account-settings/api-keys/api-keys-page.tsx
|
|
13
13
|
function ApiKeysPage(props) {
|
|
@@ -4,10 +4,10 @@ let _hexclave_shared_dist_utils_errors = require("@hexclave/shared/dist/utils/er
|
|
|
4
4
|
let _hexclave_ui = require("@hexclave/ui");
|
|
5
5
|
let react = require("react");
|
|
6
6
|
let react_jsx_runtime = require("react/jsx-runtime");
|
|
7
|
-
let _________components_api_key_dialogs_js = require("../../../components/api-key-dialogs.js");
|
|
8
|
-
let _________components_api_key_table_js = require("../../../components/api-key-table.js");
|
|
9
7
|
let _________lib_hooks_js = require("../../../lib/hooks.js");
|
|
10
8
|
let _________lib_translations_js = require("../../../lib/translations.js");
|
|
9
|
+
let _________components_api_key_dialogs_js = require("../../../components/api-key-dialogs.js");
|
|
10
|
+
let _________components_api_key_table_js = require("../../../components/api-key-table.js");
|
|
11
11
|
let ___section_js = require("../section.js");
|
|
12
12
|
|
|
13
13
|
//#region src/components-page/account-settings/teams/team-api-keys-section.tsx
|
|
@@ -3,10 +3,10 @@ import { captureError } from "@hexclave/shared/dist/utils/errors";
|
|
|
3
3
|
import { ActionCell, Badge, Button, Skeleton, Table, TableBody, TableCell, TableHead, TableHeader, TableRow, Typography } from "@hexclave/ui";
|
|
4
4
|
import { useEffect, useState } from "react";
|
|
5
5
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
6
|
+
import { fromNow } from "@hexclave/shared/dist/utils/dates";
|
|
6
7
|
import { useUser } from "../../../lib/hooks.js";
|
|
7
8
|
import { useTranslation } from "../../../lib/translations.js";
|
|
8
9
|
import { PageLayout } from "../page-layout.js";
|
|
9
|
-
import { fromNow } from "@hexclave/shared/dist/utils/dates";
|
|
10
10
|
|
|
11
11
|
//#region src/components-page/account-settings/active-sessions/active-sessions-page.tsx
|
|
12
12
|
function ActiveSessionsPage(props) {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Button } from "@hexclave/ui";
|
|
2
2
|
import { useState } from "react";
|
|
3
3
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
4
|
-
import { CreateApiKeyDialog, ShowApiKeyDialog } from "../../../components/api-key-dialogs.js";
|
|
5
|
-
import { ApiKeyTable } from "../../../components/api-key-table.js";
|
|
6
4
|
import { useUser } from "../../../lib/hooks.js";
|
|
7
5
|
import { useTranslation } from "../../../lib/translations.js";
|
|
8
6
|
import { PageLayout } from "../page-layout.js";
|
|
7
|
+
import { CreateApiKeyDialog, ShowApiKeyDialog } from "../../../components/api-key-dialogs.js";
|
|
8
|
+
import { ApiKeyTable } from "../../../components/api-key-table.js";
|
|
9
9
|
|
|
10
10
|
//#region src/components-page/account-settings/api-keys/api-keys-page.tsx
|
|
11
11
|
function ApiKeysPage(props) {
|
|
@@ -2,10 +2,10 @@ import { HexclaveAssertionError } from "@hexclave/shared/dist/utils/errors";
|
|
|
2
2
|
import { Button } from "@hexclave/ui";
|
|
3
3
|
import { useState } from "react";
|
|
4
4
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
-
import { CreateApiKeyDialog, ShowApiKeyDialog } from "../../../components/api-key-dialogs.js";
|
|
6
|
-
import { ApiKeyTable } from "../../../components/api-key-table.js";
|
|
7
5
|
import { useStackApp, useUser } from "../../../lib/hooks.js";
|
|
8
6
|
import { useTranslation } from "../../../lib/translations.js";
|
|
7
|
+
import { CreateApiKeyDialog, ShowApiKeyDialog } from "../../../components/api-key-dialogs.js";
|
|
8
|
+
import { ApiKeyTable } from "../../../components/api-key-table.js";
|
|
9
9
|
import { Section } from "../section.js";
|
|
10
10
|
|
|
11
11
|
//#region src/components-page/account-settings/teams/team-api-keys-section.tsx
|
|
@@ -14,7 +14,7 @@ import { envVars } from "../../../../generated/env.js";
|
|
|
14
14
|
import { resolveHandlerUrls } from "../../url-targets.js";
|
|
15
15
|
|
|
16
16
|
//#region src/lib/hexclave-app/apps/implementations/common.ts
|
|
17
|
-
const clientVersion = "js @hexclave/tanstack-start@1.0.
|
|
17
|
+
const clientVersion = "js @hexclave/tanstack-start@1.0.36";
|
|
18
18
|
if (clientVersion.startsWith("STACK_COMPILE_TIME")) throw new HexclaveAssertionError("Client version was not replaced. Something went wrong during build!");
|
|
19
19
|
const replaceHexclavePortPrefix = (input) => {
|
|
20
20
|
if (!input) return input;
|
|
@@ -17,7 +17,7 @@ let ____________generated_env_js = require("../../../../generated/env.js");
|
|
|
17
17
|
let ______url_targets_js = require("../../url-targets.js");
|
|
18
18
|
|
|
19
19
|
//#region src/lib/hexclave-app/apps/implementations/common.ts
|
|
20
|
-
const clientVersion = "js @hexclave/tanstack-start@1.0.
|
|
20
|
+
const clientVersion = "js @hexclave/tanstack-start@1.0.36";
|
|
21
21
|
if (clientVersion.startsWith("STACK_COMPILE_TIME")) throw new _hexclave_shared_dist_utils_errors.HexclaveAssertionError("Client version was not replaced. Something went wrong during build!");
|
|
22
22
|
const replaceHexclavePortPrefix = (input) => {
|
|
23
23
|
if (!input) return input;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"//": "THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY UNLESS YOU ALSO EDIT THE CORRESPONDING FILE IN packages/template (FOR package.json FILES, PLEASE EDIT package-template.json)",
|
|
3
3
|
"name": "@hexclave/tanstack-start",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.36",
|
|
5
5
|
"repository": "https://github.com/hexclave/hexclave",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -85,8 +85,8 @@
|
|
|
85
85
|
"tailwindcss-animate": "^1.0.7",
|
|
86
86
|
"rrweb": "^1.1.3",
|
|
87
87
|
"yup": "^1.7.1",
|
|
88
|
-
"@hexclave/shared": "1.0.
|
|
89
|
-
"@hexclave/ui": "1.0.
|
|
88
|
+
"@hexclave/shared": "1.0.36",
|
|
89
|
+
"@hexclave/ui": "1.0.36"
|
|
90
90
|
},
|
|
91
91
|
"peerDependencies": {
|
|
92
92
|
"@types/react": ">=18.0.0",
|