): ClassDecorator;
5 |
--------------------------------------------------------------------------------
/public/vendor/streams/ui/types/Ui/Support/Decorators/index.d.ts:
--------------------------------------------------------------------------------
1 | export * from './element';
2 | export * from './styled';
3 |
--------------------------------------------------------------------------------
/public/vendor/streams/ui/types/Ui/Support/index.d.ts:
--------------------------------------------------------------------------------
1 | export * from './Decorators';
2 | export * from './DefinitionCollection';
3 | export * from './ElementCollection';
4 |
--------------------------------------------------------------------------------
/public/vendor/streams/ui/types/Ui/Theme/index.d.ts:
--------------------------------------------------------------------------------
1 | import './setup';
2 | export * from './Color';
3 | export * from './colors';
4 | export * from './variables';
5 | export * from './Theme';
6 | export * from './ThemeManager';
7 | export { default as utils } from './utils';
8 | export * from './utils';
9 |
--------------------------------------------------------------------------------
/public/vendor/streams/ui/types/Ui/Theme/setup.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/public/vendor/streams/ui/types/Ui/UIManager.d.ts:
--------------------------------------------------------------------------------
1 | import { DefinitionCollection, ElementCollection } from './Support';
2 | import { ThemeManager } from './Theme';
3 | export declare class UIManager {
4 | elements: ElementCollection;
5 | definitions: DefinitionCollection;
6 | themes: ThemeManager;
7 | }
8 |
--------------------------------------------------------------------------------
/public/vendor/streams/ui/types/Ui/constants.d.ts:
--------------------------------------------------------------------------------
1 | export declare const constants: {
2 | fontPath: string;
3 | rootSelector: string;
4 | normalize: boolean;
5 | };
6 |
--------------------------------------------------------------------------------
/public/vendor/streams/ui/types/Ui/index.d.ts:
--------------------------------------------------------------------------------
1 | import './Elements';
2 | export * from './Elements';
3 | export * from './UiServiceProvider';
4 | export * from './Support';
5 | export * from './Theme';
6 |
--------------------------------------------------------------------------------
/public/vendor/streams/ui/types/Ui/types/config.d.ts:
--------------------------------------------------------------------------------
1 | export interface StreamsUiConfiguration {
2 | theme?: string;
3 | fontPath?: string;
4 | rootSelector?: string;
5 | normalize?: boolean;
6 | }
7 |
--------------------------------------------------------------------------------
/public/vendor/streams/ui/types/Ui/types/index.d.ts:
--------------------------------------------------------------------------------
1 | export * from './config';
2 |
--------------------------------------------------------------------------------
/public/vendor/streams/ui/types/_expose.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/public/vendor/streams/ui/types/index.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | import 'reflect-metadata';
3 | export * from './Core';
4 | export * from './Ui';
5 | import './_expose.ts';
6 |
--------------------------------------------------------------------------------
/public/vendor/streams/ui/types/require.d.ts:
--------------------------------------------------------------------------------
1 | import 'requirejs';
2 |
--------------------------------------------------------------------------------
/public/vendor/web-tinker/mix-manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "/app.js": "/app.js?id=54675ea5df087610508e",
3 | "/app.css": "/app.css?id=1e19e507bfac7fe73255"
4 | }
5 |
--------------------------------------------------------------------------------
/resources/js/app.js:
--------------------------------------------------------------------------------
1 | import './bootstrap';
2 | import '../scss/app.scss';
3 | import 'tippy.js/dist/tippy.css';
4 |
5 | import { Alpine } from '../../vendor/livewire/livewire/dist/livewire.esm';
6 |
7 | import Tooltip from "@ryangjchandler/alpine-tooltip";
8 | import Mousetrap from '@danharrin/alpine-mousetrap';
9 |
10 | Alpine.plugin(Tooltip);
11 | Alpine.plugin(Mousetrap);
12 |
--------------------------------------------------------------------------------
/resources/scss/app.scss:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
5 | * {
6 | font-size: 16px;
7 | }
8 |
9 | // LastPass Autofill Fix
10 | [autocomplete="off"] + div[data-lastpass-icon-root="true"] {
11 | opacity: 0 !important;
12 | display: none !important;
13 | }
14 |
15 | [autocomplete="off"] + div[data-lastpass-infield="true"] {
16 | opacity: 0 !important;
17 | display: none !important;
18 | }
19 |
--------------------------------------------------------------------------------
/resources/views/admin/dashboard.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | Count: {{ $count }}
4 |
5 |
6 | Increment
7 |
8 |
9 | Decrement
10 |
11 |
12 | Reset
13 |
14 |
15 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/.gitignore:
--------------------------------------------------------------------------------
1 | compiled.php
2 | config.php
3 | down
4 | events.scanned.php
5 | maintenance.php
6 | routes.php
7 | routes.scanned.php
8 | schedule-*
9 | services.json
10 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/streams/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/tailwind.config.js:
--------------------------------------------------------------------------------
1 | import preset from './vendor/streams/ui/tailwind.preset.js'
2 |
3 | export default {
4 | presets: [preset],
5 | content: [
6 | './vendor/streams/ui/**/*.blade.php',
7 | './resources/**/*.blade.php',
8 | './docs/*.md',
9 | ],
10 | plugins: [
11 | require('@tailwindcss/forms'),
12 | require('@tailwindcss/typography'),
13 | ],
14 | }
15 |
--------------------------------------------------------------------------------
/tests/TestCase.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/vite.config.js:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vite';
2 | import laravel from 'laravel-vite-plugin';
3 |
4 | export default defineConfig({
5 | plugins: [
6 | laravel({
7 | input: [
8 | 'resources/js/app.js',
9 | ],
10 | refresh: [
11 | './vendor/streams/ui/**/*.blade.php',
12 | ],
13 | }),
14 | ]
15 | });
16 |
--------------------------------------------------------------------------------