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
866,415
05.12.2019 16:55:22
18,000
7b3959ee6a13a7b0cf1c767aa10070fd424efafb
fix(featureflag): add dds prefix to pattern-react feature flags
[ { "change_type": "MODIFY", "diff": "@@ -2,4 +2,13 @@ PATTERNS_STORYBOOK_SOURCEMAPS=<Boolean to turn on/off sourcemaps in storybook>\n#Feature Flags\nDDS_FLAGS_ALL=<Boolean flag to turn on all feature flags>\n-LEADSPACE=<Boolean flag to turn on/off the lead space pattern>\n+\n+DDS_CARD_ARRAY=<Boolean flag to...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(featureflag): add dds prefix to pattern-react feature flags
1
fix
featureflag
815,598
05.12.2019 16:56:20
-28,800
78b4f11ff0b890a5068e44854ffe6d9197fdd404
chore: add workflow to backport bug fixings
[ { "change_type": "ADD", "diff": "+name: Backport\n+on:\n+ pull_request:\n+ types:\n+ - closed\n+ - labeled\n+\n+jobs:\n+ backport:\n+ runs-on: ubuntu-18.04\n+ name: Backport\n+ steps:\n+ - name: Backport\n+ uses: tibdex/backport@v1.0.0\n+ with:\n+ github_token: ${{ secrets.GITHUB_TOKEN }}\n", "new_path"...
Rust
MIT License
nervosnetwork/ckb
chore: add workflow to backport bug fixings
1
chore
null
866,415
05.12.2019 17:00:32
18,000
69a4e267e7b31f69842d4ea7d2d111cef7e5b951
fix(storybook): reference correct theme prop value
[ { "change_type": "MODIFY", "diff": "@@ -136,7 +136,7 @@ if (DDS_CARDS_WITHOUT_IMAGES) {\nreturn (\n<CardsWithoutImages\ncardsGroup={object('cardsGroup', cardsGroup)}\n- theme={select('theme', themes, themes['g10'])}\n+ theme={select('theme', themes, themes.g10)}\n/>\n);\n});\n", "new_path": "packages/pa...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(storybook): reference correct theme prop value
1
fix
storybook
217,922
05.12.2019 17:39:19
-3,600
0d946350f9c466554da10df566508681428dd3c8
feat(layout): added an option to show first available vendor on each item of the list
[ { "change_type": "MODIFY", "diff": "@@ -20,6 +20,8 @@ export class ListLayout extends DataModel {\npublic showCraftableAmount = false;\n+ public showVendors = false;\n+\npublic showInventory = false;\npublic recipeOrder: LayoutRowOrder = LayoutRowOrder.ASC;\n", "new_path": "apps/client/src/app/core/layo...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(layout): added an option to show first available vendor on each item of the list Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
feat
layout
688,462
05.12.2019 17:54:13
-3,600
c6562a4157d06eb91412ad9531c3ccfe434ca5f2
docs(Select): add example for autoFocus
[ { "change_type": "ADD", "diff": "+import React, { useState } from 'react'\n+import { Select, Button, Container } from '@toptal/picasso'\n+\n+const SelectCustomOptionExample = () => {\n+ const [value, setValue] = useState()\n+ const [show, setShow] = useState(false)\n+\n+ const handleChange = event => {\n+ s...
TypeScript
MIT License
toptal/picasso
docs(Select): add example for autoFocus (#940)
1
docs
Select
217,922
05.12.2019 17:57:14
-3,600
0f1808fab7471b749b69407bd8b495d60bc4de2a
fix(db): changed bite times display for easier reading (graph was useless)
[ { "change_type": "MODIFY", "diff": "</nz-card>\n</div>\n<div fxLayout=\"row wrap\" fxLayoutGap=\"24px\" fxLayout.lt-md=\"column\">\n- <nz-card\n- nzTitle=\"{{'DB.FISH.Bite_time' | translate}} ({{data.biteTimeChart.min | number: '1.0-1'}}s - {{data.biteTimeChart.max | number: '1.0-1'}}s)\"\n- [style.width.px...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(db): changed bite times display for easier reading (graph was useless) Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
fix
db
217,922
05.12.2019 18:01:22
-3,600
9122f227b725c6883157f59a5308c1c0e7864b4d
feat(db): automatically select spot if there's only one available
[ { "change_type": "MODIFY", "diff": "@@ -280,7 +280,12 @@ export class FishComponent implements OnInit {\nminGathering: result.data.fishingresults_aggregate.aggregate.min.gathering\n};\n}),\n- tap(() => this.loading = false)\n+ tap((data) => {\n+ if (this.spot$.value === -1 && data.everySpots.length === 1) {...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(db): automatically select spot if there's only one available Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
feat
db
217,922
05.12.2019 18:02:44
-3,600
2e1341bd0935ce2f521c4339930c03116c874652
chore: oops, fix for previous commit
[ { "change_type": "MODIFY", "diff": "@@ -282,7 +282,7 @@ export class FishComponent implements OnInit {\n}),\ntap((data) => {\nif (this.spot$.value === -1 && data.everySpots.length === 1) {\n- this.spot$.next(data.everySpots[0].id);\n+ this.spot$.next(data.everySpots[0].spot);\n}\nthis.loading = false;\n})\n...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: oops, fix for previous commit Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
chore
null
688,413
05.12.2019 18:11:46
-7,200
6a9d2a02f8c692e3b061a026d3cc5d748e9f2263
fix: fix tree-shaking
[ { "change_type": "MODIFY", "diff": "\"git add\"\n]\n},\n- \"sideEffects\": [\n- \"**/styles.ts\",\n- \"**/styles.js\"\n- ],\n\"config\": {\n\"commitizen\": {\n\"path\": \"./node_modules/cz-conventional-changelog\"\n", "new_path": "package.json", "old_path": "package.json" }, { "change_type":...
TypeScript
MIT License
toptal/picasso
fix: fix tree-shaking (#941)
1
fix
null
366,920
05.12.2019 18:15:32
-32,400
4a4733778feb1cd566d87ff531036c597f5c4603
style: Change story style
[ { "change_type": "MODIFY", "diff": "import { storiesOf } from '@storybook/react'\n+import { action } from '@storybook/addon-actions'\nimport React from 'react'\nimport styled from 'styled-components'\n+import { Base } from '../Base'\nimport { AccordionPanel } from './AccordionPanel'\nimport { AccordionPanel...
TypeScript
MIT License
kufu/smarthr-ui
style: Change story style
1
style
null
366,920
05.12.2019 18:31:42
-32,400
fdff6818c74f2c63e17a3a5264a115c756135e99
docs: Update story
[ { "change_type": "MODIFY", "diff": "import { storiesOf } from '@storybook/react'\nimport { action } from '@storybook/addon-actions'\n-import React from 'react'\n+import React, { useState } from 'react'\nimport styled from 'styled-components'\nimport { Base } from '../Base'\n@@ -10,11 +10,54 @@ import { Acco...
TypeScript
MIT License
kufu/smarthr-ui
docs: Update story
1
docs
null
438,927
05.12.2019 18:37:35
-32,400
49704e0147bada54d32ec4b1a3e0b42c2e6690fe
feat(plugin): Intent to ship bubblecompare plugin set bubble min/max radius, focus expand scale implement new feature with plugin Close
[ { "change_type": "MODIFY", "diff": "@@ -2582,9 +2582,52 @@ d3.select(\".chart_area\")\n}\n}]\n}\n+ },\n+ BubbleCompare: {\n+ description: \"Compare data 3-dimensional ways: x-axis, y-axis &s bubble-size.<br>&rarr; <b>Value x:</b> population density / <b>Value y:</b> Area / <b>Value z:</b> population.<br><br...
TypeScript
MIT License
naver/billboard.js
feat(plugin): Intent to ship bubblecompare plugin - set bubble min/max radius, focus expand scale - implement new feature with plugin Close #1153
1
feat
plugin
366,920
05.12.2019 18:39:56
-32,400
8190c7ccef1366959c331e93f9805e548fb95a70
feat: Update behavior of defaultExpanded
[ { "change_type": "MODIFY", "diff": "-import React, { useCallback, useState } from 'react'\n+import React, { useCallback, useState, useEffect } from 'react'\nimport { getNewExpandedItems } from './accordionPanelHelper'\nimport { flatArrayToMap } from '../../libs/map'\n@@ -39,6 +39,12 @@ export const Accordio...
TypeScript
MIT License
kufu/smarthr-ui
feat: Update behavior of defaultExpanded
1
feat
null
531,793
05.12.2019 19:10:56
0
ae7b097630c6bd6d8c067af287826ba42c71c4e0
fix(backend): correct pre-release version parsing for alertmanager upstreams Fixes
[ { "change_type": "ADD", "diff": "+package alertmanager\n+\n+import (\n+ \"testing\"\n+\n+ \"github.com/prymitive/karma/internal/mapper\"\n+)\n+\n+func TestGetAlertMapper(t *testing.T) {\n+ versions := []string{\n+ \"0.4.0\",\n+ \"0.4.1\",\n+ \"0.4.99\",\n+ \"0.5.0-alpha.0\",\n+ \"0.5.0-beta.0\",\n+ \"0.10\"...
TypeScript
Apache License 2.0
prymitive/karma
fix(backend): correct pre-release version parsing for alertmanager upstreams Fixes #1229
1
fix
backend
217,922
05.12.2019 19:11:14
-3,600
7592fe1e981ed92e6b7dbea26110e67824948e56
chore: better icons for node types
[ { "change_type": "MODIFY", "diff": "{\nx:node.coords[0],\ny: node.coords[1],\n- iconImg: node.type | nodeTypeIcon,\n+ iconImg: node.type | nodeTypeIcon: (node.time || []).length > 0,\niconType: 'img'\n}\n]\"></app-map>\n", "new_path": "apps/client/src/app/pages/list-details/item-details/gathered-by/gath...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: better icons for node types Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
chore
null
815,590
05.12.2019 19:33:00
-28,800
bf1f130505062fdb08e778afa1cce17d94a115a0
refactor: move main chain shortcut to get_ancestor
[ { "change_type": "MODIFY", "diff": "@@ -945,6 +945,13 @@ impl SyncSnapshot {\n}\npub fn get_ancestor(&self, base: &Byte32, number: BlockNumber) -> Option<core::HeaderView> {\n+ // shortcut to return a ancestor block\n+ if self.store().is_main_chain(&base) {\n+ return self\n+ .store()\n+ .get_block_hash(numb...
Rust
MIT License
nervosnetwork/ckb
refactor: move main chain shortcut to get_ancestor
1
refactor
null
67,516
05.12.2019 19:46:32
-3,600
855f996d324751e7986c20c0ae9b30e2d493fef2
test(validation): wip
[ { "change_type": "MODIFY", "diff": "import { customElement } from '@aurelia/runtime';\nimport template from './app.html';\n+import { IValidationControllerFactory, IValidationController, ValidationController } from '@aurelia/validation';\n+import { IContainer } from '@aurelia/kernel';\n@customElement({ name:...
TypeScript
MIT License
aurelia/aurelia
test(validation): wip
1
test
validation
815,590
05.12.2019 20:25:30
-28,800
b27e85c8e2be6a13d08fc9aac7c05c4af8e470de
fix: fetch_random_addrs should be able to return peers addrs
[ { "change_type": "MODIFY", "diff": "@@ -159,11 +159,13 @@ impl PeerStore {\nlet now_ms = faketime::unix_time_as_millis();\nlet addr_expired_ms = now_ms - ADDR_TIMEOUT_MS;\nlet ban_list = self.ban_list.borrow();\n+ let peers = self.peers.borrow();\n// get success connected addrs.\nself.addr_manager\n.fetch_r...
Rust
MIT License
nervosnetwork/ckb
fix: fetch_random_addrs should be able to return peers addrs
1
fix
null
869,315
05.12.2019 20:33:49
-3,600
2992747ff462c40ce471f9d67f5488f7084c9353
feat: add to resfinex quoteVolume and change baseVolume property
[ { "change_type": "MODIFY", "diff": "@@ -14,7 +14,8 @@ module.exports = async () => {\nhigh: parseToFloat(ticker.high),\nlow: parseToFloat(ticker.low),\nclose: parseToFloat(ticker.last),\n- baseVolume: parseToFloat(ticker.volume),\n+ baseVolume: parseToFloat(ticker.volumeBase),\n+ quoteVolume: parseToFloat(t...
JavaScript
MIT License
coinranking/exchanges
feat: add to resfinex quoteVolume and change baseVolume property
1
feat
null
869,315
05.12.2019 20:55:18
-3,600
ea7084e447f68c33cde546353f974f54db6eb716
feat: kyber network driver
[ { "change_type": "MODIFY", "diff": "@@ -126,6 +126,7 @@ exports.korbit = require('./korbit');\nexports.kraken = require('./kraken');\nexports.kucoin = require('./kucoin');\nexports.kuna = require('./kuna');\n+exports.kyber = require('./kyber');\nexports.lakebtc = require('./lakebtc');\nexports.latoken = req...
JavaScript
MIT License
coinranking/exchanges
feat: kyber network driver
1
feat
null
471,553
05.12.2019 21:20:55
-3,600
8ad6d039105b506029ede0f6473e2d1a764b0870
fix(es-dev-server): don't transform non-modules
[ { "change_type": "MODIFY", "diff": "import { html, render } from 'lit-html';\nimport module from './module-features-a.js';\n-window.__importMeta = import.meta.url.endsWith('syntax/module-features.js');\n+window.__importMeta = import.meta.url.indexOf('syntax/module-features.js') > 0;\nwindow.__staticImports ...
JavaScript
MIT License
open-wc/open-wc
fix(es-dev-server): don't transform non-modules (#1067)
1
fix
es-dev-server
869,315
05.12.2019 21:27:22
-3,600
349f887e393fb1fe605badb685f538e3e3bd3d47
feat: init itBit driver
[ { "change_type": "MODIFY", "diff": "@@ -121,6 +121,7 @@ exports.indodax = require('./indodax');\nexports.indoex = require('./indoex');\nexports.instantbitex = require('./instantbitex');\nexports.iqfinex = require('./iqfinex');\n+exports.itbit = require('./itbit');\nexports.kkex = require('./kkex');\nexports...
JavaScript
MIT License
coinranking/exchanges
feat: init itBit driver
1
feat
null
869,315
05.12.2019 21:28:19
-3,600
a26c35907a937eb1f32695098890531bbbd0f978
feat: comment itbit in driver
[ { "change_type": "MODIFY", "diff": "@@ -121,7 +121,7 @@ exports.indodax = require('./indodax');\nexports.indoex = require('./indoex');\nexports.instantbitex = require('./instantbitex');\nexports.iqfinex = require('./iqfinex');\n-exports.itbit = require('./itbit');\n+//exports.itbit = require('./itbit');\nex...
JavaScript
MIT License
coinranking/exchanges
feat: comment itbit in driver
1
feat
null
869,315
05.12.2019 21:30:01
-3,600
48956a12a6bb7ebcd83f4bbb508957acfb2a3849
feat: remove itbit from index.js
[ { "change_type": "MODIFY", "diff": "@@ -121,7 +121,6 @@ exports.indodax = require('./indodax');\nexports.indoex = require('./indoex');\nexports.instantbitex = require('./instantbitex');\nexports.iqfinex = require('./iqfinex');\n-//exports.itbit = require('./itbit');\nexports.kkex = require('./kkex');\nexpor...
JavaScript
MIT License
coinranking/exchanges
feat: remove itbit from index.js
1
feat
null
869,315
05.12.2019 21:41:33
-3,600
84d25fc2a87949ee83675921df42bc90426ea969
feat: cbx driver
[ { "change_type": "ADD", "diff": "+const request = require('../lib/request');\n+const Ticker = require('../models/ticker');\n+const { parseToFloat } = require('../lib/utils.js');\n+\n+module.exports = async () => {\n+ const { data } = await request('https://www.cbx.one/api/v2/tickers');\n+ const tickers = Ob...
JavaScript
MIT License
coinranking/exchanges
feat: cbx driver
1
feat
null
67,516
05.12.2019 22:28:19
-3,600
85cd02ce00f6ed2557f5a23544c4121e1454ccf1
fix(runtime+html): tests
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,8 @@ import {\nMockSignaler,\nMockValueConverter,\nMockBinding,\n- assert\n+ assert,\n+ TestContext\n} from '@aurelia/testing';\nimport {\nAccessKeyedExpression,\n@@ -62,7 +63,8 @@ import {\nTemplateExpression,\nUnaryExpression,\nValueConverterExpression,\n- ...
TypeScript
MIT License
aurelia/aurelia
fix(runtime+html): tests
1
fix
runtime+html
471,470
05.12.2019 22:40:04
-3,600
a71ed9d7162ef3bdddc70ca763f073b8853d31ce
fix(building-rollup): respect output dir for sw.js
[ { "change_type": "ADD", "diff": "+const createDefaultConfig = require('../../modern-config');\n+\n+module.exports = createDefaultConfig({\n+ input: './demo/js/index.html',\n+ outputDir: 'build',\n+});\n", "new_path": "packages/building-rollup/demo/js/rollup.modern.config.outputdir.js", "old_path": n...
JavaScript
MIT License
open-wc/open-wc
fix(building-rollup): respect output dir for sw.js (#1082)
1
fix
building-rollup
743,952
06.12.2019 01:35:27
-3,600
bb0f2eb996fa4e19d330b31a01c2036cafa99a7e
fix: populate positionals when unknown-options-as-args is set Closes
[ { "change_type": "MODIFY", "diff": "@@ -355,6 +355,7 @@ module.exports = function command (yargs, usage, validation, globalMiddleware) {\nconst unparsed = []\nObject.keys(positionalMap).forEach((key) => {\npositionalMap[key].map((value) => {\n+ if (options.configuration['unknown-options-as-args']) options.k...
JavaScript
MIT License
yargs/yargs
fix: populate positionals when unknown-options-as-args is set (#1508) Closes #1444
1
fix
null
67,476
06.12.2019 06:39:01
-3,600
af0e21cda7afd076e94da6cb16b80263a61a0445
chore(controller): remove old code
[ { "change_type": "MODIFY", "diff": "@@ -126,8 +126,6 @@ export class Controller<\npublic location: IRenderLocation<T> | undefined = void 0;\npublic mountStrategy: MountStrategy = MountStrategy.insertBefore;\n- private isHydrated: boolean = false;\n-\npublic constructor(\npublic readonly vmKind: ViewModelKin...
TypeScript
MIT License
aurelia/aurelia
chore(controller): remove old code
1
chore
controller
722,013
06.12.2019 07:37:09
21,600
e9ef693331e87b2e92eafa7981ccac0c79dfdfc5
test(docgen): add export default Vue.extend()
[ { "change_type": "RENAME", "diff": "", "new_path": "packages/vue-docgen-api/tests/components/api/mock.vue", "old_path": "packages/vue-docgen-api/tests/api/mock.vue" }, { "change_type": "RENAME", "diff": "@@ -2,11 +2,9 @@ import * as path from 'path'\nimport { NodePath } from 'ast-types'\...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
test(docgen): add export default Vue.extend()
1
test
docgen
304,879
06.12.2019 08:49:37
25,200
7b03962c551328e0f5b9e16c615c84bad1bf98a8
feat(libflux): add type declarations for builtins This patch adds type declarations for for `runtime`, `slack`, `socket`, `sql`, `system`, and `testing`. This is part of the work addressed in
[ { "change_type": "MODIFY", "diff": "@@ -275,6 +275,27 @@ pub fn builtins() -> Builtins<'static> {\n\"splitRegexp\" => Node::Builtin(\"forall [] (r: regexp, v: string, i: int) -> [string]\"),\n\"getString\" => Node::Builtin(\"forall [] (r: regexp) -> string\"),\n}),\n+ \"runtime\" => Node::Package(maplit::ha...
Go
MIT License
influxdata/flux
feat(libflux): add type declarations for builtins (#2240) This patch adds type declarations for for `runtime`, `slack`, `socket`, `sql`, `system`, and `testing`. This is part of the work addressed in #2229.
1
feat
libflux
304,879
06.12.2019 09:12:15
25,200
58c03358609b11de065af93102c19c8d0c2f1f55
fix(libflux): enable strict mode by default `cargo` doesn't seem to pass `--features` flags to the sub-crates. This patch enables the strict mode by default on the crate.
[ { "change_type": "MODIFY", "diff": "@@ -23,7 +23,7 @@ export GO_TEST_FLAGS=\nexport GO_GENERATE=go generate $(GO_ARGS)\nexport GO_VET=env GO111MODULE=on go vet $(GO_ARGS)\nexport CARGO=cargo\n-export CARGO_ARGS=--features strict\n+export CARGO_ARGS=\ndefine go_deps\n$(shell env GO111MODULE=on go list -f \"{...
Go
MIT License
influxdata/flux
fix(libflux): enable strict mode by default (#2236) `cargo` doesn't seem to pass `--features` flags to the sub-crates. This patch enables the strict mode by default on the crate.
1
fix
libflux
679,908
06.12.2019 09:59:58
18,000
54b5c7bbc394484d8bdca32cd81e356bac14a859
minor(csp): remove hardcoded log statement at completion of Channel.consume.
[ { "change_type": "MODIFY", "diff": "@@ -434,7 +434,6 @@ export class Channel<T> implements IReadWriteableChannel<T> {\nwhile (((x = null), (x = await this.read())) !== undefined) {\nawait fn(x);\n}\n- console.log(this.id, \"done\");\n})();\n}\n", "new_path": "packages/csp/src/channel.ts", "old_path"...
TypeScript
Apache License 2.0
thi-ng/umbrella
minor(csp): remove hardcoded log statement at completion of Channel.consume.
1
minor
csp
866,394
06.12.2019 10:23:06
18,000
5e9517f535cea46b07938d9ca8feac204d28db10
chore(security): update for serialize-javascript for security patch
[ { "change_type": "MODIFY", "diff": "\"sass-loader\": \"7.2.0\",\n\"semver\": \"6.3.0\",\n\"style-loader\": \"1.0.0\",\n- \"terser-webpack-plugin\": \"1.4.1\",\n+ \"terser-webpack-plugin\": \"2.2.2\",\n\"ts-pnp\": \"1.1.4\",\n\"url-loader\": \"2.1.0\",\n\"webpack\": \"4.41.0\",\n", "new_path": "packages/...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(security): update for serialize-javascript for security patch
1
chore
security
866,390
06.12.2019 10:29:32
18,000
0a7d8983acc897eeecf1f5465b10c59f4d34a769
fix(pattern): added additional autoid
[ { "change_type": "MODIFY", "diff": "@@ -106,7 +106,9 @@ const LeadSpace = ({\n</div>\n<div className={`${prefix}--leadspace__content`}>\n{copy && (\n- <div className={`${prefix}--leadspace__row`}>\n+ <div\n+ data-autoid={`${stablePrefix}--leadspace__row`}\n+ className={`${prefix}--leadspace__row`}>\n<p clas...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(pattern): added additional autoid
1
fix
pattern
942,571
06.12.2019 10:32:13
28,800
e8c0ce9ea434c224a49e65f465d79bbe915225f5
docs: Update incorrect story category for deprecated CSS buttons
[ { "change_type": "MODIFY", "diff": "@@ -175,7 +175,7 @@ storiesOf('Components|Buttons/Button/CSS/Text', module)\n</div>\n));\n-storiesOf('CSS/Button/Deprecated', module)\n+storiesOf('Components|Buttons/Button/CSS/Deprecated', module)\n.addDecorator(withReadme(README))\n.add('Primary', () => (\n<div classNam...
TypeScript
Apache License 2.0
workday/canvas-kit
docs: Update incorrect story category for deprecated CSS buttons (#355)
1
docs
null
366,961
06.12.2019 10:38:06
-32,400
dcfac49c867b92ac53021c0d6db11db51c425713
feat(icon): Add fa-chevron-*, fa-copy, and fa-trash-*
[ { "change_type": "MODIFY", "diff": "@@ -30,12 +30,19 @@ const icons: Array<Props['name']> = [\n'fa-chart-pie',\n'fa-check',\n'fa-check-circle',\n+ 'fa-chevron-circle-down',\n+ 'fa-chevron-circle-left',\n+ 'fa-chevron-circle-right',\n+ 'fa-chevron-circle-up',\n+ 'fa-chevron-down',\n'fa-chevron-left',\n'fa-ch...
TypeScript
MIT License
kufu/smarthr-ui
feat(icon): Add fa-chevron-*, fa-copy, and fa-trash-*
1
feat
icon
791,724
06.12.2019 11:00:56
28,800
d0f1773c82dd22be5944dc2efe824bc5e003d8ae
core(is-on-https): add filesystem to secure schemes
[ { "change_type": "MODIFY", "diff": "@@ -438,5 +438,18 @@ if (location.search === '') {\nFAIL(no-vulnerable-libraries): Loads a vulnerable JS library -->\n<script src=\"http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js\"></script>\n+<!-- Filesystem URL shouldn't be flagged is-on-https. -->\n+<s...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(is-on-https): add filesystem to secure schemes (#10073)
1
core
is-on-https
217,922
06.12.2019 11:02:24
-3,600
f287a4546c88a2f73b5fa7d71b2e74b53f22cc41
feat(inventory): added armory containers as tracked inventories
[ { "change_type": "MODIFY", "diff": "@@ -25,7 +25,20 @@ export class UserInventory extends DataModel {\nContainerType.PremiumSaddleBag1,\nContainerType.FreeCompanyBag0,\nContainerType.FreeCompanyBag1,\n- ContainerType.FreeCompanyBag2\n+ ContainerType.FreeCompanyBag2,\n+ ContainerType.ArmoryOff,\n+ ContainerT...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(inventory): added armory containers as tracked inventories
1
feat
inventory
401,147
06.12.2019 11:10:27
-19,080
31a52827480547abbdc2027d4e2764d5acd87b0b
feat(core): add text align feature in table component affects:
[ { "change_type": "MODIFY", "diff": "@@ -19,9 +19,10 @@ export const Div = styled('div')``;\nexport const Cell = styled('div')<StyledProps>`\nopacity: ${({ hide }) => (hide ? 0 : 1)};\n- padding: ${({ hide }) => (hide ? '0' : '5px 0px 5px 10px')};\n+ padding: ${({ hide }) => (hide ? '0' : '5px 10px')};\nposi...
TypeScript
MIT License
medly/medly-components
feat(core): add text align feature in table component affects: @medly-components/core
1
feat
core
688,413
06.12.2019 11:27:18
-7,200
c4ba93c66cd96a4e4f685424e0b770a87552ac4b
chore: fix image commit id for picasso docs job
[ { "change_type": "MODIFY", "diff": "@@ -7,6 +7,7 @@ downStreamBuilds = []\nrepoName = 'picasso'\nbuildImageJobName = \"${repoName}-build-image\"\nreleaseDocsJobName = \"${repoName}-docs\"\n+imageCommitId = ''\ndef VERSION\npipeline {\n@@ -60,6 +61,7 @@ pipeline {\nstage('Build image') {\nsteps {\nscript {\n...
TypeScript
MIT License
toptal/picasso
chore: fix image commit id for picasso docs job (#942)
1
chore
null
866,395
06.12.2019 11:41:32
18,000
d36bbce637a73731384041db8f32abe869b6df2c
fix(logo): update masthead logo svg; fixes
[ { "change_type": "ADD", "diff": "Binary files /dev/null and b/.yarn/offline-mirror/babel-plugin-inline-react-svg-1.1.0.tgz differ\n", "new_path": ".yarn/offline-mirror/babel-plugin-inline-react-svg-1.1.0.tgz", "old_path": ".yarn/offline-mirror/babel-plugin-inline-react-svg-1.1.0.tgz" }, { "c...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(logo): update masthead logo svg; fixes #411
1
fix
logo
869,310
06.12.2019 11:52:34
-3,600
6ea398fccfc65b43d7d342393b0d87cd18e0a9ea
improvement(cbx): return undefined instead of null
[ { "change_type": "MODIFY", "diff": "@@ -15,8 +15,8 @@ module.exports = async () => {\nhigh: parseToFloat(ticker.high),\nlow: parseToFloat(ticker.low),\nclose: parseToFloat(ticker.close),\n- bid: ticker.bid ? parseToFloat(ticker.bid.price) : null,\n- ask: ticker.ask ? parseToFloat(ticker.ask.price) : null,\n...
JavaScript
MIT License
coinranking/exchanges
improvement(cbx): return undefined instead of null
1
improvement
cbx
869,310
06.12.2019 11:53:46
-3,600
674e1d2872e057dd99375e30bd28a6075b532147
fix(kyber): fix a small type
[ { "change_type": "MODIFY", "diff": "@@ -15,7 +15,7 @@ module.exports = async () => {\nquote,\nquoteName: ticker.quote_name,\nhigh: parseToFloat(ticker.past_24h_high),\n- low: parseToFloat(ticker.past_24hh_low),\n+ low: parseToFloat(ticker.past_24h_low),\nclose: parseToFloat(ticker.last_traded),\nbid: parseT...
JavaScript
MIT License
coinranking/exchanges
fix(kyber): fix a small type
1
fix
kyber
869,310
06.12.2019 11:56:32
-3,600
943a3f0b28f4ac0c30d4f6dfccba93e64967c3ef
improvement(kyber): check if quote = ETH before using it as quote volume
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,7 @@ module.exports = async () => {\nbid: parseToFloat(ticker.current_bid),\nask: parseToFloat(ticker.current_ask),\nbaseVolume: parseToFloat(ticker.token_24h_volume),\n- quoteVolume: parseToFloat(ticker.eth_24h_volume),\n+ quoteVolume: quote === 'ETH' ? pars...
JavaScript
MIT License
coinranking/exchanges
improvement(kyber): check if quote = ETH before using it as quote volume
1
improvement
kyber
869,310
06.12.2019 11:57:46
-3,600
4612ea37b10a9bc4156c62dc7cb526dc86072971
fix(kyber): invert base and quote Invert base and quote, because it was reversed in the pair parameter
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,8 @@ module.exports = async () => {\nconst markets = tickers.data;\nreturn markets.map((ticker) => {\n- const [base, quote] = ticker.pair.split('_');\n+ const base = ticker.base_symbol;\n+ const quote = ticker.quote_symbol;\nreturn new Ticker({\nbase,\n", "...
JavaScript
MIT License
coinranking/exchanges
fix(kyber): invert base and quote Invert base and quote, because it was reversed in the pair parameter
1
fix
kyber
869,310
06.12.2019 11:58:24
-3,600
3f12515cf2e33d587fb02611e38af2a3696482df
improvement(kyber): include baseReference
[ { "change_type": "MODIFY", "diff": "@@ -13,6 +13,7 @@ module.exports = async () => {\nreturn new Ticker({\nbase,\nbaseName: ticker.base_name,\n+ baseReference: ticker.base_address,\nquote,\nquoteName: ticker.quote_name,\nhigh: parseToFloat(ticker.past_24h_high),\n", "new_path": "drivers/kyber.js", "...
JavaScript
MIT License
coinranking/exchanges
improvement(kyber): include baseReference
1
improvement
kyber
866,395
06.12.2019 12:00:14
18,000
ba7709dc8a89797fa51f9abe2b3aaf3fc6281b04
fix(footer): move footer ibm logo to styles package
[ { "change_type": "MODIFY", "diff": "import React from 'react';\nimport { settings as ddsSettings } from '@carbon/ibmdotcom-utilities';\nimport { settings } from 'carbon-components';\n+import FooterLogo from '../../../../styles/icons/svg/IBM-8bar-logo--h65-white.svg';\nconst { stablePrefix } = ddsSettings;\n...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(footer): move footer ibm logo to styles package
1
fix
footer
942,610
06.12.2019 12:10:38
25,200
e1300ac538be559862e6b273ddb718b95dd41926
fix(text-input): Update type of inputRef Typing the ref as `React.Ref` instead of `React.RefObject` allows the prop to also accept [callback refs](https://reactjs.org/docs/refs-and-the-dom.html#callback-refs). Example use: [![Edit fancy-sea-ryh19](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesan...
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,7 @@ export interface TextInputProps\nextends GrowthBehavior,\nReact.InputHTMLAttributes<HTMLInputElement> {\nerror?: ErrorType;\n- inputRef?: React.RefObject<HTMLInputElement>;\n+ inputRef?: React.Ref<HTMLInputElement>;\n}\nconst Input = styled('input')<Pick<T...
TypeScript
Apache License 2.0
workday/canvas-kit
fix(text-input): Update type of inputRef (#346) Typing the ref as `React.Ref` instead of `React.RefObject` allows the prop to also accept [callback refs](https://reactjs.org/docs/refs-and-the-dom.html#callback-refs). Example use: [![Edit fancy-sea-ryh19](https://codesandbox.io/static/img/play-codesandbox.svg)](htt...
1
fix
text-input
366,931
06.12.2019 12:15:59
-32,400
934687b2414ddbbf219e1eb77823d22f6f6f362c
fix(select): fix selectbox css
[ { "change_type": "MODIFY", "diff": "@@ -76,7 +76,6 @@ const SelectBox = styled.select<{ themes: Theme }>`\nappearance: none;\ncursor: pointer;\ntransition: ${isTouchDevice ? 'none' : `all ${interaction.hover.animation}`};\n- text-align: right;\n&:hover {\nbackground-color: ${palette.hoverColor('#fff')};\n",...
TypeScript
MIT License
kufu/smarthr-ui
fix(select): fix selectbox css (#503)
1
fix
select
127,975
06.12.2019 12:17:51
-7,200
e8b8d939d297be3cbc34b584b8dec56be81947e6
feat: add stars icon for promotions
[ { "change_type": "ADD", "diff": "+<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n+ <path d=\"M10.743 17.3038L6.06544 19.7657C6.02219 19.7884 5.98262 19.8176 5.94806 19.8522C5.80004 20.0002 5.76334 20.2263 5.85696 20.4135L5.95151 20.6027C6.14408 20....
TypeScript
MIT License
coingaming/moon-design
feat: add stars icon for promotions
1
feat
null
304,866
06.12.2019 13:02:30
28,800
73bfb2a74b1e6a5b9e449786a2190d94af6cd9d9
feat(semantic/builtins): add types for some universe builtins This covers builtins in the universe package, from letters I through Z.
[ { "change_type": "MODIFY", "diff": "@@ -24,6 +24,7 @@ pub fn builtins() -> Builtins<'static> {\npkgs: hashmap! {\n\"csv\" => Node::Package(maplit::hashmap! {\n// This is a \"provide exactly one argument\" function\n+ // https://github.com/influxdata/flux/issues/2249\n\"from\" => Node::Builtin(\"forall [t0] ...
Go
MIT License
influxdata/flux
feat(semantic/builtins): add types for some universe builtins (#2244) This covers builtins in the universe package, from letters I through Z.
1
feat
semantic/builtins
711,597
06.12.2019 13:38:55
-3,600
a3afc1b9182cb0d410cee23437b4741e843c60ce
fix(core): Fix error when patching custom fields
[ { "change_type": "MODIFY", "diff": "@@ -60,4 +60,23 @@ describe('patchEntity()', () => {\n},\n});\n});\n+\n+ it('handles missing input customFields', () => {\n+ const entity: any = {\n+ f1: 'f1',\n+ customFields: {\n+ cf1: 'cf1',\n+ cf2: 'cf2',\n+ },\n+ };\n+\n+ const result = patchEntity(entity, { f1: 'foo...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Fix error when patching custom fields
1
fix
core
866,395
06.12.2019 14:49:01
18,000
f5167a2aadec83607bb27139bdeaa6caf01e29b3
fix(babel): update plugin load order
[ { "change_type": "MODIFY", "diff": "@@ -3,12 +3,12 @@ module.exports = {\nplugins: [\n'dev-expression',\n'macros',\n- 'inline-react-svg',\n'@babel/plugin-syntax-dynamic-import',\n'@babel/plugin-syntax-import-meta',\n'@babel/plugin-proposal-class-properties',\n'@babel/plugin-proposal-export-namespace-from',\...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(babel): update plugin load order
1
fix
babel
711,597
06.12.2019 14:57:52
-3,600
b476dcb82cc3968f5e8933a07d0427e214aa0d42
fix(admin-ui): Assign NavMenuSection default permission if not specified
[ { "change_type": "MODIFY", "diff": "@@ -3,6 +3,8 @@ import { ActivatedRoute } from '@angular/router';\nimport { BehaviorSubject, combineLatest, Observable } from 'rxjs';\nimport { map, scan, shareReplay } from 'rxjs/operators';\n+import { Permission } from '../../../common/generated-types';\n+\nimport { Act...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Assign NavMenuSection default permission if not specified
1
fix
admin-ui
401,147
06.12.2019 15:00:28
-19,080
fc86f13a4185c520ed3de12adddefdd4d6844c3e
feat(theme): add roboto font affects:
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,10 @@ export const Basic = () => (\n<Text fullWidth textWeight=\"Light\">\nLorem ipsum dolor sit amet consectetur adipisicing elit.\n</Text>\n- <Text fullWidth textWeight=\"Normal\">\n+ <Text fullWidth textWeight=\"Regular\">\n+ Lorem ipsum dolor sit amet conse...
TypeScript
MIT License
medly/medly-components
feat(theme): add roboto font affects: @medly-components/core, @medly-components/layout, @medly-components/theme
1
feat
theme
866,401
06.12.2019 15:01:29
10,800
c1f37ff6bafec2a0ea47f15f27c70cc468d378ec
fix(component): fixed dark theme class on parent element
[ { "change_type": "MODIFY", "diff": "@@ -12,9 +12,22 @@ import ReactDOM from 'react-dom';\nimport { TableOfContents } from '@carbon/ibmdotcom-react';\nimport '@carbon/ibmdotcom-styles/scss/components/tableofcontents/index.scss';\n+const theme = ''; //Empty for light, g100 for dark\n+\n+const menuItems = [\n+...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(component): fixed dark theme class on parent element
1
fix
component
531,793
06.12.2019 15:30:07
0
a9a7d8fc8dd0092fd723a3a68ed47de2c84eb687
fix(backend): move version logging to include upstream name
[ { "change_type": "MODIFY", "diff": "@@ -80,6 +80,7 @@ func (am *Alertmanager) probeVersion() string {\nif err != nil {\nreturn fakeVersion\n}\n+ log.Infof(\"[%s] Upstream version: %s\", am.Name, version)\nif version == \"0.17.0\" || version == \"0.18.0\" {\nlog.Warningf(\"Alertmanager %s might return incomp...
TypeScript
Apache License 2.0
prymitive/karma
fix(backend): move version logging to include upstream name
1
fix
backend
688,512
06.12.2019 15:32:40
-3,600
eaa69c8ac1f31cc623bcd7ce5a4fc768d836fe65
feat: extend NotificationProvider with createPortal
[ { "change_type": "MODIFY", "diff": "\"@material-ui/icons\": \"4.5.1\",\n\"@toptal/picasso-shared\": \"^1.0.1\",\n\"classnames\": \"^2.2.6\",\n- \"notistack\": \"^0.8.9\",\n+ \"notistack\": \"^0.9.7\",\n\"react-modal-hook\": \"^2.0.0\",\n\"react-router-dom\": \"^5.0.1\",\n\"react-truncate\": \"^2.4.0\"\n", ...
TypeScript
MIT License
toptal/picasso
feat: [BIL-789] extend NotificationProvider with createPortal (#777)
1
feat
null
127,975
06.12.2019 15:41:21
-7,200
cb61f70410add8b1a46581c44055f756371e987a
feat: add starsflag icon for promotions
[ { "change_type": "ADD", "diff": "+<svg width=\"20\" height=\"24\" viewBox=\"0 0 20 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n+ <path d=\"M0 0H20V24L10 21L0 24V0Z\" fill=\"#DE1E7E\" />\n+ <path\n+ d=\"M8.70491 10.1211C8.65642 10.3208 8.51098 10.4206 8.31705 10.4705C7.49285 10.5204 6.86258 10....
TypeScript
MIT License
coingaming/moon-design
feat: add starsflag icon for promotions
1
feat
null
866,395
06.12.2019 15:52:23
18,000
314d85fe4285603e95d23e7715a47481c7296b00
fix(css): remove relative paths for icons
[ { "change_type": "MODIFY", "diff": "import React from 'react';\nimport { settings as ddsSettings } from '@carbon/ibmdotcom-utilities';\nimport { settings } from 'carbon-components';\n-import FooterLogo from '../../../../styles/icons/svg/IBM-8bar-logo--h65-white.svg';\n+import FooterLogo from '@carbon/ibmdot...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(css): remove relative paths for icons
1
fix
css
127,975
06.12.2019 15:53:15
-7,200
76b3e3ae36be6805d24309965903ec2f6f20b3da
fix: make it a square
[ { "change_type": "MODIFY", "diff": "-<svg width=\"20\" height=\"24\" viewBox=\"0 0 20 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n- <path d=\"M0 0H20V24L10 21L0 24V0Z\" fill=\"#DE1E7E\" />\n- <path\n- d=\"M8.70491 10.1211C8.65642 10.3208 8.51098 10.4206 8.31705 10.4705C7.49285 10.5204 6.86258 ...
TypeScript
MIT License
coingaming/moon-design
fix: make it a square
1
fix
null
711,597
06.12.2019 15:55:25
-3,600
337762eeddb2a8a35b42c0c50dff115ae2b8612c
fix(admin-ui): Allow new FacetValues to be added Fixes
[ { "change_type": "MODIFY", "diff": "<tbody>\n<tr\nclass=\"facet-value\"\n- *ngFor=\"let value of values$ | async; let i = index\"\n+ *ngFor=\"let value of values; let i = index\"\n[formGroupName]=\"i\"\n>\n<td class=\"align-middle\">\n<button\ntype=\"button\"\nclass=\"delete-button\"\n- (click)=\"deleteFace...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Allow new FacetValues to be added Fixes #222
1
fix
admin-ui
866,415
06.12.2019 16:00:33
18,000
9eae126052349fd789ba41afb5927150e97ca43d
fix(leadspace-centered): add button styling for correct theme color
[ { "change_type": "MODIFY", "diff": "@@ -8,11 +8,12 @@ import {\nobject,\nboolean,\n} from '@storybook/addon-knobs';\n-import '../../../../../styles/scss/patterns/leadspace-centered/_leadspace-centered.scss';\nimport LeadSpaceCentered from '../LeadSpaceCentered';\nimport readme from '../README.md';\nimport {...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(leadspace-centered): add button styling for correct theme color
1
fix
leadspace-centered
503,940
06.12.2019 16:12:32
18,000
901cb1379b8685c1957fb3575a0de3209846fb48
fix(Pagination): fixed prev arrows active with 0 rows
[ { "change_type": "MODIFY", "diff": "@@ -154,7 +154,7 @@ export class Navigation extends React.Component<NavigationProps, NavigationState\n{!isCompact && (\n<Button\nvariant={ButtonVariant.plain}\n- isDisabled={isDisabled || page === firstPage}\n+ isDisabled={isDisabled || page === firstPage || page === 0}\n...
TypeScript
MIT License
patternfly/patternfly-react
fix(Pagination): fixed prev arrows active with 0 rows (#3384)
1
fix
Pagination
866,415
06.12.2019 16:23:33
18,000
473f7ed46ab23d7baee8b4bb23a0b1227d96f333
fix(leadspace-centered): gradient and button styling tweaks
[ { "change_type": "MODIFY", "diff": ".#{$prefix}--btn {\nposition: relative;\nwidth: 100%;\n+ height: 100%;\n}\n}\n", "new_path": "packages/styles/scss/components/buttongroup/_buttongroup.scss", "old_path": "packages/styles/scss/components/buttongroup/_buttongroup.scss" }, { "change_type": "M...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(leadspace-centered): gradient and button styling tweaks
1
fix
leadspace-centered
866,415
06.12.2019 16:30:37
18,000
0e2920303227e83d74f0fc831fbd8336e7176424
chore(readme): update leadspacecentered readme to include title
[ { "change_type": "MODIFY", "diff": "@@ -25,7 +25,7 @@ import { LeadSpaceCentered } from '@carbon/ibmdotcom-patterns-react';\nimport 'yourapplication.scss';\nfunction App() {\n- return <LeadSpaceCentered />;\n+ return <LeadSpaceCentered title=\"title\" />;\n}\nReactDOM.render(<App />, document.querySelector(...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(readme): update leadspacecentered readme to include title
1
chore
readme
866,390
06.12.2019 16:46:08
18,000
ed052b7e9e4762de18355c253e4bcb5a9d49f261
fix(pattern): updated readme files
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,7 @@ import CardsWithoutImages from '../CardsWithoutImages';\nimport readme from '../README.md';\nif (DDS_CARDS_WITHOUT_IMAGES) {\n- storiesOf('Cards without images', module)\n+ storiesOf('Cards Without Images', module)\n.addDecorator(withKnobs)\n.addParameters...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(pattern): updated readme files
1
fix
pattern
276,989
06.12.2019 16:54:07
10,800
d0ce166603491db3308b7a723ebb30045d057fd3
refactor(yoga): add missings defaultName
[ { "change_type": "MODIFY", "diff": "@@ -51,4 +51,6 @@ const ButtonText = styled(Button)`\n`}\n`;\n+ButtonText.displayName = 'Button.Text';\n+\nexport default ButtonText;\n", "new_path": "packages/yoga/src/Button/web/Text.jsx", "old_path": "packages/yoga/src/Button/web/Text.jsx" }, { "change_...
JavaScript
MIT License
gympass/yoga
refactor(yoga): add missings defaultName
1
refactor
yoga
866,394
06.12.2019 17:10:15
18,000
40cf33a82d5827195fe8be48815af751728557d4
fix(leadspace): fixed leadspace feature flag name in the story
[ { "change_type": "MODIFY", "diff": "@@ -10,9 +10,9 @@ import {\nimport './index.scss';\nimport LeadSpace from '../LeadSpace';\nimport readme from '../README.md';\n-import { LEADSPACE } from '../../../internal/FeatureFlags';\n+import { DDS_LEADSPACE } from '../../../internal/FeatureFlags';\n-if (LEADSPACE) {...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(leadspace): fixed leadspace feature flag name in the story
1
fix
leadspace
866,415
06.12.2019 17:19:59
18,000
6a91e8047de3f5f59ffe3026d3434c2d8943e118
fix(webpack): remove custom css variable flag
[ { "change_type": "MODIFY", "diff": "@@ -70,7 +70,6 @@ const styleLoaders = [\ndata: `\n$feature-flags: (\nui-shell: true,\n- enable-css-custom-properties: true\n);\n$dds-feature-flags: (\ncarbon-expressive: ${useCarbonExpressive},\n", "new_path": "packages/patterns-react/.storybook/webpack.config.js", ...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(webpack): remove custom css variable flag
1
fix
webpack
815,609
06.12.2019 17:23:23
-28,800
deb5d3f4ac3d37edc9a615723efe6b35dc7baa5c
docs: add description of returns for a rpc
[ { "change_type": "MODIFY", "diff": "@@ -658,6 +658,16 @@ Returns increased issuance, miner reward and total transaction fee of a block.\n#### Parameters\nhash - Block hash\n+#### Returns\n+\n+ finalized_at - The hash of the block which finalized\n+ issuance::primary - Primary issuance in this block\n+ issua...
Rust
MIT License
nervosnetwork/ckb
docs: add description of returns for a rpc
1
docs
null
866,401
06.12.2019 17:37:37
10,800
4c0409dec1c7d13fc0e16f748a24fd1fbcbb0ac1
fix(component): readme updated
[ { "change_type": "MODIFY", "diff": "@@ -73,16 +73,25 @@ DDS_TOC=true\n## Props\n| Name | Required | Data Type | Default Value | Description |\n-| ----------- | -------- | --------- | ------------- | -------------------------------------------------------------------------------- |\n+| ----------- | --------...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(component): readme updated
1
fix
component
866,394
06.12.2019 17:45:38
18,000
66730536cee2b73bdc8d9241982f8907aa6c43a3
fix(storybook): configure custom properties from carbon expressive flag
[ { "change_type": "MODIFY", "diff": "@@ -70,7 +70,7 @@ const styleLoaders = [\ndata: `\n$feature-flags: (\nui-shell: true,\n- enable-css-custom-properties: true\n+ enable-css-custom-properties: ${useCarbonExpressive}\n);\n$dds-feature-flags: (\ncarbon-expressive: ${useCarbonExpressive},\n", "new_path": "...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(storybook): configure custom properties from carbon expressive flag
1
fix
storybook
869,315
06.12.2019 18:21:40
-3,600
d07e07b43a104592676e4d32d097bbbd00d4d614
feat: itbit driver
[ { "change_type": "MODIFY", "diff": "@@ -121,6 +121,7 @@ exports.indodax = require('./indodax');\nexports.indoex = require('./indoex');\nexports.instantbitex = require('./instantbitex');\nexports.iqfinex = require('./iqfinex');\n+exports.itbit = require('./itbit');\nexports.kkex = require('./kkex');\nexports...
JavaScript
MIT License
coinranking/exchanges
feat: itbit driver
1
feat
null
67,476
06.12.2019 18:33:18
-3,600
a844ccc0e52f5a8facd6506af659d63d7057e24e
refactor(runtime): rename CustomElementBoilerplate back to RenderContext
[ { "change_type": "MODIFY", "diff": "@@ -14,7 +14,7 @@ import {\nIViewFactory,\nTargetedInstructionType,\nCustomElementDefinition,\n- CustomElementBoilerplate\n+ RenderContext\n} from '@aurelia/runtime';\nimport {\nHTMLTargetedInstruction,\n@@ -63,8 +63,8 @@ export class RenderPlan<T extends INode = Node> {\...
TypeScript
MIT License
aurelia/aurelia
refactor(runtime): rename CustomElementBoilerplate back to RenderContext
1
refactor
runtime
503,918
06.12.2019 18:36:24
-7,200
45049a2e5c082425bc8e70e1341ad77370f37d38
fix(table): rename visible/hiddenOn2Xl to visible/hiddenOn_2xl
[ { "change_type": "MODIFY", "diff": "@@ -802,12 +802,12 @@ class HiddenVisibleBreakpointTable extends React.Component {\ncolumns: [\n{\ntitle: 'Repositories',\n- columnTransforms: [classNames(Visibility.hidden, Visibility.visibleOnMd, Visibility.hiddenOnLg, Visibility.visibleOn2Xl)]\n+ columnTransforms: [cla...
TypeScript
MIT License
patternfly/patternfly-react
fix(table): rename visible/hiddenOn2Xl to visible/hiddenOn_2xl (#3365) Signed-off-by: Boaz Shuster <boaz.shuster.github@gmail.com>
1
fix
table
866,401
06.12.2019 18:41:46
10,800
cc9bc99a61131f57097d3e0c0f22e1a7301c5115
fix(readme): readme updated
[ { "change_type": "MODIFY", "diff": "@@ -73,11 +73,11 @@ DDS_TOC=true\n## Props\n| Name | Required | Data Type | Default Value | Description |\n-| ----------- | -------- | --------- | -------------------------------------------- | ------------------------------------------------------------------------------...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(readme): readme updated
1
fix
readme
266,219
06.12.2019 18:48:08
18,000
1f952b5c5a2246e3a9737ca4abad3371c20f7f8e
test(python): run unit test sessions with 3.8
[ { "change_type": "MODIFY", "diff": "@@ -93,7 +93,7 @@ def default(session):\n)\n-@nox.session(python=[\"2.7\", \"3.5\", \"3.6\", \"3.7\"])\n+@nox.session(python=[\"2.7\", \"3.5\", \"3.6\", \"3.7\", \"3.8\"])\ndef unit(session):\n\"\"\"Run the unit test suite.\"\"\"\ndefault(session)\n", "new_path": "syn...
Python
Apache License 2.0
googleapis/synthtool
test(python): run unit test sessions with 3.8 (#340)
1
test
python
276,946
06.12.2019 19:10:24
10,800
c04df672bb3128e01973a57feac82f8f4e16b8a9
style(yoga/doc): fix some lint warnings
[ { "change_type": "MODIFY", "diff": "/packages/labnative/android/**\n/packages/labnative/ios/**\n/packages/labnative/metro.config.js\n+/packages/doc/content/**\n+/packages/doc/node_modules/**\n", "new_path": ".eslintignore", "old_path": ".eslintignore" }, { "change_type": "MODIFY", "diff"...
JavaScript
MIT License
gympass/yoga
style(yoga/doc): fix some lint warnings
1
style
yoga/doc
471,470
06.12.2019 20:49:30
-3,600
795449de3e49153004626a648bb59e25dc61bba8
feat(create): update linting config
[ { "change_type": "MODIFY", "diff": "},\n\"devDependencies\": {\n\"eslint\": \"^6.1.0\",\n- \"@open-wc/eslint-config\": \"^1.0.0\"\n+ \"@open-wc/eslint-config\": \"^2.0.0\"\n},\n\"eslintConfig\": {\n\"extends\": [\n", "new_path": "packages/create/src/generators/linting-eslint/templates/_package.json", ...
JavaScript
MIT License
open-wc/open-wc
feat(create): update linting config (#1090)
1
feat
create
447,437
06.12.2019 22:10:49
18,000
abd1fe29724df35dae661339acab03c4633efa56
test: add test-case for when unregister child in Picklist test: add test-case for when unregister child in Picklist
[ { "change_type": "MODIFY", "diff": "@@ -6,10 +6,16 @@ const PICKLIST = '#picklist-9';\nconst addNewBuildings = () => $('#button-icon_add-new-buildings').click();\ndescribe('Picklist with PicklistOption changed dynamically', () => {\n- it('should select the new option with keyboard after it is added dynamica...
JavaScript
MIT License
nexxtway/react-rainbow
test: add test-case for when unregister child in Picklist (#1185) test: add test-case for when unregister child in Picklist
1
test
null
151,430
06.12.2019 22:59:08
28,800
52977772e60eea4e81e7ad28833a501f193b76cb
docs: add location of projectToken
[ { "change_type": "MODIFY", "diff": "@@ -173,26 +173,15 @@ Below are additional implementation examples.\n<!-- AUTO-GENERATED-CONTENT:END (PLUGIN_DOCS) -->\n-## Usage\n-Include `analytics` and `@analytics/gosquared` in the source code of your project.\n+## Grabbing your projectToken\n-Initialize analytics wi...
JavaScript
MIT License
davidwells/analytics
docs: add location of projectToken
1
docs
null
151,430
06.12.2019 22:59:34
28,800
5fdbc559763c8f0d84678399f4c2abd548d90434
chore: remove semis
[ { "change_type": "MODIFY", "diff": "@@ -36,7 +36,8 @@ function goSquaredPlugin(pluginConfig = {}) {\nd.src = '//d1l6p2sc9645hc.cloudfront.net/tracker.js'\nq.parentNode.insertBefore(d, q)\n}(window, document, 'script', '_gs'))\n- _gs('set', 'trackLocal', debug);\n+ // Settings https://www.gosquared.com/docs/...
JavaScript
MIT License
davidwells/analytics
chore: remove semis
1
chore
null
151,430
07.12.2019 00:44:56
28,800
e3395b975bf298959c3d8cdba623c1b2c648c897
refactor: add configuration options & update identify
[ { "change_type": "MODIFY", "diff": "/* eslint-disable no-underscore-dangle */\n/* global _gs */\n+const config = {\n+ /* Your GoSquared project token */\n+ projectToken: null,\n+ /* Disable anonymous MTU */\n+ disableAnonymousTraffic: false,\n+ /* Setting this value to true will prevent the visitors' IP add...
JavaScript
MIT License
davidwells/analytics
refactor: add configuration options & update identify
1
refactor
null
67,476
07.12.2019 05:14:10
-3,600
facbe471d23d346f46760b308e83f259347c4120
refactor(runtime): make binding behaviors transient and formalize interceptor api
[ { "change_type": "MODIFY", "diff": "@@ -39,6 +39,8 @@ export interface AttributeBinding extends IConnectableBinding {}\n*/\n@connectable()\nexport class AttributeBinding implements IPartialConnectableBinding {\n+ public interceptor: this = this;\n+\npublic id!: number;\npublic $state: State = State.none;\np...
TypeScript
MIT License
aurelia/aurelia
refactor(runtime): make binding behaviors transient and formalize interceptor api
1
refactor
runtime
67,476
07.12.2019 05:14:33
-3,600
e2effc50c38479a176ca0d5cbb59b42101e65465
refactor(debounce): change to new interceptor api
[ { "change_type": "MODIFY", "diff": "import { LifecycleFlags } from '../../flags';\n-import { IBinding } from '../../lifecycle';\nimport { IScope } from '../../observation';\n-import { bindingBehavior } from '../binding-behavior';\n-import { ITask, IScheduler} from '../../scheduler';\n+import { bindingBehavi...
TypeScript
MIT License
aurelia/aurelia
refactor(debounce): change to new interceptor api
1
refactor
debounce
67,476
07.12.2019 05:14:43
-3,600
f955498e06d694580af3157bacea9c40641e767d
refactor(throttle): change to new interceptor api
[ { "change_type": "MODIFY", "diff": "import { LifecycleFlags } from '../../flags';\n-import { IBinding } from '../../lifecycle';\nimport { IScope } from '../../observation';\n-import { bindingBehavior } from '../binding-behavior';\n-import { ITask, IScheduler, IClock} from '../../scheduler';\n+import { bindi...
TypeScript
MIT License
aurelia/aurelia
refactor(throttle): change to new interceptor api
1
refactor
throttle
67,476
07.12.2019 06:38:25
-3,600
8f0e55193f468b877e0b3e91c25367c766cddec8
chore(all): fix build errors
[ { "change_type": "MODIFY", "diff": "@@ -46,8 +46,11 @@ interface ContentValue {\nconst attributeAliases = new Map([['text', 'textContent'], ['html', 'innerHTML']]);\n+export interface TranslationBinding extends IConnectableBinding {}\n+\n@connectable()\nexport class TranslationBinding implements IPartialCon...
TypeScript
MIT License
aurelia/aurelia
chore(all): fix build errors
1
chore
all
67,476
07.12.2019 06:38:56
-3,600
580b76efaf752f3d918d10b514298bd8cc7559e9
refactor(binding-behavior): integrate interceptors with renderer
[ { "change_type": "MODIFY", "diff": "@@ -13,7 +13,9 @@ import {\nIRenderContext,\nLifecycleFlags,\nMultiInterpolationBinding,\n- PropertyBinding\n+ PropertyBinding,\n+ applyBindingBehavior,\n+ IsBindingBehavior\n} from '@aurelia/runtime';\nimport { AttributeBinding } from './binding/attribute';\nimport { Lis...
TypeScript
MIT License
aurelia/aurelia
refactor(binding-behavior): integrate interceptors with renderer
1
refactor
binding-behavior
866,393
07.12.2019 06:40:55
-32,400
34683ad78577fc7c9b6665fdf1cd3acfc0139134
fix(button): support icon-only buttons
[ { "change_type": "MODIFY", "diff": "import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';\nimport { moduleMetadata } from '@storybook/angular';\n-import baseStory, { defaultStory as baseDefaultStory } from './button-story';\n+import { Add16Module } from '@carbon/icons-angular/lib/add/16';\n+import baseSto...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(button): support icon-only buttons (#207)
1
fix
button
67,476
07.12.2019 06:47:32
-3,600
72c6efdf6048db9ba542aa0f63b7d46fe357fed3
chore(binding-behavior): fix circular reference
[ { "change_type": "MODIFY", "diff": "@@ -21,7 +21,7 @@ import { IScope, ISubscribable, IProxySubscribable } from '../observation';\nimport { IBinding } from '../lifecycle';\nimport { connectable, IConnectableBinding } from '../binding/connectable';\nimport { IObserverLocator } from '../observation/observer-l...
TypeScript
MIT License
aurelia/aurelia
chore(binding-behavior): fix circular reference
1
chore
binding-behavior
67,476
07.12.2019 07:08:38
-3,600
caea68b8535caffa10cd8cb2a55122eaa86a2841
chore(binding-behavior): fix slip-up
[ { "change_type": "MODIFY", "diff": "@@ -127,10 +127,12 @@ export class BindingBehaviorFactory<T extends Constructable = Constructable> {\nconst deps = this.deps;\nswitch (deps.length) {\ncase 0:\n- return new this.Type(binding, expr) as IInterceptableBinding;\ncase 1:\n- return new this.Type(container.get(d...
TypeScript
MIT License
aurelia/aurelia
chore(binding-behavior): fix slip-up
1
chore
binding-behavior
151,430
07.12.2019 11:13:10
28,800
7dd1e077b396d7685f9f02fab5f02a6fa790c14c
docs: add gosquared docs page
[ { "change_type": "ADD", "diff": "+---\n+title: GoSquared\n+description: Using the GoSquared plugin\n+---\n+\n+Integration with [GoSquared](https://www.gosquared.com/) for [analytics](https://www.npmjs.com/package/analytics)\n+\n+GoSquared adds heat mapping, A/B testing, and session recording functionality t...
JavaScript
MIT License
davidwells/analytics
docs: add gosquared docs page
1
docs
null
151,430
07.12.2019 11:17:18
28,800
a9ec429fb15c9b7e2ca096b147d089b31329d735
docs: add gosquared to supported list
[ { "change_type": "MODIFY", "diff": "@@ -202,7 +202,8 @@ var tools = [\n},\n{\n'name': 'gosquared',\n- 'image': 'gosquared.svg'\n+ 'image': 'gosquared.svg',\n+ url: 'https://getanalytics.io/plugins/gosquared/'\n},\n{\n'name': 'heap',\n", "new_path": "site/gatsby-theme-oss-docs/src/components/plugins/inde...
JavaScript
MIT License
davidwells/analytics
docs: add gosquared to supported list
1
docs
null
151,430
07.12.2019 11:23:53
28,800
33973777611efee0230d5095a6d0d4abea9d74c1
docs: add gosquared to site nav & update contents
[ { "change_type": "MODIFY", "diff": "@@ -630,6 +630,7 @@ The `analytics` has a robust plugin system. Here is a list of currently availabl\n- [@analytics/fullstory](https://github.com/DavidWells/analytics/tree/master/packages/analytics-plugin-fullstory) FullStory plugin for 'analytics' module [npm link](https...
JavaScript
MIT License
davidwells/analytics
docs: add gosquared to site nav & update contents
1
docs
null
151,430
07.12.2019 11:39:21
28,800
39c8a2eaa9d2825febbe5c07fbda3cfa6631c801
docs: example add gosquared for testing
[ { "change_type": "MODIFY", "diff": "\"@analytics/google-analytics\": \"file:../../packages/analytics-plugin-google-analytics\",\n\"analytics\": \"file:../../packages/analytics-core\",\n\"@analytics/simple-analytics\": \"file:../../packages/analytics-plugin-simple-analytics\",\n+ \"@analytics/gosquared\": \"...
JavaScript
MIT License
davidwells/analytics
docs: example add gosquared for testing
1
docs
null
151,430
07.12.2019 11:49:32
28,800
d858653156315f5935fe9ee284cc76c7ed44ef4f
chore: add preview deploy script
[ { "change_type": "MODIFY", "diff": "\"build\": \"gatsby build\",\n\"postbuild\": \"node scripts/sitemap.js && cp _redirects public\",\n\"serve\": \"http-server public\",\n- \"deploy\": \"netlify deploy -p --dir public\"\n+ \"deploy\": \"netlify deploy -p --dir public\",\n+ \"deploydev\": \"netlify deploy --...
JavaScript
MIT License
davidwells/analytics
chore: add preview deploy script
1
chore
null
217,922
07.12.2019 13:05:09
-3,600
f499c2735394558c8a44adbd5a1f879524540f10
feat(db): fishing spot pages
[ { "change_type": "MODIFY", "diff": "@@ -31,6 +31,9 @@ import { MapSearchResult } from '../../model/search/map-search-result';\nimport { mapIds } from '../data/sources/map-ids';\nimport { LocalizedDataService } from '../data/localized-data.service';\nimport { requestsWithDelay } from '../rxjs/requests-with-d...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(db): fishing spot pages (#1282)
1
feat
db
217,922
07.12.2019 13:43:50
-3,600
4c73767572e4b65af72252fd248b19e16bdf9e81
fix(desktop): fixed an issue with always on top option not saved properly closes
[ { "change_type": "MODIFY", "diff": "@@ -440,11 +440,12 @@ ipcMain.on('run-update', () => {\n});\nipcMain.on('always-on-top', (event, onTop) => {\n+ config.set('win:alwaysOnTop', onTop);\nwin.setAlwaysOnTop(onTop, 'floating');\n});\nipcMain.on('always-on-top:get', (event) => {\n- event.sender.send('always-on...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(desktop): fixed an issue with always on top option not saved properly closes #1278 Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
fix
desktop