aril 0.0.76 → 0.0.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/theme/layout/app/breadcrumb/app.breadcrumb.component.mjs +3 -3
- package/esm2022/theme/layout/app/layout/app.layout.component.mjs +3 -3
- package/esm2022/theme/layout/app/menu/app.menu.component.mjs +3 -3
- package/esm2022/theme/layout/app/topbar/app.topbar.component.mjs +13 -12
- package/esm2022/ui/calendar/src/calendar.component.mjs +5 -3
- package/esm2022/ui/panel/src/panel.component.mjs +5 -3
- package/esm2022/ui/table/src/table.component.mjs +3 -3
- package/fesm2022/aril-theme-layout.mjs +18 -17
- package/fesm2022/aril-theme-layout.mjs.map +1 -1
- package/fesm2022/aril-ui-calendar.mjs +4 -2
- package/fesm2022/aril-ui-calendar.mjs.map +1 -1
- package/fesm2022/aril-ui-panel.mjs +4 -2
- package/fesm2022/aril-ui-panel.mjs.map +1 -1
- package/fesm2022/aril-ui-table.mjs +2 -2
- package/fesm2022/aril-ui-table.mjs.map +1 -1
- package/package.json +126 -126
- package/theme/layout/app/breadcrumb/app.breadcrumb.component.html +7 -7
- package/theme/layout/app/layout/app.layout.component.html +10 -10
- package/theme/layout/app/menu/app.menu.component.ts +5 -3
- package/theme/layout/app/topbar/app.topbar.component.html +10 -29
- package/theme/layout/app/topbar/app.topbar.component.ts +13 -11
- package/theme/styles/layout/_breadcrumb.scss +13 -0
- package/theme/styles/layout/_content.scss +6 -0
- package/theme/styles/layout/_sidebar_slim_plus.scss +14 -11
- package/theme/styles/layout/_sidebar_vertical.scss +3 -0
- package/theme/styles/layout/_topbar.scss +18 -19
- package/theme/styles/theme/base/components/panel/_panel.scss +1 -0
- package/theme/styles/theme/dark/_variables.scss +1 -1
- package/theme/styles/theme/light/_variables.scss +3 -2
- package/ui/calendar/src/calendar.component.d.ts +3 -1
- package/ui/panel/src/panel.component.d.ts +3 -1
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.layout-sidebar {
|
|
25
|
-
width:
|
|
25
|
+
width: 132px;
|
|
26
26
|
overflow: visible;
|
|
27
27
|
z-index: 999;
|
|
28
|
-
padding-left:
|
|
29
|
-
padding-right:
|
|
28
|
+
padding-left: 11px;
|
|
29
|
+
padding-right: 11px;
|
|
30
30
|
|
|
31
31
|
.layout-menu-container {
|
|
32
32
|
overflow: auto;
|
|
@@ -38,10 +38,13 @@
|
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
.layout-content-wrapper {
|
|
41
|
-
margin-left:
|
|
41
|
+
margin-left: 132px;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
.layout-menu {
|
|
45
|
+
display: flex;
|
|
46
|
+
gap: 2rem;
|
|
47
|
+
|
|
45
48
|
ul {
|
|
46
49
|
display: none;
|
|
47
50
|
}
|
|
@@ -62,28 +65,28 @@
|
|
|
62
65
|
flex-direction: column;
|
|
63
66
|
align-items: center;
|
|
64
67
|
justify-content: center;
|
|
65
|
-
|
|
68
|
+
gap: 14px;
|
|
69
|
+
border-radius: 12px;
|
|
66
70
|
text-align: center;
|
|
67
71
|
cursor: pointer;
|
|
68
72
|
outline: none;
|
|
69
73
|
transition: background-color var(--transition-duration);
|
|
70
74
|
width: auto;
|
|
71
|
-
height:
|
|
72
|
-
|
|
73
|
-
padding: 1rem 0.25rem;
|
|
75
|
+
height: 100%;
|
|
76
|
+
padding: 14px 5px;
|
|
74
77
|
|
|
75
78
|
.layout-submenu-toggler {
|
|
76
79
|
display: none;
|
|
77
80
|
}
|
|
78
81
|
|
|
79
82
|
.layout-menuitem-icon {
|
|
80
|
-
font-size:
|
|
83
|
+
font-size: 32px;
|
|
81
84
|
color: var(--menuitem-icon-color);
|
|
82
85
|
}
|
|
83
86
|
|
|
84
87
|
.layout-menuitem-text {
|
|
85
|
-
font-size:
|
|
86
|
-
font-weight:
|
|
88
|
+
font-size: 16px;
|
|
89
|
+
font-weight: 600;
|
|
87
90
|
display: block;
|
|
88
91
|
margin-top: 0.25rem;
|
|
89
92
|
color: var(--primary-color);
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
display: flex;
|
|
3
3
|
justify-content: space-between;
|
|
4
4
|
align-items: center;
|
|
5
|
-
height:
|
|
5
|
+
height: 70px;
|
|
6
6
|
background: #fff;
|
|
7
|
-
padding:
|
|
7
|
+
padding: 12px 30px;
|
|
8
8
|
position: sticky;
|
|
9
9
|
top: 0;
|
|
10
|
-
z-index:
|
|
10
|
+
z-index: 1101;
|
|
11
11
|
|
|
12
12
|
.topbar-start {
|
|
13
13
|
display: flex;
|
|
@@ -50,7 +50,11 @@
|
|
|
50
50
|
|
|
51
51
|
li {
|
|
52
52
|
button {
|
|
53
|
+
width: 32px;
|
|
54
|
+
height: 32px;
|
|
55
|
+
font-size: 14px !important;
|
|
53
56
|
background-color: var(--accent-500);
|
|
57
|
+
justify-content: center;
|
|
54
58
|
}
|
|
55
59
|
|
|
56
60
|
&.topbar-profile {
|
|
@@ -85,21 +89,16 @@
|
|
|
85
89
|
}
|
|
86
90
|
}
|
|
87
91
|
}
|
|
88
|
-
.bell-topbar {
|
|
89
|
-
color: var(--primary-color);
|
|
90
|
-
cursor: pointer;
|
|
91
|
-
font-weight: bold;
|
|
92
|
-
border: none;
|
|
93
|
-
border-radius: 50%;
|
|
94
|
-
display: flex;
|
|
95
|
-
align-items: center;
|
|
96
|
-
justify-content: center;
|
|
97
|
-
}
|
|
98
92
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
93
|
+
@layer primeng {
|
|
94
|
+
.topbar-menu {
|
|
95
|
+
.pi {
|
|
96
|
+
font-size: 14px !important;
|
|
97
|
+
|
|
98
|
+
&.pi-bell {
|
|
99
|
+
cursor: pointer;
|
|
100
|
+
font-size: 18px !important;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
105
104
|
}
|
|
@@ -359,7 +359,7 @@ $panelHeaderBg: $shade800 !default;
|
|
|
359
359
|
$panelHeaderTextColor: $shade000 !default;
|
|
360
360
|
$panelHeaderFontWeight: 700 !default;
|
|
361
361
|
$panelHeaderPadding: 1.25rem !default;
|
|
362
|
-
$panelToggleableHeaderPadding: 0.
|
|
362
|
+
$panelToggleableHeaderPadding: 0.5rem 1.25rem !default;
|
|
363
363
|
|
|
364
364
|
$panelHeaderHoverBg: $hoverBg !default;
|
|
365
365
|
$panelHeaderHoverBorderColor: $shade600 !default;
|
|
@@ -358,7 +358,7 @@ $panelHeaderBg: $shade100 !default;
|
|
|
358
358
|
$panelHeaderTextColor: $shade800 !default;
|
|
359
359
|
$panelHeaderFontWeight: 700 !default;
|
|
360
360
|
$panelHeaderPadding: 1.25rem !default;
|
|
361
|
-
$panelToggleableHeaderPadding: 0.
|
|
361
|
+
$panelToggleableHeaderPadding: 0.5rem 1.25rem !default;
|
|
362
362
|
|
|
363
363
|
$panelHeaderHoverBg: $shade200 !default;
|
|
364
364
|
$panelHeaderHoverBorderColor: $shade300 !default;
|
|
@@ -669,7 +669,7 @@ $menuBorder: 1px solid $shade300 !default;
|
|
|
669
669
|
$menuTextColor: $shade700 !default;
|
|
670
670
|
$menuitemPadding: 0.75rem 1.25rem !default;
|
|
671
671
|
$menuitemBorderRadius: 0 !default;
|
|
672
|
-
$menuitemTextColor: $
|
|
672
|
+
$menuitemTextColor: $shade600 !default;
|
|
673
673
|
$menuitemIconColor: $shade600 !default;
|
|
674
674
|
$menuitemTextHoverColor: $shade700 !default;
|
|
675
675
|
$menuitemIconHoverColor: $shade600 !default;
|
|
@@ -921,4 +921,5 @@ $imagePreviewActionIconBorderRadius: 50% !default;
|
|
|
921
921
|
--highlight-text-color: #{$highlightTextColor};
|
|
922
922
|
color-scheme: light;
|
|
923
923
|
--transition-duration: #{$transitionDuration};
|
|
924
|
+
--primary-foreground: #fefefe;
|
|
924
925
|
}
|
|
@@ -18,6 +18,8 @@ export declare class CalendarComponent extends BaseInputComponent implements OnI
|
|
|
18
18
|
minDate: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
19
19
|
maxDate: import("@angular/core").InputSignal<number | undefined, number | undefined>;
|
|
20
20
|
inputStyle: import("@angular/core").InputSignal<object | undefined, object | undefined>;
|
|
21
|
+
inputStyleClass: import("@angular/core").InputSignal<string | undefined, string | undefined>;
|
|
22
|
+
autoZIndex: import("@angular/core").InputSignal<boolean, boolean>;
|
|
21
23
|
inline: import("@angular/core").InputSignal<boolean, boolean>;
|
|
22
24
|
showIcon: import("@angular/core").InputSignal<boolean, boolean>;
|
|
23
25
|
showTime: import("@angular/core").InputSignal<boolean, boolean>;
|
|
@@ -36,6 +38,6 @@ export declare class CalendarComponent extends BaseInputComponent implements OnI
|
|
|
36
38
|
_dateFormat: import("@angular/core").Signal<"MM/yy" | "yy" | "dd/MM/yy">;
|
|
37
39
|
setLocale(): void;
|
|
38
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "aril-calendar[ngModel], aril-calendar[formControl], aril-calendar[formControlName]", never, { "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; "inputStyle": { "alias": "inputStyle"; "required": false; "isSignal": true; }; "inline": { "alias": "inline"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "showTime": { "alias": "showTime"; "required": false; "isSignal": true; }; "showWeek": { "alias": "showWeek"; "required": false; "isSignal": true; }; "showSeconds": { "alias": "showSeconds"; "required": false; "isSignal": true; }; "disabledDates": { "alias": "disabledDates"; "required": false; "isSignal": true; }; "numberOfMonthToShow": { "alias": "numberOfMonthToShow"; "required": false; "isSignal": true; }; "view": { "alias": "view"; "required": false; "isSignal": true; }; "selectionMode": { "alias": "selectionMode"; "required": false; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; "showOnFocus": { "alias": "showOnFocus"; "required": false; "isSignal": true; }; "timeOnly": { "alias": "timeOnly"; "required": false; "isSignal": true; }; }, {}, never, ["[header]", "[footer]"], true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "aril-calendar[ngModel], aril-calendar[formControl], aril-calendar[formControlName]", never, { "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; "inputStyle": { "alias": "inputStyle"; "required": false; "isSignal": true; }; "inputStyleClass": { "alias": "inputStyleClass"; "required": false; "isSignal": true; }; "autoZIndex": { "alias": "autoZIndex"; "required": false; "isSignal": true; }; "inline": { "alias": "inline"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "showTime": { "alias": "showTime"; "required": false; "isSignal": true; }; "showWeek": { "alias": "showWeek"; "required": false; "isSignal": true; }; "showSeconds": { "alias": "showSeconds"; "required": false; "isSignal": true; }; "disabledDates": { "alias": "disabledDates"; "required": false; "isSignal": true; }; "numberOfMonthToShow": { "alias": "numberOfMonthToShow"; "required": false; "isSignal": true; }; "view": { "alias": "view"; "required": false; "isSignal": true; }; "selectionMode": { "alias": "selectionMode"; "required": false; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; "showOnFocus": { "alias": "showOnFocus"; "required": false; "isSignal": true; }; "timeOnly": { "alias": "timeOnly"; "required": false; "isSignal": true; }; }, {}, never, ["[header]", "[footer]"], true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
40
42
|
}
|
|
41
43
|
export {};
|
|
@@ -2,9 +2,11 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class PanelComponent {
|
|
3
3
|
toggleable: import("@angular/core").InputSignal<boolean, boolean>;
|
|
4
4
|
canFullScreen: import("@angular/core").InputSignal<boolean, boolean>;
|
|
5
|
+
collapsed: import("@angular/core").InputSignal<boolean, boolean>;
|
|
6
|
+
styleClass: import("@angular/core").InputSignal<string | undefined, string | undefined>;
|
|
5
7
|
showFooter: import("@angular/core").InputSignal<boolean, boolean>;
|
|
6
8
|
isFullScreen: boolean;
|
|
7
9
|
toggleFullScreen(): void;
|
|
8
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<PanelComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PanelComponent, "aril-panel", never, { "toggleable": { "alias": "toggleable"; "required": false; "isSignal": true; }; "canFullScreen": { "alias": "canFullScreen"; "required": false; "isSignal": true; }; "showFooter": { "alias": "showFooter"; "required": false; "isSignal": true; }; }, {}, never, ["[header]", "[tools]", "[body]", "[footer]"], true, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PanelComponent, "aril-panel", never, { "toggleable": { "alias": "toggleable"; "required": false; "isSignal": true; }; "canFullScreen": { "alias": "canFullScreen"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "styleClass": { "alias": "styleClass"; "required": false; "isSignal": true; }; "showFooter": { "alias": "showFooter"; "required": false; "isSignal": true; }; }, {}, never, ["[header]", "[tools]", "[body]", "[footer]"], true, never>;
|
|
10
12
|
}
|