mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
For #[26070](https://github.com/fleetdm/fleet/issues/26070) This adds the UI for enabling a manual agent install for a bootstrap package. This includes: **The new form option for enabling manual agent install of a bootstrap package**  **disabling adding install software and run script options when user has enabled manual agent install**   **improvements to the setup experience content styling. I've created a `SetupExperienceContentContainer` component to centralise the styles for the content of these sub sections.** **updates to the preview sections copy and replacing the gifs with videos** - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. - [ ] Added/updated automated tests - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Sarah Gillespie <73313222+gillespi314@users.noreply.github.com>
32 lines
504 B
TypeScript
32 lines
504 B
TypeScript
/**
|
|
* A file that contains the custom typings for fleets own modules and libraries
|
|
*/
|
|
|
|
// PNG assests
|
|
declare module "*.png" {
|
|
const value: string;
|
|
export = value;
|
|
}
|
|
declare module "*.svg" {
|
|
const value: string;
|
|
export = value;
|
|
}
|
|
|
|
declare module "*.gif" {
|
|
const value: string;
|
|
export = value;
|
|
}
|
|
|
|
declare module "*.pdf" {
|
|
const value: string;
|
|
export = value;
|
|
}
|
|
|
|
declare module "*.mp4" {
|
|
const value: string;
|
|
export = value;
|
|
}
|
|
|
|
declare const featureFlags: {
|
|
[key: string]: type;
|
|
};
|