-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* getToken/refreshToken * src/background/requests.ts * src/contentScript/pageEditor/elementPicker.ts * src/background/partnerIntegrations.ts * whoops * cleanup * fix widget and getScopeAndId * auto-add * src/extensionConsole/pages/mods/GetStartedView.tsx * src/mods/useModViewItems.tsx * test memo compare dependencies * fix scopeAndId tests * autosuggest * src/background/backgroundPlatform.ts * src/background/restrictUnauthenticatedUrlAccess.ts * src/bricks/effects/insertHtml.ts * ./bricks/effects/runSubTour.ts * ./bricks/effects/scrollIntoView.ts * src/bricks/transformers/controlFlow/WithAsyncModVariable.ts * mod state / variable context * src/bricks/transformers/RunMetadataTransformer.ts * src/bricks/transformers/splitText.ts * src/components/fields/schemaFields/widgets/varPopup/useTreeRow.ts * src/components/walkthroughModal/WalkthroughModalApp.tsx * src/extensionConsole/pages/brickEditor/BrickHistory.tsx * fix test * src/extensionConsole/pages/mods/utils/exportBlueprint.ts * src/extensionConsole/pages/mods/utils/exportBlueprint.ts * src/pageScript/elementInfo.ts * src/sidebar/LoginPanel.tsx * src/testUtils/factories/authFactories.ts * src/bricks/effects/attachAutocomplete.ts * more bricks * fix test * src/components/fields/schemaFields/fieldTestUtils.ts * add a bunch more * the rest * cleanup * fix lint * wip * remove file * remove logs * fix factory * update counts * extensionPagePlatform * partnerIntegrations * update counts * finding cycles * documenting cycle * move starterbricks into separate folders * extract shared types from contextmenu * migrate shared types for menuItemExtension * migrate panel types; migrate more contextMenu types * migrate more menuitem types * migrate quickbar types * migrate quickbar provider types * migrate sidebar types * migrate tour types * update file paths * auto-add * fix types * auto-add * cleanup * more contentScript messenger migrations * selectElement * insertPanel * insertButton * move insertButton to strict registration * eliminate cycle * auto-add * migrate more registration methods * auto-add * update counts * remove comments * address pr comments --------- Co-authored-by: Ben Loe <[email protected]>
- Loading branch information
1 parent
7ea3b7f
commit 78fe96d
Showing
24 changed files
with
158 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Copyright (C) 2024 PixieBrix, Inc. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import { type ModViewItem } from "@/types/modTypes"; | ||
import { type TableInstance } from "react-table"; | ||
|
||
export type ModsPageContentProps = { | ||
tableInstance: TableInstance<ModViewItem>; | ||
width: number; | ||
height: number; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.