@grackle-ai/web-components 0.108.4 → 0.110.1
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/.rush/temp/{116390ecbdd70f01703a1a6dbb1dd805d1a6f702.tar.log → 3629cc83b3804ac8bcea27905e83162210fb5dd6.tar.log} +40 -40
- package/.rush/temp/{116390ecbdd70f01703a1a6dbb1dd805d1a6f702.untar.log → 3629cc83b3804ac8bcea27905e83162210fb5dd6.untar.log} +2 -2
- package/.rush/temp/chunked-rush-logs/web-components._phase_build.chunks.jsonl +5 -5
- package/.rush/temp/chunked-rush-logs/web-components._phase_test.chunks.jsonl +16 -16
- package/.rush/temp/{ddb88821de1bbf09dbde855d6172b545d74acf2a.tar.log → f2b8b611fc00c7b912256986db4cc966d6560387.tar.log} +2 -2
- package/.rush/temp/{ddb88821de1bbf09dbde855d6172b545d74acf2a.untar.log → f2b8b611fc00c7b912256986db4cc966d6560387.untar.log} +2 -2
- package/.rush/temp/operation/_phase_build/all.log +5 -5
- package/.rush/temp/operation/_phase_build/log-chunks.jsonl +5 -5
- package/.rush/temp/operation/_phase_build/state.json +1 -1
- package/.rush/temp/operation/_phase_test/all.log +16 -16
- package/.rush/temp/operation/_phase_test/log-chunks.jsonl +16 -16
- package/.rush/temp/operation/_phase_test/state.json +1 -1
- package/README.md +95 -0
- package/dist/index.css +1 -1
- package/dist/index.js +5826 -5732
- package/package.json +2 -2
- package/rush-logs/web-components._phase_build.cache.log +1 -1
- package/rush-logs/web-components._phase_build.log +5 -5
- package/rush-logs/web-components._phase_test.cache.log +1 -1
- package/rush-logs/web-components._phase_test.log +16 -16
- package/src/components/layout/AppNav.module.scss +6 -0
- package/src/components/layout/AppNav.stories.tsx +47 -0
- package/src/components/layout/AppNav.tsx +24 -10
- package/src/components/panels/EnvironmentEditPanel.stories.tsx +87 -1
- package/src/components/panels/EnvironmentEditPanel.tsx +143 -34
- package/src/context/GrackleContextTypes.ts +3 -1
- package/src/hooks/types.ts +21 -0
- package/src/index.ts +2 -2
- package/src/mocks/MockGrackleProvider.tsx +7 -0
- package/temp/build/lint/_eslint-5eVG3S6w.json +8 -8
package/src/index.ts
CHANGED
|
@@ -125,13 +125,13 @@ export type { UseGrackleSocketResult, GrackleContextType } from "./context/Grack
|
|
|
125
125
|
export type {
|
|
126
126
|
Environment, Session, UsageStats, SessionEvent,
|
|
127
127
|
Workspace, TaskData, FindingData, TokenInfo,
|
|
128
|
-
CredentialProviderConfig, Codespace, PersonaData,
|
|
128
|
+
CredentialProviderConfig, Codespace, DockerContainer, PersonaData,
|
|
129
129
|
ScheduleData, ScheduleUpdate, UseSchedulesResult,
|
|
130
130
|
ProvisionStatus, GrackleEvent, WsMessage, SendFunction,
|
|
131
131
|
GraphNode, GraphLink, NodeDetail, UseKnowledgeResult,
|
|
132
132
|
UseEnvironmentsResult, UseSessionsResult, UseWorkspacesResult,
|
|
133
133
|
UseTasksResult, UseFindingsResult, UseTokensResult,
|
|
134
|
-
UseCredentialsResult, UseCodespacesResult, UsePersonasResult,
|
|
134
|
+
UseCredentialsResult, UseCodespacesResult, UseDockerContainersResult, UsePersonasResult,
|
|
135
135
|
UsePluginsResult, PluginData,
|
|
136
136
|
StreamData, StreamSubscriberData, UseStreamsResult,
|
|
137
137
|
UseGitHubAccountsResult, GitHubAccountData,
|
|
@@ -1067,6 +1067,13 @@ export function MockGrackleProvider({ children }: MockGrackleProviderProps): JSX
|
|
|
1067
1067
|
domainHook: NOOP_DOMAIN_HOOK,
|
|
1068
1068
|
},
|
|
1069
1069
|
|
|
1070
|
+
dockerContainers: {
|
|
1071
|
+
dockerContainers: [],
|
|
1072
|
+
dockerContainersError: "",
|
|
1073
|
+
listDockerContainers: async () => { },
|
|
1074
|
+
domainHook: NOOP_DOMAIN_HOOK,
|
|
1075
|
+
},
|
|
1076
|
+
|
|
1070
1077
|
personas: {
|
|
1071
1078
|
personas,
|
|
1072
1079
|
personasLoading: false,
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
],
|
|
8
8
|
[
|
|
9
9
|
"hooks/types.ts",
|
|
10
|
-
"
|
|
10
|
+
"/7ttZkjX3bM9oMWNFw/qQOYtrrI=_7W3TvvwZxl0TGST6/dyQa8DKDDc="
|
|
11
11
|
],
|
|
12
12
|
[
|
|
13
13
|
"components/chat/ChatInput.tsx",
|
|
@@ -263,7 +263,7 @@
|
|
|
263
263
|
],
|
|
264
264
|
[
|
|
265
265
|
"components/layout/AppNav.tsx",
|
|
266
|
-
"
|
|
266
|
+
"+ew0Cx3OJiv9FZ9/2F01S9ZazzQ=_7W3TvvwZxl0TGST6/dyQa8DKDDc="
|
|
267
267
|
],
|
|
268
268
|
[
|
|
269
269
|
"components/layout/Sidebar.tsx",
|
|
@@ -375,7 +375,7 @@
|
|
|
375
375
|
],
|
|
376
376
|
[
|
|
377
377
|
"components/panels/EnvironmentEditPanel.tsx",
|
|
378
|
-
"
|
|
378
|
+
"+2YaCrJOKqeqoe2BjHuYaRjEcko=_7W3TvvwZxl0TGST6/dyQa8DKDDc="
|
|
379
379
|
],
|
|
380
380
|
[
|
|
381
381
|
"components/panels/KeyboardShortcutsPanel.tsx",
|
|
@@ -439,7 +439,7 @@
|
|
|
439
439
|
],
|
|
440
440
|
[
|
|
441
441
|
"context/GrackleContextTypes.ts",
|
|
442
|
-
"
|
|
442
|
+
"YPk7fC3htfEM7PBKcJ/pyZ6Ydyg=_7W3TvvwZxl0TGST6/dyQa8DKDDc="
|
|
443
443
|
],
|
|
444
444
|
[
|
|
445
445
|
"context/GrackleContext.ts",
|
|
@@ -459,7 +459,7 @@
|
|
|
459
459
|
],
|
|
460
460
|
[
|
|
461
461
|
"mocks/MockGrackleProvider.tsx",
|
|
462
|
-
"
|
|
462
|
+
"g+iRnCe9AbsL/7cGS7bBSU1JIsQ=_7W3TvvwZxl0TGST6/dyQa8DKDDc="
|
|
463
463
|
],
|
|
464
464
|
[
|
|
465
465
|
"test-utils/storybook-decorators.tsx",
|
|
@@ -471,7 +471,7 @@
|
|
|
471
471
|
],
|
|
472
472
|
[
|
|
473
473
|
"index.ts",
|
|
474
|
-
"
|
|
474
|
+
"FNRhCqrVCRyTY3w5VAdlXei++8I=_7W3TvvwZxl0TGST6/dyQa8DKDDc="
|
|
475
475
|
],
|
|
476
476
|
[
|
|
477
477
|
"components/index.ts",
|
|
@@ -591,7 +591,7 @@
|
|
|
591
591
|
],
|
|
592
592
|
[
|
|
593
593
|
"components/layout/AppNav.stories.tsx",
|
|
594
|
-
"
|
|
594
|
+
"FhVGIPJJt0juJDi04NbgfMGBfSY=_7W3TvvwZxl0TGST6/dyQa8DKDDc="
|
|
595
595
|
],
|
|
596
596
|
[
|
|
597
597
|
"components/layout/BottomStatusBar.stories.tsx",
|
|
@@ -647,7 +647,7 @@
|
|
|
647
647
|
],
|
|
648
648
|
[
|
|
649
649
|
"components/panels/EnvironmentEditPanel.stories.tsx",
|
|
650
|
-
"
|
|
650
|
+
"7eyIsxLgurTbwPgfstBJ5vnYQZc=_7W3TvvwZxl0TGST6/dyQa8DKDDc="
|
|
651
651
|
],
|
|
652
652
|
[
|
|
653
653
|
"components/panels/FindingsPanel.stories.tsx",
|