@carlonicora/nextjs-jsonapi 3.8.2 → 3.10.0
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/{BlockNoteEditor-KRGDA5RX.js → BlockNoteEditor-4UAIVF3G.js} +19 -19
- package/dist/{BlockNoteEditor-KRGDA5RX.js.map → BlockNoteEditor-4UAIVF3G.js.map} +1 -1
- package/dist/BlockNoteEditor-K55A4FS2.css +30 -0
- package/dist/BlockNoteEditor-K55A4FS2.css.map +1 -0
- package/dist/{BlockNoteEditor-34AZITDR.mjs → BlockNoteEditor-PFCHUFTD.mjs} +4 -4
- package/dist/{BlockNoteViewer-6N2GQWTI.js → BlockNoteViewer-C2UUOBAF.js} +17 -3
- package/dist/BlockNoteViewer-C2UUOBAF.js.map +1 -0
- package/dist/{BlockNoteViewer-IBQRJ3WM.mjs → BlockNoteViewer-TYLVTIUD.mjs} +17 -3
- package/dist/BlockNoteViewer-TYLVTIUD.mjs.map +1 -0
- package/dist/billing/index.css +22 -21
- package/dist/billing/index.css.map +1 -1
- package/dist/billing/index.js +398 -398
- package/dist/billing/index.mjs +3 -3
- package/dist/{chunk-DGAVM2LZ.js → chunk-46CQ3RRQ.js} +1315 -1069
- package/dist/chunk-46CQ3RRQ.js.map +1 -0
- package/dist/{chunk-UYLS3LJW.js → chunk-6J2SQZ3G.js} +11 -1
- package/dist/chunk-6J2SQZ3G.js.map +1 -0
- package/dist/{chunk-2D4MFVDV.mjs → chunk-IMSIVIIC.mjs} +2 -2
- package/dist/{chunk-HDZ2BL6D.mjs → chunk-M5QAHSCY.mjs} +11 -1
- package/dist/{chunk-HDZ2BL6D.mjs.map → chunk-M5QAHSCY.mjs.map} +1 -1
- package/dist/{chunk-TULJCLZA.js → chunk-V6CGCARD.js} +7 -7
- package/dist/{chunk-TULJCLZA.js.map → chunk-V6CGCARD.js.map} +1 -1
- package/dist/{chunk-GXSXD4OR.mjs → chunk-XZJJ4SZW.mjs} +2073 -1827
- package/dist/chunk-XZJJ4SZW.mjs.map +1 -0
- package/dist/client/index.css +22 -21
- package/dist/client/index.css.map +1 -1
- package/dist/client/index.js +4 -4
- package/dist/client/index.mjs +3 -3
- package/dist/components/index.css +22 -21
- package/dist/components/index.css.map +1 -1
- package/dist/components/index.d.mts +77 -15
- package/dist/components/index.d.ts +77 -15
- package/dist/components/index.js +8 -4
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +7 -3
- package/dist/contexts/index.css +22 -21
- package/dist/contexts/index.css.map +1 -1
- package/dist/contexts/index.d.mts +17 -4
- package/dist/contexts/index.d.ts +17 -4
- package/dist/contexts/index.js +10 -4
- package/dist/contexts/index.js.map +1 -1
- package/dist/contexts/index.mjs +9 -3
- package/dist/core/index.d.mts +13 -0
- package/dist/core/index.d.ts +13 -0
- package/dist/core/index.js +2 -2
- package/dist/core/index.mjs +1 -1
- package/dist/features/help/index.css +22 -21
- package/dist/features/help/index.css.map +1 -1
- package/dist/features/help/index.d.mts +6 -1
- package/dist/features/help/index.d.ts +6 -1
- package/dist/features/help/index.js +39 -38
- package/dist/features/help/index.js.map +1 -1
- package/dist/features/help/index.mjs +4 -3
- package/dist/features/tokenusage/index.css +22 -21
- package/dist/features/tokenusage/index.css.map +1 -1
- package/dist/features/tokenusage/index.js +102 -102
- package/dist/features/tokenusage/index.js.map +1 -1
- package/dist/features/tokenusage/index.mjs +4 -4
- package/dist/features/tokenusage/index.mjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.mjs +2 -2
- package/dist/{onboarding.interface-Djyl9qYu.d.mts → onboarding.interface-DVUOUC4y.d.mts} +4 -1
- package/dist/{onboarding.interface-Djyl9qYu.d.ts → onboarding.interface-DVUOUC4y.d.ts} +4 -1
- package/dist/server/index.js +3 -3
- package/dist/server/index.mjs +1 -1
- package/package.json +2 -2
- package/src/components/containers/RoundPageContainer.tsx +38 -16
- package/src/components/containers/RoundPageContainerTitle.tsx +11 -3
- package/src/components/containers/TabsContainer.tsx +11 -0
- package/src/components/forms/CommonDeleter.tsx +14 -1
- package/src/components/forms/EditorSheet.tsx +66 -47
- package/src/components/grids/ContentListGrid.tsx +1 -1
- package/src/components/navigations/MobileNavigationBar.tsx +1 -0
- package/src/components/tables/ContentListTable.tsx +1 -1
- package/src/components/tables/ContentTableSearch.tsx +1 -0
- package/src/components/viewers/BlockNoteViewer.tsx +13 -2
- package/src/components/viewers/BlockNoteViewerContainer.tsx +4 -1
- package/src/contexts/ActionBarContext.tsx +23 -0
- package/src/contexts/index.ts +1 -0
- package/src/features/assistant/components/index.ts +2 -0
- package/src/features/assistant/components/parts/AssistantComposer.tsx +1 -1
- package/src/features/assistant/components/parts/__tests__/AssistantComposer.spec.tsx +2 -2
- package/src/features/assistant-action/components/ApprovalActionCard.tsx +325 -4
- package/src/features/assistant-action/components/__tests__/ApprovalActionCard.spec.tsx +268 -0
- package/src/features/assistant-action/data/AssistantAction.ts +12 -0
- package/src/features/assistant-action/data/AssistantActionInterface.ts +9 -0
- package/src/features/assistant-action/data/__tests__/AssistantAction.spec.ts +11 -0
- package/src/features/help/index.ts +1 -0
- package/src/features/onboarding/components/OnboardingCard.tsx +1 -2
- package/src/features/onboarding/contexts/OnboardingContext.spec.tsx +191 -0
- package/src/features/onboarding/contexts/OnboardingContext.tsx +176 -125
- package/src/features/onboarding/interfaces/onboarding.interface.ts +4 -0
- package/src/features/onboarding/styles/onboarding.css +25 -30
- package/src/features/tokenusage/components/TokenUsageReportFilterBar.tsx +1 -1
- package/src/shadcnui/ui/command.tsx +9 -0
- package/dist/BlockNoteEditor-YOAJRPWU.css +0 -29
- package/dist/BlockNoteEditor-YOAJRPWU.css.map +0 -1
- package/dist/BlockNoteViewer-6N2GQWTI.js.map +0 -1
- package/dist/BlockNoteViewer-IBQRJ3WM.mjs.map +0 -1
- package/dist/chunk-DGAVM2LZ.js.map +0 -1
- package/dist/chunk-GXSXD4OR.mjs.map +0 -1
- package/dist/chunk-UYLS3LJW.js.map +0 -1
- /package/dist/{BlockNoteEditor-34AZITDR.mjs.map → BlockNoteEditor-PFCHUFTD.mjs.map} +0 -0
- /package/dist/{chunk-2D4MFVDV.mjs.map → chunk-IMSIVIIC.mjs.map} +0 -0
package/dist/client/index.css
CHANGED
|
@@ -1,29 +1,30 @@
|
|
|
1
1
|
/* src/features/onboarding/styles/onboarding.css */
|
|
2
|
-
.
|
|
3
|
-
|
|
2
|
+
.driver-popover.onboarding-popover {
|
|
3
|
+
background: transparent;
|
|
4
|
+
box-shadow: none;
|
|
5
|
+
padding: 0;
|
|
6
|
+
border-radius: 0;
|
|
7
|
+
max-width: none;
|
|
8
|
+
width: auto;
|
|
9
|
+
overflow: visible;
|
|
10
|
+
color: inherit;
|
|
4
11
|
}
|
|
5
|
-
.
|
|
6
|
-
|
|
12
|
+
.driver-popover.onboarding-popover .driver-popover-title,
|
|
13
|
+
.driver-popover.onboarding-popover .driver-popover-description,
|
|
14
|
+
.driver-popover.onboarding-popover .driver-popover-footer,
|
|
15
|
+
.driver-popover.onboarding-popover .driver-popover-close-btn {
|
|
16
|
+
display: none;
|
|
7
17
|
}
|
|
8
|
-
.
|
|
9
|
-
|
|
10
|
-
border: none !important;
|
|
11
|
-
box-shadow: none !important;
|
|
12
|
-
padding: 0 !important;
|
|
13
|
-
max-width: none !important;
|
|
18
|
+
.driver-popover.onboarding-popover .driver-popover-arrow-side-top {
|
|
19
|
+
border-top-color: var(--card);
|
|
14
20
|
}
|
|
15
|
-
.
|
|
16
|
-
|
|
17
|
-
padding: 0 !important;
|
|
21
|
+
.driver-popover.onboarding-popover .driver-popover-arrow-side-bottom {
|
|
22
|
+
border-bottom-color: var(--card);
|
|
18
23
|
}
|
|
19
|
-
.
|
|
20
|
-
|
|
24
|
+
.driver-popover.onboarding-popover .driver-popover-arrow-side-left {
|
|
25
|
+
border-left-color: var(--card);
|
|
21
26
|
}
|
|
22
|
-
.
|
|
23
|
-
|
|
24
|
-
display: none !important;
|
|
25
|
-
}
|
|
26
|
-
.dark .shepherd-arrow::before {
|
|
27
|
-
background: hsl(var(--card)) !important;
|
|
27
|
+
.driver-popover.onboarding-popover .driver-popover-arrow-side-right {
|
|
28
|
+
border-right-color: var(--card);
|
|
28
29
|
}
|
|
29
30
|
/*# sourceMappingURL=index.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/features/onboarding/styles/onboarding.css"],"sourcesContent":["/*
|
|
1
|
+
{"version":3,"sources":["../../src/features/onboarding/styles/onboarding.css"],"sourcesContent":["/* driver.js chrome is hidden: the React card mounted by OnboardingContext is the whole popover. */\n.driver-popover.onboarding-popover {\n background: transparent;\n box-shadow: none;\n padding: 0;\n border-radius: 0;\n max-width: none;\n width: auto;\n /* The card is the popover; driver.js's own clipping would cut it off. */\n overflow: visible;\n color: inherit;\n}\n\n.driver-popover.onboarding-popover .driver-popover-title,\n.driver-popover.onboarding-popover .driver-popover-description,\n.driver-popover.onboarding-popover .driver-popover-footer,\n.driver-popover.onboarding-popover .driver-popover-close-btn {\n display: none;\n}\n\n/* Arrow colour follows the card surface so it reads as part of it. */\n.driver-popover.onboarding-popover .driver-popover-arrow-side-top {\n border-top-color: var(--card);\n}\n.driver-popover.onboarding-popover .driver-popover-arrow-side-bottom {\n border-bottom-color: var(--card);\n}\n.driver-popover.onboarding-popover .driver-popover-arrow-side-left {\n border-left-color: var(--card);\n}\n.driver-popover.onboarding-popover .driver-popover-arrow-side-right {\n border-right-color: var(--card);\n}\n"],"mappings":";AACA,CAAC,cAAc,CAAC;AACd,cAAY;AACZ,cAAY;AACZ,WAAS;AACT,iBAAe;AACf,aAAW;AACX,SAAO;AAEP,YAAU;AACV,SAAO;AACT;AAEA,CAZC,cAYc,CAZC,mBAYmB,CAAC;AACpC,CAbC,cAac,CAbC,mBAamB,CAAC;AACpC,CAdC,cAcc,CAdC,mBAcmB,CAAC;AACpC,CAfC,cAec,CAfC,mBAemB,CAAC;AAClC,WAAS;AACX;AAGA,CApBC,cAoBc,CApBC,mBAoBmB,CAAC;AAClC,oBAAkB,IAAI;AACxB;AACA,CAvBC,cAuBc,CAvBC,mBAuBmB,CAAC;AAClC,uBAAqB,IAAI;AAC3B;AACA,CA1BC,cA0Bc,CA1BC,mBA0BmB,CAAC;AAClC,qBAAmB,IAAI;AACzB;AACA,CA7BC,cA6Bc,CA7BC,mBA6BmB,CAAC;AAClC,sBAAoB,IAAI;AAC1B;","names":[]}
|
package/dist/client/index.js
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
var
|
|
31
|
+
var _chunk46CQ3RRQjs = require('../chunk-46CQ3RRQ.js');
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
|
|
@@ -43,7 +43,7 @@ var _chunkDGAVM2LZjs = require('../chunk-DGAVM2LZ.js');
|
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
var
|
|
46
|
+
var _chunkV6CGCARDjs = require('../chunk-V6CGCARD.js');
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
|
|
@@ -55,7 +55,7 @@ var _chunkTULJCLZAjs = require('../chunk-TULJCLZA.js');
|
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
var
|
|
58
|
+
var _chunk6J2SQZ3Gjs = require('../chunk-6J2SQZ3G.js');
|
|
59
59
|
|
|
60
60
|
|
|
61
61
|
var _chunkLXKSUWAVjs = require('../chunk-LXKSUWAV.js');
|
|
@@ -125,5 +125,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
125
125
|
|
|
126
126
|
|
|
127
127
|
|
|
128
|
-
exports.ClientJsonApiDelete =
|
|
128
|
+
exports.ClientJsonApiDelete = _chunk6J2SQZ3Gjs.ClientJsonApiDelete; exports.ClientJsonApiGet = _chunk6J2SQZ3Gjs.ClientJsonApiGet; exports.ClientJsonApiPatch = _chunk6J2SQZ3Gjs.ClientJsonApiPatch; exports.ClientJsonApiPost = _chunk6J2SQZ3Gjs.ClientJsonApiPost; exports.ClientJsonApiPut = _chunk6J2SQZ3Gjs.ClientJsonApiPut; exports.JsonApiContext = _chunk3EPNHTMHjs.JsonApiContext; exports.JsonApiProvider = _chunk46CQ3RRQjs.JsonApiProvider; exports.TableGeneratorRegistry = _chunk46CQ3RRQjs.TableGeneratorRegistry; exports.buildClientUrl = _chunk6J2SQZ3Gjs.buildClientUrl; exports.computeLayeredLayout = _chunk46CQ3RRQjs.computeLayeredLayout; exports.configureClientConfig = _chunkV6CGCARDjs.configureClientConfig; exports.configureClientJsonApi = _chunk6J2SQZ3Gjs.configureClientJsonApi; exports.configureI18n = _chunkV6CGCARDjs.configureI18n; exports.configureJsonApi = _chunkV6CGCARDjs.configureJsonApi; exports.directFetch = _chunkIBS6NI7Djs.directFetch; exports.fitLayeredLayoutToAspectRatio = _chunk46CQ3RRQjs.fitLayeredLayoutToAspectRatio; exports.getApiUrl = _chunkV6CGCARDjs.getApiUrl; exports.getAppUrl = _chunkV6CGCARDjs.getAppUrl; exports.getClientApiUrl = _chunk6J2SQZ3Gjs.getClientApiUrl; exports.getClientAppUrl = _chunk6J2SQZ3Gjs.getClientAppUrl; exports.getClientToken = _chunkLXKSUWAVjs.getClientToken; exports.getClientTrackablePages = _chunk6J2SQZ3Gjs.getClientTrackablePages; exports.getI18nLink = _chunkV6CGCARDjs.getI18nLink; exports.getPublicApiUrl = _chunkV6CGCARDjs.getPublicApiUrl; exports.getStripePublishableKey = _chunkV6CGCARDjs.getStripePublishableKey; exports.getTrackablePages = _chunkV6CGCARDjs.getTrackablePages; exports.registerTableGenerator = _chunk46CQ3RRQjs.registerTableGenerator; exports.tableGeneratorRegistry = _chunk46CQ3RRQjs.tableGeneratorRegistry; exports.useContentTableStructure = _chunk46CQ3RRQjs.useContentTableStructure; exports.useCustomD3Graph = _chunk46CQ3RRQjs.useCustomD3Graph; exports.useDataListRetriever = _chunk46CQ3RRQjs.useDataListRetriever; exports.useDebounce = _chunk46CQ3RRQjs.useDebounce; exports.useI18nDateFnsLocale = _chunkV6CGCARDjs.useI18nDateFnsLocale; exports.useI18nLocale = _chunkV6CGCARDjs.useI18nLocale; exports.useI18nRouter = _chunkV6CGCARDjs.useI18nRouter; exports.useI18nTranslations = _chunkV6CGCARDjs.useI18nTranslations; exports.useJsonApiConfig = _chunk3EPNHTMHjs.useJsonApiConfig; exports.useJsonApiConfigOptional = _chunk3EPNHTMHjs.useJsonApiConfigOptional; exports.useJsonApiGet = _chunk46CQ3RRQjs.useJsonApiGet; exports.useJsonApiMutation = _chunk46CQ3RRQjs.useJsonApiMutation; exports.useNotificationSync = _chunk46CQ3RRQjs.useNotificationSync; exports.useOAuthClient = _chunk46CQ3RRQjs.useOAuthClient; exports.useOAuthClients = _chunk46CQ3RRQjs.useOAuthClients; exports.useOAuthConsent = _chunk46CQ3RRQjs.useOAuthConsent; exports.usePageTracker = _chunk46CQ3RRQjs.usePageTracker; exports.usePageUrlGenerator = _chunk46CQ3RRQjs.usePageUrlGenerator; exports.useRehydration = _chunk46CQ3RRQjs.useRehydration; exports.useRehydrationList = _chunk46CQ3RRQjs.useRehydrationList; exports.useRoleTableStructure = _chunk46CQ3RRQjs.useRoleTableStructure; exports.useSocket = _chunk46CQ3RRQjs.useSocket; exports.useSubscriptionStatus = _chunk46CQ3RRQjs.useSubscriptionStatus; exports.useTableGenerator = _chunk46CQ3RRQjs.useTableGenerator; exports.useUrlRewriter = _chunk46CQ3RRQjs.useUrlRewriter; exports.useUserSearch = _chunk46CQ3RRQjs.useUserSearch; exports.useUserTableStructure = _chunk46CQ3RRQjs.useUserTableStructure;
|
|
129
129
|
//# sourceMappingURL=index.js.map
|
package/dist/client/index.mjs
CHANGED
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
useUrlRewriter,
|
|
28
28
|
useUserSearch,
|
|
29
29
|
useUserTableStructure
|
|
30
|
-
} from "../chunk-
|
|
30
|
+
} from "../chunk-XZJJ4SZW.mjs";
|
|
31
31
|
import {
|
|
32
32
|
configureClientConfig,
|
|
33
33
|
configureI18n,
|
|
@@ -42,7 +42,7 @@ import {
|
|
|
42
42
|
useI18nLocale,
|
|
43
43
|
useI18nRouter,
|
|
44
44
|
useI18nTranslations
|
|
45
|
-
} from "../chunk-
|
|
45
|
+
} from "../chunk-IMSIVIIC.mjs";
|
|
46
46
|
import {
|
|
47
47
|
ClientJsonApiDelete,
|
|
48
48
|
ClientJsonApiGet,
|
|
@@ -54,7 +54,7 @@ import {
|
|
|
54
54
|
getClientApiUrl,
|
|
55
55
|
getClientAppUrl,
|
|
56
56
|
getClientTrackablePages
|
|
57
|
-
} from "../chunk-
|
|
57
|
+
} from "../chunk-M5QAHSCY.mjs";
|
|
58
58
|
import {
|
|
59
59
|
getClientToken
|
|
60
60
|
} from "../chunk-AUXK7QSA.mjs";
|
|
@@ -1,29 +1,30 @@
|
|
|
1
1
|
/* src/features/onboarding/styles/onboarding.css */
|
|
2
|
-
.
|
|
3
|
-
|
|
2
|
+
.driver-popover.onboarding-popover {
|
|
3
|
+
background: transparent;
|
|
4
|
+
box-shadow: none;
|
|
5
|
+
padding: 0;
|
|
6
|
+
border-radius: 0;
|
|
7
|
+
max-width: none;
|
|
8
|
+
width: auto;
|
|
9
|
+
overflow: visible;
|
|
10
|
+
color: inherit;
|
|
4
11
|
}
|
|
5
|
-
.
|
|
6
|
-
|
|
12
|
+
.driver-popover.onboarding-popover .driver-popover-title,
|
|
13
|
+
.driver-popover.onboarding-popover .driver-popover-description,
|
|
14
|
+
.driver-popover.onboarding-popover .driver-popover-footer,
|
|
15
|
+
.driver-popover.onboarding-popover .driver-popover-close-btn {
|
|
16
|
+
display: none;
|
|
7
17
|
}
|
|
8
|
-
.
|
|
9
|
-
|
|
10
|
-
border: none !important;
|
|
11
|
-
box-shadow: none !important;
|
|
12
|
-
padding: 0 !important;
|
|
13
|
-
max-width: none !important;
|
|
18
|
+
.driver-popover.onboarding-popover .driver-popover-arrow-side-top {
|
|
19
|
+
border-top-color: var(--card);
|
|
14
20
|
}
|
|
15
|
-
.
|
|
16
|
-
|
|
17
|
-
padding: 0 !important;
|
|
21
|
+
.driver-popover.onboarding-popover .driver-popover-arrow-side-bottom {
|
|
22
|
+
border-bottom-color: var(--card);
|
|
18
23
|
}
|
|
19
|
-
.
|
|
20
|
-
|
|
24
|
+
.driver-popover.onboarding-popover .driver-popover-arrow-side-left {
|
|
25
|
+
border-left-color: var(--card);
|
|
21
26
|
}
|
|
22
|
-
.
|
|
23
|
-
|
|
24
|
-
display: none !important;
|
|
25
|
-
}
|
|
26
|
-
.dark .shepherd-arrow::before {
|
|
27
|
-
background: hsl(var(--card)) !important;
|
|
27
|
+
.driver-popover.onboarding-popover .driver-popover-arrow-side-right {
|
|
28
|
+
border-right-color: var(--card);
|
|
28
29
|
}
|
|
29
30
|
/*# sourceMappingURL=index.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/features/onboarding/styles/onboarding.css"],"sourcesContent":["/*
|
|
1
|
+
{"version":3,"sources":["../../src/features/onboarding/styles/onboarding.css"],"sourcesContent":["/* driver.js chrome is hidden: the React card mounted by OnboardingContext is the whole popover. */\n.driver-popover.onboarding-popover {\n background: transparent;\n box-shadow: none;\n padding: 0;\n border-radius: 0;\n max-width: none;\n width: auto;\n /* The card is the popover; driver.js's own clipping would cut it off. */\n overflow: visible;\n color: inherit;\n}\n\n.driver-popover.onboarding-popover .driver-popover-title,\n.driver-popover.onboarding-popover .driver-popover-description,\n.driver-popover.onboarding-popover .driver-popover-footer,\n.driver-popover.onboarding-popover .driver-popover-close-btn {\n display: none;\n}\n\n/* Arrow colour follows the card surface so it reads as part of it. */\n.driver-popover.onboarding-popover .driver-popover-arrow-side-top {\n border-top-color: var(--card);\n}\n.driver-popover.onboarding-popover .driver-popover-arrow-side-bottom {\n border-bottom-color: var(--card);\n}\n.driver-popover.onboarding-popover .driver-popover-arrow-side-left {\n border-left-color: var(--card);\n}\n.driver-popover.onboarding-popover .driver-popover-arrow-side-right {\n border-right-color: var(--card);\n}\n"],"mappings":";AACA,CAAC,cAAc,CAAC;AACd,cAAY;AACZ,cAAY;AACZ,WAAS;AACT,iBAAe;AACf,aAAW;AACX,SAAO;AAEP,YAAU;AACV,SAAO;AACT;AAEA,CAZC,cAYc,CAZC,mBAYmB,CAAC;AACpC,CAbC,cAac,CAbC,mBAamB,CAAC;AACpC,CAdC,cAcc,CAdC,mBAcmB,CAAC;AACpC,CAfC,cAec,CAfC,mBAemB,CAAC;AAClC,WAAS;AACX;AAGA,CApBC,cAoBc,CApBC,mBAoBmB,CAAC;AAClC,oBAAkB,IAAI;AACxB;AACA,CAvBC,cAuBc,CAvBC,mBAuBmB,CAAC;AAClC,uBAAqB,IAAI;AAC3B;AACA,CA1BC,cA0Bc,CA1BC,mBA0BmB,CAAC;AAClC,qBAAmB,IAAI;AACzB;AACA,CA7BC,cA6Bc,CA7BC,mBA6BmB,CAAC;AAClC,sBAAoB,IAAI;AAC1B;","names":[]}
|
|
@@ -25,7 +25,7 @@ import { J as JsonApiHydratedDataInterface, A as ApiDataInterface } from '../Api
|
|
|
25
25
|
import { b as AuthInterface } from '../auth.interface-jYD8Gc4P.mjs';
|
|
26
26
|
import { LucideIcon, Loader2Icon } from 'lucide-react';
|
|
27
27
|
import z from 'zod';
|
|
28
|
-
import {
|
|
28
|
+
import { h as OnboardingCardRenderProps } from '../onboarding.interface-DVUOUC4y.mjs';
|
|
29
29
|
import { e as OAuthScopeInfo, O as OAuthClientInterface, b as OAuthClientCreateRequest, d as OAuthConsentRequest } from '../oauth.interface-DRE3NAKc.mjs';
|
|
30
30
|
import { Q as QuestionnaireField } from '../waitlist.config-kPfjImle.mjs';
|
|
31
31
|
import { P as PermissionValue } from '../RbacTypes-BTbr27Ew.mjs';
|
|
@@ -205,6 +205,16 @@ type Tab = {
|
|
|
205
205
|
* because it doesn't own the surrounding scroll container.
|
|
206
206
|
*/
|
|
207
207
|
fillHeight?: boolean;
|
|
208
|
+
/**
|
|
209
|
+
* Keep the tab's content in the centred reading column (`max-w-6xl`) under
|
|
210
|
+
* `layout="rail"` even when `fillHeight` is set.
|
|
211
|
+
*
|
|
212
|
+
* A rail's `fillHeight` tab is full-bleed by default, which is what a
|
|
213
|
+
* two-pane browser, a canvas or a map wants. Prose does not: an editor
|
|
214
|
+
* stretched across a wide screen is unreadable. Non-fill-height tabs are
|
|
215
|
+
* already constrained, so this flag only matters alongside `fillHeight`.
|
|
216
|
+
*/
|
|
217
|
+
constrainWidth?: boolean;
|
|
208
218
|
};
|
|
209
219
|
type TabsContainerProps = {
|
|
210
220
|
tabs: Tab[];
|
|
@@ -475,6 +485,7 @@ declare function BlockNoteEditorMentionHoverCard({ containerRef, mentionResolveF
|
|
|
475
485
|
|
|
476
486
|
declare const BlockNoteViewerContainer: React__default.MemoExoticComponent<(props: {
|
|
477
487
|
content: unknown;
|
|
488
|
+
size?: "default" | "sm";
|
|
478
489
|
}) => React__default.JSX.Element>;
|
|
479
490
|
|
|
480
491
|
declare function ErrorDetails({ title, message, code }: {
|
|
@@ -536,11 +547,17 @@ type CommonDeleterProps = {
|
|
|
536
547
|
testId?: string;
|
|
537
548
|
/** Custom trigger element replacing the default trash button. */
|
|
538
549
|
trigger?: ReactNode;
|
|
550
|
+
/**
|
|
551
|
+
* Force the default trigger to show / hide its text label. Left unset it
|
|
552
|
+
* follows `useIsInActionBar()`: labelled in a page action bar, glyph-only in
|
|
553
|
+
* a table row or a sheet header, where there is no room for the word.
|
|
554
|
+
*/
|
|
555
|
+
showLabel?: boolean;
|
|
539
556
|
onSuccess?: () => void | Promise<void>;
|
|
540
557
|
/** Fired after a successful delete, in addition to redirect/onSuccess. */
|
|
541
558
|
propagateChanges?: () => void;
|
|
542
559
|
};
|
|
543
|
-
declare function CommonDeleter({ deleteFunction, redirectTo, type, title, subtitle, description, forceShow, testId, trigger, onSuccess, propagateChanges, }: CommonDeleterProps): React$1.JSX.Element;
|
|
560
|
+
declare function CommonDeleter({ deleteFunction, redirectTo, type, title, subtitle, description, forceShow, testId, trigger, showLabel, onSuccess, propagateChanges, }: CommonDeleterProps): React$1.JSX.Element;
|
|
544
561
|
|
|
545
562
|
type CommonEditorButtonsProps = {
|
|
546
563
|
isEdit: boolean;
|
|
@@ -695,6 +712,13 @@ type EditorSheetProps<T extends FieldValues> = {
|
|
|
695
712
|
hideSubmit?: boolean;
|
|
696
713
|
centerButtons?: ReactNode;
|
|
697
714
|
trigger?: ReactNode;
|
|
715
|
+
/**
|
|
716
|
+
* Force the default edit trigger to show / hide its text label. Left unset it
|
|
717
|
+
* follows `useIsInActionBar()`: labelled in a page action bar, glyph-only in
|
|
718
|
+
* a table row or an inline cell, where there is no room for the word. The
|
|
719
|
+
* create trigger is always labelled.
|
|
720
|
+
*/
|
|
721
|
+
showLabel?: boolean;
|
|
698
722
|
forceShow?: boolean;
|
|
699
723
|
onClose?: () => void;
|
|
700
724
|
dialogOpen?: boolean;
|
|
@@ -715,7 +739,7 @@ type EditorSheetProps<T extends FieldValues> = {
|
|
|
715
739
|
actions?: ReactNode;
|
|
716
740
|
children: ReactNode;
|
|
717
741
|
};
|
|
718
|
-
declare function EditorSheet<T extends FieldValues>({ form, onSubmit, onReset, isFormDirty: isFormDirtyProp, entityType, entityName, title: titleOverride, description: descriptionOverride, isEdit, module, propagateChanges, onSuccess, onRevalidate, onNavigate, onSaved, size, disabled, hideSubmit, centerButtons, trigger, forceShow, onClose, dialogOpen, onDialogOpenChange, renderFooter, actions, children, }: EditorSheetProps<T>): React$1.JSX.Element;
|
|
742
|
+
declare function EditorSheet<T extends FieldValues>({ form, onSubmit, onReset, isFormDirty: isFormDirtyProp, entityType, entityName, title: titleOverride, description: descriptionOverride, isEdit, module, propagateChanges, onSuccess, onRevalidate, onNavigate, onSaved, size, disabled, hideSubmit, centerButtons, trigger, showLabel, forceShow, onClose, dialogOpen, onDialogOpenChange, renderFooter, actions, children, }: EditorSheetProps<T>): React$1.JSX.Element;
|
|
719
743
|
|
|
720
744
|
type EntityMultiSelectorProps<T extends {
|
|
721
745
|
id: string;
|
|
@@ -1847,7 +1871,7 @@ type MentionRenderer = (p: {
|
|
|
1847
1871
|
id: string;
|
|
1848
1872
|
alias: string;
|
|
1849
1873
|
}) => ReactNode;
|
|
1850
|
-
interface Props$
|
|
1874
|
+
interface Props$a {
|
|
1851
1875
|
message: AssistantMessageInterface;
|
|
1852
1876
|
isLatestAssistant: boolean;
|
|
1853
1877
|
onSelectFollowUp: (q: string) => void;
|
|
@@ -1856,9 +1880,9 @@ interface Props$8 {
|
|
|
1856
1880
|
renderApprovalAction?: ApprovalActionRenderer;
|
|
1857
1881
|
renderMention?: MentionRenderer;
|
|
1858
1882
|
}
|
|
1859
|
-
declare function MessageItem({ message, isLatestAssistant, onSelectFollowUp, failedMessageIds, onRetry, renderApprovalAction, renderMention, }: Props$
|
|
1883
|
+
declare function MessageItem({ message, isLatestAssistant, onSelectFollowUp, failedMessageIds, onRetry, renderApprovalAction, renderMention, }: Props$a): React$1.JSX.Element;
|
|
1860
1884
|
|
|
1861
|
-
interface Props$
|
|
1885
|
+
interface Props$9 {
|
|
1862
1886
|
/**
|
|
1863
1887
|
* Optional renderer for `approval-request` messages (operator engine). The
|
|
1864
1888
|
* approval card component lives in the consuming app, which registers the
|
|
@@ -1867,9 +1891,9 @@ interface Props$7 {
|
|
|
1867
1891
|
*/
|
|
1868
1892
|
renderApprovalAction?: ApprovalActionRenderer;
|
|
1869
1893
|
}
|
|
1870
|
-
declare function AssistantContainer({ renderApprovalAction }?: Props$
|
|
1894
|
+
declare function AssistantContainer({ renderApprovalAction }?: Props$9): React$1.JSX.Element;
|
|
1871
1895
|
|
|
1872
|
-
interface Props$
|
|
1896
|
+
interface Props$8 {
|
|
1873
1897
|
renderApprovalAction?: ApprovalActionRenderer;
|
|
1874
1898
|
renderMention?: MentionRenderer;
|
|
1875
1899
|
mentionSearchFn?: (query: string, params?: Record<string, string>) => Promise<MentionItem[]>;
|
|
@@ -1896,9 +1920,9 @@ interface Props$6 {
|
|
|
1896
1920
|
* the conversation fills the card. Unlike `AssistantContainer` the composer is
|
|
1897
1921
|
* the BlockNote one, so the very first message of a thread can carry mentions.
|
|
1898
1922
|
*/
|
|
1899
|
-
declare function AssistantPageContainer({ renderApprovalAction, renderMention, mentionSearchFn, mentionSearchParams, mentionResolveFn, suggestionMenuComponent, detailsTitle, detailsIcon, disabled, }: Props$
|
|
1923
|
+
declare function AssistantPageContainer({ renderApprovalAction, renderMention, mentionSearchFn, mentionSearchParams, mentionResolveFn, suggestionMenuComponent, detailsTitle, detailsIcon, disabled, }: Props$8): React__default.JSX.Element;
|
|
1900
1924
|
|
|
1901
|
-
interface Props$
|
|
1925
|
+
interface Props$7 {
|
|
1902
1926
|
onSend: (content: string, opts: {
|
|
1903
1927
|
contentBlocks: unknown[];
|
|
1904
1928
|
}) => Promise<void>;
|
|
@@ -1917,7 +1941,27 @@ interface Props$5 {
|
|
|
1917
1941
|
* sends the BlockNote document alongside the flattened text, so the server can
|
|
1918
1942
|
* resolve `@`-mentions to real entities and pin them into the agent's focus.
|
|
1919
1943
|
*/
|
|
1920
|
-
declare function AssistantBlockNoteComposer({ onSend, disabled, mentionSearchFn, mentionSearchParams, mentionResolveFn, suggestionMenuComponent, }: Props$
|
|
1944
|
+
declare function AssistantBlockNoteComposer({ onSend, disabled, mentionSearchFn, mentionSearchParams, mentionResolveFn, suggestionMenuComponent, }: Props$7): React$1.JSX.Element;
|
|
1945
|
+
|
|
1946
|
+
interface Props$6 {
|
|
1947
|
+
messages: AssistantMessageInterface[];
|
|
1948
|
+
sending: boolean;
|
|
1949
|
+
status?: string;
|
|
1950
|
+
onSelectFollowUp: (q: string) => void;
|
|
1951
|
+
failedMessageIds?: Set<string>;
|
|
1952
|
+
onRetry?: (tempId: string) => void;
|
|
1953
|
+
renderApprovalAction?: ApprovalActionRenderer;
|
|
1954
|
+
renderMention?: MentionRenderer;
|
|
1955
|
+
}
|
|
1956
|
+
declare function AssistantThread({ messages, sending, status, onSelectFollowUp, failedMessageIds, onRetry, renderApprovalAction, renderMention, }: Props$6): React$1.JSX.Element;
|
|
1957
|
+
|
|
1958
|
+
interface Props$5 {
|
|
1959
|
+
onSend: (content: string) => Promise<void>;
|
|
1960
|
+
disabled?: boolean;
|
|
1961
|
+
value?: string;
|
|
1962
|
+
onValueChange?: (v: string) => void;
|
|
1963
|
+
}
|
|
1964
|
+
declare function AssistantComposer({ onSend, disabled, value: controlled, onValueChange }: Props$5): React$1.JSX.Element;
|
|
1921
1965
|
|
|
1922
1966
|
interface Props$4 {
|
|
1923
1967
|
messages: AssistantMessageInterface[];
|
|
@@ -1952,18 +1996,28 @@ interface Props$2 {
|
|
|
1952
1996
|
actionId: string;
|
|
1953
1997
|
/** Human-readable summary fallback (the approval-request message content). */
|
|
1954
1998
|
summary?: string;
|
|
1999
|
+
/**
|
|
2000
|
+
* Relationship keys from the proposal that must not be rendered as rows.
|
|
2001
|
+
*
|
|
2002
|
+
* The write tools discard the model's scope relationship and force the run's
|
|
2003
|
+
* own scope, so showing it is noise at best and wrong at worst (the proposal
|
|
2004
|
+
* may name a different record than the one that will actually be written).
|
|
2005
|
+
* The host app names the keys it forces — e.g. `["campaign"]`.
|
|
2006
|
+
*/
|
|
2007
|
+
hiddenRelationshipKeys?: string[];
|
|
1955
2008
|
/** Invoked with the resumed assistant message returned by approve/deny. */
|
|
1956
2009
|
onResolved?: (message: AssistantMessageInterface) => void;
|
|
1957
2010
|
}
|
|
1958
2011
|
/**
|
|
1959
2012
|
* Renders an `approval-request` assistant message as an action card:
|
|
1960
|
-
* the destructive-tool summary
|
|
1961
|
-
* only actionable while the
|
|
2013
|
+
* the destructive-tool summary, the proposed record (what the assistant wants
|
|
2014
|
+
* to write), plus Approve / Deny buttons. Buttons are only actionable while the
|
|
2015
|
+
* underlying AssistantAction is `pending`.
|
|
1962
2016
|
*
|
|
1963
2017
|
* NOTE: plain `<Button>` elements on purpose — never wrapped inside any
|
|
1964
2018
|
* Base UI trigger component (no nested buttons, no `asChild`).
|
|
1965
2019
|
*/
|
|
1966
|
-
declare function ApprovalActionCard({ actionId, summary, onResolved }: Props$2): React$1.JSX.Element;
|
|
2020
|
+
declare function ApprovalActionCard({ actionId, summary, onResolved, hiddenRelationshipKeys }: Props$2): React$1.JSX.Element;
|
|
1967
2021
|
|
|
1968
2022
|
/**
|
|
1969
2023
|
* AssistantContainer with the operator approval card wired in. The container
|
|
@@ -2833,6 +2887,14 @@ declare function DialogFooter({ className, showCloseButton, children, ...props }
|
|
|
2833
2887
|
declare function DialogTitle({ className, ...props }: Dialog$1.Title.Props): React$1.JSX.Element;
|
|
2834
2888
|
declare function DialogDescription({ className, ...props }: Dialog$1.Description.Props): React$1.JSX.Element;
|
|
2835
2889
|
|
|
2890
|
+
/**
|
|
2891
|
+
* Inside a dialog the Command must NOT paint `bg-popover`: `DialogContent` is
|
|
2892
|
+
* `bg-background`, and the two tokens are only identical in the light theme
|
|
2893
|
+
* (both white). In dark they differ — `--background` oklch(0.148) vs
|
|
2894
|
+
* `--popover` oklch(0.218) — so the command block renders as a lighter panel
|
|
2895
|
+
* seamed against the dialog's own header. Inheriting the dialog surface keeps a
|
|
2896
|
+
* command dialog one colour in both themes.
|
|
2897
|
+
*/
|
|
2836
2898
|
declare function Command({ className, ...props }: React$1.ComponentProps<typeof Command$1>): React$1.JSX.Element;
|
|
2837
2899
|
/**
|
|
2838
2900
|
* `title` / `description` render a visually hidden header **inside** the popup, for command
|
|
@@ -3429,4 +3491,4 @@ interface MultipleSelectorRef {
|
|
|
3429
3491
|
declare function useDebounce<T>(value: T, delay?: number): T;
|
|
3430
3492
|
declare const MultipleSelector: React$1.ForwardRefExoticComponent<MultipleSelectorProps & React$1.RefAttributes<MultipleSelectorRef>>;
|
|
3431
3493
|
|
|
3432
|
-
export { ADMINISTRATION_I18N_KEYS, AI_CONNECTIONS_ADMIN_PAGE_URL, AI_CONNECTIONS_I18N_KEYS, AI_CONNECTION_TYPE_ORDER, AcceptInvitation, Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivateAccount, AddUserToRole, AdminCompanyContainer, type AdminGroup, AdminIndexContainer, AdminIndexGrid, type AdminSection, AdminUsersList, AiConnectionDeleter, type AiConnectionDeleterProps, AiConnectionEditor, type AiConnectionEditorProps, AiConnectionEnvDefaults, AiConnectionInterface, AiConnectionTypeCard, type AiConnectionTypeCardProps, AiConnectionsContainer, type AiConnectionsContextType, AiConnectionsProvider, type AiConnectionsProviderProps, AiProviderRegistry, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AllUsersListContainer, AllowedUsersDetails, ApprovalActionCard, type ApprovalActionRenderer, AssistantBlockNoteComposer, AssistantContainer, AssistantContainerWithApprovals, AssistantPageContainer, AttributeElement, AuthContainer, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, BackupCodesDialog, Badge, type BadgeProps, type BlockNoteAiConfig, BlockNoteEditorContainer, BlockNoteEditorMentionHoverCard, BlockNoteEditorMentionSuggestionMenu, type BlockNoteEditorProps, BlockNoteViewerContainer, KanbanBoard as Board, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbNavigation, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, KanbanColumn as Column, KanbanColumnHandle as ColumnHandle, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommonAddTrigger, CommonAssociationCommandDialog, CommonAssociationTrigger, CommonDeleter, CommonEditorButtons, CommonEditorDiscardDialog, CommonEditorHeader, CommonEditorTrigger, CompaniesList, CompaniesListContainer, CompanyConfigurationEditor, CompanyContainer, CompanyContent, CompanyDeleter, CompanyDetails, CompanyEditor, CompanyUsersList, ConfirmDialog, type ConfirmDialogProps, ContentListGrid, type ContentListGridProps, ContentListTable, ContentTableSearch, ContentTitle, ContentsList, ContentsListById, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContributorsList, Cookies, CurrencyInput, type CurrencyInputProps, DatePickerPopover, DateRangeSelector, DetailField, type DetailFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisableTwoFactorDialog, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EditableAvatar, EditorSheet, type EditorSheetProps, EmptyState, EntityAvatar, EntityHero, EntityHeroAvatar, EntityHeroLayout, EntityHeroMetaRow, EntityMultiSelector, EntitySection, EntitySelector, ErrorDetails, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileInput, FileUploader, FileUploaderContent, FileUploaderItem, FiscalDataDisplay, type FiscalDataHandle, ForgotPassword, Form, FormBlockNote, FormBody, FormCheckbox, FormCol, FormDate, FormDateTime, FormFeatures, FormFieldWrapper, FormInput, FormPassword, FormPlaceAutocomplete, FormRoles, FormRow, FormSection, FormSelect, FormSlider, FormSwitch, FormTextarea, GdprConsentCheckbox, GdprConsentSection, type GenerateTableStructureParams, HEADER_ROW_MIN_H, Header, HoverCard, HoverCardContent, HoverCardTrigger, HowToCommand, HowToCommandViewer, HowToContainer, HowToContent, HowToDeleter, HowToDetails, HowToEditor, HowToList, HowToListContainer, HowToMultiSelector, HowToSelector, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, ItalianFiscalData, ItalianFiscalDataDisplay, type ItalianFiscalDataProps, KanbanItem as Item, KanbanItemHandle as ItemHandle, KanbanRoot as Kanban, KanbanBoard, KanbanColumn, KanbanColumnHandle, KanbanItem, KanbanItemHandle, KanbanOverlay, Label, LandingComponent, Link, type LinkProps, Login, Logout, type MentionHoverCardProps, type MentionInsertFn, type MentionItem, type MentionNameResolver, type MentionRenderProps, type MentionRenderer, type MentionResolveFn, type MentionResolveResult, type MentionSearchFn, type MentionSuggestionItem, MessageItem, MessageList, MessageSourcesPanel, MicroLabel, type MicroLabelProps, MobileNavigationBar, ModeToggleSwitch, MultiFileUploader, MultiSelect, MultipleSelector, type MultipleSelectorProps, type MultipleSelectorRef, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, NotificationErrorBoundary, NotificationMenuItem, NotificationModal, NotificationToast, NotificationsList, NotificationsListContainer, OAuthClientCard, type OAuthClientCardProps, OAuthClientDetail, type OAuthClientDetailProps, OAuthClientForm, type OAuthClientFormProps, OAuthClientList, type OAuthClientListProps, OAuthClientSecretDisplay, type OAuthClientSecretDisplayProps, OAuthConsentActions, type OAuthConsentActionsProps, OAuthConsentHeader, type OAuthConsentHeaderProps, OAuthConsentScreen, type OAuthConsentScreenProps, OAuthRedirectUriInput, type OAuthRedirectUriInputProps, OAuthScopeList, type OAuthScopeListProps, OAuthScopeSelector, type OAuthScopeSelectorProps, OnboardingCard, type Option, KanbanOverlay as Overlay, PageContainer, PageContainerContentDetails, type PageContainerItems, PageContentContainer, PageSection, type PartitionedTabs, PasskeyButton, PasskeyList, PasskeySetupDialog, PasswordInput, type PasswordInputProps, type PlaceAddressComponents, type PlaceSuggestion, PlatformUsersContainer, PlatformUsersList, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, PushNotificationProvider, RadioGroup, RadioGroupItem, RbacByRoleContainer, RbacContainer, RbacPermissionCell, RbacPermissionPicker, ReactMarkdownContainer, RecentPagesNavigator, ReferralCodeCapture, ReferralDialog, type ReferralDialogProps, type ReferralDialogTranslations, ReferralWidget, type ReferralWidgetProps, type ReferralWidgetTranslations, RefreshUser, RelevantContentsList, RelevantUsersList, RemoveUserFromRole, ResetPassword, ResizableHandle, ResizablePanel, ResizablePanelGroup, RoleContainer, RoleDetails, RoleUsersList, RolesList, KanbanRoot as Root, RoundPageContainer, RoundPageContainerTitle, ScrollArea, ScrollBar, SectionHeader, type SectionHeaderProps, SecurityContainer, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, Switch, type Tab, Table, TableBody, TableCaption, TableCell, TableCellAvatar, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContainer, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, TokenStatusIndicator, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TotpAuthenticatorList, TotpInput, TotpSetupDialog, TwoFactorChallenge, TwoFactorSettings, UserAvatar, UserAvatarEditor, UserAvatarList, UserContainer, UserContent, UserDeleter, UserEditor, UserIndexContainer, UserIndexDetails, UserListInAdd, UserMultiSelect, UserReactivator, UserResentInvitationEmail, UserRoleAdd, UserRolesList, UserSearchPopover, UserSelector, UserStanadaloneDetails, UsersList, UsersListByContentIds, UsersListContainer, WaitlistConfirmation, WaitlistForm, WaitlistHeroSection, WaitlistList, WaitlistQuestionnaireRenderer, WaitlistSuccessState, badgeVariants, buttonVariants, cellComponent, cellDate, cellDateTime, cellId, cellLink, cellUrl, createMentionInlineContentSpec, errorToast, generateNotificationData, mentionDataAttrs, navigationMenuTriggerStyle, nextDateRange, parseFiscalData, parseMentionElement, partitionTabs, spinnerVariants, tabsListVariants, toggleVariants, triggerAssociationToast, useAiConnections, useCarousel, useComboboxAnchor, useDebounce, useEditorDialog, useFileUpload, useMentionInsert, useSidebar };
|
|
3494
|
+
export { ADMINISTRATION_I18N_KEYS, AI_CONNECTIONS_ADMIN_PAGE_URL, AI_CONNECTIONS_I18N_KEYS, AI_CONNECTION_TYPE_ORDER, AcceptInvitation, Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivateAccount, AddUserToRole, AdminCompanyContainer, type AdminGroup, AdminIndexContainer, AdminIndexGrid, type AdminSection, AdminUsersList, AiConnectionDeleter, type AiConnectionDeleterProps, AiConnectionEditor, type AiConnectionEditorProps, AiConnectionEnvDefaults, AiConnectionInterface, AiConnectionTypeCard, type AiConnectionTypeCardProps, AiConnectionsContainer, type AiConnectionsContextType, AiConnectionsProvider, type AiConnectionsProviderProps, AiProviderRegistry, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AllUsersListContainer, AllowedUsersDetails, ApprovalActionCard, type ApprovalActionRenderer, AssistantBlockNoteComposer, AssistantComposer, AssistantContainer, AssistantContainerWithApprovals, AssistantPageContainer, AssistantThread, AttributeElement, AuthContainer, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, BackupCodesDialog, Badge, type BadgeProps, type BlockNoteAiConfig, BlockNoteEditorContainer, BlockNoteEditorMentionHoverCard, BlockNoteEditorMentionSuggestionMenu, type BlockNoteEditorProps, BlockNoteViewerContainer, KanbanBoard as Board, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbNavigation, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, KanbanColumn as Column, KanbanColumnHandle as ColumnHandle, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommonAddTrigger, CommonAssociationCommandDialog, CommonAssociationTrigger, CommonDeleter, CommonEditorButtons, CommonEditorDiscardDialog, CommonEditorHeader, CommonEditorTrigger, CompaniesList, CompaniesListContainer, CompanyConfigurationEditor, CompanyContainer, CompanyContent, CompanyDeleter, CompanyDetails, CompanyEditor, CompanyUsersList, ConfirmDialog, type ConfirmDialogProps, ContentListGrid, type ContentListGridProps, ContentListTable, ContentTableSearch, ContentTitle, ContentsList, ContentsListById, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContributorsList, Cookies, CurrencyInput, type CurrencyInputProps, DatePickerPopover, DateRangeSelector, DetailField, type DetailFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisableTwoFactorDialog, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EditableAvatar, EditorSheet, type EditorSheetProps, EmptyState, EntityAvatar, EntityHero, EntityHeroAvatar, EntityHeroLayout, EntityHeroMetaRow, EntityMultiSelector, EntitySection, EntitySelector, ErrorDetails, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileInput, FileUploader, FileUploaderContent, FileUploaderItem, FiscalDataDisplay, type FiscalDataHandle, ForgotPassword, Form, FormBlockNote, FormBody, FormCheckbox, FormCol, FormDate, FormDateTime, FormFeatures, FormFieldWrapper, FormInput, FormPassword, FormPlaceAutocomplete, FormRoles, FormRow, FormSection, FormSelect, FormSlider, FormSwitch, FormTextarea, GdprConsentCheckbox, GdprConsentSection, type GenerateTableStructureParams, HEADER_ROW_MIN_H, Header, HoverCard, HoverCardContent, HoverCardTrigger, HowToCommand, HowToCommandViewer, HowToContainer, HowToContent, HowToDeleter, HowToDetails, HowToEditor, HowToList, HowToListContainer, HowToMultiSelector, HowToSelector, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, ItalianFiscalData, ItalianFiscalDataDisplay, type ItalianFiscalDataProps, KanbanItem as Item, KanbanItemHandle as ItemHandle, KanbanRoot as Kanban, KanbanBoard, KanbanColumn, KanbanColumnHandle, KanbanItem, KanbanItemHandle, KanbanOverlay, Label, LandingComponent, Link, type LinkProps, Login, Logout, type MentionHoverCardProps, type MentionInsertFn, type MentionItem, type MentionNameResolver, type MentionRenderProps, type MentionRenderer, type MentionResolveFn, type MentionResolveResult, type MentionSearchFn, type MentionSuggestionItem, MessageItem, MessageList, MessageSourcesPanel, MicroLabel, type MicroLabelProps, MobileNavigationBar, ModeToggleSwitch, MultiFileUploader, MultiSelect, MultipleSelector, type MultipleSelectorProps, type MultipleSelectorRef, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, NotificationErrorBoundary, NotificationMenuItem, NotificationModal, NotificationToast, NotificationsList, NotificationsListContainer, OAuthClientCard, type OAuthClientCardProps, OAuthClientDetail, type OAuthClientDetailProps, OAuthClientForm, type OAuthClientFormProps, OAuthClientList, type OAuthClientListProps, OAuthClientSecretDisplay, type OAuthClientSecretDisplayProps, OAuthConsentActions, type OAuthConsentActionsProps, OAuthConsentHeader, type OAuthConsentHeaderProps, OAuthConsentScreen, type OAuthConsentScreenProps, OAuthRedirectUriInput, type OAuthRedirectUriInputProps, OAuthScopeList, type OAuthScopeListProps, OAuthScopeSelector, type OAuthScopeSelectorProps, OnboardingCard, type Option, KanbanOverlay as Overlay, PageContainer, PageContainerContentDetails, type PageContainerItems, PageContentContainer, PageSection, type PartitionedTabs, PasskeyButton, PasskeyList, PasskeySetupDialog, PasswordInput, type PasswordInputProps, type PlaceAddressComponents, type PlaceSuggestion, PlatformUsersContainer, PlatformUsersList, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, PushNotificationProvider, RadioGroup, RadioGroupItem, RbacByRoleContainer, RbacContainer, RbacPermissionCell, RbacPermissionPicker, ReactMarkdownContainer, RecentPagesNavigator, ReferralCodeCapture, ReferralDialog, type ReferralDialogProps, type ReferralDialogTranslations, ReferralWidget, type ReferralWidgetProps, type ReferralWidgetTranslations, RefreshUser, RelevantContentsList, RelevantUsersList, RemoveUserFromRole, ResetPassword, ResizableHandle, ResizablePanel, ResizablePanelGroup, RoleContainer, RoleDetails, RoleUsersList, RolesList, KanbanRoot as Root, RoundPageContainer, RoundPageContainerTitle, ScrollArea, ScrollBar, SectionHeader, type SectionHeaderProps, SecurityContainer, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, Switch, type Tab, Table, TableBody, TableCaption, TableCell, TableCellAvatar, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContainer, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, TokenStatusIndicator, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TotpAuthenticatorList, TotpInput, TotpSetupDialog, TwoFactorChallenge, TwoFactorSettings, UserAvatar, UserAvatarEditor, UserAvatarList, UserContainer, UserContent, UserDeleter, UserEditor, UserIndexContainer, UserIndexDetails, UserListInAdd, UserMultiSelect, UserReactivator, UserResentInvitationEmail, UserRoleAdd, UserRolesList, UserSearchPopover, UserSelector, UserStanadaloneDetails, UsersList, UsersListByContentIds, UsersListContainer, WaitlistConfirmation, WaitlistForm, WaitlistHeroSection, WaitlistList, WaitlistQuestionnaireRenderer, WaitlistSuccessState, badgeVariants, buttonVariants, cellComponent, cellDate, cellDateTime, cellId, cellLink, cellUrl, createMentionInlineContentSpec, errorToast, generateNotificationData, mentionDataAttrs, navigationMenuTriggerStyle, nextDateRange, parseFiscalData, parseMentionElement, partitionTabs, spinnerVariants, tabsListVariants, toggleVariants, triggerAssociationToast, useAiConnections, useCarousel, useComboboxAnchor, useDebounce, useEditorDialog, useFileUpload, useMentionInsert, useSidebar };
|