imbric-theme 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- package/.babelrc.json +3 -0
- package/.commitlintrc.json +3 -0
- package/.editorconfig +13 -0
- package/.eslintcache +1 -0
- package/.eslintrc.json +36 -0
- package/.huskyrc.json +6 -0
- package/.lintstagedrc.json +5 -0
- package/.nvmrc +1 -0
- package/.prettierrc.json +4 -0
- package/.releaserc.json +13 -0
- package/.storybook/main.js +9 -0
- package/.storybook/preview-head.html +2 -0
- package/.storybook/preview.js +32 -0
- package/.stylelintrc.json +14 -0
- package/.vscode/launch.json +15 -0
- package/CHANGELOG.md +0 -0
- package/README.md +69 -0
- package/atoms/Avatar/Avatar.js +36 -0
- package/atoms/Avatar/Avatar.module.css +3 -0
- package/atoms/Avatar/Avatar.stories.js +29 -0
- package/atoms/Avatar/__snapshots__/Avatar.stories.js.snap +105 -0
- package/atoms/Avatar/constants.js +3 -0
- package/atoms/Avatar/helpers.js +7 -0
- package/atoms/Avatar/index.js +3 -0
- package/atoms/Button/Button.js +68 -0
- package/atoms/Button/Button.module.css +63 -0
- package/atoms/Button/Button.stories.js +47 -0
- package/atoms/Button/Button.test.js +60 -0
- package/atoms/Button/__snapshots__/Button.stories.js.snap +191 -0
- package/atoms/Button/constants.js +3 -0
- package/atoms/Button/index.js +3 -0
- package/atoms/Card/Card.js +48 -0
- package/atoms/Card/Card.module.css +52 -0
- package/atoms/Card/Card.stories.js +41 -0
- package/atoms/Card/__snapshots__/Card.stories.js.snap +136 -0
- package/atoms/Card/constants.js +4 -0
- package/atoms/Card/index.js +3 -0
- package/atoms/Check/Check.js +26 -0
- package/atoms/Check/Check.module.css +11 -0
- package/atoms/Check/Check.stories.js +15 -0
- package/atoms/Check/__snapshots__/Check.stories.js.snap +67 -0
- package/atoms/Check/index.js +2 -0
- package/atoms/Divider/Divider.js +19 -0
- package/atoms/Divider/Divider.module.css +5 -0
- package/atoms/Divider/Divider.stories.js +12 -0
- package/atoms/Divider/__snapshots__/Divider.stories.js.snap +22 -0
- package/atoms/Divider/index.js +2 -0
- package/atoms/Heading/Heading.js +37 -0
- package/atoms/Heading/Heading.module.css +66 -0
- package/atoms/Heading/Heading.stories.js +46 -0
- package/atoms/Heading/__snapshots__/Heading.stories.js.snap +189 -0
- package/atoms/Heading/constants.js +5 -0
- package/atoms/Heading/index.js +3 -0
- package/atoms/Icon/Icon.js +66 -0
- package/atoms/Icon/Icon.module.css +112 -0
- package/atoms/Icon/Icon.stories.js +48 -0
- package/atoms/Icon/__snapshots__/Icon.stories.js.snap +1311 -0
- package/atoms/Icon/constants.js +486 -0
- package/atoms/Icon/helpers.js +9 -0
- package/atoms/Icon/index.js +3 -0
- package/atoms/Input/Input.js +49 -0
- package/atoms/Input/Input.module.css +27 -0
- package/atoms/Input/Input.stories.js +32 -0
- package/atoms/Input/__snapshots__/Input.stories.js.snap +101 -0
- package/atoms/Input/constants.js +3 -0
- package/atoms/Input/index.js +3 -0
- package/atoms/Link/Link.js +33 -0
- package/atoms/Link/Link.module.css +14 -0
- package/atoms/Link/Link.stories.js +30 -0
- package/atoms/Link/__snapshots__/Link.stories.js.snap +118 -0
- package/atoms/Link/constants.js +5 -0
- package/atoms/Link/index.js +3 -0
- package/atoms/Loading/Loading.js +30 -0
- package/atoms/Loading/Loading.module.css +51 -0
- package/atoms/Loading/Loading.stories.js +17 -0
- package/atoms/Loading/__snapshots__/Loading.stories.js.snap +26 -0
- package/atoms/Loading/index.js +2 -0
- package/atoms/Modal/Modal.js +98 -0
- package/atoms/Modal/Modal.module.css +85 -0
- package/atoms/Modal/Modal.stories.js +43 -0
- package/atoms/Modal/__snapshots__/Modal.stories.js.snap +239 -0
- package/atoms/Modal/constants.js +1 -0
- package/atoms/Modal/index.js +3 -0
- package/atoms/Paragraph/Paragraph.js +56 -0
- package/atoms/Paragraph/Paragraph.module.css +68 -0
- package/atoms/Paragraph/Paragraph.stories.js +52 -0
- package/atoms/Paragraph/__snapshots__/Paragraph.stories.js.snap +230 -0
- package/atoms/Paragraph/constants.js +5 -0
- package/atoms/Paragraph/index.js +3 -0
- package/atoms/Picture/Picture.js +40 -0
- package/atoms/Picture/Picture.module.css +16 -0
- package/atoms/Picture/Picture.stories.js +32 -0
- package/atoms/Picture/__snapshots__/Picture.stories.js.snap +156 -0
- package/atoms/Picture/index.js +2 -0
- package/atoms/Textarea/Textarea.js +46 -0
- package/atoms/Textarea/Textarea.module.css +25 -0
- package/atoms/Textarea/Textarea.stories.js +16 -0
- package/atoms/Textarea/__snapshots__/Textarea.stories.js.snap +25 -0
- package/atoms/Textarea/index.js +2 -0
- package/codecov.yml +2 -0
- package/helpers/storybook.js +29 -0
- package/helpers/storybook.test.js +40 -0
- package/helpers/styles.js +37 -0
- package/helpers/styles.test.js +222 -0
- package/hocs/withStyles.js +17 -0
- package/hook/useMedia.js +22 -0
- package/index.js +31 -0
- package/jest.config.js +23 -0
- package/jest.setup.js +13 -0
- package/layout/CenteredContent/CenteredContent.js +30 -0
- package/layout/CenteredContent/CenteredContent.module.css +12 -0
- package/layout/CenteredContent/CenteredContent.stories.js +22 -0
- package/layout/CenteredContent/__snapshots__/CenteredContent.stories.js.snap +27 -0
- package/layout/CenteredContent/index.js +2 -0
- package/layout/Container/Container.js +29 -0
- package/layout/Container/Container.module.css +14 -0
- package/layout/Container/Container.stories.js +22 -0
- package/layout/Container/__snapshots__/Container.stories.js.snap +27 -0
- package/layout/Container/index.js +2 -0
- package/layout/FullHeightContent/FullHeightContent.js +40 -0
- package/layout/FullHeightContent/FullHeightContent.module.css +21 -0
- package/layout/FullHeightContent/FullHeightContent.stories.js +22 -0
- package/layout/FullHeightContent/__snapshots__/FullHeightContent.stories.js.snap +41 -0
- package/layout/FullHeightContent/index.js +2 -0
- package/layout/Spacer/Spacer.js +40 -0
- package/layout/Spacer/Spacer.module.css +12 -0
- package/layout/Spacer/Spacer.stories.js +25 -0
- package/layout/Spacer/__snapshots__/Spacer.stories.js.snap +97 -0
- package/layout/Spacer/components/Horizontal/Horizontal.js +43 -0
- package/layout/Spacer/components/Horizontal/Horizontal.stories.js +32 -0
- package/layout/Spacer/components/Horizontal/__snapshots__/Horizontal.stories.js.snap +97 -0
- package/layout/Spacer/components/Horizontal/index.js +1 -0
- package/layout/Spacer/components/Vertical/Vertical.js +31 -0
- package/layout/Spacer/components/Vertical/Vertical.stories.js +25 -0
- package/layout/Spacer/components/Vertical/__snapshots__/Vertical.stories.js.snap +85 -0
- package/layout/Spacer/components/Vertical/index.js +1 -0
- package/layout/Spacer/components/index.js +2 -0
- package/layout/Spacer/constants.js +5 -0
- package/layout/Spacer/helpers.js +3 -0
- package/layout/Spacer/index.js +3 -0
- package/molecules/Accordion/Accordion.js +70 -0
- package/molecules/Accordion/Accordion.module.css +12 -0
- package/molecules/Accordion/Accordion.stories.js +31 -0
- package/molecules/Accordion/__snapshots__/Accordion.stories.js.snap +228 -0
- package/molecules/Accordion/index.js +2 -0
- package/molecules/AddButton/AddButton.js +137 -0
- package/molecules/AddButton/AddButton.module.css +128 -0
- package/molecules/AddButton/AddButton.stories.js +47 -0
- package/molecules/AddButton/__snapshots__/AddButton.stories.js.snap +326 -0
- package/molecules/AddButton/constants.js +6 -0
- package/molecules/AddButton/handlers.js +58 -0
- package/molecules/AddButton/handlers.test.js +19 -0
- package/molecules/AddButton/helpers.js +6 -0
- package/molecules/AddButton/helpers.test.js +41 -0
- package/molecules/AddButton/hooks.js +14 -0
- package/molecules/AddButton/index.js +3 -0
- package/molecules/ButtonIcon/ButtonIcon.js +41 -0
- package/molecules/ButtonIcon/ButtonIcon.stories.js +27 -0
- package/molecules/ButtonIcon/__snapshots__/ButtonIcon.stories.js.snap +178 -0
- package/molecules/ButtonIcon/constants.js +6 -0
- package/molecules/ButtonIcon/index.js +2 -0
- package/molecules/Dropdown/Dropdown.js +59 -0
- package/molecules/Dropdown/Dropdown.module.css +34 -0
- package/molecules/Dropdown/Dropdown.stories.js +41 -0
- package/molecules/Dropdown/__snapshots__/Dropdown.stories.js.snap +181 -0
- package/molecules/Dropdown/index.js +2 -0
- package/molecules/Error/Error.js +35 -0
- package/molecules/Error/Error.module.css +11 -0
- package/molecules/Error/Error.stories.js +18 -0
- package/molecules/Error/__snapshots__/Error.stories.js.snap +134 -0
- package/molecules/Error/index.js +2 -0
- package/molecules/IconLabel/IconLabel.js +83 -0
- package/molecules/IconLabel/IconLabel.module.css +16 -0
- package/molecules/IconLabel/IconLabel.stories.js +25 -0
- package/molecules/IconLabel/__snapshots__/IconLabel.stories.js.snap +211 -0
- package/molecules/IconLabel/constants.js +6 -0
- package/molecules/IconLabel/index.js +3 -0
- package/molecules/LoadingError/LoadingError.js +31 -0
- package/molecules/LoadingError/LoadingError.stories.js +24 -0
- package/molecules/LoadingError/__snapshots__/LoadingError.stories.js.snap +109 -0
- package/molecules/LoadingError/index.js +1 -0
- package/molecules/Score/Score.js +61 -0
- package/molecules/Score/Score.module.css +11 -0
- package/molecules/Score/Score.stories.js +13 -0
- package/molecules/Score/__snapshots__/Score.stories.js.snap +100 -0
- package/molecules/Score/faces/happy.svg +7 -0
- package/molecules/Score/faces/normal.svg +6 -0
- package/molecules/Score/faces/sad.svg +6 -0
- package/molecules/Score/index.js +2 -0
- package/molecules/Task/Task.js +114 -0
- package/molecules/Task/Task.module.css +47 -0
- package/molecules/Task/Task.stories.js +47 -0
- package/molecules/Task/__snapshots__/Task.stories.js.snap +953 -0
- package/molecules/Task/constants.js +1 -0
- package/molecules/Task/index.js +3 -0
- package/molecules/TaskCounter/TaskCounter.js +74 -0
- package/molecules/TaskCounter/TaskCounter.module.css +11 -0
- package/molecules/TaskCounter/TaskCounter.stories.js +26 -0
- package/molecules/TaskCounter/__snapshots__/TaskCounter.stories.js.snap +177 -0
- package/molecules/TaskCounter/index.js +2 -0
- package/package.json +102 -0
- package/scripts/build-tokens.js +40 -0
- package/scripts/create-component.js +127 -0
- package/storybook.test.js +13 -0
- package/styles/globals.css +10 -0
- package/styles/tokens.css +390 -0
- package/templates/component/Component.js +22 -0
- package/templates/component/Component.module.css +3 -0
- package/templates/component/Component.stories.js +23 -0
- package/templates/component/constants.js +1 -0
- package/templates/component/index.js +3 -0
- package/tokens/Token/Helper.js +30 -0
- package/tokens/Token/Token.js +13 -0
- package/tokens/Token/Token.module.css +64 -0
- package/tokens/Token/components/Color.js +21 -0
- package/tokens/Token/components/Color.stories.js +126 -0
- package/tokens/Token/components/FontFamily.js +24 -0
- package/tokens/Token/components/FontFamily.stories.js +32 -0
- package/tokens/Token/components/FontSize.js +24 -0
- package/tokens/Token/components/FontSize.stories.js +31 -0
- package/tokens/Token/components/FontWeight.js +24 -0
- package/tokens/Token/components/FontWeight.stories.js +31 -0
- package/tokens/Token/components/Spacing.js +24 -0
- package/tokens/Token/components/Spacing.stories.js +29 -0
- package/tokens/Token/components/__snapshots__/Color.stories.js.snap +7169 -0
- package/tokens/Token/components/__snapshots__/FontFamily.stories.js.snap +133 -0
- package/tokens/Token/components/__snapshots__/FontSize.stories.js.snap +261 -0
- package/tokens/Token/components/__snapshots__/FontWeight.stories.js.snap +317 -0
- package/tokens/Token/components/__snapshots__/Spacing.stories.js.snap +229 -0
- package/tokens/Token/components/index.js +5 -0
- package/tokens/Token/helpers.js +17 -0
- package/tokens/Token/index.js +1 -0
- package/tokens/index.js +471 -0
- package/utils/isEmpty.js +28 -0
- package/utils/isEmpty.test.js +125 -0
- package/utils/isObject.js +4 -0
- package/utils/keyboardCodes.js +6 -0
- package/utils/testUtils/matchMediaMock.js +14 -0
- package/utils/testUtils/svgrMock.js +2 -0
- package/utils/toCapitalize.js +4 -0
- package/utils/toKebabCase.js +8 -0
- package/utils/toPascalCase.js +20 -0
- package/webpack/cssModules.js +30 -0
- package/webpack/loadConfigs.js +6 -0
- package/webpack/reactInlineSvg.js +22 -0
@@ -0,0 +1,953 @@
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
+
|
3
|
+
exports[`Storyshots Molecules/Task Checked 1`] = `
|
4
|
+
<div
|
5
|
+
style={
|
6
|
+
Object {
|
7
|
+
"alignContent": "flex-start",
|
8
|
+
"display": "flex",
|
9
|
+
"flexDirection": "column",
|
10
|
+
"flexWrap": "wrap",
|
11
|
+
"gap": "10px 30px",
|
12
|
+
"height": "100%",
|
13
|
+
"justifyContent": "flex-start",
|
14
|
+
"maxHeight": "auto",
|
15
|
+
}
|
16
|
+
}
|
17
|
+
>
|
18
|
+
<div
|
19
|
+
className="container"
|
20
|
+
>
|
21
|
+
<div
|
22
|
+
className="card color-base size-sm is-clickable"
|
23
|
+
onClick={[Function]}
|
24
|
+
>
|
25
|
+
<div
|
26
|
+
className="task is-checked"
|
27
|
+
>
|
28
|
+
<div
|
29
|
+
className="content"
|
30
|
+
>
|
31
|
+
<div
|
32
|
+
className="check-container"
|
33
|
+
onClick={[Function]}
|
34
|
+
>
|
35
|
+
<div
|
36
|
+
className="icon color-muted size-md background-transparent is-clickable"
|
37
|
+
style={
|
38
|
+
Object {
|
39
|
+
"height": 35,
|
40
|
+
"width": 35,
|
41
|
+
}
|
42
|
+
}
|
43
|
+
>
|
44
|
+
<svg
|
45
|
+
height={35}
|
46
|
+
viewBox="5 1 20 20"
|
47
|
+
width={35}
|
48
|
+
xmlns="http://www.w3.org/2000/svg"
|
49
|
+
>
|
50
|
+
<path
|
51
|
+
clipRule="evenodd"
|
52
|
+
d="M14.93 20.86C9.45472 20.86 5 16.4053 5 10.93C5 5.45472 9.45472 1 14.93 1C20.4053 1 24.86 5.45472 24.86 10.93C24.86 16.4053 20.4053 20.86 14.93 20.86ZM14.93 2.09095C10.0559 2.09095 6.09095 6.05591 6.09095 10.93C6.09095 15.8041 10.0559 19.769 14.93 19.769C19.8041 19.769 23.769 15.8041 23.769 10.93C23.769 6.05591 19.8041 2.09095 14.93 2.09095Z"
|
53
|
+
fillRule="evenodd"
|
54
|
+
/>
|
55
|
+
<path
|
56
|
+
clipRule="evenodd"
|
57
|
+
d="M13.744 15.221L8.67871 10.1423L9.45059 9.37155L13.7458 13.6773L20.41 7.01251L21.1807 7.78439L13.744 15.221Z"
|
58
|
+
fillRule="evenodd"
|
59
|
+
/>
|
60
|
+
</svg>
|
61
|
+
</div>
|
62
|
+
</div>
|
63
|
+
<div
|
64
|
+
className="spacer horizontal"
|
65
|
+
style={
|
66
|
+
Object {
|
67
|
+
"height": "100%",
|
68
|
+
"maxHeight": "auto",
|
69
|
+
"width": 5,
|
70
|
+
}
|
71
|
+
}
|
72
|
+
/>
|
73
|
+
<p
|
74
|
+
className="paragraph color-muted size-md weight-medium is-striked"
|
75
|
+
>
|
76
|
+
Sir Goblin-town feels characters ruined precautions.
|
77
|
+
</p>
|
78
|
+
</div>
|
79
|
+
<div
|
80
|
+
className="spacer horizontal"
|
81
|
+
style={
|
82
|
+
Object {
|
83
|
+
"height": "100%",
|
84
|
+
"maxHeight": "auto",
|
85
|
+
"width": 15,
|
86
|
+
}
|
87
|
+
}
|
88
|
+
/>
|
89
|
+
<div
|
90
|
+
className="icon color-base size-sm background-inverted is-clickable"
|
91
|
+
onClick={[Function]}
|
92
|
+
style={
|
93
|
+
Object {
|
94
|
+
"height": 25,
|
95
|
+
"width": 25,
|
96
|
+
}
|
97
|
+
}
|
98
|
+
>
|
99
|
+
<svg
|
100
|
+
height={25}
|
101
|
+
viewBox="-1 0 12 12"
|
102
|
+
width={25}
|
103
|
+
xmlns="http://www.w3.org/2000/svg"
|
104
|
+
>
|
105
|
+
<path
|
106
|
+
clipRule="evenodd"
|
107
|
+
d="M6.72534 3.71014H5.97808V9.68822H6.72534V3.71014Z"
|
108
|
+
fillRule="evenodd"
|
109
|
+
/>
|
110
|
+
<path
|
111
|
+
clipRule="evenodd"
|
112
|
+
d="M5.23071 3.71014H4.48345V9.68822H5.23071V3.71014Z"
|
113
|
+
fillRule="evenodd"
|
114
|
+
/>
|
115
|
+
<path
|
116
|
+
clipRule="evenodd"
|
117
|
+
d="M3.73633 3.71014H2.98907V9.68822H3.73633V3.71014Z"
|
118
|
+
fillRule="evenodd"
|
119
|
+
/>
|
120
|
+
<path
|
121
|
+
clipRule="evenodd"
|
122
|
+
d="M9.71436 1.46838H-2.28882e-05V2.21564H9.71436V1.46838Z"
|
123
|
+
fillRule="evenodd"
|
124
|
+
/>
|
125
|
+
<path
|
126
|
+
clipRule="evenodd"
|
127
|
+
d="M3.01523 1.842H3.71018V1.09474C3.71018 0.874294 3.88952 0.694952 4.10996 0.694952H5.60448C5.82492 0.694952 6.00427 0.874294 6.00427 1.09474V1.842H6.69922V1.09474C6.69922 0.49095 6.2079 0 5.60448 0H4.10996C3.50655 0 3.01523 0.49095 3.01523 1.09474V1.842Z"
|
128
|
+
fillRule="evenodd"
|
129
|
+
/>
|
130
|
+
<path
|
131
|
+
clipRule="evenodd"
|
132
|
+
d="M2.61523 11.93H7.09879C7.70183 11.93 8.22977 11.4409 8.27573 10.8398L8.96582 1.87077L8.2208 1.81323L7.53071 10.7826C7.51427 10.9959 7.31251 11.1827 7.09879 11.1827H2.61523C2.40152 11.1827 2.19976 10.9959 2.18332 10.783L1.49322 1.81323L0.748204 1.87077L1.4383 10.8398C1.48426 11.4409 2.01219 11.93 2.61523 11.93Z"
|
133
|
+
fillRule="evenodd"
|
134
|
+
/>
|
135
|
+
</svg>
|
136
|
+
</div>
|
137
|
+
</div>
|
138
|
+
</div>
|
139
|
+
</div>
|
140
|
+
</div>
|
141
|
+
`;
|
142
|
+
|
143
|
+
exports[`Storyshots Molecules/Task Default 1`] = `
|
144
|
+
<div
|
145
|
+
style={
|
146
|
+
Object {
|
147
|
+
"alignContent": "flex-start",
|
148
|
+
"display": "flex",
|
149
|
+
"flexDirection": "column",
|
150
|
+
"flexWrap": "wrap",
|
151
|
+
"gap": "10px 30px",
|
152
|
+
"height": "100%",
|
153
|
+
"justifyContent": "flex-start",
|
154
|
+
"maxHeight": "auto",
|
155
|
+
}
|
156
|
+
}
|
157
|
+
>
|
158
|
+
<div
|
159
|
+
className="container"
|
160
|
+
>
|
161
|
+
<div
|
162
|
+
className="card color-base size-sm is-clickable"
|
163
|
+
onClick={[Function]}
|
164
|
+
>
|
165
|
+
<div
|
166
|
+
className="task"
|
167
|
+
>
|
168
|
+
<div
|
169
|
+
className="content"
|
170
|
+
>
|
171
|
+
<div
|
172
|
+
className="check-container"
|
173
|
+
onClick={[Function]}
|
174
|
+
>
|
175
|
+
<span
|
176
|
+
className="check"
|
177
|
+
/>
|
178
|
+
</div>
|
179
|
+
<div
|
180
|
+
className="spacer horizontal"
|
181
|
+
style={
|
182
|
+
Object {
|
183
|
+
"height": "100%",
|
184
|
+
"maxHeight": "auto",
|
185
|
+
"width": 5,
|
186
|
+
}
|
187
|
+
}
|
188
|
+
/>
|
189
|
+
<p
|
190
|
+
className="paragraph color-base size-md weight-medium"
|
191
|
+
>
|
192
|
+
Sir Goblin-town feels characters ruined precautions.
|
193
|
+
</p>
|
194
|
+
</div>
|
195
|
+
<div
|
196
|
+
className="spacer horizontal"
|
197
|
+
style={
|
198
|
+
Object {
|
199
|
+
"height": "100%",
|
200
|
+
"maxHeight": "auto",
|
201
|
+
"width": 15,
|
202
|
+
}
|
203
|
+
}
|
204
|
+
/>
|
205
|
+
<div
|
206
|
+
className="icon color-base size-sm background-inverted is-clickable"
|
207
|
+
onClick={[Function]}
|
208
|
+
style={
|
209
|
+
Object {
|
210
|
+
"height": 25,
|
211
|
+
"width": 25,
|
212
|
+
}
|
213
|
+
}
|
214
|
+
>
|
215
|
+
<svg
|
216
|
+
height={25}
|
217
|
+
viewBox="-1 0 12 12"
|
218
|
+
width={25}
|
219
|
+
xmlns="http://www.w3.org/2000/svg"
|
220
|
+
>
|
221
|
+
<path
|
222
|
+
clipRule="evenodd"
|
223
|
+
d="M6.72534 3.71014H5.97808V9.68822H6.72534V3.71014Z"
|
224
|
+
fillRule="evenodd"
|
225
|
+
/>
|
226
|
+
<path
|
227
|
+
clipRule="evenodd"
|
228
|
+
d="M5.23071 3.71014H4.48345V9.68822H5.23071V3.71014Z"
|
229
|
+
fillRule="evenodd"
|
230
|
+
/>
|
231
|
+
<path
|
232
|
+
clipRule="evenodd"
|
233
|
+
d="M3.73633 3.71014H2.98907V9.68822H3.73633V3.71014Z"
|
234
|
+
fillRule="evenodd"
|
235
|
+
/>
|
236
|
+
<path
|
237
|
+
clipRule="evenodd"
|
238
|
+
d="M9.71436 1.46838H-2.28882e-05V2.21564H9.71436V1.46838Z"
|
239
|
+
fillRule="evenodd"
|
240
|
+
/>
|
241
|
+
<path
|
242
|
+
clipRule="evenodd"
|
243
|
+
d="M3.01523 1.842H3.71018V1.09474C3.71018 0.874294 3.88952 0.694952 4.10996 0.694952H5.60448C5.82492 0.694952 6.00427 0.874294 6.00427 1.09474V1.842H6.69922V1.09474C6.69922 0.49095 6.2079 0 5.60448 0H4.10996C3.50655 0 3.01523 0.49095 3.01523 1.09474V1.842Z"
|
244
|
+
fillRule="evenodd"
|
245
|
+
/>
|
246
|
+
<path
|
247
|
+
clipRule="evenodd"
|
248
|
+
d="M2.61523 11.93H7.09879C7.70183 11.93 8.22977 11.4409 8.27573 10.8398L8.96582 1.87077L8.2208 1.81323L7.53071 10.7826C7.51427 10.9959 7.31251 11.1827 7.09879 11.1827H2.61523C2.40152 11.1827 2.19976 10.9959 2.18332 10.783L1.49322 1.81323L0.748204 1.87077L1.4383 10.8398C1.48426 11.4409 2.01219 11.93 2.61523 11.93Z"
|
249
|
+
fillRule="evenodd"
|
250
|
+
/>
|
251
|
+
</svg>
|
252
|
+
</div>
|
253
|
+
</div>
|
254
|
+
</div>
|
255
|
+
</div>
|
256
|
+
</div>
|
257
|
+
`;
|
258
|
+
|
259
|
+
exports[`Storyshots Molecules/Task Long 1`] = `
|
260
|
+
<div
|
261
|
+
style={
|
262
|
+
Object {
|
263
|
+
"alignContent": "flex-start",
|
264
|
+
"display": "flex",
|
265
|
+
"flexDirection": "column",
|
266
|
+
"flexWrap": "wrap",
|
267
|
+
"gap": "10px 30px",
|
268
|
+
"height": "100%",
|
269
|
+
"justifyContent": "flex-start",
|
270
|
+
"maxHeight": "auto",
|
271
|
+
}
|
272
|
+
}
|
273
|
+
>
|
274
|
+
<div
|
275
|
+
className="container"
|
276
|
+
>
|
277
|
+
<div
|
278
|
+
className="card color-base size-sm is-clickable"
|
279
|
+
onClick={[Function]}
|
280
|
+
>
|
281
|
+
<div
|
282
|
+
className="task"
|
283
|
+
>
|
284
|
+
<div
|
285
|
+
className="content"
|
286
|
+
>
|
287
|
+
<div
|
288
|
+
className="check-container"
|
289
|
+
onClick={[Function]}
|
290
|
+
>
|
291
|
+
<span
|
292
|
+
className="check"
|
293
|
+
/>
|
294
|
+
</div>
|
295
|
+
<div
|
296
|
+
className="spacer horizontal"
|
297
|
+
style={
|
298
|
+
Object {
|
299
|
+
"height": "100%",
|
300
|
+
"maxHeight": "auto",
|
301
|
+
"width": 5,
|
302
|
+
}
|
303
|
+
}
|
304
|
+
/>
|
305
|
+
<p
|
306
|
+
className="paragraph color-base size-md weight-medium"
|
307
|
+
>
|
308
|
+
Swords are no more use here. Moments shiny rings Cirith nowhere garrison ax pointy endless mention trousers. Retribution Frodo's wrong? Them leaf question require spared houses sapphire Balin. Kind pouring Lothlórien ragged retribution covers lair less goings recognizes unleash. Whence Precious token hidden hire bandy make farming. Shards farmer unfriendly handle Bain gongs. Mend recall sorry oncoming roll unmade cries visitors Lobelia Sackville-Baggins was bidden. Dank rather between short doomed Mellon tomb consequence girl crescent attacking.
|
309
|
+
</p>
|
310
|
+
</div>
|
311
|
+
<div
|
312
|
+
className="spacer horizontal"
|
313
|
+
style={
|
314
|
+
Object {
|
315
|
+
"height": "100%",
|
316
|
+
"maxHeight": "auto",
|
317
|
+
"width": 15,
|
318
|
+
}
|
319
|
+
}
|
320
|
+
/>
|
321
|
+
<div
|
322
|
+
className="icon color-base size-sm background-inverted is-clickable"
|
323
|
+
onClick={[Function]}
|
324
|
+
style={
|
325
|
+
Object {
|
326
|
+
"height": 25,
|
327
|
+
"width": 25,
|
328
|
+
}
|
329
|
+
}
|
330
|
+
>
|
331
|
+
<svg
|
332
|
+
height={25}
|
333
|
+
viewBox="-1 0 12 12"
|
334
|
+
width={25}
|
335
|
+
xmlns="http://www.w3.org/2000/svg"
|
336
|
+
>
|
337
|
+
<path
|
338
|
+
clipRule="evenodd"
|
339
|
+
d="M6.72534 3.71014H5.97808V9.68822H6.72534V3.71014Z"
|
340
|
+
fillRule="evenodd"
|
341
|
+
/>
|
342
|
+
<path
|
343
|
+
clipRule="evenodd"
|
344
|
+
d="M5.23071 3.71014H4.48345V9.68822H5.23071V3.71014Z"
|
345
|
+
fillRule="evenodd"
|
346
|
+
/>
|
347
|
+
<path
|
348
|
+
clipRule="evenodd"
|
349
|
+
d="M3.73633 3.71014H2.98907V9.68822H3.73633V3.71014Z"
|
350
|
+
fillRule="evenodd"
|
351
|
+
/>
|
352
|
+
<path
|
353
|
+
clipRule="evenodd"
|
354
|
+
d="M9.71436 1.46838H-2.28882e-05V2.21564H9.71436V1.46838Z"
|
355
|
+
fillRule="evenodd"
|
356
|
+
/>
|
357
|
+
<path
|
358
|
+
clipRule="evenodd"
|
359
|
+
d="M3.01523 1.842H3.71018V1.09474C3.71018 0.874294 3.88952 0.694952 4.10996 0.694952H5.60448C5.82492 0.694952 6.00427 0.874294 6.00427 1.09474V1.842H6.69922V1.09474C6.69922 0.49095 6.2079 0 5.60448 0H4.10996C3.50655 0 3.01523 0.49095 3.01523 1.09474V1.842Z"
|
360
|
+
fillRule="evenodd"
|
361
|
+
/>
|
362
|
+
<path
|
363
|
+
clipRule="evenodd"
|
364
|
+
d="M2.61523 11.93H7.09879C7.70183 11.93 8.22977 11.4409 8.27573 10.8398L8.96582 1.87077L8.2208 1.81323L7.53071 10.7826C7.51427 10.9959 7.31251 11.1827 7.09879 11.1827H2.61523C2.40152 11.1827 2.19976 10.9959 2.18332 10.783L1.49322 1.81323L0.748204 1.87077L1.4383 10.8398C1.48426 11.4409 2.01219 11.93 2.61523 11.93Z"
|
365
|
+
fillRule="evenodd"
|
366
|
+
/>
|
367
|
+
</svg>
|
368
|
+
</div>
|
369
|
+
</div>
|
370
|
+
</div>
|
371
|
+
</div>
|
372
|
+
</div>
|
373
|
+
`;
|
374
|
+
|
375
|
+
exports[`Storyshots Molecules/Task Pending 1`] = `
|
376
|
+
<div
|
377
|
+
style={
|
378
|
+
Object {
|
379
|
+
"alignContent": "flex-start",
|
380
|
+
"display": "flex",
|
381
|
+
"flexDirection": "column",
|
382
|
+
"flexWrap": "wrap",
|
383
|
+
"gap": "10px 30px",
|
384
|
+
"height": "100%",
|
385
|
+
"justifyContent": "flex-start",
|
386
|
+
"maxHeight": "auto",
|
387
|
+
}
|
388
|
+
}
|
389
|
+
>
|
390
|
+
<div
|
391
|
+
className="container"
|
392
|
+
>
|
393
|
+
<div
|
394
|
+
className="card color-base size-sm is-draggable"
|
395
|
+
onClick={[Function]}
|
396
|
+
>
|
397
|
+
<div
|
398
|
+
className="task"
|
399
|
+
>
|
400
|
+
<div
|
401
|
+
className="content"
|
402
|
+
>
|
403
|
+
<div
|
404
|
+
className="icon color-base size-sm background-transparent"
|
405
|
+
style={
|
406
|
+
Object {
|
407
|
+
"height": 25,
|
408
|
+
"width": 25,
|
409
|
+
}
|
410
|
+
}
|
411
|
+
>
|
412
|
+
<svg
|
413
|
+
height={25}
|
414
|
+
viewBox="-2 0 14 15"
|
415
|
+
width={25}
|
416
|
+
xmlns="http://www.w3.org/2000/svg"
|
417
|
+
>
|
418
|
+
<path
|
419
|
+
d="M0 14V12H2V14H0ZM4 14V12H6V14H4ZM8 14V12H10V14H8ZM0 10V8H2V10H0ZM4 10V8H6V10H4ZM8 10V8H10V10H8ZM0 6V4H2V6H0ZM4 6V4H6V6H4ZM8 6V4H10V6H8ZM0 2V0H2V2H0ZM4 2V0H6V2H4ZM8 2V0H10V2H8Z"
|
420
|
+
/>
|
421
|
+
</svg>
|
422
|
+
</div>
|
423
|
+
<div
|
424
|
+
className="spacer horizontal"
|
425
|
+
style={
|
426
|
+
Object {
|
427
|
+
"height": "100%",
|
428
|
+
"maxHeight": "auto",
|
429
|
+
"width": 5,
|
430
|
+
}
|
431
|
+
}
|
432
|
+
/>
|
433
|
+
<p
|
434
|
+
className="paragraph color-base size-md weight-medium"
|
435
|
+
>
|
436
|
+
Sir Goblin-town feels characters ruined precautions.
|
437
|
+
</p>
|
438
|
+
</div>
|
439
|
+
<div
|
440
|
+
className="spacer horizontal"
|
441
|
+
style={
|
442
|
+
Object {
|
443
|
+
"height": "100%",
|
444
|
+
"maxHeight": "auto",
|
445
|
+
"width": 15,
|
446
|
+
}
|
447
|
+
}
|
448
|
+
/>
|
449
|
+
<div
|
450
|
+
className="icon color-base size-sm background-inverted is-clickable"
|
451
|
+
onClick={[Function]}
|
452
|
+
style={
|
453
|
+
Object {
|
454
|
+
"height": 25,
|
455
|
+
"width": 25,
|
456
|
+
}
|
457
|
+
}
|
458
|
+
>
|
459
|
+
<svg
|
460
|
+
height={25}
|
461
|
+
viewBox="-1 0 12 12"
|
462
|
+
width={25}
|
463
|
+
xmlns="http://www.w3.org/2000/svg"
|
464
|
+
>
|
465
|
+
<path
|
466
|
+
clipRule="evenodd"
|
467
|
+
d="M6.72534 3.71014H5.97808V9.68822H6.72534V3.71014Z"
|
468
|
+
fillRule="evenodd"
|
469
|
+
/>
|
470
|
+
<path
|
471
|
+
clipRule="evenodd"
|
472
|
+
d="M5.23071 3.71014H4.48345V9.68822H5.23071V3.71014Z"
|
473
|
+
fillRule="evenodd"
|
474
|
+
/>
|
475
|
+
<path
|
476
|
+
clipRule="evenodd"
|
477
|
+
d="M3.73633 3.71014H2.98907V9.68822H3.73633V3.71014Z"
|
478
|
+
fillRule="evenodd"
|
479
|
+
/>
|
480
|
+
<path
|
481
|
+
clipRule="evenodd"
|
482
|
+
d="M9.71436 1.46838H-2.28882e-05V2.21564H9.71436V1.46838Z"
|
483
|
+
fillRule="evenodd"
|
484
|
+
/>
|
485
|
+
<path
|
486
|
+
clipRule="evenodd"
|
487
|
+
d="M3.01523 1.842H3.71018V1.09474C3.71018 0.874294 3.88952 0.694952 4.10996 0.694952H5.60448C5.82492 0.694952 6.00427 0.874294 6.00427 1.09474V1.842H6.69922V1.09474C6.69922 0.49095 6.2079 0 5.60448 0H4.10996C3.50655 0 3.01523 0.49095 3.01523 1.09474V1.842Z"
|
488
|
+
fillRule="evenodd"
|
489
|
+
/>
|
490
|
+
<path
|
491
|
+
clipRule="evenodd"
|
492
|
+
d="M2.61523 11.93H7.09879C7.70183 11.93 8.22977 11.4409 8.27573 10.8398L8.96582 1.87077L8.2208 1.81323L7.53071 10.7826C7.51427 10.9959 7.31251 11.1827 7.09879 11.1827H2.61523C2.40152 11.1827 2.19976 10.9959 2.18332 10.783L1.49322 1.81323L0.748204 1.87077L1.4383 10.8398C1.48426 11.4409 2.01219 11.93 2.61523 11.93Z"
|
493
|
+
fillRule="evenodd"
|
494
|
+
/>
|
495
|
+
</svg>
|
496
|
+
</div>
|
497
|
+
</div>
|
498
|
+
</div>
|
499
|
+
</div>
|
500
|
+
</div>
|
501
|
+
`;
|
502
|
+
|
503
|
+
exports[`Storyshots Molecules/Task Pending Types 1`] = `
|
504
|
+
<div
|
505
|
+
style={
|
506
|
+
Object {
|
507
|
+
"alignContent": "flex-start",
|
508
|
+
"display": "flex",
|
509
|
+
"flexDirection": "column",
|
510
|
+
"flexWrap": "wrap",
|
511
|
+
"gap": "10px 30px",
|
512
|
+
"height": "100%",
|
513
|
+
"justifyContent": "flex-start",
|
514
|
+
"maxHeight": "auto",
|
515
|
+
}
|
516
|
+
}
|
517
|
+
>
|
518
|
+
<div
|
519
|
+
className="container"
|
520
|
+
>
|
521
|
+
<div
|
522
|
+
className="card color-base size-sm is-draggable"
|
523
|
+
onClick={[Function]}
|
524
|
+
>
|
525
|
+
<div
|
526
|
+
className="task type-active"
|
527
|
+
>
|
528
|
+
<div
|
529
|
+
className="content"
|
530
|
+
>
|
531
|
+
<div
|
532
|
+
className="icon color-base size-sm background-transparent"
|
533
|
+
style={
|
534
|
+
Object {
|
535
|
+
"height": 25,
|
536
|
+
"width": 25,
|
537
|
+
}
|
538
|
+
}
|
539
|
+
>
|
540
|
+
<svg
|
541
|
+
height={25}
|
542
|
+
viewBox="-2 0 14 15"
|
543
|
+
width={25}
|
544
|
+
xmlns="http://www.w3.org/2000/svg"
|
545
|
+
>
|
546
|
+
<path
|
547
|
+
d="M0 14V12H2V14H0ZM4 14V12H6V14H4ZM8 14V12H10V14H8ZM0 10V8H2V10H0ZM4 10V8H6V10H4ZM8 10V8H10V10H8ZM0 6V4H2V6H0ZM4 6V4H6V6H4ZM8 6V4H10V6H8ZM0 2V0H2V2H0ZM4 2V0H6V2H4ZM8 2V0H10V2H8Z"
|
548
|
+
/>
|
549
|
+
</svg>
|
550
|
+
</div>
|
551
|
+
<div
|
552
|
+
className="spacer horizontal"
|
553
|
+
style={
|
554
|
+
Object {
|
555
|
+
"height": "100%",
|
556
|
+
"maxHeight": "auto",
|
557
|
+
"width": 5,
|
558
|
+
}
|
559
|
+
}
|
560
|
+
/>
|
561
|
+
<p
|
562
|
+
className="paragraph color-base size-md weight-medium"
|
563
|
+
>
|
564
|
+
Sir Goblin-town feels characters ruined precautions.
|
565
|
+
</p>
|
566
|
+
</div>
|
567
|
+
<div
|
568
|
+
className="spacer horizontal"
|
569
|
+
style={
|
570
|
+
Object {
|
571
|
+
"height": "100%",
|
572
|
+
"maxHeight": "auto",
|
573
|
+
"width": 15,
|
574
|
+
}
|
575
|
+
}
|
576
|
+
/>
|
577
|
+
<div
|
578
|
+
className="icon color-base size-sm background-inverted is-clickable"
|
579
|
+
onClick={[Function]}
|
580
|
+
style={
|
581
|
+
Object {
|
582
|
+
"height": 25,
|
583
|
+
"width": 25,
|
584
|
+
}
|
585
|
+
}
|
586
|
+
>
|
587
|
+
<svg
|
588
|
+
height={25}
|
589
|
+
viewBox="-1 0 12 12"
|
590
|
+
width={25}
|
591
|
+
xmlns="http://www.w3.org/2000/svg"
|
592
|
+
>
|
593
|
+
<path
|
594
|
+
clipRule="evenodd"
|
595
|
+
d="M6.72534 3.71014H5.97808V9.68822H6.72534V3.71014Z"
|
596
|
+
fillRule="evenodd"
|
597
|
+
/>
|
598
|
+
<path
|
599
|
+
clipRule="evenodd"
|
600
|
+
d="M5.23071 3.71014H4.48345V9.68822H5.23071V3.71014Z"
|
601
|
+
fillRule="evenodd"
|
602
|
+
/>
|
603
|
+
<path
|
604
|
+
clipRule="evenodd"
|
605
|
+
d="M3.73633 3.71014H2.98907V9.68822H3.73633V3.71014Z"
|
606
|
+
fillRule="evenodd"
|
607
|
+
/>
|
608
|
+
<path
|
609
|
+
clipRule="evenodd"
|
610
|
+
d="M9.71436 1.46838H-2.28882e-05V2.21564H9.71436V1.46838Z"
|
611
|
+
fillRule="evenodd"
|
612
|
+
/>
|
613
|
+
<path
|
614
|
+
clipRule="evenodd"
|
615
|
+
d="M3.01523 1.842H3.71018V1.09474C3.71018 0.874294 3.88952 0.694952 4.10996 0.694952H5.60448C5.82492 0.694952 6.00427 0.874294 6.00427 1.09474V1.842H6.69922V1.09474C6.69922 0.49095 6.2079 0 5.60448 0H4.10996C3.50655 0 3.01523 0.49095 3.01523 1.09474V1.842Z"
|
616
|
+
fillRule="evenodd"
|
617
|
+
/>
|
618
|
+
<path
|
619
|
+
clipRule="evenodd"
|
620
|
+
d="M2.61523 11.93H7.09879C7.70183 11.93 8.22977 11.4409 8.27573 10.8398L8.96582 1.87077L8.2208 1.81323L7.53071 10.7826C7.51427 10.9959 7.31251 11.1827 7.09879 11.1827H2.61523C2.40152 11.1827 2.19976 10.9959 2.18332 10.783L1.49322 1.81323L0.748204 1.87077L1.4383 10.8398C1.48426 11.4409 2.01219 11.93 2.61523 11.93Z"
|
621
|
+
fillRule="evenodd"
|
622
|
+
/>
|
623
|
+
</svg>
|
624
|
+
</div>
|
625
|
+
</div>
|
626
|
+
</div>
|
627
|
+
</div>
|
628
|
+
<div
|
629
|
+
className="container"
|
630
|
+
>
|
631
|
+
<div
|
632
|
+
className="card color-base size-sm is-draggable"
|
633
|
+
onClick={[Function]}
|
634
|
+
>
|
635
|
+
<div
|
636
|
+
className="task type-standby"
|
637
|
+
>
|
638
|
+
<div
|
639
|
+
className="content"
|
640
|
+
>
|
641
|
+
<div
|
642
|
+
className="icon color-base size-sm background-transparent"
|
643
|
+
style={
|
644
|
+
Object {
|
645
|
+
"height": 25,
|
646
|
+
"width": 25,
|
647
|
+
}
|
648
|
+
}
|
649
|
+
>
|
650
|
+
<svg
|
651
|
+
height={25}
|
652
|
+
viewBox="-2 0 14 15"
|
653
|
+
width={25}
|
654
|
+
xmlns="http://www.w3.org/2000/svg"
|
655
|
+
>
|
656
|
+
<path
|
657
|
+
d="M0 14V12H2V14H0ZM4 14V12H6V14H4ZM8 14V12H10V14H8ZM0 10V8H2V10H0ZM4 10V8H6V10H4ZM8 10V8H10V10H8ZM0 6V4H2V6H0ZM4 6V4H6V6H4ZM8 6V4H10V6H8ZM0 2V0H2V2H0ZM4 2V0H6V2H4ZM8 2V0H10V2H8Z"
|
658
|
+
/>
|
659
|
+
</svg>
|
660
|
+
</div>
|
661
|
+
<div
|
662
|
+
className="spacer horizontal"
|
663
|
+
style={
|
664
|
+
Object {
|
665
|
+
"height": "100%",
|
666
|
+
"maxHeight": "auto",
|
667
|
+
"width": 5,
|
668
|
+
}
|
669
|
+
}
|
670
|
+
/>
|
671
|
+
<p
|
672
|
+
className="paragraph color-base size-md weight-medium"
|
673
|
+
>
|
674
|
+
Sir Goblin-town feels characters ruined precautions.
|
675
|
+
</p>
|
676
|
+
</div>
|
677
|
+
<div
|
678
|
+
className="spacer horizontal"
|
679
|
+
style={
|
680
|
+
Object {
|
681
|
+
"height": "100%",
|
682
|
+
"maxHeight": "auto",
|
683
|
+
"width": 15,
|
684
|
+
}
|
685
|
+
}
|
686
|
+
/>
|
687
|
+
<div
|
688
|
+
className="icon color-base size-sm background-inverted is-clickable"
|
689
|
+
onClick={[Function]}
|
690
|
+
style={
|
691
|
+
Object {
|
692
|
+
"height": 25,
|
693
|
+
"width": 25,
|
694
|
+
}
|
695
|
+
}
|
696
|
+
>
|
697
|
+
<svg
|
698
|
+
height={25}
|
699
|
+
viewBox="-1 0 12 12"
|
700
|
+
width={25}
|
701
|
+
xmlns="http://www.w3.org/2000/svg"
|
702
|
+
>
|
703
|
+
<path
|
704
|
+
clipRule="evenodd"
|
705
|
+
d="M6.72534 3.71014H5.97808V9.68822H6.72534V3.71014Z"
|
706
|
+
fillRule="evenodd"
|
707
|
+
/>
|
708
|
+
<path
|
709
|
+
clipRule="evenodd"
|
710
|
+
d="M5.23071 3.71014H4.48345V9.68822H5.23071V3.71014Z"
|
711
|
+
fillRule="evenodd"
|
712
|
+
/>
|
713
|
+
<path
|
714
|
+
clipRule="evenodd"
|
715
|
+
d="M3.73633 3.71014H2.98907V9.68822H3.73633V3.71014Z"
|
716
|
+
fillRule="evenodd"
|
717
|
+
/>
|
718
|
+
<path
|
719
|
+
clipRule="evenodd"
|
720
|
+
d="M9.71436 1.46838H-2.28882e-05V2.21564H9.71436V1.46838Z"
|
721
|
+
fillRule="evenodd"
|
722
|
+
/>
|
723
|
+
<path
|
724
|
+
clipRule="evenodd"
|
725
|
+
d="M3.01523 1.842H3.71018V1.09474C3.71018 0.874294 3.88952 0.694952 4.10996 0.694952H5.60448C5.82492 0.694952 6.00427 0.874294 6.00427 1.09474V1.842H6.69922V1.09474C6.69922 0.49095 6.2079 0 5.60448 0H4.10996C3.50655 0 3.01523 0.49095 3.01523 1.09474V1.842Z"
|
726
|
+
fillRule="evenodd"
|
727
|
+
/>
|
728
|
+
<path
|
729
|
+
clipRule="evenodd"
|
730
|
+
d="M2.61523 11.93H7.09879C7.70183 11.93 8.22977 11.4409 8.27573 10.8398L8.96582 1.87077L8.2208 1.81323L7.53071 10.7826C7.51427 10.9959 7.31251 11.1827 7.09879 11.1827H2.61523C2.40152 11.1827 2.19976 10.9959 2.18332 10.783L1.49322 1.81323L0.748204 1.87077L1.4383 10.8398C1.48426 11.4409 2.01219 11.93 2.61523 11.93Z"
|
731
|
+
fillRule="evenodd"
|
732
|
+
/>
|
733
|
+
</svg>
|
734
|
+
</div>
|
735
|
+
</div>
|
736
|
+
</div>
|
737
|
+
</div>
|
738
|
+
</div>
|
739
|
+
`;
|
740
|
+
|
741
|
+
exports[`Storyshots Molecules/Task Types 1`] = `
|
742
|
+
<div
|
743
|
+
style={
|
744
|
+
Object {
|
745
|
+
"alignContent": "flex-start",
|
746
|
+
"display": "flex",
|
747
|
+
"flexDirection": "column",
|
748
|
+
"flexWrap": "wrap",
|
749
|
+
"gap": "10px 30px",
|
750
|
+
"height": "100%",
|
751
|
+
"justifyContent": "flex-start",
|
752
|
+
"maxHeight": "auto",
|
753
|
+
}
|
754
|
+
}
|
755
|
+
>
|
756
|
+
<div
|
757
|
+
className="container"
|
758
|
+
>
|
759
|
+
<div
|
760
|
+
className="card color-base size-sm is-clickable"
|
761
|
+
onClick={[Function]}
|
762
|
+
>
|
763
|
+
<div
|
764
|
+
className="task type-active"
|
765
|
+
>
|
766
|
+
<div
|
767
|
+
className="content"
|
768
|
+
>
|
769
|
+
<div
|
770
|
+
className="check-container"
|
771
|
+
onClick={[Function]}
|
772
|
+
>
|
773
|
+
<span
|
774
|
+
className="check"
|
775
|
+
/>
|
776
|
+
</div>
|
777
|
+
<div
|
778
|
+
className="spacer horizontal"
|
779
|
+
style={
|
780
|
+
Object {
|
781
|
+
"height": "100%",
|
782
|
+
"maxHeight": "auto",
|
783
|
+
"width": 5,
|
784
|
+
}
|
785
|
+
}
|
786
|
+
/>
|
787
|
+
<p
|
788
|
+
className="paragraph color-base size-md weight-medium"
|
789
|
+
>
|
790
|
+
Sir Goblin-town feels characters ruined precautions.
|
791
|
+
</p>
|
792
|
+
</div>
|
793
|
+
<div
|
794
|
+
className="spacer horizontal"
|
795
|
+
style={
|
796
|
+
Object {
|
797
|
+
"height": "100%",
|
798
|
+
"maxHeight": "auto",
|
799
|
+
"width": 15,
|
800
|
+
}
|
801
|
+
}
|
802
|
+
/>
|
803
|
+
<div
|
804
|
+
className="icon color-base size-sm background-inverted is-clickable"
|
805
|
+
onClick={[Function]}
|
806
|
+
style={
|
807
|
+
Object {
|
808
|
+
"height": 25,
|
809
|
+
"width": 25,
|
810
|
+
}
|
811
|
+
}
|
812
|
+
>
|
813
|
+
<svg
|
814
|
+
height={25}
|
815
|
+
viewBox="-1 0 12 12"
|
816
|
+
width={25}
|
817
|
+
xmlns="http://www.w3.org/2000/svg"
|
818
|
+
>
|
819
|
+
<path
|
820
|
+
clipRule="evenodd"
|
821
|
+
d="M6.72534 3.71014H5.97808V9.68822H6.72534V3.71014Z"
|
822
|
+
fillRule="evenodd"
|
823
|
+
/>
|
824
|
+
<path
|
825
|
+
clipRule="evenodd"
|
826
|
+
d="M5.23071 3.71014H4.48345V9.68822H5.23071V3.71014Z"
|
827
|
+
fillRule="evenodd"
|
828
|
+
/>
|
829
|
+
<path
|
830
|
+
clipRule="evenodd"
|
831
|
+
d="M3.73633 3.71014H2.98907V9.68822H3.73633V3.71014Z"
|
832
|
+
fillRule="evenodd"
|
833
|
+
/>
|
834
|
+
<path
|
835
|
+
clipRule="evenodd"
|
836
|
+
d="M9.71436 1.46838H-2.28882e-05V2.21564H9.71436V1.46838Z"
|
837
|
+
fillRule="evenodd"
|
838
|
+
/>
|
839
|
+
<path
|
840
|
+
clipRule="evenodd"
|
841
|
+
d="M3.01523 1.842H3.71018V1.09474C3.71018 0.874294 3.88952 0.694952 4.10996 0.694952H5.60448C5.82492 0.694952 6.00427 0.874294 6.00427 1.09474V1.842H6.69922V1.09474C6.69922 0.49095 6.2079 0 5.60448 0H4.10996C3.50655 0 3.01523 0.49095 3.01523 1.09474V1.842Z"
|
842
|
+
fillRule="evenodd"
|
843
|
+
/>
|
844
|
+
<path
|
845
|
+
clipRule="evenodd"
|
846
|
+
d="M2.61523 11.93H7.09879C7.70183 11.93 8.22977 11.4409 8.27573 10.8398L8.96582 1.87077L8.2208 1.81323L7.53071 10.7826C7.51427 10.9959 7.31251 11.1827 7.09879 11.1827H2.61523C2.40152 11.1827 2.19976 10.9959 2.18332 10.783L1.49322 1.81323L0.748204 1.87077L1.4383 10.8398C1.48426 11.4409 2.01219 11.93 2.61523 11.93Z"
|
847
|
+
fillRule="evenodd"
|
848
|
+
/>
|
849
|
+
</svg>
|
850
|
+
</div>
|
851
|
+
</div>
|
852
|
+
</div>
|
853
|
+
</div>
|
854
|
+
<div
|
855
|
+
className="container"
|
856
|
+
>
|
857
|
+
<div
|
858
|
+
className="card color-base size-sm is-clickable"
|
859
|
+
onClick={[Function]}
|
860
|
+
>
|
861
|
+
<div
|
862
|
+
className="task type-standby"
|
863
|
+
>
|
864
|
+
<div
|
865
|
+
className="content"
|
866
|
+
>
|
867
|
+
<div
|
868
|
+
className="check-container"
|
869
|
+
onClick={[Function]}
|
870
|
+
>
|
871
|
+
<span
|
872
|
+
className="check"
|
873
|
+
/>
|
874
|
+
</div>
|
875
|
+
<div
|
876
|
+
className="spacer horizontal"
|
877
|
+
style={
|
878
|
+
Object {
|
879
|
+
"height": "100%",
|
880
|
+
"maxHeight": "auto",
|
881
|
+
"width": 5,
|
882
|
+
}
|
883
|
+
}
|
884
|
+
/>
|
885
|
+
<p
|
886
|
+
className="paragraph color-base size-md weight-medium"
|
887
|
+
>
|
888
|
+
Sir Goblin-town feels characters ruined precautions.
|
889
|
+
</p>
|
890
|
+
</div>
|
891
|
+
<div
|
892
|
+
className="spacer horizontal"
|
893
|
+
style={
|
894
|
+
Object {
|
895
|
+
"height": "100%",
|
896
|
+
"maxHeight": "auto",
|
897
|
+
"width": 15,
|
898
|
+
}
|
899
|
+
}
|
900
|
+
/>
|
901
|
+
<div
|
902
|
+
className="icon color-base size-sm background-inverted is-clickable"
|
903
|
+
onClick={[Function]}
|
904
|
+
style={
|
905
|
+
Object {
|
906
|
+
"height": 25,
|
907
|
+
"width": 25,
|
908
|
+
}
|
909
|
+
}
|
910
|
+
>
|
911
|
+
<svg
|
912
|
+
height={25}
|
913
|
+
viewBox="-1 0 12 12"
|
914
|
+
width={25}
|
915
|
+
xmlns="http://www.w3.org/2000/svg"
|
916
|
+
>
|
917
|
+
<path
|
918
|
+
clipRule="evenodd"
|
919
|
+
d="M6.72534 3.71014H5.97808V9.68822H6.72534V3.71014Z"
|
920
|
+
fillRule="evenodd"
|
921
|
+
/>
|
922
|
+
<path
|
923
|
+
clipRule="evenodd"
|
924
|
+
d="M5.23071 3.71014H4.48345V9.68822H5.23071V3.71014Z"
|
925
|
+
fillRule="evenodd"
|
926
|
+
/>
|
927
|
+
<path
|
928
|
+
clipRule="evenodd"
|
929
|
+
d="M3.73633 3.71014H2.98907V9.68822H3.73633V3.71014Z"
|
930
|
+
fillRule="evenodd"
|
931
|
+
/>
|
932
|
+
<path
|
933
|
+
clipRule="evenodd"
|
934
|
+
d="M9.71436 1.46838H-2.28882e-05V2.21564H9.71436V1.46838Z"
|
935
|
+
fillRule="evenodd"
|
936
|
+
/>
|
937
|
+
<path
|
938
|
+
clipRule="evenodd"
|
939
|
+
d="M3.01523 1.842H3.71018V1.09474C3.71018 0.874294 3.88952 0.694952 4.10996 0.694952H5.60448C5.82492 0.694952 6.00427 0.874294 6.00427 1.09474V1.842H6.69922V1.09474C6.69922 0.49095 6.2079 0 5.60448 0H4.10996C3.50655 0 3.01523 0.49095 3.01523 1.09474V1.842Z"
|
940
|
+
fillRule="evenodd"
|
941
|
+
/>
|
942
|
+
<path
|
943
|
+
clipRule="evenodd"
|
944
|
+
d="M2.61523 11.93H7.09879C7.70183 11.93 8.22977 11.4409 8.27573 10.8398L8.96582 1.87077L8.2208 1.81323L7.53071 10.7826C7.51427 10.9959 7.31251 11.1827 7.09879 11.1827H2.61523C2.40152 11.1827 2.19976 10.9959 2.18332 10.783L1.49322 1.81323L0.748204 1.87077L1.4383 10.8398C1.48426 11.4409 2.01219 11.93 2.61523 11.93Z"
|
945
|
+
fillRule="evenodd"
|
946
|
+
/>
|
947
|
+
</svg>
|
948
|
+
</div>
|
949
|
+
</div>
|
950
|
+
</div>
|
951
|
+
</div>
|
952
|
+
</div>
|
953
|
+
`;
|