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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
67,494 | 03.12.2019 03:16:12 | -3,600 | 0d080085002a48dee66800f797945f3f3ca95fb1 | refactor(router): add check active to router and goto | [
{
"change_type": "MODIFY",
"diff": "import { ComponentParameters, ComponentAppellation, ViewportHandle } from './interfaces';\nimport { ViewportInstruction } from './viewport-instruction';\n+import { Scope } from './scope';\nexport interface IInstructionResolverOptions {\nseparators?: IRouteSeparators;\n@@ ... | TypeScript | MIT License | aurelia/aurelia | refactor(router): add check active to router and goto | 1 | refactor | router |
67,476 | 03.12.2019 03:16:48 | -3,600 | 2ac35235025f1656514c128c44f4af557c8838c0 | chore(aot): add %eval% boilerplate | [
{
"change_type": "MODIFY",
"diff": "@@ -141,6 +141,9 @@ import {\n$Reflect_set,\n$Reflect_setPrototypeOf,\n} from './globals/reflect';\n+import {\n+ $Eval,\n+} from './globals/eval';\nexport type $True = $Boolean<true>;\nexport type $False = $Boolean<false>;\n@@ -783,7 +786,7 @@ export class Intrinsics impl... | TypeScript | MIT License | aurelia/aurelia | chore(aot): add %eval% boilerplate | 1 | chore | aot |
67,476 | 03.12.2019 03:19:24 | -3,600 | fcdd1219b693adec607bbd10522b979c3af4a275 | chore(aot): add %isFinite% boilerplate | [
{
"change_type": "MODIFY",
"diff": "@@ -144,6 +144,9 @@ import {\nimport {\n$Eval,\n} from './globals/eval';\n+import {\n+ $IsFinite,\n+} from './globals/is-finite';\nexport type $True = $Boolean<true>;\nexport type $False = $Boolean<false>;\n@@ -787,7 +790,7 @@ export class Intrinsics implements IDisposabl... | TypeScript | MIT License | aurelia/aurelia | chore(aot): add %isFinite% boilerplate | 1 | chore | aot |
67,476 | 03.12.2019 03:20:19 | -3,600 | 8668f904b15c0dc83f913317d6f6ace21c3331f4 | chore(aot): fix intrinsic types | [
{
"change_type": "MODIFY",
"diff": "@@ -464,15 +464,15 @@ export class Intrinsics implements IDisposable {\npublic readonly '%Atomics%': $Object<'%Atomics%'>;\npublic readonly '%JSON%': $Object<'%JSON%'>;\npublic readonly '%Math%': $Object<'%Math%'>;\n- public readonly '%Reflect%': $Object<'%Reflect%'>;\n+ ... | TypeScript | MIT License | aurelia/aurelia | chore(aot): fix intrinsic types | 1 | chore | aot |
67,476 | 03.12.2019 03:22:25 | -3,600 | 46a0067290876ae6f87f6080d2f8b72eee774e0a | chore(aot): add %isNaN% boilerplate | [
{
"change_type": "MODIFY",
"diff": "@@ -147,6 +147,9 @@ import {\nimport {\n$IsFinite,\n} from './globals/is-finite';\n+import {\n+ $IsNaN,\n+} from './globals/is-nan';\nexport type $True = $Boolean<true>;\nexport type $False = $Boolean<false>;\n@@ -473,7 +476,7 @@ export class Intrinsics implements IDispos... | TypeScript | MIT License | aurelia/aurelia | chore(aot): add %isNaN% boilerplate | 1 | chore | aot |
67,476 | 03.12.2019 04:08:22 | -3,600 | 6f2d13d689deb5d60188f3f28c5b72690dda9a85 | chore(aot): add %parseFloat% boilerplate | [
{
"change_type": "MODIFY",
"diff": "@@ -150,6 +150,9 @@ import {\nimport {\n$IsNaN,\n} from './globals/is-nan';\n+import {\n+ $ParseFloat,\n+} from './globals/parse-float';\nexport type $True = $Boolean<true>;\nexport type $False = $Boolean<false>;\n@@ -795,7 +798,7 @@ export class Intrinsics implements IDi... | TypeScript | MIT License | aurelia/aurelia | chore(aot): add %parseFloat% boilerplate | 1 | chore | aot |
67,476 | 03.12.2019 04:10:40 | -3,600 | 15ba95a2e0b0cd9aa40073b952761c21da913348 | chore(aot): add %parseInt% boilerplate | [
{
"change_type": "MODIFY",
"diff": "@@ -153,6 +153,9 @@ import {\nimport {\n$ParseFloat,\n} from './globals/parse-float';\n+import {\n+ $ParseInt,\n+} from './globals/parse-int';\nexport type $True = $Boolean<true>;\nexport type $False = $Boolean<false>;\n@@ -480,8 +483,8 @@ export class Intrinsics implemen... | TypeScript | MIT License | aurelia/aurelia | chore(aot): add %parseInt% boilerplate | 1 | chore | aot |
67,476 | 03.12.2019 04:24:59 | -3,600 | b0be91a67c46a8b528ce7b5a9ccdae3446357e69 | chore(aot): add %decodeURI%, %decodeURIComponent%, %encodeURI%, %encodeURIComponent% boilerplate | [
{
"change_type": "MODIFY",
"diff": "@@ -156,6 +156,12 @@ import {\nimport {\n$ParseInt,\n} from './globals/parse-int';\n+import {\n+ $DecodeURI,\n+ $DecodeURIComponent,\n+ $EncodeURI,\n+ $EncodeURIComponent,\n+} from './globals/uri-handling';\nexport type $True = $Boolean<true>;\nexport type $False = $Boole... | TypeScript | MIT License | aurelia/aurelia | chore(aot): add %decodeURI%, %decodeURIComponent%, %encodeURI%, %encodeURIComponent% boilerplate | 1 | chore | aot |
942,593 | 03.12.2019 08:41:09 | 28,800 | 6e66ffa98ee0ba074f5cfec948543508462db403 | chore: Use proper prettier file in configs | [
{
"change_type": "MODIFY",
"diff": "module.exports = {\n- \"arrowParens\": \"avoid\",\n- \"bracketSpacing\": false,\n- \"jsxBracketSameLine\": false,\n- \"printWidth\": 100,\n- \"proseWrap\": \"always\",\n- \"semi\": true,\n- \"singleQuote\": true,\n- \"tabWidth\": 2,\n- \"trailingComma\": \"es5\",\n- \"use... | TypeScript | Apache License 2.0 | workday/canvas-kit | chore: Use proper prettier file in configs (#348) | 1 | chore | null |
104,818 | 03.12.2019 09:44:40 | 21,600 | 336be91a43c5697ba4c6e6da6afad82e2d16bf9c | fix(card): push another fix to trigger a build | [
{
"change_type": "MODIFY",
"diff": "@@ -128,7 +128,7 @@ const defaultProps = {\n/** In editable mode we'll show preview data */\nisEditable: false,\nisExpanded: false,\n- /** only show the content if the card is visible */\n+ /** performance option: only render the content of the card to the ReactDOM if the... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(card): push another fix to trigger a build | 1 | fix | card |
104,844 | 03.12.2019 09:46:41 | 18,000 | fdf0607d66bb4dd160306586b905f62a328099bc | fix(test): change the precommit hook to run test:base | [
{
"change_type": "MODIFY",
"diff": "@@ -86,7 +86,7 @@ Do not use `styled-components`. Any components using it should be refactored to\n## Testing changes\n-An automated unit test bucket runs when you execute `yarn test`.\n+An automated unit test bucket runs when you execute `yarn test:base`.\nBefore every p... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(test): change the precommit hook to run test:base | 1 | fix | test |
889,109 | 03.12.2019 09:58:40 | 28,800 | e6d293eab1294d4e3434dceade1f45b53060767b | feat(samples): add example of including httpRequest metadata in log | [
{
"change_type": "MODIFY",
"diff": "@@ -113,6 +113,7 @@ has instructions for running the samples.\n| Sample | Source Code | Try it |\n| --------------------------- | --------------------------------- | ------ |\n| Fluent | [source code](https://github.com/googleapis/nodejs-logging/blob/master/samples/fluent... | TypeScript | Apache License 2.0 | googleapis/nodejs-logging | feat(samples): add example of including httpRequest metadata in log (#650) | 1 | feat | samples |
276,946 | 03.12.2019 10:06:29 | 10,800 | 02d015c9967453edcd7ae2220be6c3fc0dfa78ae | style(yoga/doc): fixing css order | [
{
"change_type": "MODIFY",
"diff": "@@ -8,19 +8,22 @@ const GlobalStyle = createGlobalStyle(\n}\nhtml, body {\n- color: #666;\n- font-family: 'neue-haas-grotesk-display';\n- letter-spacing: 0.5px;\nheight: 100%;\nmargin: 0;\npadding: 0;\n+\n+ color: #666;\n+ font-family: 'neue-haas-grotesk-display';\n+ lett... | JavaScript | MIT License | gympass/yoga | style(yoga/doc): fixing css order | 1 | style | yoga/doc |
304,902 | 03.12.2019 10:07:21 | 28,800 | f2a06e0426b1d808538f830c982b57a782176f36 | chore(flux): update wasm-bindgen | [
{
"change_type": "MODIFY",
"diff": "@@ -235,7 +235,7 @@ dependencies = [\n\"serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)... | Go | MIT License | influxdata/flux | chore(flux): update wasm-bindgen (#2217) | 1 | chore | flux |
104,871 | 03.12.2019 10:14:58 | 21,600 | cefe9737f1cfc5ef71ce73b63872b5f3204fe8d6 | fix(listcard): add tests converage | [
{
"change_type": "MODIFY",
"diff": "@@ -66,9 +66,7 @@ const ListCard = ({\n)}\n</div>\n{item.extraContent ? (\n- <div className=\"list-card--item--extra-content\">\n- {item.extraContent ? item.extraContent : null}\n- </div>\n+ <div className=\"list-card--item--extra-content\">{item.extraContent}</div>\n) : ... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(listcard): add tests converage | 1 | fix | listcard |
276,946 | 03.12.2019 10:24:17 | 10,800 | aa03cbc123a73647d68e67a79c91d274292fd375 | refactor(yoga/doc): change some spacings in mobile resolution | [
{
"change_type": "MODIFY",
"diff": "@@ -36,7 +36,7 @@ const Item = styled.a(\nheight: auto;\nmargin: 9px 0;\n-\n+ padding: 14px;\n}\n`,\n);\n@@ -65,6 +65,7 @@ const Title = styled.h2`\n@media (max-width: 900px) {\nfont-size: 14px;\n+ margin-bottom: 12px;\n}\n`;\n",
"new_path": "packages/doc/src/componen... | JavaScript | MIT License | gympass/yoga | refactor(yoga/doc): change some spacings in mobile resolution | 1 | refactor | yoga/doc |
276,946 | 03.12.2019 10:29:51 | 10,800 | 0c2059a1cebbf1a2c62e733af96ec5ecd352ced1 | chore(yoga/doc): remove fixed width/height from lotus svg | [
{
"change_type": "MODIFY",
"diff": "-<svg width=\"33\" height=\"20\" viewBox=\"0 0 33 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n+<svg viewBox=\"0 0 33 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path opacity=\"0.3\" d=\"M9.41062 9.38629L0.00567547 8.11133C-0.335833 20.6447 14.... | JavaScript | MIT License | gympass/yoga | chore(yoga/doc): remove fixed width/height from lotus svg | 1 | chore | yoga/doc |
866,415 | 03.12.2019 10:34:11 | 18,000 | 87c1ef2664132049a04f7f6f6b0c31320c3042fa | fix(leadspace-centered): readme and global scss file | [
{
"change_type": "MODIFY",
"diff": "@@ -21,6 +21,7 @@ import React from 'react';\nimport ReactDOM from 'react-dom';\nimport { LeadSpaceCentered } from '@carbon/ibmdotcom-patterns-react';\nimport 'yourapplication.scss';\n+import '@carbon/ibmdotcom-styles/scss/patterns/leadspace-centered/_leadspace-centered.s... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(leadspace-centered): readme and global scss file | 1 | fix | leadspace-centered |
791,707 | 03.12.2019 10:45:11 | -39,600 | f222ca468b6c7a8bb506c7c866191fd0c28b4eb3 | docs(readme): Updated Calibre description | [
{
"change_type": "MODIFY",
"diff": "@@ -281,7 +281,7 @@ yarn type-check\n## Lighthouse Integrations\nThis section details services that have integrated Lighthouse data. If you're working on a cool project integrating Lighthouse and would like to be featured here, file an issue to this repo or tweet at us [@... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | docs(readme): Updated Calibre description (#9985) | 1 | docs | readme |
866,401 | 03.12.2019 10:46:24 | 10,800 | 3b5d8dbfde567fe2ae4012ed36ecbbe3dcfd0cfe | feat(pattern): pictogram-array pattern readme created | [
{
"change_type": "MODIFY",
"diff": "@@ -45,5 +45,5 @@ export const SIMPLELONGFORM =\n*\n* @type {string | boolean}\n*/\n-export const DDS_PICTOGRAMARRAY =\n- process.env.DDS_PICTOGRAMARRAY === 'true' || DDS_FLAGS_ALL || false;\n+export const DDS_PICTOGRAM_ARRAY =\n+ process.env.DDS_PICTOGRAM_ARRAY === 'true... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | feat(pattern): pictogram-array pattern readme created | 1 | feat | pattern |
722,107 | 03.12.2019 10:54:16 | -10,800 | 6a0d287e87e072dfa9561e3dcdd219c47740b499 | refactor(docgen): use extractValuesFromTags in classPropHandler | [
{
"change_type": "MODIFY",
"diff": "import * as bt from '@babel/types'\nimport { NodePath } from 'ast-types'\n-import Documentation, { BlockTag, DocBlockTags, ParamTag } from '../Documentation'\n+import Documentation, { BlockTag, DocBlockTags } from '../Documentation'\nimport getDocblock from '../utils/getD... | TypeScript | MIT License | vue-styleguidist/vue-styleguidist | refactor(docgen): use extractValuesFromTags in classPropHandler | 1 | refactor | docgen |
722,107 | 03.12.2019 10:55:50 | -10,800 | a0763d177078ef44511960c66906602014fe7019 | refactor(docgen): add parse values test classPropHandler | [
{
"change_type": "MODIFY",
"diff": "@@ -103,6 +103,33 @@ describe('propHandler', () => {\nexpect(documentation.getPropDescriptor).toHaveBeenCalledWith('testDescribed')\n})\n+ it('should parse the @values tag as its own', () => {\n+ const src = `\n+ @Component\n+ export default class MyTest {\n+ /**\n+ * col... | TypeScript | MIT License | vue-styleguidist/vue-styleguidist | refactor(docgen): add parse values test classPropHandler | 1 | refactor | docgen |
104,857 | 03.12.2019 11:29:21 | 10,800 | c70ec431de8796731bda457fdebfa49a25ff4000 | fix(rollback): rollback to old card design and new updates | [
{
"change_type": "MODIFY",
"diff": "@@ -5,7 +5,8 @@ import TileGallerySection from './TileGallerySection';\nconst propTypes = {\n/** Component children's to be rendered */\n- children: PropTypes.instanceOf(TileGallerySection).isRequired,\n+ children: PropTypes.arrayOf(PropTypes.shape({ type: PropTypes.oneOf... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(rollback): rollback to old card design and new updates | 1 | fix | rollback |
866,401 | 03.12.2019 11:46:01 | 10,800 | 0a44f097dc7e655877e7bfbd46b8ade9d8802ab9 | feat(pattern): content-array-with-pictograms improved importing method | [
{
"change_type": "MODIFY",
"diff": "@@ -55,7 +55,7 @@ const _renderArray = contentArray =>\ncontentArray.map(contentItem => (\n<PictogramArrayItem\ntitle={contentItem.title}\n- pictogram={contentItem.pictogram}\n+ Pictogram={contentItem.pictogram}\ncopy={contentItem.copy}\nlink={contentItem.link}\n/>\n@@ -7... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | feat(pattern): content-array-with-pictograms improved importing method | 1 | feat | pattern |
104,857 | 03.12.2019 11:51:36 | 10,800 | c22e819ee42e0ac8b73d4bf73f89824a8345a4a5 | fix(description): description content support string/node | [
{
"change_type": "MODIFY",
"diff": "@@ -177,7 +177,7 @@ storiesOf('Watson IoT Experimental|TileGallery', module)\n.add('TileGalleryItem - List', () => (\n<TileGalleryItem\ntitle=\"Test\"\n- description=\"The first one\"\n+ description={<div style={{ backgroundColor: 'black' }}>The first one</div>}\nmode=\"l... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(description): description content support string/node | 1 | fix | description |
104,857 | 03.12.2019 11:53:42 | 10,800 | f7043b709f55fb3fee5e3b3588a9caddf7509875 | fix(logs): remove logs | [
{
"change_type": "MODIFY",
"diff": "@@ -49,7 +49,6 @@ const TileGalleryItem = ({\nonClick,\nclassName,\n}) => {\n- console.log(React.isValidElement(description));\nconst content = (\n<div style={{ display: 'flex', minHeight: '24px' }}>\n{icon}\n",
"new_path": "src/components/TileGallery/TileGalleryItem.... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(logs): remove logs | 1 | fix | logs |
866,396 | 03.12.2019 12:05:39 | 18,000 | 6e964d0f4b8ca1bd14fa52a61ce350b0040ea27d | feat(footer): html of footer is being iterated and api is working | [
{
"change_type": "MODIFY",
"diff": "},\n\"dependencies\": {\n\"@babel/runtime\": \"^7.5.5\",\n+ \"@carbon/ibmdotcom-services\": \"1.2.0-alpha.1070\",\n\"@carbon/ibmdotcom-styles\": \"1.1.2\",\n\"@carbon/ibmdotcom-utilities\": \"1.2.0-alpha.1070\",\n\"window-or-global\": \"^1.0.1\"\n",
"new_path": "packa... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | feat(footer): html of footer is being iterated and api is working | 1 | feat | footer |
866,415 | 03.12.2019 12:12:05 | 18,000 | 3067fd22f02b9e8072a5fa93501fb49748fcbd16 | fix(theme): simple long form theme modifier | [
{
"change_type": "MODIFY",
"diff": "@@ -23,13 +23,13 @@ const { prefix } = settings;\n* Simple long form pattern\n*\n* @param {object} props props object\n- * @param {string} props.title simple long form title\n+ * @param {object} props.theme simple long form theme (g100 | white/default)\n* @param {string} ... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(theme): simple long form theme modifier | 1 | fix | theme |
104,871 | 03.12.2019 12:25:27 | 21,600 | 3d2e0414f143fa988cc454fe5d34fff30e9dc253 | fix(listcard): remove from jest.config.js | [
{
"change_type": "MODIFY",
"diff": "@@ -59,7 +59,6 @@ module.exports = {\nlines: 69,\nfunctions: 77,\n},\n- './src/components/ListCard/ListCard.jsx': { branches: 66 },\n'./src/components/Page/EditPage.jsx': {\nstatements: 64,\nbranches: 50,\n",
"new_path": "jest.config.js",
"old_path": "jest.config.... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(listcard): remove from jest.config.js | 1 | fix | listcard |
791,860 | 03.12.2019 12:37:21 | 28,800 | e8a9ea9fe1b8f727845d6e462e0b8d3c591a3c97 | docs: update plugin list to include all examples | [
{
"change_type": "MODIFY",
"diff": "@@ -363,6 +363,12 @@ Most artifacts will try to represent as truthfully as possible what was observed\n## Examples\n+- [Cinememe Plugin](https://github.com/exterkamp/lighthouse-plugin-cinememe) - Find and reward dank cinememes (5MB+ animated GIFs ;)\n+- [YouTube Embed](ht... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | docs: update plugin list to include all examples (#9917) | 1 | docs | null |
869,315 | 03.12.2019 12:40:40 | -3,600 | 6b1f400acfdbfb005baa63653a38767f3c4a0383 | feat: prizmbit | [
{
"change_type": "MODIFY",
"diff": "@@ -147,6 +147,7 @@ exports.okex = require('./okex');\nexports.openledger = require('./openledger');\nexports.p2pb2b = require('./p2pb2b');\nexports.paymium = require('./paymium');\n+exports.prizmbit = require('./prizmbit');\nexports.poloniex = require('./poloniex');\nexp... | JavaScript | MIT License | coinranking/exchanges | feat: prizmbit | 1 | feat | null |
866,394 | 03.12.2019 12:42:41 | 18,000 | 90cc71d731708c3df45cea9492a478708186956f | fix(expressive): adding additional token sizes and components | [
{
"change_type": "MODIFY",
"diff": "// body-long-01\n--#{$custom-property-prefix}-body-long-01-font-size: 1rem; /* carbon--type-scale(3) */\n- --#{$custom-property-prefix}-body-long-01-line-height: 1.375rem; /* carbon--rem(22px) */\n+ --#{$custom-property-prefix}-body-long-01-line-height: 1.5rem; /* carbon-... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(expressive): adding additional token sizes and components | 1 | fix | expressive |
866,394 | 03.12.2019 13:02:51 | 18,000 | 138b4c8b1ae62dc57408e0d8cff482371742ea84 | fix(expressive): adding additional components sizes | [
{
"change_type": "ADD",
"diff": "+//\n+// Copyright IBM Corp. 2016, 2018\n+//\n+// This source code is licensed under the Apache-2.0 license found in the\n+// LICENSE file in the root directory of this source tree.\n+//\n+\n+@import '@carbon/layout/scss/convert';\n+\n+//-----------------------------\n+// Se... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(expressive): adding additional components sizes | 1 | fix | expressive |
869,318 | 03.12.2019 13:04:35 | 0 | 1749c71a5bedbf008ff9f8b334d2a81ae012c273 | feat(mapping): 3 Waves assets added | [
{
"change_type": "MODIFY",
"diff": "@@ -847,4 +847,19 @@ module.exports = [\nsymbol: 'USDN',\naddress: 'DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p',\n},\n+ {\n+ name: 'USD Neutrino Bond',\n+ symbol: 'USDNB',\n+ address: '975akZBfnMj513U7MZaHKzQrmsEx5aE3wdWKTrHBhbjF',\n+ },\n+ {\n+ name: 'TORcorp',\n+ symb... | JavaScript | MIT License | coinranking/exchanges | feat(mapping): 3 Waves assets added | 1 | feat | mapping |
217,922 | 03.12.2019 13:05:35 | -3,600 | ea2420fb4f8e89081806ffc0822d950c41f25442 | fix(reporter): fix for data reporting by adding version number to the data | [
{
"change_type": "MODIFY",
"diff": "@@ -8,14 +8,19 @@ import { DataReporter } from '../data-reporting/data-reporter';\nimport { DataReporters } from '../data-reporting/data-reporters-index';\nimport { Apollo } from 'apollo-angular';\nimport gql from 'graphql-tag';\n+import { environment } from '../../../env... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(reporter): fix for data reporting by adding version number to the data
Signed-off-by: Supamiu <contact@flavien-normand.fr> | 1 | fix | reporter |
866,415 | 03.12.2019 13:25:30 | 18,000 | 6453c6fe0398308306ed84d0fc88c31457c51a6e | fix(theme): put title prop back in simple long form | [
{
"change_type": "MODIFY",
"diff": "@@ -23,7 +23,8 @@ const { prefix } = settings;\n* Simple long form pattern\n*\n* @param {object} props props object\n- * @param {object} props.theme simple long form theme (g100 | white/default)\n+ * @param {string} props.theme simple long form theme (g100 | white/default... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(theme): put title prop back in simple long form | 1 | fix | theme |
866,415 | 03.12.2019 13:26:37 | 18,000 | f934f074276343aeef3e63b7c6fe5b7855e930ad | chore(theme): update jsdoc for theme func | [
{
"change_type": "MODIFY",
"diff": "@@ -87,7 +87,7 @@ const renderLink = (type, data) => {\n* sets the class name based on link type\n*\n* @param {string} type link type ( iconLink | cardLink )\n- * @returns {string} link type css class names\n+ * @returns {string} theme css class name\n*/\nconst setLinkTyp... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | chore(theme): update jsdoc for theme func | 1 | chore | theme |
866,415 | 03.12.2019 13:29:34 | 18,000 | 07ed10b3321c1c7bc7b225ff6d0bc09defc5496b | chore(theme): update jsdoc for simplelongform | [
{
"change_type": "MODIFY",
"diff": "@@ -26,11 +26,12 @@ const { prefix } = settings;\n* @param {string} props.theme simple long form theme (g100 | white/default)\n* @param {string} props.title simple long form title\n* @param {string} props.copy simple long form short copy to support the title\n+ * @param {... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | chore(theme): update jsdoc for simplelongform | 1 | chore | theme |
217,922 | 03.12.2019 13:30:50 | -3,600 | 27aa33ca8d982b835419f797d04bda394631a396 | fix(solver): fixed a small issue for when worker isn't supported | [
{
"change_type": "MODIFY",
"diff": "@@ -36,7 +36,7 @@ export class SolverPopupComponent implements OnInit {\npublic submit(): void {\nthis.loading = true;\nconst formRaw = this.configForm.getRawValue();\n- if (this.solver.isSupported()) {\n+ if (this.solver && this.solver.isSupported()) {\nthis.solver.solve... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(solver): fixed a small issue for when worker isn't supported
Signed-off-by: Supamiu <contact@flavien-normand.fr> | 1 | fix | solver |
104,857 | 03.12.2019 13:52:09 | 10,800 | e3cf92d084067ee2e069828b1f142f89518d3079 | fix(section): remove padding adding line under text | [
{
"change_type": "MODIFY",
"diff": "}\n.tile-gallery {\n- .accordion {\n+ &--section {\n.#{$prefix}--accordion__title {\nfont-size: $spacing-05;\nfont-weight: bold;\n}\n+ .#{$prefix}--accordion__content {\n+ padding-left: 0;\n+ }\n.#{$prefix}--accordion__item:last-child {\nborder-bottom: none;\n}\nborder-to... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(section): remove padding adding line under text | 1 | fix | section |
276,989 | 03.12.2019 14:02:12 | 10,800 | dd134b7d5f32dc06087328de416dbdae68059747 | chore(yoga/doc): add webpack alias to images, assets and src/components | [
{
"change_type": "MODIFY",
"diff": "@@ -74,3 +74,15 @@ exports.onCreateNode = ({ node, getNode, actions }) => {\n});\n}\n};\n+\n+exports.onCreateWebpackConfig = ({ actions }) => {\n+ actions.setWebpackConfig({\n+ resolve: {\n+ alias: {\n+ components: path.resolve(__dirname, 'src/components'),\n+ assets: pat... | JavaScript | MIT License | gympass/yoga | chore(yoga/doc): add webpack alias to images, assets and src/components | 1 | chore | yoga/doc |
276,989 | 03.12.2019 14:02:44 | 10,800 | 114a554c6ac139a722f2ad79283ef3fedd86c51d | chore(yoga/doc): replace relative paths to webpack aliases | [
{
"change_type": "MODIFY",
"diff": "@@ -7,9 +7,9 @@ import Highlight, { defaultProps } from 'prism-react-renderer';\nimport { hexToRgb } from '@gympass/yoga-common';\nimport githubTheme from 'prism-react-renderer/themes/github';\n-import { CodeSandboxButton } from '..';\n-import CodeIcon from '../../images/... | JavaScript | MIT License | gympass/yoga | chore(yoga/doc): replace relative paths to webpack aliases | 1 | chore | yoga/doc |
869,315 | 03.12.2019 14:08:52 | -3,600 | 199d532be3c09e65c85e38b1b42b664aa018fe78 | feat: tokens.net | [
{
"change_type": "MODIFY",
"diff": "@@ -162,6 +162,7 @@ exports.thoreexchange = require('./thoreexchange');\nexports.tidebit = require('./tidebit');\nexports.tidex = require('./tidex');\nexports.tokenmom = require('./tokenmom');\n+exports.tokens = require('./tokens');\nexports.tokenstore = require('./tokens... | JavaScript | MIT License | coinranking/exchanges | feat: tokens.net | 1 | feat | null |
869,315 | 03.12.2019 14:15:41 | -3,600 | 620a12a319884da02bf576cdab12db0519c35ee4 | feat: tokens - remove if statments inside Ticker object | [
{
"change_type": "MODIFY",
"diff": "@@ -12,8 +12,8 @@ module.exports = async () => {\nconst ticker = data[pair];\nreturn new Ticker({\n- base: currencies[pair] ? currencies[pair].baseCurrency : '',\n- quote: currencies[pair] ? currencies[pair].counterCurrency : '',\n+ base: currencies[pair].baseCurrency,\n+... | JavaScript | MIT License | coinranking/exchanges | feat: tokens - remove if statments inside Ticker object | 1 | feat | null |
104,857 | 03.12.2019 14:18:05 | 10,800 | f8700775b9e7da686ad9fab1a741b2b87c802f83 | chore(test): updates tests for TileGallery | [
{
"change_type": "MODIFY",
"diff": "@@ -20,6 +20,14 @@ describe('TileGallery tests', () => {\n.hasClass('dashboard-pin-list-title')\n).toEqual(true);\n});\n+ test('TileGalleryItem mode list with node description', () => {\n+ const descriptionNode = <div>Test node</div>;\n+ const wrapper = mount(\n+ <TileGal... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | chore(test): updates tests for TileGallery | 1 | chore | test |
217,922 | 03.12.2019 14:20:08 | -3,600 | 80c1ad354ae90b37a15cac67cac9810edf887a2c | fix(desktop): various fixes for sign-in and auto updater | [
{
"change_type": "MODIFY",
"diff": "nz-tooltip target=\"_blank\">\n<i nz-icon nzType=\"question-circle\"></i>\n</a>\n- <div *ngIf=\"(newVersionAvailable$ | async) && platformService.isDesktop() && !downloading\">\n+ <div *ngIf=\"platformService.isDesktop() && !checkingForUpdate && !downloading\">\n<button (... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(desktop): various fixes for sign-in and auto updater
Signed-off-by: Supamiu <contact@flavien-normand.fr>
#1269 | 1 | fix | desktop |
104,857 | 03.12.2019 14:22:10 | 10,800 | cb2d1760c9c2f770f87c6367ffdb4cce2596e5e6 | fix(dependency): fix on circular dependency | [
{
"change_type": "MODIFY",
"diff": "import React from 'react';\nimport PropTypes from 'prop-types';\n-\n-import { Search } from '../../index';\n+import { Search } from 'carbon-components-react';\nconst propTypes = {\n/** i18n strings */\n",
"new_path": "src/components/TileGallery/TileGallerySearch.jsx",... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(dependency): fix on circular dependency | 1 | fix | dependency |
217,922 | 03.12.2019 14:33:02 | -3,600 | 0dcbda623584f9e4ac8fabaaf7ad7903d6155468 | chore: small fix for auto updater | [
{
"change_type": "MODIFY",
"diff": "nz-tooltip target=\"_blank\">\n<i nz-icon nzType=\"question-circle\"></i>\n</a>\n- <div *ngIf=\"platformService.isDesktop() && !checkingForUpdate && !downloading\">\n+ <div *ngIf=\"(newVersionAvailable$ | async ) && platformService.isDesktop() && !checkingForUpdate && !do... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: small fix for auto updater
Signed-off-by: Supamiu <contact@flavien-normand.fr> | 1 | chore | null |
866,401 | 03.12.2019 14:42:55 | 10,800 | a776260ef1c06e46ec661f9a96f61fa7eeb9a80e | fix(pattern): fixed error on pictogram change inside storybook | [
{
"change_type": "MODIFY",
"diff": "@@ -17,9 +17,44 @@ if (DDS_PICTOGRAM_ARRAY) {\n})\n.add('Default', () => {\nconst pictograms = {\n- Desktop: Desktop,\n- Touch: Touch,\n- Pattern: Pattern,\n+ Desktop: 'Desktop',\n+ Touch: 'Touch',\n+ Pattern: 'Pattern',\n+ };\n+\n+ const pictogram1 = select(\n+ 'Element ... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(pattern): fixed error on pictogram change inside storybook | 1 | fix | pattern |
504,019 | 03.12.2019 14:52:49 | 18,000 | 005061506dde5fdf903e93a813b612187d650f51 | fix(FilterSidePanel): pass remaining props to checkbox component
provide remaining props to checkbox component (openshift passes testing properties to
filtersidepanel component) | [
{
"change_type": "MODIFY",
"diff": "@@ -4,7 +4,7 @@ import { Checkbox } from '@patternfly/react-core';\nimport { getUniqueId } from '../../helpers/util';\n-export interface FilterSidePanelCategoryItemProps extends React.HTMLProps<HTMLElement> {\n+export interface FilterSidePanelCategoryItemProps extends Rea... | TypeScript | MIT License | patternfly/patternfly-react | fix(FilterSidePanel): pass remaining props to checkbox component (#3374)
provide remaining props to checkbox component (openshift passes testing properties to
filtersidepanel component) | 1 | fix | FilterSidePanel |
866,415 | 03.12.2019 15:01:09 | 18,000 | f74506fd484994557cfdec8c993b2017474a39c7 | feat(readme): prop description in readme | [
{
"change_type": "MODIFY",
"diff": "@@ -109,19 +109,19 @@ BUTTON_GROUP=true\n> [.env.example](https://github.com/carbon-design-system/ibm-dotcom-library/blob/master/packages/patterns-react/.env.example)\n> for more information\n-## Buttons\n+## Props\n-| Name | Description |\n-| --------- | ----------------... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | feat(readme): prop description in readme | 1 | feat | readme |
104,877 | 03.12.2019 15:05:27 | -28,800 | 9dbc709b29b0a40e161e85f5939b230a0aad6d2a | feat(Breadcrumb): wrap BreadcrumbOverflowItem | [
{
"change_type": "ADD",
"diff": "+import PropTypes from 'prop-types';\n+import React from 'react';\n+import styled from 'styled-components';\n+\n+const StyledDiv = styled.div`\n+ {\n+ .bx--breadcrumb-item {\n+ font-weight: 400;\n+ width: 100%;\n+ height: 100%;\n+ border: none;\n+ display: inline-flex;\n+ al... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(Breadcrumb): wrap BreadcrumbOverflowItem
#719 | 1 | feat | Breadcrumb |
902,122 | 03.12.2019 15:13:29 | 0 | 397734fbf35328a7d65121c93563e7ff25a3fcde | chore(release): v5.18.11 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+## [5.18.11](https://github.com/kikobeats/browserless/compare/v5.18.10...v5.18.11) (2019-12-03)\n+\n+**Note:** Versio... | JavaScript | MIT License | microlinkhq/browserless | chore(release): v5.18.11 | 1 | chore | release |
67,494 | 03.12.2019 15:28:35 | -3,600 | 43f0472b3d01011f838f1c1b258905e2481aaf53 | refactor(router): don't updateNav after navigation | [
{
"change_type": "MODIFY",
"diff": "@@ -512,7 +512,7 @@ export class Router implements IRouter {\nawait Promise.all(updatedViewports.map((value) => value.loadContent()));\nawait this.replacePaths(instruction);\n- this.updateNav();\n+ // this.updateNav();\n// Remove history entry if no history viewports upda... | TypeScript | MIT License | aurelia/aurelia | refactor(router): don't updateNav after navigation | 1 | refactor | router |
866,393 | 03.12.2019 15:31:38 | -32,400 | 7a37ddb6fb74213a982909785e6b33928e3cd378 | chore(build): more work to ship Sass
Refs | [
{
"change_type": "MODIFY",
"diff": "docs/js\nes\nnode_modules\n+scss\nstorybook-static\ntests/coverage\n.vscode\n",
"new_path": ".gitignore",
"old_path": ".gitignore"
},
{
"change_type": "MODIFY",
"diff": "@@ -32,7 +32,7 @@ gulp.task(\n)\n);\ngulp.task('build:sass', build.sass);\n-gulp.t... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | chore(build): more work to ship Sass (#194)
Refs #164. | 1 | chore | build |
866,393 | 03.12.2019 15:36:45 | -32,400 | 12c55b988f5934c4628d2e4df74175948ca35f22 | chore(build): update browserlist
This change updates `browserlist` configurations for ES2015+ compile
target. Notably `ie_mob` is added for exclusion that caused ES5
transpilation in some environments (Parcel-based CodeSandbox examples). | [
{
"change_type": "MODIFY",
"diff": "last 1 version\nFirefox ESR\nnot opera > 0\n+not op_mini > 0\n+not op_mob > 0\nnot android > 0\nnot edge > 0\nnot ie > 0\n+not ie_mob > 0\n",
"new_path": "examples/codesandbox/angular/browserslist",
"old_path": "examples/codesandbox/angular/browserslist"
},
{
... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | chore(build): update browserlist (#189)
This change updates `browserlist` configurations for ES2015+ compile
target. Notably `ie_mob` is added for exclusion that caused ES5
transpilation in some environments (Parcel-based CodeSandbox examples). | 1 | chore | build |
67,494 | 03.12.2019 15:37:16 | -3,600 | b1bd144274ed469c3b3ae94d32598b8fa853ae28 | refactor(router): use controller for goto active | [
{
"change_type": "MODIFY",
"diff": "import { NavigationInstructionResolver } from './../type-resolvers';\n-import { customAttribute, INode, bindable, BindingMode, IDOM, DelegationStrategy, IObserverLocator, LifecycleFlags } from '@aurelia/runtime';\n+import { customAttribute, INode, bindable, BindingMode, I... | TypeScript | MIT License | aurelia/aurelia | refactor(router): use controller for goto active | 1 | refactor | router |
104,818 | 03.12.2019 15:38:40 | 21,600 | fa65d0dd097272670ffb5b23bf482a20887b0d82 | feat(cardrange): simplify range picker UX | [
{
"change_type": "MODIFY",
"diff": "@@ -78,9 +78,10 @@ const CardRangePicker = ({ i18n, width, timeRange: timeRangeProp, onCardAction,\n/>\n{Object.keys(timeBoxLabels)\n.filter(i => i.includes('last'))\n- .map(i => (\n+ .map((i, index) => (\n<OverflowMenuItem\nkey={i}\n+ hasDivider={index === 0}\nonClick={(... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(cardrange): simplify range picker UX | 1 | feat | cardrange |
104,857 | 03.12.2019 15:40:29 | 10,800 | 5d1b79cdefcc21582860f2996d45d0bbfb4df41c | fix(click): fix on correct onClick and test updates | [
{
"change_type": "MODIFY",
"diff": "import React from 'react';\n-import { mount } from 'enzyme';\n+import { mount, shallow } from 'enzyme';\nimport { galleryData } from './TileGallery.story';\nimport TileGalleryItem from './TileGalleryItem';\n@@ -48,10 +48,15 @@ describe('TileGallery tests', () => {\nexpect... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(click): fix on correct onClick and test updates | 1 | fix | click |
866,393 | 03.12.2019 15:43:44 | -32,400 | a89aa25d620304556a874558382a4e0beef82a07 | docs(theme): add theme zoning guide
This change adds a guide for another way of custom styling, which is,
using CSS Custom Properties. This is useful for theme zoning, etc. | [
{
"change_type": "MODIFY",
"diff": "@@ -142,7 +142,7 @@ Vue users can use our components in the same manner as native HTML tags, without\n### Other usage guides\n-- [Using custom styles in components](./docs/custom-style.md)\n+- [Using custom styles in components](./docs/styling.md)\n- [Using `carbon-custom... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | docs(theme): add theme zoning guide (#155)
This change adds a guide for another way of custom styling, which is,
using CSS Custom Properties. This is useful for theme zoning, etc. | 1 | docs | theme |
866,393 | 03.12.2019 15:48:54 | -32,400 | 9f5016a2b56856ae6ccf6d49eb9d4d8a7998ac9c | chore(build): mark sourcemap external | [
{
"change_type": "MODIFY",
"diff": "@@ -173,7 +173,7 @@ module.exports = {\n// Avoids generating `.js` from interface-only `.ts` files\n.pipe(filter(file => stripComments(file.contents.toString(), { sourceType: 'module' }).replace(/\\s/g, '')))\n.on('error', log)\n- .pipe(sourcemaps.write())\n+ .pipe(source... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | chore(build): mark sourcemap external (#195) | 1 | chore | build |
866,415 | 03.12.2019 15:54:45 | 18,000 | f8920a22d03d0b4f57946743f9147c2a2dafaf02 | chore(readme): remove prop from readme and put pattern in index file | [
{
"change_type": "MODIFY",
"diff": "@@ -46,24 +46,13 @@ DDS_LEADSPACE_CENTERED=true\n> [.env.example](https://github.com/carbon-design-system/ibm-dotcom-library/blob/master/packages/patterns-react/.env.example)\n> for more information\n-## Variations\n+## Theme (optional)\n| Name | Description |\n| --------... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | chore(readme): remove prop from readme and put pattern in index file | 1 | chore | readme |
104,844 | 03.12.2019 15:58:01 | 18,000 | 8568fe22219447cfd51c7857192253971ca69ae7 | fix(packagejson): change test script command | [
{
"change_type": "MODIFY",
"diff": "\"prepare\": \"yarn build\",\n\"start\": \"yarn storybook\",\n\"storybook\": \"start-storybook -p 3000 -s public/development\",\n- \"test\": \"cross-env TZ=America/Chicago NODE_OPTIONS='--max-old-space-size=8096' jest --coverage\",\n+ \"test\": \"yarn test:base && yarn te... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(packagejson): change test script command | 1 | fix | packagejson |
104,871 | 03.12.2019 16:00:29 | 21,600 | d1d881bee1e48593e3cb2c595fa4e01821c52ebc | fix(listcard): one more spot in jest.config.jsx | [
{
"change_type": "MODIFY",
"diff": "@@ -9,7 +9,7 @@ module.exports = {\nfunctions: 80,\nlines: 80,\n},\n- './src/components/**/!(ColumnHeaderRow|ColumnHeaderSelect|FilterHeaderRow|TableToolbar|RowActionsCell|RowActionsError|StatefulTable|StatefulTableDetailWizard|CatalogContent|FileDrop|HeaderMenu|Dashboard... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(listcard): one more spot in jest.config.jsx | 1 | fix | listcard |
902,122 | 03.12.2019 16:01:40 | -3,600 | 1cb95c4d3c566c3b462ea07c6f58086e0f96b700 | build: print error message on retry | [
{
"change_type": "MODIFY",
"diff": "@@ -37,8 +37,8 @@ module.exports = ({\nreturn page\n},\n{\n- onFailedAttempt: ({ attemptNumber }) => {\n- debug('createPage:retry', { attemptNumber })\n+ onFailedAttempt: ({ message, attemptNumber }) => {\n+ debug('createPage:retry', { attemptNumber, message })\nreturn re... | JavaScript | MIT License | microlinkhq/browserless | build: print error message on retry | 1 | build | null |
104,818 | 03.12.2019 16:04:02 | 21,600 | 023231ff20dd7f6ce2110179741068edf7759d1e | fix(cardrange): wasn't showing selected timerange | [
{
"change_type": "MODIFY",
"diff": "@@ -33,8 +33,6 @@ export const CardRangePickerPropTypes = {\n]),\n/** callback to handle interactions with the range picker */\nonCardAction: PropTypes.func.isRequired,\n- /** callback to close the overflow menu */\n- onClose: PropTypes.func.isRequired,\n/** set of intern... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(cardrange): wasn't showing selected timerange | 1 | fix | cardrange |
104,963 | 03.12.2019 16:04:51 | -3,600 | 4a0586d9b6b1d3de0df65a1c85045ae8753b2bde | test: add test for cv-list, remove vue id from the component | [
{
"change_type": "ADD",
"diff": "+// Jest Snapshot v1, https://goo.gl/fbAQLP\n+\n+exports[`CvList should render correctly when nested and parent is ordered 1`] = `\n+<ol class=\"cv-list bx--list--ordered\">\n+ <ol data-nested=\"true\" class=\"cv-list bx--list--nested bx--list--ordered\">\n+ <li class=\"cv-l... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-components-vue | test: add test for cv-list, remove vue id from the component (#732) | 1 | test | null |
438,921 | 03.12.2019 16:30:18 | -32,400 | 5225a6323d2d285d2842d7416474caf8ae556709 | chore(demo): Update online editing
Stackblitz has issue on module installation. For temporary solutin, make
import from the packaged build.
[skip ci]
Ref | [
{
"change_type": "MODIFY",
"diff": "@@ -456,8 +456,10 @@ var billboardDemo = {\nvar html = \"<div id='\"+ id +\"'></div>\";\nvar code = {\nimport: [\n+ '// base css',\n'import \"billboard.js/dist/theme/insight.css\";',\n- 'import bb from \"billboard.js\";'\n+ '// Packaged build with d3',\n+ 'import bb from ... | TypeScript | MIT License | naver/billboard.js | chore(demo): Update online editing
Stackblitz has issue on module installation. For temporary solutin, make
import from the packaged build.
[skip ci]
Ref #1140 | 1 | chore | demo |
104,844 | 03.12.2019 16:35:59 | 18,000 | 28357a7732d303ba9b86d2a17d2fbe28d42be1bf | fix(travis): troubleshooting travis | [
{
"change_type": "MODIFY",
"diff": "\"prepare\": \"yarn build\",\n\"start\": \"yarn storybook\",\n\"storybook\": \"start-storybook -p 3000 -s public/development\",\n- \"test\": \"yarn test:base && yarn test:a11y\",\n+ \"test\": \"yarn test:a11y && yarn test:base\",\n\"test:base\": \"cross-env TZ=America/Chi... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(travis): troubleshooting travis | 1 | fix | travis |
866,393 | 03.12.2019 16:56:04 | -32,400 | dd194b0db2eb9c4f850053d2dc82aa6fefc0f6ed | chore(ci): fix reviewdog token | [
{
"change_type": "MODIFY",
"diff": "@@ -15,6 +15,6 @@ jobs:\n- name: eslint\nuses: reviewdog/action-eslint@v1\nwith:\n- github_token: ${{ secrets.GITHUB_TOKEN }}\n+ github_token: ${{ secrets.GH_TOKEN }}\nreporter: github-pr-review\neslint_flags: '**/*.{js,ts,tsx}'\n",
"new_path": ".github/workflows/revi... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | chore(ci): fix reviewdog token (#193) | 1 | chore | ci |
866,390 | 03.12.2019 16:57:28 | 18,000 | bcbcab7635bab7f70dc35396f9bc30710ed780a9 | fix(theme): card without images theme modifier | [
{
"change_type": "MODIFY",
"diff": "@@ -25,7 +25,7 @@ const { prefix } = settings;\n* @param {Array} props.cardsGroup cardsGroup array with title, groupCard and cards properties\n* @returns {object} JSX Object\n*/\n-const CardsWithoutImages = ({ cardsGroup }) => {\n+const CardsWithoutImages = ({ theme, card... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(theme): card without images theme modifier | 1 | fix | theme |
866,390 | 03.12.2019 17:01:54 | 18,000 | 71ffa1be9de2d84ef4388476b622eb7f6560930b | fix: exported patterns alphabetically | [
{
"change_type": "MODIFY",
"diff": "* LICENSE file in the root directory of this source tree.\n*/\n+export * from './CardsWithoutImages';\nexport * from './LeadSpace';\nexport * from './ListSection';\nexport * from './SimpleLongForm';\n-export * from './CardsWithoutImages';\nexport * from './UseCases';\n",
... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix: exported patterns alphabetically | 1 | fix | null |
815,595 | 03.12.2019 17:15:50 | -28,800 | 67e3a60f1f26e324a19fc02369c8845deb7687a6 | chore: Remove useless log | [
{
"change_type": "MODIFY",
"diff": "@@ -60,11 +60,6 @@ impl Spec for ReferenceHeaderMaturity {\nlet tip_epoch = tip_block.epoch();\nlet current = tip_epoch.to_rational();\nif current < threshold {\n- info!(\n- \"Tx is not matured in {} block (epoch = {})\",\n- tip_block.number(),\n- tip_block.epoch()\n- );\... | Rust | MIT License | nervosnetwork/ckb | chore: Remove useless log | 1 | chore | null |
711,597 | 03.12.2019 17:26:40 | -3,600 | cf1d7f1844053e820fcbf46aab71dbc3936c45a5 | feat(admin-ui): Make readonly custom fields readonly in the UI
Also intercepts mutations to remove any readonly custom fields from the input object, which would otherwise cause throw a server error. Relates to | [
{
"change_type": "MODIFY",
"diff": "@@ -68,7 +68,7 @@ export abstract class BaseDetailComponent<Entity extends { id: string; updatedAt\nprotected abstract setFormValues(entity: Entity, languageCode: LanguageCode): void;\nprotected getCustomFieldConfig(key: Exclude<keyof CustomFields, '__typename'>): CustomF... | TypeScript | MIT License | vendure-ecommerce/vendure | feat(admin-ui): Make readonly custom fields readonly in the UI
Also intercepts mutations to remove any readonly custom fields from the input object, which would otherwise cause throw a server error. Relates to #216 | 1 | feat | admin-ui |
531,793 | 03.12.2019 17:26:47 | 0 | b0e74b907f49937b1e37c6e294a6176bcf653cf7 | feat(ci): verify used js licenses in CI | [
{
"change_type": "MODIFY",
"diff": "@@ -56,6 +56,12 @@ jobs:\nafter_success:\n- travis_retry curl -s --connect-timeout 30 --fail https://codecov.io/bash | bash -s -- -F ui\n+ - stage: Lint\n+ name: Verify npm licenses\n+ if: (repo = prymitive/karma AND type != pull_request) OR (fork = true AND type = pull_r... | TypeScript | Apache License 2.0 | prymitive/karma | feat(ci): verify used js licenses in CI | 1 | feat | ci |
304,879 | 03.12.2019 17:38:09 | 25,200 | bbf547d77b7c89507b206dcecbca4a3261979c16 | fix(flux): Address some clippy lints
* fix(flux): Remove unnecessary format lint
This patch removes `unnecessary_format` lint.
* fix(flux): Address cmp_owned lints
This patch addresses the `cmp_owned` clippy lints.
* fix(flux): Address the while_let_loop lint | [
{
"change_type": "MODIFY",
"diff": "// XXX: phummer (2 Dec 2019) - These lints should be removed one at a time\n// until these lines are entirely removed. If lint still must be ignored, it\n// should be at a more specific module or file level.\n-#![allow(clippy::useless_format, clippy::cmp_owned, clippy::wh... | Go | MIT License | influxdata/flux | fix(flux): Address some clippy lints (#2224)
* fix(flux): Remove unnecessary format lint
This patch removes `unnecessary_format` lint.
* fix(flux): Address cmp_owned lints
This patch addresses the `cmp_owned` clippy lints.
* fix(flux): Address the while_let_loop lint | 1 | fix | flux |
866,401 | 03.12.2019 17:40:46 | 10,800 | 2d790309efb658a4551827b6a8b17d748a02d347 | feat(pattern): card-array updates and added readme files | [
{
"change_type": "MODIFY",
"diff": "@@ -45,5 +45,5 @@ export const SIMPLELONGFORM =\n*\n* @type {string | boolean}\n*/\n-export const DDS_CARDARRAY =\n- process.env.DDS_CARDARRAY === 'true' || DDS_FLAGS_ALL || false;\n+export const DDS_CARD_ARRAY =\n+ process.env.DDS_CARD_ARRAY === 'true' || DDS_FLAGS_ALL |... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | feat(pattern): card-array updates and added readme files | 1 | feat | pattern |
438,921 | 03.12.2019 17:44:04 | -32,400 | 2b1582473ac91ea3e38dede789914b144b37b751 | docs(readme): Add note for legacy browser build
[skip ci] | [
{
"change_type": "MODIFY",
"diff": "@@ -176,7 +176,8 @@ import \"billboard.js/dist/theme/insight.css\"\n```\n> **Note**\n-> For migration from C3.js, checkout the [migration guide](https://github.com/naver/billboard.js/wiki/How-to-migrate-from-C3.js%3F)\n+> - For migration from C3.js, checkout the [migratio... | TypeScript | MIT License | naver/billboard.js | docs(readme): Add note for legacy browser build
[skip ci] | 1 | docs | readme |
866,401 | 03.12.2019 17:47:54 | 10,800 | d25d7d774ad14f09b04c826fb2dfc5eb19a0c022 | fix(pattern): Added readme to the story | [
{
"change_type": "MODIFY",
"diff": "@@ -4,16 +4,16 @@ import { DDS_CARD_ARRAY } from '../../../internal/FeatureFlags';\nimport { withKnobs, text } from '@storybook/addon-knobs';\nimport '../../../../../styles/scss/patterns/cardarray/index.scss';\nimport CardArray from '../CardArray';\n-// import readme from... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(pattern): Added readme to the story | 1 | fix | pattern |
815,595 | 03.12.2019 17:48:50 | -28,800 | 21db509f1ae3f634f7fff582b18776938b971210 | chore: Detail receiving messages and handling results | [
{
"change_type": "MODIFY",
"diff": "@@ -131,12 +131,26 @@ impl Relayer {\npeer: PeerIndex,\nmessage: packed::RelayMessageUnionReader<'r>,\n) {\n+ let item_name = message.item_name();\nlet status = self.try_process(Arc::clone(&nc), peer, message);\nif let Some(ban_time) = status.should_ban() {\n- error_targe... | Rust | MIT License | nervosnetwork/ckb | chore: Detail receiving messages and handling results | 1 | chore | null |
217,922 | 03.12.2019 18:01:48 | -3,600 | 0414e329d974c9de7ac254ec6e22ac392746d7f7 | fix(list): fixed an issue with masterbooks button not being reloaded properly | [
{
"change_type": "MODIFY",
"diff": "@@ -12,20 +12,7 @@ import { LocalizedDataService } from '../../../core/data/localized-data.service'\nimport { I18nToolsService } from '../../../core/tools/i18n-tools.service';\nimport { ItemDetailsPopup } from '../item-details/item-details-popup';\nimport { GatheredByComp... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(list): fixed an issue with masterbooks button not being reloaded properly
Signed-off-by: Supamiu <contact@flavien-normand.fr> | 1 | fix | list |
866,390 | 03.12.2019 18:20:17 | 18,000 | 8f63fd5eefe47f93afb9a5575f1c688b73cb6327 | fix(theme): refactored themed items | [
{
"change_type": "MODIFY",
"diff": "@@ -87,7 +87,7 @@ const CardsWithoutImages = ({ theme, cardsGroup }) => {\n<div className={`${prefix}--cards-without-images__container`}>\n<div className={`${prefix}--cards-without-images__row`}>\n<div className={`${prefix}--cards-without-images__col`}>\n- {_renderCardsGr... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(theme): refactored themed items | 1 | fix | theme |
104,818 | 03.12.2019 18:34:31 | 21,600 | 069a8772c88782d519b411968f820284504a2598 | fix(cardrenderer): only prevent loading card if a setuperror | [
{
"change_type": "MODIFY",
"diff": "@@ -88,7 +88,8 @@ const CardRenderer = React.memo(\nupdatedCard = await onSetupCard(card);\nsetCard(updatedCard);\n}\n- if (!updatedCard.error) {\n+ if (!updatedCard.setupError) {\n+ // don't load the card data if the setup failed\nloadCardData(updatedCard, setCard, onFet... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(cardrenderer): only prevent loading card if a setuperror | 1 | fix | cardrenderer |
438,921 | 03.12.2019 18:39:00 | -32,400 | 1683b0ff9bff3668a3173aa8f8190105c46f0c95 | chore(demo): Update lazy render demo
[skip ci] | [
{
"change_type": "MODIFY",
"diff": "@@ -428,7 +428,7 @@ var billboardDemo = {\ntry {\nif (func) {\ncode.data.push(\"\\r\\n\\r\\n\" + func.toString()\n- .replace(/[\\t\\s]*function\\s*\\(chart\\) \\{[\\r\\n\\t\\s]*/, \"\")\n+ .replace(/[\\t\\s]*function\\s*\\(chart[\\d+]?\\) \\{[\\r\\n\\t\\s]*/, \"\")\n.repl... | TypeScript | MIT License | naver/billboard.js | chore(demo): Update lazy render demo
[skip ci] | 1 | chore | demo |
869,315 | 03.12.2019 18:49:11 | -3,600 | 9877bd1408324c450eb2e4a98554f8d2321e1036 | fix: replace baseVolume parameter with quoteVolume | [
{
"change_type": "MODIFY",
"diff": "@@ -21,8 +21,8 @@ module.exports = async () => {\nbid: parseToFloat(ticker.bid),\nask: parseToFloat(ticker.ask),\nvwap: parseToFloat(ticker.vwap),\n- baseVolume: parseToFloat(ticker[`volume_${ticker.counterCurrency}`]),\n- quoteVolume: parseToFloat(ticker.volume),\n+ base... | JavaScript | MIT License | coinranking/exchanges | fix: replace baseVolume parameter with quoteVolume | 1 | fix | null |
104,818 | 03.12.2019 18:54:38 | 21,600 | a1dbff84feaac45d75e75d3c0d1dc95c091a6194 | fix(cardrenderer): always try and reload a card in error | [
{
"change_type": "MODIFY",
"diff": "@@ -88,10 +88,7 @@ const CardRenderer = React.memo(\nupdatedCard = await onSetupCard(card);\nsetCard(updatedCard);\n}\n- if (!updatedCard.setupError) {\n- // don't load the card data if the setup failed\nloadCardData(updatedCard, setCard, onFetchData, timeGrain);\n- }\n};... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(cardrenderer): always try and reload a card in error | 1 | fix | cardrenderer |
217,922 | 03.12.2019 18:59:34 | -3,600 | 41ab818269d99897fd8ff6adab210883783c15c2 | chore: better implementation for masterbooks badge reloader | [
{
"change_type": "MODIFY",
"diff": "@@ -12,7 +12,7 @@ import { LocalizedDataService } from '../../../core/data/localized-data.service'\nimport { I18nToolsService } from '../../../core/tools/i18n-tools.service';\nimport { ItemDetailsPopup } from '../item-details/item-details-popup';\nimport { GatheredByCompo... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: better implementation for masterbooks badge reloader
Signed-off-by: Supamiu <contact@flavien-normand.fr> | 1 | chore | null |
866,401 | 03.12.2019 19:00:05 | 10,800 | d2bfe31464cfb7dcb64fd040abc7c70216271621 | fix(pattern): added scss readme | [
{
"change_type": "MODIFY",
"diff": "Import the package css into the top of your main CSS file.\n```css\n-@import '@carbon/ibmdotcom-styles/scss/patterns/pictogramarray/index';\n+@import '@carbon/ibmdotcom-styles/scss/patterns/listsection/index';\n```\n+#### Modifiers\n+\n+Use these modifiers with `.bx--list... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(pattern): added scss readme | 1 | fix | pattern |
217,922 | 03.12.2019 19:07:58 | -3,600 | 85f1c243a845881ce2eae3b386f9a2680ffdd197 | fix(permissions): fixed an issue with list permissions propagation | [
{
"change_type": "MODIFY",
"diff": "@@ -174,7 +174,7 @@ export class WorkshopPanelComponent implements OnChanges {\n})\n).subscribe((updatedLists: List[]) => {\nupdatedLists.forEach(list => {\n- this.listsFacade.updateList(list, true);\n+ this.listsFacade.updateList(list, true, true);\n});\nthis.message.suc... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(permissions): fixed an issue with list permissions propagation
Signed-off-by: Supamiu <contact@flavien-normand.fr> | 1 | fix | permissions |
217,922 | 03.12.2019 19:08:47 | -3,600 | 76c64c407e0d0579bec0f36158ed5632fe99a6bc | fix(i18n): fixed a typo in recipe finder | [
{
"change_type": "MODIFY",
"diff": "\"Remove_from_basket\": \"Remove from basket\",\n\"Search\": \"Find recipes\",\n\"Generate_list\": \"Add to list\",\n- \"Description\": \"Input the items you have and click \\\"Find recipes\\\" to get a list of possible recipes to craft and resily generate a crafting list... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(i18n): fixed a typo in recipe finder
Signed-off-by: Supamiu <contact@flavien-normand.fr> | 1 | fix | i18n |
217,922 | 03.12.2019 19:14:17 | -3,600 | 59cfe15867c57c436a59b38301be7cc26610b930 | fix(desktop): ignore packets inside overlays | [
{
"change_type": "MODIFY",
"diff": "@@ -157,6 +157,8 @@ export class IpcService {\n}\nprivate handlePacket(packet: any): void {\n+ // If we're inside an overlay, don't do anything with the packet, we don't care.\n+ if (this._overlayUri === undefined) {\nthis.packets$.next(packet);\nconst debugPackets = (<an... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(desktop): ignore packets inside overlays
Signed-off-by: Supamiu <contact@flavien-normand.fr> | 1 | fix | desktop |
866,393 | 03.12.2019 19:18:39 | -32,400 | 5212d0fb0c6aba5c4a82fe45300682f4cd5fe349 | fix(pagination): fix for plural
This change makes `formatStatusWithDeterminateTotal` property more
compatible with `i18next`, where `count` is the only property that
`i18next` uses for switching between singular/plural in the string
interpolation function. | [
{
"change_type": "MODIFY",
"diff": "import { html } from 'lit-element';\nimport { action } from '@storybook/addon-actions';\nimport { boolean, number } from '@storybook/addon-knobs';\n+import ifNonNull from '../../globals/directives/if-non-null';\nimport './pagination';\nimport './page-sizes-select';\nimpor... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(pagination): fix for plural (#196)
This change makes `formatStatusWithDeterminateTotal` property more
compatible with `i18next`, where `count` is the only property that
`i18next` uses for switching between singular/plural in the string
interpolation function. | 1 | fix | pagination |
688,431 | 03.12.2019 19:31:31 | -7,200 | b2ac0f01c3ae6505035eb1e2cd67d07a44b05ae0 | feat(RadioGroup): add horizontal prop | [
{
"change_type": "MODIFY",
"diff": "import React, { forwardRef, ReactNode } from 'react'\nimport MUIRadio from '@material-ui/core/Radio'\n-import RadioGroup from '@material-ui/core/RadioGroup'\nimport { withStyles } from '@material-ui/core/styles'\nimport {\nPicassoComponentWithRef,\n@@ -10,6 +9,7 @@ import... | TypeScript | MIT License | toptal/picasso | feat(RadioGroup): add horizontal prop (#918) | 1 | feat | RadioGroup |
471,527 | 03.12.2019 19:47:14 | -3,600 | 17624a73d65f1d76a6cdd4fc9fc1f71977359a50 | fix(demoing-storybook): default build folder should be storybook-static | [
{
"change_type": "MODIFY",
"diff": "@@ -14,7 +14,7 @@ module.exports = function readCommandLineArgs() {\nname: 'output-dir',\nalias: 'o',\ntype: String,\n- defaultValue: path.join(process.cwd(), 'static-storybook'),\n+ defaultValue: path.join(process.cwd(), 'storybook-static'),\ndescription: 'Rollup build o... | JavaScript | MIT License | open-wc/open-wc | fix(demoing-storybook): default build folder should be storybook-static | 1 | fix | demoing-storybook |
471,527 | 03.12.2019 20:37:07 | -3,600 | 3cca3c92a1db893bef3e27533f363390c36a43fd | fix(demoing-storybook): export Anchor, Description, Heading doc blocks | [
{
"change_type": "MODIFY",
"diff": "@@ -33,10 +33,13 @@ export {\nexport { withWebComponentsKnobs } from '@open-wc/storybook-prebuilt';\nexport {\n- Meta,\n- Props,\n- Story,\n+ Anchor,\n+ Description,\nDocsContainer,\nDocsPage,\n+ Heading,\n+ Meta,\n+ Story,\nPreview,\n+ Props,\n} from '@open-wc/storybook-... | JavaScript | MIT License | open-wc/open-wc | fix(demoing-storybook): export Anchor, Description, Heading doc blocks | 1 | fix | demoing-storybook |
531,793 | 03.12.2019 21:01:10 | 0 | cf99f2c674548fe1dc42f05efffbe2532d446ae6 | revert(ci): revert verify used js licenses in CI
This reverts commit
Too many failure in CI when talking to the npm registry. | [
{
"change_type": "MODIFY",
"diff": "@@ -56,12 +56,6 @@ jobs:\nafter_success:\n- travis_retry curl -s --connect-timeout 30 --fail https://codecov.io/bash | bash -s -- -F ui\n- - stage: Lint\n- name: Verify npm licenses\n- if: (repo = prymitive/karma AND type != pull_request) OR (fork = true AND type = pull_r... | TypeScript | Apache License 2.0 | prymitive/karma | revert(ci): revert verify used js licenses in CI
This reverts commit b0e74b907f49937b1e37c6e294a6176bcf653cf7.
Too many failure in CI when talking to the npm registry. | 1 | revert | ci |
67,476 | 04.12.2019 00:09:11 | -3,600 | 3a0a55f3d1ab62c094188209b47084a6a7ecd9f9 | chore(aot): add %FunctionPrototype% properties boilerplate | [
{
"change_type": "MODIFY",
"diff": "@@ -73,6 +73,10 @@ import {\n$FunctionPrototype,\n$FunctionConstructor,\n$FunctionPrototype_call,\n+ $FunctionPrototype_apply,\n+ $FunctionPrototype_bind,\n+ $FunctionPrototype_toString,\n+ $FunctionPrototype_hasInstance,\n} from './globals/function';\nimport {\nCompletio... | TypeScript | MIT License | aurelia/aurelia | chore(aot): add %FunctionPrototype% properties boilerplate | 1 | chore | aot |
471,470 | 04.12.2019 00:12:29 | -3,600 | 750322b28605b24142a831b11b5354a2fa3be87c | chore: restructure website menu | [
{
"change_type": "MODIFY",
"diff": "@@ -4,22 +4,23 @@ const sidebar = [\n['/', 'Home'],\n['/guide/', 'Introduction'],\n{\n- title: 'Developing',\n+ title: 'Guides & Docs',\ncollapsable: true,\nchildren: [\n- ['/developing/', 'Getting started'],\n- ['/developing/ide', 'IDE'],\n- '/developing/lit-html',\n- '/... | JavaScript | MIT License | open-wc/open-wc | chore: restructure website menu (#1078) | 1 | chore | null |
730,428 | 04.12.2019 00:18:26 | 0 | 7f56f0529f86bba87b7717e00f7c3adc767c32f4 | chore(release): 0.2.64 [skip ci] | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+### [0.2.64](https://github.com/webex/react-widgets/compare/v0.2.63...v0.2.64) (2019-12-04)\n+\... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.2.64 [skip ci] | 1 | chore | release |
76,605 | 04.12.2019 03:08:22 | -3,600 | 045b060d6cfa7b113f124c3a971ec06f4e31f7ef | feat: adding also NER support | [
{
"change_type": "DELETE",
"diff": "-{\n- \"pathPlugins\": \"./plugins\",\n- \"pathPipeline\": \"./bot1_pipelines.md\",\n- \"settings\": {\n- \"nlp\": {\n- \"languages\": [\"en\"],\n- \"trainByDomain\": false,\n- \"threshold\": 0.5,\n- \"autoLoad\": true,\n- \"autoSave\": true,\n- \"modelFileName\": \"bot1_... | JavaScript | MIT License | axa-group/nlp.js | feat: adding also NER support | 1 | feat | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.