Skip to content

Commit

Permalink
Merge pull request #560 from add2cal/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
jekuer committed Mar 10, 2024
2 parents eb16675 + d3770e3 commit eda4e31
Show file tree
Hide file tree
Showing 39 changed files with 2,569 additions and 2,600 deletions.
1 change: 1 addition & 0 deletions .github/workflows/azure-static-web-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,4 @@ jobs:
env:
NUXT_PUBLIC_SITE_URL: 'https://blue-field-0efe76003-dev.westeurope.2.azurestaticapps.net'
NUXT_PUBLIC_ROBOTS: 'noindex, nofollow'
NUXT_PUBLIC_DEV: true
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
registry-url: https://registry.npmjs.org/
cache: 'npm'
- name: Build it
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
node-version: ['18', '20']
node-version: ['20']
toolchain: [stable]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
7 changes: 4 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ const jsCoreFilesToCombinePro = [
'src/atcb-decorate.js',
'src/atcb-validate.js',
'src/atcb-control.js',
'src/atcb-generate-pro.js',
'src/atcb-generate.js',
'src/atcb-generate-rich-data.js',
'src/atcb-generate-pro.js',
'src/atcb-links.js',
'src/atcb-util.js',
'src/atcb-event.js',
Expand Down Expand Up @@ -265,7 +265,7 @@ module.exports = function (grunt) {
// minify js files
uglify: {
options: {
compress: true,
compress: false,
mangle: true,
beautify: false,
sourceMap: false,
Expand Down Expand Up @@ -296,5 +296,6 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-version');

// Register task(s).
grunt.registerTask('default', ['clean', 'cssmin', 'concat', 'file-creator', 'uglify']);
grunt.registerTask('default', ['clean', 'cssmin', 'concat', 'file-creator']);
grunt.registerTask('uglifyMain', ['clean', 'cssmin', 'concat', 'file-creator', 'uglify']);
};
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ Anyone is welcome to contribute, but mind the [guidelines](.github/CONTRIBUTING.

## 📃 Copyright and License

Copyright (c) [Jens Kuerschner](https://jenskuerschner.de).
Copyright (c) [Jens Kuerschner](https://jekuer.com).

Licensed under [Elastic License 2.0 (ELv2)](LICENSE.txt).

Expand Down
16 changes: 9 additions & 7 deletions assets/css/atcb-3d.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
*
* Style: 3D
*
* Version: 2.6.0
* Creator: Jens Kuerschner (https://jenskuerschner.de)
* Version: 2.6.1
* Creator: Jens Kuerschner (https://jekuer.com)
* Project: https://github.com/add2cal/add-to-calendar-button
* License: Elastic License 2.0 (ELv2) (https://github.com/add2cal/add-to-calendar-button/blob/main/LICENSE.txt)
* Note: DO NOT REMOVE THE COPYRIGHT NOTICE ABOVE!
Expand Down Expand Up @@ -51,6 +51,8 @@
--list-shadow: rgba(0 0 0 / 20%) 0 4px 13px -2px, rgba(0 0 0 / 23%) 0 2px 4px -1px;
--list-modal-shadow: rgba(0 0 0 / 50%) 0 4px 30px -3px, rgba(0 0 0 / 30%) 0 2px 8px -2px;
--modal-text: #000;
--modal-text-align: left;
--modal-text-align-rtl: right;
--modal-background: #f5f5f5;
--modal-border-radius: 6px;
--modal-shadow: drop-shadow(3px 6px 25px rgba(0 0 0 / 65%));
Expand All @@ -65,6 +67,7 @@
--modal-btn-secondary-text: #666567;
--modal-btn-shadow: rgba(0 0 0 / 10%) 0 4px 10px -2px, rgba(0 0 0 / 10%) 0 2px 3px -1px;
--modal-btn-hover-shadow: rgba(0 0 0 / 25%) 0 5px 13px -2px, rgba(0 0 0 / 20%) 0 3px 5px -2px;
--modal-headline-text-align: center;
--modal-headline-text-transform: none;
--input-border-radius: 6px;
--input-background: #fff;
Expand Down Expand Up @@ -517,24 +520,23 @@
box-sizing: border-box;
font-family: var(--font);
line-height: 1.5em;
text-align: left;
text-align: var(--modal-text-align);
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
width: 100%;
margin-bottom: 20px;
max-width: 32em;
-webkit-tap-highlight-color: transparent;
}

@media (width > 575px) {
.atcb-modal-box {
min-width: 500px;
width: 32em;
}
}

.atcb-modal-box.atcb-rtl {
text-align: right;
text-align: var(--modal-text-align-rtl);
direction: rtl;
padding: 1.25em 1em 1.25em 2em;
}
Expand Down Expand Up @@ -564,7 +566,7 @@
line-height: 1.5em;
padding: 1.8em 1.5em 1.3em;
text-transform: var(--modal-headline-text-transform);
text-align: center;
text-align: var(--modal-headline-text-align);
}

.atcb-modal-icon + .atcb-modal-headline {
Expand Down
2 changes: 1 addition & 1 deletion assets/css/atcb-3d.min.css

Large diffs are not rendered by default.

16 changes: 9 additions & 7 deletions assets/css/atcb-date.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
*
* Style: Date
*
* Version: 2.6.0
* Creator: Jens Kuerschner (https://jenskuerschner.de)
* Version: 2.6.1
* Creator: Jens Kuerschner (https://jekuer.com)
* Project: https://github.com/add2cal/add-to-calendar-button
* License: Elastic License 2.0 (ELv2) (https://github.com/add2cal/add-to-calendar-button/blob/main/LICENSE.txt)
* Note: DO NOT REMOVE THE COPYRIGHT NOTICE ABOVE!
Expand Down Expand Up @@ -44,6 +44,8 @@
--list-shadow: rgba(0 0 0 / 20%) 0 4px 13px -2px, rgba(0 0 0 / 23%) 0 2px 4px -1px;
--list-modal-shadow: rgba(0 0 0 / 50%) 0 4px 30px -3px, rgba(0 0 0 / 30%) 0 2px 8px -2px;
--modal-text: #000;
--modal-text-align: left;
--modal-text-align-rtl: right;
--modal-background: #f5f5f5;
--modal-shadow: drop-shadow(3px 6px 25px rgba(0 0 0 / 65%));
--modal-btn-bar: #c6c8cd;
Expand All @@ -57,6 +59,7 @@
--modal-btn-secondary-text: #666567;
--modal-btn-shadow: rgba(0 0 0 / 10%) 0 4px 10px -2px, rgba(0 0 0 / 10%) 0 2px 3px -1px;
--modal-btn-hover-shadow: rgba(0 0 0 / 25%) 0 5px 13px -2px, rgba(0 0 0 / 20%) 0 3px 5px -2px;
--modal-headline-text-align: center;
--modal-headline-text-transform: none;
--input-border-radius: 3px;
--input-background: #fff;
Expand Down Expand Up @@ -578,24 +581,23 @@
box-sizing: border-box;
font-family: var(--font);
line-height: 1.5em;
text-align: left;
text-align: var(--modal-text-align);
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
width: 100%;
margin-bottom: 20px;
max-width: 32em;
-webkit-tap-highlight-color: transparent;
}

@media (width > 575px) {
.atcb-modal-box {
min-width: 500px;
width: 32em;
}
}

.atcb-modal-box.atcb-rtl {
text-align: right;
text-align: var(--modal-text-align-rtl);
direction: rtl;
padding: 1.25em 1em 1.25em 2em;
}
Expand Down Expand Up @@ -625,7 +627,7 @@
line-height: 1.5em;
padding: 1.8em 1.5em 1.3em;
text-transform: var(--modal-headline-text-transform);
text-align: center;
text-align: var(--modal-headline-text-align);
}

.atcb-modal-icon + .atcb-modal-headline {
Expand Down
2 changes: 1 addition & 1 deletion assets/css/atcb-date.min.css

Large diffs are not rendered by default.

16 changes: 9 additions & 7 deletions assets/css/atcb-flat.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
*
* Style: Flat
*
* Version: 2.6.0
* Creator: Jens Kuerschner (https://jenskuerschner.de)
* Version: 2.6.1
* Creator: Jens Kuerschner (https://jekuer.com)
* Project: https://github.com/add2cal/add-to-calendar-button
* License: Elastic License 2.0 (ELv2) (https://github.com/add2cal/add-to-calendar-button/blob/main/LICENSE.txt)
* Note: DO NOT REMOVE THE COPYRIGHT NOTICE ABOVE!
Expand Down Expand Up @@ -46,6 +46,8 @@
--list-close-text-hover: #777;
--list-padding: .8em;
--modal-text: #000;
--modal-text-align: left;
--modal-text-align-rtl: right;
--modal-background: #f5f5f5;
--modal-btn-bar: #bababa;
--modal-btn-background: #f5f5f5;
Expand All @@ -56,6 +58,7 @@
--modal-btn-text: #2e2e2e;
--modal-btn-hover-text: #161616;
--modal-btn-secondary-text: #676767;
--modal-headline-text-align: center;
--modal-headline-text-transform: uppercase;
--input-background: #fff;
--status-active-text: #fff;
Expand Down Expand Up @@ -463,24 +466,23 @@
box-sizing: border-box;
font-family: var(--font);
line-height: 1.5em;
text-align: left;
text-align: var(--modal-text-align);
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
width: 100%;
margin-bottom: 20px;
max-width: 32em;
-webkit-tap-highlight-color: transparent;
}

@media (width > 575px) {
.atcb-modal-box {
min-width: 500px;
width: 32em;
}
}

.atcb-modal-box.atcb-rtl {
text-align: right;
text-align: var(--modal-text-align-rtl);
direction: rtl;
padding: 1.25em 1em 1.25em 2em;
}
Expand All @@ -506,7 +508,7 @@
line-height: 1.5em;
padding: 1.8em 1.5em 1.3em;
text-transform: var(--modal-headline-text-transform);
text-align: center;
text-align: var(--modal-headline-text-align);
}

.atcb-modal-icon + .atcb-modal-headline {
Expand Down
2 changes: 1 addition & 1 deletion assets/css/atcb-flat.min.css

Large diffs are not rendered by default.

16 changes: 9 additions & 7 deletions assets/css/atcb-neumorphism.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
*
* Style: Neumorphism
*
* Version: 2.6.0
* Creator: Jens Kuerschner (https://jenskuerschner.de)
* Version: 2.6.1
* Creator: Jens Kuerschner (https://jekuer.com)
* Project: https://github.com/add2cal/add-to-calendar-button
* License: Elastic License 2.0 (ELv2) (https://github.com/add2cal/add-to-calendar-button/blob/main/LICENSE.txt)
* Note: DO NOT REMOVE THE COPYRIGHT NOTICE ABOVE!
Expand Down Expand Up @@ -49,6 +49,8 @@
--list-min-width: 100%;
--list-shadow: rgba(40 40 40 / 30%) 0.4em 0.4em 0.8em,rgba(255 255 255 / 80%) -0.2em -0.2em 0.5em;
--modal-text: #111;
--modal-text-align: left;
--modal-text-align-rtl: right;
--modal-background: #f5f5f5;
--modal-border-radius: 9px;
--modal-shadow: drop-shadow(5px 8px 30px rgba(0 0 0 / 70%));
Expand All @@ -62,6 +64,7 @@
--modal-btn-secondary-text: #666567;
--modal-btn-shadow: rgba(40 40 40 / 15%) 0.2em 0.2em 0.4em, rgba(255 255 255 / 30%) -0.1em -0.1em 0.3em;
--modal-btn-hover-shadow: rgba(40 40 40 / 40%) 0.4em 0.4em 0.7em, rgba(255 255 255 / 70%) -0.2em -0.2em 0.5em;
--modal-headline-text-align: center;
--modal-headline-text-transform: none;
--input-border-radius: 6px;
--input-background: #fff;
Expand Down Expand Up @@ -429,24 +432,23 @@
box-sizing: border-box;
font-family: var(--font);
line-height: 1.5em;
text-align: left;
text-align: var(--modal-text-align);
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
width: 100%;
margin-bottom: 20px;
max-width: 32em;
-webkit-tap-highlight-color: transparent;
}

@media (width > 575px) {
.atcb-modal-box {
min-width: 500px;
width: 32em;
}
}

.atcb-modal-box.atcb-rtl {
text-align: right;
text-align: var(--modal-text-align-rtl);
direction: rtl;
padding: 1.25em 1em 1.25em 2em;
}
Expand Down Expand Up @@ -476,7 +478,7 @@
line-height: 1.5em;
padding: 1.8em 1.5em 1.3em;
text-transform: var(--modal-headline-text-transform);
text-align: center;
text-align: var(--modal-headline-text-align);
}

.atcb-modal-icon + .atcb-modal-headline {
Expand Down
2 changes: 1 addition & 1 deletion assets/css/atcb-neumorphism.min.css

Large diffs are not rendered by default.

16 changes: 9 additions & 7 deletions assets/css/atcb-round.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
*
* Style: Round
*
* Version: 2.6.0
* Creator: Jens Kuerschner (https://jenskuerschner.de)
* Version: 2.6.1
* Creator: Jens Kuerschner (https://jekuer.com)
* Project: https://github.com/add2cal/add-to-calendar-button
* License: Elastic License 2.0 (ELv2) (https://github.com/add2cal/add-to-calendar-button/blob/main/LICENSE.txt)
* Note: DO NOT REMOVE THE COPYRIGHT NOTICE ABOVE!
Expand Down Expand Up @@ -51,6 +51,8 @@
--list-shadow: rgba(0 0 0 / 20%) 0 4px 13px -2px, rgba(0 0 0 / 23%) 0 2px 4px -1px;
--list-modal-shadow: rgba(0 0 0 / 50%) 0 4px 30px -3px, rgba(0 0 0 / 30%) 0 2px 8px -2px;
--modal-text: #000;
--modal-text-align: left;
--modal-text-align-rtl: right;
--modal-background: #f5f5f5;
--modal-border-radius: 9px;
--modal-shadow: drop-shadow(3px 6px 25px rgba(0 0 0 / 65%));
Expand All @@ -65,6 +67,7 @@
--modal-btn-secondary-text: #666567;
--modal-btn-shadow: rgba(0 0 0 / 10%) 2px 3px 10px -3px,rgba(0 0 0 / 25%) 1px 1px 8px -4px;
--modal-btn-hover-shadow: rgba(0 0 0 / 35%) 3px 5px 15px -2px,rgba(0 0 0 / 20%) 2px 4px 25px -6px;
--modal-headline-text-align: center;
--modal-headline-text-transform: none;
--input-border-radius: 6px;
--input-background: #fff;
Expand Down Expand Up @@ -518,24 +521,23 @@
box-sizing: border-box;
font-family: var(--font);
line-height: 1.5em;
text-align: left;
text-align: var(--modal-text-align);
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
width: 100%;
margin-bottom: 20px;
max-width: 32em;
-webkit-tap-highlight-color: transparent;
}

@media (width > 575px) {
.atcb-modal-box {
min-width: 500px;
width: 32em;
}
}

.atcb-modal-box.atcb-rtl {
text-align: right;
text-align: var(--modal-text-align-rtl);
direction: rtl;
padding: 1.25em 1em 1.25em 2em;
}
Expand Down Expand Up @@ -565,7 +567,7 @@
line-height: 1.5em;
padding: 1.8em 1.5em 1.3em;
text-transform: var(--modal-headline-text-transform);
text-align: center;
text-align: var(--modal-headline-text-align);
}

.atcb-modal-icon + .atcb-modal-headline {
Expand Down
2 changes: 1 addition & 1 deletion assets/css/atcb-round.min.css

Large diffs are not rendered by default.

0 comments on commit eda4e31

Please sign in to comment.