author
int64
658
755k
date
stringlengths
19
19
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
list
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
696,995
27.08.2019 10:59:05
14,400
02881bcf572424713077df31232839f759442f58
Catch NPE when creating URI
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/converter/Promoter.java", "new_path": "src/main/java/com/twilio/converter/Promoter.java", "diff": "@@ -18,7 +18,7 @@ public class Promoter {\npublic static URI uriFromString(final String url) {\ntry {\nreturn new URI(url);\n- } catch (...
Java
MIT License
twilio/twilio-java
Catch NPE when creating URI (#471)
696,951
14.10.2019 12:01:43
25,200
811b6da3973d3537187057e3c475ea0ed389cf8a
TrackPriority.STANDARD before GA
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/type/SubscribeRule.java", "new_path": "src/main/java/com/twilio/type/SubscribeRule.java", "diff": "@@ -75,7 +75,7 @@ public class SubscribeRule {\npublic enum Priority {\nLOW(\"low\"),\n- MEDIUM(\"medium\"),\n+ STANDARD(\"standard\"),\...
Java
MIT License
twilio/twilio-java
VIDEO-2338 TrackPriority.STANDARD before GA (#483)
697,015
06.12.2019 20:39:47
-19,080
17fd6a4f58b99fc3c69382338d027a6bffc21256
feat: add 'order_by' and 'skip_if' parameters in WorkflowRuleTarget
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/taskrouter/WorkflowRuleTarget.java", "new_path": "src/main/java/com/twilio/taskrouter/WorkflowRuleTarget.java", "diff": "@@ -27,17 +27,27 @@ public class WorkflowRuleTarget extends TaskRouterResource {\n@JsonProperty(\"timeout\")\npriv...
Java
MIT License
twilio/twilio-java
feat: add 'order_by' and 'skip_if' parameters in WorkflowRuleTarget (#504)
696,968
13.04.2020 14:09:56
18,000
9b800a8c4ede25c90ab07fd94da8fd7f73221cd8
Adding in new constructor to take in a RequestConfig object
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/http/NetworkHttpClient.java", "new_path": "src/main/java/com/twilio/http/NetworkHttpClient.java", "diff": "@@ -34,11 +34,18 @@ public class NetworkHttpClient extends HttpClient {\n* Create a new HTTP Client.\n*/\npublic NetworkHttpClie...
Java
MIT License
twilio/twilio-java
Adding in new constructor to take in a RequestConfig object (#523) Co-authored-by: Shashank Saxena <saxshash@amazon.com>
696,954
15.05.2020 11:38:24
10,800
e19987b15fec90559cb818a476d75dcf3e18dc95
fix: Fix datetime filter when the DateTime instances have timezone other than UTC
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/http/Request.java", "new_path": "src/main/java/com/twilio/http/Request.java", "diff": "@@ -5,6 +5,7 @@ import com.google.common.collect.Range;\nimport com.twilio.exception.ApiException;\nimport com.twilio.exception.InvalidRequestExcept...
Java
MIT License
twilio/twilio-java
fix: Fix datetime filter when the DateTime instances have timezone other than UTC (#529)
696,987
07.10.2020 13:33:51
25,200
8355df2798e7bfa96d8513b182156af1778a98bc
test: change RequestTest to use flexapi instead of ip-messaging
[ { "change_type": "MODIFY", "old_path": "src/test/java/com/twilio/http/RequestTest.java", "new_path": "src/test/java/com/twilio/http/RequestTest.java", "diff": "@@ -25,10 +25,10 @@ public class RequestTest {\n@Test\npublic void testConstructorWithDomain() {\n- Request request = new Request(HttpMethod...
Java
MIT License
twilio/twilio-java
test: change RequestTest to use flexapi instead of ip-messaging (#594) Co-authored-by: Maddy Muscari <mmuscari@twilio.com>
697,002
10.03.2021 17:10:40
18,000
c7195676aabf15333096e46f1b7e71ef7bae0a7a
Enable depedency caching for travis
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "language: java\nsudo: false\n+cache:\n+ directories:\n+ - $HOME/.m2\nbefore_install:\n- echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXECUTABLE --import --batch || true\n- echo $GPG_OWNERTRUST | base64 --deco...
Java
MIT License
twilio/twilio-java
Enable depedency caching for travis (#624) Co-authored-by: Taher Ahmed Ghaleb
696,946
31.03.2021 11:54:54
21,600
b25138833bf7b05072322f72643c6059b9015cad
fix: handle case where XML transformer attributes are not supported
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/twiml/TwiML.java", "new_path": "src/main/java/com/twilio/twiml/TwiML.java", "diff": "package com.twilio.twiml;\n+import com.twilio.http.TwilioRestClient;\nimport lombok.ToString;\n+import org.slf4j.Logger;\n+import org.slf4j.LoggerFact...
Java
MIT License
twilio/twilio-java
fix: handle case where XML transformer attributes are not supported (#629) Co-authored-by: Jennifer Mah <JENNIFERMAH98@GMAIL.COM>
696,978
12.04.2021 15:37:54
21,600
d3b891f3b351c4bfe708f35819e4f21ae45c58e3
chore: protected TwilioRestClient constructor Allows for extending the class.
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/http/TwilioRestClient.java", "new_path": "src/main/java/com/twilio/http/TwilioRestClient.java", "diff": "@@ -26,7 +26,7 @@ public class TwilioRestClient {\nprivate final HttpClient httpClient;\nprivate static final Logger logger = Logg...
Java
MIT License
twilio/twilio-java
chore: protected TwilioRestClient constructor (#631) Allows for extending the class.
696,999
23.04.2021 07:19:15
36,000
92bbb3509efcc5df07f945d871b0865081f7c67a
feat: allow conference participant to be any endpoint
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/rest/api/v2010/account/conference/Participant.java", "new_path": "src/main/java/com/twilio/rest/api/v2010/account/conference/Participant.java", "diff": "@@ -141,8 +141,8 @@ public class Participant extends Resource {\n*/\npublic static...
Java
MIT License
twilio/twilio-java
feat: allow conference participant to be any endpoint (#559)
696,978
29.11.2021 18:28:36
25,200
d4bdf094f3be3216af2748fa82ab2b884c9b3329
chore: setup for XML deserialization
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "<artifactId>jackson-datatype-jsr310</artifactId>\n<version>${jackson.version}</version>\n</dependency>\n+ <dependency>\n+ <groupId>com.fasterxml.jackson.dataformat</groupId>\n+ <artifactId>jackson-dataformat-xml</artif...
Java
MIT License
twilio/twilio-java
chore: setup for XML deserialization (#660)
696,990
03.02.2022 13:42:15
18,000
6de0d4f5190838d75a6fe5c1663142f2a6968c21
added sonarcloud integration
[ { "change_type": "MODIFY", "old_path": ".github/workflows/test-and-deploy.yml", "new_path": ".github/workflows/test-and-deploy.yml", "diff": "@@ -21,6 +21,8 @@ jobs:\nsteps:\n- name: Checkout twilio-java\nuses: actions/checkout@v2\n+ with:\n+ fetch-depth: 0 # Shallow clones should be disabled for a ...
Java
MIT License
twilio/twilio-java
added sonarcloud integration (#669)
696,984
08.04.2022 09:43:19
-19,080
026d5f226ca33118f111b06654fcdec2c0a0b4ea
chore: update testcase to remove dependency from generated files
[ { "change_type": "MODIFY", "old_path": "src/test/java/com/twilio/http/TwilioRestClientTest.java", "new_path": "src/test/java/com/twilio/http/TwilioRestClientTest.java", "diff": "@@ -2,8 +2,6 @@ package com.twilio.http;\nimport com.twilio.Twilio;\nimport com.twilio.rest.Domains;\n-import com.twilio.r...
Java
MIT License
twilio/twilio-java
chore: update testcase to remove dependency from generated files (#678)
696,944
31.05.2022 07:29:26
25,200
087f309858d94faaa6158becb56c0f7702a08ac4
fix: support setting null account sid
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/Twilio.java", "new_path": "src/main/java/com/twilio/Twilio.java", "diff": "@@ -116,14 +116,9 @@ public class Twilio {\n* Set the account sid.\n*\n* @param accountSid account sid to use\n- * @throws AuthenticationException if account si...
Java
MIT License
twilio/twilio-java
fix: support setting null account sid (#688)
696,944
31.05.2022 12:38:11
25,200
e145742009ac60e1493960286805ac3d13327180
fix: reset account sid when using username and password only
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/Twilio.java", "new_path": "src/main/java/com/twilio/Twilio.java", "diff": "@@ -61,6 +61,7 @@ public class Twilio {\npublic static synchronized void init(final String username, final String password) {\nTwilio.setUsername(username);\nTw...
Java
MIT License
twilio/twilio-java
fix: reset account sid when using username and password only (#692)
696,971
22.07.2022 13:29:54
-19,080
5d7c713a906950decaf434d07188f9a8be99435c
chore: updated readme.md for java release candidate
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -63,6 +63,24 @@ If you run into trouble with local tests, use:\n$ mvn package -Dmaven.test.skip=true\n+## Installing release candidates\n+\n+To use twilio-java release candidates use the following dependency in ...
Java
MIT License
twilio/twilio-java
chore: updated readme.md for java release candidate (#702)
696,971
06.09.2022 10:18:57
-19,080
3790f451300adbd3cc483057ae7e44ada3c3460d
fix: fix repeated get content calls
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/http/Response.java", "new_path": "src/main/java/com/twilio/http/Response.java", "diff": "@@ -11,7 +11,7 @@ import java.util.Scanner;\npublic class Response {\nprivate final InputStream stream;\n- private final String content;\n+ privat...
Java
MIT License
twilio/twilio-java
fix: fix repeated get content calls (#706)
696,946
10.10.2022 14:21:39
21,600
6e6c5b6c618f9535b22fed459b07c8b4cbf71543
misc: remove dependency on javax jaxb-api
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "<artifactId>slf4j-api</artifactId>\n<version>1.7.30</version>\n</dependency>\n- <dependency>\n- <groupId>javax.xml.bind</groupId>\n- <artifactId>jaxb-api</artifactId>\n- <version>2.3.1</version>\n- </dependency>\n<depe...
Java
MIT License
twilio/twilio-java
misc: remove dependency on javax jaxb-api (#714)
696,959
15.11.2022 14:06:33
28,800
f1700e4a9112ce2bec029ffc2f80517a5a78e25e
chore: bump jackson-databind to latest 2.13.4.2
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "</profiles>\n<properties>\n<jackson.version>2.13.4</jackson.version>\n+ <jackson-databind.version>2.13.4.2</jackson-databind.version>\n<javadoc.plugin.version>3.3.1</javadoc.plugin.version>\n<jjwt.version>0.11.2</jjwt....
Java
MIT License
twilio/twilio-java
chore: bump jackson-databind to latest 2.13.4.2 (#720) Co-authored-by: Jennifer Mah <42650198+JenniferMah@users.noreply.github.com>
697,010
03.02.2023 17:44:47
-19,080
97d07ff8b4c3a208de6f472bbef32975a64bb6f7
fix: add null string check
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/http/Request.java", "new_path": "src/main/java/com/twilio/http/Request.java", "diff": "@@ -270,7 +270,7 @@ public class Request {\n}\nprivate void addParam(final Map<String, List<String>> params, final String name, final String value) ...
Java
MIT License
twilio/twilio-java
fix: add null string check (#730)
697,010
03.02.2023 18:11:55
-19,080
3fac721afc281aaad425dd66d718d131c4d883d6
fix: add request null check
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/http/Request.java", "new_path": "src/main/java/com/twilio/http/Request.java", "diff": "@@ -270,7 +270,7 @@ public class Request {\n}\nprivate void addParam(final Map<String, List<String>> params, final String name, final String value) ...
Java
MIT License
twilio/twilio-java
fix: add request null check (#731)
429,508
27.04.2017 23:58:47
-28,800
5fe796692c5a15335228858485ee5477767877ab
bento: Minor update
[ { "change_type": "ADD", "old_path": null, "new_path": ".editorconfig", "diff": "+# EditorConfig helps developers define and maintain consistent\n+# coding styles between different editors and IDEs\n+# http://editorconfig.org\n+\n+root = true\n+\n+[*]\n+\n+# Change these settings to your own preferen...
TypeScript
MIT License
motss/app-datepicker
:bento: Minor update Signed-off-by: Rong Sen Ng <wes.ngrongsen@gmail.com>
429,508
28.04.2017 00:01:41
-28,800
c3a9363767d8825380550d807e06915c5b874085
memo: Updated README.md
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -106,7 +106,9 @@ For `app-datepicker-dialog`,\n| --- | --- | --- | ---\n| latest | latest | latest | 7+\n-### [Intl.DateTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Object...
TypeScript
MIT License
motss/app-datepicker
:memo: Updated README.md Signed-off-by: Rong Sen Ng <wes.ngrongsen@gmail.com>
429,507
28.04.2017 14:06:59
-28,800
e6d29ebe9d75dd991ec3052c99100848e727b7ea
bug: Fixed language detection on Safari and Firefox Unable to set default locale on Safari 10.x and locale detected from FF on macOS is weird
[ { "change_type": "MODIFY", "old_path": "demo/index.html", "new_path": "demo/index.html", "diff": "return res.json();\n}).then(function(res) {\nvar _select = document.createElement('select');\n+ var hasIntl = typeof window.Intl !== 'undefined';\n+ var getLocale = window.Intl.DateTimeFormat().resolved...
TypeScript
MIT License
motss/app-datepicker
:bug: Fixed language detection on Safari and Firefox Unable to set default locale on Safari 10.x and locale detected from FF on macOS is weird Signed-off-by: motss <rong_sen.ng@zumata.com>
429,508
28.04.2017 22:39:58
-28,800
f5a3fae723d77779b3378de5d808797dc3acebc8
bug: To fix To fix locale fallback bug when the absence of window.Intl or window.Intl.DateTimeFormat().resolvedOptions.
[ { "change_type": "MODIFY", "old_path": "app-datepicker.html", "new_path": "app-datepicker.html", "diff": "@@ -591,10 +591,14 @@ Custom property | Description | Default\ntype: String,\nvalue: function () {\nif (window.Intl) {\n- return new window.Intl.DateTimeFormat().resolvedOptions().locale;\n+ ret...
TypeScript
MIT License
motss/app-datepicker
:bug: To fix #80 To fix locale fallback bug when the absence of window.Intl or window.Intl.DateTimeFormat().resolvedOptions. #80 Signed-off-by: Rong Sen Ng <wes.ngrongsen@gmail.com>
429,508
28.04.2017 22:48:09
-28,800
5aee7e426e60b6db221eb7c836dbc9b2f69fb077
white_check_mark: Fixed test
[ { "change_type": "MODIFY", "old_path": "test/app-datepicker-test.html", "new_path": "test/app-datepicker-test.html", "diff": "});\n});\n});\n- });\ncontext('test for absence of window.Intl.DateTimeFormat().resolvedOptions', function () {\nit('should fallback to default locale if window.Intl is undef...
TypeScript
MIT License
motss/app-datepicker
:white_check_mark: Fixed test Signed-off-by: Rong Sen Ng <wes.ngrongsen@gmail.com>
429,508
02.05.2017 00:48:43
-28,800
fb880e9a971cf0073af84f0efe8b440853593f3b
bento: Added ISSUE_TEMPLATE and CODE_OF_CONDUCT
[ { "change_type": "ADD", "old_path": null, "new_path": ".github/ISSUE_TEMPLATE.md", "diff": "+### Description\n+<!-- Example: The `app-datepicker` element causes the page to turn pink when clicked. -->\n+\n+### Expected outcome\n+\n+<!-- Example: The page stays the same color. -->\n+\n+### Actual out...
TypeScript
MIT License
motss/app-datepicker
:bento: Added ISSUE_TEMPLATE and CODE_OF_CONDUCT Signed-off-by: Rong Sen Ng <wes.ngrongsen@gmail.com>
429,508
11.05.2017 23:38:02
-28,800
cd8d97cf88d0860202752ca13ebdaef46215c150
sparkles: Added feature for rare use case to fix
[ { "change_type": "MODIFY", "old_path": "app-datepicker-dialog.html", "new_path": "app-datepicker-dialog.html", "diff": "invalid-date=\"{{_readOnlyInvalidDate}}\"\nview=\"[[view]]\"\ntheme=\"[[theme]]\"\n- locale=\"[[locale]]\">\n+ locale=\"[[locale]]\"\n+ no-animation\n+ always-reset-selected-date-o...
TypeScript
MIT License
motss/app-datepicker
:sparkles: Added feature for rare use case to fix #74
429,508
21.05.2017 13:46:06
-28,800
578842494eb165a531a952cec807a22e557115a5
bug: Fixed locale bug on Firefox on macOS
[ { "change_type": "MODIFY", "old_path": "app-datepicker.html", "new_path": "app-datepicker.html", "diff": "@@ -920,15 +920,15 @@ Custom property | Description | Default\n&& window.Intl.DateTimeFormat().resolvedOptions\n&& window.Intl.DateTimeFormat().resolvedOptions().locale)\n|| 'en-US');\n- var _fo...
TypeScript
MIT License
motss/app-datepicker
:bug: Fixed locale bug on Firefox on macOS (#83)
429,508
21.05.2017 13:49:05
-28,800
4c82f8a928756249eb632de4e182ce0c39badbb2
wrench: Minor update
[ { "change_type": "MODIFY", "old_path": "clean-directories.sh", "new_path": "clean-directories.sh", "diff": "clear; printf \"Running %s script...\\n\" \"$(basename \"$0\" .sh)\"\nhas_unused_directories=false\n-directories=\"dist/ bower_components/ bower_components-1.x/ node_modules/ npm-debug.log yar...
TypeScript
MIT License
motss/app-datepicker
:wrench: Minor update Signed-off-by: Rong Sen Ng <wes.ngrongsen@gmail.com>
429,508
13.06.2017 23:11:01
-28,800
19521a281e304b319c651594368b6859e15bf911
bug: Fixed where format is not respected when inputDate changes
[ { "change_type": "MODIFY", "old_path": "app-datepicker.html", "new_path": "app-datepicker.html", "diff": "@@ -1433,7 +1433,7 @@ Custom property | Description | Default\n// 3. 2016 Jan 31\n// 4. 2016 Jan 3\n// 5. 2016/13/13\n- function _isValidDate(_id, _showLongDate) {\n+ function validateDate(_id, ...
TypeScript
MIT License
motss/app-datepicker
:bug: Fixed #85 where format is not respected when inputDate changes Signed-off-by: Rong Sen Ng <wes.ngrongsen@gmail.com>
429,508
13.06.2017 23:32:56
-28,800
d27eeb357e5cecc4bb790d213a12abe7fd09fdf9
bug: Minor revert
[ { "change_type": "MODIFY", "old_path": "app-datepicker.html", "new_path": "app-datepicker.html", "diff": "@@ -1458,16 +1458,28 @@ Custom property | Description | Default\n}\n// From here onwards, to check for short input date.\n- var re = /^(\\d{4})[\\W\\s]+(\\d{1,2})[\\W\\s]+(\\d{1,2})$/i;\n- var v...
TypeScript
MIT License
motss/app-datepicker
:bug: Minor revert Signed-off-by: Rong Sen Ng <wes.ngrongsen@gmail.com>
429,508
13.06.2017 23:45:18
-28,800
e00a4774d1b5047b56222d4057dd08546b7926f5
bookmark: 2.11.0
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -18,10 +18,11 @@ See the [component page](http://motss.github.io/app-datepicker/components/app-da\nAn custom Polymer element built from scratch to provide a datepicker based on Google's Material Design that is m...
TypeScript
MIT License
motss/app-datepicker
:bookmark: 2.11.0
429,509
03.03.2018 11:35:06
-3,600
edab5b218ad7623ae50f96a56216465874821856
106 - add paper button and animation on bower json fixed add paper-button and web-animation to bower
[ { "change_type": "MODIFY", "old_path": "bower.json", "new_path": "bower.json", "diff": "\"neon-animation\": \"PolymerElements/neon-animation#1 - 2\",\n\"paper-dialog-behavior\": \"PolymerElements/paper-dialog-behavior#1 - 2\",\n\"paper-icon-button\": \"PolymerElements/paper-icon-button#1 - 2\",\n- \...
TypeScript
MIT License
motss/app-datepicker
106 - add paper button and animation on bower json (#107) fixed #106 add paper-button and web-animation to bower
429,508
03.03.2018 19:55:43
-28,800
6e7f51d6bb02494b0282f942fee3172dcad76efd
bug: To fix
[ { "change_type": "MODIFY", "old_path": "app-datepicker.html", "new_path": "app-datepicker.html", "diff": "@@ -648,8 +648,16 @@ Custom property | Description | Default\n</style>\n<div id=\"dp\" class=\"datepicker\">\n- <iron-selector selected=\"{{_activeView}}\" class=\"selected-fulldate\" attr-for-s...
TypeScript
MIT License
motss/app-datepicker
:bug: To fix #96
429,511
12.04.2018 18:08:59
-10,800
c00e29257f2a30bfac3cc791db1bc059dbe23a23
Added 5 star rating badge Hi, your component was tested and listed in our Vaadin Directory with a pretty high rating. We think it would be cool to have these badges in your project.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "[![GitHub version](https://badge.fury.io/gh/motss%2Fapp-datepicker.svg)](http://badge.fury.io/gh/motss%2Fapp-datepicker)\n[![Bower version](https://badge.fury.io/bo/app-datepicker.svg)](http://badge.fury.io/bo/app-...
TypeScript
MIT License
motss/app-datepicker
Added 5 star rating badge (#121) Hi, your component was tested and listed in our Vaadin Directory with a pretty high rating. We think it would be cool to have these badges in your project.
429,508
04.09.2019 00:32:49
-28,800
c0aea4183dfcae8fcc0d51d20486d7ee4f135d2f
Temporarily enabling CI for Safari
[ { "change_type": "MODIFY", "old_path": ".circleci/config.yml", "new_path": ".circleci/config.yml", "diff": "@@ -87,7 +87,7 @@ jobs:\n- run:\nname: Test (Safari 10.1, 9)\ncommand: |\n- if [ -z \"${CIRCLE_PULL_REQUEST}\" ] && [ -z \"$(git describe --exact-match HEAD)\" ] && [ -z \"$(git log --format=%...
TypeScript
MIT License
motss/app-datepicker
Temporarily enabling CI for Safari
429,508
18.10.2019 00:48:53
-28,800
5313bc54e4a6cc36ab3a5bac95eb2066f8303b38
fix: Add .js extension for all imports, fix missing element for Tracker
[ { "change_type": "MODIFY", "old_path": "index.html", "new_path": "index.html", "diff": "<script src=\"https://unpkg.com/@webcomponents/webcomponentsjs@latest/webcomponents-loader.js\"></script>\n<!-- <script src=\"/node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js\"></script> -->\n...
TypeScript
MIT License
motss/app-datepicker
fix: Add .js extension for all imports, fix missing element for Tracker
429,508
18.10.2019 21:22:25
-28,800
e3cc4494917cfc2f0e30d0ee5792b0b2832638ed
fix: Minor refactoring to always do strict null check on calendar
[ { "change_type": "MODIFY", "old_path": "src/app-datepicker.ts", "new_path": "src/app-datepicker.ts", "diff": "@@ -446,6 +446,14 @@ export class AppDatepicker extends LitElement {\n}\n}\n+ public get datepickerBodyCalendarView() {\n+ return this.shadowRoot!.querySelector<HTMLDivElement>('.datepicker-...
TypeScript
MIT License
motss/app-datepicker
fix: Minor refactoring to always do strict null check on calendar
429,508
25.10.2019 00:00:35
-28,800
75035191420ea4b9d5f3c42d516a4be65614e3fb
fix: Trying to load axe-core/axe.min.js
[ { "change_type": "MODIFY", "old_path": "src/test/app-datepicker-dialog/a11y.spec.ts", "new_path": "src/test/app-datepicker-dialog/a11y.spec.ts", "diff": "-import 'axe-core/axe';\n+import 'axe-core/axe.min.js';\nimport { axeReport } from 'pwa-helpers/axe-report';\nimport { START_VIEW } from '../../ap...
TypeScript
MIT License
motss/app-datepicker
fix: Trying to load axe-core/axe.min.js
429,508
25.10.2019 00:05:13
-28,800
ae700feb4a8ff17a9c587a0f82a7d98526aa4252
style: Add .js extension to all imports
[ { "change_type": "MODIFY", "old_path": "src/test/app-datepicker-dialog/a11y.spec.ts", "new_path": "src/test/app-datepicker-dialog/a11y.spec.ts", "diff": "import 'axe-core/axe.min.js';\n-import { axeReport } from 'pwa-helpers/axe-report';\n+import { axeReport } from 'pwa-helpers/axe-report.js';\n-imp...
TypeScript
MIT License
motss/app-datepicker
style: Add .js extension to all imports
429,508
25.10.2019 20:51:54
-28,800
2b5213f3f90607bddb9a76db9e3f6ffb030cea5e
test: Trying to load axe-core script in HTML
[ { "change_type": "MODIFY", "old_path": "src/test/app-datepicker-dialog/a11y.spec.ts", "new_path": "src/test/app-datepicker-dialog/a11y.spec.ts", "diff": "-import 'axe-core/axe.min.js';\nimport { axeReport } from 'pwa-helpers/axe-report.js';\nimport { AppDatepickerDialog } from '../../app-datepicker-...
TypeScript
MIT License
motss/app-datepicker
test: Trying to load axe-core script in HTML
429,508
25.10.2019 21:15:37
-28,800
53270c3b7cae6b9b1d10eccf4772330d98ddc0e8
chore: Pin axe-core version at 3.3.0
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "}\n},\n\"@fimbul/bifrost\": {\n- \"version\": \"0.17.0\",\n- \"resolved\": \"https://registry.npmjs.org/@fimbul/bifrost/-/bifrost-0.17.0.tgz\",\n- \"integrity\": \"sha512-gVTkJAOef5HtN6LPmrtt5fAUmBy...
TypeScript
MIT License
motss/app-datepicker
chore: Pin axe-core version at 3.3.0
429,508
26.10.2019 22:41:14
-28,800
521e0396cc8a4745ef5d342a52e5e375fb73e6b4
feat: Support dark theme by exposing more CSS variables for styling
[ { "change_type": "MODIFY", "old_path": "index.html", "new_path": "index.html", "diff": "import { properties, cssProperties, propertiesDialog, cssPropertiesDialog } from '/dist/demo/properties.config.js';\nconst $ = s => document.body.querySelector(s);\n+ const darkThemeMq = matchMedia('(prefers-colo...
TypeScript
MIT License
motss/app-datepicker
feat: Support dark theme by exposing more CSS variables for styling
429,508
27.10.2019 00:31:22
-28,800
72824891971cb55d46d5a61396281cb8710db9d1
fix: Use <button tabindex=-1> for calendar day and minor CSS update
[ { "change_type": "MODIFY", "old_path": "src/app-datepicker.ts", "new_path": "src/app-datepicker.ts", "diff": "@@ -256,11 +256,10 @@ export class AppDatepicker extends LitElement {\n}\ntr > th,\n- tr > td {\n+ .full-calendar__day {\nposition: relative;\nmin-height: 40px;\nheight: 40px;\n- padding: 8p...
TypeScript
MIT License
motss/app-datepicker
fix: Use <button tabindex=-1> for calendar day and minor CSS update
429,508
27.10.2019 00:45:35
-28,800
2507de55943211f4db73c84211f09c3722d36a1f
test: Update tests that querySelector calendar day
[ { "change_type": "MODIFY", "old_path": "src/test/app-datepicker-dialog/keyboards.spec.ts", "new_path": "src/test/app-datepicker-dialog/keyboards.spec.ts", "diff": "@@ -85,7 +85,7 @@ describe(getTestName(name), () => {\n`Tue, Jan 14`,\n`Updated calendar selector label not matched`);\n- const newFocus...
TypeScript
MIT License
motss/app-datepicker
test: Update tests that querySelector calendar day
429,508
27.10.2019 17:11:33
-28,800
b1f7d72fc13daec98a245f550a3390772e0fe794
refactor: Remove calendar swiping feature
[ { "change_type": "MODIFY", "old_path": "src/app-datepicker.ts", "new_path": "src/app-datepicker.ts", "diff": "@@ -17,14 +17,6 @@ export interface DatepickerFirstUpdatedEvent extends DatepickerValueUpdatedEvent\nfirstFocusableElement: HTMLElement;\n}\n-interface ParamsAnimateCalendar {\n- target: HTM...
TypeScript
MIT License
motss/app-datepicker
refactor: Remove calendar swiping feature
429,508
27.10.2019 18:37:16
-28,800
909c65489bb43ff9315203d85c0d01e360f5ef74
refactor: Disable more codes related to calendar swiping feature
[ { "change_type": "MODIFY", "old_path": "src/app-datepicker-dialog.ts", "new_path": "src/app-datepicker-dialog.ts", "diff": "@@ -158,8 +158,8 @@ export class AppDatepickerDialog extends LitElement {\n@property({ type: String })\npublic weekLabel: string = '';\n- @property({ type: Number })\n- public ...
TypeScript
MIT License
motss/app-datepicker
refactor: Disable more codes related to calendar swiping feature
429,508
27.10.2019 19:41:10
-28,800
fcf5a33d466c84b131954b15738026ea155ed3e0
doc: Update API References
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -82,7 +82,6 @@ Please make sure you have all these features available on the browsers you are s\n* [Array.prototype.find]\n* [Intl.DateTimeFormat]\n-* [Web Animations]\nThe following snippet shows a simple scrip...
TypeScript
MIT License
motss/app-datepicker
doc: Update API References
429,508
03.11.2019 23:09:26
-28,800
af37d091442b242a75214befd7a6c72d71e71e37
feat: Re-enable calendar drag feature with better x-browser support
[ { "change_type": "MODIFY", "old_path": "src/app-datepicker.ts", "new_path": "src/app-datepicker.ts", "diff": "@@ -37,6 +37,7 @@ import {\n} from 'lit-element';\nimport { cache } from 'lit-html/directives/cache.js';\nimport { classMap } from 'lit-html/directives/class-map.js';\n+import { repeat } fro...
TypeScript
MIT License
motss/app-datepicker
feat: Re-enable calendar drag feature with better x-browser support
429,508
15.11.2019 23:17:07
-28,800
283c5ff60cd013f1c0919bfab5f486caf1ca0a94
fix: Minor patch to render datepicker
[ { "change_type": "MODIFY", "old_path": "src/app-datepicker.ts", "new_path": "src/app-datepicker.ts", "diff": "@@ -739,14 +739,14 @@ export class AppDatepicker extends LitElement {\nconst hasMaxDate = null == calendars[2].calendar;\nconst weekdaysContent = weekdays.map(o => html`<th aria-label=\"${o....
TypeScript
MIT License
motss/app-datepicker
fix: Minor patch to render datepicker
429,508
16.11.2019 08:51:20
-28,800
7b71ea153ec0beb51389a5a8ff198efef5895a6a
fix: Minor fix in rendering when week number is shown
[ { "change_type": "MODIFY", "old_path": "src/app-datepicker.ts", "new_path": "src/app-datepicker.ts", "diff": "@@ -746,7 +746,7 @@ export class AppDatepicker extends LitElement {\nreturn html`\n<div class=\"calendar-container\">\n- <div class=\"calendar-label\">${longMonthYearFormat(new Date(calendar...
TypeScript
MIT License
motss/app-datepicker
fix: Minor fix in rendering when week number is shown
429,508
13.01.2020 00:28:28
-28,800
b5803e21ba681e11bb0891f0b44772458690cdb5
[ci skip] chore: Update versions in pre-requisites
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -55,10 +55,10 @@ The following are the list of tools used that makes it shine:\n## Pre-requisite\n-- [Node.js][node-js-url] >= 8.16.0\n-- [NPM][npm-url] >= 6.4.1 ([NPM][npm-url] comes with [Node.js][node-js-url]...
TypeScript
MIT License
motss/app-datepicker
[ci skip] chore: Update versions in pre-requisites
429,508
13.01.2020 20:58:55
-28,800
0ed3bf3956ed522493043c103a79264d92c9d6a0
[ci skip] chore: Upgrade deps
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "}\n},\n\"@babel/compat-data\": {\n- \"version\": \"7.8.0\",\n- \"resolved\": \"https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.8.0.tgz\",\n- \"integrity\": \"sha512-ixPUWJpnd9hHvRkyIE3...
TypeScript
MIT License
motss/app-datepicker
[ci skip] chore: Upgrade deps
429,508
13.01.2020 21:03:10
-28,800
ae431e146b997dfd139cc5484e9ca98606dc3682
ci: Update CI to skip running tests for version bump
[ { "change_type": "MODIFY", "old_path": ".circleci/config.yml", "new_path": ".circleci/config.yml", "diff": "@@ -70,7 +70,10 @@ jobs:\nat: ~/app-datepicker\n- run:\nname: Test on SauceLabs\n- command: npm run test:sl\n+ command: |\n+ if [ -z \"${CIRCLE_PULL_REQUEST}\" ] && [ -z \"$(git describe --exa...
TypeScript
MIT License
motss/app-datepicker
ci: Update CI to skip running tests for version bump
429,508
13.01.2020 21:11:58
-28,800
d46f32b82bb14815943825b0086326bcdcb5fef5
[ci skip] config: Update config to include helpers when publish
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"dist/*.*js.map\",\n\"dist/*.*js\",\n\"dist/*.d.ts.map\",\n- \"dist/*.d.ts\"\n+ \"dist/*.d.ts\",\n+ \"dist/helpers/.*js.map\",\n+ \"dist/helpers/*.*js\",\n+ \"dist/helpers/*.d.ts.map\",\n+ \"dist/helpers/*.d...
TypeScript
MIT License
motss/app-datepicker
[ci skip] config: Update config to include helpers when publish
429,508
13.01.2020 21:27:32
-28,800
dcdf2280f0bc328e54946292a1f610eab3659d98
[ci skip] ci: Update CI to skip running tests on tagging
[ { "change_type": "MODIFY", "old_path": ".circleci/config.yml", "new_path": ".circleci/config.yml", "diff": "@@ -30,7 +30,7 @@ jobs:\necho \"Not tagged commit\"\nfi\n- if [ -z \"$(git log --format=%B -n 1 | grep -iE '^[0-9]+[.]{1,}[0-9]+[.]{1,}[0-9]+$')\" ]; then\n+ if [ -z \"$(git log --format=%B -n...
TypeScript
MIT License
motss/app-datepicker
[ci skip] ci: Update CI to skip running tests on tagging
429,508
17.01.2020 00:10:22
-28,800
933174f58d8c24eaa2cd34793fbc6f1bd879b7df
fix: Fix month not updated correctly when clicks and keyboard involve
[ { "change_type": "MODIFY", "old_path": "src/app-datepicker.ts", "new_path": "src/app-datepicker.ts", "diff": "@@ -1017,10 +1017,11 @@ export class AppDatepicker extends LitElement {\nconst selectedDateFY = selectedDate.getUTCFullYear();\nconst selectedDateM = selectedDate.getUTCMonth();\n/**\n- * NO...
TypeScript
MIT License
motss/app-datepicker
fix: Fix month not updated correctly when clicks and keyboard involve
429,508
18.01.2020 13:29:33
-28,800
e69764b703571bf8f997cc7c9fd51ce25952be6b
test: Add tests for edge cases where keyboards + mouses are used
[ { "change_type": "MODIFY", "old_path": "src/tests/app-datepicker/edge-cases.spec.ts", "new_path": "src/tests/app-datepicker/edge-cases.spec.ts", "diff": "@@ -8,6 +8,7 @@ import { prettyHtml } from '../helpers/pretty-html.js';\nimport { toSelector } from '../helpers/to-selector.js';\nimport {\nallStr...
TypeScript
MIT License
motss/app-datepicker
test: Add tests for edge cases where keyboards + mouses are used
429,508
18.01.2020 13:39:13
-28,800
68fb5fe2560e5df0d2d5871fc8f8dacc0ebf757d
ci: Use latest node
[ { "change_type": "MODIFY", "old_path": ".circleci/config.yml", "new_path": ".circleci/config.yml", "diff": "@@ -15,7 +15,7 @@ aliases:\ndefaults: &defaults\nworking_directory: ~/app-datepicker\ndocker:\n- - image: circleci/node:12-browsers\n+ - image: circleci/node:13-browsers\njobs:\nbuild:\n" },...
TypeScript
MIT License
motss/app-datepicker
ci: Use latest node
429,508
02.02.2020 23:52:55
-28,800
6d27406c4aa9155d2418f3104b14d17df9e38bd2
chore(config): Run linting before commit, fixes minor linting issue
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "},\n\"husky\": {\n\"hooks\": {\n- \"pre-commit\": \"npm run ts -- --noEmit && npm run clean\"\n+ \"pre-commit\": \"npm run lint && npm run ts -- --noEmit && npm run clean\"\n}\n},\n\"dependencies\": {\n" } ...
TypeScript
MIT License
motss/app-datepicker
chore(config): Run linting before commit, fixes minor linting issue
429,508
02.02.2020 23:56:46
-28,800
95c7bd2d45c8b5941983da5c7642e132f8402e37
ci: Remove redundant Lint step
[ { "change_type": "MODIFY", "old_path": ".circleci/config.yml", "new_path": ".circleci/config.yml", "diff": "@@ -43,9 +43,6 @@ jobs:\n- run:\nname: Versions\ncommand: node -v && npm version && which npm && pwd\n- - run:\n- name: Lint\n- command: npm run lint\n- run:\nname: Build\ncommand: npm run bui...
TypeScript
MIT License
motss/app-datepicker
ci: Remove redundant Lint step
429,508
03.02.2020 20:29:31
-28,800
17ea421c2db0d4909e833fa521e84eed61656c48
doc: Update docs with latest events
[ { "change_type": "MODIFY", "old_path": "api-references.md", "new_path": "api-references.md", "diff": "@@ -31,9 +31,9 @@ _None_\n| Event | Description |\n| --- | --- |\n-| `datepicker-first-updated` | Fires when datepicker first renders. Returns `{ firstFocusableElement, value }` where `firstFocusabl...
TypeScript
MIT License
motss/app-datepicker
doc: Update docs with latest events
429,508
03.02.2020 20:43:29
-28,800
a424037d4b6dbe226eae64eadd911c377c5dd943
doc: Update doc on browsers support and use Edge 18 in CI for testing
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -166,19 +166,25 @@ export class MyApp extends LitElement {\n## Browser compatibility\n-Both `app-datepicker` and `app-datepicker-dialog` works in all major browsers (Chrome, Firefox, IE, Edge, and Safari).\n+Bot...
TypeScript
MIT License
motss/app-datepicker
doc: Update doc on browsers support and use Edge 18 in CI for testing
429,508
05.02.2020 22:01:01
-28,800
f7fb478909b8efbc76a771e33fc39c7c0acfc216
fix: Add missing husky for pre-commit checks, fix linting issues
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "\"semver\": \"^5.5.0\"\n}\n},\n+ \"@babel/runtime\": {\n+ \"version\": \"7.8.4\",\n+ \"resolved\": \"https://registry.npmjs.org/@babel/runtime/-/runtime-7.8.4.tgz\",\n+ \"integrity\": \"sha512-neAp3...
TypeScript
MIT License
motss/app-datepicker
fix: Add missing husky for pre-commit checks, fix linting issues
429,508
05.02.2020 22:44:45
-28,800
d87649638fcbe10f2037c671e8364a0543ba1461
test: Fix test failed on Safari
[ { "change_type": "MODIFY", "old_path": "src/tests/app-datepicker/events.spec.ts", "new_path": "src/tests/app-datepicker/events.spec.ts", "diff": "@@ -51,11 +51,11 @@ describe('events', () => {\ntimer = window.setTimeout(() => yay(['', '']), 15e3);\n});\n- document.body.appendChild(n);\n-\nn.min = '2...
TypeScript
MIT License
motss/app-datepicker
test: Fix test failed on Safari
429,508
07.02.2020 22:58:20
-28,800
e98942efd4eb1e549726e6898993a247bc69cc38
fix(perf): Use passive event listener for touch events, fix
[ { "change_type": "MODIFY", "old_path": "src/tracker.ts", "new_path": "src/tracker.ts", "diff": "@@ -17,6 +17,25 @@ export interface TrackerHandlers {\nup(startPointer: ResolvedPointer, oldPointer: ResolvedPointer, ev: PointerType): void;\n}\n+const supportsPassive = (() => {\n+ let supportsPassiveFl...
TypeScript
MIT License
motss/app-datepicker
fix(perf): Use passive event listener for touch events, fix #166
429,508
07.02.2020 23:02:05
-28,800
bb03f0fcefc95818db9817446d63ad62e6ea028b
fix: Minor code refactor to simplify calendar dragging feature
[ { "change_type": "MODIFY", "old_path": "src/app-datepicker.ts", "new_path": "src/app-datepicker.ts", "diff": "@@ -47,7 +47,6 @@ import { targetScrollTo } from './helpers/target-scroll-to.js';\nimport { toFormattedDateString } from './helpers/to-formatted-date-string.js';\nimport { toYearList } from ...
TypeScript
MIT License
motss/app-datepicker
fix: Minor code refactor to simplify calendar dragging feature
429,508
08.02.2020 14:24:51
-28,800
d07a495fd3a4d05672a9efd815a5ab5152346abd
[ci skip]: Minor code update
[ { "change_type": "MODIFY", "old_path": "src/app-datepicker.ts", "new_path": "src/app-datepicker.ts", "diff": "@@ -628,14 +628,14 @@ export class AppDatepicker extends LitElement {\ncalendarsContainer.removeEventListener('transitionend', transitionEnd);\n};\n+ $transitioning = true;\n+\ncalendarsCont...
TypeScript
MIT License
motss/app-datepicker
[ci skip]: Minor code update
429,508
10.02.2020 23:01:21
-28,800
9775b3b608e159de6a292157ee3fbcfeabd00d46
test: Use ES2017 for testing as Edge 18 does not support {...a}
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"module\": \"dist/app-datepicker.js\",\n\"typings\": \"dist/app-datepicker.d.ts\",\n\"scripts\": {\n- \"build:config\": \"tsc -p tsconfig.test.json\",\n- \"build:test\": \"npm run ts && npm run build:config\...
TypeScript
MIT License
motss/app-datepicker
test: Use ES2017 for testing as Edge 18 does not support {...a}
429,508
11.02.2020 22:32:58
-28,800
6b7b17c19a6a6391663fc123680a7a7068b224ad
[ci skip]: Update documentation
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "This marks another completion of an important milestone of `app-datepicker` with all the love from the [Web Components community][web-components-community-url] in making this element great and wonderful. As Web Com...
TypeScript
MIT License
motss/app-datepicker
[ci skip]: Update documentation
429,508
11.02.2020 23:16:56
-28,800
af5f52783ae326ccfdcfa6717ee9c795bbc8964f
chore: Upgrade dependencies && update pre-commit hook
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -55,10 +55,8 @@ The following are the list of tools used that makes it shine:\n## Pre-requisite\n-- [Node.js][node-js-url] >= 10.18.1\n-- [NPM][npm-url] >= 6.13.4 ([NPM][npm-url] comes with [Node.js][node-js-url...
TypeScript
MIT License
motss/app-datepicker
chore: Upgrade dependencies && update pre-commit hook
429,508
11.02.2020 23:56:10
-28,800
7357b37f84ad466c64c6c7e24e5f5d904323ed1d
style(a11y): Bump color contrast of disabled calendar day
[ { "change_type": "MODIFY", "old_path": "src/datepicker.ts", "new_path": "src/datepicker.ts", "diff": "@@ -304,7 +304,7 @@ export class AppDatepicker extends LitElement {\npointer-events: none;\n}\n.full-calendar__day.day--disabled:not(.day--today) {\n- color: var(--app-datepicker-disabled-day-color,...
TypeScript
MIT License
motss/app-datepicker
style(a11y): Bump color contrast of disabled calendar day
429,508
14.02.2020 22:51:17
-28,800
934abe8c98f579faffb837d13af7db6c1fb6d1a4
[ci skip] doc: Fix broken table in documentation
[ { "change_type": "MODIFY", "old_path": "api-references.md", "new_path": "api-references.md", "diff": "@@ -85,7 +85,7 @@ It inherits all the properties, events, and custom properties from [AppDatepicke\n### Custom properties\n| Custom property | Default | Description |\n-| --- | --- | --- | --- |\n+|...
TypeScript
MIT License
motss/app-datepicker
[ci skip] doc: Fix broken table in documentation
429,508
14.02.2020 22:57:39
-28,800
318895709f8fca2e0775ee373c323b30ff875814
[ci skip] doc: Update CSS properties
[ { "change_type": "MODIFY", "old_path": "api-references.md", "new_path": "api-references.md", "diff": "@@ -46,7 +46,7 @@ _None_\n| `--app-datepicker-border-top-left-radius` | `8px` | Radius of outer top-left border edge. |\n| `--app-datepicker-border-top-right-radius` | `8px` | Radius of outer top-ri...
TypeScript
MIT License
motss/app-datepicker
[ci skip] doc: Update CSS properties
429,508
15.02.2020 23:29:06
-28,800
f1b29f0676dfadc6badee9d2c762b1940d885873
test: Enable all tests
[ { "change_type": "MODIFY", "old_path": "src/tests/app-datepicker-dialog/tests.ts", "new_path": "src/tests/app-datepicker-dialog/tests.ts", "diff": "import './a11y.spec.js';\n-// import './attributes.spec.js';\n-// import './events.spec.js';\n-// import './gestures.spec.js';\n-// import './initial-re...
TypeScript
MIT License
motss/app-datepicker
test: Enable all tests
429,508
16.02.2020 00:22:30
-28,800
ed89d8ef4cd5a5b7745481b053bcc489d43a4f18
[ci skip]: Update ToC
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -50,6 +50,7 @@ The following are the list of tools used that makes it shine:\n- [Installation](#installation)\n- [How to use](#how-to-use)\n- [Browser compatibility](#browser-compatibility)\n+- [Works well with ...
TypeScript
MIT License
motss/app-datepicker
[ci skip]: Update ToC
429,508
17.02.2020 00:07:46
-28,800
49b4789b39dc475baa000deea251a70ca4c3a48e
fix: Add --app-datepicker-focused-year-bg-color, fix
[ { "change_type": "MODIFY", "old_path": "api-references.md", "new_path": "api-references.md", "diff": "@@ -48,6 +48,7 @@ _None_\n| `--app-datepicker-color` | `#000` | Text color. |\n| `--app-datepicker-disabled-day-color` | `rgba(0, 0, 0, .55)` | Text color of disabled day. |\n| `--app-datepicker-foc...
TypeScript
MIT License
motss/app-datepicker
fix: Add --app-datepicker-focused-year-bg-color, fix #170
429,508
21.02.2020 00:35:04
-28,800
dec3c33c4d05a665869f7b0fda04d937c542ae76
fix(a11y): Improve accessibility to better support screen readers
[ { "change_type": "MODIFY", "old_path": "api-references.md", "new_path": "api-references.md", "diff": "@@ -58,10 +58,11 @@ _None_\n| Name | Description |\n| --- | --- |\n| `body` | Datepicker body, contain `calendar-view` or `year-list-view` |\n-| `calendar` | Container of `label` and `table` |\n| `c...
TypeScript
MIT License
motss/app-datepicker
fix(a11y): Improve accessibility to better support screen readers
429,508
23.02.2020 13:37:29
-28,800
23f6f669515a84bfd2e8542679702992667a99c7
refactor: Use Generic in findShadowTarget() instead of using as keyword
[ { "change_type": "MODIFY", "old_path": "src/datepicker.ts", "new_path": "src/datepicker.ts", "diff": "@@ -986,10 +986,10 @@ export class AppDatepicker extends LitElement {\n@eventOptions({ passive: true })\nprivate _updateYear(ev: MouseEvent) {\n- const selectedYearEl = findShadowTarget(\n+ const se...
TypeScript
MIT License
motss/app-datepicker
refactor: Use Generic in findShadowTarget() instead of using as keyword
429,508
24.02.2020 22:28:21
-28,800
25c38ba4c9eaa03e50937cbff709aac621c59a4f
refactor: Refactor animation and NPM scripts
[ { "change_type": "MODIFY", "old_path": ".circleci/config.yml", "new_path": ".circleci/config.yml", "diff": "@@ -43,9 +43,12 @@ jobs:\n- run:\nname: Versions\ncommand: node -v && npm version && which npm && pwd\n+ - run:\n+ name: Lint\n+ command: npm run lint\n- run:\nname: Build\n- command: npm run ...
TypeScript
MIT License
motss/app-datepicker
refactor: Refactor animation and NPM scripts
429,508
25.02.2020 22:31:25
-28,800
ee690e7be4846f8091eed0db000757b53a73a11d
refactor: Drop private class fields
[ { "change_type": "MODIFY", "old_path": "src/datepicker-dialog.ts", "new_path": "src/datepicker-dialog.ts", "diff": "@@ -177,19 +177,19 @@ export class DatepickerDialog extends LitElement {\n@query('mwc-button[dialog-confirm]')\nprivate _dialogConfirm?: HTMLElement;\n- #hasNativeWebAnimation: boolean...
TypeScript
MIT License
motss/app-datepicker
refactor: Drop private class fields
429,508
26.02.2020 23:03:15
-28,800
76b34d056368f208c272dbc880d06b86aaf7e12e
fix: Disabled day cannot be focused
[ { "change_type": "MODIFY", "old_path": "src/datepicker.ts", "new_path": "src/datepicker.ts", "diff": "@@ -243,7 +243,7 @@ export class Datepicker extends LitElement {\noutline: none;\ntext-align: center;\n}\n- .full-calendar__day:focus {\n+ .full-calendar__day:not(.day--disabled):focus {\noutline: #...
TypeScript
MIT License
motss/app-datepicker
fix: Disabled day cannot be focused
429,508
02.03.2020 18:41:51
-28,800
7445099192370a26fb103afc2e7783f5c36f84ee
ci: Trying to fix failed CI, use node@13 and decrease maxInstances
[ { "change_type": "MODIFY", "old_path": ".circleci/config.yml", "new_path": ".circleci/config.yml", "diff": "@@ -15,7 +15,7 @@ aliases:\ndefaults: &defaults\nworking_directory: ~/app-datepicker\ndocker:\n- - image: circleci/node:12-browsers\n+ - image: circleci/node:13-browsers\njobs:\nbuild:\n" },...
TypeScript
MIT License
motss/app-datepicker
ci: Trying to fix failed CI, use node@13 and decrease maxInstances
429,508
02.03.2020 19:29:40
-28,800
d174da4648b0a729c8d4115ed5c293fa7ee1fc9c
ci: Trying to increase maxInstances
[ { "change_type": "MODIFY", "old_path": "src/tests/wdio.config.ts", "new_path": "src/tests/wdio.config.ts", "diff": "@@ -23,7 +23,7 @@ export const config: WdioConfig = {\n],\nw3c: true,\n},\n- maxInstances: 9,\n+ maxInstances: 10,\n},\n{\nbrowserName: 'firefox',\n@@ -33,7 +33,7 @@ export const confi...
TypeScript
MIT License
motss/app-datepicker
ci: Trying to increase maxInstances
429,508
02.03.2020 20:06:30
-28,800
b62323bd274f5e088e6f3bb60f75cc915b301272
ci: Trying to bump maxInstances
[ { "change_type": "MODIFY", "old_path": "src/tests/wdio.config.ts", "new_path": "src/tests/wdio.config.ts", "diff": "@@ -23,7 +23,7 @@ export const config: WdioConfig = {\n],\nw3c: true,\n},\n- maxInstances: 10,\n+ maxInstances: 14,\n},\n{\nbrowserName: 'firefox',\n@@ -33,7 +33,7 @@ export const conf...
TypeScript
MIT License
motss/app-datepicker
ci: Trying to bump maxInstances
429,508
02.03.2020 20:28:39
-28,800
5567540cf5ad758599d8663317bb9363a83a86d1
ci: Trying the optimal value of maxInstances
[ { "change_type": "MODIFY", "old_path": "src/tests/wdio.config.ts", "new_path": "src/tests/wdio.config.ts", "diff": "@@ -23,7 +23,7 @@ export const config: WdioConfig = {\n],\nw3c: true,\n},\n- maxInstances: 14,\n+ maxInstances: 12,\n},\n{\nbrowserName: 'firefox',\n@@ -33,7 +33,7 @@ export const conf...
TypeScript
MIT License
motss/app-datepicker
ci: Trying the optimal value of maxInstances
429,508
02.03.2020 21:01:56
-28,800
2ef79110962642117d6bcfa4966d9847cc9035e7
ci: Trying to find the optimal maxInstances
[ { "change_type": "MODIFY", "old_path": "src/tests/wdio.config.ts", "new_path": "src/tests/wdio.config.ts", "diff": "@@ -23,7 +23,7 @@ export const config: WdioConfig = {\n],\nw3c: true,\n},\n- maxInstances: 12,\n+ maxInstances: 11,\n},\n{\nbrowserName: 'firefox',\n@@ -33,7 +33,7 @@ export const conf...
TypeScript
MIT License
motss/app-datepicker
ci: Trying to find the optimal maxInstances
429,508
07.03.2020 19:44:03
-28,800
fa091fca0e1327c6a7fd2ecffc24f798d785f87a
chore: Upgrade dependencies, reduce maxInstances
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "}\n},\n\"@babel/core\": {\n- \"version\": \"7.8.6\",\n- \"resolved\": \"https://registry.npmjs.org/@babel/core/-/core-7.8.6.tgz\",\n- \"integrity\": \"sha512-Sheg7yEJD51YHAvLEV/7Uvw95AeWqYPL3Vk3zGuj...
TypeScript
MIT License
motss/app-datepicker
chore: Upgrade dependencies, reduce maxInstances
429,508
08.03.2020 19:10:06
-28,800
7622e92c5e3cf78acd0f29f31166e2f046351a89
feat: Add `alwaysResetValue` property, update tests and doc, close
[ { "change_type": "MODIFY", "old_path": "api-references.md", "new_path": "api-references.md", "diff": "@@ -92,9 +92,10 @@ It inherits all the properties, events, and custom properties from [AppDatepicke\n| Property | Type | Default | Description |\n| --- | --- | --- | --- |\n+| `alwaysResetValue` | B...
TypeScript
MIT License
motss/app-datepicker
feat: Add `alwaysResetValue` property, update tests and doc, close #176
429,508
25.03.2020 19:48:56
-28,800
24b6c698844302e20328285787589f8a530ffebf
fix: Minor CSS update, fix tag not closing properly, update typing Also, making calendar day smaller in its font-size and uses normal line-height to better center the content.
[ { "change_type": "MODIFY", "old_path": "src/datepicker.ts", "new_path": "src/datepicker.ts", "diff": "@@ -254,7 +254,6 @@ export class Datepicker extends LitElement {\nwidth: calc(100% / 7);\nheight: 0;\npadding: calc(100% / 7 / 2) 0;\n- line-height: 0;\noutline: none;\ntext-align: center;\n}\n@@ -3...
TypeScript
MIT License
motss/app-datepicker
fix: Minor CSS update, fix tag not closing properly, update typing Also, making calendar day smaller in its font-size and uses normal line-height to better center the content.
429,508
25.03.2020 23:07:17
-28,800
0418e167f1d301021e84f67de00969547acb4551
chore: Downgrade to dependencies listed in
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "\"dev\": true\n},\n\"@wdio/cli\": {\n- \"version\": \"5.22.4\",\n- \"resolved\": \"https://registry.npmjs.org/@wdio/cli/-/cli-5.22.4.tgz\",\n- \"integrity\": \"sha512-9fzJY7o7zzxzOhgKPJDtzSyPq//E/FD...
TypeScript
MIT License
motss/app-datepicker
chore: Downgrade to dependencies listed in ec32033
429,508
25.03.2020 23:34:51
-28,800
7f1f4dda3e7cb55f498b81767ce2d2849d0e9d15
fix(wdio): Trying to fix failing Sl tests
[ { "change_type": "MODIFY", "old_path": "src/tests/wdio.sl.config.ts", "new_path": "src/tests/wdio.sl.config.ts", "diff": "@@ -23,7 +23,7 @@ const sauceLabsAccessKey = process.env.SAUCE_ACCESS_KEY || '';\nexport const config: WdioConfig = {\n...baseConfig,\n- maxInstances: 72,\n+ // maxInstances: 72,...
TypeScript
MIT License
motss/app-datepicker
fix(wdio): Trying to fix failing Sl tests
429,508
21.03.2020 13:52:51
-28,800
c0d24aa1e1c63cb0436a0243eec62512e0005e1e
ci: Trying to use Github Actions
[ { "change_type": "MODIFY", "old_path": ".circleci/config.yml", "new_path": ".circleci/config.yml", "diff": "@@ -54,6 +54,13 @@ jobs:\npaths:\n- \"*\"\n+ success:\n+ steps:\n+ - run:\n+ name: Success\n+ command: |\n+ echo \"Success\"\n+\ntest_local:\n<<: *defaults\nsteps:\n@@ -84,10 +91,11 @@ workflo...
TypeScript
MIT License
motss/app-datepicker
ci: Trying to use Github Actions
429,508
21.03.2020 14:02:53
-28,800
d62974cb934b03b3611f6bb408aa44be54b730c6
ci: Trying not to upgrade global npm
[ { "change_type": "MODIFY", "old_path": ".github/workflows/ci.yml", "new_path": ".github/workflows/ci.yml", "diff": "@@ -18,9 +18,9 @@ jobs:\n- name: Checkout\nuses: actions/checkout@v2\n- - name: Install global dependencies\n- run: |\n- npm i -g npm@latest --quiet\n+ # - name: Install global depende...
TypeScript
MIT License
motss/app-datepicker
ci: Trying not to upgrade global npm
429,508
21.03.2020 14:06:56
-28,800
433cf19c6f413117295a82a1c8903ccafd580b1a
ci: Update CI script that fails on Windows due to ls command
[ { "change_type": "MODIFY", "old_path": ".github/workflows/ci.yml", "new_path": ".github/workflows/ci.yml", "diff": "@@ -38,6 +38,11 @@ jobs:\nrun: |\npwd && ls -la\n+ - name: Check build\n+ if: ${{ runner.os }} == 'windows-2019'\n+ run: |\n+ pwd && ls\n+\n- name: Upload build artifact\nuses: actions...
TypeScript
MIT License
motss/app-datepicker
ci: Update CI script that fails on Windows due to ls command
429,508
21.03.2020 14:12:45
-28,800
2e23e565edb21a5dbe757a2f51b7f7b165b4e054
ci: Fix Check Build again
[ { "change_type": "MODIFY", "old_path": ".github/workflows/ci.yml", "new_path": ".github/workflows/ci.yml", "diff": "@@ -36,12 +36,11 @@ jobs:\n- name: Check build\nrun: |\n+ if [ \"$RUNNER_OS\" == \"Windows\"]; then\npwd && ls -la\n-\n- - name: Check build\n- if: ${{ runner.os }} == 'windows-2019'\n...
TypeScript
MIT License
motss/app-datepicker
ci: Fix Check Build again
429,508
21.03.2020 14:16:01
-28,800
3797235d77cc596420fe954d67ad75610e1b011c
ci: Setup node with specific version
[ { "change_type": "MODIFY", "old_path": ".github/workflows/ci.yml", "new_path": ".github/workflows/ci.yml", "diff": "@@ -18,6 +18,10 @@ jobs:\n- name: Checkout\nuses: actions/checkout@v2\n+ - name: Setup node@${{ target.os }}\n+ uses: actions/setup-node@v1\n+ with:\n+ node-version: ${{ matrix.target ...
TypeScript
MIT License
motss/app-datepicker
ci: Setup node with specific version
429,508
21.03.2020 14:20:52
-28,800
bdd34cb209ec2e3ba4bc0c2b715324df1c41c1a9
ci: Use bash as shell
[ { "change_type": "MODIFY", "old_path": ".github/workflows/ci.yml", "new_path": ".github/workflows/ci.yml", "diff": "@@ -22,6 +22,11 @@ jobs:\nuses: actions/setup-node@v1\nwith:\nnode-version: ${{ matrix.target }}\n+\n+ - name: List versions\n+ run: |\n+ node -v && npm -v && which npm\n+\n# - name: I...
TypeScript
MIT License
motss/app-datepicker
ci: Use bash as shell
429,508
21.03.2020 14:26:48
-28,800
e4fb8f6efc0cf23583307d3da6237436a3f5d9d0
ci: Remove artifact steps
[ { "change_type": "MODIFY", "old_path": ".github/workflows/ci.yml", "new_path": ".github/workflows/ci.yml", "diff": "@@ -18,7 +18,7 @@ jobs:\n- name: Checkout\nuses: actions/checkout@v2\n- - name: Setup node@${{ matrix.os }}\n+ - name: Setup node@${{ matrix.target }}\nuses: actions/setup-node@v1\nwit...
TypeScript
MIT License
motss/app-datepicker
ci: Remove artifact steps