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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
730,412 | 08.05.2018 19:27:52 | 0 | 92c78064b84aa099d8314ffb7be4c57216585f6e | chore(release): 0.1.295 | [
{
"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+<a name=\"0.1.295\"></a>\n+## [0.1.295](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.295 | 1 | chore | release |
679,913 | 09.05.2018 02:51:50 | -3,600 | 5991be61140ad866e0d471a814a419609f7431d6 | feat(associative): add new functions, update arg & return types
add commonKeys*()
add mergeMapWith() / mergeObjWith()
add mergeDeepObj()
rename mapKeys*() => mergeApply*()
update renameKeys*() arg/return types
update indexed() arg types
update join() & joinWith() arg/return types
update re-exports | [
{
"change_type": "ADD",
"diff": "+import { IObjectOf } from \"@thi.ng/api/api\";\n+\n+/**\n+ * Like `commonKeysObj()`, but for ES6 Maps.\n+ *\n+ * @param a\n+ * @param b\n+ */\n+export function commonKeysMap<K>(a: Map<K, any>, b: Map<K, any>) {\n+ const res: K[] = [];\n+ for (let k of a.keys()) {\n+ if (b.h... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(associative): add new functions, update arg & return types
- add commonKeys*()
- add mergeMapWith() / mergeObjWith()
- add mergeDeepObj()
- rename mapKeys*() => mergeApply*()
- update renameKeys*() arg/return types
- update indexed() arg types
- update join() & joinWith() arg/return types
- update re-exports | 1 | feat | associative |
679,913 | 09.05.2018 03:29:18 | -3,600 | 053c8c6fd1cdadb71e8702d5a056f6d4aa79ab1e | feat(rstream-gestures): add zoom smooth config option, update readme | [
{
"change_type": "MODIFY",
"diff": "@@ -24,9 +24,22 @@ export interface GestureEvent {\n}\nexport interface GestureStreamOpts extends IID<string> {\n+ /**\n+ * Initial zoom value. Default: 1\n+ */\nzoom: number;\n+ /**\n+ * Min zoom value. Default: 0.25\n+ */\nminZoom: number;\n+ /**\n+ * Max zoom value. De... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(rstream-gestures): add zoom smooth config option, update readme | 1 | feat | rstream-gestures |
679,913 | 09.05.2018 03:36:31 | -3,600 | ede7691683930950143cd905e7abc5720ee16f27 | docs(hdom-components): update readme | [
{
"change_type": "MODIFY",
"diff": "@@ -16,6 +16,11 @@ for use with\n&\n[@thi.ng/hiccup](https://github.com/thi-ng/umbrella/tree/master/packages/hiccup).\n+**Please see the\n+[ADR-0002](https://github.com/thi-ng/umbrella/tree/master/packages/hdom-components/adr/0002-component-configuration.md)\n+for detaile... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(hdom-components): update readme | 1 | docs | hdom-components |
679,913 | 09.05.2018 03:51:23 | -3,600 | 68ea086480a6588d2a39e0e27c2203f2d59f33de | fix(hdom): native boolean attrib handling (e.g. "checked") | [
{
"change_type": "MODIFY",
"diff": "@@ -128,6 +128,10 @@ export function setAttrib(el: Element, id: string, val: any, attribs?: any) {\ncase \"value\":\nupdateValueAttrib(<HTMLInputElement>el, val);\nbreak;\n+ case \"checked\":\n+ // TODO add more native attribs?\n+ el[id] = val;\n+ break;\ndefault:\nif (is... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(hdom): native boolean attrib handling (e.g. "checked") | 1 | fix | hdom |
679,913 | 09.05.2018 05:11:47 | -3,600 | 91a2b7480473fa9ff07f48f56d89c55a57087253 | docs: add to main readme | [
{
"change_type": "MODIFY",
"diff": "@@ -41,6 +41,7 @@ difficulties, many combining functionality from several packages) in the\n| [`@thi.ng/dcons`](./packages/dcons) | [](https://www.npmjs.com/package/@thi.ng/dcons) | [changelog](./packages/dcon... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs: add @thi.ng/dot to main readme | 1 | docs | null |
679,913 | 09.05.2018 06:38:03 | -3,600 | 68ca46d287951c9dc7fb25c2e7df62adf54a264a | feat(dgraph): add leaves() & roots() iterators, update sort() | [
{
"change_type": "MODIFY",
"diff": "@@ -97,6 +97,14 @@ export class DGraph<T> implements\n);\n}\n+ leaves(): IterableIterator<T> {\n+ return filter((node: T) => this.isLeaf(node), this.nodes());\n+ }\n+\n+ roots(): IterableIterator<T> {\n+ return filter((node: T) => this.isRoot(node), this.nodes());\n+ }\n+... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(dgraph): add leaves() & roots() iterators, update sort() | 1 | feat | dgraph |
679,913 | 09.05.2018 07:14:53 | -3,600 | 5d2a3fe8018a4d2005b1fd9c3c28a7d70b797cdf | refactor(resolve-map): fix
BREAKING CHANGE: update lookup path prefix & separators
lookup paths now are prefixed with `@` instead of `->`
all path segments must be separated by `/`
update readme & tests | [
{
"change_type": "MODIFY",
"diff": "@@ -33,25 +33,28 @@ other refs are recursively resolved (again, provided there are no\ncycles).\nReference values are special strings representing lookup paths of other\n-values in the object and are prefixed with `->` for relative refs or\n-`->/` for absolute refs. Relat... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(resolve-map): fix #21
BREAKING CHANGE: update lookup path prefix & separators
- lookup paths now are prefixed with `@` instead of `->`
- all path segments must be separated by `/`
- update readme & tests | 1 | refactor | resolve-map |
679,913 | 09.05.2018 07:19:49 | -3,600 | 6e7599ac4b75d19e0a692d0710c158a80b7ffa84 | docs(resolve-map): update/fix doc strings | [
{
"change_type": "MODIFY",
"diff": "@@ -8,45 +8,50 @@ import { getIn, mutIn } from \"@thi.ng/paths\";\nconst SEMAPHORE = Symbol(\"SEMAPHORE\");\n/**\n- * Visits all key-value pairs in depth-first order for given object and\n- * expands any reference values. Cyclic references are not allowed or\n- * checked ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(resolve-map): update/fix doc strings | 1 | docs | resolve-map |
791,690 | 09.05.2018 10:29:46 | 25,200 | 5e95e346d065f35216321bec5f6df5cc08e233ba | core(runner): support multiple output modes | [
{
"change_type": "MODIFY",
"diff": "@@ -21,6 +21,7 @@ last-run-results.html\n*.report.html\n*.report.dom.html\n*.report.json\n+*.report.csv\n*.report.pretty\n*.artifacts.log\n",
"new_path": ".gitignore",
"old_path": ".gitignore"
},
{
"change_type": "MODIFY",
"diff": "@@ -70,7 +70,11 @@ i... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(runner): support multiple output modes (#5154) | 1 | core | runner |
791,690 | 09.05.2018 10:34:02 | 25,200 | 5a92d7cb187ab5bcb435cc1c2eaf80fd47d85199 | extension: add checkbox for using Lantern/DevTools throttling | [
{
"change_type": "MODIFY",
"diff": "@@ -22,6 +22,16 @@ Unless required by applicable law or agreed to in writing, software distributed\n<div class=\"header-titles\">\n<h1 class=\"header-titles__main\">Lighthouse</h1>\n<h2 class=\"header-titles__url\">...</h2>\n+ <div class=\"header-titles__throttling\">\n+ ... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | extension: add checkbox for using Lantern/DevTools throttling (#5156) | 1 | extension | null |
217,922 | 09.05.2018 15:12:35 | -7,200 | e856697cdf3986c7c63324ca50b9f3fea8cb140f | chore: remove useless console.log calls | [
{
"change_type": "MODIFY",
"diff": "@@ -134,7 +134,6 @@ export class PermissionsPopupComponent {\n}\nsave(): void {\n- console.log(this.registry);\nthis.saving = true;\nconst usersSharedDeletions: string[] = [];\nconst usersSharedAdditions: string[] = [];\n",
"new_path": "src/app/modules/common-componen... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: remove useless console.log calls | 1 | chore | null |
217,922 | 09.05.2018 16:40:45 | -7,200 | a96a51c86b7239cf74dc374d6a1696efd65bd543 | perf: improved display performances on large lists | [
{
"change_type": "MODIFY",
"diff": "(click)=\"toggleAlarm(timer.itemId, timer.type)\"\nmatTooltip=\"{{timer?.zoneId | placeName | i18n}} - {{timer?.areaId | placeName | i18n}}\"\nmatTooltipPosition=\"above\">\n- <mat-icon *ngIf=\"!hasAlarm(timer.itemId)\">alarm_add</mat-icon>\n- <mat-icon *ngIf=\"hasAlarm(t... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | perf: improved display performances on large lists | 1 | perf | null |
730,429 | 09.05.2018 17:33:14 | 14,400 | c95e2a1c51e9c1b303925a622a09237e4e736cd7 | feat(spaces-list): remove unused currentUser prop | [
{
"change_type": "MODIFY",
"diff": "@@ -6,9 +6,6 @@ import SpaceItem from '@ciscospark/react-component-space-item';\nconst propTypes = {\nactiveSpaceId: PropTypes.string,\n- currentUser: PropTypes.shape({\n- id: PropTypes.string.isRequired\n- }).isRequired,\nhasCalling: PropTypes.bool,\nonCallClick: PropTyp... | JavaScript | MIT License | webex/react-widgets | feat(spaces-list): remove unused currentUser prop | 1 | feat | spaces-list |
217,922 | 09.05.2018 18:25:26 | -7,200 | c87285ea4963b8005d8b19c57c5ad943329c28ea | fix: byregot's brow can now only be used with 2 or more Inner Quiet stacks | [
{
"change_type": "MODIFY",
"diff": "@@ -4,6 +4,9 @@ import {Buff} from '../../buff.enum';\nexport class ByregotsBrow extends ByregotsBlessing {\n+ canBeUsed(simulation: Simulation): boolean {\n+ return super.canBeUsed(simulation) && simulation.getBuff(Buff.INNER_QUIET).stacks >= 2;\n+ }\ngetBaseCPCost(simul... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: byregot's brow can now only be used with 2 or more Inner Quiet stacks | 1 | fix | null |
730,429 | 09.05.2018 18:49:44 | 14,400 | c50840d3801dacff04d9ac204dbdec3e7b8d829e | feat(spaces-list): use react-virtualized for rendering list | [
{
"change_type": "MODIFY",
"diff": "\"react-redux\": \"^5.0.1\",\n\"react-syntax-highlighter\": \"^6.0.2\",\n\"react-tap-event-plugin\": \"^3.0.0\",\n+ \"react-virtualized\": \"^9.18.5\",\n\"recompose\": \"^0.26.0\",\n\"redux\": \"^3.6.0\",\n\"redux-logger\": \"^3.0.1\",\n",
"new_path": "package.json",
... | JavaScript | MIT License | webex/react-widgets | feat(spaces-list): use react-virtualized for rendering list | 1 | feat | spaces-list |
730,429 | 09.05.2018 18:50:08 | 14,400 | a672ef855a012b58c1f740719a74e1b32a216855 | feat(widget-recents): use updated spaces list | [
{
"change_type": "MODIFY",
"diff": "export const UPDATE_STATUS = 'widget-recents/UPDATE_STATUS';\n-export const UPDATE_VISIBILITY_COUNT = 'widget-recents/UPDATE_VISIBILITY_COUNT';\n-\nexport function updateWidgetStatus(status) {\nreturn {\n@@ -10,12 +8,3 @@ export function updateWidgetStatus(status) {\n}\n}... | JavaScript | MIT License | webex/react-widgets | feat(widget-recents): use updated spaces list | 1 | feat | widget-recents |
217,922 | 09.05.2018 20:20:10 | -7,200 | 40ddb37c0a9a98745acb113511fea5969d4bd253 | feat(simulator): food names are now sorted alphabetically, hq first | [
{
"change_type": "MODIFY",
"diff": "@@ -33,6 +33,7 @@ import {LocalizedDataService} from '../../../../core/data/localized-data.service\nimport {TranslateService} from '@ngx-translate/core';\nimport {Language} from 'app/core/data/language';\nimport {ConsumablesService} from 'app/pages/simulator/model/consuma... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(simulator): food names are now sorted alphabetically, hq first | 1 | feat | simulator |
791,690 | 09.05.2018 22:24:27 | 25,200 | aa0e0893588bfab025cbf945704f1879328cf267 | misc(npmignore): include chrome launcher script | [
{
"change_type": "MODIFY",
"diff": "@@ -15,6 +15,9 @@ lighthouse-extension/\nlighthouse-cli/results/\nlighthouse-logger/\n+# keep the chrome launcher script\n+!lighthouse-core/scripts/manual-chrome-launcher.js\n+\n# excluding cli/test minus smokehouse\nlighthouse-cli/test\n!lighthouse-cli/test/smokehouse\n"... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | misc(npmignore): include chrome launcher script | 1 | misc | npmignore |
791,690 | 09.05.2018 22:31:04 | 25,200 | 06205efcccc41a95e2f433b5f638725ecca7e637 | core(lhr): revert default wait bump | [
{
"change_type": "MODIFY",
"diff": "@@ -15,7 +15,7 @@ module.exports = {\npassName: 'defaultPass',\nrecordTrace: true,\nuseThrottling: true,\n- pauseAfterLoadMs: 10000,\n+ pauseAfterLoadMs: 1000,\nnetworkQuietThresholdMs: 1000,\ncpuQuietThresholdMs: 1000,\ngatherers: [\n",
"new_path": "lighthouse-core/c... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(lhr): revert default wait bump | 1 | core | lhr |
679,913 | 09.05.2018 23:06:48 | -3,600 | b4476cb9cf322451aa81c5df96d742c86644db93 | refactor(hdom-components): add ButtonGroup type alias | [
{
"change_type": "MODIFY",
"diff": "@@ -52,6 +52,8 @@ export interface ButtonGroupItem extends Array<any> {\n[id: number]: any;\n}\n+export type ButtonGroup = (_, args: ButtonGroupArgs, ...buttons: ButtonGroupItem[]) => any;\n+\n/**\n* Higher order function to create a new stateless button group\n* componen... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(hdom-components): add ButtonGroup type alias | 1 | refactor | hdom-components |
679,913 | 09.05.2018 23:18:55 | -3,600 | 5af437c1325eea4a6e0ccd8b8f67f0162a3edc61 | docs(hdom-components): add | [
{
"change_type": "MODIFY",
"diff": "WIP\n+Amended by [3. Component configuration via context](0003-component-configuration-via-context.md)\n+\n## Context\nThe components provided by this package SHOULD primarily be designed\n",
"new_path": "packages/hdom-components/adr/0002-component-configuration.md",
... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(hdom-components): add ADR-0003 | 1 | docs | hdom-components |
679,913 | 09.05.2018 23:22:28 | -3,600 | cea77debccef1c89b59313481bd3e1fcaa6c29cc | feat(examples): add hdom-theme-adr-0003 demo | [
{
"change_type": "ADD",
"diff": "+node_modules\n+yarn.lock\n+*.js\n",
"new_path": "examples/hdom-theme-adr-0003/.gitignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+# hdom-theme\n+\n+[Live demo](http://demo.thi.ng/umbrella/hdom-theme/)\n+\n+WIP demo of themed component prop... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): add hdom-theme-adr-0003 demo | 1 | feat | examples |
679,913 | 10.05.2018 00:17:46 | -3,600 | d5f1037a79f2c5bf7500c2ea68afff95937ae461 | fix(examples): fix update router-basics | [
{
"change_type": "MODIFY",
"diff": "@@ -44,13 +44,21 @@ export class App {\n};\nthis.addViews(this.config.views);\nthis.router = new HTMLRouter(config.router);\n+ // connect router to event bus so that routing events are processed\n+ // as part of the normal batched event processing loop\nthis.router.addLis... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(examples): fix #22, update router-basics | 1 | fix | examples |
679,913 | 10.05.2018 01:54:18 | -3,600 | 349032108cb75c893a37fb65bbe8762a8cff7be4 | feat(examples): add icon button | [
{
"change_type": "MODIFY",
"diff": "@@ -117,6 +117,11 @@ const darkTheme = {\n}\n};\n+// source: https://fontawesome.com\n+const icon =\n+ [\"svg\", { class: \"mr1\", width: \"1rem\", viewBox: \"0 0 576 512\", fill: \"currentcolor\" },\n+ [\"path\", { d: \"M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): add icon button | 1 | feat | examples |
679,913 | 10.05.2018 02:01:23 | -3,600 | aba06b0cc118f14466a8baf71bb97dad03dbaff0 | docs(examples): fix link | [
{
"change_type": "MODIFY",
"diff": "[Live demo](http://demo.thi.ng/umbrella/hdom-theme-adr-0003/)\nWIP demo of themed component proposal discussed in\n-[ADR-0003](https://github.com/thi-ng/umbrella/blob/develop/packages/hdom-components/adr/0002-component-configuration.md).\n+[ADR-0003](https://github.com/th... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(examples): fix link | 1 | docs | examples |
217,922 | 10.05.2018 13:52:31 | -7,200 | 3784e1f9b29079df99a84bfceb95afeada0379c5 | feat(simulator): you can now save custom stats for your crafting jobs | [
{
"change_type": "MODIFY",
"diff": "@@ -3,6 +3,7 @@ import {ListLayout} from '../../core/layout/list-layout';\nimport {DeserializeAs} from '@kaiu/serializer';\nimport {Alarm} from '../../core/time/alarm';\nimport {ListDetailsFilters} from '../other/list-details-filters';\n+import {GearSet} from '../../pages... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(simulator): you can now save custom stats for your crafting jobs | 1 | feat | simulator |
217,922 | 10.05.2018 13:53:41 | -7,200 | 48b6eeefd4e0d110d8438ea08e0fd0012f6ae3ce | feat(simulator): actions can now be dragged inside rotation (https://i.imgur.com/68jTydA.gifv) | [
{
"change_type": "MODIFY",
"diff": "<div>\n<h4>{{'SIMULATOR.CATEGORY.Quality' | translate}}</h4>\n<div class=\"actions-row\">\n- <app-action (actionclick)=\"addAction(action)\" [disabled]=\"!action.canBeUsed(resultData.simulation, true) || snapshotMode\n+ <app-action (actionclick)=\"addAction(action)\" drag... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(simulator): actions can now be dragged inside rotation (https://i.imgur.com/68jTydA.gifv) | 1 | feat | simulator |
217,922 | 10.05.2018 14:11:30 | -7,200 | 1edc7a6fc681e786df25c4814500066c383b2667 | feat(simulator): added links to external simulators inside crafting menu | [
{
"change_type": "MODIFY",
"diff": "@@ -34,6 +34,7 @@ import {MapModule} from '../map/map.module';\nimport {DatabaseModule} from '../../core/database/database.module';\nimport {RouterModule} from '@angular/router';\nimport {VentureDetailsPopupComponent} from './venture-details-popup/venture-details-popup.co... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(simulator): added links to external simulators inside crafting menu | 1 | feat | simulator |
217,922 | 10.05.2018 14:24:03 | -7,200 | e1ce426697f4aaca12321acdea1ed78ceef108d0 | style: level is now always visible for crafts on mobile | [
{
"change_type": "MODIFY",
"diff": "<mat-icon color=\"accent\">assignment</mat-icon>\n</button>\n<div class=\"classes\">\n- <div *ngIf=\"item.craftedBy !== undefined && item.craftedBy.length > 0\">\n- <button *ngFor=\"let craft of item.craftedBy\" [matMenuTriggerFor]=\"simulatorMenu\">\n- <img class=\"craft... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | style: level is now always visible for crafts on mobile | 1 | style | null |
217,922 | 10.05.2018 14:31:53 | -7,200 | eb123b38ae2e10b5dde95d7b9cb85b2f53346774 | style: level is now always visible for crafts on browser (fix for firefox) | [
{
"change_type": "MODIFY",
"diff": "{{'SIMULATOR.Open_in_external' | translate: {name: 'ryan20340'} }}\n</a>\n</mat-menu>\n- <button mat-icon-button [matMenuTriggerFor]=\"simulatorMenu\" *ngIf=\"getCraft(item.recipeId) as craft\">\n+ <button mat-icon-button class=\"crafter-button\" [matMenuTriggerFor]=\"sim... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | style: level is now always visible for crafts on browser (fix for firefox) | 1 | style | null |
679,913 | 10.05.2018 14:55:21 | -3,600 | 6d12ae0855d33c4dbef1b238527faf5f6c00c978 | feat(equiv): add new package | [
{
"change_type": "ADD",
"diff": "+build\n+coverage\n+dev\n+doc\n+src*\n+test\n+.nyc_output\n+tsconfig.json\n+*.tgz\n+*.html\n",
"new_path": "packages/equiv/.npmignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+ Apache License\n+ Version 2.0, January 2004\n+ http://www.apache... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(equiv): add new package @thi.ng/equiv | 1 | feat | equiv |
679,913 | 10.05.2018 14:56:07 | -3,600 | 1e97856f859f3da1d43795b978c1fe70d680573f | feat(errors): add new package | [
{
"change_type": "ADD",
"diff": "+build\n+coverage\n+dev\n+doc\n+src*\n+test\n+.nyc_output\n+tsconfig.json\n+*.tgz\n+*.html\n",
"new_path": "packages/errors/.npmignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+ Apache License\n+ Version 2.0, January 2004\n+ http://www.apach... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(errors): add new package @thi.ng/errors | 1 | feat | errors |
679,913 | 10.05.2018 14:56:46 | -3,600 | e4a87c414d3befaaf1e0d90f6e74b39014cc74f5 | feat(compare): add new package | [
{
"change_type": "ADD",
"diff": "+build\n+coverage\n+dev\n+doc\n+src*\n+test\n+.nyc_output\n+tsconfig.json\n+*.tgz\n+*.html\n",
"new_path": "packages/compare/.npmignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+ Apache License\n+ Version 2.0, January 2004\n+ http://www.apac... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(compare): add new package @thi.ng/compare | 1 | feat | compare |
679,913 | 10.05.2018 14:57:31 | -3,600 | 9466d4b221a57ecbed569e226d4a130b98363743 | feat(bench): add new package | [
{
"change_type": "ADD",
"diff": "+build\n+coverage\n+dev\n+doc\n+src*\n+test\n+.nyc_output\n+tsconfig.json\n+*.tgz\n+*.html\n",
"new_path": "packages/bench/.npmignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+ Apache License\n+ Version 2.0, January 2004\n+ http://www.apache... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(bench): add new package @thi.ng/bench | 1 | feat | bench |
679,913 | 10.05.2018 14:59:59 | -3,600 | f051ca3c8ea8cc015750db4cb2712b7f030ff619 | refactor(api): remove obsolete files from package
BREAKING CHANGE: now only contains type declarations,
decorators and mixins. All other features have been moved
to new dedicated packages: | [
{
"change_type": "MODIFY",
"diff": "\"typescript\": \"^2.8.3\"\n},\n\"dependencies\": {\n- \"@thi.ng/checks\": \"^1.5.2\"\n+ \"@thi.ng/errors\": \"^0.0.1\"\n},\n\"keywords\": [\n\"compare\",\n",
"new_path": "packages/api/package.json",
"old_path": "packages/api/package.json"
},
{
"change_typ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(api): remove obsolete files from package
BREAKING CHANGE: @thi.ng/api now only contains type declarations,
decorators and mixins. All other features have been moved
to new dedicated packages:
- @thi.ng/bench
- @thi.ng/compare
- @thi.ng/equiv
- @thi.ng/errors | 1 | refactor | api |
815,745 | 10.05.2018 15:55:11 | -10,800 | 6e5cf501816391628e2a1974a09d3d2b2a168904 | fix(style): add padding to individual disabled elements
fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -139,8 +139,8 @@ export class SelectMultiComponent {\nthis.githubUsers$ = this.dataService.getGithubAccounts('anjm');\nthis.selectedPeople3 = [\n- { id: '5a15b13c2340978ec3d2c0ea', name: 'Rochelle Estes' },\n- { id: '5a15b13c728cd3f43cc0fe8a', name: 'Marquez Nolan' }\n... | TypeScript | MIT License | ng-select/ng-select | fix(style): add padding to individual disabled elements
fixes #406 | 1 | fix | style |
815,745 | 10.05.2018 16:06:04 | -10,800 | eb6f9bddc33dae3fccf98accdfb655cbf2cda255 | fix(material): set min height for ng-option
fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -26,7 +26,7 @@ import { distinctUntilChanged, debounceTime, switchMap } from 'rxjs/operators'\n<ng-select [items]=\"cities2\" [(ngModel)]=\"selectedCity2\" bindLabel=\"name\" bindValue=\"name\">\n<ng-template ng-option-tmp let-item=\"item\" let-index=\"index\" let-sear... | TypeScript | MIT License | ng-select/ng-select | fix(material): set min height for ng-option
fixes #520 | 1 | fix | material |
679,913 | 10.05.2018 17:45:27 | -3,600 | 55f29b8f0415da48a81c40368d9c884f6683f63d | feat(transducers): add normRange() iterator | [
{
"change_type": "MODIFY",
"diff": "@@ -111,6 +111,7 @@ export * from \"./iter/concat\";\nexport * from \"./iter/cycle\";\nexport * from \"./iter/iterate\";\nexport * from \"./iter/keys\";\n+export * from \"./iter/norm-range\";\nexport * from \"./iter/pairs\";\nexport * from \"./iter/permutations\";\nexport... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(transducers): add normRange() iterator | 1 | feat | transducers |
730,412 | 10.05.2018 17:53:49 | 0 | 3bec06c2e65897dd98baf3cd5b2160b96384a14a | chore(release): 0.1.296 | [
{
"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+<a name=\"0.1.296\"></a>\n+## [0.1.296](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.296 | 1 | chore | release |
217,922 | 10.05.2018 20:19:41 | -7,200 | caeac6bf72c60a37078eb945a23a164d53aafeed | style(simulator): hide dragged action from bar | [
{
"change_type": "MODIFY",
"diff": "@@ -209,6 +209,10 @@ mat-progress-bar {\n}\n}\n+.drag-border {\n+ display: none !important;\n+}\n+\n.actions {\ndisplay: flex;\njustify-content: flex-start;\n",
"new_path": "src/app/pages/simulator/components/simulator/simulator.component.scss",
"old_path": "src/a... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | style(simulator): hide dragged action from bar | 1 | style | simulator |
730,412 | 10.05.2018 21:36:13 | 0 | 346005d9e6a3177b5777a407fd8fd164d9058c20 | chore(release): 0.1.297 | [
{
"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+<a name=\"0.1.297\"></a>\n+## [0.1.297](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.297 | 1 | chore | release |
679,913 | 10.05.2018 23:03:15 | -3,600 | edc66bf2e1a51f1a6c3c45fff1835b34c080d74d | feat(defmulti): add package | [
{
"change_type": "ADD",
"diff": "+build\n+coverage\n+dev\n+doc\n+src*\n+test\n+.nyc_output\n+tsconfig.json\n+*.tgz\n+*.html\n",
"new_path": "packages/defmulti/.npmignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+ Apache License\n+ Version 2.0, January 2004\n+ http://www.apa... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(defmulti): add @thi.ng/defmulti package | 1 | feat | defmulti |
679,913 | 11.05.2018 00:15:54 | -3,600 | 790d0130f125b9eb018203aa01452167236d98eb | test(defmulti): add tests | [
{
"change_type": "MODIFY",
"diff": "-// import * as assert from \"assert\";\n-// import * as defmulti from \"../src/index\";\n+import * as assert from \"assert\";\n+import { DEFAULT, defmulti } from \"../src/index\";\ndescribe(\"defmulti\", () => {\n- it(\"tests pending\");\n+ it(\"flatten\", () => {\n+ con... | TypeScript | Apache License 2.0 | thi-ng/umbrella | test(defmulti): add tests | 1 | test | defmulti |
679,913 | 11.05.2018 00:16:38 | -3,600 | 5227dd1fccdf51389a81ee400952e3d514d7b892 | refactor(errors): update return types (`never`) | [
{
"change_type": "MODIFY",
"diff": "@@ -4,6 +4,6 @@ export class IllegalArgumentError extends Error {\n}\n}\n-export function illegalArgs(msg?: any) {\n+export function illegalArgs(msg?: any): never {\nthrow new IllegalArgumentError(msg);\n}\n",
"new_path": "packages/errors/src/illegal-arguments.ts",
... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(errors): update return types (`never`) | 1 | refactor | errors |
679,913 | 11.05.2018 00:17:04 | -3,600 | 5391d986e1e3863cd34f28809bfa6e40ca7691c6 | fix(pointfree): minor update error handling | [
{
"change_type": "MODIFY",
"diff": "@@ -77,7 +77,7 @@ export const ctx = (stack: Stack = [], env: StackEnv = {}): StackContext =>\n[stack, [], env];\nconst $n = SAFE ?\n- (m: number, n: number) => (m < n) && illegalState(`stack underflow`) :\n+ (m: number, n: number) => (m < n) && <any>illegalState(`stack u... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(pointfree): minor update error handling | 1 | fix | pointfree |
679,913 | 11.05.2018 00:35:26 | -3,600 | 126ecf36a6ded85afb701912855a78c324c521d6 | feat(defmulti): add defmultiN(), update readme, add tests | [
{
"change_type": "MODIFY",
"diff": "@@ -19,6 +19,8 @@ yarn add @thi.ng/defmulti\n## Usage examples\n+### defmulti\n+\n`defmulti` returns a new multi-dispatch function using the provided\ndispatcher function. The dispatcher can take any number of arguments and\nmust produce a dispatch value (string, number o... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(defmulti): add defmultiN(), update readme, add tests | 1 | feat | defmulti |
749,547 | 11.05.2018 01:30:51 | -36,000 | 6bd1c8248ebaded6ad708f61a42321a557902c5c | fix(docs): use correct build:demo script | [
{
"change_type": "MODIFY",
"diff": "\"main\": \"./index.js\",\n\"scripts\": {\n\"build\": \"../../utils/scripts/build.sh\",\n- \"build:styleguide\": \"../../utils/scripts/build-styleguide.sh\",\n+ \"build:demo\": \"../../utils/scripts/build-demo.sh\",\n\"start\": \"../../utils/scripts/start.sh\"\n},\n\"depe... | TypeScript | Apache License 2.0 | zendeskgarden/react-components | fix(docs): use correct build:demo script (#7) | 1 | fix | docs |
724,000 | 11.05.2018 08:04:42 | -3,600 | 7f2fa66ea200b7a1442c30ca2325fba1d1e39753 | release: test-utils 1.0.0-beta.16 | [
{
"change_type": "MODIFY",
"diff": "\"vue\": \"2.x\",\n\"vue-server-renderer\": \"2.x\",\n\"vue-template-compiler\": \"^2.x\",\n- \"@vue/test-utils\": \"1.0.0-beta.15\"\n+ \"@vue/test-utils\": \"1.0.0-beta.16\"\n}\n}\n",
"new_path": "packages/server-test-utils/package.json",
"old_path": "packages/se... | JavaScript | MIT License | vuejs/vue-test-utils | release: test-utils 1.0.0-beta.16 | 1 | release | null |
724,000 | 11.05.2018 08:06:00 | -3,600 | 14595abdfb60175efce58dee048f39fcfcd65a17 | build: server-test-utils 1.0.0-beta.16 | [
{
"change_type": "MODIFY",
"diff": "@@ -56,9 +56,27 @@ function validateSlots (slots) {\n//\n-function addSlotToVm (vm, slotName, slotValue) {\n- var elem;\n- if (typeof slotValue === 'string') {\n+function isSingleElement (slotValue) {\n+ var _slotValue = slotValue.trim();\n+ if (_slotValue[0] !== '<' || _... | JavaScript | MIT License | vuejs/vue-test-utils | build: server-test-utils 1.0.0-beta.16 | 1 | build | null |
217,922 | 11.05.2018 10:13:07 | -7,200 | 593545edb5d7d36d8c280f5e97f28cf2171a3bb8 | style: changed compact alarm delete button for a simple icon button | [
{
"change_type": "MODIFY",
"diff": "class=\"map-marker\"\n[marker]=\"{x:alarm.coords[0], y:alarm.coords[1]}\"></app-map-position>\n<span>{{alarmService.getAlarmTimerString(alarm, time)}}</span>\n- <button mat-button (click)=\"deleteAlarm(alarm)\" color=\"warn\">\n+ <button mat-icon-button (click)=\"deleteAl... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | style: changed compact alarm delete button for a simple icon button | 1 | style | null |
217,922 | 11.05.2018 11:41:59 | -7,200 | b3e6b5fa324781540d3fab89f7e4f0c46839bb98 | fix: slot is now shown | [
{
"change_type": "MODIFY",
"diff": "<mat-list-item [ngClass]=\"{'primary-background': spawned, 'accent-background': !spawned && alerted}\">\n<img mat-list-avatar src=\"{{alarm.icon | icon}}\" alt=\"\">\n- <b mat-line>{{alarm.itemId | itemName | i18n}} <span *ngIf=\"alarm.slot\">({{alarm.slot}})</span> </b>\... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: slot is now shown | 1 | fix | null |
679,913 | 11.05.2018 11:44:33 | -3,600 | eeed25ede077434669aa8160a5a371dab3a2100a | feat(defmulti): add generics, update docs & readme | [
{
"change_type": "MODIFY",
"diff": "@@ -9,7 +9,9 @@ This project is part of the\nDynamically extensible [multiple\ndispatch](https://en.wikipedia.org/wiki/Multiple_dispatch) via user\n-supplied dispatch function, with minimal overhead.\n+supplied dispatch function, with minimal overhead. Provides generics f... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(defmulti): add generics, update docs & readme | 1 | feat | defmulti |
679,913 | 11.05.2018 11:49:32 | -3,600 | fbb721f87342434bac496ed3c4bbc35aa974dc4a | docs: remove dep graph from main readme, update package | [
{
"change_type": "MODIFY",
"diff": "@@ -73,9 +73,7 @@ difficulties, many combining functionality from several packages) in the\n## Dependency graph\n-(This graph is updated automatically after each version update)\n-\n-\n+(The graph has been temporarily removed to ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs: remove dep graph from main readme, update package | 1 | docs | null |
730,413 | 11.05.2018 13:13:09 | 14,400 | c05b7bf2f36e8311d114ec132dcf0eff5d8b8f37 | fix(widget-recents): recent widget crash on undefined lastActivity | [
{
"change_type": "MODIFY",
"diff": "@@ -519,7 +519,7 @@ export class RecentsWidget extends Component {\n// Get Activity Text for space\nlet activityText;\n- const {isDecrypting, latestActivity} = space;\n+ const {isDecrypting, latestActivity = {}} = space;\nif (!isDecrypting) {\nconst {actorName: actorName ... | JavaScript | MIT License | webex/react-widgets | fix(widget-recents): recent widget crash on undefined lastActivity | 1 | fix | widget-recents |
448,074 | 11.05.2018 16:13:03 | -7,200 | dfa83f96bad1405f94bc431028544e1cfc47666c | fix: do not disable fullTemplateTypeCheck when ES5 downleveling
In the option was enabled in tsconfig.ngc.json and then
in the option was disabled again when downleveling to ES5.
This then causes to resurface again, which was supposedly
fixed by | [
{
"change_type": "MODIFY",
"diff": "@@ -61,8 +61,7 @@ export const compileNgcTransform: Transform = transformFromPromise(async graph =\n// the options are here, to improve the build time\ndeclaration: false,\ndeclarationDir: undefined,\n- skipMetadataEmit: true,\n- fullTemplateTypeCheck: false\n+ skipMetada... | TypeScript | MIT License | ng-packagr/ng-packagr | fix: do not disable fullTemplateTypeCheck when ES5 downleveling (#860)
In #826 the option was enabled in tsconfig.ngc.json and then
in #812 the option was disabled again when downleveling to ES5.
This then causes #822 to resurface again, which was supposedly
fixed by #826. | 1 | fix | null |
821,196 | 11.05.2018 16:14:45 | 25,200 | 2b28a35d2ab39bf3410dcf9bf65f35c564827e39 | fix: use author for license | [
{
"change_type": "MODIFY",
"diff": "\"bugs\": \"https://github.com/oclif/oclif/issues\",\n\"dependencies\": {\n\"@oclif/command\": \"^1.4.21\",\n- \"@oclif/config\": \"^1.6.17\",\n- \"@oclif/errors\": \"^1.0.11\",\n+ \"@oclif/config\": \"^1.6.18\",\n+ \"@oclif/errors\": \"^1.0.12\",\n\"@oclif/plugin-help\":... | TypeScript | MIT License | oclif/oclif | fix: use author for license | 1 | fix | null |
821,196 | 11.05.2018 16:24:21 | 25,200 | 2e35528a7e0f32a67230c78029772deca760a07d | fix: move tslib to dependencies | [
{
"change_type": "MODIFY",
"diff": "@@ -422,13 +422,15 @@ class App extends Generator {\n)\n}\nif (this.ts) {\n+ dependencies.push(\n+ 'tslib@^1',\n+ )\ndevDependencies.push(\n'@types/chai@^4',\n'@types/mocha@^5',\n'@types/node@^10',\n'typescript@^2.8',\n'ts-node@^6',\n- 'tslib@^1',\n)\nif (this.tslint) {\n... | TypeScript | MIT License | oclif/oclif | fix: move tslib to dependencies | 1 | fix | null |
791,690 | 11.05.2018 16:44:06 | 25,200 | d3f1b3ad354cbafbeac8b93e0ada7ca7223fa5bd | report: minimum time scale for opportunities & filmstrip | [
{
"change_type": "MODIFY",
"diff": "@@ -19,7 +19,7 @@ class UnusedCSSRules extends ByteEfficiencyAudit {\nstatic get meta() {\nreturn {\nname: 'unused-css-rules',\n- description: 'Unused CSS rules',\n+ description: 'Defer unused CSS',\nscoreDisplayMode: ByteEfficiencyAudit.SCORING_MODES.NUMERIC,\nhelpText: ... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | report: minimum time scale for opportunities & filmstrip (#5183) | 1 | report | null |
791,834 | 11.05.2018 17:07:52 | 25,200 | d8c26be83f01ac7cfe4fb2e3b0863f137203b296 | tests(viewer): upgrade pptr to handle new CSSOM use in the report | [
{
"change_type": "MODIFY",
"diff": "@@ -49,6 +49,12 @@ class Logger {\n*/\nerror(msg) {\nthis.log(msg);\n+\n+ // Rethrow to make sure it's auditable as an error, but in a setTimeout so page\n+ // recovers gracefully and user can try loading a report again.\n+ setTimeout(_ => {\n+ throw new Error(msg);\n+ },... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | tests(viewer): upgrade pptr to handle new CSSOM use in the report (#5191) | 1 | tests | viewer |
791,690 | 11.05.2018 18:16:09 | 25,200 | 61e3403153012ec9a7b1612753ae625a78b05be4 | core(uses-preload): prevent infinite loop | [
{
"change_type": "MODIFY",
"diff": "@@ -62,10 +62,9 @@ class UsesRelPreloadAudit extends Audit {\n* @param {Set<string>} urls The array of byte savings results per resource\n* @param {LH.Gatherer.Simulation.GraphNode} graph\n* @param {LH.Gatherer.Simulation.Simulator} simulator\n- * @param {LH.WebInspector.... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(uses-preload): prevent infinite loop (#5184) | 1 | core | uses-preload |
730,412 | 11.05.2018 21:20:13 | 0 | a7577a08a9d72362346291c52b20e1c0f6c656e9 | chore(release): 0.1.298 | [
{
"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+<a name=\"0.1.298\"></a>\n+## [0.1.298](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.298 | 1 | chore | release |
217,922 | 11.05.2018 22:15:46 | -7,200 | 32df513383216fbd5913e7f90d487297c75d236e | chore: swapped default Craftsmanship and default Control | [
{
"change_type": "MODIFY",
"diff": "@@ -233,8 +233,8 @@ export class SimulatorComponent implements OnInit, OnDestroy {\nif (userSet === undefined && this.selectedSet === undefined) {\nuserSet = {\nilvl: 0,\n- control: 1500,\n- craftsmanship: 1350,\n+ control: 1350,\n+ craftsmanship: 1500,\ncp: 474,\njobId: ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: swapped default Craftsmanship and default Control | 1 | chore | null |
217,922 | 11.05.2018 23:22:10 | -7,200 | 1a9b989c63fa2fec5a7714c6ed4c8024ca46bd43 | fix(mobile): fixed a bug with sidebar not scrollable on mobile view | [
{
"change_type": "MODIFY",
"diff": "}\nmat-sidenav-container {\nheight: calc(100vh - 64px);\n+ mat-list-item {\n+ touch-action: auto !important;\n+ }\n.mat-sidenav {\ntransition: all .4s cubic-bezier(0.25, 0.8, 0.25, 1);\n&.compact {\n",
"new_path": "src/app/app.component.scss",
"old_path": "src/app... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(mobile): fixed a bug with sidebar not scrollable on mobile view | 1 | fix | mobile |
679,913 | 11.05.2018 23:50:06 | -3,600 | 9b38860468e7fefe98593a424a1e16dca1237968 | refactor(api): update interfaces, add docs
BREAKING CHANGE: IBind, IEnable now include generics,
update IIndexed, IMeta, ISet, IStack
add IInto
add IImmutableSet
add IImmutableStack
minor update IEnabled mixin | [
{
"change_type": "MODIFY",
"diff": "+export const DEFAULT_EPS = 1e-6;\n+\n+export const EVENT_ALL = \"*\";\n+export const EVENT_ENABLE = \"enable\";\n+export const EVENT_DISABLE = \"disable\";\n+\n+/**\n+ * Generic 2-element comparator function type alias. Must follow this\n+ * contract and return:\n+ *\n+ ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(api): update interfaces, add docs
BREAKING CHANGE: IBind, IEnable now include generics,
update IIndexed, IMeta, ISet, IStack
- add IInto
- add IImmutableSet
- add IImmutableStack
- minor update IEnabled mixin | 1 | refactor | api |
679,913 | 12.05.2018 00:03:18 | -3,600 | 67f0e546174261122a082346711106fff9fa485a | refactor(dcons): update pop()
BREAKING CHANGE: due to update, pop() now returns
popped value instead of the list itself
minor other refactoring | [
{
"change_type": "MODIFY",
"diff": "@@ -316,9 +316,9 @@ export class DCons<T> implements\n}\n}\n- pop(): DCons<T> {\n+ pop() {\nconst cell = this.tail;\n- if (cell) {\n+ !cell && illegalState(\"can't pop, empty\");\nthis.tail = cell.prev;\nif (this.tail) {\ndelete this.tail.next;\n@@ -326,18 +326,15 @@ expo... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(dcons): update pop()
BREAKING CHANGE: due to @thi.ng/api/IStack update, pop() now returns
popped value instead of the list itself
- minor other refactoring | 1 | refactor | dcons |
791,921 | 12.05.2018 00:52:12 | -7,200 | 9a50955b120d8f895564cbf53fbb0cad3dc7fa90 | report(dom-size): use correct learn more link | [
{
"change_type": "MODIFY",
"diff": "@@ -37,7 +37,7 @@ class DOMSize extends Audit {\n`depth < ${MAX_DOM_TREE_DEPTH} elements and fewer than ${MAX_DOM_TREE_WIDTH} ` +\n'children/parent element. A large DOM can increase memory usage, cause longer ' +\n'[style calculations](https://developers.google.com/web/fu... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | report(dom-size): use correct learn more link (#5192) | 1 | report | dom-size |
791,676 | 12.05.2018 01:36:40 | -7,200 | ba713e4b8024a426befea9bc001e5bdcdc118a4f | report(header): fix stacking contexts within header | [
{
"change_type": "MODIFY",
"diff": "@@ -234,6 +234,8 @@ class ReportUIFeatures {\nscoresContainer.style.marginBottom = `${delta}px`;\nthis.toolbar.style.transform = `translateY(${headerTransitionHeightDiff *\nanimateScrollPercentage}px)`;\n+ this.exportButton.parentElement.style.transform = `translateY(${he... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | report(header): fix stacking contexts within header (#5185) | 1 | report | header |
679,913 | 12.05.2018 20:03:38 | -3,600 | 6ff48a415104206df083e467dc9d91ec0c7b6b69 | docs(defmulti): update readme | [
{
"change_type": "MODIFY",
"diff": "@@ -11,7 +11,11 @@ Dynamically extensible [multiple\ndispatch](https://en.wikipedia.org/wiki/Multiple_dispatch) via user\nsupplied dispatch function, with minimal overhead. Provides generics for\ntype checking up to 8 args, but generally works with any number of\n-argumen... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(defmulti): update readme | 1 | docs | defmulti |
679,913 | 12.05.2018 23:03:43 | -3,600 | feca566632d0ce5aa16e9729050e6f756515a1f8 | refactor(hiccup): fix add support for context object
BREAKING CHANGE: component functions now take a global context object as
first argument (like w/
update serialize() to accept & pass optional context
add support for component objects
add/update tests | [
{
"change_type": "MODIFY",
"diff": "@@ -8,9 +8,10 @@ import { TAG_REGEXP, VOID_TAGS } from \"./api\";\nimport { css } from \"./css\";\n/**\n- * Recursively normalizes and serializes given tree as HTML/SVG/XML string.\n- * Expands any embedded component functions with their results. Each node of the\n- * inp... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(hiccup): fix #19, add support for context object
BREAKING CHANGE: component functions now take a global context object as
first argument (like w/ @thi.ng/hdom)
- update serialize() to accept & pass optional context
- add support for component objects
- add/update tests | 1 | refactor | hiccup |
679,913 | 12.05.2018 23:05:07 | -3,600 | b1cb7d9a2192558ebc1f083ca0781d78882eba70 | perf(hiccup): update css()
use string concat (~2.5x faster)
skip null values | [
{
"change_type": "MODIFY",
"diff": "import { isFunction } from \"@thi.ng/checks/is-function\";\nexport const css = (rules: any) => {\n- const css = [];\n+ let css = \"\", v;\nfor (let r in rules) {\n- if (rules.hasOwnProperty(r)) {\n- let v = rules[r];\n+ v = rules[r];\nif (isFunction(v)) {\nv = v(rules);\n... | TypeScript | Apache License 2.0 | thi-ng/umbrella | perf(hiccup): update css()
- use string concat (~2.5x faster)
- skip null values | 1 | perf | hiccup |
679,913 | 13.05.2018 02:17:01 | -3,600 | 396faec8884159e2621431341e6356a4d404e0ba | refactor(hiccup-svg): rename svgdoc => svg
BREAKING CHANGE: rename svgdoc => svg | [
{
"change_type": "MODIFY",
"diff": "@@ -35,7 +35,8 @@ import * as fs from \"fs\";\nfs.writeFileSync(\"hello.svg\",\nserialize(\n- svg.svgdoc({width: 100, height: 100},\n+ svg.svg(\n+ {width: 100, height: 100},\nsvg.defs(svg.linearGradient(\"grad\", 0, 0, 0, 1, [[0, \"red\"], [1, \"blue\"]])),\nsvg.circle([5... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(hiccup-svg): rename svgdoc => svg
BREAKING CHANGE: rename svgdoc => svg | 1 | refactor | hiccup-svg |
821,196 | 13.05.2018 10:38:10 | 25,200 | 69c0e3e4532b10e27f8c13a3075673a2a6aa2a1b | fix: flush stdout on exit | [
{
"change_type": "MODIFY",
"diff": "\"bin\": \"./bin/run\",\n\"bugs\": \"https://github.com/oclif/oclif/issues\",\n\"dependencies\": {\n- \"@oclif/command\": \"^1.4.21\",\n+ \"@oclif/command\": \"^1.4.28\",\n\"@oclif/config\": \"^1.6.18\",\n- \"@oclif/errors\": \"^1.0.12\",\n+ \"@oclif/errors\": \"^1.1.1\",... | TypeScript | MIT License | oclif/oclif | fix: flush stdout on exit | 1 | fix | null |
217,922 | 13.05.2018 12:01:13 | -7,200 | cb718aa768630cbc6664e3299b601ab671b09dab | fix(simulator): fixed an issue with users having no gearsets | [
{
"change_type": "MODIFY",
"diff": "@@ -186,7 +186,7 @@ export class SimulatorComponent implements OnInit, OnDestroy {\n.do(user => this.userData = user)\n.mergeMap(user => {\nif (user.anonymous) {\n- return Observable.of(user.gearSets)\n+ return Observable.of([])\n}\nreturn this.dataService.getGearsets(use... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(simulator): fixed an issue with users having no gearsets | 1 | fix | simulator |
679,913 | 13.05.2018 12:47:31 | -3,600 | 373701b0a9593d2094e5cf644f0a5efc2641e478 | feat(pointfree): add execjs for host calls, update readme | [
{
"change_type": "MODIFY",
"diff": "@@ -334,6 +334,25 @@ pf.runU(\n// 100\n```\n+#### Quotations as vanilla JS function calls\n+\n+Quoations can be used to define (or dynamically construct) JS function\n+calls. For that a quotation needs to take the form of an\n+[S-expression](https://en.wikipedia.org/wiki/... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(pointfree): add execjs for host calls, update readme | 1 | feat | pointfree |
679,913 | 13.05.2018 13:03:37 | -3,600 | dc775404b364faff02b1ad0f57885b8291adfef4 | docs(hiccup-svg): resolve update readme, add invocation notes
BREAKING CHANGE: technically identical to previous version, however
due to breaking changes and new context support in
SVG functions MUST be invoked directly now and do not support lazy
evaluation anymore. see notice in readme. | [
{
"change_type": "MODIFY",
"diff": "@@ -16,6 +16,21 @@ This package's functionality was formerly part of\n[@thi.ng/hdom-components](https://github.com/thi-ng/umbrella/tree/master/packages/hdom),\nbut has been extracted to remain more focused.\n+### Important\n+\n+The functions provided here do produce valid... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(hiccup-svg): resolve #19, update readme, add invocation notes
BREAKING CHANGE: technically identical to previous version, however
due to breaking changes and new context support in @thi.ng/hiccup,
SVG functions MUST be invoked directly now and do not support lazy
evaluation anymore. see notice in readme. | 1 | docs | hiccup-svg |
679,913 | 13.05.2018 13:10:00 | -3,600 | 67015ce96ac86198dcc29911b84c539faf5bdc09 | refactor(examples): update svg examples | [
{
"change_type": "MODIFY",
"diff": "\"@thi.ng/hiccup-svg\": \"latest\",\n\"@thi.ng/pointfree\": \"latest\",\n\"@thi.ng/pointfree-lang\": \"latest\"\n+ },\n+ \"devDependencies\": {\n+ \"typescript\": \"^2.8.3\"\n}\n}\n\\ No newline at end of file\n",
"new_path": "examples/pointfree-svg/package.json",
... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(examples): update svg examples | 1 | refactor | examples |
679,913 | 13.05.2018 15:30:49 | -3,600 | 644d1ffe61bf3200e0b2c6fefca6d777cc8f6bf9 | docs(hdom): update readme example | [
{
"change_type": "MODIFY",
"diff": "-import { start } from \"@thi.ng/hdom\";\n+import * as hdom from \"@thi.ng/hdom\";\n// stateless component w/ params\n// the first arg is an auto-injected context object\n@@ -17,4 +17,9 @@ const app = () => {\nreturn [\"div#app\", [greeter, \"world\"], counter(), counter(... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(hdom): update readme example | 1 | docs | hdom |
679,913 | 14.05.2018 02:05:28 | -3,600 | 5e72970170e28e39574bf2aa503db418d62759d0 | feat(interceptors): update dispatch() / dispatchNow()
add support for mutliple events to be dispatched
update doc strings | [
{
"change_type": "MODIFY",
"diff": "@@ -46,8 +46,8 @@ export interface Event extends Array<any> {\nexport interface IDispatch {\nreadonly state: ReadonlyAtom<any>;\n- dispatch(event: Event);\n- dispatchNow(event: Event);\n+ dispatch(...event: Event[]);\n+ dispatchNow(...event: Event[]);\ndispatchLater(event... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(interceptors): update dispatch() / dispatchNow()
- add support for mutliple events to be dispatched
- update doc strings | 1 | feat | interceptors |
679,913 | 14.05.2018 02:22:12 | -3,600 | 6661fc3ae2b2666121477576234b80f2534ee7b8 | feat(examples): add hdom-dropdown example | [
{
"change_type": "ADD",
"diff": "+node_modules\n+yarn.lock\n+*.js\n",
"new_path": "examples/hdom-dropdown/.gitignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+# hdom-dropdown\n+\n+[Live demo](http://demo.thi.ng/umbrella/hdom-dropdown/)\n+\n+```\n+git clone https://github.co... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): add hdom-dropdown example | 1 | feat | examples |
807,849 | 14.05.2018 09:41:50 | 25,200 | 8b04c723c97c873ad4604d300d22ef22965f49b4 | chore: bump runtime versions | [
{
"change_type": "MODIFY",
"diff": "}\n},\n\"clone\": {\n- \"version\": \"1.0.3\",\n- \"resolved\": \"https://registry.npmjs.org/clone/-/clone-1.0.3.tgz\",\n- \"integrity\": \"sha1-KY1+IjFmD0DAA8LtMUDezz9TCF8=\"\n+ \"version\": \"1.0.4\",\n+ \"resolved\": \"https://registry.npmjs.org/clone/-/clone-1.0.4.tgz... | JavaScript | MIT License | lerna/lerna | chore: bump runtime versions | 1 | chore | null |
730,413 | 14.05.2018 10:29:53 | 14,400 | 7a290590a6fc879bff58294b10daaa090745075b | test(journeys): update recents tests for new list classes | [
{
"change_type": "MODIFY",
"diff": "@@ -4,7 +4,8 @@ import waitForPromise from '../../wait-for-promise';\nexport const elements = {\nrecentsWidget: '.ciscospark-spaces-list-wrapper',\n- firstSpace: '.space-item:first-child',\n+ listContainer: '.ciscospark-spaces-list',\n+ firstSpace: '.ciscospark-spaces-lis... | JavaScript | MIT License | webex/react-widgets | test(journeys): update recents tests for new list classes | 1 | test | journeys |
807,849 | 14.05.2018 11:26:18 | 25,200 | 079d87371a14938122fe271d780c591c759fbbcd | feat: Upgrade to fs-extra 6 | [
{
"change_type": "MODIFY",
"diff": "\"@lerna/validation-error\": \"file:../../core/validation-error\",\n\"camelcase\": \"^4.1.0\",\n\"dedent\": \"^0.7.0\",\n- \"fs-extra\": \"^5.0.0\",\n+ \"fs-extra\": \"^6.0.1\",\n\"globby\": \"^8.0.1\",\n\"init-package-json\": \"^1.10.3\",\n\"npm-package-arg\": \"^6.0.0\"... | JavaScript | MIT License | lerna/lerna | feat: Upgrade to fs-extra 6 | 1 | feat | null |
679,913 | 14.05.2018 12:46:33 | -3,600 | 2076d25b84bddb96fcb5a9d6104fda834597918a | docs(resolve-map): add readme example | [
{
"change_type": "MODIFY",
"diff": "@@ -8,7 +8,9 @@ This project is part of the\n## About\nDAG resolution of vanilla objects & arrays with internally linked\n-values.\n+values. This is useful for expressing complex configurations with\n+derived values or computing interrelated values without having to\n+spe... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(resolve-map): add readme example | 1 | docs | resolve-map |
679,913 | 14.05.2018 12:47:13 | -3,600 | 4591d5d56b9b8215cb1d40569cb7daceca2e137a | minor(examples): update dropdown html | [
{
"change_type": "MODIFY",
"diff": "</head>\n<body>\n+ <div class=\"sans-serif ma2 pa3 bg-light-gray\">WIP customizable & scrollable stateless dropdown component.\n+ <a href=\"https://github.com/thi-ng/umbrella/tree/master/examples/hdom-dropdown\">Source</a>\n+ </div>\n<div id=\"app\"></div>\n<script ty... | TypeScript | Apache License 2.0 | thi-ng/umbrella | minor(examples): update dropdown html | 1 | minor | examples |
724,167 | 14.05.2018 13:28:51 | 14,400 | 934745b7bb89c60d926622250d450bee0fdbf598 | fix: do not deep merge array data | [
{
"change_type": "MODIFY",
"diff": "@@ -421,7 +421,8 @@ export default class Wrapper implements BaseWrapper {\n}\nObject.keys(data).forEach((key) => {\n- if (typeof data[key] === 'object' && data[key] !== null) {\n+ if (typeof data[key] === 'object' && data[key] !== null &&\n+ !Array.isArray(data[key])) {\n... | JavaScript | MIT License | vuejs/vue-test-utils | fix: do not deep merge array data (#604) | 1 | fix | null |
679,913 | 14.05.2018 14:39:03 | -3,600 | 306625df654f61f240eacdfe6f664c853487843c | feat(transducers): add wrap*() iterators
add wrapBoth()
add wrapLeft()
add wrapRight() | [
{
"change_type": "ADD",
"diff": "+import { illegalArgs } from \"@thi.ng/errors/illegal-arguments\";\n+\n+/**\n+ * Combination of `wrapLeft()` and `wrapRight()`. Yields iterator of\n+ * `src` with the last `n` values of `src` prepended at the beginning\n+ * and the first `n` values appended at the end. Throw... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(transducers): add wrap*() iterators
- add wrapBoth()
- add wrapLeft()
- add wrapRight() | 1 | feat | transducers |
679,913 | 14.05.2018 14:40:01 | -3,600 | 2bebba287afd0e7bdd5283b1c61042ca3a316dd3 | feat(transducers): add filterFuzzy() xform
add fuzzyMatch() predicate | [
{
"change_type": "ADD",
"diff": "+import { Predicate2 } from \"@thi.ng/api/api\";\n+import { equiv } from \"@thi.ng/equiv\";\n+\n+/**\n+ * Performs a fuzzy search of `query` in `domain` and returns `true` if\n+ * successful. The optional `eq` predicate can be used to customize item\n+ * equality checking. U... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(transducers): add filterFuzzy() xform
- add fuzzyMatch() predicate | 1 | feat | transducers |
679,913 | 14.05.2018 14:41:05 | -3,600 | fc6acd1681b7927e62817ad468b2e8abaca918b6 | chore(transducers): update deps, readme, re-exports | [
{
"change_type": "MODIFY",
"diff": "@@ -7,8 +7,8 @@ This project is part of the\n## About\n-Lightweight transducer implementations for ES6 / TypeScript (~24KB\n-minified, full lib).\n+Lightweight transducer and supporting generators / iterator\n+implementations for ES6 / TypeScript (~8.4KB gzipped, full lib... | TypeScript | Apache License 2.0 | thi-ng/umbrella | chore(transducers): update deps, readme, re-exports | 1 | chore | transducers |
679,913 | 14.05.2018 14:41:48 | -3,600 | 37362dd292bd760ff7caf4ed0f84815f0ce82dab | test(transducers): add fuzzy tests | [
{
"change_type": "ADD",
"diff": "+import * as tx from \"../src\";\n+\n+import * as assert from \"assert\";\n+\n+describe(\"fuzzy\", () => {\n+ it(\"strings\", () => {\n+ const opts = [\"hello\", \"hallo\", \"hey\", \"heyoka\"];\n+ assert.deepEqual(tx.transduce(tx.filterFuzzy(\"hl\"), tx.push(), opts), [\"he... | TypeScript | Apache License 2.0 | thi-ng/umbrella | test(transducers): add fuzzy tests | 1 | test | transducers |
679,913 | 14.05.2018 16:07:17 | -3,600 | e238541fd94071b742705668284698502d588bf1 | refactor(transducers): replace wrapBoth/Left/Right w/ wrap()
deprecate existing wrap*() iters
update docs & readme | [
{
"change_type": "MODIFY",
"diff": "@@ -813,11 +813,7 @@ itself. Returns nothing.\n#### `vals<T>(x: IObjectOf<T>): IterableIterator<T>`\n-#### `wrapBoth<T>(src: T[], n?: number): IterableIterator<T>`\n-\n-#### `wrapLeft<T>(src: T[], n?: number): IterableIterator<T>`\n-\n-#### `wrapRight<T>(src: T[], n?: num... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(transducers): replace wrapBoth/Left/Right w/ wrap()
- deprecate existing wrap*() iters
- update docs & readme | 1 | refactor | transducers |
730,429 | 14.05.2018 17:21:02 | 14,400 | 6661a2f794a7bd14c83bc0fc4414fb5c151c812e | fix(call-data-activity): add support for missing actor | [
{
"change_type": "MODIFY",
"diff": "@@ -84,7 +84,7 @@ export function parseActivityCallData(callData, currentUser) {\nconst callees = participants.filter((p) => !p.isInitiator);\nconst noBodyJoined = callees.every((p) => p.state !== 'LEFT');\n- const actorWasMe = actor.id === currentUser.id;\n+ const actorW... | JavaScript | MIT License | webex/react-widgets | fix(call-data-activity): add support for missing actor | 1 | fix | call-data-activity |
217,922 | 14.05.2018 17:33:48 | -7,200 | 33bc01a04858af548d80d8bf2c17c245eb22165a | fix: gathering location search broken with some strange nodes | [
{
"change_type": "MODIFY",
"diff": "\"firebase\": \"4.10.1\",\n\"grpc\": \"^1.11.3\",\n\"hammerjs\": \"^2.0.8\",\n- \"intl\": \"^1.2.5\",\n\"jwt-decode\": \"^2.2.0\",\n\"ng-drag-drop\": \"^4.0.1\",\n\"ng-push\": \"^0.2.1\",\n",
"new_path": "package.json",
"old_path": "package.json"
},
{
"cha... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: gathering location search broken with some strange nodes | 1 | fix | null |
217,922 | 14.05.2018 17:37:17 | -7,200 | 2095a7cefd644e958aaecbc9531cd19edef226f8 | chore: small typing fix | [
{
"change_type": "MODIFY",
"diff": "@@ -88,7 +88,7 @@ export class UserService extends FirebaseStorage<AppUser> {\nreturn this.af.authState\n.pipe(\nfirst(),\n- mergeMap((user: firebase.User) => {\n+ mergeMap((user) => {\nif ((user === null && !this.loggingIn) || user.uid === undefined) {\nthis.af.auth.sign... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: small typing fix | 1 | chore | null |
217,922 | 14.05.2018 17:41:06 | -7,200 | b4112c094cc7c7edb29c55e9f8247121a9c5b081 | chore: aligning fix with master | [
{
"change_type": "MODIFY",
"diff": "@@ -187,7 +187,7 @@ export class SimulatorComponent implements OnInit, OnDestroy {\ntap(user => this.userData = user),\nmergeMap(user => {\nif (user.anonymous) {\n- return of(user.gearSets)\n+ return of(user.gearSets || [])\n}\nreturn this.dataService.getGearsets(user.lod... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: aligning fix with master | 1 | chore | null |
730,412 | 14.05.2018 19:42:11 | 0 | 104cd2b5e6cd421a96a999d107503cd5c46e2a9a | chore(release): 0.1.299 | [
{
"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+<a name=\"0.1.299\"></a>\n+## [0.1.299](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.299 | 1 | chore | release |
448,063 | 14.05.2018 20:35:56 | -7,200 | c03d6f88feb5daed6172569e83deb6a7ed4d7c8f | fix: analyse exported imports | [
{
"change_type": "ADD",
"diff": "+import { tags } from '@angular-devkit/core';\n+import { expect } from 'chai';\n+import * as ts from 'typescript';\n+import { analyseDependencies, DependencyAnalyser } from './analyse-dependencies-transformer';\n+import { createSourceFile, createSourceText } from '../../test... | TypeScript | MIT License | ng-packagr/ng-packagr | fix: analyse exported imports (#873) | 1 | fix | null |
217,922 | 14.05.2018 20:56:13 | -7,200 | d81755e3e9437dad61b2e04e9a53bf2b17df3025 | chore: more fixes for last angular6 merge | [
{
"change_type": "MODIFY",
"diff": "@@ -313,7 +313,7 @@ export class ItemComponent extends ComponentWithSubscriptions implements OnInit,\n}\ngetCraft(recipeId: string): CraftedBy {\n- if (this.item.craftedBy === undefined) {\n+ if (this.item.craftedBy === undefined || this.item.craftedBy[0].icon === '') {\n... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: more fixes for last angular6 merge | 1 | chore | null |
679,913 | 14.05.2018 21:45:12 | -3,600 | ade96f862a0a82e8c69363867ae5d89aa4cfa7d9 | fix(hdom): component obj lifecycle method thisArg handling | [
{
"change_type": "MODIFY",
"diff": "@@ -32,7 +32,7 @@ export function createDOM(parent: Element, tag: any, insert?: number) {\n}\nconst el = createElement(parent, t, tag[1], insert);\nif ((<any>tag).__init) {\n- (<any>tag).__init.apply(tag, [el, ...(<any>tag).__args]);\n+ (<any>tag).__init.apply((<any>tag).... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(hdom): component obj lifecycle method thisArg handling | 1 | fix | hdom |
217,922 | 14.05.2018 21:49:46 | -7,200 | 010e76ccb1cc39bf28bb417277a1c7af2c3b9e74 | fix: crafter levels are now taken from lodestone profile, will be more reactive to changes | [
{
"change_type": "MODIFY",
"diff": "@@ -9,7 +9,7 @@ import {NgSerializerService} from '@kaiu/ng-serializer';\nimport {SearchFilter} from '../../model/search/search-filter.interface';\nimport {GearSet} from '../../pages/simulator/model/gear-set';\n-import {map, publishReplay, refCount, take} from 'rxjs/opera... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: crafter levels are now taken from lodestone profile, will be more reactive to changes | 1 | fix | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.