author int64 658 755k | date stringdate 2012-06-12 08:34:29 2024-07-22 14:51:21 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods listlengths 1 16 | language stringclasses 20
values | license stringclasses 3
values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
259,868 | 02.02.2023 14:22:45 | 28,800 | 4dee08f3d28ec30209f10c4c448e957d43f96366 | Remove `net` from list of banned gVisor packages.
`net` no longer requires `cgo`:
The `runsc` `go_binary` specifies `pure = True`, which would prevent it
from compiling if it required cgo. | [
{
"change_type": "MODIFY",
"old_path": "CONTRIBUTING.md",
"new_path": "CONTRIBUTING.md",
"diff": "@@ -66,8 +66,6 @@ Rules:\n* Itself.\n* Go standard library.\n- * Except (transitively) package \"net\", which would result in a cgo\n- binary. Use `//pkg/unet` instead.\n* `@org_golang_x_sys//unix:go_de... | Go | Apache License 2.0 | google/gvisor | Remove `net` from list of banned gVisor packages.
`net` no longer requires `cgo`: https://pkg.go.dev/net#hdr-Name_Resolution
The `runsc` `go_binary` specifies `pure = True`, which would prevent it
from compiling if it required cgo.
PiperOrigin-RevId: 506722374 |
259,891 | 03.02.2023 10:01:36 | 28,800 | 533d4435ff215cc06324ea0c229cf52df85fd1e8 | tests: bump timeout to address flakiness
This test flakes on Linux in BuildKite -- see whether it's a timeout problem. | [
{
"change_type": "MODIFY",
"old_path": "test/syscalls/linux/socket_inet_loopback.cc",
"new_path": "test/syscalls/linux/socket_inet_loopback.cc",
"diff": "@@ -736,7 +736,7 @@ TEST_P(SocketInetLoopbackTest, TCPNonBlockingConnectClose) {\n.events = POLLIN | POLLRDHUP,\n};\n// Use a large timeout to acc... | Go | Apache License 2.0 | google/gvisor | tests: bump timeout to address flakiness
This test flakes on Linux in BuildKite -- see whether it's a timeout problem.
PiperOrigin-RevId: 506929923 |
259,975 | 03.02.2023 10:33:42 | 28,800 | 13c7e55e598130398789033402c44013a2a17e45 | Ensure only Upload/Download iperf tests run on buildkite.
The addition of the "Parameterized" version of iperf requires a filter
so that only the original tests run. Otherwise, we get test timeouts. | [
{
"change_type": "MODIFY",
"old_path": ".buildkite/pipeline.yaml",
"new_path": ".buildkite/pipeline.yaml",
"diff": "@@ -485,7 +485,7 @@ steps:\ncommand: make -i benchmark-platforms BENCHMARKS_FILTER=\"Continuous\" BENCHMARKS_SUITE=httpd BENCHMARKS_TARGETS=test/benchmarks/network:httpd_test\n- <<: *b... | Go | Apache License 2.0 | google/gvisor | Ensure only Upload/Download iperf tests run on buildkite.
The addition of the "Parameterized" version of iperf requires a filter
so that only the original tests run. Otherwise, we get test timeouts.
PiperOrigin-RevId: 506938451 |
259,891 | 03.02.2023 11:10:48 | 28,800 | af99fcb280aad1ce9452a20b420890176bc65725 | eventfd: more detailed error message | [
{
"change_type": "MODIFY",
"old_path": "pkg/eventfd/eventfd.go",
"new_path": "pkg/eventfd/eventfd.go",
"diff": "@@ -78,8 +78,8 @@ func (ev Eventfd) Write(val uint64) error {\nif err == unix.EINTR {\ncontinue\n}\n- if n != sizeofUint64 {\n- panic(fmt.Sprintf(\"short write to eventfd: got %d bytes, wa... | Go | Apache License 2.0 | google/gvisor | eventfd: more detailed error message
PiperOrigin-RevId: 506948082 |
259,909 | 03.02.2023 14:57:23 | 28,800 | fc52a6d9ccfa4c523b4ddda05c864e43bc695581 | Give FUSE hard link capabilities and enable the link syscall test. | [
{
"change_type": "MODIFY",
"old_path": "pkg/abi/linux/fuse.go",
"new_path": "pkg/abi/linux/fuse.go",
"diff": "@@ -755,6 +755,32 @@ func (r *FUSESymlinkIn) SizeBytes() int {\nreturn r.Name.SizeBytes() + r.Target.SizeBytes()\n}\n+// FUSELinkIn is the request sent by the kernel to create a hard link.\n... | Go | Apache License 2.0 | google/gvisor | Give FUSE hard link capabilities and enable the link syscall test.
PiperOrigin-RevId: 507001947 |
259,909 | 03.02.2023 15:48:09 | 28,800 | e9471a18ff19bef82761f57725322a89015bc9cd | Enable FUSE rename test.
This adds some permissions checks to kernfs RenameAt that were
missing. | [
{
"change_type": "MODIFY",
"old_path": "pkg/sentry/fsimpl/fuse/inode.go",
"new_path": "pkg/sentry/fsimpl/fuse/inode.go",
"diff": "@@ -461,21 +461,20 @@ func (i *inode) RmDir(ctx context.Context, name string, child kernfs.Inode) erro\n// Rename implements kernfs.Inode.Rename.\nfunc (i *inode) Rename(... | Go | Apache License 2.0 | google/gvisor | Enable FUSE rename test.
This adds some permissions checks to kernfs RenameAt that were
missing.
PiperOrigin-RevId: 507013151 |
259,907 | 05.02.2023 19:33:33 | 28,800 | 09459b203a532c24fbb76cc88484d533356b8b91 | Hide root overlay filestore from container using whiteout. | [
{
"change_type": "MODIFY",
"old_path": "g3doc/user_guide/filesystem.md",
"new_path": "g3doc/user_guide/filesystem.md",
"diff": "@@ -48,11 +48,11 @@ layer (tmpfs) be backed by a host file, so all file data is stored on disk.\nThe newer `--overlay2` flag allows you to achieve these. You can specify\n`... | Go | Apache License 2.0 | google/gvisor | Hide root overlay filestore from container using whiteout.
PiperOrigin-RevId: 507355437 |
259,885 | 06.02.2023 09:11:11 | 28,800 | 56141517243d9694f809f5130fafce50757b93d6 | checkinfo: Also skip vars whose type is a type parameter. | [
{
"change_type": "MODIFY",
"old_path": "tools/checkinfo/checkinfo.go",
"new_path": "tools/checkinfo/checkinfo.go",
"diff": "@@ -73,9 +73,14 @@ func (p *pkg) walkObject(pass *analysis.Pass, obj types.Object) {\ncase *types.PkgName:\n// Don't walk to other packages.\ncase *types.Var:\n+ // Skip if the... | Go | Apache License 2.0 | google/gvisor | checkinfo: Also skip vars whose type is a type parameter.
PiperOrigin-RevId: 507497705 |
259,909 | 06.02.2023 11:21:37 | 28,800 | d4843e167a59f029c41b79390908679029125095 | Enable the stat_times and truncate test for FUSE. | [
{
"change_type": "MODIFY",
"old_path": "pkg/abi/linux/fuse.go",
"new_path": "pkg/abi/linux/fuse.go",
"diff": "package linux\nimport (\n+ \"time\"\n+\n\"gvisor.dev/gvisor/pkg/marshal/primitive\"\n)\n@@ -348,6 +350,24 @@ type FUSEAttr struct {\n_ uint32\n}\n+// ATimeNsec returns the last access time a... | Go | Apache License 2.0 | google/gvisor | Enable the stat_times and truncate test for FUSE.
PiperOrigin-RevId: 507534117 |
259,891 | 06.02.2023 17:28:45 | 28,800 | d5eafb28757c79c8ef077c964add7a26a763ba0f | sharedmem: avoid eventfd close/write race
The dispatch loop could pickup the change to e.stopRequested and close the
eventFD before the call to Notify().
See bug for more detail. | [
{
"change_type": "MODIFY",
"old_path": "pkg/tcpip/link/sharedmem/rx.go",
"new_path": "pkg/tcpip/link/sharedmem/rx.go",
"diff": "@@ -85,8 +85,8 @@ func (r *rx) init(mtu uint32, c *QueueConfig) error {\nreturn nil\n}\n-// cleanup releases all resources allocated during init(). It must only be\n-// cal... | Go | Apache License 2.0 | google/gvisor | sharedmem: avoid eventfd close/write race
The dispatch loop could pickup the change to e.stopRequested and close the
eventFD before the call to Notify().
See bug for more detail.
PiperOrigin-RevId: 507626752 |
260,004 | 07.02.2023 11:06:13 | 28,800 | be5314c5a6aa678ef615b22f106feda58bea0dfb | Allow forcing multicast group protocol mode
Updates | [
{
"change_type": "MODIFY",
"old_path": "pkg/tcpip/network/internal/ip/generic_multicast_protocol.go",
"new_path": "pkg/tcpip/network/internal/ip/generic_multicast_protocol.go",
"diff": "@@ -244,6 +244,7 @@ type protocolMode int\nconst (\nprotocolModeV2 protocolMode = iota\n+ protocolModeV1Forced\npr... | Go | Apache License 2.0 | google/gvisor | Allow forcing multicast group protocol mode
Updates #8346
PiperOrigin-RevId: 507832493 |
259,907 | 07.02.2023 11:07:08 | 28,800 | 8373fb5db8c8f4f4a028c39f0c2cf7e95a7fca80 | Check hard link target's mount compatibility before kernfs.Dentry cast.
Reported-by: | [
{
"change_type": "MODIFY",
"old_path": "pkg/sentry/fsimpl/kernfs/filesystem.go",
"new_path": "pkg/sentry/fsimpl/kernfs/filesystem.go",
"diff": "@@ -362,8 +362,9 @@ func (fs *Filesystem) LinkAt(ctx context.Context, rp *vfs.ResolvingPath, vd vfs.\nreturn err\n}\n- parent.dirMu.Lock()\n- defer parent.d... | Go | Apache License 2.0 | google/gvisor | Check hard link target's mount compatibility before kernfs.Dentry cast.
Reported-by: syzbot+65dcd89bab032fdb8ac8@syzkaller.appspotmail.com
PiperOrigin-RevId: 507832777 |
259,891 | 07.02.2023 11:27:02 | 28,800 | efea4074717caf58510dbb1e8b765fa9ba46bd30 | sharedmem: clarify cleanup in comments | [
{
"change_type": "MODIFY",
"old_path": "pkg/tcpip/link/sharedmem/sharedmem.go",
"new_path": "pkg/tcpip/link/sharedmem/sharedmem.go",
"diff": "@@ -191,6 +191,9 @@ type endpoint struct {\n// New creates a new shared-memory-based endpoint. Buffers will be broken up\n// into buffers of \"bufferSize\" by... | Go | Apache License 2.0 | google/gvisor | sharedmem: clarify cleanup in comments
PiperOrigin-RevId: 507838107 |
260,004 | 07.02.2023 12:16:56 | 28,800 | c3ff31ef8cd2bcd9c6652623f5d1b0748e6e61ba | Allow setting MLD version
Updates | [
{
"change_type": "MODIFY",
"old_path": "pkg/tcpip/network/internal/ip/generic_multicast_protocol.go",
"new_path": "pkg/tcpip/network/internal/ip/generic_multicast_protocol.go",
"diff": "@@ -244,7 +244,7 @@ type protocolMode int\nconst (\nprotocolModeV2 protocolMode = iota\n- protocolModeV1Forced\n+ ... | Go | Apache License 2.0 | google/gvisor | Allow setting MLD version
Updates #8346
PiperOrigin-RevId: 507851551 |
259,909 | 07.02.2023 14:35:12 | 28,800 | 1da6444d05e9f9a734c0e3c32cd9b2d3bd3dd3ec | Enable unlink test for FUSE. | [
{
"change_type": "MODIFY",
"old_path": "pkg/sentry/fsimpl/kernfs/filesystem.go",
"new_path": "pkg/sentry/fsimpl/kernfs/filesystem.go",
"diff": "@@ -362,9 +362,8 @@ func (fs *Filesystem) LinkAt(ctx context.Context, rp *vfs.ResolvingPath, vd vfs.\nreturn err\n}\n- if rp.Mount() != vd.Mount() {\n- retu... | Go | Apache License 2.0 | google/gvisor | Enable unlink test for FUSE.
PiperOrigin-RevId: 507888060 |
260,004 | 07.02.2023 17:15:19 | 28,800 | 6080f5725e576b7a1289ba9b95743fadc9c248bc | Allow setting IGMP version
Updates | [
{
"change_type": "MODIFY",
"old_path": "pkg/tcpip/network/ipv4/igmp.go",
"new_path": "pkg/tcpip/network/ipv4/igmp.go",
"diff": "@@ -19,7 +19,6 @@ import (\n\"math\"\n\"time\"\n- \"gvisor.dev/gvisor/pkg/atomicbitops\"\n\"gvisor.dev/gvisor/pkg/bufferv2\"\n\"gvisor.dev/gvisor/pkg/tcpip\"\n\"gvisor.dev/... | Go | Apache License 2.0 | google/gvisor | Allow setting IGMP version
Updates #8346
PiperOrigin-RevId: 507927598 |
259,907 | 08.02.2023 09:32:08 | 28,800 | 6d4f68ec4f242facf6bb733708e2aaa4c0773dae | Consistently RetryEINTR(connect) in tcp_socket_test.
connect(2) can block and is susceptible to being interrupted by a signal.
This is to prevents flakes like | [
{
"change_type": "MODIFY",
"old_path": "test/syscalls/linux/tcp_socket.cc",
"new_path": "test/syscalls/linux/tcp_socket.cc",
"diff": "@@ -196,10 +196,12 @@ TEST_P(TcpSocketTest, ConnectOnEstablishedConnection) {\nASSERT_NO_ERRNO_AND_VALUE(InetLoopbackAddr(GetParam()));\nsocklen_t addrlen = sizeof(ad... | Go | Apache License 2.0 | google/gvisor | Consistently RetryEINTR(connect) in tcp_socket_test.
connect(2) can block and is susceptible to being interrupted by a signal.
This is to prevents flakes like
https://buildkite.com/gvisor/pipeline/builds/19195#01862e07-a7b6-4a5e-8822-690512569abe.
PiperOrigin-RevId: 508102460 |
259,868 | 08.02.2023 10:43:58 | 28,800 | f08082fbd73bb39ead3b3d4519368d55a157e1de | runsc metric-server: Add flag to tolerate absence of `--root` directory. | [
{
"change_type": "MODIFY",
"old_path": "runsc/cmd/metric_server.go",
"new_path": "runsc/cmd/metric_server.go",
"diff": "@@ -231,6 +231,7 @@ func queryMetrics(ctx context.Context, sand *sandbox.Sandbox, verifier *promethe\n// MetricServer implements subcommands.Command for the \"metric-server\" comma... | Go | Apache License 2.0 | google/gvisor | runsc metric-server: Add flag to tolerate absence of `--root` directory.
PiperOrigin-RevId: 508122696 |
260,004 | 08.02.2023 16:46:07 | 28,800 | a5ac059e279b602ad42caeb4c48d09cb566e6eba | Return current IGMP/MLD version
Updates | [
{
"change_type": "MODIFY",
"old_path": "pkg/tcpip/network/internal/ip/generic_multicast_protocol.go",
"new_path": "pkg/tcpip/network/internal/ip/generic_multicast_protocol.go",
"diff": "@@ -292,38 +292,45 @@ type GenericMulticastProtocolState struct {\nstateChangedReportV2TimerSet bool\n}\n+// GetV1... | Go | Apache License 2.0 | google/gvisor | Return current IGMP/MLD version
Updates #8346
PiperOrigin-RevId: 508218820 |
259,853 | 08.02.2023 23:58:37 | 28,800 | 60bae95f0ade4004e6fa14eda956bbae78d96679 | test: address comments from cl/504951567 | [
{
"change_type": "MODIFY",
"old_path": "test/syscalls/linux/BUILD",
"new_path": "test/syscalls/linux/BUILD",
"diff": "@@ -2140,6 +2140,7 @@ cc_binary(\n\"//test/util:test_main\",\n\"//test/util:test_util\",\n\"//test/util:thread_util\",\n+ \"@com_google_absl//absl/algorithm:container\",\n\"@com_goog... | Go | Apache License 2.0 | google/gvisor | test: address comments from cl/504951567
PiperOrigin-RevId: 508289325 |
260,004 | 09.02.2023 12:40:16 | 28,800 | 89cc675c292b4c06d6b3651671478c8d272490f9 | Don't transition from V1 -> V2 unless requested
Leave the generic multicast protocol in V1 mode even when transitioning
all groups to non-member state (when interface is disabled).
Updates | [
{
"change_type": "MODIFY",
"old_path": "pkg/tcpip/network/internal/ip/generic_multicast_protocol.go",
"new_path": "pkg/tcpip/network/internal/ip/generic_multicast_protocol.go",
"diff": "@@ -397,14 +397,15 @@ func (g *GenericMulticastProtocolState) MakeAllNonMemberLocked() {\ngroupAddress,\n)\n}\n- c... | Go | Apache License 2.0 | google/gvisor | Don't transition from V1 -> V2 unless requested
Leave the generic multicast protocol in V1 mode even when transitioning
all groups to non-member state (when interface is disabled).
Updates #8346
PiperOrigin-RevId: 508448263 |
259,907 | 10.02.2023 13:38:52 | 28,800 | 1beb3e2b251df5b59d817d90831805ba7d44b7ff | Check hard link target's mount compatibility before kernfs.Dentry cast. Again.
commit mistakenly reverted commit Make the same
commit again. This time add a regression test to avoid such a thing from
happening again.
Reported-by:
Reported-by: | [
{
"change_type": "MODIFY",
"old_path": "pkg/sentry/fsimpl/kernfs/filesystem.go",
"new_path": "pkg/sentry/fsimpl/kernfs/filesystem.go",
"diff": "@@ -362,8 +362,9 @@ func (fs *Filesystem) LinkAt(ctx context.Context, rp *vfs.ResolvingPath, vd vfs.\nreturn err\n}\n- parent.dirMu.Lock()\n- defer parent.d... | Go | Apache License 2.0 | google/gvisor | Check hard link target's mount compatibility before kernfs.Dentry cast. Again.
1da6444d05e9 commit mistakenly reverted commit 8373fb5db8c8. Make the same
commit again. This time add a regression test to avoid such a thing from
happening again.
Reported-by: syzbot+05b6f8c23f6cd54deb2c@syzkaller.appspotmail.com
Reported-by: syzbot+c12cc3a057f3b75eb3cf@syzkaller.appspotmail.com
PiperOrigin-RevId: 508743552 |
530,388 | 05.01.2017 12:12:27 | -19,080 | 48e8995cb35f4d1e783af1d0de9a764c0a7cf1c1 | chore: update dependencies and tasks | [
{
"change_type": "MODIFY",
"old_path": "package.json",
"new_path": "package.json",
"diff": "\"@angular/forms\": \"^2.3.0\",\n\"@angular/http\": \"^2.3.0\",\n\"@angular/platform-browser\": \"^2.3.0\",\n- \"@angular/platform-browser-dynamic\": \"^2.3.0\",\n- \"@angular/router\": \"^3.3.0\",\n\"core-js... | TypeScript | MIT License | promact/md2 | chore: update dependencies and tasks |
530,388 | 05.01.2017 18:09:20 | -19,080 | 53844d5acc56b7934d3c2541d061c4d647a0b819 | chore: update gulp task constants | [
{
"change_type": "MODIFY",
"old_path": "tools/gulp/constants.ts",
"new_path": "tools/gulp/constants.ts",
"diff": "@@ -31,7 +31,7 @@ export const LICENSE_BANNER = `/**\n*/`;\nexport const NPM_VENDOR_FILES = [\n- '@angular', 'core-js/client', 'rxjs', 'systemjs/dist', 'zone.js/dist'\n+ '@angular', 'cor... | TypeScript | MIT License | promact/md2 | chore: update gulp task constants |
530,388 | 05.01.2017 18:10:32 | -19,080 | 29a53da4d8ca1420ac469c20a85d52577695d53e | feat(tooltip) multiple line support | [
{
"change_type": "MODIFY",
"old_path": "src/lib/tooltip/tooltip.scss",
"new_path": "src/lib/tooltip/tooltip.scss",
"diff": "-$md2-tooltip-height: 22px;\n+$md2-tooltip-target-height: 22px;\n+$md2-tooltip-font-size: 10px;\n$md2-tooltip-margin: 14px;\n-$md2-tooltip-padding: 8px;\n+$md2-tooltip-horizont... | TypeScript | MIT License | promact/md2 | feat(tooltip) multiple line support |
530,388 | 05.01.2017 18:11:18 | -19,080 | ffaa04d386121c82c21a0b73c41b11f758693dda | chore: update tsconfig and dependencies | [
{
"change_type": "MODIFY",
"old_path": "src/lib/package.json",
"new_path": "src/lib/package.json",
"diff": "\"homepage\": \"https://github.com/Promact/md2#readme\",\n\"author\": \"Dharmesh Pipariya <pipariyadharmesh@gmail.com>\",\n\"peerDependencies\": {\n- \"@angular/core\": \"^2.3.0\",\n- \"@angul... | TypeScript | MIT License | promact/md2 | chore: update tsconfig and dependencies |
530,388 | 05.01.2017 18:12:21 | -19,080 | 59e4c3144ba8b3426e06c5e892d569d7a361d55d | chore: update script tasks | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "scripts/browserstack/start-tunnel.sh",
"diff": "+#!/bin/bash\n+\n+set -e -o pipefail\n+\n+# Workaround for Travis CI cookbook https://github.com/travis-ci/travis-ci/issues/4862,\n+# where $PATH will be extended with relative paths to the NPM bin... | TypeScript | MIT License | promact/md2 | chore: update script tasks |
530,388 | 07.01.2017 10:00:30 | -19,080 | a9cb10a6ce3fdcccc970329c1baf8bb9646fde0f | chore: update select structure | [
{
"change_type": "MODIFY",
"old_path": "src/lib/select/select.html",
"new_path": "src/lib/select/select.html",
"diff": "<div class=\"md2-select-trigger\" cdk-overlay-origin (click)=\"toggle()\" #origin=\"cdkOverlayOrigin\" #trigger>\n- <span class=\"md2-select-placeholder\" [class.md2-floating-place... | TypeScript | MIT License | promact/md2 | chore: update select structure |
530,388 | 07.01.2017 10:43:31 | -19,080 | 20ff1f89dce479b131f5953957dfa6a4a3491d11 | chore(pagination) update style | [
{
"change_type": "MODIFY",
"old_path": "src/lib/data-table/pagination.scss",
"new_path": "src/lib/data-table/pagination.scss",
"diff": "+$primary: #106cc8 !default;\n+\nmd2-pagination {\ndisplay: block;\n- color: #0e59a5;\n- -webkit-user-select: none;\n- -moz-user-select: none;\n- -ms-user-select: n... | TypeScript | MIT License | promact/md2 | chore(pagination) update style |
530,387 | 08.01.2017 08:27:05 | -7,200 | 93b5fce24863c470aa8982c658d9c619e7ee54af | Update README.md (solves issue | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -16,7 +16,7 @@ Angular2 based Material Design components, directives and services are Accordion\n// ================\n{\nmap: {\n- 'md2': 'node_modules/md2'\n+ 'md2': 'node_modules/md2/bundles'\n},\npackages: {\... | TypeScript | MIT License | promact/md2 | Update README.md (solves issue #51) |
530,388 | 09.01.2017 10:52:16 | -19,080 | 0deba4524829704a48c24b3770a5ae0febade129 | chore: update redmi.md for system js configuration. | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -16,13 +16,7 @@ Angular2 based Material Design components, directives and services are Accordion\n// ================\n{\nmap: {\n- 'md2': 'node_modules/md2/bundles'\n- },\n- packages: {\n- 'md2': {\n- format: '... | TypeScript | MIT License | promact/md2 | chore: update redmi.md for system js configuration. |
530,388 | 10.01.2017 18:46:34 | -19,080 | ddb12c00297512a6f85056e028157d800932be3b | chore(data-table) added shrt directive as separate. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/lib/data-table/sort.html",
"diff": "+<span (click)=\"_sort()\">\n+ <ng-content></ng-content>\n+ <svg *ngIf=\"_isAsc\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\">\n+ <path d=\"M7 14l5-5 5 5z\" />\n+ </svg>\n+ <svg *ngIf=\"_isDesc\" widt... | TypeScript | MIT License | promact/md2 | chore(data-table) added shrt directive as separate. |
530,388 | 12.01.2017 15:09:33 | -19,080 | eb6615e481bda7374110344f62ab0ebc67b9553c | chore(data-table) update basic functionality and inputs renamed with camelCase | [
{
"change_type": "MODIFY",
"old_path": "src/demo-app/data-table/data-table-demo.html",
"new_path": "src/demo-app/data-table/data-table-demo.html",
"diff": "<hr />\n<h4>Basic</h4>\n<div>\n- <table [md2-data]=\"data | dataPipe : search\" #md2=\"Md2DataTable\" [md2-page-length]=\"10\">\n+ <table [md2Da... | TypeScript | MIT License | promact/md2 | chore(data-table) update basic functionality and inputs renamed with camelCase |
530,388 | 12.01.2017 18:30:47 | -19,080 | 90da4d7cbea1db15bd269ac493ef680a5fda5fd5 | chore(data-table) update core functionality | [
{
"change_type": "MODIFY",
"old_path": "src/lib/data-table/data-table.ts",
"new_path": "src/lib/data-table/data-table.ts",
"diff": "@@ -45,19 +45,38 @@ export interface DataEvent {\nexport class Md2DataTable implements OnChanges, DoCheck {\nprivate diff: IterableDiffer;\n+ private isDataChanged = fa... | TypeScript | MIT License | promact/md2 | chore(data-table) update core functionality |
530,388 | 13.01.2017 10:57:55 | -19,080 | 6823cb8d741bb4e5c478e17c2e181bde2a301dc4 | chore(datepicker) update style and performance of sort | [
{
"change_type": "MODIFY",
"old_path": "src/lib/data-table/data-table.scss",
"new_path": "src/lib/data-table/data-table.scss",
"diff": "@@ -8,19 +8,34 @@ $primary: #106cc8 !default;\n/*\n* Sort\n*/\n-[md2SortBy] span {\n- position: relative;\n- display: block;\n+[md2SortBy] {\nline-height: 24px;\n+ ... | TypeScript | MIT License | promact/md2 | chore(datepicker) update style and performance of sort |
530,388 | 13.01.2017 15:37:01 | -19,080 | d06c7eecd31220a6e09c39a810e07bc6522728ca | chore(data-table) update performance | [
{
"change_type": "MODIFY",
"old_path": "src/lib/data-table/data-table.ts",
"new_path": "src/lib/data-table/data-table.ts",
"diff": "@@ -6,7 +6,6 @@ import {\nOutput,\nOnInit,\nSimpleChange,\n- OnChanges,\nOptional,\nDoCheck,\nIterableDiffers,\n@@ -41,37 +40,70 @@ export interface DataEvent {\nselect... | TypeScript | MIT License | promact/md2 | chore(data-table) update performance |
530,388 | 13.01.2017 18:50:53 | -19,080 | 6c0f13f23885741c3ef61751262785472dfacd1b | fix(autocomplete) require ngControl issue | [
{
"change_type": "MODIFY",
"old_path": "src/lib/autocomplete/autocomplete.ts",
"new_path": "src/lib/autocomplete/autocomplete.ts",
"diff": "@@ -51,6 +51,12 @@ export const MD2_AUTOCOMPLETE_CONTROL_VALUE_ACCESSOR: any = {\nmulti: true\n};\n+/** Change event object emitted by Md2Autocomplete. */\n+exp... | TypeScript | MIT License | promact/md2 | fix(autocomplete) require ngControl issue #57 |
530,388 | 16.01.2017 09:40:11 | -19,080 | 361e0e7da183b8ef25c6d5eaceb43a1c228d69d7 | fix(autocomplete) suggestion list not closing issue | [
{
"change_type": "MODIFY",
"old_path": "src/lib/autocomplete/autocomplete.ts",
"new_path": "src/lib/autocomplete/autocomplete.ts",
"diff": "@@ -96,7 +96,7 @@ export class Md2Autocomplete implements AfterContentInit, ControlValueAccessor {\n_list: Array<Item> = [];\nprivate selectedItem: Item = null;... | TypeScript | MIT License | promact/md2 | fix(autocomplete) suggestion list not closing issue |
530,388 | 16.01.2017 10:14:32 | -19,080 | 2bf4882fdfe8d4bb4af7ac07b36c58d03fdafd9c | chore(select) update option binding and performance | [
{
"change_type": "MODIFY",
"old_path": "src/lib/select/select.scss",
"new_path": "src/lib/select/select.scss",
"diff": "@@ -58,6 +58,7 @@ md2-select {\n&.md2-floating-placeholder {\ntop: -16px;\nleft: -2px;\n+ text-align: left;\ntransform: scale(0.75);\n}\n@@ -66,6 +67,7 @@ md2-select {\n&.md2-float... | TypeScript | MIT License | promact/md2 | chore(select) update option binding and performance |
530,388 | 16.01.2017 10:44:34 | -19,080 | 533ceaeb5c4c333dd3697ddf49e6366fa96c74ac | fix(datepicker) unable to clear issue | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.ts",
"new_path": "src/lib/datepicker/datepicker.ts",
"diff": "@@ -882,6 +882,9 @@ export class Md2Datepicker implements AfterContentInit, ControlValueAccessor {\nif (this.type !== 'date') {\ndate += this._value.getHours() + ':' + ... | TypeScript | MIT License | promact/md2 | fix(datepicker) unable to clear issue #60 |
530,388 | 16.01.2017 11:21:42 | -19,080 | 01ff3947fab5461caf0759571fd07ad45e0051bd | fix(datepicker) min/max date null or undefined to seta as default | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.ts",
"new_path": "src/lib/datepicker/datepicker.ts",
"diff": "@@ -142,8 +142,8 @@ export class Md2Datepicker implements AfterContentInit, ControlValueAccessor {\nmoved: false\n};\n- private _minDate: Date = null;\n- private _maxDa... | TypeScript | MIT License | promact/md2 | fix(datepicker) min/max date null or undefined to seta as default #37 |
530,388 | 16.01.2017 13:51:37 | -19,080 | 37de66d9890b769dc17451acbb4f792b483a83d9 | feat(datepicker) handle years through keyboard. | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.ts",
"new_path": "src/lib/datepicker/datepicker.ts",
"diff": "@@ -298,10 +298,18 @@ export class Md2Datepicker implements AfterContentInit, ControlValueAccessor {\nbreak;\ncase PAGE_DOWN:\n+ if (event.shiftKey) {\n+ this.displayDa... | TypeScript | MIT License | promact/md2 | feat(datepicker) handle years through keyboard. |
530,388 | 16.01.2017 16:03:44 | -19,080 | fd421fc9e60aae9d4256cb2d061ec07db495f0dc | chore(datepicker) update html and styling structure | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.html",
"new_path": "src/lib/datepicker/datepicker.html",
"diff": "</svg>\n</div>\n</div>\n-<div class=\"md2-datepicker-wrapper\" [class.active]=\"_isDatepickerVisible\">\n+<div class=\"md2-datepicker-panel\" [class.active]=\"_isDa... | TypeScript | MIT License | promact/md2 | chore(datepicker) update html and styling structure |
530,388 | 16.01.2017 17:00:47 | -19,080 | 1004cda6d2be1921f41e3158c320d19f55f78fb3 | feat(datepicker) responsive | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.html",
"new_path": "src/lib/datepicker/datepicker.html",
"diff": "<span class=\"md2-datepicker-header-date\"\n[class.active]=\"_isCalendarVisible && !_isYearsVisible\"\n[class.hidden]=\"type==='time'\"\n- (click)=\"_showCalendar()... | TypeScript | MIT License | promact/md2 | feat(datepicker) responsive #32 |
530,389 | 16.01.2017 21:26:02 | -18,000 | e31aa9aabda319c0fd282e0aa9f7de4c2c7f560d | Update dialog.ts
Very strong brakes when modal windows 2 and more | [
{
"change_type": "MODIFY",
"old_path": "src/lib/dialog/dialog.ts",
"new_path": "src/lib/dialog/dialog.ts",
"diff": "@@ -46,7 +46,7 @@ export class Md2DialogFooter { }\nstyleUrls: ['dialog.css'],\nhost: {\n'tabindex': '0',\n- '(body:keydown)': '_handleDocumentKeydown($event)'\n+ '(body:keydown.esc)':... | TypeScript | MIT License | promact/md2 | Update dialog.ts
Very strong brakes when modal windows 2 and more |
530,388 | 17.01.2017 11:22:06 | -19,080 | f777e31045213dca7679b3e8a850db2b7434b1cc | feat(date-table) sort by deeply | [
{
"change_type": "MODIFY",
"old_path": "src/lib/data-table/data-table.ts",
"new_path": "src/lib/data-table/data-table.ts",
"diff": "@@ -186,16 +186,10 @@ export class Md2DataTable implements DoCheck {\nprivate fillData() {\nlet offset = (this.activePage - 1) * this.rowsPerPage;\nlet data = this.md2D... | TypeScript | MIT License | promact/md2 | feat(date-table) sort by deeply |
530,388 | 17.01.2017 12:19:49 | -19,080 | 50eae62f3af7d8866c90dee99c2945d685a42168 | fix(select) styling issue | [
{
"change_type": "MODIFY",
"old_path": "src/lib/select/select.scss",
"new_path": "src/lib/select/select.scss",
"diff": "@@ -28,7 +28,7 @@ md2-select {\nbackground-image: linear-gradient(to right, rgba(black, 0.26) 0, rgba(black, 0.26) 33%, transparent 0);\nbackground-size: 4px 1px;\nbackground-repea... | TypeScript | MIT License | promact/md2 | fix(select) styling issue |
530,388 | 17.01.2017 12:39:54 | -19,080 | ae353f7cd6c60b9031578dddc86450dd731d1532 | chore(data-table) set rows per page select dropdown is material | [
{
"change_type": "MODIFY",
"old_path": "src/lib/data-table/data-table.scss",
"new_path": "src/lib/data-table/data-table.scss",
"diff": "@@ -44,27 +44,25 @@ $primary: #106cc8 !default;\n*/\nmd2-pagination {\ndisplay: block;\n- color: $primary;\n+ color: rgba(black, 0.54);\nuser-select: none;\n-}\n-md... | TypeScript | MIT License | promact/md2 | chore(data-table) set rows per page select dropdown is material |
530,388 | 17.01.2017 13:59:51 | -19,080 | 7ea58d6689bd4c423a87572f64467195783ec8d2 | fix(data-table) active page change event while page change after data updates | [
{
"change_type": "MODIFY",
"old_path": "src/lib/data-table/data-table.ts",
"new_path": "src/lib/data-table/data-table.ts",
"diff": "@@ -175,8 +175,12 @@ export class Md2DataTable implements DoCheck {\nprivate recalculatePage() {\nlet lastPage = Math.ceil(this.md2Data.length / this.rowsPerPage);\n- t... | TypeScript | MIT License | promact/md2 | fix(data-table) active page change event while page change after data updates |
530,388 | 17.01.2017 14:03:07 | -19,080 | 7d727e57bedc1c447735bfaa938706426787f50c | chore(data-table) update docs | [
{
"change_type": "MODIFY",
"old_path": "src/lib/data-table/README.md",
"new_path": "src/lib/data-table/README.md",
"diff": "@@ -12,6 +12,14 @@ Data Table is a arrange data in ordering searching and paginate it.\n| `sortBy` | `string` or `Array<string>` | Sort by parameter(s) |\n| `sortOrder` | `stri... | TypeScript | MIT License | promact/md2 | chore(data-table) update docs |
530,388 | 19.01.2017 22:28:00 | -19,080 | 77ff6bd5547ef6baf78afce3239fe26b62bb2262 | feat(datepicker) added date-locale | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/lib/datepicker/date-locale.ts",
"diff": "+import {\n+ Injectable,\n+} from '@angular/core';\n+\n+/** Date locale info. TODO(mmalerba): Integrate with i18n solution once we know what we're doing. */\n+@Injectable()\n+export class DateLocale {... | TypeScript | MIT License | promact/md2 | feat(datepicker) added date-locale #50 |
530,388 | 22.01.2017 15:54:36 | -19,080 | bcd5ad1b63fa20df51f2a33a3aa34ee32a8bf6dd | chore(datepicker) update structure | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.scss",
"new_path": "src/lib/datepicker/datepicker.scss",
"diff": "@@ -28,7 +28,7 @@ md2-datepicker {\ncursor: pointer;\n}\n-.md2-datepicker-calendar-icon {\n+.md2-datepicker-icon {\nposition: absolute;\ntop: 21px;\nleft: 0;\n@@ -6... | TypeScript | MIT License | promact/md2 | chore(datepicker) update structure |
530,388 | 24.01.2017 17:19:57 | -19,080 | b5789fd498d3d86814f1fb572c86be97a42b43d6 | fix(select) option menu width issue | [
{
"change_type": "MODIFY",
"old_path": "src/lib/select/select.ts",
"new_path": "src/lib/select/select.ts",
"diff": "@@ -204,9 +204,6 @@ export class Md2Select implements AfterContentInit, ControlValueAccessor, OnDest\nset placeholder(value: string) {\nthis._placeholder = value;\n-\n- // Must wait to... | TypeScript | MIT License | promact/md2 | fix(select) option menu width issue |
530,388 | 24.01.2017 17:20:23 | -19,080 | a4bbe79734a8dfffc48ce557e53ea49ea861eed6 | fix(tabs) invalid active tab index | [
{
"change_type": "MODIFY",
"old_path": "src/lib/tabs/tabs.ts",
"new_path": "src/lib/tabs/tabs.ts",
"diff": "@@ -150,6 +150,9 @@ export class Md2Tabs implements AfterContentInit {\nsetTimeout(() => {\nconst tabs = this.tabs.toArray();\nif (this.selectedIndex) {\n+ if (this.selectedIndex >= tabs.lengt... | TypeScript | MIT License | promact/md2 | fix(tabs) invalid active tab index |
530,388 | 24.01.2017 23:17:30 | -19,080 | f345330e62cb4ab7cc6240f863f82baf7728cbc0 | chore(datepicker) initially added overlay | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.scss",
"new_path": "src/lib/datepicker/datepicker.scss",
"diff": "@@ -121,24 +121,12 @@ md2-datepicker.md2-datepicker-disabled:focus {\n}\n.md2-datepicker-panel {\n- position: absolute;\n- top: 0;\n- left: 0;\n- display: inline-bl... | TypeScript | MIT License | promact/md2 | chore(datepicker) initially added overlay |
530,388 | 26.01.2017 18:47:16 | -19,080 | 8e0269b786f167847e369135250465c50bcf2fe9 | fix(datepicker) ie issue panel open inside view port | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.html",
"new_path": "src/lib/datepicker/datepicker.html",
"diff": "backdropClass=\"cdk-overlay-transparent-backdrop\" [positions]=\"_positions\">\n<div class=\"md2-datepicker-panel\" [@transformPanel]=\"'showing'\" (@transformPanel... | TypeScript | MIT License | promact/md2 | fix(datepicker) ie issue #43, panel open inside view port #58 |
530,388 | 26.01.2017 19:34:57 | -19,080 | a5de60c084f7f390bb639455717e897d95b5f6b6 | fix(datepicker) formatting issue | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.ts",
"new_path": "src/lib/datepicker/datepicker.ts",
"diff": "@@ -192,6 +192,9 @@ export class Md2Datepicker implements AfterContentInit, ControlValueAccessor {\n// private mouseUpListener: any;\nprivate _value: Date = null;\n+ pr... | TypeScript | MIT License | promact/md2 | fix(datepicker) formatting issue #69 |
530,388 | 28.01.2017 00:38:22 | -19,080 | b9d3a6cb253b19dd096479a6f4af50ec1b5050a4 | chore(datepicker) update performance | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.html",
"new_path": "src/lib/datepicker/datepicker.html",
"diff": "</svg>\n</div>\n<div class=\"md2-datepicker-input\">\n- <span class=\"md2-datepicker-placeholder\" [class.has-value]=\"value\"> {{ placeholder }} </span>\n+ <span c... | TypeScript | MIT License | promact/md2 | chore(datepicker) update performance |
530,388 | 31.01.2017 10:10:33 | -19,080 | a2675cd0d078424c84ce483088bf5bb37cd3921f | chore(datepicker) initialise mouse events for click picker | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.html",
"new_path": "src/lib/datepicker/datepicker.html",
"diff": "</div>\n</div>\n<div class=\"md2-datepicker-clock\" [class.active]=\"!_isCalendarVisible\">\n- <!-- (mousedown)=\"onMouseDownClock($event)\"-->\n+ <!-- (mousedown)=... | TypeScript | MIT License | promact/md2 | chore(datepicker) initialise mouse events for click picker |
530,388 | 31.01.2017 14:19:29 | -19,080 | fa0177793db0d7c9b142b13ff8343ee044527b1e | chore: update tasks and dependencies | [
{
"change_type": "MODIFY",
"old_path": ".gitignore",
"new_path": ".gitignore",
"diff": "/dist\n/tmp\n/deploy\n+/screenshots\n# dependencies\n/node_modules\n"
},
{
"change_type": "MODIFY",
"old_path": "package.json",
"new_path": "package.json",
"diff": "\"@angular/platform-browser... | TypeScript | MIT License | promact/md2 | chore: update tasks and dependencies |
530,388 | 31.01.2017 14:26:59 | -19,080 | 43fb39ee59bd4e1417b64e438daff654eec1e56a | chore: update module with updated core | [
{
"change_type": "MODIFY",
"old_path": "src/lib/module.ts",
"new_path": "src/lib/module.ts",
"diff": "@@ -8,7 +8,7 @@ import {\nOverlayModule,\nA11yModule,\nProjectionModule,\n- DefaultStyleCompatibilityModeModule,\n+ CompatibilityModule,\n} from './core/index';\nimport { Md2AccordionModule } from '... | TypeScript | MIT License | promact/md2 | chore: update module with updated core |
530,388 | 31.01.2017 14:28:29 | -19,080 | af1eae38211c2a108f27318262414250f69c7de8 | chore(tooltip) removed default style compatibility | [
{
"change_type": "MODIFY",
"old_path": "src/lib/tooltip/tooltip.ts",
"new_path": "src/lib/tooltip/tooltip.ts",
"diff": "@@ -24,8 +24,7 @@ import {\nOverlayRef,\nComponentPortal,\nOverlayConnectionPosition,\n- OriginConnectionPosition,\n- DefaultStyleCompatibilityModeModule\n+ OriginConnectionPositio... | TypeScript | MIT License | promact/md2 | chore(tooltip) removed default style compatibility |
530,388 | 31.01.2017 14:35:14 | -19,080 | 502fb7f55939646eabac1821380c7055c713a95e | chore(select) update option as module and core changes | [
{
"change_type": "MODIFY",
"old_path": "src/lib/select/index.ts",
"new_path": "src/lib/select/index.ts",
"diff": "import { NgModule, ModuleWithProviders } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { Md2Select } from './select';\n-import {Md2Option} from './option... | TypeScript | MIT License | promact/md2 | chore(select) update option as module and core changes |
530,388 | 31.01.2017 14:48:58 | -19,080 | c15c11d25c9079da634db268a6c2271eaebb28f3 | chore(core) removed selection module | [
{
"change_type": "MODIFY",
"old_path": "src/lib/core/core.ts",
"new_path": "src/lib/core/core.ts",
"diff": "@@ -111,9 +111,6 @@ export * from './compatibility/compatibility';\n// Animation\nexport * from './animation/animation';\n-// Selection\n-export * from './selection/index';\n-\n// Coercion\nex... | TypeScript | MIT License | promact/md2 | chore(core) removed selection module |
530,388 | 01.02.2017 17:59:45 | -19,080 | 866dd215f435727943c13ea4037c0ea6964e8cb1 | chore(datepicker) update overlay | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.scss",
"new_path": "src/lib/datepicker/datepicker.scss",
"diff": "@@ -300,7 +300,7 @@ md2-datepicker.md2-datepicker-disabled:focus {\n}\n.md2-calendar-dates {\n- margin: 0 20px;\n+ margin: 0 auto;\nth {\nwidth: 35px;\n@@ -464,7 +4... | TypeScript | MIT License | promact/md2 | chore(datepicker) update overlay |
530,388 | 02.02.2017 14:22:26 | -19,080 | dc633a27e35876b0ccbb9d5dfb662557f285f3bb | chore(datepicker) removed readonly property | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/README.md",
"new_path": "src/lib/datepicker/README.md",
"diff": "@@ -7,7 +7,6 @@ Datepicker allow the user to select date and time.\n| Name | Type | Description |\n| --- | --- | --- |\n| `type` | `'date' | 'time' | 'datetime'` | The type of ... | TypeScript | MIT License | promact/md2 | chore(datepicker) removed readonly property |
530,388 | 02.02.2017 14:26:50 | -19,080 | 2eea10e696996a8aeeeaca791a80fd4bbbc9fc7e | chore(datepicker) update change and output events | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.ts",
"new_path": "src/lib/datepicker/datepicker.ts",
"diff": "@@ -43,8 +43,7 @@ import {\n/** Change event object emitted by Md2Select. */\nexport class Md2DateChange {\n- source: Md2Datepicker;\n- date: Date;\n+ constructor(publi... | TypeScript | MIT License | promact/md2 | chore(datepicker) update change and output events |
530,388 | 02.02.2017 14:31:58 | -19,080 | 468460c05fba69b4563815948aeef30fd6b68224 | fix(datepicker) readonly issue | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.ts",
"new_path": "src/lib/datepicker/datepicker.ts",
"diff": "@@ -531,7 +531,7 @@ export class Md2Datepicker implements AfterContentInit, ControlValueAccessor {\n* Display Datepicker\n*/\n_showDatepicker() {\n- if (this.disabled |... | TypeScript | MIT License | promact/md2 | fix(datepicker) readonly issue |
530,388 | 02.02.2017 14:55:04 | -19,080 | 67276fb698318617234a1294ac433f37918774f5 | chore(datepicker) added 'openOnFocus' and 'isOpen' APIs to open a calendar | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/README.md",
"new_path": "src/lib/datepicker/README.md",
"diff": "@@ -16,6 +16,8 @@ Datepicker allow the user to select date and time.\n| `placeholder` | `number` | Datepicker placeholder label |\n| `format` | `number` | The date format of da... | TypeScript | MIT License | promact/md2 | chore(datepicker) added 'openOnFocus' and 'isOpen' APIs to open a calendar #72 |
530,388 | 07.02.2017 11:16:58 | -19,080 | eb3ca2dcc14627689bdd4b96aa57729dc782b574 | chore(tooltip) added compatibility module and update performance | [
{
"change_type": "MODIFY",
"old_path": "src/lib/tooltip/tooltip.scss",
"new_path": "src/lib/tooltip/tooltip.scss",
"diff": "$md2-tooltip-target-height: 22px;\n+$md2-tooltip-max-width: 250px;\n$md2-tooltip-font-size: 10px;\n$md2-tooltip-margin: 14px;\n$md2-tooltip-horizontal-padding: 8px;\n$md2-toolt... | TypeScript | MIT License | promact/md2 | chore(tooltip) added compatibility module and update performance |
530,396 | 08.02.2017 13:53:01 | -19,080 | cca709f180b97e4365ead713493c07ddd21926a8 | fix(colorpicker) Changes in hsla and rgba color format | [
{
"change_type": "MODIFY",
"old_path": "src/lib/colorpicker/README.md",
"new_path": "src/lib/colorpicker/README.md",
"diff": "@@ -7,6 +7,7 @@ Colorpicker allow the user to select color.\n| Name | Type | Description |\n| --- | --- | --- |\n| `disabled` | `boolean` | Whether or not the colorpicker is ... | TypeScript | MIT License | promact/md2 | fix(colorpicker) Changes in hsla and rgba color format |
530,388 | 08.02.2017 15:29:34 | -19,080 | 61db2763e28db2583f79ec6ab39fc2fd36bb5f64 | chore(datepicker) update overlay service with dark backdrop | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.scss",
"new_path": "src/lib/datepicker/datepicker.scss",
"diff": "@@ -500,6 +500,12 @@ md2-datepicker.md2-datepicker-disabled:focus {\nz-index: 1000;\n}\n+.cdk-global-overlay-wrapper {\n+ display: flex;\n+ position: absolute;\n+ z... | TypeScript | MIT License | promact/md2 | chore(datepicker) update overlay service with dark backdrop |
530,388 | 08.02.2017 16:36:22 | -19,080 | fafbebd6d19cc62c5d293ea11c305fd4702dcc43 | chore(datepicker) update animation and performance | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/lib/datepicker/datepicker-animations.ts",
"diff": "+import {\n+ animate,\n+ AnimationEntryMetadata,\n+ state,\n+ style,\n+ transition,\n+ trigger,\n+} from '@angular/core';\n+\n+/**\n+ * This animation fades in the background color and text ... | TypeScript | MIT License | promact/md2 | chore(datepicker) update animation and performance |
530,388 | 08.02.2017 16:56:32 | -19,080 | 5da00de4cc856a69f83a7163cecb89fd619fc35c | fix(datepicker) focus host issue | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.ts",
"new_path": "src/lib/datepicker/datepicker.ts",
"diff": "@@ -224,7 +224,6 @@ export class Md2Datepicker implements AfterContentInit, OnDestroy, ControlValueA\nclose(): void {\nsetTimeout(() => {\nthis._panelOpen = false;\n- }... | TypeScript | MIT License | promact/md2 | fix(datepicker) focus host issue |
530,388 | 08.02.2017 17:19:22 | -19,080 | fa57fabdc77e6cb7c38d01ee4dbd7df7a3ce8f94 | fix(datepicker) keydown to open | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.ts",
"new_path": "src/lib/datepicker/datepicker.ts",
"diff": "@@ -504,7 +504,7 @@ export class Md2Datepicker implements AfterContentInit, OnDestroy, ControlValueA\ncase SPACE:\nevent.preventDefault();\nevent.stopPropagation();\n- ... | TypeScript | MIT License | promact/md2 | fix(datepicker) keydown to open |
530,388 | 09.02.2017 19:00:50 | -19,080 | c0f79c03aaad97265f516e7df9c76e06ec98b78f | chore(tabs) update change event | [
{
"change_type": "MODIFY",
"old_path": "src/lib/tabs/tabs.ts",
"new_path": "src/lib/tabs/tabs.ts",
"diff": "@@ -16,9 +16,9 @@ import {\n} from '@angular/core';\nimport { CommonModule } from '@angular/common';\n-export class Md2TabChangeEvent {\n- index: number;\n- tab: Md2Tab;\n+/** Change event obj... | TypeScript | MIT License | promact/md2 | chore(tabs) update change event |
530,388 | 10.02.2017 15:38:00 | -19,080 | fd83c71df8b83ce874c5e680c98fed9eabecbe83 | chore(tabs) added selectedIndexChange event | [
{
"change_type": "MODIFY",
"old_path": "src/lib/tabs/README.md",
"new_path": "src/lib/tabs/README.md",
"diff": "@@ -13,6 +13,7 @@ Tabs allow the user to organize their content by labels such that only one tab i\n| Name | Type | Description |\n| --- | --- | --- |\n| `change` | `Event` | Fired when ch... | TypeScript | MIT License | promact/md2 | chore(tabs) added selectedIndexChange event |
530,388 | 10.02.2017 15:40:23 | -19,080 | 9e5a13171b8e45e604c2f23eafdb3d215b524abf | fix(dialog-demo) updated bindings | [
{
"change_type": "MODIFY",
"old_path": "src/demo-app/dialog/dialog-demo.html",
"new_path": "src/demo-app/dialog/dialog-demo.html",
"diff": "<button button=\"primary\" (click)=\"confirm.show()\">\nConfirm Dialog\n</button>\n- <md2-dialog #custom1 title=\"{{dialogHeader}}\">\n+ <md2-dialog #custom1 [t... | TypeScript | MIT License | promact/md2 | fix(dialog-demo) updated bindings |
530,388 | 14.02.2017 09:56:56 | -19,080 | 07e098a9e6b4b473ca732c86957a9377a7228026 | chore(dialog) update events and performance | [
{
"change_type": "MODIFY",
"old_path": "src/lib/dialog/README.md",
"new_path": "src/lib/dialog/README.md",
"diff": "@@ -15,6 +15,14 @@ Dialog allow the user to display content in popup.\n| `open()`/`show()` | Open a Dialog. |\n| `close()` | Close a Dialog. |\n+### Events\n+\n+| Name | Type | Descrip... | TypeScript | MIT License | promact/md2 | chore(dialog) update events and performance |
530,388 | 14.02.2017 10:42:25 | -19,080 | 3448a763fba3b90440065dac0f8fba0966343571 | fix(datepicker) time format NAN issue | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.ts",
"new_path": "src/lib/datepicker/datepicker.ts",
"diff": "@@ -167,23 +167,6 @@ export class Md2Datepicker implements AfterContentInit, OnDestroy, ControlValueA\n}\n}\nthis._viewValue = this._formatDate(this._date);\n- //let da... | TypeScript | MIT License | promact/md2 | fix(datepicker) time format NAN issue #78 |
530,388 | 14.02.2017 11:21:59 | -19,080 | 5fb6bda8c0fc8836157f1d5ea3a261532b2269c7 | docs: added reference of chips | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -44,6 +44,7 @@ export class AppModule { }\n- [md2-accordion](https://github.com/Promact/md2/tree/master/src/lib/accordion)\n- [md2-autocomplete](https://github.com/Promact/md2/tree/master/src/lib/autocomplete)\n... | TypeScript | MIT License | promact/md2 | docs: added reference of chips |
530,388 | 14.02.2017 11:37:15 | -19,080 | 63f999f3e7f54650c20078bc827d801568766410 | fix(core) styling issue | [
{
"change_type": "MODIFY",
"old_path": "src/lib/core/theming/_all-theme.scss",
"new_path": "src/lib/core/theming/_all-theme.scss",
"diff": "// Import all the theming functionality.\n@import '../core';\n-@import '../../autocomplete/autocomplete-theme';\n-@import '../../button/button-theme';\n-@import... | TypeScript | MIT License | promact/md2 | fix(core) styling issue |
530,388 | 14.02.2017 11:41:39 | -19,080 | 447ba282f99fc8319f8e55944e849217774440f8 | chore(tooltip) added scrolling and fixed performance issues | [
{
"change_type": "MODIFY",
"old_path": "src/lib/tooltip/tooltip.ts",
"new_path": "src/lib/tooltip/tooltip.ts",
"diff": "@@ -15,6 +15,7 @@ import {\nNgZone,\nOptional,\nOnDestroy,\n+ OnInit,\nViewEncapsulation,\nChangeDetectorRef\n} from '@angular/core';\n@@ -33,12 +34,17 @@ import { Observable } fro... | TypeScript | MIT License | promact/md2 | chore(tooltip) added scrolling and fixed performance issues |
530,388 | 14.02.2017 11:45:20 | -19,080 | 49c883d8c9ff98bb1b150a87c4af158904f6b015 | chore: updated lint configs | [
{
"change_type": "MODIFY",
"old_path": "stylelint-config.json",
"new_path": "stylelint-config.json",
"diff": "\"declaration-block-no-duplicate-properties\": [ true, {\n\"ignore\": [\"consecutive-duplicates-with-different-values\"]\n}],\n- \"declaration-block-no-ignored-properties\": true,\n\"declara... | TypeScript | MIT License | promact/md2 | chore: updated lint configs |
530,388 | 14.02.2017 12:10:30 | -19,080 | b1e859f6682d530d12d77468fc324750ea31aca9 | chore: update tasks | [
{
"change_type": "MODIFY",
"old_path": "tools/dgeni/index.js",
"new_path": "tools/dgeni/index.js",
"diff": "@@ -12,7 +12,7 @@ const typescriptPackage = require('dgeni-packages/typescript');\n// Project configuration.\nconst projectRootDir = path.resolve(__dirname, '../..');\nconst sourceDir = path.r... | TypeScript | MIT License | promact/md2 | chore: update tasks |
530,388 | 14.02.2017 14:36:18 | -19,080 | 9c9cf602e77d9cf7bee13eba82c0168ef704a943 | fix(accordion) open multiple accordion-tabs on initialise time event multiple is false | [
{
"change_type": "MODIFY",
"old_path": "src/lib/accordion/accordiontab.ts",
"new_path": "src/lib/accordion/accordiontab.ts",
"diff": "@@ -5,6 +5,7 @@ import {\nViewEncapsulation\n} from '@angular/core';\nimport { Md2Accordion } from './accordionpanel';\n+import { coerceBooleanProperty } from '../cor... | TypeScript | MIT License | promact/md2 | fix(accordion) open multiple accordion-tabs on initialise time event multiple is false #64 |
530,388 | 15.02.2017 18:13:18 | -19,080 | 2a4f9c21d27ba8e1f73a922475298de6b73e41c6 | chore(dialog) update performance and implementations | [
{
"change_type": "MODIFY",
"old_path": "src/lib/dialog/dialog.html",
"new_path": "src/lib/dialog/dialog.html",
"diff": "<template md2DialogPortal>\n- <div class=\"md2-dialog-backdrop\" (click)=\"close()\"></div>\n- <div class=\"md2-dialog\" [class.open]=\"_isOpened\">\n- <div class=\"md2-dialog-cont... | TypeScript | MIT License | promact/md2 | chore(dialog) update performance and implementations |
530,388 | 16.02.2017 10:50:43 | -19,080 | faad5d25d66f4e7b846f0710199b291bd7517a45 | fix(dialog) overlay issues and removed onCancel event | [
{
"change_type": "MODIFY",
"old_path": "src/lib/dialog/README.md",
"new_path": "src/lib/dialog/README.md",
"diff": "@@ -21,7 +21,6 @@ Dialog allow the user to display content in popup.\n| --- | --- | --- |\n| `onOpen` | `Event` | Fired when open the dialog |\n| `onClose` | `Event` | Fired when close... | TypeScript | MIT License | promact/md2 | fix(dialog) overlay issues and removed onCancel event |
530,388 | 16.02.2017 10:56:04 | -19,080 | 1d7ee3c4891f69a035b93172e99aa2107e1fc7ae | fix(dialog) overlay service | [
{
"change_type": "MODIFY",
"old_path": "src/lib/dialog/dialog.ts",
"new_path": "src/lib/dialog/dialog.ts",
"diff": "@@ -92,7 +92,6 @@ export class Md2Dialog implements OnDestroy {\nthis._overlayRef.detach();\nthis._backdropSubscription.unsubscribe();\n}\n- this.destroyPanel();\n}\n/** Removes the pa... | TypeScript | MIT License | promact/md2 | fix(dialog) overlay service |
530,388 | 16.02.2017 12:03:30 | -19,080 | e125991c7c1d62640d9cda78b88010b10a51233b | chore(datepicker, toast) update providers and depricated `forRoot()` | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.ts",
"new_path": "src/lib/datepicker/datepicker.ts",
"diff": "@@ -1147,12 +1147,13 @@ export const MD2_DATEPICKER_DIRECTIVES = [Md2Datepicker];\nimports: [CommonModule, OverlayModule, PortalModule],\nexports: MD2_DATEPICKER_DIRECT... | TypeScript | MIT License | promact/md2 | chore(datepicker, toast) update providers and depricated `forRoot()` |
530,388 | 16.02.2017 14:27:37 | -19,080 | 9ae5829006b4b4c1c4b125eccd6d3ca022aa06cd | chore(dialog) update promise in open/close methods | [
{
"change_type": "MODIFY",
"old_path": "src/lib/dialog/dialog.ts",
"new_path": "src/lib/dialog/dialog.ts",
"diff": "@@ -70,28 +70,26 @@ export class Md2Dialog implements OnDestroy {\nngOnDestroy() { this.destroyPanel(); }\n- /** Show the dialog */\n- show(): void {\n- this.open();\n- }\n-\n/** Open ... | TypeScript | MIT License | promact/md2 | chore(dialog) update promise in open/close methods |
530,399 | 17.02.2017 13:32:56 | -10,800 | e7d3d599031c4b4d17dd1c86552464d28cd9a4c7 | Sorting issue | [
{
"change_type": "MODIFY",
"old_path": "src/lib/data-table/data-table.ts",
"new_path": "src/lib/data-table/data-table.ts",
"diff": "@@ -125,6 +125,7 @@ export class Md2DataTable implements DoCheck {\n}\nif (this.isDataChanged) {\nthis.fillData();\n+ this.diff.diff(this.md2Data);\nthis.isDataChanged ... | TypeScript | MIT License | promact/md2 | #73 Sorting issue |
530,388 | 17.02.2017 18:44:28 | -19,080 | dbe1051affa9f227ac5f283fb3bbe11f971b7980 | fix(dialog) demo | [
{
"change_type": "MODIFY",
"old_path": "src/demo-app/dialog/dialog-demo.html",
"new_path": "src/demo-app/dialog/dialog-demo.html",
"diff": "<button button (click)=\"close(alert)\">Got it</button>\n</md2-dialog-footer>\n</md2-dialog>\n- <button button=\"primary\" (click)=\"show(alert)\">Alert Dialog<... | TypeScript | MIT License | promact/md2 | fix(dialog) demo |
530,388 | 18.02.2017 15:18:43 | -19,080 | 3892edf032bd49a6bbbb91893c1899135b2499c1 | chore(dialog) single backdrop overlay for multi level dialogs | [
{
"change_type": "MODIFY",
"old_path": "src/lib/dialog/dialog.scss",
"new_path": "src/lib/dialog/dialog.scss",
"diff": "@@ -137,6 +137,10 @@ md2-dialog-footer {\n.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {\nopacity: 0.48;\n+\n+ & ~ .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {\n+ opa... | TypeScript | MIT License | promact/md2 | chore(dialog) single backdrop overlay for multi level dialogs |
530,388 | 18.02.2017 15:31:07 | -19,080 | 9b67e761e14f1de898355607d8fc9e82c2d6fb26 | chore(dialog) undo multi dialog overlay prevention for bad behavior | [
{
"change_type": "MODIFY",
"old_path": "src/lib/dialog/dialog.scss",
"new_path": "src/lib/dialog/dialog.scss",
"diff": "@@ -137,10 +137,6 @@ md2-dialog-footer {\n.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {\nopacity: 0.48;\n-\n- & ~ .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {\n- opa... | TypeScript | MIT License | promact/md2 | chore(dialog) undo multi dialog overlay prevention for bad behavior |
530,388 | 20.02.2017 16:35:59 | -19,080 | f1fc576fc85621c1a7c0ab2ac29e85337680edd1 | fix(select) subscription issue for unit testing | [
{
"change_type": "MODIFY",
"old_path": "src/lib/select/select.ts",
"new_path": "src/lib/select/select.ts",
"diff": "@@ -263,9 +263,13 @@ export class Md2Select implements AfterContentInit, ControlValueAccessor, OnDest\nngOnDestroy() {\nthis._dropSubscriptions();\n+ if (this._changeSubscription) {\nt... | TypeScript | MIT License | promact/md2 | fix(select) subscription issue for unit testing |
530,396 | 21.02.2017 11:13:44 | -19,080 | 9cc45c8d899a54fd47cace02dd37c8be93838031 | Fix (Chips) set function for adding new chip on input blur | [
{
"change_type": "MODIFY",
"old_path": "src/lib/chips/chips.ts",
"new_path": "src/lib/chips/chips.ts",
"diff": "@@ -64,7 +64,6 @@ export const MD2_CHIPS_CONTROL_VALUE_ACCESSOR: any = {\nexport class Md2Chips implements ControlValueAccessor, AfterContentInit {\n@Input() tabindex: number = 0;\n- @Inpu... | TypeScript | MIT License | promact/md2 | Fix (Chips) set function for adding new chip on input blur |
530,396 | 22.02.2017 11:58:46 | -19,080 | bef75174485d1c638e5af6629a044a83f0875989 | Fix (Color picker) set default color for invalid color | [
{
"change_type": "MODIFY",
"old_path": "src/lib/colorpicker/colorpicker.html",
"new_path": "src/lib/colorpicker/colorpicker.html",
"diff": "<input [text] (newValue)=\"setColorFromString($event)\" [style.color]=\"fontColor\" [value]=\"hexText\" />\n</div>\n<div [style.color]=\"fontColor\">\n- <div cl... | TypeScript | MIT License | promact/md2 | Fix (Color picker) set default color for invalid color |
530,395 | 22.02.2017 18:01:20 | 10,800 | d0c6413d18af24d524b569feb10e25b331031104 | datepicker: do not set a max-width for datepicker and let the user defines it's width
Fixes | [
{
"change_type": "MODIFY",
"old_path": "src/demo-app/datepicker/datepicker-demo.html",
"new_path": "src/demo-app/datepicker/datepicker-demo.html",
"diff": "format=\"DD/MM/YYYY\"\n(change)=\"handleChange($event)\">\n</md2-datepicker>\n+ </div>\n+ <div>\n<md2-datepicker [(ngModel)]=\"date\"\ntype=\"da... | TypeScript | MIT License | promact/md2 | datepicker: do not set a max-width for datepicker and let the user defines it's width
Fixes #104 |
530,395 | 22.02.2017 19:27:51 | 10,800 | 5682ead840f4d58ba543354a88f39db31d157373 | datepicker: placeholder should keep the floating state when the dialog is opened
Fixes | [
{
"change_type": "MODIFY",
"old_path": "src/lib/datepicker/datepicker.scss",
"new_path": "src/lib/datepicker/datepicker.scss",
"diff": "@@ -103,7 +103,7 @@ md2-datepicker {\ntransform: translate3d(0, 6px, 0) scale(0.75);\n}\n- md2-datepicker:focus & {\n+ md2-datepicker:focus &, md2-datepicker.md2-da... | TypeScript | MIT License | promact/md2 | datepicker: placeholder should keep the floating state when the dialog is opened
Fixes #107 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.