mirror of
https://github.com/wassname/talk.git
synced 2026-07-23 13:10:20 +08:00
* feat: Implement new Sign In view * feat: Move forgot + resetPassword to new design * feat: Implement sign up with new design * fix: narrow gutter * test: add unit tests * test: integration tests * feat: support show / hide password * feat: support oauth2 flow * feat: add views for user completion * feat: implement oauth2 sign up * test: fix snapshots * fix: lint * fix: get more complete mutation response * fix: removed array of OIDC integrations * fix: renamed resolver function * fix: adapt oidc client implementation * fix: targetFilter should be stream on signup * fix: removed unneeded message * fix: moved password into local profile * fix: made username optional, removed valid null value * fix: linting * fix: respect targetFilter * feat: support user registration mutations - Added `setUsername` - Added `setEmail` - Added `setPassword` - Added `permit` to `@auth` - Added `email` to `User` * fix: fixed issue with query * feat: added user password update * feat: complete sign in mutation * fix: adapt some rebasing gitches * test: improve tests * test: unittest for setting auth token * fix: failing tests * test: move most tests from enzyme to react-test-renderer * fix: remove schema warnings in tests * test: improve window mock * test: test different social login configurations * test: test social logins for sign up * fix: use htmlFor instead of for * test: more feature tests * feat: always go through account completion * test: feature test account completion * feat: addtional account completion test * Update start.ts * chore: refactor auth token retrieval logic
49 lines
2.1 KiB
TypeScript
49 lines
2.1 KiB
TypeScript
export { default as BaseButton } from "./BaseButton";
|
|
export { default as Button } from "./Button";
|
|
export { default as ButtonIcon } from "./Button/ButtonIcon";
|
|
export { default as Typography } from "./Typography";
|
|
export { default as Popover } from "./Popover";
|
|
export { default as RelativeTime } from "./RelativeTime";
|
|
export { default as UIContext, UIContextProps } from "./UIContext";
|
|
export { default as Flex } from "./Flex";
|
|
export { default as MatchMedia } from "./MatchMedia";
|
|
export { default as TrapFocus } from "./TrapFocus";
|
|
export { default as ValidationMessage } from "./ValidationMessage";
|
|
export { default as InputLabel } from "./InputLabel";
|
|
export { default as TextField } from "./TextField";
|
|
export { default as CallOut } from "./CallOut";
|
|
export { default as ClickOutside } from "./ClickOutside";
|
|
export { default as Popup } from "./Popup";
|
|
export { default as FormField } from "./FormField";
|
|
export { default as InputDescription } from "./InputDescription";
|
|
export { default as Spinner } from "./Spinner";
|
|
export { default as HorizontalGutter } from "./HorizontalGutter";
|
|
export { default as Icon } from "./Icon";
|
|
export { default as AriaInfo } from "./AriaInfo";
|
|
export { default as Message, MessageIcon } from "./Message";
|
|
export { Tab, TabBar, TabContent, TabPane } from "./Tabs";
|
|
export { StepBar, Step } from "./Steps";
|
|
export { SelectField, Option, OptGroup } from "./SelectField";
|
|
export { default as TextLink } from "./TextLink";
|
|
export { default as CheckBox } from "./CheckBox";
|
|
export { default as RadioButton } from "./RadioButton";
|
|
export { default as Delay } from "./Delay";
|
|
export {
|
|
AppBar,
|
|
Begin as AppBarBegin,
|
|
End as AppBarEnd,
|
|
Divider as AppBarDivider,
|
|
Navigation as AppBarNavigation,
|
|
NavigationItem as AppBarNavigationItem,
|
|
} from "./AppBar";
|
|
export {
|
|
SubBar,
|
|
Navigation as SubBarNavigation,
|
|
NavigationItem as SubBarNavigationItem,
|
|
} from "./SubBar";
|
|
export { BrandIcon, BrandName, Logo } from "./Brand";
|
|
export { default as Counter } from "./Counter";
|
|
export { Marker, Count as MarkerCount } from "./Marker";
|
|
export { default as Card } from "./Card";
|
|
export { default as PasswordField } from "./PasswordField";
|