-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* initial released-prov mixed status for data ava chart * mixed release, prov pattern scaling tweaks * propagate ava chart updates to download form * ga4 support, regen lib + assets * clean up gtm data layer reference * pull out analytics service for any custom ga events * add UA events to service * fix CodeQL identified escape shortcomings * use only gtm, regen assets * fix comment spelling * rebuild availability chart key * fix availability key selection item * ava key display adjustment at certain viewports * delineate ava release based on context * ava key ui tweak, regen lib * prepare v2.3.0
- Loading branch information
Showing
53 changed files
with
10,938 additions
and
1,269 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
13 changes: 5 additions & 8 deletions
13
lib/components/DataProductAvailability/BasicAvailabilityKey.d.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,24 +1,21 @@ | ||
/** | ||
Main Function | ||
*/ | ||
export default BasicAvailabilityKey; | ||
declare function BasicAvailabilityKey(props: any): JSX.Element; | ||
declare namespace BasicAvailabilityKey { | ||
namespace propTypes { | ||
const orientation: PropTypes.Requireable<string>; | ||
const selectionEnabled: PropTypes.Requireable<boolean>; | ||
const delineateRelease: PropTypes.Requireable<boolean>; | ||
const availabilityStatusType: PropTypes.Requireable<string>; | ||
const dialogOnly: PropTypes.Requireable<boolean>; | ||
} | ||
namespace defaultProps { | ||
const orientation_1: string; | ||
export { orientation_1 as orientation }; | ||
const selectionEnabled_1: boolean; | ||
export { selectionEnabled_1 as selectionEnabled }; | ||
const delineateRelease_1: boolean; | ||
export { delineateRelease_1 as delineateRelease }; | ||
const availabilityStatusType_1: null; | ||
const availabilityStatusType_1: string; | ||
export { availabilityStatusType_1 as availabilityStatusType }; | ||
const dialogOnly_1: boolean; | ||
export { dialogOnly_1 as dialogOnly }; | ||
} | ||
} | ||
export default BasicAvailabilityKey; | ||
import PropTypes from "prop-types"; |
Oops, something went wrong.