-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into atoledano-swc
- Loading branch information
Showing
101 changed files
with
1,079 additions
and
237 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// @flow | ||
|
||
import * as React from "react"; | ||
import { ButtonLink, ButtonPrimary, ButtonSecondary } from "./button"; | ||
export type ButtonGroupProps = {| | ||
primaryButton?: React.Element<typeof ButtonPrimary>, | ||
secondaryButton?: React.Element<typeof ButtonSecondary>, | ||
link?: React.Element<typeof ButtonLink>, | ||
|}; | ||
declare var ButtonGroup: React.ComponentType<ButtonGroupProps>; | ||
declare export default typeof ButtonGroup; |
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,13 @@ | ||
// @flow | ||
|
||
import * as React from "react"; | ||
import type { CommonFormFieldProps } from "./text-field-base"; | ||
export type DateFieldProps = {| | ||
...$Exact<CommonFormFieldProps>, | ||
|
||
onChangeValue?: (value: string, rawValue: string) => void, | ||
min?: Date, | ||
max?: Date, | ||
|}; | ||
declare var DateField: React.ComponentType<DateFieldProps>; | ||
declare export default typeof DateField; |
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,6 +1,9 @@ | ||
// @flow | ||
|
||
import * as React from "react"; | ||
declare type Props = { progressPercent: number }; | ||
declare type Props = { | ||
progressPercent: number, | ||
color?: string, | ||
}; | ||
declare var ProgressBar: React.ComponentType<Props>; | ||
declare export default typeof ProgressBar; |
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,39 @@ | ||
// @flow | ||
|
||
import type { GetSkin } from "./types"; | ||
declare export var palette: { | ||
+blauBluePrimary: "#00B6F1", | ||
+blauBluePrimary10: "#F7FDFF", | ||
+blauBluePrimary20: "#E5F6FD", | ||
+blauBluePrimary30: "#B3E9FB", | ||
+blauBlueSecondary: "#0072BC", | ||
+blauBlueSecondary10: "#E5F1F9", | ||
+blauBlueSecondary20: "#B2D4EC", | ||
+blauBlueSecondary30: "#80B7DF", | ||
+blauBlueSecondary60: "#005A99", | ||
+blauPurple: "#7814B3", | ||
+blauPurple10: "#F1E7F7", | ||
+blauPurple30: "#BB89D9", | ||
+blauYellow: "#FFA922", | ||
+blauYellow10: "#FFF6E9", | ||
+blauYellow60: "#F09500", | ||
+blauYellow70: "#996614", | ||
+blauRed: "#F64417", | ||
+blauRed10: "#FEECE8", | ||
+blauRed20: "#FCC7B9", | ||
+blauRed30: "#FA9E87", | ||
+blauRed70: "#C93712", | ||
+blauGreen: "#30D300", | ||
+blauGreen10: "#EAFBE5", | ||
+blauGreen70: "#1D7F00", | ||
+grey1: "#F5F9FA", | ||
+grey2: "#E7E7E7", | ||
+grey3: "#B8B8B8", | ||
+grey4: "#A0A0A0", | ||
+grey5: "#808285", | ||
+grey6: "#000000", | ||
+white: "#FFFFFF", | ||
+darkModeBlack: "#191919", | ||
+darkModeGrey: "#242424", | ||
}; | ||
declare export var getBlauSkin: GetSkin; |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
// @flow | ||
|
||
declare export var getLocalDateString: (date: Date) => string; | ||
declare export var getLocalYearMonthString: (date: Date) => string; | ||
declare export var getLocalDateTimeString: (date: Date) => string; |
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
Oops, something went wrong.