@universal-tennis/ui-shared 0.1.65 → 0.1.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +1 -1
- package/.eslintrc.js +73 -73
- package/.storybook/preview.js +12 -12
- package/.storybook/variables.css +15 -15
- package/README.md +129 -129
- package/dist/App.d.ts +2 -2
- package/dist/App.js +12 -12
- package/dist/components.d.ts +4 -32
- package/dist/components.js +8 -37
- package/dist/components.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +12 -12
- package/dist/items.d.ts +2 -2
- package/dist/items.js +1 -1
- package/dist/stories/Button.d.ts +27 -0
- package/dist/stories/Button.js +51 -0
- package/dist/stories/Button.js.map +1 -0
- package/dist/stories/Button.stories.d.ts +15 -0
- package/dist/stories/Button.stories.js +34 -0
- package/dist/stories/Button.stories.js.map +1 -0
- package/dist/stories/Header.d.ts +19 -0
- package/dist/stories/Header.js +31 -0
- package/dist/stories/Header.js.map +1 -0
- package/dist/stories/Header.stories.d.ts +11 -0
- package/dist/stories/Header.stories.js +20 -0
- package/dist/stories/Header.stories.js.map +1 -0
- package/dist/stories/Page.d.ts +1 -0
- package/dist/stories/Page.js +38 -0
- package/dist/stories/Page.js.map +1 -0
- package/dist/stories/Page.stories.d.ts +11 -0
- package/dist/stories/Page.stories.js +30 -0
- package/dist/stories/Page.stories.js.map +1 -0
- package/dist/stories/assets/comments.svg +1 -0
- package/dist/stories/assets/css/variables.css +3 -6
- package/dist/stories/assets/direction.svg +1 -0
- package/dist/stories/assets/icon-chat-blue.svg +10 -10
- package/dist/stories/atoms/Button/Button.d.ts +9 -10
- package/dist/stories/atoms/Button/Button.js +79 -95
- package/dist/stories/atoms/Button/Button.js.map +1 -1
- package/dist/stories/atoms/Button/Button.stories.d.ts +16 -17
- package/dist/stories/atoms/Button/Button.stories.js +36 -45
- package/dist/stories/atoms/Button/Button.stories.js.map +1 -1
- package/dist/stories/atoms/Button/index.d.ts +1 -0
- package/dist/stories/atoms/Button/index.js +2 -0
- package/dist/stories/atoms/Button/index.js.map +1 -0
- package/dist/stories/atoms/Button.d.ts +7 -0
- package/dist/stories/atoms/Button.js +20 -0
- package/dist/stories/atoms/Button.js.map +1 -0
- package/dist/stories/atoms/Button.stories.d.ts +13 -0
- package/dist/stories/atoms/Button.stories.js +22 -0
- package/dist/stories/atoms/Button.stories.js.map +1 -0
- package/dist/stories/atoms/Typography/Typography.d.ts +10 -49
- package/dist/stories/atoms/Typography/Typography.js +99 -143
- package/dist/stories/atoms/Typography/Typography.js.map +1 -1
- package/dist/stories/atoms/Typography/Typography.stories.d.ts +37 -37
- package/dist/stories/atoms/Typography/Typography.stories.js +190 -190
- package/dist/stories/atoms/Typography/index.d.ts +1 -0
- package/dist/stories/atoms/Typography/index.js +2 -0
- package/dist/stories/atoms/Typography/index.js.map +1 -0
- package/dist/stories/molecules/Cards/Cards.stories.d.ts +6 -7
- package/dist/stories/molecules/Cards/Cards.stories.js +26 -64
- package/dist/stories/molecules/Cards/Cards.stories.js.map +1 -1
- package/dist/stories/molecules/Cards/ContactCard.d.ts +9 -3
- package/dist/stories/molecules/Cards/ContactCard.js +38 -38
- package/dist/stories/molecules/Cards/ContactCard.js.map +1 -1
- package/dist/stories/molecules/Cards/TeamCard.d.ts +7 -3
- package/dist/stories/molecules/Cards/TeamCard.js +20 -20
- package/dist/stories/molecules/Cards/TeamCard.js.map +1 -1
- package/dist/stories/molecules/Cards/shared.d.ts +9 -4
- package/dist/stories/molecules/Cards/shared.js +12 -12
- package/infrastructure/azure-pipelines.yml +112 -110
- package/package.json +94 -94
- package/src/App.js +25 -25
- package/src/components.jsx +41 -41
- package/src/custom.d.ts +13 -13
- package/src/index.js +17 -17
- package/src/items.jsx +1 -1
- package/src/stories/assets/css/variables.css +14 -14
- package/src/stories/assets/icon-chat-blue.svg +10 -10
- package/src/stories/assets/icons/icon-add.svg +7 -7
- package/src/stories/assets/icons/icon-availability-maybe.svg +3 -3
- package/src/stories/assets/icons/icon-availability-no.svg +3 -3
- package/src/stories/assets/icons/icon-availability-not-set.svg +8 -8
- package/src/stories/assets/icons/icon-availability-yes.svg +3 -3
- package/src/stories/assets/icons/icon-calendar.svg +4 -4
- package/src/stories/assets/icons/icon-clock.svg +7 -7
- package/src/stories/assets/icons/icon-close.svg +3 -3
- package/src/stories/assets/icons/icon-delete.svg +9 -9
- package/src/stories/assets/icons/icon-edit.svg +3 -3
- package/src/stories/assets/icons/icon-location.svg +6 -6
- package/src/stories/assets/icons/icon-message.svg +3 -3
- package/src/stories/assets/icons/icon-session.svg +3 -3
- package/src/stories/assets/icons/icon-swap.svg +3 -3
- package/src/stories/assets/icons/icon-visibility-off.svg +7 -7
- package/src/stories/assets/icons/icon-visibility.svg +6 -6
- package/src/stories/atoms/Button/Button.stories.tsx +63 -63
- package/src/stories/atoms/Button/Button.tsx +145 -145
- package/src/stories/atoms/Icons/AddIcon.tsx +13 -13
- package/src/stories/atoms/Icons/AvailabilityMaybeIcon.tsx +11 -11
- package/src/stories/atoms/Icons/AvailabilityNoIcon.tsx +11 -11
- package/src/stories/atoms/Icons/AvailabilityNotSetIcon.tsx +12 -12
- package/src/stories/atoms/Icons/AvailabilityYesIcon.tsx +11 -11
- package/src/stories/atoms/Icons/CalendarIcon.tsx +11 -11
- package/src/stories/atoms/Icons/ClockIcon.tsx +14 -14
- package/src/stories/atoms/Icons/CloseIcon.tsx +11 -11
- package/src/stories/atoms/Icons/DeleteIcon.tsx +15 -15
- package/src/stories/atoms/Icons/EditIcon.tsx +11 -11
- package/src/stories/atoms/Icons/Icons.stories.tsx +218 -218
- package/src/stories/atoms/Icons/LeftChevronIcon.tsx +13 -13
- package/src/stories/atoms/Icons/LocationIcon.tsx +12 -12
- package/src/stories/atoms/Icons/MessageIcon.tsx +12 -12
- package/src/stories/atoms/Icons/RightChevronIcon.tsx +11 -11
- package/src/stories/atoms/Icons/SessionIcon.tsx +16 -16
- package/src/stories/atoms/Icons/SwapIcon.tsx +11 -11
- package/src/stories/atoms/Icons/VisibilityIcon.tsx +12 -12
- package/src/stories/atoms/Icons/VisibilityOffIcon.tsx +13 -13
- package/src/stories/atoms/Icons/WinnerIndicatorIcon.tsx +39 -39
- package/src/stories/atoms/Icons/sharedTypes.tsx +10 -10
- package/src/stories/atoms/Map/Map.stories.tsx +43 -43
- package/src/stories/atoms/Map/Map.tsx +25 -25
- package/src/stories/atoms/Typography/Typography.tsx +185 -185
- package/src/stories/molecules/AvatarWithName/AvatarWithName.stories.tsx +86 -86
- package/src/stories/molecules/AvatarWithName/AvatarWithName.tsx +68 -68
- package/src/stories/molecules/Cards/Cards.stories.tsx +76 -76
- package/src/stories/molecules/Cards/ContactCard.tsx +45 -45
- package/src/stories/molecules/Cards/DrawCard.tsx +211 -211
- package/src/stories/molecules/Cards/Modals.stories.tsx +137 -137
- package/src/stories/molecules/Cards/TeamCard.tsx +14 -14
- package/src/stories/molecules/Cards/TeamDrawCard.tsx +135 -134
- package/src/stories/molecules/Cards/sharedTypes.ts +67 -67
- package/src/stories/molecules/SquareAvatarWithName/SquareAvatarWithName.stories.tsx +77 -77
- package/src/stories/molecules/SquareAvatarWithName/SquareAvatarWithName.tsx +84 -84
- package/src/stories/organisms/Modals/FullPageModal.tsx +93 -93
- package/src/stories/organisms/Modals/Modals.stories.tsx +138 -138
- package/src/stories/organisms/Modals/sharedTypes.ts +15 -15
- package/src/stories/organisms/Tables/DrawCardTable.tsx +92 -92
- package/src/stories/organisms/Tables/SortableTable.tsx +112 -112
- package/src/stories/organisms/Tables/Tables.stories.tsx +104 -104
- package/src/stories/organisms/Tables/TeamDrawCardTable/DesktopTableRows.tsx +102 -0
- package/src/stories/organisms/Tables/TeamDrawCardTable/MobileTableRows.tsx +67 -0
- package/src/stories/organisms/Tables/TeamDrawCardTable/TeamDrawCardTable.tsx +24 -0
- package/src/stories/organisms/Tables/mockData.tsx +129 -129
- package/src/stories/organisms/Tables/sharedTypes.ts +17 -9
- package/src/stories/utils/constants.ts +3 -3
- package/src/stories/utils/useScreenSize.ts +28 -28
- package/src/types/tableDataTypes.ts +42 -42
- package/tsconfig.json +23 -23
- package/dist/stories/atoms/Icons/AddIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/AddIcon.js +0 -9
- package/dist/stories/atoms/Icons/AddIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/AvailabilityMaybeIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/AvailabilityMaybeIcon.js +0 -7
- package/dist/stories/atoms/Icons/AvailabilityMaybeIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/AvailabilityNoIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/AvailabilityNoIcon.js +0 -7
- package/dist/stories/atoms/Icons/AvailabilityNoIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/AvailabilityNotSetIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/AvailabilityNotSetIcon.js +0 -8
- package/dist/stories/atoms/Icons/AvailabilityNotSetIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/AvailabilityYesIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/AvailabilityYesIcon.js +0 -7
- package/dist/stories/atoms/Icons/AvailabilityYesIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/CalendarIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/CalendarIcon.js +0 -7
- package/dist/stories/atoms/Icons/CalendarIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/ClockIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/ClockIcon.js +0 -9
- package/dist/stories/atoms/Icons/ClockIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/CloseIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/CloseIcon.js +0 -7
- package/dist/stories/atoms/Icons/CloseIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/DeleteIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/DeleteIcon.js +0 -11
- package/dist/stories/atoms/Icons/DeleteIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/EditIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/EditIcon.js +0 -7
- package/dist/stories/atoms/Icons/EditIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/Icons.stories.d.ts +0 -23
- package/dist/stories/atoms/Icons/Icons.stories.js +0 -178
- package/dist/stories/atoms/Icons/Icons.stories.js.map +0 -1
- package/dist/stories/atoms/Icons/LeftChevronIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/LeftChevronIcon.js +0 -7
- package/dist/stories/atoms/Icons/LeftChevronIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/LocationIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/LocationIcon.js +0 -8
- package/dist/stories/atoms/Icons/LocationIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/MessageIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/MessageIcon.js +0 -7
- package/dist/stories/atoms/Icons/MessageIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/RightChevronIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/RightChevronIcon.js +0 -7
- package/dist/stories/atoms/Icons/RightChevronIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/SessionIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/SessionIcon.js +0 -7
- package/dist/stories/atoms/Icons/SessionIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/SwapIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/SwapIcon.js +0 -7
- package/dist/stories/atoms/Icons/SwapIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/VisibilityIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/VisibilityIcon.js +0 -8
- package/dist/stories/atoms/Icons/VisibilityIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/VisibilityOffIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/VisibilityOffIcon.js +0 -9
- package/dist/stories/atoms/Icons/VisibilityOffIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/WinnerIndicatorIcon.d.ts +0 -3
- package/dist/stories/atoms/Icons/WinnerIndicatorIcon.js +0 -32
- package/dist/stories/atoms/Icons/WinnerIndicatorIcon.js.map +0 -1
- package/dist/stories/atoms/Icons/sharedTypes.d.ts +0 -9
- package/dist/stories/atoms/Icons/sharedTypes.js +0 -2
- package/dist/stories/atoms/Icons/sharedTypes.js.map +0 -1
- package/dist/stories/atoms/Map/Map.d.ts +0 -7
- package/dist/stories/atoms/Map/Map.js +0 -9
- package/dist/stories/atoms/Map/Map.js.map +0 -1
- package/dist/stories/atoms/Map/Map.stories.d.ts +0 -9
- package/dist/stories/atoms/Map/Map.stories.js +0 -36
- package/dist/stories/atoms/Map/Map.stories.js.map +0 -1
- package/dist/stories/molecules/AvatarWithName/AvatarWithName.d.ts +0 -27
- package/dist/stories/molecules/AvatarWithName/AvatarWithName.js +0 -21
- package/dist/stories/molecules/AvatarWithName/AvatarWithName.js.map +0 -1
- package/dist/stories/molecules/AvatarWithName/AvatarWithName.stories.d.ts +0 -15
- package/dist/stories/molecules/AvatarWithName/AvatarWithName.stories.js +0 -73
- package/dist/stories/molecules/AvatarWithName/AvatarWithName.stories.js.map +0 -1
- package/dist/stories/molecules/Cards/DrawCard.d.ts +0 -3
- package/dist/stories/molecules/Cards/DrawCard.js +0 -117
- package/dist/stories/molecules/Cards/DrawCard.js.map +0 -1
- package/dist/stories/molecules/Cards/Modals.stories.d.ts +0 -5
- package/dist/stories/molecules/Cards/Modals.stories.js +0 -73
- package/dist/stories/molecules/Cards/Modals.stories.js.map +0 -1
- package/dist/stories/molecules/Cards/TeamDrawCard.d.ts +0 -3
- package/dist/stories/molecules/Cards/TeamDrawCard.js +0 -75
- package/dist/stories/molecules/Cards/TeamDrawCard.js.map +0 -1
- package/dist/stories/molecules/Cards/sharedTypes.d.ts +0 -59
- package/dist/stories/molecules/Cards/sharedTypes.js +0 -3
- package/dist/stories/molecules/Cards/sharedTypes.js.map +0 -1
- package/dist/stories/molecules/SquareAvatarWithName/SquareAvatarWithName.d.ts +0 -27
- package/dist/stories/molecules/SquareAvatarWithName/SquareAvatarWithName.js +0 -25
- package/dist/stories/molecules/SquareAvatarWithName/SquareAvatarWithName.js.map +0 -1
- package/dist/stories/molecules/SquareAvatarWithName/SquareAvatarWithName.stories.d.ts +0 -13
- package/dist/stories/molecules/SquareAvatarWithName/SquareAvatarWithName.stories.js +0 -66
- package/dist/stories/molecules/SquareAvatarWithName/SquareAvatarWithName.stories.js.map +0 -1
- package/dist/stories/organisms/Modals/FullPageModal.d.ts +0 -4
- package/dist/stories/organisms/Modals/FullPageModal.js +0 -60
- package/dist/stories/organisms/Modals/FullPageModal.js.map +0 -1
- package/dist/stories/organisms/Modals/Modals.stories.d.ts +0 -5
- package/dist/stories/organisms/Modals/Modals.stories.js +0 -74
- package/dist/stories/organisms/Modals/Modals.stories.js.map +0 -1
- package/dist/stories/organisms/Modals/sharedTypes.d.ts +0 -14
- package/dist/stories/organisms/Modals/sharedTypes.js +0 -2
- package/dist/stories/organisms/Modals/sharedTypes.js.map +0 -1
- package/dist/stories/organisms/Tables/DrawCardTable.d.ts +0 -3
- package/dist/stories/organisms/Tables/DrawCardTable.js +0 -59
- package/dist/stories/organisms/Tables/DrawCardTable.js.map +0 -1
- package/dist/stories/organisms/Tables/SortableTable.d.ts +0 -23
- package/dist/stories/organisms/Tables/SortableTable.js +0 -34
- package/dist/stories/organisms/Tables/SortableTable.js.map +0 -1
- package/dist/stories/organisms/Tables/Tables.stories.d.ts +0 -8
- package/dist/stories/organisms/Tables/Tables.stories.js +0 -91
- package/dist/stories/organisms/Tables/Tables.stories.js.map +0 -1
- package/dist/stories/organisms/Tables/TeamDrawCardTable.d.ts +0 -3
- package/dist/stories/organisms/Tables/TeamDrawCardTable.js +0 -96
- package/dist/stories/organisms/Tables/TeamDrawCardTable.js.map +0 -1
- package/dist/stories/organisms/Tables/mockData.d.ts +0 -69
- package/dist/stories/organisms/Tables/mockData.js +0 -98
- package/dist/stories/organisms/Tables/mockData.js.map +0 -1
- package/dist/stories/organisms/Tables/sharedTypes.d.ts +0 -8
- package/dist/stories/organisms/Tables/sharedTypes.js +0 -2
- package/dist/stories/organisms/Tables/sharedTypes.js.map +0 -1
- package/dist/stories/utils/constants.d.ts +0 -3
- package/dist/stories/utils/constants.js +0 -4
- package/dist/stories/utils/constants.js.map +0 -1
- package/dist/stories/utils/useScreenSize.d.ts +0 -4
- package/dist/stories/utils/useScreenSize.js +0 -28
- package/dist/stories/utils/useScreenSize.js.map +0 -1
- package/dist/types/tableDataTypes.d.ts +0 -38
- package/dist/types/tableDataTypes.js +0 -2
- package/dist/types/tableDataTypes.js.map +0 -1
- package/src/stories/organisms/Tables/TeamDrawCardTable.tsx +0 -156
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export function Button({ primary, backgroundColor, size, label, ...props }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
primary: any;
|
|
4
|
+
backgroundColor: any;
|
|
5
|
+
size: any;
|
|
6
|
+
label: any;
|
|
7
|
+
}): JSX.Element;
|
|
8
|
+
export namespace Button {
|
|
9
|
+
namespace propTypes {
|
|
10
|
+
const primary: PropTypes.Requireable<boolean>;
|
|
11
|
+
const backgroundColor: PropTypes.Requireable<string>;
|
|
12
|
+
const size: PropTypes.Requireable<string>;
|
|
13
|
+
const label: PropTypes.Validator<string>;
|
|
14
|
+
const onClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
15
|
+
}
|
|
16
|
+
namespace defaultProps {
|
|
17
|
+
const backgroundColor_1: null;
|
|
18
|
+
export { backgroundColor_1 as backgroundColor };
|
|
19
|
+
const primary_1: boolean;
|
|
20
|
+
export { primary_1 as primary };
|
|
21
|
+
const size_1: string;
|
|
22
|
+
export { size_1 as size };
|
|
23
|
+
const onClick_1: undefined;
|
|
24
|
+
export { onClick_1 as onClick };
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
import PropTypes from "prop-types";
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
|
+
var t = {};
|
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4
|
+
t[p] = s[p];
|
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8
|
+
t[p[i]] = s[p[i]];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
import React from 'react';
|
|
13
|
+
import PropTypes from 'prop-types';
|
|
14
|
+
import './button.css';
|
|
15
|
+
/**
|
|
16
|
+
* Primary UI component for user interaction
|
|
17
|
+
*/
|
|
18
|
+
export const Button = (_a) => {
|
|
19
|
+
var { primary, backgroundColor, size, label } = _a, props = __rest(_a, ["primary", "backgroundColor", "size", "label"]);
|
|
20
|
+
const mode = primary ? 'storybook-button--primary' : 'storybook-button--secondary';
|
|
21
|
+
return (React.createElement("button", Object.assign({ type: "button", className: ['storybook-button', `storybook-button--${size}`, mode].join(' '), style: backgroundColor && { backgroundColor } }, props), label));
|
|
22
|
+
};
|
|
23
|
+
Button.propTypes = {
|
|
24
|
+
/**
|
|
25
|
+
* Is this the principal call to action on the page?
|
|
26
|
+
*/
|
|
27
|
+
primary: PropTypes.bool,
|
|
28
|
+
/**
|
|
29
|
+
* What background color to use
|
|
30
|
+
*/
|
|
31
|
+
backgroundColor: PropTypes.string,
|
|
32
|
+
/**
|
|
33
|
+
* How large should the button be?
|
|
34
|
+
*/
|
|
35
|
+
size: PropTypes.oneOf(['small', 'medium', 'large']),
|
|
36
|
+
/**
|
|
37
|
+
* Button contents
|
|
38
|
+
*/
|
|
39
|
+
label: PropTypes.string.isRequired,
|
|
40
|
+
/**
|
|
41
|
+
* Optional click handler
|
|
42
|
+
*/
|
|
43
|
+
onClick: PropTypes.func,
|
|
44
|
+
};
|
|
45
|
+
Button.defaultProps = {
|
|
46
|
+
backgroundColor: null,
|
|
47
|
+
primary: false,
|
|
48
|
+
size: 'medium',
|
|
49
|
+
onClick: undefined,
|
|
50
|
+
};
|
|
51
|
+
//# sourceMappingURL=Button.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Button.js","sourceRoot":"","sources":["../../src/stories/Button.jsx"],"names":[],"mappings":";;;;;;;;;;;AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,cAAc,CAAC;AAEtB;;GAEG;AACH,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,EAAmD,EAAE,EAAE;QAAvD,EAAE,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,KAAK,OAAY,EAAP,KAAK,cAAjD,+CAAmD,CAAF;IACtE,MAAM,IAAI,GAAG,OAAO,CAAC,CAAC,CAAC,2BAA2B,CAAC,CAAC,CAAC,6BAA6B,CAAC;IACnF,OAAO,CACL,8CACE,IAAI,EAAC,QAAQ,EACb,SAAS,EAAE,CAAC,kBAAkB,EAAE,qBAAqB,IAAI,EAAE,EAAE,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAC5E,KAAK,EAAE,eAAe,IAAI,EAAE,eAAe,EAAE,IACzC,KAAK,GAER,KAAK,CACC,CACV,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,CAAC,SAAS,GAAG;IACjB;;OAEG;IACH,OAAO,EAAE,SAAS,CAAC,IAAI;IACvB;;OAEG;IACH,eAAe,EAAE,SAAS,CAAC,MAAM;IACjC;;OAEG;IACH,IAAI,EAAE,SAAS,CAAC,KAAK,CAAC,CAAC,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC;IACnD;;OAEG;IACH,KAAK,EAAE,SAAS,CAAC,MAAM,CAAC,UAAU;IAClC;;OAEG;IACH,OAAO,EAAE,SAAS,CAAC,IAAI;CACxB,CAAC;AAEF,MAAM,CAAC,YAAY,GAAG;IACpB,eAAe,EAAE,IAAI;IACrB,OAAO,EAAE,KAAK;IACd,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,SAAS;CACnB,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export const title: string;
|
|
3
|
+
export { Button as component };
|
|
4
|
+
export namespace argTypes {
|
|
5
|
+
namespace backgroundColor {
|
|
6
|
+
const control: string;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
export default _default;
|
|
11
|
+
export const Primary: any;
|
|
12
|
+
export const Secondary: any;
|
|
13
|
+
export const Large: any;
|
|
14
|
+
export const Small: any;
|
|
15
|
+
import { Button } from "./Button";
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Button } from './Button';
|
|
3
|
+
// More on default export: https://storybook.js.org/docs/react/writing-stories/introduction#default-export
|
|
4
|
+
export default {
|
|
5
|
+
title: 'Example/Button',
|
|
6
|
+
component: Button,
|
|
7
|
+
// More on argTypes: https://storybook.js.org/docs/react/api/argtypes
|
|
8
|
+
argTypes: {
|
|
9
|
+
backgroundColor: { control: 'color' },
|
|
10
|
+
},
|
|
11
|
+
};
|
|
12
|
+
// More on component templates: https://storybook.js.org/docs/react/writing-stories/introduction#using-args
|
|
13
|
+
const Template = (args) => React.createElement(Button, Object.assign({}, args));
|
|
14
|
+
export const Primary = Template.bind({});
|
|
15
|
+
// More on args: https://storybook.js.org/docs/react/writing-stories/args
|
|
16
|
+
Primary.args = {
|
|
17
|
+
primary: true,
|
|
18
|
+
label: 'Button',
|
|
19
|
+
};
|
|
20
|
+
export const Secondary = Template.bind({});
|
|
21
|
+
Secondary.args = {
|
|
22
|
+
label: 'Button',
|
|
23
|
+
};
|
|
24
|
+
export const Large = Template.bind({});
|
|
25
|
+
Large.args = {
|
|
26
|
+
size: 'large',
|
|
27
|
+
label: 'Button',
|
|
28
|
+
};
|
|
29
|
+
export const Small = Template.bind({});
|
|
30
|
+
Small.args = {
|
|
31
|
+
size: 'small',
|
|
32
|
+
label: 'Button',
|
|
33
|
+
};
|
|
34
|
+
//# sourceMappingURL=Button.stories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Button.stories.js","sourceRoot":"","sources":["../../src/stories/Button.stories.jsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAElC,0GAA0G;AAC1G,eAAe;IACb,KAAK,EAAE,gBAAgB;IACvB,SAAS,EAAE,MAAM;IACjB,qEAAqE;IACrE,QAAQ,EAAE;QACR,eAAe,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;KACtC;CACF,CAAC;AAEF,2GAA2G;AAC3G,MAAM,QAAQ,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,oBAAC,MAAM,oBAAK,IAAI,EAAI,CAAC;AAEhD,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AACzC,yEAAyE;AACzE,OAAO,CAAC,IAAI,GAAG;IACb,OAAO,EAAE,IAAI;IACb,KAAK,EAAE,QAAQ;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,SAAS,GAAG,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AAC3C,SAAS,CAAC,IAAI,GAAG;IACf,KAAK,EAAE,QAAQ;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,KAAK,GAAG,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AACvC,KAAK,CAAC,IAAI,GAAG;IACX,IAAI,EAAE,OAAO;IACb,KAAK,EAAE,QAAQ;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,KAAK,GAAG,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AACvC,KAAK,CAAC,IAAI,GAAG;IACX,IAAI,EAAE,OAAO;IACb,KAAK,EAAE,QAAQ;CAChB,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export function Header({ user, onLogin, onLogout, onCreateAccount }: {
|
|
2
|
+
user: any;
|
|
3
|
+
onLogin: any;
|
|
4
|
+
onLogout: any;
|
|
5
|
+
onCreateAccount: any;
|
|
6
|
+
}): JSX.Element;
|
|
7
|
+
export namespace Header {
|
|
8
|
+
namespace propTypes {
|
|
9
|
+
const user: PropTypes.Requireable<PropTypes.InferProps<{}>>;
|
|
10
|
+
const onLogin: PropTypes.Validator<(...args: any[]) => any>;
|
|
11
|
+
const onLogout: PropTypes.Validator<(...args: any[]) => any>;
|
|
12
|
+
const onCreateAccount: PropTypes.Validator<(...args: any[]) => any>;
|
|
13
|
+
}
|
|
14
|
+
namespace defaultProps {
|
|
15
|
+
const user_1: null;
|
|
16
|
+
export { user_1 as user };
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
import PropTypes from "prop-types";
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
import { Button } from './Button';
|
|
4
|
+
import './header.css';
|
|
5
|
+
export const Header = ({ user, onLogin, onLogout, onCreateAccount }) => (React.createElement("header", null,
|
|
6
|
+
React.createElement("div", { className: "wrapper" },
|
|
7
|
+
React.createElement("div", null,
|
|
8
|
+
React.createElement("svg", { width: "32", height: "32", viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg" },
|
|
9
|
+
React.createElement("g", { fill: "none", fillRule: "evenodd" },
|
|
10
|
+
React.createElement("path", { d: "M10 0h12a10 10 0 0110 10v12a10 10 0 01-10 10H10A10 10 0 010 22V10A10 10 0 0110 0z", fill: "#FFF" }),
|
|
11
|
+
React.createElement("path", { d: "M5.3 10.6l10.4 6v11.1l-10.4-6v-11zm11.4-6.2l9.7 5.5-9.7 5.6V4.4z", fill: "#555AB9" }),
|
|
12
|
+
React.createElement("path", { d: "M27.2 10.6v11.2l-10.5 6V16.5l10.5-6zM15.7 4.4v11L6 10l9.7-5.5z", fill: "#91BAF8" }))),
|
|
13
|
+
React.createElement("h1", null, "Acme")),
|
|
14
|
+
React.createElement("div", null, user ? (React.createElement(React.Fragment, null,
|
|
15
|
+
React.createElement("span", { className: "welcome" },
|
|
16
|
+
"Welcome, ",
|
|
17
|
+
React.createElement("b", null, user.name),
|
|
18
|
+
"!"),
|
|
19
|
+
React.createElement(Button, { size: "small", onClick: onLogout, label: "Log out" }))) : (React.createElement(React.Fragment, null,
|
|
20
|
+
React.createElement(Button, { size: "small", onClick: onLogin, label: "Log in" }),
|
|
21
|
+
React.createElement(Button, { primary: true, size: "small", onClick: onCreateAccount, label: "Sign up" })))))));
|
|
22
|
+
Header.propTypes = {
|
|
23
|
+
user: PropTypes.shape({}),
|
|
24
|
+
onLogin: PropTypes.func.isRequired,
|
|
25
|
+
onLogout: PropTypes.func.isRequired,
|
|
26
|
+
onCreateAccount: PropTypes.func.isRequired,
|
|
27
|
+
};
|
|
28
|
+
Header.defaultProps = {
|
|
29
|
+
user: null,
|
|
30
|
+
};
|
|
31
|
+
//# sourceMappingURL=Header.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Header.js","sourceRoot":"","sources":["../../src/stories/Header.jsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,SAAS,MAAM,YAAY,CAAC;AAEnC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,cAAc,CAAC;AAEtB,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,eAAe,EAAE,EAAE,EAAE,CAAC,CACtE;IACE,6BAAK,SAAS,EAAC,SAAS;QACtB;YACE,6BAAK,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,KAAK,EAAC,4BAA4B;gBAChF,2BAAG,IAAI,EAAC,MAAM,EAAC,QAAQ,EAAC,SAAS;oBAC/B,8BACE,CAAC,EAAC,mFAAmF,EACrF,IAAI,EAAC,MAAM,GACX;oBACF,8BACE,CAAC,EAAC,kEAAkE,EACpE,IAAI,EAAC,SAAS,GACd;oBACF,8BACE,CAAC,EAAC,gEAAgE,EAClE,IAAI,EAAC,SAAS,GACd,CACA,CACA;YACN,uCAAa,CACT;QACN,iCACG,IAAI,CAAC,CAAC,CAAC,CACN;YACE,8BAAM,SAAS,EAAC,SAAS;;gBACd,+BAAI,IAAI,CAAC,IAAI,CAAK;oBACtB;YACP,oBAAC,MAAM,IAAC,IAAI,EAAC,OAAO,EAAC,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAC,SAAS,GAAG,CACzD,CACJ,CAAC,CAAC,CAAC,CACF;YACE,oBAAC,MAAM,IAAC,IAAI,EAAC,OAAO,EAAC,OAAO,EAAE,OAAO,EAAE,KAAK,EAAC,QAAQ,GAAG;YACxD,oBAAC,MAAM,IAAC,OAAO,QAAC,IAAI,EAAC,OAAO,EAAC,OAAO,EAAE,eAAe,EAAE,KAAK,EAAC,SAAS,GAAG,CACxE,CACJ,CACG,CACF,CACC,CACV,CAAC;AAEF,MAAM,CAAC,SAAS,GAAG;IACjB,IAAI,EAAE,SAAS,CAAC,KAAK,CAAC,EAAE,CAAC;IACzB,OAAO,EAAE,SAAS,CAAC,IAAI,CAAC,UAAU;IAClC,QAAQ,EAAE,SAAS,CAAC,IAAI,CAAC,UAAU;IACnC,eAAe,EAAE,SAAS,CAAC,IAAI,CAAC,UAAU;CAC3C,CAAC;AAEF,MAAM,CAAC,YAAY,GAAG;IACpB,IAAI,EAAE,IAAI;CACX,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export const title: string;
|
|
3
|
+
export { Header as component };
|
|
4
|
+
export namespace parameters {
|
|
5
|
+
const layout: string;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
export default _default;
|
|
9
|
+
export const LoggedIn: any;
|
|
10
|
+
export const LoggedOut: any;
|
|
11
|
+
import { Header } from "./Header";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Header } from './Header';
|
|
3
|
+
export default {
|
|
4
|
+
title: 'Example/Header',
|
|
5
|
+
component: Header,
|
|
6
|
+
parameters: {
|
|
7
|
+
// More on Story layout: https://storybook.js.org/docs/react/configure/story-layout
|
|
8
|
+
layout: 'fullscreen',
|
|
9
|
+
},
|
|
10
|
+
};
|
|
11
|
+
const Template = (args) => React.createElement(Header, Object.assign({}, args));
|
|
12
|
+
export const LoggedIn = Template.bind({});
|
|
13
|
+
LoggedIn.args = {
|
|
14
|
+
user: {
|
|
15
|
+
name: 'Jane Doe',
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
export const LoggedOut = Template.bind({});
|
|
19
|
+
LoggedOut.args = {};
|
|
20
|
+
//# sourceMappingURL=Header.stories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Header.stories.js","sourceRoot":"","sources":["../../src/stories/Header.stories.jsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAElC,eAAe;IACb,KAAK,EAAE,gBAAgB;IACvB,SAAS,EAAE,MAAM;IACjB,UAAU,EAAE;QACV,mFAAmF;QACnF,MAAM,EAAE,YAAY;KACrB;CACF,CAAC;AAEF,MAAM,QAAQ,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,oBAAC,MAAM,oBAAK,IAAI,EAAI,CAAC;AAEhD,MAAM,CAAC,MAAM,QAAQ,GAAG,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AAC1C,QAAQ,CAAC,IAAI,GAAG;IACd,IAAI,EAAE;QACJ,IAAI,EAAE,UAAU;KACjB;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,SAAS,GAAG,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AAC3C,SAAS,CAAC,IAAI,GAAG,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function Page(): JSX.Element;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Header } from './Header';
|
|
3
|
+
import './page.css';
|
|
4
|
+
export const Page = () => {
|
|
5
|
+
const [user, setUser] = React.useState();
|
|
6
|
+
return (React.createElement("article", null,
|
|
7
|
+
React.createElement(Header, { user: user, onLogin: () => setUser({ name: 'Jane Doe' }), onLogout: () => setUser(undefined), onCreateAccount: () => setUser({ name: 'Jane Doe' }) }),
|
|
8
|
+
React.createElement("section", null,
|
|
9
|
+
React.createElement("h2", null, "Pages in Storybook"),
|
|
10
|
+
React.createElement("p", null,
|
|
11
|
+
"We recommend building UIs with a",
|
|
12
|
+
' ',
|
|
13
|
+
React.createElement("a", { href: "https://componentdriven.org", target: "_blank", rel: "noopener noreferrer" },
|
|
14
|
+
React.createElement("strong", null, "component-driven")),
|
|
15
|
+
' ',
|
|
16
|
+
"process starting with atomic components and ending with pages."),
|
|
17
|
+
React.createElement("p", null, "Render pages with mock data. This makes it easy to build and review page states without needing to navigate to them in your app. Here are some handy patterns for managing page data in Storybook:"),
|
|
18
|
+
React.createElement("ul", null,
|
|
19
|
+
React.createElement("li", null, "Use a higher-level connected component. Storybook helps you compose such data from the \"args\" of child component stories"),
|
|
20
|
+
React.createElement("li", null, "Assemble data in the page component from your services. You can mock these services out using Storybook.")),
|
|
21
|
+
React.createElement("p", null,
|
|
22
|
+
"Get a guided tutorial on component-driven development at",
|
|
23
|
+
' ',
|
|
24
|
+
React.createElement("a", { href: "https://storybook.js.org/tutorials/", target: "_blank", rel: "noopener noreferrer" }, "Storybook tutorials"),
|
|
25
|
+
". Read more in the",
|
|
26
|
+
' ',
|
|
27
|
+
React.createElement("a", { href: "https://storybook.js.org/docs", target: "_blank", rel: "noopener noreferrer" }, "docs"),
|
|
28
|
+
"."),
|
|
29
|
+
React.createElement("div", { className: "tip-wrapper" },
|
|
30
|
+
React.createElement("span", { className: "tip" }, "Tip"),
|
|
31
|
+
" Adjust the width of the canvas with the",
|
|
32
|
+
' ',
|
|
33
|
+
React.createElement("svg", { width: "10", height: "10", viewBox: "0 0 12 12", xmlns: "http://www.w3.org/2000/svg" },
|
|
34
|
+
React.createElement("g", { fill: "none", fillRule: "evenodd" },
|
|
35
|
+
React.createElement("path", { d: "M1.5 5.2h4.8c.3 0 .5.2.5.4v5.1c-.1.2-.3.3-.4.3H1.4a.5.5 0 01-.5-.4V5.7c0-.3.2-.5.5-.5zm0-2.1h6.9c.3 0 .5.2.5.4v7a.5.5 0 01-1 0V4H1.5a.5.5 0 010-1zm0-2.1h9c.3 0 .5.2.5.4v9.1a.5.5 0 01-1 0V2H1.5a.5.5 0 010-1zm4.3 5.2H2V10h3.8V6.2z", id: "a", fill: "#999" }))),
|
|
36
|
+
"Viewports addon in the toolbar"))));
|
|
37
|
+
};
|
|
38
|
+
//# sourceMappingURL=Page.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Page.js","sourceRoot":"","sources":["../../src/stories/Page.jsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,YAAY,CAAC;AAEpB,MAAM,CAAC,MAAM,IAAI,GAAG,GAAG,EAAE;IACvB,MAAM,CAAC,IAAI,EAAE,OAAO,CAAC,GAAG,KAAK,CAAC,QAAQ,EAAE,CAAC;IAEzC,OAAO,CACL;QACE,oBAAC,MAAM,IACL,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC,EAC5C,QAAQ,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC,EAClC,eAAe,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC,GACpD;QAEF;YACE,qDAA2B;YAC3B;;gBACmC,GAAG;gBACpC,2BAAG,IAAI,EAAC,6BAA6B,EAAC,MAAM,EAAC,QAAQ,EAAC,GAAG,EAAC,qBAAqB;oBAC7E,uDAAiC,CAC/B;gBAAC,GAAG;iFAEN;YACJ,oOAII;YACJ;gBACE,6JAGK;gBACL,2IAGK,CACF;YACL;;gBAC2D,GAAG;gBAC5D,2BAAG,IAAI,EAAC,qCAAqC,EAAC,MAAM,EAAC,QAAQ,EAAC,GAAG,EAAC,qBAAqB,0BAEnF;;gBACe,GAAG;gBACtB,2BAAG,IAAI,EAAC,+BAA+B,EAAC,MAAM,EAAC,QAAQ,EAAC,GAAG,EAAC,qBAAqB,WAE7E;oBAEF;YACJ,6BAAK,SAAS,EAAC,aAAa;gBAC1B,8BAAM,SAAS,EAAC,KAAK,UAAW;;gBAAyC,GAAG;gBAC5E,6BAAK,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,KAAK,EAAC,4BAA4B;oBAChF,2BAAG,IAAI,EAAC,MAAM,EAAC,QAAQ,EAAC,SAAS;wBAC/B,8BACE,CAAC,EAAC,sOAAsO,EACxO,EAAE,EAAC,GAAG,EACN,IAAI,EAAC,MAAM,GACX,CACA,CACA;iDAEF,CACE,CACF,CACX,CAAC;AACJ,CAAC,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export const title: string;
|
|
3
|
+
export { Page as component };
|
|
4
|
+
export namespace parameters {
|
|
5
|
+
const layout: string;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
export default _default;
|
|
9
|
+
export const LoggedOut: any;
|
|
10
|
+
export const LoggedIn: any;
|
|
11
|
+
import { Page } from "./Page";
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import React from 'react';
|
|
11
|
+
import { within, userEvent } from '@storybook/testing-library';
|
|
12
|
+
import { Page } from './Page';
|
|
13
|
+
export default {
|
|
14
|
+
title: 'Example/Page',
|
|
15
|
+
component: Page,
|
|
16
|
+
parameters: {
|
|
17
|
+
// More on Story layout: https://storybook.js.org/docs/react/configure/story-layout
|
|
18
|
+
layout: 'fullscreen',
|
|
19
|
+
},
|
|
20
|
+
};
|
|
21
|
+
const Template = (args) => React.createElement(Page, Object.assign({}, args));
|
|
22
|
+
// More on interaction testing: https://storybook.js.org/docs/react/writing-tests/interaction-testing
|
|
23
|
+
export const LoggedOut = Template.bind({});
|
|
24
|
+
export const LoggedIn = Template.bind({});
|
|
25
|
+
LoggedIn.play = ({ canvasElement }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
26
|
+
const canvas = within(canvasElement);
|
|
27
|
+
const loginButton = yield canvas.getByRole('button', { name: /Log in/i });
|
|
28
|
+
yield userEvent.click(loginButton);
|
|
29
|
+
});
|
|
30
|
+
//# sourceMappingURL=Page.stories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Page.stories.js","sourceRoot":"","sources":["../../src/stories/Page.stories.jsx"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAE/D,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,eAAe;IACb,KAAK,EAAE,cAAc;IACrB,SAAS,EAAE,IAAI;IACf,UAAU,EAAE;QACV,mFAAmF;QACnF,MAAM,EAAE,YAAY;KACrB;CACF,CAAC;AAEF,MAAM,QAAQ,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC,oBAAC,IAAI,oBAAK,IAAI,EAAI,CAAC;AAE9C,qGAAqG;AACrG,MAAM,CAAC,MAAM,SAAS,GAAG,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AAE3C,MAAM,CAAC,MAAM,QAAQ,GAAG,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AAC1C,QAAQ,CAAC,IAAI,GAAG,CAAO,EAAE,aAAa,EAAE,EAAE,EAAE;IAC1C,MAAM,MAAM,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC;IACrC,MAAM,WAAW,GAAG,MAAM,MAAM,CAAC,SAAS,CAAC,QAAQ,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC,CAAC;IAC1E,MAAM,SAAS,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;AACrC,CAAC,CAAA,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48" version="1.1" viewBox="0 0 48 48"><title>illustration/comments</title><g id="illustration/comments" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1"><path id="Path" fill="#96D07C" d="M2.52730803,17.9196415 C2.44329744,17.9745167 2.36370847,18.000488 2.29303375,18.000488 C2.1197031,18.000488 2,17.8443588 2,17.5752855 L2,4 C2,1.790861 3.790861,3.23296945e-13 6,3.23296945e-13 L33.9995117,3.23296945e-13 C36.2086507,3.23296945e-13 37.9995117,1.790861 37.9995117,4 L37.9995117,9.999512 C37.9995117,12.208651 36.2086507,13.999512 33.9995117,13.999512 L8,13.999512 C7.83499225,13.999512 7.6723181,13.9895206 7.51254954,13.9701099 L2.52730803,17.9196415 Z"/><path id="Path" fill="#73E1E0" d="M7.51066,44.9703679 L2.52730803,47.9186655 C2.44329744,47.9735407 2.36370847,47.999512 2.29303375,47.999512 C2.1197031,47.999512 2,47.8433828 2,47.5743095 L2,35 C2,32.790861 3.790861,31 6,31 L26,31 C28.209139,31 30,32.790861 30,35 L30,41 C30,43.209139 28.209139,45 26,45 L8,45 C7.8343417,45 7.67103544,44.9899297 7.51066,44.9703679 Z"/><path id="Path" fill="#FFD476" d="M46,19.5 L46,33.0747975 C46,33.3438708 45.8802969,33.5 45.7069663,33.5 C45.6362915,33.5 45.5567026,33.4740287 45.472692,33.4191535 L40.4887103,29.4704446 C40.3285371,29.489956 40.1654415,29.5 40,29.5 L18,29.5 C15.790861,29.5 14,27.709139 14,25.5 L14,19.5 C14,17.290861 15.790861,15.5 18,15.5 L42,15.5 C44.209139,15.5 46,17.290861 46,19.5 Z"/></g></svg>
|
|
@@ -5,11 +5,8 @@
|
|
|
5
5
|
--black: #000;
|
|
6
6
|
--white: #fff;
|
|
7
7
|
--light-grey: #d7e0ea;
|
|
8
|
-
--grey: #828B96;
|
|
9
8
|
--darkest-grey: #3b4859;
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
|
|
10
|
+
/* colors */
|
|
12
11
|
--cool-grey-300: #DDE3EB;
|
|
13
|
-
|
|
14
|
-
--blue-grey-500: #778DA9;
|
|
15
|
-
}
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48" version="1.1" viewBox="0 0 48 48"><title>illustration/direction</title><g id="illustration/direction" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1"><path id="Combined-Shape" fill="#FFD476" d="M23.4917015,33.6030641 L2.93840258,31.4321033 C2.38917316,31.3740904 1.99096346,30.8818233 2.04897631,30.3325939 C2.0747515,30.0885705 2.18934861,29.8625419 2.37095722,29.6975265 L34.2609105,0.721285325 C34.6696614,0.349881049 35.3021022,0.38015648 35.6735064,0.788907393 C35.9232621,1.06377731 36.0001133,1.45442096 35.8730901,1.80341447 L24.5364357,32.9506164 C24.3793473,33.3822133 23.9484565,33.6513092 23.4917015,33.6030641 L23.4917015,33.6030641 Z"/><path id="Combined-Shape-Copy" fill="#FFC445" d="M24.3163597,33.2881029 C24.0306575,33.0138462 23.9337246,32.5968232 24.069176,32.2246735 L35.091923,1.9399251 C35.2266075,1.56988243 35.5659249,1.31333613 35.9586669,1.28460955 C36.5094802,1.24432106 36.9886628,1.65818318 37.0289513,2.20899647 L40.2437557,46.1609256 C40.2644355,46.4436546 40.1641446,46.7218752 39.9678293,46.9263833 C39.5853672,47.3248067 38.9523344,47.3377458 38.5539111,46.9552837 L24.3163597,33.2881029 L24.3163597,33.2881029 Z"/></g></svg>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
-
<defs>
|
|
3
|
-
<path id="0s7v3h5tpa" d="M12 0c6.075 0 11 4.773 11 10.661 0 4.263-2.192 7.456-6.31 9.646l-6.523 3.625c-.084.047-.173.068-.26.068-.274 0-.526-.213-.526-.51v-2.472C3.438 19.61-.613 13.524 1.625 7.014 2.649 4.033 5.095 1.64 8.164.63 9.469.199 10.759 0 12 0zm0 1.015c-1.163 0-2.34.193-3.499.575-2.76.909-4.958 3.056-5.882 5.745-.943 2.743-.707 5.578.664 7.983 1.344 2.358 3.657 4.076 6.346 4.714.47.11.8.518.8.986v1.598l5.74-3.19c3.897-2.074 5.784-4.937 5.784-8.765 0-5.318-4.465-9.646-9.953-9.646zM14.095 13.2c.29 0 .524.224.524.5s-.234.5-.524.5h-6.81c-.288 0-.523-.224-.523-.5s.235-.5.524-.5zm3.143-3.046c.29 0 .524.224.524.5s-.235.5-.524.5H7.286c-.29 0-.524-.224-.524-.5s.235-.5.524-.5zm0-3.046c.29 0 .524.224.524.5s-.235.5-.524.5H7.286c-.29 0-.524-.224-.524-.5s.235-.5.524-.5z"/>
|
|
4
|
-
</defs>
|
|
5
|
-
<g fill="none" fill-rule="evenodd">
|
|
6
|
-
<g>
|
|
7
|
-
<use fill="#008DED" xlink:href="#0s7v3h5tpa"/>
|
|
8
|
-
</g>
|
|
9
|
-
</g>
|
|
10
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<defs>
|
|
3
|
+
<path id="0s7v3h5tpa" d="M12 0c6.075 0 11 4.773 11 10.661 0 4.263-2.192 7.456-6.31 9.646l-6.523 3.625c-.084.047-.173.068-.26.068-.274 0-.526-.213-.526-.51v-2.472C3.438 19.61-.613 13.524 1.625 7.014 2.649 4.033 5.095 1.64 8.164.63 9.469.199 10.759 0 12 0zm0 1.015c-1.163 0-2.34.193-3.499.575-2.76.909-4.958 3.056-5.882 5.745-.943 2.743-.707 5.578.664 7.983 1.344 2.358 3.657 4.076 6.346 4.714.47.11.8.518.8.986v1.598l5.74-3.19c3.897-2.074 5.784-4.937 5.784-8.765 0-5.318-4.465-9.646-9.953-9.646zM14.095 13.2c.29 0 .524.224.524.5s-.234.5-.524.5h-6.81c-.288 0-.523-.224-.523-.5s.235-.5.524-.5zm3.143-3.046c.29 0 .524.224.524.5s-.235.5-.524.5H7.286c-.29 0-.524-.224-.524-.5s.235-.5.524-.5zm0-3.046c.29 0 .524.224.524.5s-.235.5-.524.5H7.286c-.29 0-.524-.224-.524-.5s.235-.5.524-.5z"/>
|
|
4
|
+
</defs>
|
|
5
|
+
<g fill="none" fill-rule="evenodd">
|
|
6
|
+
<g>
|
|
7
|
+
<use fill="#008DED" xlink:href="#0s7v3h5tpa"/>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
</svg>
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import React, { ReactElement } from 'react';
|
|
2
|
-
type ButtonProps = {
|
|
3
|
-
children: string | ReactElement;
|
|
4
|
-
category?: string;
|
|
5
|
-
onClick?: VoidFunction;
|
|
6
|
-
style?: React.CSSProperties;
|
|
7
|
-
|
|
8
|
-
};
|
|
9
|
-
export
|
|
10
|
-
export {};
|
|
1
|
+
import React, { ReactElement } from 'react';
|
|
2
|
+
type ButtonProps = {
|
|
3
|
+
children: string | ReactElement;
|
|
4
|
+
category?: string;
|
|
5
|
+
onClick?: VoidFunction;
|
|
6
|
+
style?: React.CSSProperties;
|
|
7
|
+
};
|
|
8
|
+
export default function Button({ children, category, ...props }: ButtonProps): JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -1,96 +1,80 @@
|
|
|
1
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
|
-
var t = {};
|
|
3
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4
|
-
t[p] = s[p];
|
|
5
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8
|
-
t[p[i]] = s[p[i]];
|
|
9
|
-
}
|
|
10
|
-
return t;
|
|
11
|
-
};
|
|
12
|
-
import React from 'react';
|
|
13
|
-
import MuiButton from '@mui/material/Button';
|
|
14
|
-
import { styled } from '@mui/material/styles';
|
|
15
|
-
const StyledButton = styled(MuiButton)({
|
|
16
|
-
borderRadius: '24px',
|
|
17
|
-
fontSize: '12px',
|
|
18
|
-
padding: '0 24px',
|
|
19
|
-
height: '40px',
|
|
20
|
-
whiteSpace: 'nowrap',
|
|
21
|
-
lineHeight: '39px',
|
|
22
|
-
border: '1px solid transparent',
|
|
23
|
-
'&:hover': {
|
|
24
|
-
cursor: 'pointer'
|
|
25
|
-
},
|
|
26
|
-
});
|
|
27
|
-
const PrimaryButton = styled(StyledButton)((props) => ({
|
|
28
|
-
backgroundColor: 'var(--black)',
|
|
29
|
-
color: 'var(--white)',
|
|
30
|
-
width: props.isExpanded ? '100%' : 'inherit',
|
|
31
|
-
'&:hover': {
|
|
32
|
-
backgroundColor: 'var(--darkest-grey)',
|
|
33
|
-
borderColor: 'var(--darkest-grey)',
|
|
34
|
-
},
|
|
35
|
-
'&:disabled': {
|
|
36
|
-
backgroundColor: 'var(--
|
|
37
|
-
borderColor: 'var(--
|
|
38
|
-
},
|
|
39
|
-
}));
|
|
40
|
-
const SecondaryButton = styled(StyledButton)({
|
|
41
|
-
borderColor: 'var(--black)',
|
|
42
|
-
backgroundColor: 'transparent',
|
|
43
|
-
color: 'var(--black)',
|
|
44
|
-
'&:hover': {
|
|
45
|
-
borderColor: 'var(--darkest-grey)',
|
|
46
|
-
},
|
|
47
|
-
'&:disabled': {
|
|
48
|
-
borderColor: 'var(--disabled)'
|
|
49
|
-
},
|
|
50
|
-
});
|
|
51
|
-
const
|
|
52
|
-
borderColor: '
|
|
53
|
-
backgroundColor: 'transparent',
|
|
54
|
-
color: 'var(--
|
|
55
|
-
|
|
56
|
-
'
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
},
|
|
64
|
-
});
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
var { children, category } = _a, props = __rest(_a, ["children", "category"]);
|
|
81
|
-
switch (category) {
|
|
82
|
-
case 'primary':
|
|
83
|
-
return (React.createElement(PrimaryButton, Object.assign({}, props), children));
|
|
84
|
-
case 'primary-expanded':
|
|
85
|
-
return (React.createElement(PrimaryButton, Object.assign({ isExpanded: true }, props), children));
|
|
86
|
-
case 'secondary':
|
|
87
|
-
return (React.createElement(SecondaryButton, Object.assign({}, props), children));
|
|
88
|
-
case 'secondary-flipped':
|
|
89
|
-
return (React.createElement(SecondaryButtonFlipped, Object.assign({}, props), children));
|
|
90
|
-
case 'link':
|
|
91
|
-
return (React.createElement(LinkButton, Object.assign({ disableTouchRipple: true }, props), children));
|
|
92
|
-
default:
|
|
93
|
-
return (React.createElement(StyledButton, Object.assign({}, props), children));
|
|
94
|
-
}
|
|
95
|
-
}
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
|
+
var t = {};
|
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4
|
+
t[p] = s[p];
|
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8
|
+
t[p[i]] = s[p[i]];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
import React from 'react';
|
|
13
|
+
import MuiButton from '@mui/material/Button';
|
|
14
|
+
import { styled } from '@mui/material/styles';
|
|
15
|
+
const StyledButton = styled(MuiButton)({
|
|
16
|
+
borderRadius: '24px',
|
|
17
|
+
fontSize: '12px',
|
|
18
|
+
padding: '0 24px',
|
|
19
|
+
height: '40px',
|
|
20
|
+
whiteSpace: 'nowrap',
|
|
21
|
+
lineHeight: '39px',
|
|
22
|
+
border: '1px solid transparent',
|
|
23
|
+
'&:hover': {
|
|
24
|
+
cursor: 'pointer'
|
|
25
|
+
},
|
|
26
|
+
});
|
|
27
|
+
const PrimaryButton = styled(StyledButton)((props) => ({
|
|
28
|
+
backgroundColor: 'var(--black)',
|
|
29
|
+
color: 'var(--white)',
|
|
30
|
+
width: props.isExpanded ? '100%' : 'inherit',
|
|
31
|
+
'&:hover': {
|
|
32
|
+
backgroundColor: 'var(--darkest-grey)',
|
|
33
|
+
borderColor: 'var(--darkest-grey)',
|
|
34
|
+
},
|
|
35
|
+
'&:disabled': {
|
|
36
|
+
backgroundColor: 'var(--lightest-grey)',
|
|
37
|
+
borderColor: 'var(--lightest-grey)',
|
|
38
|
+
},
|
|
39
|
+
}));
|
|
40
|
+
const SecondaryButton = styled(StyledButton)({
|
|
41
|
+
borderColor: 'var(--black)',
|
|
42
|
+
backgroundColor: 'transparent',
|
|
43
|
+
color: 'var(--black)',
|
|
44
|
+
'&:hover': {
|
|
45
|
+
borderColor: 'var(--darkest-grey)',
|
|
46
|
+
},
|
|
47
|
+
'&:disabled': {
|
|
48
|
+
borderColor: 'var(--disabled)'
|
|
49
|
+
},
|
|
50
|
+
});
|
|
51
|
+
const LinkButton = styled(MuiButton)({
|
|
52
|
+
borderColor: 'transparent',
|
|
53
|
+
backgroundColor: 'transparent',
|
|
54
|
+
color: 'var(--primary)',
|
|
55
|
+
textTransform: 'inherit',
|
|
56
|
+
justifyContent: 'left',
|
|
57
|
+
padding: 0,
|
|
58
|
+
'&:hover': {
|
|
59
|
+
backgroundColor: 'transparent',
|
|
60
|
+
},
|
|
61
|
+
'&:disabled': {
|
|
62
|
+
borderColor: 'var(--disabled)'
|
|
63
|
+
},
|
|
64
|
+
});
|
|
65
|
+
export default function Button(_a) {
|
|
66
|
+
var { children, category } = _a, props = __rest(_a, ["children", "category"]);
|
|
67
|
+
switch (category) {
|
|
68
|
+
case 'primary':
|
|
69
|
+
return (React.createElement(PrimaryButton, Object.assign({}, props), children));
|
|
70
|
+
case 'primary-expanded':
|
|
71
|
+
return (React.createElement(PrimaryButton, Object.assign({ isExpanded: true }, props), children));
|
|
72
|
+
case 'secondary':
|
|
73
|
+
return (React.createElement(SecondaryButton, Object.assign({}, props), children));
|
|
74
|
+
case 'link':
|
|
75
|
+
return (React.createElement(LinkButton, Object.assign({ disableTouchRipple: true }, props), children));
|
|
76
|
+
default:
|
|
77
|
+
return (React.createElement(StyledButton, Object.assign({}, props), children));
|
|
78
|
+
}
|
|
79
|
+
}
|
|
96
80
|
//# sourceMappingURL=Button.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.js","sourceRoot":"","sources":["../../../../src/stories/atoms/Button/Button.tsx"],"names":[],"mappings":";;;;;;;;;;;AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"Button.js","sourceRoot":"","sources":["../../../../src/stories/atoms/Button/Button.tsx"],"names":[],"mappings":";;;;;;;;;;;AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,SAAS,MAAM,sBAAsB,CAAC;AAC7C,OAAO,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAa9C,MAAM,YAAY,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;IACrC,YAAY,EAAE,MAAM;IACpB,QAAQ,EAAE,MAAM;IAChB,OAAO,EAAE,QAAQ;IACjB,MAAM,EAAE,MAAM;IACd,UAAU,EAAE,QAAQ;IACpB,UAAU,EAAE,MAAM;IAClB,MAAM,EAAE,uBAAuB;IAE/B,SAAS,EAAE;QACT,MAAM,EAAE,SAAS;KAClB;CACF,CAAC,CAAC;AAEH,MAAM,aAAa,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,KAAwB,EAAE,EAAE,CAAC,CAAC;IACxE,eAAe,EAAE,cAAc;IAC/B,KAAK,EAAE,cAAc;IACrB,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS;IAE5C,SAAS,EAAE;QACT,eAAe,EAAE,qBAAqB;QACtC,WAAW,EAAE,qBAAqB;KACnC;IACD,YAAY,EAAE;QACZ,eAAe,EAAE,sBAAsB;QACvC,WAAW,EAAE,sBAAsB;KACpC;CACF,CAAC,CAAC,CAAC;AAEJ,MAAM,eAAe,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC;IAC3C,WAAW,EAAE,cAAc;IAC3B,eAAe,EAAE,aAAa;IAC9B,KAAK,EAAE,cAAc;IAErB,SAAS,EAAE;QACT,WAAW,EAAE,qBAAqB;KACnC;IACD,YAAY,EAAE;QACZ,WAAW,EAAE,iBAAiB;KAC/B;CACF,CAAC,CAAC;AAEH,MAAM,UAAU,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;IACnC,WAAW,EAAE,aAAa;IAC1B,eAAe,EAAE,aAAa;IAC9B,KAAK,EAAE,gBAAgB;IACvB,aAAa,EAAE,SAAS;IACxB,cAAc,EAAE,MAAM;IACtB,OAAO,EAAE,CAAC;IAEV,SAAS,EAAE;QACT,eAAe,EAAE,aAAa;KAC/B;IAED,YAAY,EAAE;QACZ,WAAW,EAAE,iBAAiB;KAC/B;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,OAAO,UAAU,MAAM,CAAC,EAA6C;QAA7C,EAAE,QAAQ,EAAE,QAAQ,OAAyB,EAApB,KAAK,cAA9B,wBAAgC,CAAF;IAC3D,QAAQ,QAAQ,EAAE;QAChB,KAAK,SAAS;YACZ,OAAO,CACL,oBAAC,aAAa,oBACR,KAAK,GAER,QAAQ,CACK,CACjB,CAAC;QACJ,KAAK,kBAAkB;YACrB,OAAO,CACH,oBAAC,aAAa,kBACZ,UAAU,UACN,KAAK,GAER,QAAQ,CACK,CACnB,CAAC;QACJ,KAAK,WAAW;YACd,OAAO,CACL,oBAAC,eAAe,oBACV,KAAK,GAER,QAAQ,CACO,CACnB,CAAC;QACJ,KAAK,MAAM;YACT,OAAO,CACH,oBAAC,UAAU,kBACT,kBAAkB,UACd,KAAK,GAER,QAAQ,CACE,CAChB,CAAC;QACJ;YACE,OAAO,CACH,oBAAC,YAAY,oBACP,KAAK,GAEV,QAAQ,CACM,CAClB,CAAC;KACL;AACH,CAAC"}
|
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
import Button from './Button';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
title: string;
|
|
4
|
-
component: typeof Button;
|
|
5
|
-
argTypes: {
|
|
6
|
-
backgroundColor: {
|
|
7
|
-
control: string;
|
|
8
|
-
};
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
export default _default;
|
|
12
|
-
export declare const Primary: any;
|
|
13
|
-
export declare const PrimaryExpanded: any;
|
|
14
|
-
export declare const Secondary: any;
|
|
15
|
-
export declare const
|
|
16
|
-
export declare const
|
|
17
|
-
export declare const Default: any;
|
|
1
|
+
import Button from './Button';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: typeof Button;
|
|
5
|
+
argTypes: {
|
|
6
|
+
backgroundColor: {
|
|
7
|
+
control: string;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export default _default;
|
|
12
|
+
export declare const Primary: any;
|
|
13
|
+
export declare const PrimaryExpanded: any;
|
|
14
|
+
export declare const Secondary: any;
|
|
15
|
+
export declare const Link: any;
|
|
16
|
+
export declare const Default: any;
|