-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #199 from IMDA-BTG/test-for-release-v0.9.4
Test & Merge for Release v0.9.4 The requested reviews are Approved and the Integration Test Passed. Proceeded to merge PR to Release Branch v0.9.x. Ready to cut for Release v0.9.4.
- Loading branch information
Showing
53 changed files
with
5,594 additions
and
3,691 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
21 changes: 21 additions & 0 deletions
21
ai-verify-portal/__mocks__/ai-verify-shared-library/lib.ts
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 |
---|---|---|
@@ -1,3 +1,24 @@ | ||
import { createContext } from 'react'; | ||
|
||
export function getComponents() { | ||
return {}; | ||
} | ||
|
||
export function parseRJSFSchema() { | ||
return { | ||
sensitive_feature: { | ||
items: {}, | ||
}, | ||
}; | ||
} | ||
|
||
export type InputDataContextType = { | ||
meta: any; | ||
data: any; | ||
onChangeData?: (key: string, value: any) => void; | ||
}; | ||
|
||
export const InputDataContext = createContext<InputDataContextType>({ | ||
meta: {}, | ||
data: {}, | ||
}); |
Oops, something went wrong.