coer-elements 0.0.74 → 0.0.76
Sign up to get free protection for your applications and to get access to all the features.
- package/components/lib/coer-accordion/coer-accordion.component.d.ts +3 -1
- package/components/lib/coer-checkbox/coer-checkbox.component.d.ts +2 -2
- package/components/lib/coer-datebox/coer-datebox.component.d.ts +3 -3
- package/components/lib/coer-modal/coer-modal.component.d.ts +1 -1
- package/components/lib/coer-numberbox/coer-numberbox.component.d.ts +1 -1
- package/components/lib/coer-sidenav/coer-sidenav.component.d.ts +8 -1
- package/components/lib/coer-sidenav/coer-tree-accordion/coer-tree-accordion.component.d.ts +8 -1
- package/components/lib/coer-textarea/coer-textarea.component.d.ts +1 -1
- package/components/lib/coer-textbox/coer-textbox.component.d.ts +3 -2
- package/fesm2022/coer-elements-components.mjs +79 -25
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-pages.mjs +81 -0
- package/fesm2022/coer-elements-pages.mjs.map +1 -0
- package/fesm2022/coer-elements-signals.mjs +3 -1
- package/fesm2022/coer-elements-signals.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +6 -4
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/fesm2022/coer-elements.mjs +7 -1
- package/fesm2022/coer-elements.mjs.map +1 -1
- package/index.d.ts +5 -4
- package/interfaces/lib/coer-menu/menu.interface.d.ts +1 -0
- package/package.json +5 -1
- package/pages/index.d.ts +5 -0
- package/pages/lib/coer-menu/coer-menu.component.d.ts +12 -0
- package/pages/lib/home/home.component.d.ts +7 -0
- package/pages/lib/pages.module.d.ts +12 -0
- package/pages/public-api.d.ts +3 -0
- package/signals/lib/menu-selected.signal.d.ts +2 -0
- package/signals/public-api.d.ts +1 -0
- package/styles/animations.scss +11 -0
- package/styles/coer-elements.css +63 -9
- package/styles/containers.scss +24 -2
- package/styles/index.scss +1 -0
- package/styles/layout.scss +18 -1
- package/styles/position.scss +5 -0
@@ -2,13 +2,15 @@ import * as i0 from '@angular/core';
|
|
2
2
|
import { NgModule } from '@angular/core';
|
3
3
|
import { CoerAlert } from 'coer-elements/tools';
|
4
4
|
import * as components from 'coer-elements/components';
|
5
|
+
import * as pages from 'coer-elements/pages';
|
5
6
|
import * as directives from 'coer-elements/directives';
|
6
7
|
import * as pipes from 'coer-elements/pipes';
|
7
8
|
|
8
9
|
class CoerElementsModule {
|
9
10
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: CoerElementsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
10
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.1", ngImport: i0, type: CoerElementsModule, imports: [components.ComponentsModule, directives.DirectivesModule, pipes.PipesModule, CoerAlert], exports: [CoerAlert, components.CoerButton, components.CoerCheckbox, components.CoerDateBox, components.CoerFilebox, components.CoerForm, components.CoerGrid, components.CoerList, components.CoerModal, components.CoerNumberBox, components.CoerPageTitle, components.CoerSelectbox, components.CoerSidenav, components.CoerSwitch, components.CoerTextarea, components.CoerTab, components.CoerTextBox, components.CoerToolbar, directives.CoerRefDirective, directives.LifeCycleDirective, pipes.HtmlPipe, pipes.NoImagePipe, pipes.NumericFormatPipe] }); }
|
11
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.1", ngImport: i0, type: CoerElementsModule, imports: [components.ComponentsModule, pages.PagesModule, directives.DirectivesModule, pipes.PipesModule, CoerAlert], exports: [CoerAlert, components.CoerAccordion, components.CoerButton, components.CoerCheckbox, components.CoerDateBox, components.CoerFilebox, components.CoerForm, components.CoerGrid, components.CoerList, components.CoerModal, components.CoerNumberBox, components.CoerPageTitle, components.CoerSelectbox, components.CoerSidenav, components.CoerSwitch, components.CoerTextarea, components.CoerTab, components.CoerTextBox, components.CoerToolbar, pages.CoerMenuPage, pages.HomePage, directives.CoerRefDirective, directives.LifeCycleDirective, pipes.HtmlPipe, pipes.NoImagePipe, pipes.NumericFormatPipe] }); }
|
11
12
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: CoerElementsModule, imports: [components.ComponentsModule,
|
13
|
+
pages.PagesModule,
|
12
14
|
directives.DirectivesModule,
|
13
15
|
pipes.PipesModule,
|
14
16
|
CoerAlert] }); }
|
@@ -18,12 +20,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.1", ngImpor
|
|
18
20
|
args: [{
|
19
21
|
imports: [
|
20
22
|
components.ComponentsModule,
|
23
|
+
pages.PagesModule,
|
21
24
|
directives.DirectivesModule,
|
22
25
|
pipes.PipesModule,
|
23
26
|
CoerAlert
|
24
27
|
],
|
25
28
|
exports: [
|
26
29
|
CoerAlert,
|
30
|
+
components.CoerAccordion,
|
27
31
|
components.CoerButton,
|
28
32
|
components.CoerCheckbox,
|
29
33
|
components.CoerDateBox,
|
@@ -41,6 +45,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.1", ngImpor
|
|
41
45
|
components.CoerTab,
|
42
46
|
components.CoerTextBox,
|
43
47
|
components.CoerToolbar,
|
48
|
+
pages.CoerMenuPage,
|
49
|
+
pages.HomePage,
|
44
50
|
directives.CoerRefDirective,
|
45
51
|
directives.LifeCycleDirective,
|
46
52
|
pipes.HtmlPipe,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"coer-elements.mjs","sources":["../../../projects/coer-elements/index.ts","../../../projects/coer-elements/coer-elements.ts"],"sourcesContent":["import { NgModule } from '@angular/core';\r\n\r\n//Components\r\nimport { CoerAlert } from 'coer-elements/tools';\r\nimport * as components from 'coer-elements/components';\r\nimport * as directives from 'coer-elements/directives';\r\nimport * as pipes from 'coer-elements/pipes';\r\n\r\n\r\n@NgModule({\r\n imports: [\r\n components.ComponentsModule, \r\n directives.DirectivesModule,\r\n pipes.PipesModule,\r\n CoerAlert\r\n ],\r\n exports: [\r\n CoerAlert,\r\n components.CoerButton,\r\n components.CoerCheckbox,\r\n components.CoerDateBox,\r\n components.CoerFilebox,\r\n components.CoerForm,\r\n components.CoerGrid,\r\n components.CoerList
|
1
|
+
{"version":3,"file":"coer-elements.mjs","sources":["../../../projects/coer-elements/index.ts","../../../projects/coer-elements/coer-elements.ts"],"sourcesContent":["import { NgModule } from '@angular/core';\r\n\r\n//Components\r\nimport { CoerAlert } from 'coer-elements/tools';\r\nimport * as components from 'coer-elements/components';\r\nimport * as pages from 'coer-elements/pages';\r\nimport * as directives from 'coer-elements/directives';\r\nimport * as pipes from 'coer-elements/pipes';\r\n\r\n\r\n@NgModule({\r\n imports: [\r\n components.ComponentsModule, \r\n pages.PagesModule,\r\n directives.DirectivesModule,\r\n pipes.PipesModule,\r\n CoerAlert\r\n ],\r\n exports: [\r\n CoerAlert,\r\n components.CoerAccordion,\r\n components.CoerButton,\r\n components.CoerCheckbox,\r\n components.CoerDateBox,\r\n components.CoerFilebox,\r\n components.CoerForm,\r\n components.CoerGrid,\r\n components.CoerList, \r\n components.CoerModal,\r\n components.CoerNumberBox,\r\n components.CoerPageTitle,\r\n components.CoerSelectbox,\r\n components.CoerSidenav,\r\n components.CoerSwitch,\r\n components.CoerTextarea,\r\n components.CoerTab,\r\n components.CoerTextBox,\r\n components.CoerToolbar, \r\n pages.CoerMenuPage,\r\n pages.HomePage,\r\n directives.CoerRefDirective,\r\n directives.LifeCycleDirective,\r\n pipes.HtmlPipe,\r\n pipes.NoImagePipe,\r\n pipes.NumericFormatPipe\r\n ]\r\n})\r\nexport class CoerElementsModule { }","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1","i2","i3","i4"],"mappings":";;;;;;;;MA+Ca,kBAAkB,CAAA;8GAAlB,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;+GAAlB,kBAAkB,EAAA,OAAA,EAAA,CAAAA,UAAA,CAAA,gBAAA,EAAAC,KAAA,CAAA,WAAA,EAAAC,UAAA,CAAA,gBAAA,EAAAC,KAAA,CAAA,WAAA,EA/BvB,SAAS,CAAA,EAAA,OAAA,EAAA,CAGT,SAAS,EAAAH,UAAA,CAAA,aAAA,EAAAA,UAAA,CAAA,UAAA,EAAAA,UAAA,CAAA,YAAA,EAAAA,UAAA,CAAA,WAAA,EAAAA,UAAA,CAAA,WAAA,EAAAA,UAAA,CAAA,QAAA,EAAAA,UAAA,CAAA,QAAA,EAAAA,UAAA,CAAA,QAAA,EAAAA,UAAA,CAAA,SAAA,EAAAA,UAAA,CAAA,aAAA,EAAAA,UAAA,CAAA,aAAA,EAAAA,UAAA,CAAA,aAAA,EAAAA,UAAA,CAAA,WAAA,EAAAA,UAAA,CAAA,UAAA,EAAAA,UAAA,CAAA,YAAA,EAAAA,UAAA,CAAA,OAAA,EAAAA,UAAA,CAAA,WAAA,EAAAA,UAAA,CAAA,WAAA,EAAAC,KAAA,CAAA,YAAA,EAAAA,KAAA,CAAA,QAAA,EAAAC,UAAA,CAAA,gBAAA,EAAAA,UAAA,CAAA,kBAAA,EAAAC,KAAA,CAAA,QAAA,EAAAA,KAAA,CAAA,WAAA,EAAAA,KAAA,CAAA,iBAAA,CAAA,EAAA,CAAA,CAAA;+GA4BJ,kBAAkB,EAAA,OAAA,EAAA,CAnCvB,UAAU,CAAC,gBAAgB;AAC3B,YAAA,KAAK,CAAC,WAAW;AACjB,YAAA,UAAU,CAAC,gBAAgB;AAC3B,YAAA,KAAK,CAAC,WAAW;YACjB,SAAS,CAAA,EAAA,CAAA,CAAA;;2FA+BJ,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBArC9B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACN,oBAAA,OAAO,EAAE;AACL,wBAAA,UAAU,CAAC,gBAAgB;AAC3B,wBAAA,KAAK,CAAC,WAAW;AACjB,wBAAA,UAAU,CAAC,gBAAgB;AAC3B,wBAAA,KAAK,CAAC,WAAW;wBACjB;AACH,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACL,SAAS;AACT,wBAAA,UAAU,CAAC,aAAa;AACxB,wBAAA,UAAU,CAAC,UAAU;AACrB,wBAAA,UAAU,CAAC,YAAY;AACvB,wBAAA,UAAU,CAAC,WAAW;AACtB,wBAAA,UAAU,CAAC,WAAW;AACtB,wBAAA,UAAU,CAAC,QAAQ;AACnB,wBAAA,UAAU,CAAC,QAAQ;AACnB,wBAAA,UAAU,CAAC,QAAQ;AACnB,wBAAA,UAAU,CAAC,SAAS;AACpB,wBAAA,UAAU,CAAC,aAAa;AACxB,wBAAA,UAAU,CAAC,aAAa;AACxB,wBAAA,UAAU,CAAC,aAAa;AACxB,wBAAA,UAAU,CAAC,WAAW;AACtB,wBAAA,UAAU,CAAC,UAAU;AACrB,wBAAA,UAAU,CAAC,YAAY;AACvB,wBAAA,UAAU,CAAC,OAAO;AAClB,wBAAA,UAAU,CAAC,WAAW;AACtB,wBAAA,UAAU,CAAC,WAAW;AACtB,wBAAA,KAAK,CAAC,YAAY;AAClB,wBAAA,KAAK,CAAC,QAAQ;AACd,wBAAA,UAAU,CAAC,gBAAgB;AAC3B,wBAAA,UAAU,CAAC,kBAAkB;AAC7B,wBAAA,KAAK,CAAC,QAAQ;AACd,wBAAA,KAAK,CAAC,WAAW;AACjB,wBAAA,KAAK,CAAC;AACT;AACJ,iBAAA;;;AC9CD;;AAEG;;;;"}
|
package/index.d.ts
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
import * as i1 from "coer-elements/components";
|
3
|
-
import * as i2 from "coer-elements/
|
4
|
-
import * as i3 from "coer-elements/
|
5
|
-
import * as i4 from "coer-elements/
|
3
|
+
import * as i2 from "coer-elements/pages";
|
4
|
+
import * as i3 from "coer-elements/directives";
|
5
|
+
import * as i4 from "coer-elements/pipes";
|
6
|
+
import * as i5 from "coer-elements/tools";
|
6
7
|
export declare class CoerElementsModule {
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<CoerElementsModule, never>;
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CoerElementsModule, never, [typeof i1.ComponentsModule, typeof i2.
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CoerElementsModule, never, [typeof i1.ComponentsModule, typeof i2.PagesModule, typeof i3.DirectivesModule, typeof i4.PipesModule, typeof i5.CoerAlert], [typeof i5.CoerAlert, typeof i1.CoerAccordion, typeof i1.CoerButton, typeof i1.CoerCheckbox, typeof i1.CoerDateBox, typeof i1.CoerFilebox, typeof i1.CoerForm, typeof i1.CoerGrid, typeof i1.CoerList, typeof i1.CoerModal, typeof i1.CoerNumberBox, typeof i1.CoerPageTitle, typeof i1.CoerSelectbox, typeof i1.CoerSidenav, typeof i1.CoerSwitch, typeof i1.CoerTextarea, typeof i1.CoerTab, typeof i1.CoerTextBox, typeof i1.CoerToolbar, typeof i2.CoerMenuPage, typeof i2.HomePage, typeof i3.CoerRefDirective, typeof i3.LifeCycleDirective, typeof i4.HtmlPipe, typeof i4.NoImagePipe, typeof i4.NumericFormatPipe]>;
|
9
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<CoerElementsModule>;
|
10
11
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "coer-elements",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.76",
|
4
4
|
"author": "Christian Omar Escamilla Rodríguez",
|
5
5
|
"keywords": [
|
6
6
|
"COER",
|
@@ -46,6 +46,10 @@
|
|
46
46
|
"types": "./interfaces/index.d.ts",
|
47
47
|
"default": "./fesm2022/coer-elements-interfaces.mjs"
|
48
48
|
},
|
49
|
+
"./pages": {
|
50
|
+
"types": "./pages/index.d.ts",
|
51
|
+
"default": "./fesm2022/coer-elements-pages.mjs"
|
52
|
+
},
|
49
53
|
"./pipes": {
|
50
54
|
"types": "./pipes/index.d.ts",
|
51
55
|
"default": "./fesm2022/coer-elements-pipes.mjs"
|
package/pages/index.d.ts
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
import { WritableSignal } from '@angular/core';
|
2
|
+
import { Page } from 'coer-elements/tools';
|
3
|
+
import { IMenuSelected } from 'coer-elements/interfaces';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare class CoerMenuPage extends Page {
|
6
|
+
protected menu: WritableSignal<IMenuSelected | null>;
|
7
|
+
constructor();
|
8
|
+
/** */
|
9
|
+
protected RunPage(): void;
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CoerMenuPage, never>;
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CoerMenuPage, "coer-menu-page", never, {}, {}, never, never, false, never>;
|
12
|
+
}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { Page } from 'coer-elements/tools';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class HomePage extends Page {
|
4
|
+
constructor();
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HomePage, never>;
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HomePage, "home-page", never, {}, {}, never, never, false, never>;
|
7
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./coer-menu/coer-menu.component";
|
3
|
+
import * as i2 from "./home/home.component";
|
4
|
+
import * as i3 from "@angular/common";
|
5
|
+
import * as i4 from "@angular/router";
|
6
|
+
import * as i5 from "coer-elements/components";
|
7
|
+
export declare const ROUTES: any;
|
8
|
+
export declare class PagesModule {
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PagesModule, never>;
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PagesModule, [typeof i1.CoerMenuPage, typeof i2.HomePage], [typeof i3.CommonModule, typeof i4.RouterModule, typeof i5.ComponentsModule], [typeof i1.CoerMenuPage, typeof i2.HomePage]>;
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PagesModule>;
|
12
|
+
}
|
package/signals/public-api.d.ts
CHANGED
package/styles/coer-elements.css
CHANGED
@@ -1375,15 +1375,15 @@ div.coer-switch {
|
|
1375
1375
|
align-items: center !important;
|
1376
1376
|
position: relative !important;
|
1377
1377
|
}
|
1378
|
-
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field button
|
1378
|
+
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field button .mdc-switch__track::after {
|
1379
1379
|
background-color: var(--orange) !important;
|
1380
1380
|
filter: opacity(0.6) !important;
|
1381
1381
|
}
|
1382
|
-
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field button
|
1382
|
+
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field button .mdc-switch__handle-track .mdc-switch__ripple {
|
1383
1383
|
width: 30px !important;
|
1384
1384
|
height: 30px !important;
|
1385
1385
|
}
|
1386
|
-
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field button.mdc-switch.mdc-switch--selected.mdc-switch--checked
|
1386
|
+
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field button.mdc-switch.mdc-switch--selected.mdc-switch--checked .mdc-switch__handle-track .mdc-switch__handle .mdc-switch__icons {
|
1387
1387
|
background-color: var(--orange) !important;
|
1388
1388
|
border-radius: 20px !important;
|
1389
1389
|
}
|
@@ -1736,7 +1736,7 @@ aside.toast-container > * {
|
|
1736
1736
|
word-break: break-word;
|
1737
1737
|
}
|
1738
1738
|
|
1739
|
-
@keyframes
|
1739
|
+
@keyframes fadeIn {
|
1740
1740
|
from {
|
1741
1741
|
opacity: 0;
|
1742
1742
|
}
|
@@ -1750,11 +1750,29 @@ aside.toast-container > * {
|
|
1750
1750
|
box-shadow: 0px 0px 10px -10px black;
|
1751
1751
|
border-radius: 8px;
|
1752
1752
|
background-color: white;
|
1753
|
-
animation-name:
|
1753
|
+
animation-name: fadeIn;
|
1754
1754
|
animation-duration: 1.5s;
|
1755
1755
|
animation-iteration-count: 1;
|
1756
1756
|
animation-fill-mode: both;
|
1757
1757
|
min-height: 60px;
|
1758
|
+
position: relative;
|
1759
|
+
z-index: 0;
|
1760
|
+
}
|
1761
|
+
|
1762
|
+
.coer-container-accordion {
|
1763
|
+
margin: 15px 30px 0px 30px;
|
1764
|
+
padding: 10px;
|
1765
|
+
box-shadow: 0px 0px 10px -10px black;
|
1766
|
+
border-radius: 8px;
|
1767
|
+
background-color: white;
|
1768
|
+
animation-name: fadeIn;
|
1769
|
+
animation-duration: 1.5s;
|
1770
|
+
animation-iteration-count: 1;
|
1771
|
+
animation-fill-mode: both;
|
1772
|
+
min-height: 60px;
|
1773
|
+
position: relative;
|
1774
|
+
z-index: 0;
|
1775
|
+
min-height: 55px;
|
1758
1776
|
}
|
1759
1777
|
|
1760
1778
|
.coer-container-tab {
|
@@ -1763,11 +1781,13 @@ aside.toast-container > * {
|
|
1763
1781
|
box-shadow: 0px 0px 10px -10px black;
|
1764
1782
|
border-radius: 8px;
|
1765
1783
|
background-color: white;
|
1766
|
-
animation-name:
|
1784
|
+
animation-name: fadeIn;
|
1767
1785
|
animation-duration: 1.5s;
|
1768
1786
|
animation-iteration-count: 1;
|
1769
1787
|
animation-fill-mode: both;
|
1770
1788
|
min-height: 60px;
|
1789
|
+
position: relative;
|
1790
|
+
z-index: 0;
|
1771
1791
|
padding: 0px;
|
1772
1792
|
}
|
1773
1793
|
.coer-container-tab .row {
|
@@ -1780,11 +1800,13 @@ aside.toast-container > * {
|
|
1780
1800
|
box-shadow: 0px 0px 10px -10px black;
|
1781
1801
|
border-radius: 8px;
|
1782
1802
|
background-color: white;
|
1783
|
-
animation-name:
|
1803
|
+
animation-name: fadeIn;
|
1784
1804
|
animation-duration: 1.5s;
|
1785
1805
|
animation-iteration-count: 1;
|
1786
1806
|
animation-fill-mode: both;
|
1787
1807
|
min-height: 60px;
|
1808
|
+
position: relative;
|
1809
|
+
z-index: 0;
|
1788
1810
|
padding-bottom: 5px;
|
1789
1811
|
}
|
1790
1812
|
|
@@ -1794,11 +1816,13 @@ aside.toast-container > * {
|
|
1794
1816
|
box-shadow: 0px 0px 10px -10px black;
|
1795
1817
|
border-radius: 8px;
|
1796
1818
|
background-color: white;
|
1797
|
-
animation-name:
|
1819
|
+
animation-name: fadeIn;
|
1798
1820
|
animation-duration: 1.5s;
|
1799
1821
|
animation-iteration-count: 1;
|
1800
1822
|
animation-fill-mode: both;
|
1801
1823
|
min-height: 60px;
|
1824
|
+
position: relative;
|
1825
|
+
z-index: 0;
|
1802
1826
|
padding: 0px;
|
1803
1827
|
}
|
1804
1828
|
|
@@ -1863,10 +1887,25 @@ aside.toast-container > * {
|
|
1863
1887
|
flex: 1 1 auto;
|
1864
1888
|
}
|
1865
1889
|
|
1866
|
-
.flex-wrap {
|
1890
|
+
.flex-wrap-left {
|
1891
|
+
display: flex !important;
|
1892
|
+
flex-wrap: wrap !important;
|
1893
|
+
gap: 10px !important;
|
1894
|
+
align-items: flex-start !important;
|
1895
|
+
}
|
1896
|
+
|
1897
|
+
.flex-wrap .flex-wrap-center {
|
1898
|
+
display: flex !important;
|
1899
|
+
flex-wrap: wrap !important;
|
1900
|
+
gap: 10px !important;
|
1901
|
+
align-items: center !important;
|
1902
|
+
}
|
1903
|
+
|
1904
|
+
.flex-wrap-end {
|
1867
1905
|
display: flex !important;
|
1868
1906
|
flex-wrap: wrap !important;
|
1869
1907
|
gap: 10px !important;
|
1908
|
+
align-items: flex-end !important;
|
1870
1909
|
}
|
1871
1910
|
|
1872
1911
|
.flex-wrap-item {
|
@@ -1874,6 +1913,21 @@ aside.toast-container > * {
|
|
1874
1913
|
flex-basis: 200 !important;
|
1875
1914
|
}
|
1876
1915
|
|
1916
|
+
@keyframes fadeIn {
|
1917
|
+
from {
|
1918
|
+
opacity: 0;
|
1919
|
+
}
|
1920
|
+
to {
|
1921
|
+
opacity: 1;
|
1922
|
+
}
|
1923
|
+
}
|
1924
|
+
.fade-in {
|
1925
|
+
animation-name: fadeIn;
|
1926
|
+
animation-duration: 1.5s;
|
1927
|
+
animation-iteration-count: 1;
|
1928
|
+
animation-fill-mode: both;
|
1929
|
+
}
|
1930
|
+
|
1877
1931
|
* {
|
1878
1932
|
font-family: sans-serif;
|
1879
1933
|
letter-spacing: normal;
|
package/styles/containers.scss
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
@keyframes
|
1
|
+
@keyframes fadeIn {
|
2
2
|
from { opacity: 0; }
|
3
3
|
to { opacity: 1; }
|
4
4
|
}
|
@@ -9,17 +9,39 @@
|
|
9
9
|
box-shadow: 0px 0px 10px -10px black;
|
10
10
|
border-radius: 8px;
|
11
11
|
background-color: white;
|
12
|
-
animation-name:
|
12
|
+
animation-name: fadeIn;
|
13
13
|
animation-duration: 1.5s;
|
14
14
|
animation-iteration-count: 1;
|
15
15
|
animation-fill-mode: both;
|
16
16
|
min-height: 60px;
|
17
|
+
position: relative;
|
18
|
+
z-index: 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
@mixin Container() {
|
22
|
+
margin: 15px 30px 0px 30px;
|
23
|
+
padding: 10px;
|
24
|
+
box-shadow: 0px 0px 10px -10px black;
|
25
|
+
border-radius: 8px;
|
26
|
+
background-color: white;
|
27
|
+
animation-name: fadeIn;
|
28
|
+
animation-duration: 1.5s;
|
29
|
+
animation-iteration-count: 1;
|
30
|
+
animation-fill-mode: both;
|
31
|
+
min-height: 60px;
|
32
|
+
position: relative;
|
33
|
+
z-index: 0;
|
17
34
|
}
|
18
35
|
|
19
36
|
.coer-container {
|
20
37
|
@include Container();
|
21
38
|
}
|
22
39
|
|
40
|
+
.coer-container-accordion {
|
41
|
+
@include Container();
|
42
|
+
min-height: 55px;
|
43
|
+
}
|
44
|
+
|
23
45
|
.coer-container-tab {
|
24
46
|
@include Container();
|
25
47
|
padding: 0px;
|
package/styles/index.scss
CHANGED
package/styles/layout.scss
CHANGED
@@ -20,10 +20,27 @@
|
|
20
20
|
flex: 1 1 auto;
|
21
21
|
}
|
22
22
|
|
23
|
-
|
23
|
+
|
24
|
+
@mixin FlexWrap() {
|
24
25
|
display: flex !important;
|
25
26
|
flex-wrap: wrap !important;
|
26
27
|
gap: 10px !important;
|
28
|
+
}
|
29
|
+
|
30
|
+
.flex-wrap-left {
|
31
|
+
@include FlexWrap();
|
32
|
+
align-items: flex-start !important;
|
33
|
+
}
|
34
|
+
|
35
|
+
.flex-wrap
|
36
|
+
.flex-wrap-center {
|
37
|
+
@include FlexWrap();
|
38
|
+
align-items: center !important;
|
39
|
+
}
|
40
|
+
|
41
|
+
.flex-wrap-end {
|
42
|
+
@include FlexWrap();
|
43
|
+
align-items: flex-end !important;
|
27
44
|
}
|
28
45
|
|
29
46
|
.flex-wrap-item {
|