diff --git a/.eslintrc.json b/.eslintrc.json
deleted file mode 100644
index a2718c12..00000000
--- a/.eslintrc.json
+++ /dev/null
@@ -1,95 +0,0 @@
-{
- "root": true,
- "env": {
- "es6": true
- },
- "parserOptions": {
- "ecmaVersion": 2018
- },
- "ignorePatterns": [
- "projects/**/*"
- ],
- "overrides": [
- {
- "files": [
- "*.ts"
- ],
- "parserOptions": {
- "project": [
- "tsconfig.json"
- ],
- "createDefaultProgram": true
- },
- "extends": [
- "plugin:@angular-eslint/ng-cli-compat",
- "plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
- "plugin:@angular-eslint/template/process-inline-templates"
- ],
- "rules": {
- "@angular-eslint/component-selector": [
- "error",
- {
- "type": "element",
- "prefix": "",
- "style": "kebab-case"
- }
- ],
- "@angular-eslint/directive-selector": [
- "error",
- {
- "type": "attribute",
- "prefix": "",
- "style": "camelCase"
- }
- ],
- "@typescript-eslint/dot-notation": "off",
- "@typescript-eslint/explicit-function-return-type": "error",
- "@typescript-eslint/explicit-member-accessibility": [
- "off",
- {
- "accessibility": "explicit"
- }
- ],
- "@typescript-eslint/no-inferrable-types": "off",
- "arrow-parens": [
- "error",
- "as-needed",
- {
- "requireForBlockBody": true
- }
- ],
- "brace-style": [
- "off",
- "off"
- ],
- "import/order": "off",
- "max-len": [
- "error",
- {
- "ignorePattern": "^import |^export | implements",
- "code": 180
- }
- ],
- "no-underscore-dangle": "off",
- "object-shorthand": "off",
- "quote-props": [
- "error",
- "consistent"
- ],
- "quotes": [
- "error",
- "single"
- ]
- }
- },
- {
- "files": [
- "*.html"
- ],
- "extends": [
- "plugin:@angular-eslint/template/recommended"
- ],
- "rules": {}
- }
- ]
-}
diff --git a/.prettierrc b/.prettierrc
new file mode 100644
index 00000000..953c17e0
--- /dev/null
+++ b/.prettierrc
@@ -0,0 +1,11 @@
+{
+ "printWidth": 80,
+ "semi": true,
+ "bracketSameLine": false,
+ "trailingComma": "es5",
+ "tabWidth": 4,
+ "singleQuote": true,
+ "bracketSpacing": true,
+ "arrowParens": "always",
+ "plugins": ["prettier-plugin-organize-imports", "prettier-plugin-tailwindcss"]
+}
diff --git a/angular.json b/angular.json
index 9a3f9d87..07281f93 100644
--- a/angular.json
+++ b/angular.json
@@ -20,9 +20,7 @@
"outputPath": "dist/fuse",
"index": "src/index.html",
"browser": "src/main.ts",
- "polyfills": [
- "zone.js"
- ],
+ "polyfills": ["zone.js"],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"allowedCommonJsDependencies": [
@@ -44,9 +42,7 @@
}
],
"stylePreprocessorOptions": {
- "includePaths": [
- "src/@fuse/styles"
- ]
+ "includePaths": ["src/@fuse/styles"]
},
"styles": [
"src/@fuse/styles/tailwind.scss",
@@ -100,10 +96,7 @@
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
- "polyfills": [
- "zone.js",
- "zone.js/testing"
- ],
+ "polyfills": ["zone.js", "zone.js/testing"],
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"assets": [
@@ -112,9 +105,7 @@
"input": "public"
}
],
- "styles": [
- "src/styles/styles.scss"
- ],
+ "styles": ["src/styles/styles.scss"],
"scripts": []
}
}
diff --git a/package-lock.json b/package-lock.json
index 590e984e..696b9499 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "fuse-angular",
- "version": "19.1.0",
+ "version": "20.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "fuse-angular",
- "version": "19.1.0",
+ "version": "20.0.0",
"license": "https://themeforest.net/licenses/standard",
"dependencies": {
"@angular/animations": "18.0.0",
@@ -56,6 +56,9 @@
"karma-jasmine-html-reporter": "2.1.0",
"lodash": "4.17.21",
"postcss": "8.4.38",
+ "prettier": "3.2.5",
+ "prettier-plugin-organize-imports": "3.2.4",
+ "prettier-plugin-tailwindcss": "0.5.14",
"tailwindcss": "3.4.3",
"typescript": "5.4.5"
}
@@ -11184,6 +11187,115 @@
"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
"dev": true
},
+ "node_modules/prettier": {
+ "version": "3.2.5",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz",
+ "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==",
+ "dev": true,
+ "bin": {
+ "prettier": "bin/prettier.cjs"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/prettier/prettier?sponsor=1"
+ }
+ },
+ "node_modules/prettier-plugin-organize-imports": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/prettier-plugin-organize-imports/-/prettier-plugin-organize-imports-3.2.4.tgz",
+ "integrity": "sha512-6m8WBhIp0dfwu0SkgfOxJqh+HpdyfqSSLfKKRZSFbDuEQXDDndb8fTpRWkUrX/uBenkex3MgnVk0J3b3Y5byog==",
+ "dev": true,
+ "peerDependencies": {
+ "@volar/vue-language-plugin-pug": "^1.0.4",
+ "@volar/vue-typescript": "^1.0.4",
+ "prettier": ">=2.0",
+ "typescript": ">=2.9"
+ },
+ "peerDependenciesMeta": {
+ "@volar/vue-language-plugin-pug": {
+ "optional": true
+ },
+ "@volar/vue-typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/prettier-plugin-tailwindcss": {
+ "version": "0.5.14",
+ "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.5.14.tgz",
+ "integrity": "sha512-Puaz+wPUAhFp8Lo9HuciYKM2Y2XExESjeT+9NQoVFXZsPPnc9VYss2SpxdQ6vbatmt8/4+SN0oe0I1cPDABg9Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=14.21.3"
+ },
+ "peerDependencies": {
+ "@ianvs/prettier-plugin-sort-imports": "*",
+ "@prettier/plugin-pug": "*",
+ "@shopify/prettier-plugin-liquid": "*",
+ "@trivago/prettier-plugin-sort-imports": "*",
+ "@zackad/prettier-plugin-twig-melody": "*",
+ "prettier": "^3.0",
+ "prettier-plugin-astro": "*",
+ "prettier-plugin-css-order": "*",
+ "prettier-plugin-import-sort": "*",
+ "prettier-plugin-jsdoc": "*",
+ "prettier-plugin-marko": "*",
+ "prettier-plugin-organize-attributes": "*",
+ "prettier-plugin-organize-imports": "*",
+ "prettier-plugin-sort-imports": "*",
+ "prettier-plugin-style-order": "*",
+ "prettier-plugin-svelte": "*"
+ },
+ "peerDependenciesMeta": {
+ "@ianvs/prettier-plugin-sort-imports": {
+ "optional": true
+ },
+ "@prettier/plugin-pug": {
+ "optional": true
+ },
+ "@shopify/prettier-plugin-liquid": {
+ "optional": true
+ },
+ "@trivago/prettier-plugin-sort-imports": {
+ "optional": true
+ },
+ "@zackad/prettier-plugin-twig-melody": {
+ "optional": true
+ },
+ "prettier-plugin-astro": {
+ "optional": true
+ },
+ "prettier-plugin-css-order": {
+ "optional": true
+ },
+ "prettier-plugin-import-sort": {
+ "optional": true
+ },
+ "prettier-plugin-jsdoc": {
+ "optional": true
+ },
+ "prettier-plugin-marko": {
+ "optional": true
+ },
+ "prettier-plugin-organize-attributes": {
+ "optional": true
+ },
+ "prettier-plugin-organize-imports": {
+ "optional": true
+ },
+ "prettier-plugin-sort-imports": {
+ "optional": true
+ },
+ "prettier-plugin-style-order": {
+ "optional": true
+ },
+ "prettier-plugin-svelte": {
+ "optional": true
+ }
+ }
+ },
"node_modules/proc-log": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/proc-log/-/proc-log-4.2.0.tgz",
diff --git a/package.json b/package.json
index 5fdacc99..62707565 100644
--- a/package.json
+++ b/package.json
@@ -60,6 +60,9 @@
"karma-jasmine-html-reporter": "2.1.0",
"lodash": "4.17.21",
"postcss": "8.4.38",
+ "prettier": "3.2.5",
+ "prettier-plugin-organize-imports": "3.2.4",
+ "prettier-plugin-tailwindcss": "0.5.14",
"tailwindcss": "3.4.3",
"typescript": "5.4.5"
}
diff --git a/src/@fuse/animations/defaults.ts b/src/@fuse/animations/defaults.ts
index 784fd751..4da64f64 100644
--- a/src/@fuse/animations/defaults.ts
+++ b/src/@fuse/animations/defaults.ts
@@ -1,13 +1,11 @@
-export class FuseAnimationCurves
-{
+export class FuseAnimationCurves {
static standard = 'cubic-bezier(0.4, 0.0, 0.2, 1)';
static deceleration = 'cubic-bezier(0.0, 0.0, 0.2, 1)';
static acceleration = 'cubic-bezier(0.4, 0.0, 1, 1)';
static sharp = 'cubic-bezier(0.4, 0.0, 0.6, 1)';
}
-export class FuseAnimationDurations
-{
+export class FuseAnimationDurations {
static complex = '375ms';
static entering = '225ms';
static exiting = '195ms';
diff --git a/src/@fuse/animations/expand-collapse.ts b/src/@fuse/animations/expand-collapse.ts
index d0b93210..c02c0e74 100644
--- a/src/@fuse/animations/expand-collapse.ts
+++ b/src/@fuse/animations/expand-collapse.ts
@@ -1,34 +1,37 @@
-import { animate, state, style, transition, trigger } from '@angular/animations';
-import { FuseAnimationCurves, FuseAnimationDurations } from '@fuse/animations/defaults';
+import {
+ animate,
+ state,
+ style,
+ transition,
+ trigger,
+} from '@angular/animations';
+import {
+ FuseAnimationCurves,
+ FuseAnimationDurations,
+} from '@fuse/animations/defaults';
// -----------------------------------------------------------------------------------------------------
// @ Expand / collapse
// -----------------------------------------------------------------------------------------------------
-const expandCollapse = trigger('expandCollapse',
- [
- state('void, collapsed',
- style({
- height: '0',
- }),
- ),
+const expandCollapse = trigger('expandCollapse', [
+ state(
+ 'void, collapsed',
+ style({
+ height: '0',
+ })
+ ),
- state('*, expanded',
- style('*'),
- ),
+ state('*, expanded', style('*')),
- // Prevent the transition if the state is false
- transition('void <=> false, collapsed <=> false, expanded <=> false', []),
+ // Prevent the transition if the state is false
+ transition('void <=> false, collapsed <=> false, expanded <=> false', []),
- // Transition
- transition('void <=> *, collapsed <=> expanded',
- animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('void <=> *, collapsed <=> expanded', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
+ },
+ }),
+]);
export { expandCollapse };
diff --git a/src/@fuse/animations/fade.ts b/src/@fuse/animations/fade.ts
index d14cc2f1..0afbf111 100644
--- a/src/@fuse/animations/fade.ts
+++ b/src/@fuse/animations/fade.ts
@@ -1,330 +1,330 @@
-import { animate, state, style, transition, trigger } from '@angular/animations';
-import { FuseAnimationCurves, FuseAnimationDurations } from '@fuse/animations/defaults';
+import {
+ animate,
+ state,
+ style,
+ transition,
+ trigger,
+} from '@angular/animations';
+import {
+ FuseAnimationCurves,
+ FuseAnimationDurations,
+} from '@fuse/animations/defaults';
// -----------------------------------------------------------------------------------------------------
// @ Fade in
// -----------------------------------------------------------------------------------------------------
-const fadeIn = trigger('fadeIn',
- [
- state('void',
- style({
- opacity: 0,
- }),
- ),
+const fadeIn = trigger('fadeIn', [
+ state(
+ 'void',
+ style({
+ opacity: 0,
+ })
+ ),
- state('*',
- style({
- opacity: 1,
- }),
- ),
+ state(
+ '*',
+ style({
+ opacity: 1,
+ })
+ ),
- // Prevent the transition if the state is false
- transition('void => false', []),
+ // Prevent the transition if the state is false
+ transition('void => false', []),
- // Transition
- transition('void => *', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('void => *', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Fade in top
// -----------------------------------------------------------------------------------------------------
-const fadeInTop = trigger('fadeInTop',
- [
- state('void',
- style({
- opacity : 0,
- transform: 'translate3d(0, -100%, 0)',
- }),
- ),
+const fadeInTop = trigger('fadeInTop', [
+ state(
+ 'void',
+ style({
+ opacity: 0,
+ transform: 'translate3d(0, -100%, 0)',
+ })
+ ),
- state('*',
- style({
- opacity : 1,
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+ state(
+ '*',
+ style({
+ opacity: 1,
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('void => false', []),
+ // Prevent the transition if the state is false
+ transition('void => false', []),
- // Transition
- transition('void => *', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('void => *', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Fade in bottom
// -----------------------------------------------------------------------------------------------------
-const fadeInBottom = trigger('fadeInBottom',
- [
- state('void',
- style({
- opacity : 0,
- transform: 'translate3d(0, 100%, 0)',
- }),
- ),
+const fadeInBottom = trigger('fadeInBottom', [
+ state(
+ 'void',
+ style({
+ opacity: 0,
+ transform: 'translate3d(0, 100%, 0)',
+ })
+ ),
- state('*',
- style({
- opacity : 1,
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+ state(
+ '*',
+ style({
+ opacity: 1,
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('void => false', []),
+ // Prevent the transition if the state is false
+ transition('void => false', []),
- // Transition
- transition('void => *', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('void => *', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Fade in left
// -----------------------------------------------------------------------------------------------------
-const fadeInLeft = trigger('fadeInLeft',
- [
- state('void',
- style({
- opacity : 0,
- transform: 'translate3d(-100%, 0, 0)',
- }),
- ),
+const fadeInLeft = trigger('fadeInLeft', [
+ state(
+ 'void',
+ style({
+ opacity: 0,
+ transform: 'translate3d(-100%, 0, 0)',
+ })
+ ),
- state('*',
- style({
- opacity : 1,
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+ state(
+ '*',
+ style({
+ opacity: 1,
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('void => false', []),
+ // Prevent the transition if the state is false
+ transition('void => false', []),
- // Transition
- transition('void => *', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('void => *', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Fade in right
// -----------------------------------------------------------------------------------------------------
-const fadeInRight = trigger('fadeInRight',
- [
- state('void',
- style({
- opacity : 0,
- transform: 'translate3d(100%, 0, 0)',
- }),
- ),
+const fadeInRight = trigger('fadeInRight', [
+ state(
+ 'void',
+ style({
+ opacity: 0,
+ transform: 'translate3d(100%, 0, 0)',
+ })
+ ),
- state('*',
- style({
- opacity : 1,
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+ state(
+ '*',
+ style({
+ opacity: 1,
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('void => false', []),
+ // Prevent the transition if the state is false
+ transition('void => false', []),
- // Transition
- transition('void => *', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('void => *', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Fade out
// -----------------------------------------------------------------------------------------------------
-const fadeOut = trigger('fadeOut',
- [
- state('*',
- style({
- opacity: 1,
- }),
- ),
+const fadeOut = trigger('fadeOut', [
+ state(
+ '*',
+ style({
+ opacity: 1,
+ })
+ ),
- state('void',
- style({
- opacity: 0,
- }),
- ),
+ state(
+ 'void',
+ style({
+ opacity: 0,
+ })
+ ),
- // Prevent the transition if the state is false
- transition('false => void', []),
+ // Prevent the transition if the state is false
+ transition('false => void', []),
- // Transition
- transition('* => void', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('* => void', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Fade out top
// -----------------------------------------------------------------------------------------------------
-const fadeOutTop = trigger('fadeOutTop',
- [
- state('*',
- style({
- opacity : 1,
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+const fadeOutTop = trigger('fadeOutTop', [
+ state(
+ '*',
+ style({
+ opacity: 1,
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- state('void',
- style({
- opacity : 0,
- transform: 'translate3d(0, -100%, 0)',
- }),
- ),
+ state(
+ 'void',
+ style({
+ opacity: 0,
+ transform: 'translate3d(0, -100%, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('false => void', []),
+ // Prevent the transition if the state is false
+ transition('false => void', []),
- // Transition
- transition('* => void', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('* => void', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Fade out bottom
// -----------------------------------------------------------------------------------------------------
-const fadeOutBottom = trigger('fadeOutBottom',
- [
- state('*',
- style({
- opacity : 1,
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+const fadeOutBottom = trigger('fadeOutBottom', [
+ state(
+ '*',
+ style({
+ opacity: 1,
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- state('void',
- style({
- opacity : 0,
- transform: 'translate3d(0, 100%, 0)',
- }),
- ),
+ state(
+ 'void',
+ style({
+ opacity: 0,
+ transform: 'translate3d(0, 100%, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('false => void', []),
+ // Prevent the transition if the state is false
+ transition('false => void', []),
- // Transition
- transition('* => void', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('* => void', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Fade out left
// -----------------------------------------------------------------------------------------------------
-const fadeOutLeft = trigger('fadeOutLeft',
- [
- state('*',
- style({
- opacity : 1,
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+const fadeOutLeft = trigger('fadeOutLeft', [
+ state(
+ '*',
+ style({
+ opacity: 1,
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- state('void',
- style({
- opacity : 0,
- transform: 'translate3d(-100%, 0, 0)',
- }),
- ),
+ state(
+ 'void',
+ style({
+ opacity: 0,
+ transform: 'translate3d(-100%, 0, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('false => void', []),
+ // Prevent the transition if the state is false
+ transition('false => void', []),
- // Transition
- transition('* => void', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('* => void', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Fade out right
// -----------------------------------------------------------------------------------------------------
-const fadeOutRight = trigger('fadeOutRight',
- [
- state('*',
- style({
- opacity : 1,
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+const fadeOutRight = trigger('fadeOutRight', [
+ state(
+ '*',
+ style({
+ opacity: 1,
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- state('void',
- style({
- opacity : 0,
- transform: 'translate3d(100%, 0, 0)',
- }),
- ),
+ state(
+ 'void',
+ style({
+ opacity: 0,
+ transform: 'translate3d(100%, 0, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('false => void', []),
+ // Prevent the transition if the state is false
+ transition('false => void', []),
- // Transition
- transition('* => void', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('* => void', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
+ },
+ }),
+]);
-export { fadeIn, fadeInTop, fadeInBottom, fadeInLeft, fadeInRight, fadeOut, fadeOutTop, fadeOutBottom, fadeOutLeft, fadeOutRight };
+export {
+ fadeIn,
+ fadeInBottom,
+ fadeInLeft,
+ fadeInRight,
+ fadeInTop,
+ fadeOut,
+ fadeOutBottom,
+ fadeOutLeft,
+ fadeOutRight,
+ fadeOutTop,
+};
diff --git a/src/@fuse/animations/public-api.ts b/src/@fuse/animations/public-api.ts
index d475fbc0..cbf25af5 100644
--- a/src/@fuse/animations/public-api.ts
+++ b/src/@fuse/animations/public-api.ts
@@ -1,15 +1,50 @@
import { expandCollapse } from '@fuse/animations/expand-collapse';
-import { fadeIn, fadeInBottom, fadeInLeft, fadeInRight, fadeInTop, fadeOut, fadeOutBottom, fadeOutLeft, fadeOutRight, fadeOutTop } from '@fuse/animations/fade';
+import {
+ fadeIn,
+ fadeInBottom,
+ fadeInLeft,
+ fadeInRight,
+ fadeInTop,
+ fadeOut,
+ fadeOutBottom,
+ fadeOutLeft,
+ fadeOutRight,
+ fadeOutTop,
+} from '@fuse/animations/fade';
import { shake } from '@fuse/animations/shake';
-import { slideInBottom, slideInLeft, slideInRight, slideInTop, slideOutBottom, slideOutLeft, slideOutRight, slideOutTop } from '@fuse/animations/slide';
+import {
+ slideInBottom,
+ slideInLeft,
+ slideInRight,
+ slideInTop,
+ slideOutBottom,
+ slideOutLeft,
+ slideOutRight,
+ slideOutTop,
+} from '@fuse/animations/slide';
import { zoomIn, zoomOut } from '@fuse/animations/zoom';
export const fuseAnimations = [
expandCollapse,
- fadeIn, fadeInTop, fadeInBottom, fadeInLeft, fadeInRight,
- fadeOut, fadeOutTop, fadeOutBottom, fadeOutLeft, fadeOutRight,
+ fadeIn,
+ fadeInTop,
+ fadeInBottom,
+ fadeInLeft,
+ fadeInRight,
+ fadeOut,
+ fadeOutTop,
+ fadeOutBottom,
+ fadeOutLeft,
+ fadeOutRight,
shake,
- slideInTop, slideInBottom, slideInLeft, slideInRight,
- slideOutTop, slideOutBottom, slideOutLeft, slideOutRight,
- zoomIn, zoomOut,
+ slideInTop,
+ slideInBottom,
+ slideInLeft,
+ slideInRight,
+ slideOutTop,
+ slideOutBottom,
+ slideOutLeft,
+ slideOutRight,
+ zoomIn,
+ zoomOut,
];
diff --git a/src/@fuse/animations/shake.ts b/src/@fuse/animations/shake.ts
index e66f8f79..bb7ef616 100644
--- a/src/@fuse/animations/shake.ts
+++ b/src/@fuse/animations/shake.ts
@@ -1,73 +1,78 @@
-import { animate, keyframes, style, transition, trigger } from '@angular/animations';
+import {
+ animate,
+ keyframes,
+ style,
+ transition,
+ trigger,
+} from '@angular/animations';
// -----------------------------------------------------------------------------------------------------
// @ Shake
// -----------------------------------------------------------------------------------------------------
-const shake = trigger('shake',
- [
+const shake = trigger('shake', [
+ // Prevent the transition if the state is false
+ transition('void => false', []),
- // Prevent the transition if the state is false
- transition('void => false', []),
-
- // Transition
- transition('void => *, * => true',
- [
- animate('{{timings}}',
- keyframes([
- style({
- transform: 'translate3d(0, 0, 0)',
- offset : 0,
- }),
- style({
- transform: 'translate3d(-10px, 0, 0)',
- offset : 0.1,
- }),
- style({
- transform: 'translate3d(10px, 0, 0)',
- offset : 0.2,
- }),
- style({
- transform: 'translate3d(-10px, 0, 0)',
- offset : 0.3,
- }),
- style({
- transform: 'translate3d(10px, 0, 0)',
- offset : 0.4,
- }),
- style({
- transform: 'translate3d(-10px, 0, 0)',
- offset : 0.5,
- }),
- style({
- transform: 'translate3d(10px, 0, 0)',
- offset : 0.6,
- }),
- style({
- transform: 'translate3d(-10px, 0, 0)',
- offset : 0.7,
- }),
- style({
- transform: 'translate3d(10px, 0, 0)',
- offset : 0.8,
- }),
- style({
- transform: 'translate3d(-10px, 0, 0)',
- offset : 0.9,
- }),
- style({
- transform: 'translate3d(0, 0, 0)',
- offset : 1,
- }),
- ]),
- ),
- ],
- {
- params: {
- timings: '0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955)',
- },
+ // Transition
+ transition(
+ 'void => *, * => true',
+ [
+ animate(
+ '{{timings}}',
+ keyframes([
+ style({
+ transform: 'translate3d(0, 0, 0)',
+ offset: 0,
+ }),
+ style({
+ transform: 'translate3d(-10px, 0, 0)',
+ offset: 0.1,
+ }),
+ style({
+ transform: 'translate3d(10px, 0, 0)',
+ offset: 0.2,
+ }),
+ style({
+ transform: 'translate3d(-10px, 0, 0)',
+ offset: 0.3,
+ }),
+ style({
+ transform: 'translate3d(10px, 0, 0)',
+ offset: 0.4,
+ }),
+ style({
+ transform: 'translate3d(-10px, 0, 0)',
+ offset: 0.5,
+ }),
+ style({
+ transform: 'translate3d(10px, 0, 0)',
+ offset: 0.6,
+ }),
+ style({
+ transform: 'translate3d(-10px, 0, 0)',
+ offset: 0.7,
+ }),
+ style({
+ transform: 'translate3d(10px, 0, 0)',
+ offset: 0.8,
+ }),
+ style({
+ transform: 'translate3d(-10px, 0, 0)',
+ offset: 0.9,
+ }),
+ style({
+ transform: 'translate3d(0, 0, 0)',
+ offset: 1,
+ }),
+ ])
+ ),
+ ],
+ {
+ params: {
+ timings: '0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955)',
},
- ),
- ],
-);
+ }
+ ),
+]);
export { shake };
diff --git a/src/@fuse/animations/slide.ts b/src/@fuse/animations/slide.ts
index a38c1466..aaf4bf07 100644
--- a/src/@fuse/animations/slide.ts
+++ b/src/@fuse/animations/slide.ts
@@ -1,252 +1,254 @@
-import { animate, state, style, transition, trigger } from '@angular/animations';
-import { FuseAnimationCurves, FuseAnimationDurations } from '@fuse/animations/defaults';
+import {
+ animate,
+ state,
+ style,
+ transition,
+ trigger,
+} from '@angular/animations';
+import {
+ FuseAnimationCurves,
+ FuseAnimationDurations,
+} from '@fuse/animations/defaults';
// -----------------------------------------------------------------------------------------------------
// @ Slide in top
// -----------------------------------------------------------------------------------------------------
-const slideInTop = trigger('slideInTop',
- [
- state('void',
- style({
- transform: 'translate3d(0, -100%, 0)',
- }),
- ),
+const slideInTop = trigger('slideInTop', [
+ state(
+ 'void',
+ style({
+ transform: 'translate3d(0, -100%, 0)',
+ })
+ ),
- state('*',
- style({
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+ state(
+ '*',
+ style({
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('void => false', []),
+ // Prevent the transition if the state is false
+ transition('void => false', []),
- // Transition
- transition('void => *', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('void => *', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Slide in bottom
// -----------------------------------------------------------------------------------------------------
-const slideInBottom = trigger('slideInBottom',
- [
- state('void',
- style({
- transform: 'translate3d(0, 100%, 0)',
- }),
- ),
+const slideInBottom = trigger('slideInBottom', [
+ state(
+ 'void',
+ style({
+ transform: 'translate3d(0, 100%, 0)',
+ })
+ ),
- state('*',
- style({
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+ state(
+ '*',
+ style({
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('void => false', []),
+ // Prevent the transition if the state is false
+ transition('void => false', []),
- // Transition
- transition('void => *', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('void => *', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Slide in left
// -----------------------------------------------------------------------------------------------------
-const slideInLeft = trigger('slideInLeft',
- [
- state('void',
- style({
- transform: 'translate3d(-100%, 0, 0)',
- }),
- ),
+const slideInLeft = trigger('slideInLeft', [
+ state(
+ 'void',
+ style({
+ transform: 'translate3d(-100%, 0, 0)',
+ })
+ ),
- state('*',
- style({
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+ state(
+ '*',
+ style({
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('void => false', []),
+ // Prevent the transition if the state is false
+ transition('void => false', []),
- // Transition
- transition('void => *', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('void => *', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Slide in right
// -----------------------------------------------------------------------------------------------------
-const slideInRight = trigger('slideInRight',
- [
- state('void',
- style({
- transform: 'translate3d(100%, 0, 0)',
- }),
- ),
+const slideInRight = trigger('slideInRight', [
+ state(
+ 'void',
+ style({
+ transform: 'translate3d(100%, 0, 0)',
+ })
+ ),
- state('*',
- style({
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+ state(
+ '*',
+ style({
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('void => false', []),
+ // Prevent the transition if the state is false
+ transition('void => false', []),
- // Transition
- transition('void => *', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('void => *', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Slide out top
// -----------------------------------------------------------------------------------------------------
-const slideOutTop = trigger('slideOutTop',
- [
- state('*',
- style({
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+const slideOutTop = trigger('slideOutTop', [
+ state(
+ '*',
+ style({
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- state('void',
- style({
- transform: 'translate3d(0, -100%, 0)',
- }),
- ),
+ state(
+ 'void',
+ style({
+ transform: 'translate3d(0, -100%, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('false => void', []),
+ // Prevent the transition if the state is false
+ transition('false => void', []),
- // Transition
- transition('* => void', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('* => void', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Slide out bottom
// -----------------------------------------------------------------------------------------------------
-const slideOutBottom = trigger('slideOutBottom',
- [
- state('*',
- style({
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+const slideOutBottom = trigger('slideOutBottom', [
+ state(
+ '*',
+ style({
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- state('void',
- style({
- transform: 'translate3d(0, 100%, 0)',
- }),
- ),
+ state(
+ 'void',
+ style({
+ transform: 'translate3d(0, 100%, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('false => void', []),
+ // Prevent the transition if the state is false
+ transition('false => void', []),
- // Transition
- transition('* => void', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('* => void', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Slide out left
// -----------------------------------------------------------------------------------------------------
-const slideOutLeft = trigger('slideOutLeft',
- [
- state('*',
- style({
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+const slideOutLeft = trigger('slideOutLeft', [
+ state(
+ '*',
+ style({
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- state('void',
- style({
- transform: 'translate3d(-100%, 0, 0)',
- }),
- ),
+ state(
+ 'void',
+ style({
+ transform: 'translate3d(-100%, 0, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('false => void', []),
+ // Prevent the transition if the state is false
+ transition('false => void', []),
- // Transition
- transition('* => void', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('* => void', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Slide out right
// -----------------------------------------------------------------------------------------------------
-const slideOutRight = trigger('slideOutRight',
- [
- state('*',
- style({
- transform: 'translate3d(0, 0, 0)',
- }),
- ),
+const slideOutRight = trigger('slideOutRight', [
+ state(
+ '*',
+ style({
+ transform: 'translate3d(0, 0, 0)',
+ })
+ ),
- state('void',
- style({
- transform: 'translate3d(100%, 0, 0)',
- }),
- ),
+ state(
+ 'void',
+ style({
+ transform: 'translate3d(100%, 0, 0)',
+ })
+ ),
- // Prevent the transition if the state is false
- transition('false => void', []),
+ // Prevent the transition if the state is false
+ transition('false => void', []),
- // Transition
- transition('* => void', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('* => void', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
+ },
+ }),
+]);
-export { slideInTop, slideInBottom, slideInLeft, slideInRight, slideOutTop, slideOutBottom, slideOutLeft, slideOutRight };
+export {
+ slideInBottom,
+ slideInLeft,
+ slideInRight,
+ slideInTop,
+ slideOutBottom,
+ slideOutLeft,
+ slideOutRight,
+ slideOutTop,
+};
diff --git a/src/@fuse/animations/zoom.ts b/src/@fuse/animations/zoom.ts
index fee79143..b039ec4a 100644
--- a/src/@fuse/animations/zoom.ts
+++ b/src/@fuse/animations/zoom.ts
@@ -1,73 +1,75 @@
-import { animate, state, style, transition, trigger } from '@angular/animations';
-import { FuseAnimationCurves, FuseAnimationDurations } from '@fuse/animations/defaults';
+import {
+ animate,
+ state,
+ style,
+ transition,
+ trigger,
+} from '@angular/animations';
+import {
+ FuseAnimationCurves,
+ FuseAnimationDurations,
+} from '@fuse/animations/defaults';
// -----------------------------------------------------------------------------------------------------
// @ Zoom in
// -----------------------------------------------------------------------------------------------------
-const zoomIn = trigger('zoomIn',
- [
+const zoomIn = trigger('zoomIn', [
+ state(
+ 'void',
+ style({
+ opacity: 0,
+ transform: 'scale(0.5)',
+ })
+ ),
- state('void',
- style({
- opacity : 0,
- transform: 'scale(0.5)',
- }),
- ),
+ state(
+ '*',
+ style({
+ opacity: 1,
+ transform: 'scale(1)',
+ })
+ ),
- state('*',
- style({
- opacity : 1,
- transform: 'scale(1)',
- }),
- ),
+ // Prevent the transition if the state is false
+ transition('void => false', []),
- // Prevent the transition if the state is false
- transition('void => false', []),
-
- // Transition
- transition('void => *', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('void => *', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
+ },
+ }),
+]);
// -----------------------------------------------------------------------------------------------------
// @ Zoom out
// -----------------------------------------------------------------------------------------------------
-const zoomOut = trigger('zoomOut',
- [
+const zoomOut = trigger('zoomOut', [
+ state(
+ '*',
+ style({
+ opacity: 1,
+ transform: 'scale(1)',
+ })
+ ),
- state('*',
- style({
- opacity : 1,
- transform: 'scale(1)',
- }),
- ),
+ state(
+ 'void',
+ style({
+ opacity: 0,
+ transform: 'scale(0.5)',
+ })
+ ),
- state('void',
- style({
- opacity : 0,
- transform: 'scale(0.5)',
- }),
- ),
+ // Prevent the transition if the state is false
+ transition('false => void', []),
- // Prevent the transition if the state is false
- transition('false => void', []),
-
- // Transition
- transition('* => void', animate('{{timings}}'),
- {
- params: {
- timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
- },
- },
- ),
- ],
-);
+ // Transition
+ transition('* => void', animate('{{timings}}'), {
+ params: {
+ timings: `${FuseAnimationDurations.exiting} ${FuseAnimationCurves.acceleration}`,
+ },
+ }),
+]);
export { zoomIn, zoomOut };
-
diff --git a/src/@fuse/components/alert/alert.component.html b/src/@fuse/components/alert/alert.component.html
index 2f8e208e..5c234dd0 100644
--- a/src/@fuse/components/alert/alert.component.html
+++ b/src/@fuse/components/alert/alert.component.html
@@ -1,19 +1,14 @@
-
+ [@fadeOut]="!dismissed"
+>
-
+
-
-
+
@@ -21,46 +16,50 @@
-
+ [svgIcon]="'heroicons_solid:check-circle'"
+ >
+ [svgIcon]="'heroicons_solid:check-circle'"
+ >
+ [svgIcon]="'heroicons_solid:x-circle'"
+ >
+ [svgIcon]="'heroicons_solid:check-circle'"
+ >
+ [svgIcon]="'heroicons_solid:information-circle'"
+ >
+ [svgIcon]="'heroicons_solid:check-circle'"
+ >
+ [svgIcon]="'heroicons_solid:exclamation-triangle'"
+ >
-
+ [svgIcon]="'heroicons_solid:x-circle'"
+ >
-
-
diff --git a/src/@fuse/components/alert/alert.component.scss b/src/@fuse/components/alert/alert.component.scss
index 4b1a86ce..10ce2e37 100644
--- a/src/@fuse/components/alert/alert.component.scss
+++ b/src/@fuse/components/alert/alert.component.scss
@@ -33,7 +33,6 @@ fuse-alert {
}
.fuse-alert-default-icon {
-
.mat-icon {
@apply icon-size-5;
}
@@ -70,7 +69,6 @@ fuse-alert {
/* Alert that comes after the title */
+ .fuse-alert-message {
-
&:not(:empty) {
margin-top: 4px;
}
@@ -108,9 +106,7 @@ fuse-alert {
/* Dismissible */
&.fuse-alert-dismissible {
-
.fuse-alert-container {
-
.fuse-alert-content {
margin-right: 32px;
}
@@ -118,9 +114,7 @@ fuse-alert {
}
&:not(.fuse-alert-dismissible) {
-
.fuse-alert-container {
-
.fuse-alert-dismiss-button {
display: none !important;
}
@@ -129,12 +123,11 @@ fuse-alert {
/* Border */
&.fuse-alert-appearance-border {
-
.fuse-alert-container {
position: relative;
overflow: hidden;
border-radius: 6px;
- @apply shadow-md bg-card;
+ @apply bg-card shadow-md;
.fuse-alert-border {
position: absolute;
@@ -151,9 +144,7 @@ fuse-alert {
/* Primary */
&.fuse-alert-type-primary {
-
.fuse-alert-container {
-
.fuse-alert-border {
@apply bg-primary;
}
@@ -188,9 +179,7 @@ fuse-alert {
/* Accent */
&.fuse-alert-type-accent {
-
.fuse-alert-container {
-
.fuse-alert-border {
@apply bg-accent;
}
@@ -225,9 +214,7 @@ fuse-alert {
/* Warn */
&.fuse-alert-type-warn {
-
.fuse-alert-container {
-
.fuse-alert-border {
@apply bg-warn;
}
@@ -262,9 +249,7 @@ fuse-alert {
/* Basic */
&.fuse-alert-type-basic {
-
.fuse-alert-container {
-
.fuse-alert-border {
@apply bg-gray-600;
}
@@ -299,9 +284,7 @@ fuse-alert {
/* Info */
&.fuse-alert-type-info {
-
.fuse-alert-container {
-
.fuse-alert-border {
@apply bg-blue-600;
}
@@ -336,9 +319,7 @@ fuse-alert {
/* Success */
&.fuse-alert-type-success {
-
.fuse-alert-container {
-
.fuse-alert-border {
@apply bg-green-500;
}
@@ -373,9 +354,7 @@ fuse-alert {
/* Warning */
&.fuse-alert-type-warning {
-
.fuse-alert-container {
-
.fuse-alert-border {
@apply bg-amber-500;
}
@@ -410,9 +389,7 @@ fuse-alert {
/* Error */
&.fuse-alert-type-error {
-
.fuse-alert-container {
-
.fuse-alert-border {
@apply bg-red-600;
}
@@ -448,7 +425,6 @@ fuse-alert {
/* Fill */
&.fuse-alert-appearance-fill {
-
.fuse-alert-container {
border-radius: 6px;
@@ -459,7 +435,6 @@ fuse-alert {
/* Primary */
&.fuse-alert-type-primary {
-
.fuse-alert-container {
@apply bg-primary-600;
@@ -476,14 +451,13 @@ fuse-alert {
}
code {
- @apply text-primary-800 bg-primary-200;
+ @apply bg-primary-200 text-primary-800;
}
}
}
/* Accent */
&.fuse-alert-type-accent {
-
.fuse-alert-container {
@apply bg-accent-600;
@@ -500,14 +474,13 @@ fuse-alert {
}
code {
- @apply text-accent-800 bg-accent-200;
+ @apply bg-accent-200 text-accent-800;
}
}
}
/* Warn */
&.fuse-alert-type-warn {
-
.fuse-alert-container {
@apply bg-warn-600;
@@ -524,14 +497,13 @@ fuse-alert {
}
code {
- @apply text-warn-800 bg-warn-200;
+ @apply bg-warn-200 text-warn-800;
}
}
}
/* Basic */
&.fuse-alert-type-basic {
-
.fuse-alert-container {
@apply bg-gray-600;
@@ -555,7 +527,6 @@ fuse-alert {
/* Info */
&.fuse-alert-type-info {
-
.fuse-alert-container {
@apply bg-blue-600;
@@ -579,7 +550,6 @@ fuse-alert {
/* Success */
&.fuse-alert-type-success {
-
.fuse-alert-container {
@apply bg-green-600;
@@ -603,7 +573,6 @@ fuse-alert {
/* Warning */
&.fuse-alert-type-warning {
-
.fuse-alert-container {
@apply bg-amber-500;
@@ -627,7 +596,6 @@ fuse-alert {
/* Error */
&.fuse-alert-type-error {
-
.fuse-alert-container {
@apply bg-red-600;
@@ -652,16 +620,14 @@ fuse-alert {
/* Outline */
&.fuse-alert-appearance-outline {
-
.fuse-alert-container {
border-radius: 6px;
}
/* Primary */
&.fuse-alert-type-primary {
-
.fuse-alert-container {
- @apply bg-primary-50 ring-1 ring-primary-400 ring-inset;
+ @apply bg-primary-50 ring-1 ring-inset ring-primary-400;
.fuse-alert-icon {
@apply text-primary-600;
@@ -677,7 +643,7 @@ fuse-alert {
}
code {
- @apply text-primary-800 bg-primary-200;
+ @apply bg-primary-200 text-primary-800;
}
.dark & {
@@ -701,9 +667,8 @@ fuse-alert {
/* Accent */
&.fuse-alert-type-accent {
-
.fuse-alert-container {
- @apply bg-accent-100 ring-1 ring-accent-400 ring-inset;
+ @apply bg-accent-100 ring-1 ring-inset ring-accent-400;
.fuse-alert-icon {
@apply text-accent-600;
@@ -719,7 +684,7 @@ fuse-alert {
}
code {
- @apply text-accent-800 bg-accent-200;
+ @apply bg-accent-200 text-accent-800;
}
.dark & {
@@ -743,9 +708,8 @@ fuse-alert {
/* Warn */
&.fuse-alert-type-warn {
-
.fuse-alert-container {
- @apply bg-warn-50 ring-1 ring-warn-400 ring-inset;
+ @apply bg-warn-50 ring-1 ring-inset ring-warn-400;
.fuse-alert-icon {
@apply text-warn-600;
@@ -761,7 +725,7 @@ fuse-alert {
}
code {
- @apply text-warn-800 bg-warn-200;
+ @apply bg-warn-200 text-warn-800;
}
.dark & {
@@ -785,9 +749,8 @@ fuse-alert {
/* Basic */
&.fuse-alert-type-basic {
-
.fuse-alert-container {
- @apply bg-gray-100 ring-1 ring-gray-400 ring-inset;
+ @apply bg-gray-100 ring-1 ring-inset ring-gray-400;
.fuse-alert-icon {
@apply text-gray-600;
@@ -827,9 +790,8 @@ fuse-alert {
/* Info */
&.fuse-alert-type-info {
-
.fuse-alert-container {
- @apply bg-blue-50 ring-1 ring-blue-400 ring-inset;
+ @apply bg-blue-50 ring-1 ring-inset ring-blue-400;
.fuse-alert-icon {
@apply text-blue-600;
@@ -869,9 +831,8 @@ fuse-alert {
/* Success */
&.fuse-alert-type-success {
-
.fuse-alert-container {
- @apply bg-green-50 ring-1 ring-green-400 ring-inset;
+ @apply bg-green-50 ring-1 ring-inset ring-green-400;
.fuse-alert-icon {
@apply text-green-600;
@@ -911,9 +872,8 @@ fuse-alert {
/* Warning */
&.fuse-alert-type-warning {
-
.fuse-alert-container {
- @apply bg-amber-50 ring-1 ring-amber-400 ring-inset;
+ @apply bg-amber-50 ring-1 ring-inset ring-amber-400;
.fuse-alert-icon {
@apply text-amber-600;
@@ -953,9 +913,8 @@ fuse-alert {
/* Error */
&.fuse-alert-type-error {
-
.fuse-alert-container {
- @apply bg-red-50 ring-1 ring-red-400 ring-inset;
+ @apply bg-red-50 ring-1 ring-inset ring-red-400;
.fuse-alert-icon {
@apply text-red-600;
@@ -996,14 +955,12 @@ fuse-alert {
/* Soft */
&.fuse-alert-appearance-soft {
-
.fuse-alert-container {
border-radius: 6px;
}
/* Primary */
&.fuse-alert-type-primary {
-
.fuse-alert-container {
@apply bg-primary-50;
@@ -1021,7 +978,7 @@ fuse-alert {
}
code {
- @apply text-primary-800 bg-primary-200;
+ @apply bg-primary-200 text-primary-800;
}
.dark & {
@@ -1045,7 +1002,6 @@ fuse-alert {
/* Accent */
&.fuse-alert-type-accent {
-
.fuse-alert-container {
@apply bg-accent-100;
@@ -1063,7 +1019,7 @@ fuse-alert {
}
code {
- @apply text-accent-800 bg-accent-200;
+ @apply bg-accent-200 text-accent-800;
}
.dark & {
@@ -1087,7 +1043,6 @@ fuse-alert {
/* Warn */
&.fuse-alert-type-warn {
-
.fuse-alert-container {
@apply bg-warn-50;
@@ -1105,7 +1060,7 @@ fuse-alert {
}
code {
- @apply text-warn-800 bg-warn-200;
+ @apply bg-warn-200 text-warn-800;
}
.dark & {
@@ -1129,7 +1084,6 @@ fuse-alert {
/* Basic */
&.fuse-alert-type-basic {
-
.fuse-alert-container {
@apply bg-gray-100;
@@ -1171,7 +1125,6 @@ fuse-alert {
/* Info */
&.fuse-alert-type-info {
-
.fuse-alert-container {
@apply bg-blue-50;
@@ -1213,7 +1166,6 @@ fuse-alert {
/* Success */
&.fuse-alert-type-success {
-
.fuse-alert-container {
@apply bg-green-50;
@@ -1255,7 +1207,6 @@ fuse-alert {
/* Warning */
&.fuse-alert-type-warning {
-
.fuse-alert-container {
@apply bg-amber-50;
@@ -1297,7 +1248,6 @@ fuse-alert {
/* Error */
&.fuse-alert-type-error {
-
.fuse-alert-container {
@apply bg-red-50;
diff --git a/src/@fuse/components/alert/alert.component.ts b/src/@fuse/components/alert/alert.component.ts
index d5c21009..8b742df8 100644
--- a/src/@fuse/components/alert/alert.component.ts
+++ b/src/@fuse/components/alert/alert.component.ts
@@ -1,27 +1,43 @@
import { BooleanInput, coerceBooleanProperty } from '@angular/cdk/coercion';
import { NgIf } from '@angular/common';
-import { ChangeDetectionStrategy, ChangeDetectorRef, Component, EventEmitter, HostBinding, inject, Input, OnChanges, OnDestroy, OnInit, Output, SimpleChanges, ViewEncapsulation } from '@angular/core';
+import {
+ ChangeDetectionStrategy,
+ ChangeDetectorRef,
+ Component,
+ EventEmitter,
+ HostBinding,
+ Input,
+ OnChanges,
+ OnDestroy,
+ OnInit,
+ Output,
+ SimpleChanges,
+ ViewEncapsulation,
+ inject,
+} from '@angular/core';
import { MatButtonModule } from '@angular/material/button';
import { MatIconModule } from '@angular/material/icon';
import { fuseAnimations } from '@fuse/animations';
import { FuseAlertService } from '@fuse/components/alert/alert.service';
-import { FuseAlertAppearance, FuseAlertType } from '@fuse/components/alert/alert.types';
+import {
+ FuseAlertAppearance,
+ FuseAlertType,
+} from '@fuse/components/alert/alert.types';
import { FuseUtilsService } from '@fuse/services/utils/utils.service';
-import { filter, Subject, takeUntil } from 'rxjs';
+import { Subject, filter, takeUntil } from 'rxjs';
@Component({
- selector : 'fuse-alert',
- templateUrl : './alert.component.html',
- styleUrls : ['./alert.component.scss'],
- encapsulation : ViewEncapsulation.None,
+ selector: 'fuse-alert',
+ templateUrl: './alert.component.html',
+ styleUrls: ['./alert.component.scss'],
+ encapsulation: ViewEncapsulation.None,
changeDetection: ChangeDetectionStrategy.OnPush,
- animations : fuseAnimations,
- exportAs : 'fuseAlert',
- standalone : true,
- imports : [NgIf, MatIconModule, MatButtonModule],
+ animations: fuseAnimations,
+ exportAs: 'fuseAlert',
+ standalone: true,
+ imports: [NgIf, MatIconModule, MatButtonModule],
})
-export class FuseAlertComponent implements OnChanges, OnInit, OnDestroy
-{
+export class FuseAlertComponent implements OnChanges, OnInit, OnDestroy {
/* eslint-disable @typescript-eslint/naming-convention */
static ngAcceptInputType_dismissible: BooleanInput;
static ngAcceptInputType_dismissed: BooleanInput;
@@ -38,7 +54,8 @@ export class FuseAlertComponent implements OnChanges, OnInit, OnDestroy
@Input() name: string = this._fuseUtilsService.randomId();
@Input() showIcon: boolean = true;
@Input() type: FuseAlertType = 'primary';
- @Output() readonly dismissedChanged: EventEmitter
= new EventEmitter();
+ @Output() readonly dismissedChanged: EventEmitter =
+ new EventEmitter();
private _unsubscribeAll: Subject = new Subject();
@@ -49,25 +66,24 @@ export class FuseAlertComponent implements OnChanges, OnInit, OnDestroy
/**
* Host binding for component classes
*/
- @HostBinding('class') get classList(): any
- {
+ @HostBinding('class') get classList(): any {
/* eslint-disable @typescript-eslint/naming-convention */
return {
- 'fuse-alert-appearance-border' : this.appearance === 'border',
- 'fuse-alert-appearance-fill' : this.appearance === 'fill',
+ 'fuse-alert-appearance-border': this.appearance === 'border',
+ 'fuse-alert-appearance-fill': this.appearance === 'fill',
'fuse-alert-appearance-outline': this.appearance === 'outline',
- 'fuse-alert-appearance-soft' : this.appearance === 'soft',
- 'fuse-alert-dismissed' : this.dismissed,
- 'fuse-alert-dismissible' : this.dismissible,
- 'fuse-alert-show-icon' : this.showIcon,
- 'fuse-alert-type-primary' : this.type === 'primary',
- 'fuse-alert-type-accent' : this.type === 'accent',
- 'fuse-alert-type-warn' : this.type === 'warn',
- 'fuse-alert-type-basic' : this.type === 'basic',
- 'fuse-alert-type-info' : this.type === 'info',
- 'fuse-alert-type-success' : this.type === 'success',
- 'fuse-alert-type-warning' : this.type === 'warning',
- 'fuse-alert-type-error' : this.type === 'error',
+ 'fuse-alert-appearance-soft': this.appearance === 'soft',
+ 'fuse-alert-dismissed': this.dismissed,
+ 'fuse-alert-dismissible': this.dismissible,
+ 'fuse-alert-show-icon': this.showIcon,
+ 'fuse-alert-type-primary': this.type === 'primary',
+ 'fuse-alert-type-accent': this.type === 'accent',
+ 'fuse-alert-type-warn': this.type === 'warn',
+ 'fuse-alert-type-basic': this.type === 'basic',
+ 'fuse-alert-type-info': this.type === 'info',
+ 'fuse-alert-type-success': this.type === 'success',
+ 'fuse-alert-type-warning': this.type === 'warning',
+ 'fuse-alert-type-error': this.type === 'error',
};
/* eslint-enable @typescript-eslint/naming-convention */
}
@@ -81,46 +97,46 @@ export class FuseAlertComponent implements OnChanges, OnInit, OnDestroy
*
* @param changes
*/
- ngOnChanges(changes: SimpleChanges): void
- {
+ ngOnChanges(changes: SimpleChanges): void {
// Dismissed
- if ( 'dismissed' in changes )
- {
+ if ('dismissed' in changes) {
// Coerce the value to a boolean
- this.dismissed = coerceBooleanProperty(changes.dismissed.currentValue);
+ this.dismissed = coerceBooleanProperty(
+ changes.dismissed.currentValue
+ );
// Dismiss/show the alert
this._toggleDismiss(this.dismissed);
}
// Dismissible
- if ( 'dismissible' in changes )
- {
+ if ('dismissible' in changes) {
// Coerce the value to a boolean
- this.dismissible = coerceBooleanProperty(changes.dismissible.currentValue);
+ this.dismissible = coerceBooleanProperty(
+ changes.dismissible.currentValue
+ );
}
// Show icon
- if ( 'showIcon' in changes )
- {
+ if ('showIcon' in changes) {
// Coerce the value to a boolean
- this.showIcon = coerceBooleanProperty(changes.showIcon.currentValue);
+ this.showIcon = coerceBooleanProperty(
+ changes.showIcon.currentValue
+ );
}
}
/**
* On init
*/
- ngOnInit(): void
- {
+ ngOnInit(): void {
// Subscribe to the dismiss calls
this._fuseAlertService.onDismiss
.pipe(
- filter(name => this.name === name),
- takeUntil(this._unsubscribeAll),
+ filter((name) => this.name === name),
+ takeUntil(this._unsubscribeAll)
)
- .subscribe(() =>
- {
+ .subscribe(() => {
// Dismiss the alert
this.dismiss();
});
@@ -128,11 +144,10 @@ export class FuseAlertComponent implements OnChanges, OnInit, OnDestroy
// Subscribe to the show calls
this._fuseAlertService.onShow
.pipe(
- filter(name => this.name === name),
- takeUntil(this._unsubscribeAll),
+ filter((name) => this.name === name),
+ takeUntil(this._unsubscribeAll)
)
- .subscribe(() =>
- {
+ .subscribe(() => {
// Show the alert
this.show();
});
@@ -141,8 +156,7 @@ export class FuseAlertComponent implements OnChanges, OnInit, OnDestroy
/**
* On destroy
*/
- ngOnDestroy(): void
- {
+ ngOnDestroy(): void {
// Unsubscribe from all subscriptions
this._unsubscribeAll.next(null);
this._unsubscribeAll.complete();
@@ -155,11 +169,9 @@ export class FuseAlertComponent implements OnChanges, OnInit, OnDestroy
/**
* Dismiss the alert
*/
- dismiss(): void
- {
+ dismiss(): void {
// Return if the alert is already dismissed
- if ( this.dismissed )
- {
+ if (this.dismissed) {
return;
}
@@ -170,11 +182,9 @@ export class FuseAlertComponent implements OnChanges, OnInit, OnDestroy
/**
* Show the dismissed alert
*/
- show(): void
- {
+ show(): void {
// Return if the alert is already showing
- if ( !this.dismissed )
- {
+ if (!this.dismissed) {
return;
}
@@ -192,11 +202,9 @@ export class FuseAlertComponent implements OnChanges, OnInit, OnDestroy
* @param dismissed
* @private
*/
- private _toggleDismiss(dismissed: boolean): void
- {
+ private _toggleDismiss(dismissed: boolean): void {
// Return if the alert is not dismissible
- if ( !this.dismissible )
- {
+ if (!this.dismissible) {
return;
}
diff --git a/src/@fuse/components/alert/alert.service.ts b/src/@fuse/components/alert/alert.service.ts
index 4490d9dd..bb92c3e4 100644
--- a/src/@fuse/components/alert/alert.service.ts
+++ b/src/@fuse/components/alert/alert.service.ts
@@ -1,11 +1,13 @@
import { Injectable } from '@angular/core';
import { Observable, ReplaySubject } from 'rxjs';
-@Injectable({providedIn: 'root'})
-export class FuseAlertService
-{
- private readonly _onDismiss: ReplaySubject = new ReplaySubject(1);
- private readonly _onShow: ReplaySubject = new ReplaySubject(1);
+@Injectable({ providedIn: 'root' })
+export class FuseAlertService {
+ private readonly _onDismiss: ReplaySubject =
+ new ReplaySubject(1);
+ private readonly _onShow: ReplaySubject = new ReplaySubject(
+ 1
+ );
// -----------------------------------------------------------------------------------------------------
// @ Accessors
@@ -14,16 +16,14 @@ export class FuseAlertService
/**
* Getter for onDismiss
*/
- get onDismiss(): Observable
- {
+ get onDismiss(): Observable {
return this._onDismiss.asObservable();
}
/**
* Getter for onShow
*/
- get onShow(): Observable
- {
+ get onShow(): Observable {
return this._onShow.asObservable();
}
@@ -36,11 +36,9 @@ export class FuseAlertService
*
* @param name
*/
- dismiss(name: string): void
- {
+ dismiss(name: string): void {
// Return if the name is not provided
- if ( !name )
- {
+ if (!name) {
return;
}
@@ -53,16 +51,13 @@ export class FuseAlertService
*
* @param name
*/
- show(name: string): void
- {
+ show(name: string): void {
// Return if the name is not provided
- if ( !name )
- {
+ if (!name) {
return;
}
// Execute the observable
this._onShow.next(name);
}
-
}
diff --git a/src/@fuse/components/alert/alert.types.ts b/src/@fuse/components/alert/alert.types.ts
index fc3516e1..010b59f9 100644
--- a/src/@fuse/components/alert/alert.types.ts
+++ b/src/@fuse/components/alert/alert.types.ts
@@ -1,8 +1,4 @@
-export type FuseAlertAppearance =
- | 'border'
- | 'fill'
- | 'outline'
- | 'soft';
+export type FuseAlertAppearance = 'border' | 'fill' | 'outline' | 'soft';
export type FuseAlertType =
| 'primary'
diff --git a/src/@fuse/components/card/card.component.html b/src/@fuse/components/card/card.component.html
index 5728d204..76e4ff07 100644
--- a/src/@fuse/components/card/card.component.html
+++ b/src/@fuse/components/card/card.component.html
@@ -1,6 +1,5 @@
-
@@ -10,21 +9,15 @@
-
-
-
+
-
diff --git a/src/@fuse/components/card/card.component.scss b/src/@fuse/components/card/card.component.scss
index 2e2719d0..7135ac4e 100644
--- a/src/@fuse/components/card/card.component.scss
+++ b/src/@fuse/components/card/card.component.scss
@@ -2,7 +2,7 @@ fuse-card {
position: relative;
display: flex;
overflow: hidden;
- @apply rounded-2xl shadow bg-card;
+ @apply bg-card rounded-2xl shadow;
/* Flippable */
&.fuse-card-flippable {
@@ -15,7 +15,6 @@ fuse-card {
@apply shadow-none;
&.fuse-card-face-back {
-
.fuse-card-front {
visibility: hidden;
opacity: 0;
@@ -35,9 +34,12 @@ fuse-card {
flex-direction: column;
flex: 1 1 auto;
z-index: 10;
- transition: transform 0.5s ease-out 0s, visibility 0s ease-in 0.2s, opacity 0s ease-in 0.2s;
+ transition:
+ transform 0.5s ease-out 0s,
+ visibility 0s ease-in 0.2s,
+ opacity 0s ease-in 0.2s;
backface-visibility: hidden;
- @apply rounded-2xl shadow bg-card;
+ @apply bg-card rounded-2xl shadow;
}
.fuse-card-front {
diff --git a/src/@fuse/components/card/card.component.ts b/src/@fuse/components/card/card.component.ts
index eb920f59..9eedb4be 100644
--- a/src/@fuse/components/card/card.component.ts
+++ b/src/@fuse/components/card/card.component.ts
@@ -1,21 +1,27 @@
import { BooleanInput, coerceBooleanProperty } from '@angular/cdk/coercion';
import { NgIf } from '@angular/common';
-import { Component, HostBinding, Input, OnChanges, SimpleChanges, ViewEncapsulation } from '@angular/core';
+import {
+ Component,
+ HostBinding,
+ Input,
+ OnChanges,
+ SimpleChanges,
+ ViewEncapsulation,
+} from '@angular/core';
import { fuseAnimations } from '@fuse/animations';
import { FuseCardFace } from '@fuse/components/card/card.types';
@Component({
- selector : 'fuse-card',
- templateUrl : './card.component.html',
- styleUrls : ['./card.component.scss'],
+ selector: 'fuse-card',
+ templateUrl: './card.component.html',
+ styleUrls: ['./card.component.scss'],
encapsulation: ViewEncapsulation.None,
- animations : fuseAnimations,
- exportAs : 'fuseCard',
- standalone : true,
- imports : [NgIf],
+ animations: fuseAnimations,
+ exportAs: 'fuseCard',
+ standalone: true,
+ imports: [NgIf],
})
-export class FuseCardComponent implements OnChanges
-{
+export class FuseCardComponent implements OnChanges {
/* eslint-disable @typescript-eslint/naming-convention */
static ngAcceptInputType_expanded: BooleanInput;
static ngAcceptInputType_flippable: BooleanInput;
@@ -32,14 +38,13 @@ export class FuseCardComponent implements OnChanges
/**
* Host binding for component classes
*/
- @HostBinding('class') get classList(): any
- {
+ @HostBinding('class') get classList(): any {
/* eslint-disable @typescript-eslint/naming-convention */
return {
- 'fuse-card-expanded' : this.expanded,
- 'fuse-card-face-back' : this.flippable && this.face === 'back',
+ 'fuse-card-expanded': this.expanded,
+ 'fuse-card-face-back': this.flippable && this.face === 'back',
'fuse-card-face-front': this.flippable && this.face === 'front',
- 'fuse-card-flippable' : this.flippable,
+ 'fuse-card-flippable': this.flippable,
};
/* eslint-enable @typescript-eslint/naming-convention */
}
@@ -53,20 +58,21 @@ export class FuseCardComponent implements OnChanges
*
* @param changes
*/
- ngOnChanges(changes: SimpleChanges): void
- {
+ ngOnChanges(changes: SimpleChanges): void {
// Expanded
- if ( 'expanded' in changes )
- {
+ if ('expanded' in changes) {
// Coerce the value to a boolean
- this.expanded = coerceBooleanProperty(changes.expanded.currentValue);
+ this.expanded = coerceBooleanProperty(
+ changes.expanded.currentValue
+ );
}
// Flippable
- if ( 'flippable' in changes )
- {
+ if ('flippable' in changes) {
// Coerce the value to a boolean
- this.flippable = coerceBooleanProperty(changes.flippable.currentValue);
+ this.flippable = coerceBooleanProperty(
+ changes.flippable.currentValue
+ );
}
}
}
diff --git a/src/@fuse/components/card/card.types.ts b/src/@fuse/components/card/card.types.ts
index d9256426..72ee87a7 100644
--- a/src/@fuse/components/card/card.types.ts
+++ b/src/@fuse/components/card/card.types.ts
@@ -1,3 +1 @@
-export type FuseCardFace =
- | 'front'
- | 'back';
+export type FuseCardFace = 'front' | 'back';
diff --git a/src/@fuse/components/drawer/drawer.component.scss b/src/@fuse/components/drawer/drawer.component.scss
index e10cad2a..c6c3f5aa 100644
--- a/src/@fuse/components/drawer/drawer.component.scss
+++ b/src/@fuse/components/drawer/drawer.component.scss
@@ -12,14 +12,15 @@ fuse-drawer {
min-width: var(--fuse-drawer-width);
max-width: var(--fuse-drawer-width);
z-index: 300;
- box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .35);
+ box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.35);
@apply bg-card;
/* Animations */
&.fuse-drawer-animations-enabled {
transition-duration: 400ms;
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
- transition-property: visibility, margin-left, margin-right, transform, width, max-width, min-width;
+ transition-property: visibility, margin-left, margin-right, transform,
+ width, max-width, min-width;
.fuse-drawer-content {
transition-duration: 400ms;
@@ -42,7 +43,6 @@ fuse-drawer {
/* Left position */
&.fuse-drawer-position-left {
-
/* Side mode */
&.fuse-drawer-mode-side {
margin-left: calc(var(--fuse-drawer-width) * -1);
@@ -70,7 +70,6 @@ fuse-drawer {
/* Right position */
&.fuse-drawer-position-right {
-
/* Side mode */
&.fuse-drawer-mode-side {
margin-right: calc(var(--fuse-drawer-width) * -1);
diff --git a/src/@fuse/components/drawer/drawer.component.ts b/src/@fuse/components/drawer/drawer.component.ts
index c972fc97..47fc05ac 100644
--- a/src/@fuse/components/drawer/drawer.component.ts
+++ b/src/@fuse/components/drawer/drawer.component.ts
@@ -1,20 +1,42 @@
-import { animate, AnimationBuilder, AnimationPlayer, style } from '@angular/animations';
+import {
+ animate,
+ AnimationBuilder,
+ AnimationPlayer,
+ style,
+} from '@angular/animations';
import { BooleanInput, coerceBooleanProperty } from '@angular/cdk/coercion';
-import { Component, ElementRef, EventEmitter, HostBinding, HostListener, inject, Input, OnChanges, OnDestroy, OnInit, Output, Renderer2, SimpleChanges, ViewEncapsulation } from '@angular/core';
+import {
+ Component,
+ ElementRef,
+ EventEmitter,
+ HostBinding,
+ HostListener,
+ inject,
+ Input,
+ OnChanges,
+ OnDestroy,
+ OnInit,
+ Output,
+ Renderer2,
+ SimpleChanges,
+ ViewEncapsulation,
+} from '@angular/core';
import { FuseDrawerService } from '@fuse/components/drawer/drawer.service';
-import { FuseDrawerMode, FuseDrawerPosition } from '@fuse/components/drawer/drawer.types';
+import {
+ FuseDrawerMode,
+ FuseDrawerPosition,
+} from '@fuse/components/drawer/drawer.types';
import { FuseUtilsService } from '@fuse/services/utils/utils.service';
@Component({
- selector : 'fuse-drawer',
- templateUrl : './drawer.component.html',
- styleUrls : ['./drawer.component.scss'],
+ selector: 'fuse-drawer',
+ templateUrl: './drawer.component.html',
+ styleUrls: ['./drawer.component.scss'],
encapsulation: ViewEncapsulation.None,
- exportAs : 'fuseDrawer',
- standalone : true,
+ exportAs: 'fuseDrawer',
+ standalone: true,
})
-export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
-{
+export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy {
/* eslint-disable @typescript-eslint/naming-convention */
static ngAcceptInputType_fixed: BooleanInput;
static ngAcceptInputType_opened: BooleanInput;
@@ -33,10 +55,14 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
@Input() opened: boolean = false;
@Input() position: FuseDrawerPosition = 'left';
@Input() transparentOverlay: boolean = false;
- @Output() readonly fixedChanged: EventEmitter
= new EventEmitter();
- @Output() readonly modeChanged: EventEmitter = new EventEmitter();
- @Output() readonly openedChanged: EventEmitter = new EventEmitter();
- @Output() readonly positionChanged: EventEmitter = new EventEmitter();
+ @Output() readonly fixedChanged: EventEmitter =
+ new EventEmitter();
+ @Output() readonly modeChanged: EventEmitter =
+ new EventEmitter();
+ @Output() readonly openedChanged: EventEmitter =
+ new EventEmitter();
+ @Output() readonly positionChanged: EventEmitter =
+ new EventEmitter();
private _animationsEnabled: boolean = false;
private readonly _handleOverlayClick = (): void => this.close();
@@ -51,15 +77,14 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
/**
* Host binding for component classes
*/
- @HostBinding('class') get classList(): any
- {
+ @HostBinding('class') get classList(): any {
/* eslint-disable @typescript-eslint/naming-convention */
return {
- 'fuse-drawer-animations-enabled' : this._animationsEnabled,
- 'fuse-drawer-fixed' : this.fixed,
- 'fuse-drawer-hover' : this._hovered,
- [`fuse-drawer-mode-${this.mode}`] : true,
- 'fuse-drawer-opened' : this.opened,
+ 'fuse-drawer-animations-enabled': this._animationsEnabled,
+ 'fuse-drawer-fixed': this.fixed,
+ 'fuse-drawer-hover': this._hovered,
+ [`fuse-drawer-mode-${this.mode}`]: true,
+ 'fuse-drawer-opened': this.opened,
[`fuse-drawer-position-${this.position}`]: true,
};
/* eslint-enable @typescript-eslint/naming-convention */
@@ -68,10 +93,9 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
/**
* Host binding for component inline styles
*/
- @HostBinding('style') get styleList(): any
- {
+ @HostBinding('style') get styleList(): any {
return {
- 'visibility': this.opened ? 'visible' : 'hidden',
+ visibility: this.opened ? 'visible' : 'hidden',
};
}
@@ -85,8 +109,7 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
* @private
*/
@HostListener('mouseenter')
- private _onMouseenter(): void
- {
+ private _onMouseenter(): void {
// Enable the animations
this._enableAnimations();
@@ -100,8 +123,7 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
* @private
*/
@HostListener('mouseleave')
- private _onMouseleave(): void
- {
+ private _onMouseleave(): void {
// Enable the animations
this._enableAnimations();
@@ -118,11 +140,9 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
*
* @param changes
*/
- ngOnChanges(changes: SimpleChanges): void
- {
+ ngOnChanges(changes: SimpleChanges): void {
// Fixed
- if ( 'fixed' in changes )
- {
+ if ('fixed' in changes) {
// Coerce the value to a boolean
this.fixed = coerceBooleanProperty(changes.fixed.currentValue);
@@ -131,8 +151,7 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
}
// Mode
- if ( 'mode' in changes )
- {
+ if ('mode' in changes) {
// Get the previous and current values
const previousMode = changes.mode.previousValue;
const currentMode = changes.mode.currentValue;
@@ -141,18 +160,15 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
this._disableAnimations();
// If the mode changes: 'over -> side'
- if ( previousMode === 'over' && currentMode === 'side' )
- {
+ if (previousMode === 'over' && currentMode === 'side') {
// Hide the overlay
this._hideOverlay();
}
// If the mode changes: 'side -> over'
- if ( previousMode === 'side' && currentMode === 'over' )
- {
+ if (previousMode === 'side' && currentMode === 'over') {
// If the drawer is opened
- if ( this.opened )
- {
+ if (this.opened) {
// Show the overlay
this._showOverlay();
}
@@ -164,15 +180,13 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
// Enable the animations after a delay
// The delay must be bigger than the current transition-duration
// to make sure nothing will be animated while the mode is changing
- setTimeout(() =>
- {
+ setTimeout(() => {
this._enableAnimations();
}, 500);
}
// Opened
- if ( 'opened' in changes )
- {
+ if ('opened' in changes) {
// Coerce the value to a boolean
const open = coerceBooleanProperty(changes.opened.currentValue);
@@ -181,25 +195,24 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
}
// Position
- if ( 'position' in changes )
- {
+ if ('position' in changes) {
// Execute the observable
this.positionChanged.next(this.position);
}
// Transparent overlay
- if ( 'transparentOverlay' in changes )
- {
+ if ('transparentOverlay' in changes) {
// Coerce the value to a boolean
- this.transparentOverlay = coerceBooleanProperty(changes.transparentOverlay.currentValue);
+ this.transparentOverlay = coerceBooleanProperty(
+ changes.transparentOverlay.currentValue
+ );
}
}
/**
* On init
*/
- ngOnInit(): void
- {
+ ngOnInit(): void {
// Register the drawer
this._fuseDrawerService.registerComponent(this.name, this);
}
@@ -207,11 +220,9 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
/**
* On destroy
*/
- ngOnDestroy(): void
- {
+ ngOnDestroy(): void {
// Finish the animation
- if ( this._player )
- {
+ if (this._player) {
this._player.finish();
}
@@ -226,11 +237,9 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
/**
* Open the drawer
*/
- open(): void
- {
+ open(): void {
// Return if the drawer has already opened
- if ( this.opened )
- {
+ if (this.opened) {
return;
}
@@ -241,11 +250,9 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
/**
* Close the drawer
*/
- close(): void
- {
+ close(): void {
// Return if the drawer has already closed
- if ( !this.opened )
- {
+ if (!this.opened) {
return;
}
@@ -256,14 +263,10 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
/**
* Toggle the drawer
*/
- toggle(): void
- {
- if ( this.opened )
- {
+ toggle(): void {
+ if (this.opened) {
this.close();
- }
- else
- {
+ } else {
this.open();
}
}
@@ -277,11 +280,9 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
*
* @private
*/
- private _enableAnimations(): void
- {
+ private _enableAnimations(): void {
// Return if the animations are already enabled
- if ( this._animationsEnabled )
- {
+ if (this._animationsEnabled) {
return;
}
@@ -294,11 +295,9 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
*
* @private
*/
- private _disableAnimations(): void
- {
+ private _disableAnimations(): void {
// Return if the animations are already disabled
- if ( !this._animationsEnabled )
- {
+ if (!this._animationsEnabled) {
return;
}
@@ -311,8 +310,7 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
*
* @private
*/
- private _showOverlay(): void
- {
+ private _showOverlay(): void {
// Create the backdrop element
this._overlay = this._renderer2.createElement('div');
@@ -320,25 +318,31 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
this._overlay.classList.add('fuse-drawer-overlay');
// Add a class depending on the fixed option
- if ( this.fixed )
- {
+ if (this.fixed) {
this._overlay.classList.add('fuse-drawer-overlay-fixed');
}
// Add a class depending on the transparentOverlay option
- if ( this.transparentOverlay )
- {
+ if (this.transparentOverlay) {
this._overlay.classList.add('fuse-drawer-overlay-transparent');
}
// Append the backdrop to the parent of the drawer
- this._renderer2.appendChild(this._elementRef.nativeElement.parentElement, this._overlay);
+ this._renderer2.appendChild(
+ this._elementRef.nativeElement.parentElement,
+ this._overlay
+ );
// Create enter animation and attach it to the player
- this._player = this._animationBuilder.build([
- style({opacity: 0}),
- animate('300ms cubic-bezier(0.25, 0.8, 0.25, 1)', style({opacity: 1})),
- ]).create(this._overlay);
+ this._player = this._animationBuilder
+ .build([
+ style({ opacity: 0 }),
+ animate(
+ '300ms cubic-bezier(0.25, 0.8, 0.25, 1)',
+ style({ opacity: 1 })
+ ),
+ ])
+ .create(this._overlay);
// Play the animation
this._player.play();
@@ -352,29 +356,33 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
*
* @private
*/
- private _hideOverlay(): void
- {
- if ( !this._overlay )
- {
+ private _hideOverlay(): void {
+ if (!this._overlay) {
return;
}
// Create the leave animation and attach it to the player
- this._player = this._animationBuilder.build([
- animate('300ms cubic-bezier(0.25, 0.8, 0.25, 1)', style({opacity: 0})),
- ]).create(this._overlay);
+ this._player = this._animationBuilder
+ .build([
+ animate(
+ '300ms cubic-bezier(0.25, 0.8, 0.25, 1)',
+ style({ opacity: 0 })
+ ),
+ ])
+ .create(this._overlay);
// Play the animation
this._player.play();
// Once the animation is done...
- this._player.onDone(() =>
- {
+ this._player.onDone(() => {
// If the overlay still exists...
- if ( this._overlay )
- {
+ if (this._overlay) {
// Remove the event listener
- this._overlay.removeEventListener('click', this._handleOverlayClick);
+ this._overlay.removeEventListener(
+ 'click',
+ this._handleOverlayClick
+ );
// Remove the overlay
this._overlay.parentNode.removeChild(this._overlay);
@@ -389,8 +397,7 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
* @param open
* @private
*/
- private _toggleOpened(open: boolean): void
- {
+ private _toggleOpened(open: boolean): void {
// Set the opened
this.opened = open;
@@ -398,16 +405,13 @@ export class FuseDrawerComponent implements OnChanges, OnInit, OnDestroy
this._enableAnimations();
// If the mode is 'over'
- if ( this.mode === 'over' )
- {
+ if (this.mode === 'over') {
// If the drawer opens, show the overlay
- if ( open )
- {
+ if (open) {
this._showOverlay();
}
// Otherwise, close the overlay
- else
- {
+ else {
this._hideOverlay();
}
}
diff --git a/src/@fuse/components/drawer/drawer.service.ts b/src/@fuse/components/drawer/drawer.service.ts
index d6aea4e9..305d8883 100644
--- a/src/@fuse/components/drawer/drawer.service.ts
+++ b/src/@fuse/components/drawer/drawer.service.ts
@@ -1,10 +1,12 @@
import { Injectable } from '@angular/core';
import { FuseDrawerComponent } from '@fuse/components/drawer/drawer.component';
-@Injectable({providedIn: 'root'})
-export class FuseDrawerService
-{
- private _componentRegistry: Map = new Map();
+@Injectable({ providedIn: 'root' })
+export class FuseDrawerService {
+ private _componentRegistry: Map = new Map<
+ string,
+ FuseDrawerComponent
+ >();
// -----------------------------------------------------------------------------------------------------
// @ Public methods
@@ -16,8 +18,7 @@ export class FuseDrawerService
* @param name
* @param component
*/
- registerComponent(name: string, component: FuseDrawerComponent): void
- {
+ registerComponent(name: string, component: FuseDrawerComponent): void {
this._componentRegistry.set(name, component);
}
@@ -26,8 +27,7 @@ export class FuseDrawerService
*
* @param name
*/
- deregisterComponent(name: string): void
- {
+ deregisterComponent(name: string): void {
this._componentRegistry.delete(name);
}
@@ -36,8 +36,7 @@ export class FuseDrawerService
*
* @param name
*/
- getComponent(name: string): FuseDrawerComponent | undefined
- {
+ getComponent(name: string): FuseDrawerComponent | undefined {
return this._componentRegistry.get(name);
}
}
diff --git a/src/@fuse/components/drawer/drawer.types.ts b/src/@fuse/components/drawer/drawer.types.ts
index 40e2ee39..a51ccb93 100644
--- a/src/@fuse/components/drawer/drawer.types.ts
+++ b/src/@fuse/components/drawer/drawer.types.ts
@@ -1,7 +1,3 @@
-export type FuseDrawerMode =
- | 'over'
- | 'side';
+export type FuseDrawerMode = 'over' | 'side';
-export type FuseDrawerPosition =
- | 'left'
- | 'right';
+export type FuseDrawerPosition = 'left' | 'right';
diff --git a/src/@fuse/components/fullscreen/fullscreen.component.html b/src/@fuse/components/fullscreen/fullscreen.component.html
index d8e60020..5077f63e 100644
--- a/src/@fuse/components/fullscreen/fullscreen.component.html
+++ b/src/@fuse/components/fullscreen/fullscreen.component.html
@@ -2,7 +2,8 @@
diff --git a/src/@fuse/components/fullscreen/fullscreen.component.ts b/src/@fuse/components/fullscreen/fullscreen.component.ts
index fbf31e8c..bfffeda5 100644
--- a/src/@fuse/components/fullscreen/fullscreen.component.ts
+++ b/src/@fuse/components/fullscreen/fullscreen.component.ts
@@ -1,5 +1,12 @@
import { DOCUMENT, NgTemplateOutlet } from '@angular/common';
-import { ChangeDetectionStrategy, Component, inject, Input, TemplateRef, ViewEncapsulation } from '@angular/core';
+import {
+ ChangeDetectionStrategy,
+ Component,
+ Input,
+ TemplateRef,
+ ViewEncapsulation,
+ inject,
+} from '@angular/core';
import { MatButtonModule } from '@angular/material/button';
import { MatIconModule } from '@angular/material/icon';
import { MatTooltipModule } from '@angular/material/tooltip';
@@ -11,10 +18,14 @@ import { MatTooltipModule } from '@angular/material/tooltip';
changeDetection: ChangeDetectionStrategy.OnPush,
exportAs: 'fuseFullscreen',
standalone: true,
- imports: [MatButtonModule, MatTooltipModule, NgTemplateOutlet, MatIconModule],
+ imports: [
+ MatButtonModule,
+ MatTooltipModule,
+ NgTemplateOutlet,
+ MatIconModule,
+ ],
})
-export class FuseFullscreenComponent
-{
+export class FuseFullscreenComponent {
private _document = inject(DOCUMENT);
@Input() iconTpl: TemplateRef;
@@ -27,10 +38,8 @@ export class FuseFullscreenComponent
/**
* Toggle the fullscreen mode
*/
- toggleFullscreen(): void
- {
- if (!this._document.fullscreenEnabled)
- {
+ toggleFullscreen(): void {
+ if (!this._document.fullscreenEnabled) {
console.log('Fullscreen is not available in this browser.');
return;
}
@@ -39,17 +48,12 @@ export class FuseFullscreenComponent
const fullScreen = this._document.fullscreenElement;
// Toggle the fullscreen
- if (fullScreen)
- {
+ if (fullScreen) {
this._document.exitFullscreen();
- }
- else
- {
- this._document.documentElement.requestFullscreen()
- .catch(() =>
- {
- console.error('Entering fullscreen mode failed.');
- });
+ } else {
+ this._document.documentElement.requestFullscreen().catch(() => {
+ console.error('Entering fullscreen mode failed.');
+ });
}
}
}
diff --git a/src/@fuse/components/highlight/highlight.component.html b/src/@fuse/components/highlight/highlight.component.html
index da345b9b..b2bf70cd 100644
--- a/src/@fuse/components/highlight/highlight.component.html
+++ b/src/@fuse/components/highlight/highlight.component.html
@@ -1,9 +1,8 @@
-
+
-
diff --git a/src/@fuse/components/highlight/highlight.component.ts b/src/@fuse/components/highlight/highlight.component.ts
index 76143ca0..265254b1 100644
--- a/src/@fuse/components/highlight/highlight.component.ts
+++ b/src/@fuse/components/highlight/highlight.component.ts
@@ -1,20 +1,34 @@
import { NgClass } from '@angular/common';
-import { AfterViewInit, ChangeDetectionStrategy, Component, ElementRef, EmbeddedViewRef, inject, Input, OnChanges, SecurityContext, SimpleChanges, TemplateRef, ViewChild, ViewContainerRef, ViewEncapsulation } from '@angular/core';
+import {
+ AfterViewInit,
+ ChangeDetectionStrategy,
+ Component,
+ ElementRef,
+ EmbeddedViewRef,
+ inject,
+ Input,
+ OnChanges,
+ SecurityContext,
+ SimpleChanges,
+ TemplateRef,
+ ViewChild,
+ ViewContainerRef,
+ ViewEncapsulation,
+} from '@angular/core';
import { DomSanitizer } from '@angular/platform-browser';
import { FuseHighlightService } from '@fuse/components/highlight/highlight.service';
@Component({
- selector : 'textarea[fuse-highlight]',
- templateUrl : './highlight.component.html',
- styleUrls : ['./highlight.component.scss'],
- encapsulation : ViewEncapsulation.None,
+ selector: 'textarea[fuse-highlight]',
+ templateUrl: './highlight.component.html',
+ styleUrls: ['./highlight.component.scss'],
+ encapsulation: ViewEncapsulation.None,
changeDetection: ChangeDetectionStrategy.OnPush,
- exportAs : 'fuseHighlight',
- standalone : true,
- imports : [NgClass],
+ exportAs: 'fuseHighlight',
+ standalone: true,
+ imports: [NgClass],
})
-export class FuseHighlightComponent implements OnChanges, AfterViewInit
-{
+export class FuseHighlightComponent implements OnChanges, AfterViewInit {
private _domSanitizer = inject(DomSanitizer);
private _elementRef = inject(ElementRef);
private _fuseHighlightService = inject(FuseHighlightService);
@@ -36,14 +50,11 @@ export class FuseHighlightComponent implements OnChanges, AfterViewInit
*
* @param changes
*/
- ngOnChanges(changes: SimpleChanges): void
- {
+ ngOnChanges(changes: SimpleChanges): void {
// Code & Lang
- if ( 'code' in changes || 'lang' in changes )
- {
+ if ('code' in changes || 'lang' in changes) {
// Return if the viewContainerRef is not available
- if ( !this._viewContainerRef.length )
- {
+ if (!this._viewContainerRef.length) {
return;
}
@@ -55,18 +66,15 @@ export class FuseHighlightComponent implements OnChanges, AfterViewInit
/**
* After view init
*/
- ngAfterViewInit(): void
- {
+ ngAfterViewInit(): void {
// Return if there is no language set
- if ( !this.lang )
- {
+ if (!this.lang) {
return;
}
// If there is no code input, get the code from
// the textarea
- if ( !this.code )
- {
+ if (!this.code) {
// Get the code
this.code = this._elementRef.nativeElement.value;
}
@@ -84,41 +92,42 @@ export class FuseHighlightComponent implements OnChanges, AfterViewInit
*
* @private
*/
- private _highlightAndInsert(): void
- {
+ private _highlightAndInsert(): void {
// Return if the template reference is not available
- if ( !this.templateRef )
- {
+ if (!this.templateRef) {
return;
}
// Return if the code or language is not defined
- if ( !this.code || !this.lang )
- {
+ if (!this.code || !this.lang) {
return;
}
// Destroy the component if there is already one
- if ( this._viewRef )
- {
+ if (this._viewRef) {
this._viewRef.destroy();
this._viewRef = null;
}
// Highlight and sanitize the code just in case
- this.highlightedCode = this._domSanitizer.sanitize(SecurityContext.HTML, this._fuseHighlightService.highlight(this.code, this.lang));
+ this.highlightedCode = this._domSanitizer.sanitize(
+ SecurityContext.HTML,
+ this._fuseHighlightService.highlight(this.code, this.lang)
+ );
// Return if the highlighted code is null
- if ( this.highlightedCode === null )
- {
+ if (this.highlightedCode === null) {
return;
}
// Render and insert the template
- this._viewRef = this._viewContainerRef.createEmbeddedView(this.templateRef, {
- highlightedCode: this.highlightedCode,
- lang : this.lang,
- });
+ this._viewRef = this._viewContainerRef.createEmbeddedView(
+ this.templateRef,
+ {
+ highlightedCode: this.highlightedCode,
+ lang: this.lang,
+ }
+ );
// Detect the changes
this._viewRef.detectChanges();
diff --git a/src/@fuse/components/highlight/highlight.service.ts b/src/@fuse/components/highlight/highlight.service.ts
index f2a86e13..61b08dc7 100644
--- a/src/@fuse/components/highlight/highlight.service.ts
+++ b/src/@fuse/components/highlight/highlight.service.ts
@@ -1,9 +1,8 @@
import { Injectable } from '@angular/core';
import hljs from 'highlight.js';
-@Injectable({providedIn: 'root'})
-export class FuseHighlightService
-{
+@Injectable({ providedIn: 'root' })
+export class FuseHighlightService {
// -----------------------------------------------------------------------------------------------------
// @ Public methods
// -----------------------------------------------------------------------------------------------------
@@ -11,13 +10,12 @@ export class FuseHighlightService
/**
* Highlight
*/
- highlight(code: string, language: string): string
- {
+ highlight(code: string, language: string): string {
// Format the code
code = this._format(code);
// Highlight and return the code
- return hljs.highlight(code, {language}).value;
+ return hljs.highlight(code, { language }).value;
}
// -----------------------------------------------------------------------------------------------------
@@ -32,32 +30,28 @@ export class FuseHighlightService
* @param code
* @private
*/
- private _format(code: string): string
- {
+ private _format(code: string): string {
let indentation = 0;
// Split the code into lines and store the lines
const lines = code.split('\n');
// Trim the empty lines around the code block
- while ( lines.length && lines[0].trim() === '' )
- {
+ while (lines.length && lines[0].trim() === '') {
lines.shift();
}
- while ( lines.length && lines[lines.length - 1].trim() === '' )
- {
+ while (lines.length && lines[lines.length - 1].trim() === '') {
lines.pop();
}
// Iterate through the lines
- lines.filter(line => line.length)
- .forEach((line, index) =>
- {
+ lines
+ .filter((line) => line.length)
+ .forEach((line, index) => {
// Always get the indentation of the first line so we can
// have something to compare with
- if ( index === 0 )
- {
+ if (index === 0) {
indentation = line.search(/\S|$/);
return;
}
@@ -68,6 +62,6 @@ export class FuseHighlightService
// Iterate through the lines one more time, remove the extra
// indentation, join them together and return it
- return lines.map(line => line.substring(indentation)).join('\n');
+ return lines.map((line) => line.substring(indentation)).join('\n');
}
}
diff --git a/src/@fuse/components/loading-bar/loading-bar.component.html b/src/@fuse/components/loading-bar/loading-bar.component.html
index 3f884fef..0ecb7763 100644
--- a/src/@fuse/components/loading-bar/loading-bar.component.html
+++ b/src/@fuse/components/loading-bar/loading-bar.component.html
@@ -1,5 +1,3 @@
-
+
diff --git a/src/@fuse/components/loading-bar/loading-bar.component.ts b/src/@fuse/components/loading-bar/loading-bar.component.ts
index 220925d3..59a16159 100644
--- a/src/@fuse/components/loading-bar/loading-bar.component.ts
+++ b/src/@fuse/components/loading-bar/loading-bar.component.ts
@@ -1,21 +1,29 @@
import { coerceBooleanProperty } from '@angular/cdk/coercion';
import { NgIf } from '@angular/common';
-import { Component, inject, Input, OnChanges, OnDestroy, OnInit, SimpleChanges, ViewEncapsulation } from '@angular/core';
+import {
+ Component,
+ inject,
+ Input,
+ OnChanges,
+ OnDestroy,
+ OnInit,
+ SimpleChanges,
+ ViewEncapsulation,
+} from '@angular/core';
import { MatProgressBarModule } from '@angular/material/progress-bar';
import { FuseLoadingService } from '@fuse/services/loading';
import { Subject, takeUntil } from 'rxjs';
@Component({
- selector : 'fuse-loading-bar',
- templateUrl : './loading-bar.component.html',
- styleUrls : ['./loading-bar.component.scss'],
+ selector: 'fuse-loading-bar',
+ templateUrl: './loading-bar.component.html',
+ styleUrls: ['./loading-bar.component.scss'],
encapsulation: ViewEncapsulation.None,
- exportAs : 'fuseLoadingBar',
- standalone : true,
- imports : [NgIf, MatProgressBarModule],
+ exportAs: 'fuseLoadingBar',
+ standalone: true,
+ imports: [NgIf, MatProgressBarModule],
})
-export class FuseLoadingBarComponent implements OnChanges, OnInit, OnDestroy
-{
+export class FuseLoadingBarComponent implements OnChanges, OnInit, OnDestroy {
private _fuseLoadingService = inject(FuseLoadingService);
@Input() autoMode: boolean = true;
@@ -33,50 +41,44 @@ export class FuseLoadingBarComponent implements OnChanges, OnInit, OnDestroy
*
* @param changes
*/
- ngOnChanges(changes: SimpleChanges): void
- {
+ ngOnChanges(changes: SimpleChanges): void {
// Auto mode
- if ( 'autoMode' in changes )
- {
+ if ('autoMode' in changes) {
// Set the auto mode in the service
- this._fuseLoadingService.setAutoMode(coerceBooleanProperty(changes.autoMode.currentValue));
+ this._fuseLoadingService.setAutoMode(
+ coerceBooleanProperty(changes.autoMode.currentValue)
+ );
}
}
/**
* On init
*/
- ngOnInit(): void
- {
+ ngOnInit(): void {
// Subscribe to the service
this._fuseLoadingService.mode$
.pipe(takeUntil(this._unsubscribeAll))
- .subscribe((value) =>
- {
+ .subscribe((value) => {
this.mode = value;
});
this._fuseLoadingService.progress$
.pipe(takeUntil(this._unsubscribeAll))
- .subscribe((value) =>
- {
+ .subscribe((value) => {
this.progress = value;
});
this._fuseLoadingService.show$
.pipe(takeUntil(this._unsubscribeAll))
- .subscribe((value) =>
- {
+ .subscribe((value) => {
this.show = value;
});
-
}
/**
* On destroy
*/
- ngOnDestroy(): void
- {
+ ngOnDestroy(): void {
// Unsubscribe from all subscriptions
this._unsubscribeAll.next(null);
this._unsubscribeAll.complete();
diff --git a/src/@fuse/components/masonry/masonry.component.html b/src/@fuse/components/masonry/masonry.component.html
index 4b0a6719..5bd57310 100644
--- a/src/@fuse/components/masonry/masonry.component.html
+++ b/src/@fuse/components/masonry/masonry.component.html
@@ -1,3 +1,8 @@
-
+
diff --git a/src/@fuse/components/masonry/masonry.component.ts b/src/@fuse/components/masonry/masonry.component.ts
index f61b0bba..cb719e52 100644
--- a/src/@fuse/components/masonry/masonry.component.ts
+++ b/src/@fuse/components/masonry/masonry.component.ts
@@ -1,18 +1,25 @@
import { NgTemplateOutlet } from '@angular/common';
-import { AfterViewInit, Component, Input, OnChanges, SimpleChanges, TemplateRef, ViewEncapsulation } from '@angular/core';
+import {
+ AfterViewInit,
+ Component,
+ Input,
+ OnChanges,
+ SimpleChanges,
+ TemplateRef,
+ ViewEncapsulation,
+} from '@angular/core';
import { fuseAnimations } from '@fuse/animations';
@Component({
- selector : 'fuse-masonry',
- templateUrl : './masonry.component.html',
+ selector: 'fuse-masonry',
+ templateUrl: './masonry.component.html',
encapsulation: ViewEncapsulation.None,
- animations : fuseAnimations,
- exportAs : 'fuseMasonry',
- standalone : true,
- imports : [NgTemplateOutlet],
+ animations: fuseAnimations,
+ exportAs: 'fuseMasonry',
+ standalone: true,
+ imports: [NgTemplateOutlet],
})
-export class FuseMasonryComponent implements OnChanges, AfterViewInit
-{
+export class FuseMasonryComponent implements OnChanges, AfterViewInit {
@Input() columnsTemplate: TemplateRef;
@Input() columns: number;
@Input() items: any[] = [];
@@ -27,18 +34,15 @@ export class FuseMasonryComponent implements OnChanges, AfterViewInit
*
* @param changes
*/
- ngOnChanges(changes: SimpleChanges): void
- {
+ ngOnChanges(changes: SimpleChanges): void {
// Columns
- if ( 'columns' in changes )
- {
+ if ('columns' in changes) {
// Distribute the items
this._distributeItems();
}
// Items
- if ( 'items' in changes )
- {
+ if ('items' in changes) {
// Distribute the items
this._distributeItems();
}
@@ -47,8 +51,7 @@ export class FuseMasonryComponent implements OnChanges, AfterViewInit
/**
* After view init
*/
- ngAfterViewInit(): void
- {
+ ngAfterViewInit(): void {
// Distribute the items for the first time
this._distributeItems();
}
@@ -60,21 +63,20 @@ export class FuseMasonryComponent implements OnChanges, AfterViewInit
/**
* Distribute items into columns
*/
- private _distributeItems(): void
- {
+ private _distributeItems(): void {
// Return an empty array if there are no items
- if ( this.items.length === 0 )
- {
+ if (this.items.length === 0) {
this.distributedColumns = [];
return;
}
// Prepare the distributed columns array
- this.distributedColumns = Array.from(Array(this.columns), item => ({items: []}));
+ this.distributedColumns = Array.from(Array(this.columns), (item) => ({
+ items: [],
+ }));
// Distribute the items to columns
- for ( let i = 0; i < this.items.length; i++ )
- {
+ for (let i = 0; i < this.items.length; i++) {
this.distributedColumns[i % this.columns].items.push(this.items[i]);
}
}
diff --git a/src/@fuse/components/navigation/horizontal/components/basic/basic.component.html b/src/@fuse/components/navigation/horizontal/components/basic/basic.component.html
index 2bf424d9..bc7a1dc6 100644
--- a/src/@fuse/components/navigation/horizontal/components/basic/basic.component.html
+++ b/src/@fuse/components/navigation/horizontal/components/basic/basic.component.html
@@ -2,13 +2,19 @@
-
+ [ngClass]="item.classes?.wrapper"
+>
-
+
+ [matTooltip]="item.tooltip || ''"
+ >
-
+
+ [matTooltip]="item.tooltip || ''"
+ >
@@ -36,18 +48,27 @@
+ (click)="item.function(item)"
+ >
-
+
+ (click)="item.function(item)"
+ >
-
+
+ mat-menu-item
+ >
@@ -78,43 +105,47 @@
+ [ngClass]="{
+ 'fuse-horizontal-navigation-item-active-forced': item.active
+ }"
+ [matTooltip]="item.tooltip || ''"
+ >
-
-
+ [svgIcon]="item.icon"
+ >
- {{item.title}}
+ {{ item.title }}
- {{item.subtitle}}
+ {{ item.subtitle }}
@@ -125,10 +156,10 @@
- {{item.badge.title}}
+ [ngClass]="item.badge.classes"
+ >
+ {{ item.badge.title }}
-
diff --git a/src/@fuse/components/navigation/horizontal/components/basic/basic.component.ts b/src/@fuse/components/navigation/horizontal/components/basic/basic.component.ts
index 5879692d..0aed519c 100644
--- a/src/@fuse/components/navigation/horizontal/components/basic/basic.component.ts
+++ b/src/@fuse/components/navigation/horizontal/components/basic/basic.component.ts
@@ -1,9 +1,21 @@
import { NgClass, NgIf, NgTemplateOutlet } from '@angular/common';
-import { ChangeDetectionStrategy, ChangeDetectorRef, Component, inject, Input, OnDestroy, OnInit } from '@angular/core';
+import {
+ ChangeDetectionStrategy,
+ ChangeDetectorRef,
+ Component,
+ Input,
+ OnDestroy,
+ OnInit,
+ inject,
+} from '@angular/core';
import { MatIconModule } from '@angular/material/icon';
import { MatMenuModule } from '@angular/material/menu';
import { MatTooltipModule } from '@angular/material/tooltip';
-import { IsActiveMatchOptions, RouterLink, RouterLinkActive } from '@angular/router';
+import {
+ IsActiveMatchOptions,
+ RouterLink,
+ RouterLinkActive,
+} from '@angular/router';
import { FuseHorizontalNavigationComponent } from '@fuse/components/navigation/horizontal/horizontal.component';
import { FuseNavigationService } from '@fuse/components/navigation/navigation.service';
import { FuseNavigationItem } from '@fuse/components/navigation/navigation.types';
@@ -11,13 +23,23 @@ import { FuseUtilsService } from '@fuse/services/utils/utils.service';
import { Subject, takeUntil } from 'rxjs';
@Component({
- selector : 'fuse-horizontal-navigation-basic-item',
- templateUrl : './basic.component.html',
+ selector: 'fuse-horizontal-navigation-basic-item',
+ templateUrl: './basic.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
- standalone : true,
- imports : [NgClass, NgIf, RouterLink, RouterLinkActive, MatTooltipModule, NgTemplateOutlet, MatMenuModule, MatIconModule],
+ standalone: true,
+ imports: [
+ NgClass,
+ NgIf,
+ RouterLink,
+ RouterLinkActive,
+ MatTooltipModule,
+ NgTemplateOutlet,
+ MatMenuModule,
+ MatIconModule,
+ ],
})
-export class FuseHorizontalNavigationBasicItemComponent implements OnInit, OnDestroy
+export class FuseHorizontalNavigationBasicItemComponent
+ implements OnInit, OnDestroy
{
private _changeDetectorRef = inject(ChangeDetectorRef);
private _fuseNavigationService = inject(FuseNavigationService);
@@ -30,7 +52,8 @@ export class FuseHorizontalNavigationBasicItemComponent implements OnInit, OnDes
// We are not assigning the item.isActiveMatchOptions directly to the
// [routerLinkActiveOptions] because if it's "undefined" initially, the router
// will throw an error and stop working.
- isActiveMatchOptions: IsActiveMatchOptions = this._fuseUtilsService.subsetMatchOptions;
+ isActiveMatchOptions: IsActiveMatchOptions =
+ this._fuseUtilsService.subsetMatchOptions;
private _fuseHorizontalNavigationComponent: FuseHorizontalNavigationComponent;
private _unsubscribeAll: Subject
= new Subject();
@@ -42,8 +65,7 @@ export class FuseHorizontalNavigationBasicItemComponent implements OnInit, OnDes
/**
* On init
*/
- ngOnInit(): void
- {
+ ngOnInit(): void {
// Set the "isActiveMatchOptions" either from item's
// "isActiveMatchOptions" or the equivalent form of
// item's "exactMatch" option
@@ -53,26 +75,25 @@ export class FuseHorizontalNavigationBasicItemComponent implements OnInit, OnDes
: this._fuseUtilsService.subsetMatchOptions;
// Get the parent navigation component
- this._fuseHorizontalNavigationComponent = this._fuseNavigationService.getComponent(this.name);
+ this._fuseHorizontalNavigationComponent =
+ this._fuseNavigationService.getComponent(this.name);
// Mark for check
this._changeDetectorRef.markForCheck();
// Subscribe to onRefreshed on the navigation component
- this._fuseHorizontalNavigationComponent.onRefreshed.pipe(
- takeUntil(this._unsubscribeAll),
- ).subscribe(() =>
- {
- // Mark for check
- this._changeDetectorRef.markForCheck();
- });
+ this._fuseHorizontalNavigationComponent.onRefreshed
+ .pipe(takeUntil(this._unsubscribeAll))
+ .subscribe(() => {
+ // Mark for check
+ this._changeDetectorRef.markForCheck();
+ });
}
/**
* On destroy
*/
- ngOnDestroy(): void
- {
+ ngOnDestroy(): void {
// Unsubscribe from all subscriptions
this._unsubscribeAll.next(null);
this._unsubscribeAll.complete();
diff --git a/src/@fuse/components/navigation/horizontal/components/branch/branch.component.html b/src/@fuse/components/navigation/horizontal/components/branch/branch.component.html
index 87aafa1e..39734024 100644
--- a/src/@fuse/components/navigation/horizontal/components/branch/branch.component.html
+++ b/src/@fuse/components/navigation/horizontal/components/branch/branch.component.html
@@ -1,105 +1,123 @@
-
+ #trigger="matMenuTrigger"
+ >
+