author
int64
4.98k
943k
date
stringdate
2017-04-15 16:45:02
2022-02-25 15:32:15
timezone
int64
-46,800
39.6k
hash
stringlengths
40
40
message
stringlengths
8
468
mods
listlengths
1
16
language
stringclasses
9 values
license
stringclasses
2 values
repo
stringclasses
119 values
original_message
stringlengths
12
491
is_CCS
int64
1
1
commit_type
stringclasses
129 values
commit_scope
stringlengths
1
44
71,325
29.05.2019 21:07:36
-32,400
436694fe7aa1c3e038470d7784f96b0f2fd4f623
chore: allow running buildup and builddown scripts without lerna globally installed Modift buildup and builddown script to include `$(npm bin)` in `PATH` so that lerna does not need to be installed globally in order to run the scripts. Closes
[ { "change_type": "MODIFY", "diff": "@@ -43,7 +43,7 @@ fail() {\nBUILD_INDICATOR=\".BUILD_COMPLETED\"\nrm -rf $BUILD_INDICATOR\n-export PATH=node_modules/.bin:$PATH\n+export PATH=$(npm bin):$PATH\nexport NODE_OPTIONS=\"--max-old-space-size=4096 ${NODE_OPTIONS:-}\"\n# Speed up build by reusing calculated tree...
TypeScript
Apache License 2.0
aws/aws-cdk
chore: allow running buildup and builddown scripts without lerna globally installed (#2667) Modift buildup and builddown script to include `$(npm bin)` in `PATH` so that lerna does not need to be installed globally in order to run the scripts. Closes #1338
1
chore
null
269,632
29.05.2019 21:08:48
-7,200
3eec7e3e9d3874c98c7f6e8d56dc71e20fdd9738
fix: wrap snapcraft command in TrimSpace
[ { "change_type": "MODIFY", "diff": "@@ -202,10 +202,10 @@ func create(ctx *context.Context, snap config.Snapcraft, arch string, binaries [\nif configAppMetadata, ok := snap.Apps[name]; ok {\nappMetadata.Plugs = configAppMetadata.Plugs\nappMetadata.Daemon = configAppMetadata.Daemon\n- appMetadata.Command = s...
Go
MIT License
goreleaser/goreleaser
fix: wrap snapcraft command in TrimSpace (#1035)
1
fix
null
815,598
29.05.2019 22:11:47
-28,800
7b5ed4f618f8c5a4cf8b5328741274ca5aaf94ee
chore: run clippy in its own ci job
[ { "change_type": "MODIFY", "diff": "@@ -24,20 +24,19 @@ addons:\n- texinfo\n- libtool\n-install:\n+before_install:\n- cargo sweep --version || cargo install --git https://github.com/holmgr/cargo-sweep --rev 4770deda37a2203c783e301b8c0c895964e8971e\n- cargo sweep -s\nbefore_script:\n- if [ \"$TRAVIS_OS_NAME\...
Rust
MIT License
nervosnetwork/ckb
chore: run clippy in its own ci job
1
chore
null
815,609
29.05.2019 22:21:34
-28,800
4c328eea2c24e574e6b79f9810f511809cb957c9
ci: remove dependencies with npm and prettier
[ { "change_type": "MODIFY", "diff": "@@ -61,9 +61,6 @@ matrix:\nif: 'tag IS NOT present AND (type == pull_request OR repo != nervosnetwork/ckb OR branch = master)'\ncache: false\naddons: { apt: { packages: [] } }\n- language: javascript\n- install:\n- - npm install -g prettier\nscript:\n- make cargo-license\...
Rust
MIT License
nervosnetwork/ckb
ci: remove dependencies with npm and prettier (#916)
1
ci
null
71,371
29.05.2019 23:43:49
-7,200
88c419981189af678206b276271189aa2fffee84
chore(assets): remove fixtures folder before untar Otherwise in WSL the pre cdk-build fails with `fixtures/symlinks/external-dir-link: Cannot open: Invalid argument`. Probably linked to a symlink issue in WSL.
[ { "change_type": "MODIFY", "diff": "},\n\"cdk-build\": {\n\"pre\": [\n- \"cd test/fs && tar -xzvf fixtures.tar.gz\"\n+ \"rm -rf test/fs/fixtures && cd test/fs && tar -xzvf fixtures.tar.gz\"\n]\n},\n\"keywords\": [\n", "new_path": "packages/@aws-cdk/assets/package.json", "old_path": "packages/@aws-cd...
TypeScript
Apache License 2.0
aws/aws-cdk
chore(assets): remove fixtures folder before untar (#2672) Otherwise in WSL the pre cdk-build fails with `fixtures/symlinks/external-dir-link: Cannot open: Invalid argument`. Probably linked to a symlink issue in WSL.
1
chore
assets
791,704
29.05.2019 23:53:54
25,200
f17e6be56025321e9e6967cbd2e9c95ab7d66836
report: show fireworks only if all core categories score 100
[ { "change_type": "MODIFY", "diff": "/* globals getFilenamePrefix Util */\n-/** @typedef {import('./dom.js')} DOM */\n-\n/**\n* @param {HTMLTableElement} tableEl\n* @return {Array<HTMLTableRowElement>}\n@@ -98,7 +96,9 @@ class ReportUIFeatures {\n// Fireworks.\nconst scoresAll100 = Object.values(report.categ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report: show fireworks only if all core categories score 100 (#9073)
1
report
null
791,704
29.05.2019 23:54:56
25,200
ffaea60094736d9895f92d4b1ee85079db348bc9
report: show metric descriptions by default when errors exist
[ { "change_type": "MODIFY", "diff": "@@ -117,6 +117,15 @@ class ReportUIFeatures {\nthis._document.addEventListener('scroll', this._updateStickyHeaderOnScroll);\nwindow.addEventListener('resize', this._updateStickyHeaderOnScroll);\n}\n+\n+ // Show the metric descriptions by default when there is an error.\n+...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report: show metric descriptions by default when errors exist (#9054)
1
report
null
791,704
30.05.2019 00:42:08
25,200
a11dec42ce50edcfb945cc77663e787363264670
devtools: enable sticky header, top bar, and report ui features
[ { "change_type": "MODIFY", "diff": "@@ -91,17 +91,6 @@ class ReportRenderer {\nreturn el;\n}\n- /**\n- * @return {Element}\n- */\n- _renderReportShortHeader() {\n- const shortHeaderContainer = this._dom.createElement('div', 'lh-header-container');\n- const wrapper = this._dom.cloneTemplate('#tmpl-lh-scores-...
JavaScript
Apache License 2.0
googlechrome/lighthouse
devtools: enable sticky header, top bar, and report ui features (#9023)
1
devtools
null
815,605
30.05.2019 03:03:14
0
3883a7e3165388b2ac36432eb9afe523c47be47c
test: add more tests guarding new behaviors
[ { "change_type": "MODIFY", "diff": "@@ -981,4 +981,57 @@ mod tests {\n_test_load_witness(data)?;\n}\n}\n+\n+ fn _test_load_group_witness(data: &[u8]) -> Result<(), TestCaseError> {\n+ let mut machine = DefaultCoreMachine::<u64, SparseMemory<u64>>::default();\n+ let size_addr: u64 = 0;\n+ let addr: u64 = 100...
Rust
MIT License
nervosnetwork/ckb
test: add more tests guarding new behaviors
1
test
null
815,605
30.05.2019 03:37:53
0
d0141b5c2f2c85e368fec6ae49ca4ec8b0de9f2e
fix: rpc tests
[ { "change_type": "MODIFY", "diff": "@@ -678,7 +678,7 @@ echo '{\n\"deps\": [],\n\"inputs\": [\n{\n- \"block_number\": \"0\",\n+ \"args\": [],\n\"previous_output\": {\n\"block_hash\": \"0x1aaf18b97188c7b2c1d40cead6ce06a3ab4a5a8e90ae908db1da442b98a74b34\",\n\"cell\": {\n@@ -746,6 +746,7 @@ echo '{\n],\n\"inpu...
Rust
MIT License
nervosnetwork/ckb
fix: rpc tests
1
fix
null
103,555
30.05.2019 06:24:22
14,400
ac5912601222d9bb1ac5af3f2338cd5a9b113a00
fix: move paddingHorizontal out from content style
[ { "change_type": "MODIFY", "diff": "@@ -52,11 +52,11 @@ const styles = StyleSheet.create({\nborderStyle: 'solid',\nborderBottomWidth: StyleSheet.hairlineWidth,\nminHeight: 48,\n+ paddingHorizontal: 16,\n},\ncontent: {\nflex: 1,\nflexDirection: 'row',\n- paddingHorizontal: 16,\n},\n});\n", "new_path": "s...
TypeScript
MIT License
callstack/react-native-paper
fix: move paddingHorizontal out from content style (#1078)
1
fix
null
127,946
30.05.2019 07:02:07
-10,800
f05686ac4a5ea19eb5d6ee25cba8bd31a21e201f
fix(account): minor adjustments
[ { "change_type": "MODIFY", "diff": "@@ -39,6 +39,14 @@ const heading: CSSObject = {\n},\n};\n+export const StickyNav: React.FC<{ children: any }> = styled.div({\n+ position: 'sticky',\n+ top: 0,\n+ zIndex: 1,\n+ ...container('default'),\n+ overflowX: 'auto',\n+});\n+\nexport const CashierHeading: React.FC<{...
TypeScript
MIT License
coingaming/moon-design
fix(account): minor adjustments
1
fix
account
103,510
30.05.2019 07:10:21
10,800
cd1e414f550b2e078eb97f66acd3c0a971fd402c
ci: cache jest tests and fix flaky tests
[ { "change_type": "MODIFY", "diff": "@@ -65,10 +65,19 @@ jobs:\nsteps:\n- attach_workspace:\nat: ~/react-native-paper\n- - run: yarn test -- --coverage\n+ - restore_cache:\n+ name: Restoring Jest Cache\n+ keys:\n+ - jest-cache-{{ .Branch }}\n+ - jest-cache\n+ - run: yarn test --maxWorkers=2 --coverage\n- sto...
TypeScript
MIT License
callstack/react-native-paper
ci: cache jest tests and fix flaky tests (#1094)
1
ci
null
722,013
30.05.2019 07:46:40
18,000
e2a0a484fb033b8d00c8ef92dcd73dd39690f62f
fix: detect pure template no script as sfc
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,15 @@ describe('isCodeVueSfc', () => {\n).toBeTruthy()\n})\n+ it('should detect a lonely template as SFC', () => {\n+ expect(\n+ isCodeVueSfc(`\n+ <template>\n+ <div/>\n+ </template>`)\n+ ).toBeTruthy()\n+ })\n+\nit('should return false if there is only javas...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
fix: detect pure template no script as sfc
1
fix
null
104,827
30.05.2019 07:58:40
18,000
11383af2fd716d0d79ee79dbb7f09ca2c405ec39
feat(donutcard): donut card initial drop, update timeseries to support multiline
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,7 @@ import {\nDashboardColumnsPropTypes,\n} from '../../constants/PropTypes';\nimport ValueCard from '../ValueCard/ValueCard';\n+import DonutCard from '../DonutCard/DonutCard';\nimport TimeSeriesCard from '../TimeSeriesCard/TimeSeriesCard';\nimport {\nDASHBO...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(donutcard): donut card initial drop, update timeseries to support multiline
1
feat
donutcard
127,946
30.05.2019 08:06:38
-10,800
9d348ff30ee033c64ff54aa15ba77d2b61c77f8e
feat(account): reimplement account
[ { "change_type": "ADD", "diff": "+import * as React from 'react';\n+import styled from '@emotion/styled';\n+import rem from 'polished/lib/helpers/rem';\n+import { border, colors, breakpoints } from '@heathmont/sportsbet-tokens';\n+import { spacing, mq } from '@heathmont/sportsbet-utils';\n+import { FormItem...
TypeScript
MIT License
coingaming/moon-design
feat(account): reimplement account
1
feat
account
791,704
30.05.2019 08:09:39
25,200
9a011a52d1f9a3ead3619f5491919c2b639e79f1
clients(devtools): ignore dark mode media query
[ { "change_type": "MODIFY", "diff": "@@ -92,7 +92,9 @@ class ReportUIFeatures {\ntopbarLogo.addEventListener('click', () => this._toggleDarkTheme());\nlet turnOffTheLights = false;\n- if (window.matchMedia('(prefers-color-scheme: dark)').matches) {\n+ // Do not query the system preferences for DevTools - Dev...
JavaScript
Apache License 2.0
googlechrome/lighthouse
clients(devtools): ignore dark mode media query (#9082)
1
clients
devtools
104,827
30.05.2019 08:46:20
18,000
144170dae5dd7a27453cfbe6afd65bd289114393
feat(barchartcard): bar charts and pie charts
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,7 @@ export default class Container extends Component {\n<div\nclassName=\"storybook-container\"\nstyle={{\n- padding: '3em',\n+ padding: '1em',\ndisplay: 'flex',\nflexDirection: 'column',\nalignItems: 'center',\n", "new_path": ".storybook/Container.js", ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(barchartcard): bar charts and pie charts
1
feat
barchartcard
304,866
30.05.2019 10:52:28
25,200
8ce17b24616c74bf8562afb4686e8b3da09bacb8
fix(ast): return count of errors when checking AST Fixes
[ { "change_type": "MODIFY", "diff": "@@ -26,7 +26,6 @@ func check(n Node) int {\nn.Errors = append(n.Errors, Error{\nMsg: fmt.Sprintf(\"invalid statement %s@%d:%d-%d:%d: %s\", loc.File, loc.Start.Line, loc.Start.Column, loc.End.Line, loc.End.Column, n.Text),\n})\n- return len(n.Errors)\ncase *PipeExpression:...
Go
MIT License
influxdata/flux
fix(ast): return count of errors when checking AST (#1312) Fixes #1311.
1
fix
ast
730,420
30.05.2019 11:21:35
25,200
66c5e42506b075e7f883ca24f91ce3c3fb9aa2dc
feat(package): Added es-check dependency
[ { "change_type": "MODIFY", "diff": "\"resolved\": \"https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz\",\n\"integrity\": \"sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=\",\n\"dev\": true,\n+ \"optional\": true,\n\"requires\": {\n\"kind-of\": \"^3.0.2\",\n\"longest\": \"^1.0.1\",\n\"through2\": \"^0.6.3\"\n}\...
JavaScript
MIT License
webex/react-widgets
feat(package): Added es-check dependency
1
feat
package
730,420
30.05.2019 11:22:23
25,200
e5afa7dd93b2895e95144ee3d2b774b5f37badf7
feat(Jenkinsfile): Implemented es-check into the pipeline
[ { "change_type": "MODIFY", "diff": "@@ -182,6 +182,7 @@ ansiColor('xterm') {\nBUILD_PUBLIC_PATH=\"https://code.s4d.io/widget-recents/archives/${version}/\" npm run build sri widget-recents\nBUILD_BUNDLE_PUBLIC_PATH=\"https://code.s4d.io/widget-recents/archives/${version}/\" BUILD_PUBLIC_PATH=\"https://code....
JavaScript
MIT License
webex/react-widgets
feat(Jenkinsfile): Implemented es-check into the pipeline
1
feat
Jenkinsfile
730,420
30.05.2019 11:23:27
25,200
1e25b8fa51d674a4d722cb67204e78779821fb5b
feat(SCRIPTS): Updated the SCRIPTS file with es-check scripts accordingly
[ { "change_type": "MODIFY", "diff": "@@ -74,6 +74,11 @@ Runs a webpack build and transpile on all packages that start with '@ciscospark/\n* Executes [`webpackBuild`](#webpackBuild) command.\n* Executes [`transpile`](#transpile) command.\n+### `npm run es5-check:dist`\n+Verifies that the bundles are es5 compa...
JavaScript
MIT License
webex/react-widgets
feat(SCRIPTS): Updated the SCRIPTS file with es-check scripts accordingly
1
feat
SCRIPTS
104,857
30.05.2019 11:47:40
10,800
fbb81e1622e681fe7b79e410e137a851b6c46040
feature(tablecard): new component table card
[ { "change_type": "ADD", "diff": "+import React from 'react';\n+import PropTypes from 'prop-types';\n+\n+import { CardPropTypes } from '../../constants/PropTypes';\n+import Card from '../Card/Card';\n+import { CARD_LAYOUTS } from '../../constants/LayoutConstants';\n+import Table from '../Table/Table';\n+\n+c...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feature(tablecard): new component table card
1
feature
tablecard
104,818
30.05.2019 13:19:37
-7,200
76c5c16d6b29e619e5fc47184d5809f12e6c7e7f
fix(valuecard): increase fonts
[ { "change_type": "MODIFY", "diff": "@@ -22,8 +22,9 @@ const AttributeWrapper = styled.div`\n`;\nconst AttributeLabel = styled.div`\n- ${props => props.layout === CARD_LAYOUTS.HORIZONTAL && `padding-bottom: 0.25rem;`};\n- ${props => props.layout === CARD_LAYOUTS.VERTICAL && `text-align: left;`};\n+ ${props =...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(valuecard): increase fonts
1
fix
valuecard
127,946
30.05.2019 13:58:22
-10,800
9a2e23eafa16957c4e11678c63853f337c50057d
feat(account): add all imports for account page
[ { "change_type": "RENAME", "diff": "", "new_path": "portals/user-portal-components/src/settings/components/account/account-block.tsx", "old_path": "portals/user-portal-components/src/settings/components/account-block.tsx" }, { "change_type": "RENAME", "diff": "@@ -2,7 +2,7 @@ import * as...
TypeScript
MIT License
coingaming/moon-design
feat(account): add all imports for account page
1
feat
account
791,704
30.05.2019 14:37:06
25,200
767116696fdb1fc0903d369f811005a1cdae8fbb
devtools: move topbar out of scrollable container
[ { "change_type": "MODIFY", "diff": "@@ -184,22 +184,6 @@ class ReportRenderer {\n* @return {DocumentFragment}\n*/\n_renderReport(report) {\n- const headerContainer = this._dom.createElement('div');\n- headerContainer.appendChild(this._renderReportHeader());\n-\n- const container = this._dom.createElement('d...
JavaScript
Apache License 2.0
googlechrome/lighthouse
devtools: move topbar out of scrollable container (#9077)
1
devtools
null
104,844
30.05.2019 15:00:36
14,400
9e3a98c48a58a5f0d5db82d4b6160f866b489c78
chore(BaseModal): fix issues from upgrade to v10
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,7 @@ import {\nInlineNotification,\n} from 'carbon-components-react';\nimport PropTypes from 'prop-types';\n-import React from 'react';\n+import React, { Fragment } from 'react';\nimport classNames from 'classnames';\nimport styled from 'styled-components';\nim...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(BaseModal): fix issues from upgrade to v10
1
chore
BaseModal
127,976
30.05.2019 15:05:42
-10,800
cb45eb2759a2969cfc3d6627f928b82a0b8fb053
feat(myBets collapsible): collapsible blocks for mybets section
[ { "change_type": "ADD", "diff": "+<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n+ <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.74219 9.99219C4.95219 9.99219 5.13969 9.90969 5.27469 9.77469L9.77469 5.27469C9.90969 5.13969 9.99219 4.9521...
TypeScript
MIT License
coingaming/moon-design
feat(myBets collapsible): collapsible blocks for mybets section
1
feat
myBets collapsible
104,844
30.05.2019 15:23:56
14,400
6476d87df4d0cb52c3789dabfeeee50c462c2943
chore(buttonehanced): fix issues from v10 upgrade
[ { "change_type": "MODIFY", "diff": "@@ -7,6 +7,10 @@ import styled from 'styled-components';\nconst StyledButton = styled(CarbonButton)`\n&&& {\njustify-content: flex-start;\n+\n+ .bx--loading__stroke {\n+ stroke: #8c8c8c;\n+ }\n}\n`;\n", "new_path": "src/components/ButtonEnhanced/ButtonEnhanced.jsx", ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(buttonehanced): fix issues from v10 upgrade
1
chore
buttonehanced
815,595
30.05.2019 15:30:40
-28,800
789f4bf558cf3c44821983468134290c6cd4bfd9
fix: Filter compact block at peer-level
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,7 @@ use ckb_network::{CKBProtocolContext, PeerIndex};\nuse ckb_protocol::{cast, BlockTransactions, FlatbuffersVectorIterator};\nuse ckb_store::ChainStore;\nuse failure::Error as FailureError;\n+use std::collections::hash_map::Entry;\nuse std::convert::TryInto;...
Rust
MIT License
nervosnetwork/ckb
fix: Filter compact block at peer-level
1
fix
null
730,420
30.05.2019 16:06:18
25,200
fb367d3edc139707cca28b0071b9807252b6588c
feat(widget-demo): Added a validator to the load space count input
[ { "change_type": "MODIFY", "diff": "@@ -69,6 +69,7 @@ class DemoWidget extends Component {\nsecondaryActivitiesFullWidth: false,\nsetCurrentActivity: '',\nspaceLoadCount: cookies.get('spaceLoadCount') || '25',\n+ spaceLoadCountInputErrors: [],\nspaceRunning: false,\nspaceWidgetProps: {},\nstickyMode: false\...
JavaScript
MIT License
webex/react-widgets
feat(widget-demo): Added a validator to the load space count input
1
feat
widget-demo
438,921
30.05.2019 16:09:41
-32,400
0d7fb3e1675062d2e8fff3c63eff64787e29df3b
feat(gauge): Intent to ship stack data Implement stack data handling for gauge type Implement gauge.title option Make multiline text functionality as separate util funciton Fix
[ { "change_type": "MODIFY", "diff": "@@ -3261,7 +3261,7 @@ d3.select(\".chart_area\")\n}\n}\n},\n- MultilneTitle: {\n+ MultilineTitle: {\noptions: {\ndata: {\ncolumns: [\n@@ -3322,7 +3322,49 @@ d3.select(\".chart_area\")\n}\n}\n}\n+ },\n+ GaugeStackData: [\n+ {\n+ options: {\n+ data: {\n+ columns: [\n+ [\"da...
TypeScript
MIT License
naver/billboard.js
feat(gauge): Intent to ship stack data - Implement stack data handling for gauge type - Implement gauge.title option - Make multiline text functionality as separate util funciton Fix #580
1
feat
gauge
127,946
30.05.2019 17:17:41
-10,800
666d552a9de7f19e9ac47ec2084b4f0da381819f
fix(account): fix QR for google auth
[ { "change_type": "MODIFY", "diff": "@@ -16,7 +16,7 @@ const Wrapper = styled.div(() => ({\nconst QR = styled.div(() => ({\nborderRadius: border.radius.small,\nbackgroundColor: colors.neutral[10],\n- width: '56%',\n+ padding: spacing(),\n'img, svg': {\nmaxWidth: '100%',\n},\n", "new_path": "portals/user-...
TypeScript
MIT License
coingaming/moon-design
fix(account): fix QR for google auth
1
fix
account
127,946
30.05.2019 17:18:38
-10,800
a2e4d88c21c9b700d94d23370e167dbc554a7cc1
feat(icons): add background icon
[ { "change_type": "ADD", "diff": "+<svg width=\"1024\" height=\"168\" viewBox=\"0 0 1024 168\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n+<mask id=\"mask0\" mask-type=\"alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"1024\" height=\"168\">\...
TypeScript
MIT License
coingaming/moon-design
feat(icons): add background icon
1
feat
icons
503,918
30.05.2019 18:23:54
-10,800
2237fa5c24c90641687d196638beb0d96f109ae5
fix(checkbox): set checked if onChanged is not the default
[ { "change_type": "MODIFY", "diff": "@@ -24,14 +24,16 @@ export interface CheckboxProps\n'aria-label': string;\n}\n+// tslint:disable-next-line:no-empty\n+const defaultOnChange = () => {};\n+\nexport class Checkbox extends React.Component<CheckboxProps> {\nstatic defaultProps = {\nclassName: '',\nisValid: tr...
TypeScript
MIT License
patternfly/patternfly-react
fix(checkbox): set checked if onChanged is not the default (#2037) Signed-off-by: Boaz Shuster <boaz.shuster.github@gmail.com>
1
fix
checkbox
438,921
30.05.2019 18:27:51
-32,400
44198e17d9cfddb4b3867178043b1f8d17fa9de4
feat(radar): Intent to ship multiline axis Implement multiline axis text via '\n'. Fix
[ { "change_type": "MODIFY", "diff": "@@ -3560,6 +3560,28 @@ d3.select(\".chart_area\")\n\"#radarAxis .bb-levels polygon { stroke-dasharray: 1 3; stroke-width: 1px; }\"\n]\n},\n+ RadarAxisMultiline: {\n+ options: {\n+ padding: {\n+ top: 20\n+ },\n+ data: {\n+ x: \"x\",\n+ columns: [\n+ [\"x\", \"1st\\nPrize\"...
TypeScript
MIT License
naver/billboard.js
feat(radar): Intent to ship multiline axis Implement multiline axis text via '\n'. Fix #904
1
feat
radar
217,922
30.05.2019 18:38:30
-7,200
bc6236ab3bc332d84a0eb9dd0e3461e9a81c4959
fix(desktop): enabled hardware acceleration with a -noHA flag to disable it
[ { "change_type": "MODIFY", "diff": "@@ -23,13 +23,17 @@ let updateInterval;\nlet openedOverlays = {};\nconst options = {\n- multi: false\n+ multi: false,\n+ noHA: false\n};\nfor (let i = 0; i < argv.length; i++) {\nif (argv[i] === '--multi' || argv[i] === '-m') {\noptions.multi = true;\n}\n+ if (argv[i] ===...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(desktop): enabled hardware acceleration with a -noHA flag to disable it
1
fix
desktop
127,939
30.05.2019 18:42:25
-10,800
374182b3abce45ea8c60668a4e93b41463b0ae51
fix(design): removed to from card balance
[ { "change_type": "MODIFY", "diff": "@@ -25,11 +25,10 @@ Default template, using the `flex` layout modifier to balance space between item\n<CardBalance\nfrom={{\ncurrency: 'Bitcoin',\n- value: 1526.56,\n+ value: '1526.56',\nunit: 'mBTC',\nunitTitle: 'Millibitcoin',\n}}\n- to={{ currency: 'Dollars', value: 35...
TypeScript
MIT License
coingaming/moon-design
fix(design): removed to from card balance
1
fix
design
127,939
30.05.2019 18:43:42
-10,800
f97cba63ea3d76b6d1b892834504c8ca49f0fe39
chore(wallet): hidding details when not needed
[ { "change_type": "MODIFY", "diff": "@@ -6,8 +6,10 @@ import { spacing, mq } from '@heathmont/sportsbet-utils';\nimport rem from 'polished/lib/helpers/rem';\njsx;\n-export const Summary = styled.summary<{ inactive?: boolean }>(\n- ({ inactive = false }) => [\n+export const Summary = styled.summary<{\n+ inact...
TypeScript
MIT License
coingaming/moon-design
chore(wallet): hidding details when not needed
1
chore
wallet
217,922
30.05.2019 18:46:28
-7,200
90663c757ed03e875a72ea8b7efde286a8db4d24
fix(pricing): benefits text is now white
[ { "change_type": "MODIFY", "diff": "@@ -151,7 +151,7 @@ nz-alert.dark {\n.ant-alert {\nbackground-color: #333333;\n- &-info, &-warning, &-error {\n+ &-info, &-warning, &-error, &-success {\n.ant-alert-message {\ncolor: white !important;\n}\n", "new_path": "apps/client/src/styles.less", "old_path": "...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(pricing): benefits text is now white #942
1
fix
pricing
104,818
30.05.2019 18:59:45
-7,200
f260fcc44318eeab334faefebe664a3798638b16
fix(linechart): need to stop d3 from build process
[ { "change_type": "MODIFY", "diff": "\"carbon-components\": \"^9.84.14\",\n\"carbon-components-react\": \"^6.108.0\",\n\"carbon-icons\": \"^7.x\",\n- \"react\": \"^16.8.3\"\n+ \"react\": \"^16.8.3\",\n+ \"d3\": \"3.5.17\"\n},\n\"devDependencies\": {\n\"@babel/core\": \"^7.0.0\",\n", "new_path": "package....
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(linechart): need to stop d3 from build process
1
fix
linechart
217,922
30.05.2019 19:41:09
-7,200
3de2faf804bdddf1e087a0bfd70497404dc0fa93
chore(seo): better build management for sitemap file
[ { "change_type": "MODIFY", "diff": "\"ng\": \"ng\",\n\"start\": \"node ./tools/build/prebuild.js && ng serve --project=client\",\n\"build:watch\": \"node ./tools/build/prebuild.js && npm run ng-high-memory build -- --project=client --watch --configuration=electron-dev\",\n- \"build:prod\": \"node ./tools/bu...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(seo): better build management for sitemap file
1
chore
seo
217,922
30.05.2019 19:47:36
-7,200
c025314e6fc52e4724647514d9da1b6455bf7d85
chore: fix for ssr build inside CI env
[ { "change_type": "MODIFY", "diff": "\"electron-builder\": \"electron-builder\",\n\"***********SSR STUFF***************\": \"\",\n\"build:ssr\": \"npm run build:beta && npm run build:ssr:ci\",\n- \"build:ssr:ci\": \"npm run gt:fetch && npm run webpack:ssr & node ssr/copy-translations.js & npm run copy:ssr & ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fix for ssr build inside CI env
1
chore
null
217,922
30.05.2019 19:59:35
-7,200
7b8d14148eb8146cab98b15928331bf58a36981b
feat(reduction): added gatherer icon for reduction details
[ { "change_type": "MODIFY", "diff": "<ng-template #description>\n<div fxLayout=\"column\" fxLayoutGap=\"5px\">\n<div fxLayout=\"row\" fxLayoutGap=\"5px\" fxLayoutAlign=\"flex-start center\">\n- <span>{{node.mapId | placeName | i18n}} - lvl {{node.level}}</span>\n+ <div fxLayout=\"row\" fxLayoutAlign=\"flex-s...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(reduction): added gatherer icon for reduction details
1
feat
reduction
217,922
30.05.2019 20:00:07
-7,200
b73214be54e44fd8e0decdfb65f69434bc13eddf
fix(theme): fixed wrong name for orange theme, making it unusable
[ { "change_type": "MODIFY", "diff": "@@ -13,7 +13,7 @@ export class Theme {\npublic static readonly GREEN = new Theme('GREEN', '#009a4d', '#b77cb3', 'white');\n- public static readonly ORANGE = new Theme('GREEN', '#F57C00', '#009688', 'white');\n+ public static readonly ORANGE = new Theme('ORANGE', '#F57C00'...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(theme): fixed wrong name for orange theme, making it unusable
1
fix
theme
217,922
30.05.2019 20:04:39
-7,200
3c1b826c0ebc26a64b449f9e45a32cccf9962d02
fix(db): fixed an issue with amount not taken into account for list addition
[ { "change_type": "MODIFY", "diff": "<ng-template #addToList>\n<ng-container *ngIf=\"toSearchResult(data) as searchResult\">\n<nz-input-group [nzCompact]=\"true\" [nzAddOnAfter]=\"addButton\" class=\"amount-input\">\n- <input type=\"number\" [(ngModel)]=\"searchResult.amount\"\n- (keydown.enter)=\"addItemsTo...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(db): fixed an issue with amount not taken into account for list addition
1
fix
db
217,922
30.05.2019 20:06:20
-7,200
a8fda58d7bfa09140061cfe0ee7b45504fbedd89
chore(db): small alignment fix for item name
[ { "change_type": "MODIFY", "diff": "*ngIf=\"xivapiItem$ | async as xivapiItem\" [style.padding]=\"'0 50px' | ifMobile: '0'\">\n<div fxLayout=\"row\" fxLayout.lt-md=\"column\" fxLayoutGap.lt-md=\"10px\" fxLayoutAlign=\"flex-start flex-start\"\nfxFlex=\"1 1 auto\" fxLayoutGap=\"5px\" class=\"top-bar\">\n- <di...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(db): small alignment fix for item name
1
chore
db
104,844
30.05.2019 20:08:11
14,400
9294d22f81285da2c0a537981a89bf90b57d723f
fix(header): made fixes that came from v10 upgrade
[ { "change_type": "MODIFY", "diff": "@@ -33,16 +33,10 @@ $feature-flags: (\nmargin-left: 0;\n}\n-a.bx--header__menu-item[role='menuitem']:hover {\n- background-color: #2d3f48;\n-}\n-\n-.bx--header__menu-title[role='menuitem'][aria-expanded='true'] {\n- background-color: #2d3f48;\n-}\n+// a.bx--header__menu-i...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(header): made fixes that came from v10 upgrade
1
fix
header
217,922
30.05.2019 20:14:26
-7,200
3db5ed041fd25fffbc34f722f2f8602fb51ddf60
feat(db): you can now add any item to a list from the item page
[ { "change_type": "MODIFY", "diff": "<ng-container *ngIf=\"garlandToolsItem$ | async as gtData; else loader\">\n+ <ng-container *ngIf=\"data$ | async as data\">\n<div fxLayout=\"column\" fxLayoutGap=\"10px\"\n*ngIf=\"xivapiItem$ | async as xivapiItem\" [style.padding]=\"'0 50px' | ifMobile: '0'\">\n<div fxLa...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(db): you can now add any item to a list from the item page
1
feat
db
217,922
30.05.2019 20:16:17
-7,200
71a2b9a41776210c1470bb746d787f4bb64445cd
chore: adding more verbose stuff to debug CI functions deployment
[ { "change_type": "MODIFY", "diff": "@@ -82,7 +82,7 @@ jobs:\nif [ \"${CIRCLE_BRANCH}\" == \"master\" ]; then\nnpm run build:prod && npm run build:ssr:ci\nelse\n- npm run build:beta && npm run build:ssr:ci\n+ npm run build:beta && npm run build:ssr:ci && ls -lisah\nfi\n- save_cache:\nkey: dist-{{ .Environmen...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: adding more verbose stuff to debug CI functions deployment
1
chore
null
217,922
30.05.2019 20:22:12
-7,200
ebdc5b8a58be5817ac4ccd6ad916ac8f2fb24cb1
chore: potential fix for SSR CI build
[ { "change_type": "MODIFY", "diff": "@@ -80,9 +80,9 @@ jobs:\nname: Building\ncommand: |\nif [ \"${CIRCLE_BRANCH}\" == \"master\" ]; then\n- npm run build:prod && npm run build:ssr:ci\n+ npm run build:prod\nelse\n- npm run build:beta && npm run build:ssr:ci && ls -lisah\n+ npm run build:beta\nfi\n- save_cach...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: potential fix for SSR CI build
1
chore
null
217,922
30.05.2019 20:29:58
-7,200
a6913b21dce562b1cbeff27a12da5d286c5f92ae
chore: fix for updated hook functions for firestore
[ { "change_type": "MODIFY", "diff": "@@ -60,18 +60,18 @@ exports.firestoreCountlistsDelete = functions.runWith(runtimeOpts).firestore.doc\n}).then(() => null);\n});\n-exports.createListCompacts = functions.runWith(runtimeOpts).firestore.document('/lists/{uid}').onCreate((snap) => {\n+exports.createListCompac...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fix for updated hook functions for firestore
1
chore
null
217,922
30.05.2019 20:54:11
-7,200
4a8d4aba5cc8c5aaa4c0b4c36076c271b1959a4f
chore: syntax fix inside circleci config file
[ { "change_type": "MODIFY", "diff": "@@ -170,7 +170,7 @@ workflows:\nbranches:\nonly: master\n- deploy-ssr-prod:\n- - requires:\n+ requires:\n- build\nfilters:\nbranches:\n@@ -182,7 +182,7 @@ workflows:\nbranches:\nonly: staging\n- deploy-ssr-beta:\n- - requires:\n+ requires:\n- build\nfilters:\nbranches:\n"...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: syntax fix inside circleci config file
1
chore
null
217,922
30.05.2019 22:31:30
-7,200
e1798da0b21f52981872aca940462c8f02be4e19
chore: fixed compiler errors
[ { "change_type": "MODIFY", "diff": "@@ -444,7 +444,7 @@ export class AppComponent implements OnInit {\nthis.settingsPopupService.openSettings();\n}\n- public goToDiscord1kGiveaway(event: MouseEvent): void {\n+ public goToDiscord1kGiveaway(event: any): void {\nif (event.srcElement.tagName === 'A') {\nreturn;...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fixed compiler errors
1
chore
null
217,922
30.05.2019 22:37:23
-7,200
a2bdea7b8357061d15d792cea70a1fc1aac7bc5e
chore: last try for fix today on circleci
[ { "change_type": "MODIFY", "diff": "@@ -139,7 +139,7 @@ jobs:\nat: ~/\n- run:\nname: Deploying SSR fucntions\n- command: npm run build:ssr:ci && ls -lisah ./functions && ./node_modules/.bin/firebase deploy -P beta --only functions --token \"$FIREBASE_TOKEN\"\n+ command: npm run build:ssr:ci && ls -lisah ./f...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: last try for fix today on circleci
1
chore
null
531,793
30.05.2019 23:08:13
-3,600
3839d531e486e54a2aad14f792d37a198d21ac9b
fix(ui): allow any string as silence author, not just email Alertmanager doesn't restrict this field, so no need to force an email there. Fixes
[ { "change_type": "MODIFY", "diff": "@@ -162,9 +162,9 @@ const SilenceForm = observer(\n</TooltipWrapper>\n<DateTimeSelect silenceFormStore={silenceFormStore} />\n<IconInput\n- type=\"email\"\n+ type=\"text\"\nautoComplete=\"email\"\n- placeholder=\"Author email\"\n+ placeholder=\"Author\"\nicon={faUser}\nva...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): allow any string as silence author, not just email Alertmanager doesn't restrict this field, so no need to force an email there. Fixes #741
1
fix
ui
71,371
30.05.2019 23:09:11
-7,200
04d37af74bc3a5f34f4700136228d078c31932c6
chore(cloudformation): use Node.js 10.x runtime in AwsCustomResource This runtime offers a more recent version of the AWS SDK for JavaScript (2.437.0)
[ { "change_type": "MODIFY", "diff": "@@ -77,7 +77,7 @@ call can be extracted and used in other constructs/resources (creating a real\nCloudFormation dependency using `Fn::GetAtt` under the hood).\nThe physical id of the custom resource can be specified or derived from the data\n-return by the API call.\n+ret...
TypeScript
Apache License 2.0
aws/aws-cdk
chore(cloudformation): use Node.js 10.x runtime in AwsCustomResource (#2690) This runtime offers a more recent version of the AWS SDK for JavaScript (2.437.0)
1
chore
cloudformation
724,105
31.05.2019 00:38:17
-7,200
f1566981ae18a2b0848ccfc61916c099e79596cb
chore: Rename selector to selectorString in ErrorWrapper
[ { "change_type": "MODIFY", "diff": "import { throwError } from 'shared/util'\nexport default class ErrorWrapper implements BaseWrapper {\n- selector: string\n+ selectorString: string\n- constructor(selector: string) {\n- this.selector = selector\n+ constructor(selectorString: string) {\n+ this.selectorStrin...
JavaScript
MIT License
vuejs/vue-test-utils
chore: Rename selector to selectorString in ErrorWrapper
1
chore
null
724,105
31.05.2019 00:50:23
-7,200
46f884e37654c983a798cd532b786705158b053d
chore: Build selector string in ErrorWrapper
[ { "change_type": "MODIFY", "diff": "// @flow\nimport { throwError } from 'shared/util'\n+import { REF_SELECTOR } from 'shared/consts'\n+import { getSelectorType } from './get-selector'\n+\n+const buildSelectorString = (selector: Selector) => {\n+ if (getSelectorType(selector) === REF_SELECTOR) {\n+ return `...
JavaScript
MIT License
vuejs/vue-test-utils
chore: Build selector string in ErrorWrapper
1
chore
null
71,741
31.05.2019 01:03:36
25,200
394b7963f02dfcd17a888201171adb51ce508388
chore(stepfunctions-tasks): typos in test names
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,7 @@ beforeEach(() => {\n});\n});\n-test('Canot create a Farkate task with a fargate-incompatible task definition', () => {\n+test('Cannot create a Fargate task with a fargate-incompatible task definition', () => {\nconst taskDefinition = new ecs.TaskDefiniti...
TypeScript
Apache License 2.0
aws/aws-cdk
chore(stepfunctions-tasks): typos in test names (#2695)
1
chore
stepfunctions-tasks
127,946
31.05.2019 01:23:50
-10,800
868cd56d06e55873c1ef8202184ff501c2693bfb
feat(account): verify email view
[ { "change_type": "MODIFY", "diff": "-<svg width=\"1024\" height=\"168\" viewBox=\"0 0 1024 168\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n-<mask id=\"mask0\" mask-type=\"alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"1024\" height=\"168\...
TypeScript
MIT License
coingaming/moon-design
feat(account): verify email view
1
feat
account
127,946
31.05.2019 01:34:49
-10,800
5c24b3c63a82bd50d15ac270e849bad47dabc173
feat(account): dummy logic for email verification
[ { "change_type": "MODIFY", "diff": "@@ -4,7 +4,7 @@ import { WalletsView } from './cashier/views/wallets/view';\nimport { MyBetsView } from './cashier/views/my-bets/view';\nimport { DepositView } from './cashier/views/deposit/view';\nimport { DepositViewBTC } from './cashier/views/deposit/view-btc';\n-impor...
TypeScript
MIT License
coingaming/moon-design
feat(account): dummy logic for email verification
1
feat
account
447,440
31.05.2019 01:39:51
18,000
ecced8b10d31f9f852e37346fe3f71357486e543
styles: fix RadioButtonGroup styles in mobile
[ { "change_type": "MODIFY", "diff": "align-items: center; }\n.rainbow-radio-button-group_container {\n- position: relative; }\n+ position: relative;\n+ flex-direction: column; }\n.rainbow-radio-button-group_label {\ndisplay: inline-block;\ncolor: #576574;\nfont-size: 0.875rem;\nline-height: 1.5;\n- margin: 0...
JavaScript
MIT License
nexxtway/react-rainbow
styles: fix RadioButtonGroup styles in mobile (#770)
1
styles
null
127,946
31.05.2019 01:41:11
-10,800
a70dd71841904665fdf56816e088726768a9a906
fix(account): fix max-width for verify email text block
[ { "change_type": "MODIFY", "diff": "@@ -46,7 +46,7 @@ export const VerifyEmailTextContainer = styled.div({\ntextAlign: 'center',\n[mq(breakpoints.medium)]: {\ntextAlign: 'left',\n- maxWidth: rem(530),\n+ maxWidth: rem(500),\n},\n});\n", "new_path": "portals/user-portal-components/src/settings/components...
TypeScript
MIT License
coingaming/moon-design
fix(account): fix max-width for verify email text block
1
fix
account
815,605
31.05.2019 03:26:43
0
8e41474bbe971de345392df4548858b009148dea
fix: input serialized size calculation
[ { "change_type": "MODIFY", "diff": "@@ -230,7 +230,7 @@ impl CellInput {\n}\npub fn serialized_size(&self) -> usize {\n- self.previous_output.serialized_size() + mem::size_of::<u64>() + mem::size_of::<u64>()\n+ self.previous_output.serialized_size() + mem::size_of::<u64>()\n}\n}\n", "new_path": "core/sr...
Rust
MIT License
nervosnetwork/ckb
fix: input serialized size calculation
1
fix
null
791,704
31.05.2019 07:10:40
25,200
559579c4d79aa3051ae5723a5f5e9aaf763e8116
misc: release script should commit with format vX.Y.Z
[ { "change_type": "MODIFY", "diff": "@@ -64,7 +64,7 @@ if [[ $(echo \"$NEW_CONTRIBUTORS\" | wc -l) -gt 1 ]]; then\nfi\ngit add changelog.md lighthouse-core/test/results/ proto/\n-git commit -m \"$NEW_VERSION\"\n+git commit -m \"v$NEW_VERSION\"\necho \"Version bump commit ready on the ${TXT_BOLD}$BRANCH_NAME$...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc: release script should commit with format vX.Y.Z (#9090)
1
misc
null
217,922
31.05.2019 09:03:39
-7,200
4ee8e1d9fd5d41852d8d61deff447e217c14a8fd
chore: trying to use cp instead of copyfiles
[ { "change_type": "MODIFY", "diff": "},\n\"balanced-match\": {\n\"version\": \"1.0.0\",\n- \"bundled\": true\n+ \"bundled\": true,\n+ \"optional\": true\n},\n\"brace-expansion\": {\n\"version\": \"1.1.11\",\n\"bundled\": true,\n+ \"optional\": true,\n\"requires\": {\n\"balanced-match\": \"^1.0.0\",\n\"concat...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: trying to use cp instead of copyfiles
1
chore
null
71,465
31.05.2019 09:15:56
-3,600
3d4adfb598788b25d0b186143de732498a0606e2
docs(staging): mention that "no-staging" flag is needed for SAM CLI debugging Related
[ { "change_type": "MODIFY", "diff": "@@ -45,7 +45,7 @@ async function parseCommandLineArguments() {\n.option('asset-metadata', { type: 'boolean', desc: 'Include \"aws:asset:*\" CloudFormation metadata for resources that user assets (enabled by default)', default: true })\n.option('role-arn', { type: 'string'...
TypeScript
Apache License 2.0
aws/aws-cdk
docs(staging): mention that "no-staging" flag is needed for SAM CLI debugging (#2702) Related #2586
1
docs
staging
104,818
31.05.2019 09:59:43
-7,200
05888c79c7e033c2dffe0c9afc0cfc580786ad99
test(dashboardheader): add date picker example
[ { "change_type": "MODIFY", "diff": "import React from 'react';\nimport { text } from '@storybook/addon-knobs';\nimport { storiesOf } from '@storybook/react';\n+import { action } from '@storybook/addon-actions';\n+import { DatePicker, DatePickerInput } from 'carbon-components-react';\nimport DashboardHeader ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(dashboardheader): add date picker example
1
test
dashboardheader
815,598
31.05.2019 10:18:15
-28,800
f895ec1d7b29efd2af559fa465335b79ed105b3c
chore: fix typo in github-changelog.py
[ { "change_type": "MODIFY", "diff": "@@ -108,11 +108,11 @@ for line in logs.splitlines():\nif is_breaking:\nbreaking_banner = \", \".join(\nl for l in labels if l.startswith('b:'))\n- if \"breaking change\" not in body.lower():\n+ if breaking_banner != \"\" or \"breaking change\" not in body.lower():\nif bre...
Rust
MIT License
nervosnetwork/ckb
chore: fix typo in github-changelog.py
1
chore
null
711,597
31.05.2019 10:24:02
-7,200
6f5a8d04ea0807f675783954d5115df83edc22b4
test(core): Support env variable to facilitate debugging e2e tests
[ { "change_type": "MODIFY", "diff": "@@ -101,6 +101,8 @@ The e2e tests are located in [`/packages/core/e2e`](./packages/core/e2e). Each t\nsqlite files will be generated in the `__data__` directory. These files are used to speed up subsequent runs of the e2e tests. They can be freely deleted\nand will be re-...
TypeScript
MIT License
vendure-ecommerce/vendure
test(core): Support env variable to facilitate debugging e2e tests
1
test
core
711,597
31.05.2019 10:51:26
-7,200
d8d5fcc799cab75670df18a204787dc277ec2ef8
feat(core): Enforce unique slugs for Products Closes
[ { "change_type": "MODIFY", "diff": "@@ -260,14 +260,71 @@ describe('Product resolver', () => {\n{\nlanguageCode: LanguageCode.en,\nname: 'en Mashed Potato',\n- slug: 'A (very) nice potato!!1',\n+ slug: 'A (very) nice potato!!',\ndescription: 'A blob of mashed potato',\n},\n],\n},\n},\n);\n- expect(result.up...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(core): Enforce unique slugs for Products Closes #103
1
feat
core
711,597
31.05.2019 11:12:00
-7,200
2cecb39b67068a4add8d0d2139c5c9ae67d657c2
feat(admin-ui): Update slug in product detail form after save
[ { "change_type": "MODIFY", "diff": "@@ -18,7 +18,9 @@ import {\nProductWithVariants,\nTaxCategory,\nUpdateProductInput,\n+ UpdateProductMutation,\nUpdateProductVariantInput,\n+ UpdateProductVariantsMutation,\n} from '../../../common/generated-types';\nimport { createUpdatedTranslatable } from '../../../comm...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(admin-ui): Update slug in product detail form after save
1
feat
admin-ui
306,385
31.05.2019 11:36:02
-7,200
667eb81f036f4b7b5f245b30c9edd588a11aa860
fix(field): formats value after validation update
[ { "change_type": "MODIFY", "diff": "@@ -28,9 +28,9 @@ import { FormatMixin } from './FormatMixin.js';\n// TODO: Consider exporting as FieldMixin\n// eslint-disable-next-line max-len, no-unused-vars\nexport class LionField extends FormControlMixin(\n- ValidateMixin(\nInteractionStateMixin(\nFormatMixin(\n+ V...
JavaScript
MIT License
ing-bank/lion
fix(field): formats value after validation update
1
fix
field
815,609
31.05.2019 11:40:14
-28,800
652aa2090a2c52f638b63311882db914cc510c02
chore: apply new log macros to chain
[ { "change_type": "MODIFY", "diff": "@@ -405,6 +405,7 @@ dependencies = [\n\"ckb-chain-spec 0.14.0-pre\",\n\"ckb-core 0.14.0-pre\",\n\"ckb-db 0.14.0-pre\",\n+ \"ckb-logger 0.14.0-pre\",\n\"ckb-notify 0.14.0-pre\",\n\"ckb-shared 0.14.0-pre\",\n\"ckb-store 0.14.0-pre\",\n@@ -417,7 +418,6 @@ dependencies = [\n\...
Rust
MIT License
nervosnetwork/ckb
chore: apply new log macros to chain
1
chore
null
815,609
31.05.2019 11:51:28
-28,800
ea6f7280fb95b7dbae2f24fd7aa7a48194efb53d
chore: apply new log macros to miner
[ { "change_type": "MODIFY", "diff": "@@ -532,6 +532,7 @@ dependencies = [\n\"ckb-chain-spec 0.14.0-pre\",\n\"ckb-core 0.14.0-pre\",\n\"ckb-db 0.14.0-pre\",\n+ \"ckb-logger 0.14.0-pre\",\n\"ckb-notify 0.14.0-pre\",\n\"ckb-pow 0.14.0-pre\",\n\"ckb-shared 0.14.0-pre\",\n@@ -547,7 +548,6 @@ dependencies = [\n\"f...
Rust
MIT License
nervosnetwork/ckb
chore: apply new log macros to miner
1
chore
null
815,609
31.05.2019 12:08:55
-28,800
ade371a214993f207cfd3cd1ad8f326741919326
chore: apply new log macros to rpc & notify
[ { "change_type": "MODIFY", "diff": "@@ -601,9 +601,9 @@ name = \"ckb-notify\"\nversion = \"0.14.0-pre\"\ndependencies = [\n\"ckb-core 0.14.0-pre\",\n+ \"ckb-logger 0.14.0-pre\",\n\"crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"fnv 1.0.6 (registry+https://github.com/ru...
Rust
MIT License
nervosnetwork/ckb
chore: apply new log macros to rpc & notify
1
chore
null
127,976
31.05.2019 12:32:15
-10,800
3b6d67a04ca8a9c5b15d7187b262078c23598860
feat: export components to user-portal-components
[ { "change_type": "MODIFY", "diff": "export * from './cashier/components';\nexport * from './nav/components';\nexport * from './settings/components';\n+export * from './myBets/components';\n", "new_path": "portals/user-portal-components/src/index.tsx", "old_path": "portals/user-portal-components/src/...
TypeScript
MIT License
coingaming/moon-design
feat: export components to user-portal-components
1
feat
null
127,946
31.05.2019 13:10:57
-10,800
bfb96f3133d88131eaba222cacdfd5d7b54dd4d0
fix(TextInput): fix the colors & font-size
[ { "change_type": "MODIFY", "diff": "@@ -23,6 +23,7 @@ export const Input = styled.input<InputProps>(props => [\npadding: rem(inputSpacing),\nappearance: 'none',\nfont: 'inherit',\n+ fontSize: rem(16),\ncolor: inputColors.text,\nbackgroundColor: inputColors.background,\nborder: inputBorder,\n", "new_path...
TypeScript
MIT License
coingaming/moon-design
fix(TextInput): fix the colors & font-size
1
fix
TextInput
104,818
31.05.2019 13:20:55
-7,200
008e2ea2bb5e02744f8c12f43341e5d6d9fab084
fix(dashboard): don't animate on initial render
[ { "change_type": "MODIFY", "diff": "@@ -3,6 +3,7 @@ import { Responsive, WidthProvider } from 'react-grid-layout';\nimport PropTypes from 'prop-types';\nimport 'react-grid-layout/css/styles.css';\nimport 'react-resizable/css/styles.css';\n+import styled from 'styled-components';\nimport find from 'lodash/fi...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(dashboard): don't animate on initial render
1
fix
dashboard
815,609
31.05.2019 13:35:19
-28,800
958b2c3886f01dafdc6ef58148f1aaebf626281c
chore: apply new log macros to verification & shared
[ { "change_type": "MODIFY", "diff": "@@ -729,6 +729,7 @@ dependencies = [\n\"ckb-chain-spec 0.14.0-pre\",\n\"ckb-core 0.14.0-pre\",\n\"ckb-db 0.14.0-pre\",\n+ \"ckb-logger 0.14.0-pre\",\n\"ckb-notify 0.14.0-pre\",\n\"ckb-protocol 0.14.0-pre\",\n\"ckb-script 0.14.0-pre\",\n@@ -741,7 +742,6 @@ dependencies = [...
Rust
MIT License
nervosnetwork/ckb
chore: apply new log macros to verification & shared
1
chore
null
127,976
31.05.2019 13:35:25
-10,800
fbeb1122251e4cce2798e5d872b9c4b4ad675b84
chore: swap consts with spacings
[ { "change_type": "MODIFY", "diff": "+import * as React from 'react';\nimport styled from '@emotion/styled';\nimport { breakpoints, colors } from '@heathmont/sportsbet-tokens';\nimport { inlineSVG, mq, spacing } from '@heathmont/sportsbet-utils';\nimport { IconChevronDown, IconChevronUp } from '@heathmont/sp...
TypeScript
MIT License
coingaming/moon-design
chore: swap consts with spacings
1
chore
null
104,818
31.05.2019 13:53:46
-7,200
79b3e7e698e8aeb73c55c107535cabca31793b2b
fix(yarn): node-sass upgrade
[ { "change_type": "MODIFY", "diff": "\"carbon-components\": \"^9.84.14\",\n\"carbon-components-react\": \"^6.108.0\",\n\"carbon-icons\": \"^7.x\",\n- \"react\": \"^16.8.3\",\n- \"d3\": \"^3.5.17\"\n+ \"d3\": \"^3.5.17\",\n+ \"react\": \"^16.8.3\"\n},\n\"devDependencies\": {\n\"@babel/core\": \"^7.0.0\",\n\"j...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(yarn): node-sass upgrade
1
fix
yarn
815,609
31.05.2019 13:54:29
-28,800
ea1bcf15a773c6e34b4ee2afcfca29358be11b4c
chore: apply new log macros to util/* & ckb-bin
[ { "change_type": "MODIFY", "diff": "@@ -328,7 +328,6 @@ dependencies = [\n\"ckb-store 0.14.0-pre\",\n\"ckb-sync 0.14.0-pre\",\n\"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)\",\n- \"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"sentry 0.15.5 (registry+https:/...
Rust
MIT License
nervosnetwork/ckb
chore: apply new log macros to util/* & ckb-bin
1
chore
null
447,440
31.05.2019 14:00:00
18,000
bae7e2da178941c62c88e0350bbea515ec74c86e
styles: when selcted day styles in calendar
[ { "change_type": "MODIFY", "diff": "line-height: 36px;\nheight: 36px;\nwidth: 36px;\n- margin: auto;\n+ margin: 6px auto;\npadding: 0;\nborder: none;\noutline: none; }\n", "new_path": "src/components/Calendar/styles.css", "old_path": "src/components/Calendar/styles.css" }, { "change_type": "...
JavaScript
MIT License
nexxtway/react-rainbow
styles: when selcted day styles in calendar (#772)
1
styles
null
127,946
31.05.2019 14:07:59
-10,800
aa7d59e769b76edc88953f025d660d603e355546
fix(Select): left padding for select placeholder
[ { "change_type": "MODIFY", "diff": "@@ -27,6 +27,7 @@ const SelectInput = styled(Input.withComponent('select'))({\ncolor: inputColors.label,\nbackgroundImage: inlineSVG(<IconChevronDown color={inputColors.icon} />),\npadding: spacing('small'),\n+ paddingLeft: spacing(),\npaddingRight: rem(selectIconOffset),...
TypeScript
MIT License
coingaming/moon-design
fix(Select): left padding for select placeholder
1
fix
Select
127,977
31.05.2019 14:11:13
-10,800
c78a492da79eeccb873683358fa522e4421f8b4f
chore: working on inital docker assets release
[ { "change_type": "ADD", "diff": "+FROM nginx:alpine\n+\n+RUN mkdir -p /config\n+ADD .config/nginx/nginx.conf.tmpl /config/nginx.conf.tmpl\n+ADD .config/nginx/server.conf /etc/nginx/conf.d/server.conf\n+\n+COPY design/assets/static /usr/share/nginx/html\n+COPY .config/nginx/entrypoint.sh /usr/local/bin/\n+\n...
TypeScript
MIT License
coingaming/moon-design
chore: working on inital docker assets release
1
chore
null
749,537
31.05.2019 14:14:48
25,200
fee899154e3575757a808124f6ff79467abfe309
fix(build): update umd webpack config for prop-types typo
[ { "change_type": "MODIFY", "diff": "@@ -41,8 +41,8 @@ module.exports = merge(baseConfig, {\nroot: 'ReactDOM'\n},\n'prop-types': {\n- commonjs: 'rop-types',\n- commonjs2: 'rop-types',\n+ commonjs: 'prop-types',\n+ commonjs2: 'prop-types',\namd: 'prop-types',\nroot: 'PropTypes'\n},\n", "new_path": "utils/...
TypeScript
Apache License 2.0
zendeskgarden/react-components
fix(build): update umd webpack config for prop-types typo (#346)
1
fix
build
127,946
31.05.2019 14:16:34
-10,800
16def882790148491a81d1e36f299a7f237b39e6
fix(FileInput): fix label
[ { "change_type": "MODIFY", "diff": "@@ -3,6 +3,7 @@ import * as React from 'react';\nimport { jsx } from '@emotion/core';\nimport styled from '@emotion/styled';\nimport hideVisually from 'polished/lib/mixins/hideVisually';\n+import rem from 'polished/lib/helpers/rem';\nimport { colors } from '@heathmont/spo...
TypeScript
MIT License
coingaming/moon-design
fix(FileInput): fix label
1
fix
FileInput
127,946
31.05.2019 14:18:14
-10,800
3d2b63489ab3bfb67f5f2043639e9d384ca2d771
test(FileInput,Select): update snapshots
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,8 @@ exports[`File Input renders a file input with custom label 1`] = `\nArray [\n.emotion-0 {\ndisplay: block;\n+ font-size: 1rem;\n+ color: #8697a2;\nmargin-bottom: 0.5rem;\n}\n@@ -93,6 +95,8 @@ exports[`File Input renders a file input with custom label and p...
TypeScript
MIT License
coingaming/moon-design
test(FileInput,Select): update snapshots
1
test
FileInput,Select
815,609
31.05.2019 14:20:00
-28,800
dfc944a1ce7be98285cd34a45772e671f1434a6c
chore: update the log filter template in configuration
[ { "change_type": "MODIFY", "diff": "@@ -16,7 +16,7 @@ spec = \"specs/dev.toml\" # {{\n[logger]\nfilter = \"info\" # {{\n-# integration => filter = \"info,network=trace,sync=debug,relay=debug\"\n+# integration => filter = \"info,ckb-network=trace,ckb-sync=debug,ckb-relay=debug\"\n# }}\ncolor = true\nlog_to_f...
Rust
MIT License
nervosnetwork/ckb
chore: update the log filter template in configuration
1
chore
null
104,844
31.05.2019 14:26:06
14,400
4919f71502bf809ad7cc4ca533211b3178a03f9c
chore(navigationbar): fix issues stemming from v10 upgrade
[ { "change_type": "MODIFY", "diff": "@@ -12,6 +12,10 @@ $feature-flags: (\n@import '~carbon-components/scss/globals/scss/styles';\n+.storybook-container {\n+ background: #f9fafb;\n+}\n+\n.storybook-container > div {\nwidth: 100%;\n}\n@@ -32,11 +36,3 @@ $feature-flags: (\n.bx--header__global .bx--header__menu...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(navigationbar): fix issues stemming from v10 upgrade
1
chore
navigationbar
71,327
31.05.2019 14:32:52
-7,200
08a2852edf1bc7add7396590f33d2048d7b583ee
fix(route53): support zone roots as record names
[ { "change_type": "MODIFY", "diff": "@@ -11,7 +11,7 @@ import { IHostedZone } from '../hosted-zone-ref';\n*\n* @returns <ul>\n* <li>If +providedName+ ends with a +.+, use it as-is</li>\n- * <li>If +providedName+ ends with +zoneName+, append a trailing +.+</li>\n+ * <li>If +providedName+ ends with or equals +...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(route53): support zone roots as record names (#2705)
1
fix
route53
127,977
31.05.2019 15:03:43
-10,800
8ef3f2b85a004dadfd90ef4cb718b9fd4fc9cac0
feat: added building asset docker container
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,6 @@ FROM nginx:alpine\nRUN mkdir -p /config\nADD .config/nginx/nginx.conf.tmpl /config/nginx.conf.tmpl\n-ADD .config/nginx/server.conf /etc/nginx/conf.d/server.conf\nCOPY design/assets/static /usr/share/nginx/html\nCOPY .config/nginx/entrypoint.sh /usr/local/b...
TypeScript
MIT License
coingaming/moon-design
feat: added building asset docker container
1
feat
null
724,105
31.05.2019 15:03:50
-7,200
4ec04f05042fd0197c4219490add8c5525e97710
feat: Add selector property to BaseWrapper interface
[ { "change_type": "MODIFY", "diff": "@@ -28,6 +28,7 @@ declare interface BaseWrapper {\nname(): string | void;\nprops(key?: string): { [name: string]: any } | any | void;\ntext(): string | void;\n+ selector: Selector | void;\nsetData(data: Object): void;\nsetMethods(methods: Object): void;\nsetValue(value: a...
JavaScript
MIT License
vuejs/vue-test-utils
feat: Add selector property to BaseWrapper interface
1
feat
null
815,609
31.05.2019 15:05:02
-28,800
ed9c7abb7c946441b627b11213722b6e87203974
feat: add a transaction error `InsufficientCellCapacity`
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,7 @@ use ckb_util::LowerHexOption;\nuse faster_hex::hex_string;\nuse hash::blake2b_256;\nuse numext_fixed_hash::{h256, H256};\n-use occupied_capacity::{HasOccupiedCapacity, OccupiedCapacity};\n+use occupied_capacity::{HasOccupiedCapacity, OccupiedCapacity, Resu...
Rust
MIT License
nervosnetwork/ckb
feat: add a transaction error `InsufficientCellCapacity`
1
feat
null
724,105
31.05.2019 15:05:25
-7,200
aab0bf5d06fa10bc2f7cc4c6acc9cc695d03a2c6
feat: Store selector in Wrapper.find() / .findAll()
[ { "change_type": "MODIFY", "diff": "@@ -20,6 +20,10 @@ A `Wrapper` is an object that contains a mounted component or vnode and methods\n`Boolean` (read-only): True if component is attached to document when rendered.\n+### `selector`\n+\n+`Selector`: the selector that was used by [`find()`](./find.md) or [`f...
JavaScript
MIT License
vuejs/vue-test-utils
feat: Store selector in Wrapper.find() / .findAll()
1
feat
null
724,105
31.05.2019 15:07:18
-7,200
ff4e0fcedddeb5b0f0e295cf6bafd3ce4d855d7d
chore: Remove selectorString from ErrorWrapper
[ { "change_type": "MODIFY", "diff": "@@ -18,60 +18,56 @@ const buildSelectorString = (selector: Selector) => {\nexport default class ErrorWrapper implements BaseWrapper {\nselector: Selector\n- selectorString: string\nconstructor(selector: Selector) {\nthis.selector = selector\n- this.selectorString = buildS...
JavaScript
MIT License
vuejs/vue-test-utils
chore: Remove selectorString from ErrorWrapper
1
chore
null
217,922
31.05.2019 15:25:03
-7,200
5e17ad945bdaf8a5707e589786a220020d0090e0
feat(simulator): you can now add actions to a rotation even if craft is complete
[ { "change_type": "MODIFY", "diff": "</div>\n</nz-card>\n- <nz-card [class.failed]=\"actionFailed\" class=\"actions-card\">\n+ <nz-card [class.failed]=\"actionFailed\" [class.success]=\"resultData.simulation.success\" class=\"actions-card\">\n<i nz-icon type=\"exclamation-circle\" theme=\"twotone\" [twoToneC...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(simulator): you can now add actions to a rotation even if craft is complete
1
feat
simulator
127,946
31.05.2019 15:28:30
-10,800
3a6b410c879243be12b9e0192c23a5690a27c282
test(CardBalance): update test & snapshots
[ { "change_type": "MODIFY", "diff": "@@ -40,22 +40,6 @@ exports[`CardBalance renders correctly 1`] = `\nline-height: 1.25rem;\n}\n-.emotion-4 {\n- margin-top: 0;\n- color: #8697a2;\n- font-size: 0.9375rem;\n- line-height: 1.25rem;\n-}\n-\n-.emotion-4:first-child {\n- margin-top: 0;\n-}\n-\n-.emotion-3 {\n- -...
TypeScript
MIT License
coingaming/moon-design
test(CardBalance): update test & snapshots
1
test
CardBalance