This file contains 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\Converter; | |
use Anomaly\Streams\Platform\Addon\Addon; | |
use Anomaly\Streams\Platform\Addon\AddonCollection; | |
use Anomaly\Streams\Platform\StreamsPlugin; | |
use Illuminate\Contracts\Container\Container; | |
use Illuminate\Support\Str; | |
use Twig\TwigFunction; |
This file contains 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
export namespace Streams.Core.Field { | |
export interface FieldType { | |
name: string; | |
description: string; | |
rules: any; | |
config: { [key: string]: any }; | |
} | |
} | |
export namespace Streams.Core.Stream { | |
export interface Stream { |
This file contains 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
import { ClassComponent } from 'laravel-mix/types/component'; | |
import { resolve } from 'path'; | |
import { Options as TSConfig } from 'ts-loader'; | |
import { ModuleKind, ScriptTarget } from 'typescript'; | |
import * as webpack from 'webpack'; | |
import { TransformOptions } from '@babel/core'; | |
let isProd = mix.inProduction(); | |
let isDev = !mix.inProduction(); |
This file contains 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
Consider prioritizing writing better/usefull PHPDoc instead of the current way. |
This file contains 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
<template> | |
<div :class="classes" :style="style"> | |
<div ref="container" :class="classNames.container"> | |
<input type="hidden" name="department_id" id="department_id"/> | |
<div ref="header" :class="classNames.header">{{ headerText }}</div> | |
<div ref="content" :class="classNames.content"> | |
<py-scroll ref="scroll" :ops="ops"> | |
<slot> |
This file contains 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
@import "~@pyro/admin-theme/lib/styling/base"; | |
$table-background : #FFFFFF; | |
$table-striped-background : #F5F5F5; | |
@import '~foundation-sites/scss/components/_table.scss'; | |
$cp-prefix : #{$prefix}-cp; | |
.#{$cp-prefix} { |
This file contains 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 Anomaly\Streams\Platform\Support; | |
/** | |
* Class Translator | |
* | |
* @link http://pyrocms.com/ | |
* @author PyroCMS, Inc. <[email protected]> | |
* @author Ryan Thompson <[email protected]> | |
*/ | |
class Translator |
This file contains 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
{ | |
"name": "laravel-enso/enso", | |
"description": "Laravel Enso can be a solid start for any SPA based on Laravel 5.6, Vue and Bulma", | |
"license": "MIT", | |
"type": "project", | |
"require": { | |
"php": ">=7.1.3", | |
"doctrine/dbal": "^2.8", | |
"fideloper/proxy": "~4.0", | |
"guzzlehttp/guzzle": "^6.3", |
This file contains 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 Anomaly\NavigationModule\Link\Type\Contract; | |
use Anomaly\NavigationModule\Link\Contract\LinkInterface; | |
use Anomaly\Streams\Platform\Ui\Form\FormBuilder; | |
/** | |
* Interface LinkTypeInterface | |
* | |
* @link http://pyrocms.com/ | |
* @author PyroCMS, Inc. <[email protected]> |
This file contains 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 Anomaly\NavigationModule\Link\Type\Contract; | |
use Anomaly\NavigationModule\Link\Contract\LinkInterface; | |
use Anomaly\Streams\Platform\Ui\Form\FormBuilder; | |
/** | |
* Interface LinkTypeInterface | |
* | |
* @link http://pyrocms.com/ | |
* @author PyroCMS, Inc. <[email protected]> |
NewerOlder