This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Console\Commands; | |
| use Illuminate\Console\Command; | |
| use App\Console\Progressable; | |
| /** | |
| * .: ATTENTION :. | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Tests\Unit; | |
| use Tests\TestCase; | |
| class invokeTest extends TestCase | |
| { | |
| /** @test */ | |
| function expect_an_array() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .toggle { | |
| position: relative; | |
| display: inline-block; | |
| -ms-flex-negative: 0; | |
| flex-shrink: 0; | |
| border-radius: 9999px; | |
| cursor: pointer; | |
| height: 1.5rem; | |
| width: 3rem; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function (window, document) { | |
| 'use strict'; | |
| let className = 'tabbing'; | |
| let handleFirstTab = function (e) { | |
| if (e.keyCode === 9) { | |
| document.body.classList.add(className); | |
| window.removeEventListener('keydown', handleFirstTab); | |
| window.addEventListener('mousedown', handleMouseDownOnce); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function () { | |
| // set default ratio value | |
| let ratio = 1; | |
| // use systemXDPI and logicalXDPI if available | |
| if (window.screen.systemXDPI !== undefined | |
| && window.screen.logicalXDPI !== undefined | |
| && window.screen.systemXDPI > window.screen.logicalXDPI) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function () { | |
| var oldVersion = "8.17.0"; | |
| var newVersion = "10.19.0"; | |
| var b = document.getElementsByTagName('body')[0]; | |
| var s = document.createElement("script"); s.async = true; | |
| var v = !("IntersectionObserver" in window) ? oldVersion : newVersion; | |
| s.src = "https://cdnjs.cloudflare.com/ajax/libs/vanilla-lazyload/" + v + "/lazyload.min.js"; | |
| window.LL = []; | |
| window.addEventListener('LazyLoad::Initialized', function(e){window.LL.push(e.detail.instance)},false); | |
| window.lazyLoadOptions = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function () { | |
| [].forEach.call(document.querySelectorAll('img'), function (image) { | |
| if (image.parentNode.tagName == 'NOSCRIPT') { | |
| let _img = new Image(); | |
| _img.setAttribute('sizes', image.getAttribute('sizes') || '100vw'); | |
| if (image.getAttribute('class')) { | |
| _img.setAttribute('class', image.getAttribute('class')); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| export default { | |
| props: { | |
| open: { | |
| type: Boolean, | |
| required: false, | |
| default: false | |
| }, | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ****************************** | |
| // https://mineral-ui.com/color | |
| // ****************************** | |
| module.exports = { | |
| colors: { | |
| transparent: 'transparent', | |
| black: '#1d1f24', | |
| white: '#ffffff', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const _ = require('lodash') | |
| module.exports = function ({addBase, addUtilities, e, theme, variants}) { | |
| const gridGaps = theme('gridGap', {}) | |
| const gridTemplates = theme('gridTemplate', {}) | |
| const gridGapVariants = variants('gridGap', []) | |
| const gridTemplateVariants = variants('gridTemplate', []) | |
| const gapUtilities = _.map(gridGaps, (size, name) => ({ | |
| [`.grid-gap-${e(name)}`]: {gridGap: `${size}`}, |