@indice/ng-components 0.5.0-beta.10 → 0.5.0
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/README.md +4 -4
- package/fesm2022/indice-ng-components.mjs +138 -116
- package/fesm2022/indice-ng-components.mjs.map +1 -1
- package/index.d.ts +13 -4
- package/package.json +1 -1
- package/src/assets/styles/advanced-search.css +39 -39
- package/src/assets/styles/avatar-initials.css +35 -35
- package/src/assets/styles/base.css +36 -36
- package/src/assets/styles/cards.css +84 -84
- package/src/assets/styles/collapsible-panel.css +23 -23
- package/src/assets/styles/combobox.css +27 -27
- package/src/assets/styles/components.css +34 -34
- package/src/assets/styles/date-picker.component.css +68 -68
- package/src/assets/styles/drop-down-menu.css +48 -48
- package/src/assets/styles/form-layout.css +51 -51
- package/src/assets/styles/indice-ng-icons-inline.css +2286 -2286
- package/src/assets/styles/language-selection.component.css +10 -10
- package/src/assets/styles/list-view.css +62 -62
- package/src/assets/styles/modal.css +182 -182
- package/src/assets/styles/model-view-layout.css +47 -47
- package/src/assets/styles/nav-links.css +64 -64
- package/src/assets/styles/notifications-indicator.component.css +37 -37
- package/src/assets/styles/pager.css +31 -31
- package/src/assets/styles/progress-bar.component.css +15 -15
- package/src/assets/styles/shell-layout.css +250 -250
- package/src/assets/styles/shell-sidebar-layout.css +122 -122
- package/src/assets/styles/shell-sidebar.css +31 -31
- package/src/assets/styles/side-pane.css +48 -48
- package/src/assets/styles/side-view-layout.css +56 -56
- package/src/assets/styles/stepper.css +169 -169
- package/src/assets/styles/tab-group.css +27 -27
- package/src/assets/styles/toast.css +70 -70
- package/src/assets/styles/toggle-button.component.css +51 -51
- package/src/assets/styles/toggle-buttons-list.component.css +44 -44
- package/src/assets/styles/toggle.css +23 -23
- package/src/assets/styles/view-layout.css +89 -89
- package/src/styles.css +49 -49
- package/src/tailwindcss.css +1 -1
package/index.d.ts
CHANGED
|
@@ -699,6 +699,8 @@ declare class SidePaneComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
699
699
|
onComplete: EventEmitter<boolean>;
|
|
700
700
|
onOpen: EventEmitter<any>;
|
|
701
701
|
onClose: EventEmitter<any>;
|
|
702
|
+
params: any | undefined;
|
|
703
|
+
template: TemplateRef<any> | undefined;
|
|
702
704
|
constructor(router: Router, document: any);
|
|
703
705
|
ngOnChanges(changes: SimpleChanges): void;
|
|
704
706
|
ngOnDestroy(): void;
|
|
@@ -711,7 +713,7 @@ declare class SidePaneComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
711
713
|
show(): void;
|
|
712
714
|
hide(): void;
|
|
713
715
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidePaneComponent, never>;
|
|
714
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": { "alias": "visible"; "required": false; }; "size": { "alias": "pane-size"; "required": false; }; }, { "onComplete": "onComplete"; "onOpen": "onOpen"; "onClose": "onClose"; }, never, ["*"], false, never>;
|
|
716
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": { "alias": "visible"; "required": false; }; "size": { "alias": "pane-size"; "required": false; }; "params": { "alias": "params"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, { "onComplete": "onComplete"; "onOpen": "onOpen"; "onClose": "onClose"; }, never, ["*"], false, never>;
|
|
715
717
|
}
|
|
716
718
|
|
|
717
719
|
declare class NavLinksListComponent implements OnInit, OnDestroy {
|
|
@@ -1242,20 +1244,23 @@ declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterViewInit,
|
|
|
1242
1244
|
private _componentLoaderFactory;
|
|
1243
1245
|
private _config;
|
|
1244
1246
|
private _dynamicComponentHosts;
|
|
1247
|
+
rightPane: SidePaneComponent | undefined;
|
|
1245
1248
|
busy: boolean;
|
|
1246
1249
|
sidebarFooterTemplate?: TemplateRef<any>;
|
|
1247
1250
|
private _routerSub$;
|
|
1248
|
-
constructor(_router: Router, _componentLoaderFactory: ComponentLoaderFactory, _config: IShellConfig | undefined);
|
|
1249
1251
|
showRightPaneSM: boolean;
|
|
1250
1252
|
activeConfig: IShellConfig;
|
|
1251
1253
|
loaded: boolean;
|
|
1252
1254
|
hideSidebar: boolean;
|
|
1255
|
+
constructor(_router: Router, _componentLoaderFactory: ComponentLoaderFactory, _config: IShellConfig | undefined);
|
|
1253
1256
|
ngAfterViewChecked(): void;
|
|
1254
1257
|
ngOnInit(): void;
|
|
1255
1258
|
ngAfterViewInit(): void;
|
|
1256
1259
|
private initCustomComponents;
|
|
1257
1260
|
ngOnDestroy(): void;
|
|
1258
1261
|
private loadCustomComponent;
|
|
1262
|
+
onSidePaneActivated($event: any): void;
|
|
1263
|
+
onSidePaneDeactivated($event: any): void;
|
|
1259
1264
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShellLayoutComponent, never>;
|
|
1260
1265
|
static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, { "busy": { "alias": "busy"; "required": false; }; "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; }, {}, never, never, false, never>;
|
|
1261
1266
|
}
|
|
@@ -1379,6 +1384,7 @@ declare class ModelViewLayoutComponent implements OnInit, OnDestroy {
|
|
|
1379
1384
|
icon: string | null;
|
|
1380
1385
|
busy: boolean;
|
|
1381
1386
|
actions: ViewAction[] | null;
|
|
1387
|
+
onAction: EventEmitter<ViewAction>;
|
|
1382
1388
|
private optionsLoaded;
|
|
1383
1389
|
private _options;
|
|
1384
1390
|
selectedTab: any;
|
|
@@ -1391,8 +1397,9 @@ declare class ModelViewLayoutComponent implements OnInit, OnDestroy {
|
|
|
1391
1397
|
onSidePaneDeactivated($event: any): void;
|
|
1392
1398
|
closeSidePane(): void;
|
|
1393
1399
|
navigateLink(link: any): void;
|
|
1400
|
+
emitActionClick(action: ViewAction): void;
|
|
1394
1401
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelViewLayoutComponent, never>;
|
|
1395
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ModelViewLayoutComponent, "lib-model-view-layout", never, { "title": { "alias": "title"; "required": false; }; "primary": { "alias": "primary-links"; "required": false; }; "secondary": { "alias": "secondary-links"; "required": false; }; "metaItems": { "alias": "meta-items"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1402
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModelViewLayoutComponent, "lib-model-view-layout", never, { "title": { "alias": "title"; "required": false; }; "primary": { "alias": "primary-links"; "required": false; }; "secondary": { "alias": "secondary-links"; "required": false; }; "metaItems": { "alias": "meta-items"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "onAction": "onAction"; }, never, ["*"], false, never>;
|
|
1396
1403
|
}
|
|
1397
1404
|
|
|
1398
1405
|
declare class SideViewLayoutComponent implements OnInit {
|
|
@@ -1424,6 +1431,7 @@ declare class SideViewLayoutComponent implements OnInit {
|
|
|
1424
1431
|
declare class FormLayoutComponent implements OnInit {
|
|
1425
1432
|
private router$;
|
|
1426
1433
|
private searchInput$?;
|
|
1434
|
+
formPane: SidePaneComponent | undefined;
|
|
1427
1435
|
title: string | null;
|
|
1428
1436
|
image: string | null;
|
|
1429
1437
|
icon: string | null;
|
|
@@ -1435,11 +1443,12 @@ declare class FormLayoutComponent implements OnInit {
|
|
|
1435
1443
|
onComplete: EventEmitter<boolean>;
|
|
1436
1444
|
constructor(router$: Router);
|
|
1437
1445
|
ngOnInit(): void;
|
|
1438
|
-
onSidePaneDeactivated($event: any): void;
|
|
1439
1446
|
emitActionClick(action: ViewAction): void;
|
|
1440
1447
|
searchActionClick(action: ViewAction, text: string): void;
|
|
1441
1448
|
searchActionType(text: string): void;
|
|
1442
1449
|
routerLinkActionClick(action: RouterViewAction | any, relative?: boolean): void;
|
|
1450
|
+
onSidePaneDeactivated($event: any): void;
|
|
1451
|
+
onSidePaneActivated($event: any): void;
|
|
1443
1452
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormLayoutComponent, never>;
|
|
1444
1453
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormLayoutComponent, "lib-form-layout", never, { "title": { "alias": "title"; "required": false; }; "image": { "alias": "image"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "searchPlaceholder": { "alias": "search-placeholder"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "subTitle": { "alias": "sub-title"; "required": false; }; }, { "onAction": "onAction"; "onSearch": "onSearch"; "onComplete": "onComplete"; }, never, ["*"], false, never>;
|
|
1445
1454
|
}
|
package/package.json
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
.advanced-search-filter {
|
|
2
|
-
@apply flex gap-6 mb-2 pr-2;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.advanced-search-filter-value-container {
|
|
6
|
-
@apply flex gap-6 mb-6;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.advanced-search-filter-value-label {
|
|
10
|
-
@apply block;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.advanced-search-filter-operator-label {
|
|
14
|
-
@apply block;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.advanced-search-filter-value-input {
|
|
18
|
-
@apply w-full rounded-md border border-gray-300 bg-white py-2 pl-3 pr-12 shadow-sm focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500 sm:text-sm;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.advanced-search-filter-value-input-daterange-from {
|
|
22
|
-
@apply mt-6 p-2;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.advanced-search-filter-value-input-daterange-to {
|
|
26
|
-
@apply mt-6 p-2;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.advanced-search-chips {
|
|
30
|
-
@apply inline-flex rounded-full items-center mx-2 mb-4 py-1 pl-3 pr-1 text-sm font-medium bg-gray-300 text-gray-700;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.advanced-search-chips-remove-filter {
|
|
34
|
-
@apply flex-shrink-0 ml-0.5 h-4 w-4 rounded-full inline-flex items-center justify-center text-gray-400 hover:bg-gray-200 hover:text-gray-500 focus:outline-none focus:bg-gray-500 focus:text-white;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.advanced-search-chips.disabled .advanced-search-chips-remove-filter:active {
|
|
38
|
-
@apply transform-none;
|
|
39
|
-
}
|
|
1
|
+
.advanced-search-filter {
|
|
2
|
+
@apply flex gap-6 mb-2 pr-2;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.advanced-search-filter-value-container {
|
|
6
|
+
@apply flex gap-6 mb-6;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.advanced-search-filter-value-label {
|
|
10
|
+
@apply block;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.advanced-search-filter-operator-label {
|
|
14
|
+
@apply block;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.advanced-search-filter-value-input {
|
|
18
|
+
@apply w-full rounded-md border border-gray-300 bg-white py-2 pl-3 pr-12 shadow-sm focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500 sm:text-sm;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.advanced-search-filter-value-input-daterange-from {
|
|
22
|
+
@apply mt-6 p-2;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.advanced-search-filter-value-input-daterange-to {
|
|
26
|
+
@apply mt-6 p-2;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.advanced-search-chips {
|
|
30
|
+
@apply inline-flex rounded-full items-center mx-2 mb-4 py-1 pl-3 pr-1 text-sm font-medium bg-gray-300 text-gray-700;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.advanced-search-chips-remove-filter {
|
|
34
|
+
@apply flex-shrink-0 ml-0.5 h-4 w-4 rounded-full inline-flex items-center justify-center text-gray-400 hover:bg-gray-200 hover:text-gray-500 focus:outline-none focus:bg-gray-500 focus:text-white;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.advanced-search-chips.disabled .advanced-search-chips-remove-filter:active {
|
|
38
|
+
@apply transform-none;
|
|
39
|
+
}
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
.avatar-container {
|
|
2
|
-
@apply inline-flex items-center justify-center h-8 w-8 rounded-full overflow-hidden;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.avatar-container-large {
|
|
6
|
-
@apply inline-flex items-center justify-center h-12 w-12 rounded-full;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.avatar-text {
|
|
10
|
-
@apply text-sm font-medium leading-none text-blue-300;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.avatar-text-large {
|
|
14
|
-
@apply text-xl font-medium leading-none text-white;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
.circle {
|
|
19
|
-
display: flex;
|
|
20
|
-
justify-content: center;
|
|
21
|
-
align-items: center;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.circle img {
|
|
25
|
-
border-radius: 50%;
|
|
26
|
-
width: 60px;
|
|
27
|
-
height: 60px;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.circle .initials {
|
|
31
|
-
color: #FFFFFF;
|
|
32
|
-
font-size: 20px;
|
|
33
|
-
line-height: 19px;
|
|
34
|
-
letter-spacing: 0.2625px;
|
|
35
|
-
}
|
|
1
|
+
.avatar-container {
|
|
2
|
+
@apply inline-flex items-center justify-center h-8 w-8 rounded-full overflow-hidden;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.avatar-container-large {
|
|
6
|
+
@apply inline-flex items-center justify-center h-12 w-12 rounded-full;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.avatar-text {
|
|
10
|
+
@apply text-sm font-medium leading-none text-blue-300;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.avatar-text-large {
|
|
14
|
+
@apply text-xl font-medium leading-none text-white;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
.circle {
|
|
19
|
+
display: flex;
|
|
20
|
+
justify-content: center;
|
|
21
|
+
align-items: center;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.circle img {
|
|
25
|
+
border-radius: 50%;
|
|
26
|
+
width: 60px;
|
|
27
|
+
height: 60px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.circle .initials {
|
|
31
|
+
color: #FFFFFF;
|
|
32
|
+
font-size: 20px;
|
|
33
|
+
line-height: 19px;
|
|
34
|
+
letter-spacing: 0.2625px;
|
|
35
|
+
}
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
@reference tailwindcss;
|
|
2
|
-
|
|
3
|
-
@layer base {
|
|
4
|
-
html {
|
|
5
|
-
scroll-behavior: smooth !important;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
input {
|
|
9
|
-
outline: none;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
input[type=number] {
|
|
13
|
-
outline: none;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
textarea {
|
|
17
|
-
outline: none;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
h1 {
|
|
21
|
-
@apply text-2xl;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
h2 {
|
|
25
|
-
@apply text-xl;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
h3 {
|
|
29
|
-
@apply text-lg;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
a {
|
|
33
|
-
@apply text-gray-600;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
}
|
|
1
|
+
@reference tailwindcss;
|
|
2
|
+
|
|
3
|
+
@layer base {
|
|
4
|
+
html {
|
|
5
|
+
scroll-behavior: smooth !important;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
input {
|
|
9
|
+
outline: none;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
input[type=number] {
|
|
13
|
+
outline: none;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
textarea {
|
|
17
|
+
outline: none;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
h1 {
|
|
21
|
+
@apply text-2xl;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
h2 {
|
|
25
|
+
@apply text-xl;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
h3 {
|
|
29
|
+
@apply text-lg;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
a {
|
|
33
|
+
@apply text-gray-600;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
}
|
|
@@ -1,84 +1,84 @@
|
|
|
1
|
-
.card-deck-busy{
|
|
2
|
-
@apply animate-pulse;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.cards-deck-1 {
|
|
6
|
-
@apply grid grid-cols-1 gap-0 sm:grid-cols-1 lg:grid-cols-1;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.cards-deck-2 {
|
|
10
|
-
@apply grid grid-cols-1 gap-5 sm:grid-cols-1 lg:grid-cols-2;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.cards-deck-3 {
|
|
14
|
-
@apply grid grid-cols-1 gap-5 sm:grid-cols-2 lg:grid-cols-3;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.cards-deck-4 {
|
|
18
|
-
@apply grid grid-cols-1 gap-5 sm:grid-cols-2 lg:grid-cols-4;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.card {
|
|
22
|
-
@apply relative h-full border border-gray-200 bg-gray-50 shadow-sm rounded-lg sm:rounded-3xl overflow-hidden;;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.card-body {
|
|
26
|
-
@apply pt-2 px-4 pb-12 sm:pt-6 sm:px-6;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.card-img-top {
|
|
30
|
-
@apply object-cover w-full h-48;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.card-header {
|
|
34
|
-
@apply inset-x-0 px-4 py-6 sm:py-4 sm:px-6 border-b bg-white border-gray-200;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.card-footer {
|
|
38
|
-
@apply absolute bottom-0 inset-x-0 bg-white px-4 py-4 sm:px-6 border-t border-gray-200;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.kpi-tile-title-container {
|
|
42
|
-
@apply uppercase mb-2 overflow-ellipsis overflow-hidden;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.kpi-tile-action {
|
|
46
|
-
@apply hover:text-gray-500;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.kpi-tile-value {
|
|
50
|
-
@apply text-6xl font-thin my-6;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.gallery-deck-1 {
|
|
54
|
-
@apply grid grid-cols-1 p-4 gap-x-6 sm:grid-cols-2;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.gallery-deck-2 {
|
|
58
|
-
@apply grid grid-cols-1 gap-x-4 gap-y-8 sm:grid-cols-2 sm:gap-x-6 p-4;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.gallery-deck-3 {
|
|
62
|
-
@apply grid grid-cols-1 gap-x-4 gap-y-8 sm:grid-cols-3 sm:gap-x-6 p-4;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.gallery-deck-4 {
|
|
66
|
-
@apply grid grid-cols-1 gap-x-4 gap-y-8 sm:grid-cols-3 sm:gap-x-6 lg:grid-cols-4 xl:gap-x-8 p-4;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.tile-card-footer {
|
|
70
|
-
@apply absolute bottom-0 inset-x-0 bg-gradient-to-b from-transparent to-gray-50 px-2 pb-4 sm:px-4;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.tile-card-item-btn {
|
|
74
|
-
@apply inline-flex mx-1 items-center rounded-full border border-transparent p-1 text-white shadow-sm focus:outline-none;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.tile-card-item-btn-selected {
|
|
78
|
-
@apply bg-slate-700 ring-slate-700 ring-1 ring-offset-1;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.tile-card-item-btn-available {
|
|
82
|
-
@apply bg-slate-500 hover:bg-slate-700 ring-0;
|
|
83
|
-
}
|
|
84
|
-
|
|
1
|
+
.card-deck-busy{
|
|
2
|
+
@apply animate-pulse;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.cards-deck-1 {
|
|
6
|
+
@apply grid grid-cols-1 gap-0 sm:grid-cols-1 lg:grid-cols-1;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.cards-deck-2 {
|
|
10
|
+
@apply grid grid-cols-1 gap-5 sm:grid-cols-1 lg:grid-cols-2;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.cards-deck-3 {
|
|
14
|
+
@apply grid grid-cols-1 gap-5 sm:grid-cols-2 lg:grid-cols-3;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.cards-deck-4 {
|
|
18
|
+
@apply grid grid-cols-1 gap-5 sm:grid-cols-2 lg:grid-cols-4;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.card {
|
|
22
|
+
@apply relative h-full border border-gray-200 bg-gray-50 shadow-sm rounded-lg sm:rounded-3xl overflow-hidden;;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.card-body {
|
|
26
|
+
@apply pt-2 px-4 pb-12 sm:pt-6 sm:px-6;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.card-img-top {
|
|
30
|
+
@apply object-cover w-full h-48;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.card-header {
|
|
34
|
+
@apply inset-x-0 px-4 py-6 sm:py-4 sm:px-6 border-b bg-white border-gray-200;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.card-footer {
|
|
38
|
+
@apply absolute bottom-0 inset-x-0 bg-white px-4 py-4 sm:px-6 border-t border-gray-200;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.kpi-tile-title-container {
|
|
42
|
+
@apply uppercase mb-2 overflow-ellipsis overflow-hidden;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.kpi-tile-action {
|
|
46
|
+
@apply hover:text-gray-500;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.kpi-tile-value {
|
|
50
|
+
@apply text-6xl font-thin my-6;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.gallery-deck-1 {
|
|
54
|
+
@apply grid grid-cols-1 p-4 gap-x-6 sm:grid-cols-2;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.gallery-deck-2 {
|
|
58
|
+
@apply grid grid-cols-1 gap-x-4 gap-y-8 sm:grid-cols-2 sm:gap-x-6 p-4;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.gallery-deck-3 {
|
|
62
|
+
@apply grid grid-cols-1 gap-x-4 gap-y-8 sm:grid-cols-3 sm:gap-x-6 p-4;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.gallery-deck-4 {
|
|
66
|
+
@apply grid grid-cols-1 gap-x-4 gap-y-8 sm:grid-cols-3 sm:gap-x-6 lg:grid-cols-4 xl:gap-x-8 p-4;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.tile-card-footer {
|
|
70
|
+
@apply absolute bottom-0 inset-x-0 bg-gradient-to-b from-transparent to-gray-50 px-2 pb-4 sm:px-4;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.tile-card-item-btn {
|
|
74
|
+
@apply inline-flex mx-1 items-center rounded-full border border-transparent p-1 text-white shadow-sm focus:outline-none;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.tile-card-item-btn-selected {
|
|
78
|
+
@apply bg-slate-700 ring-slate-700 ring-1 ring-offset-1;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.tile-card-item-btn-available {
|
|
82
|
+
@apply bg-slate-500 hover:bg-slate-700 ring-0;
|
|
83
|
+
}
|
|
84
|
+
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
.collapsible-panel-container {
|
|
2
|
-
@apply bg-white border border-gray-200 mb-2;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.collapsible-panel-container-shadow {
|
|
6
|
-
@apply shadow-sm;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.collapsible-panel-container-inner {
|
|
10
|
-
@apply relative border-b border-gray-200;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.collapsible-panel-button {
|
|
14
|
-
@apply w-full px-8 py-6 text-left;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.collapsible-panel-button-content-container {
|
|
18
|
-
@apply flex items-center justify-between;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.collapsible-panel-content-container {
|
|
22
|
-
@apply relative overflow-hidden transition-all duration-700;
|
|
23
|
-
}
|
|
1
|
+
.collapsible-panel-container {
|
|
2
|
+
@apply bg-white border border-gray-200 mb-2;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.collapsible-panel-container-shadow {
|
|
6
|
+
@apply shadow-sm;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.collapsible-panel-container-inner {
|
|
10
|
+
@apply relative border-b border-gray-200;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.collapsible-panel-button {
|
|
14
|
+
@apply w-full px-8 py-6 text-left;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.collapsible-panel-button-content-container {
|
|
18
|
+
@apply flex items-center justify-between;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.collapsible-panel-content-container {
|
|
22
|
+
@apply relative overflow-hidden transition-all duration-700;
|
|
23
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
.combobox-wrapper {
|
|
2
|
-
@apply relative mt-1;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.combobox-input {
|
|
6
|
-
@apply w-full rounded-md border border-gray-300 bg-white py-2 pl-3 pr-12 shadow-sm focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500 sm:text-sm;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.combobox-icons {
|
|
10
|
-
@apply absolute inset-y-0 right-0 flex items-center rounded-r-md px-2 focus:outline-none;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.combobox-results {
|
|
14
|
-
@apply absolute z-10 mt-1 max-h-60 w-full overflow-auto rounded-md bg-white py-1 text-base shadow-lg ring-1 ring-black ring-black/5 focus:outline-none sm:text-sm;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.combobox-default-item-template {
|
|
18
|
-
@apply hover:bg-gray-100 relative cursor-pointer select-none py-2 pl-3 pr-3 block truncate;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.combobox-selected-item-wrapper {
|
|
22
|
-
@apply relative rounded-lg border border-gray-300 bg-white px-6 py-5 shadow-sm flex items-center space-x-3 hover:border-gray-400;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.combobox-selected-item-remove-btn {
|
|
26
|
-
@apply cursor-pointer bg-white rounded-md inline-flex text-gray-400 hover:text-gray-500;
|
|
27
|
-
}
|
|
1
|
+
.combobox-wrapper {
|
|
2
|
+
@apply relative mt-1;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.combobox-input {
|
|
6
|
+
@apply w-full rounded-md border border-gray-300 bg-white py-2 pl-3 pr-12 shadow-sm focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500 sm:text-sm;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.combobox-icons {
|
|
10
|
+
@apply absolute inset-y-0 right-0 flex items-center rounded-r-md px-2 focus:outline-none;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.combobox-results {
|
|
14
|
+
@apply absolute z-10 mt-1 max-h-60 w-full overflow-auto rounded-md bg-white py-1 text-base shadow-lg ring-1 ring-black ring-black/5 focus:outline-none sm:text-sm;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.combobox-default-item-template {
|
|
18
|
+
@apply hover:bg-gray-100 relative cursor-pointer select-none py-2 pl-3 pr-3 block truncate;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.combobox-selected-item-wrapper {
|
|
22
|
+
@apply relative rounded-lg border border-gray-300 bg-white px-6 py-5 shadow-sm flex items-center space-x-3 hover:border-gray-400;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.combobox-selected-item-remove-btn {
|
|
26
|
+
@apply cursor-pointer bg-white rounded-md inline-flex text-gray-400 hover:text-gray-500;
|
|
27
|
+
}
|
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
.md-visible {
|
|
2
|
-
@apply hidden md:block;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.btn-outline {
|
|
6
|
-
@apply focus:outline-none bg-transparent text-gray-700 text-sm hover:text-gray-800 px-2.5 py-1.5 border border-gray-500 hover:border-gray-600 rounded-sm;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.btn-outline:disabled {
|
|
10
|
-
@apply focus:outline-none bg-transparent text-gray-400 text-sm px-2.5 py-1.5 border border-gray-300 rounded-sm cursor-not-allowed;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
.btn-view-header {
|
|
15
|
-
@apply text-base focus:outline-none inline-flex items-center justify-center h-8 text-white transition-colors duration-150 rounded-md hover:shadow-sm hover:bg-gray-800;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
.sidebar .btn-view-header {
|
|
20
|
-
@apply text-base focus:outline-none inline-flex items-center justify-center h-8 text-gray-900 transition-colors duration-150 rounded-md hover:shadow-sm hover:bg-gray-800 hover:text-white;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.btn-form-view-header {
|
|
24
|
-
@apply text-base focus:outline-none inline-flex items-center justify-center w-10 h-10 text-gray-700 transition-colors duration-150 rounded-sm hover:shadow-sm hover:bg-gray-50;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.btn-form-view-header-search {
|
|
28
|
-
@apply rounded-l-none text-base focus:outline-none inline-flex items-center justify-center w-10 h-10 text-gray-700 transition-colors duration-150 rounded-sm hover:shadow-sm hover:bg-gray-50;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.selected-view-indicator {
|
|
32
|
-
@apply absolute top-0 right-0 block ml-2 h-1.5 w-1.5 rounded-full ring-1 ring-white bg-blue-300;
|
|
33
|
-
}
|
|
34
|
-
|
|
1
|
+
.md-visible {
|
|
2
|
+
@apply hidden md:block;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.btn-outline {
|
|
6
|
+
@apply focus:outline-none bg-transparent text-gray-700 text-sm hover:text-gray-800 px-2.5 py-1.5 border border-gray-500 hover:border-gray-600 rounded-sm;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.btn-outline:disabled {
|
|
10
|
+
@apply focus:outline-none bg-transparent text-gray-400 text-sm px-2.5 py-1.5 border border-gray-300 rounded-sm cursor-not-allowed;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
.btn-view-header {
|
|
15
|
+
@apply text-base focus:outline-none inline-flex items-center justify-center h-8 text-white transition-colors duration-150 rounded-md hover:shadow-sm hover:bg-gray-800;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
.sidebar .btn-view-header {
|
|
20
|
+
@apply text-base focus:outline-none inline-flex items-center justify-center h-8 text-gray-900 transition-colors duration-150 rounded-md hover:shadow-sm hover:bg-gray-800 hover:text-white;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.btn-form-view-header {
|
|
24
|
+
@apply text-base focus:outline-none inline-flex items-center justify-center w-10 h-10 text-gray-700 transition-colors duration-150 rounded-sm hover:shadow-sm hover:bg-gray-50;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.btn-form-view-header-search {
|
|
28
|
+
@apply rounded-l-none text-base focus:outline-none inline-flex items-center justify-center w-10 h-10 text-gray-700 transition-colors duration-150 rounded-sm hover:shadow-sm hover:bg-gray-50;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.selected-view-indicator {
|
|
32
|
+
@apply absolute top-0 right-0 block ml-2 h-1.5 w-1.5 rounded-full ring-1 ring-white bg-blue-300;
|
|
33
|
+
}
|
|
34
|
+
|