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
<button class="btn btn-primary" data-modal-toggle="#modal_draggable"> | |
Show Modal | |
</button> | |
<div class="modal" data-modal="true" id="modal_draggable"> | |
<div class="modal-content max-w-[600px] top-[10%]"> | |
<div class="modal-header"> | |
<h3 class="modal-title"> | |
Modal Title | |
</h3> | |
<button class="btn btn-xs btn-icon btn-light" data-modal-dismiss="true"> |
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 { | |
getAttributeValueByBreakpoint, | |
stringSnakeToCamel, | |
getObjectPropertyValueByKey, | |
EventHandlerUtil, | |
throttle, | |
} from '../_utils/index' | |
export class SwapperStore { | |
static store: Map<string, SwapperComponent> = new Map() |
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 objectPath from "object-path"; | |
import { config } from "@/layouts/default-layout/config/helper"; | |
import { useBodyStore } from "@/stores/body"; | |
import { useConfigStore } from "@/stores/config"; | |
class LayoutService { | |
public static bodyStore: any; | |
public static configStore: any; | |
/** |
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 { | |
DataUtil, | |
ElementAnimateUtil, | |
ElementStyleUtil, | |
EventHandlerUtil, | |
getAttributeValueByBreakpoint, | |
getCSS, | |
getElementOffset, | |
getObjectPropertyValueByKey, | |
getScrollTop, |
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
<link id="main-css" rel="stylesheet" href="/style.bundle.css"> |
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
<link id="main-css" rel="stylesheet" href="/style.bundle.css"> |
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
/* eslint-disable no-undef */ | |
const path = require("path"); | |
const WebpackRTLPlugin = require("webpack-rtl-plugin"); | |
const MiniCssExtractPlugin = require("mini-css-extract-plugin"); | |
const RemovePlugin = require("remove-files-webpack-plugin"); | |
// global variables | |
// eslint-disable-next-line no-undef | |
const distPath = `${path.resolve(__dirname)}/src/assets/rtl`; | |
const entries = { style: "./src/assets/sass/style.scss" }; |
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 {Link} from 'react-router-dom' | |
import clsx from 'clsx' | |
import {useLayout} from '../../core' | |
import {toAbsoluteUrl} from '../../../helpers' | |
import {AsideMenu} from './AsideMenu' | |
import {AsideUserMenu} from '../../../partials' | |
import {useThemeMode} from '../../../partials/layout/theme-mode/ThemeModeProvider' | |
import { MenuComponent } from '../../../assets/ts/components' | |
const AsideDefault = () => { |
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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "es5", | |
"lib": ["dom", "dom.iterable", "esnext"], | |
"allowJs": true, | |
"noImplicitAny": false, | |
"skipLibCheck": true, | |
"esModuleInterop": true, | |
"allowSyntheticDefaultImports": true, | |
"strict": true, |
NewerOlder