Skip to content

Commit 80a216f

Browse files
Merge pull request #5025 from topcoder-platform/gig-application
Gig application
2 parents 960fedd + 0a44c84 commit 80a216f

File tree

47 files changed

+2124
-293
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2124
-293
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ workflows:
245245
filters:
246246
branches:
247247
only:
248-
- develop
248+
- gig-application
249249
# This is beta env for production soft releases
250250
- "build-prod-beta":
251251
context : org-global

__tests__/shared/components/GUIKit/Checkbox/__snapshots__/index.jsx.snap

+3-6
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,10 @@ exports[`Default render 1`] = `
1212
<div
1313
className="src-shared-components-GUIKit-Checkbox-___style__checkmark___1xdsj"
1414
>
15-
<IconCheckSolid
15+
<img
16+
alt="checkmark-icon"
1617
className="src-shared-components-GUIKit-Checkbox-___style__after___2rEBg"
17-
height={13}
18-
viewBox="0 0 18 15"
19-
width={13}
20-
xmlns="http://www.w3.org/2000/svg"
21-
xmlnsXlink="http://www.w3.org/1999/xlink"
18+
src="/community-app-assets/images/07507a04e0986d806cbd3ec73c724143.png"
2219
/>
2320
</div>
2421
</label>

__tests__/shared/components/GUIKit/Datepicker/__snapshots__/index.jsx.snap

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
exports[`Default render 1`] = `
44
<div
5-
className="datepickerContainer src-shared-components-GUIKit-Datepicker-___style__container___Sl58X"
5+
className="src-shared-components-GUIKit-Datepicker-___style__container___Sl58X"
66
>
77
<withStyles(SingleDatePicker)
88
anchorDirection="left"
@@ -19,7 +19,7 @@ exports[`Default render 1`] = `
1919
/>
2020
}
2121
date={null}
22-
daySize={53}
22+
daySize={47}
2323
disableScroll={false}
2424
disabled={false}
2525
displayFormat="MMM DD, YYYY"
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,31 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

33
exports[`Default render 1`] = `
4-
<div
5-
className="radioButtonContainer src-shared-components-GUIKit-RadioButton-___style__radioButtonContainer___3YAY0 src-shared-components-GUIKit-RadioButton-___style__smSize____lb3s"
6-
>
4+
<React.Fragment>
75
<div
8-
className="radioButton src-shared-components-GUIKit-RadioButton-___style__radioButton___2Jtbj"
6+
className="radioButtonContainer src-shared-components-GUIKit-RadioButton-___style__radioButtonContainer___3YAY0 src-shared-components-GUIKit-RadioButton-___style__smSize____lb3s"
97
>
10-
<label
11-
className="src-shared-components-GUIKit-RadioButton-___style__container___3nVSA"
8+
<div
9+
className="radioButton src-shared-components-GUIKit-RadioButton-___style__radioButton___2Jtbj"
1210
>
13-
<input
14-
checked={true}
15-
onChange={[Function]}
16-
type="radio"
17-
/>
11+
<label
12+
className="src-shared-components-GUIKit-RadioButton-___style__container___3nVSA"
13+
>
14+
<input
15+
checked={true}
16+
onChange={[Function]}
17+
type="radio"
18+
/>
19+
<span
20+
className="src-shared-components-GUIKit-RadioButton-___style__checkmark___1iCFJ"
21+
/>
22+
</label>
1823
<span
19-
className="src-shared-components-GUIKit-RadioButton-___style__checkmark___1iCFJ"
20-
/>
21-
</label>
22-
<span
23-
className="src-shared-components-GUIKit-RadioButton-___style__label___MCxnk"
24-
>
25-
radio
26-
</span>
24+
className="src-shared-components-GUIKit-RadioButton-___style__label___MCxnk"
25+
>
26+
radio
27+
</span>
28+
</div>
2729
</div>
28-
</div>
30+
</React.Fragment>
2931
`;

0 commit comments

Comments
 (0)