@indice/ng-components 0.2.139 → 0.2.141
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/{src/assets/styles/indice-ng-icons-inline.css → _styles.css} +3501 -2286
- package/esm2020/indice-ng-components.mjs +5 -0
- package/esm2020/lib/controls/avatar-initials/avatar-initials.component.mjs +48 -0
- package/esm2020/lib/controls/collapsible-panel/collapsible-panel.component.mjs +20 -0
- package/esm2020/lib/controls/date-picker/date-picker.component.mjs +260 -0
- package/esm2020/lib/controls/drop-down-menu/drop-down-menu.component.mjs +68 -0
- package/esm2020/lib/controls/kpi-tile/kpi-tile.component.mjs +36 -0
- package/esm2020/lib/controls/list-view/list-column.component.mjs +25 -0
- package/esm2020/lib/controls/list-view/list-details-section.component.mjs +17 -0
- package/esm2020/lib/controls/list-view/list-tile.component.mjs +17 -0
- package/esm2020/lib/controls/list-view/list-view-empty-state.component.mjs +29 -0
- package/esm2020/lib/controls/list-view/list-view.component.mjs +183 -0
- package/esm2020/lib/controls/nav-links-list/nav-links-list.component.mjs +37 -0
- package/esm2020/lib/controls/notifications-indicator/notifications-indicator.component.mjs +77 -0
- package/esm2020/lib/controls/pager/pager.component.mjs +130 -0
- package/esm2020/lib/controls/side-pane/side-pane.component.mjs +72 -0
- package/esm2020/lib/controls/skeleton-loader/skeleton-loader.component.mjs +25 -0
- package/esm2020/lib/controls/toaster/toaster-container.component.mjs +28 -0
- package/esm2020/lib/controls/toaster/toaster.component.mjs +31 -0
- package/esm2020/lib/controls/toggle/toggle.component.mjs +64 -0
- package/esm2020/lib/directives/click-outside.directive.mjs +189 -0
- package/esm2020/lib/directives/dynamic-component-host.directive.mjs +17 -0
- package/esm2020/lib/helpers/base-list.component.mjs +181 -0
- package/esm2020/lib/icons.mjs +32 -0
- package/esm2020/lib/layouts/shell/shell-footer/shell-footer.component.mjs +19 -0
- package/esm2020/lib/layouts/shell/shell-header/shell-header.component.mjs +135 -0
- package/esm2020/lib/layouts/shell/shell-layout/shell-layout.component.mjs +101 -0
- package/esm2020/lib/layouts/views/form-layout/form-layout.component.mjs +80 -0
- package/esm2020/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +49 -0
- package/esm2020/lib/layouts/views/side-view-layout/side-view-layout.component.mjs +98 -0
- package/esm2020/lib/layouts/views/view-layout/view-layout.component.mjs +104 -0
- package/esm2020/lib/ng-components.module.mjs +221 -0
- package/esm2020/lib/pages/auth/auth-callback/auth-callback.component.mjs +30 -0
- package/esm2020/lib/pages/auth/auth-renew/auth-renew.component.mjs +31 -0
- package/esm2020/lib/pages/auth/logged-out/logged-out.component.mjs +28 -0
- package/esm2020/lib/pages/http-status/error/error.component.mjs +17 -0
- package/esm2020/lib/pages/http-status/page-not-found/page-not-found.component.mjs +15 -0
- package/esm2020/lib/pages/http-status/unauthorized/unauthorized.component.mjs +14 -0
- package/esm2020/lib/pipes/address.pipe.mjs +21 -0
- package/esm2020/lib/pipes/duration-format.pipe.mjs +64 -0
- package/esm2020/lib/services/component-loader/component-loader-options.class.mjs +8 -0
- package/esm2020/lib/services/component-loader/component-loader.class.mjs +188 -0
- package/esm2020/lib/services/component-loader/component-loader.factory.mjs +32 -0
- package/esm2020/lib/services/component-loader/content-ref.class.mjs +13 -0
- package/esm2020/lib/services/modal-service/modal-backdrop-component.mjs +44 -0
- package/esm2020/lib/services/modal-service/modal-container-component.mjs +126 -0
- package/esm2020/lib/services/modal-service/modal-options.class.mjs +35 -0
- package/esm2020/lib/services/modal-service/modal-service.mjs +219 -0
- package/esm2020/lib/services/modal-service/modal-styles.class.mjs +11 -0
- package/esm2020/lib/services/modal-service/modal.class.mjs +27 -0
- package/esm2020/lib/services/toaster.service.mjs +24 -0
- package/esm2020/lib/tokens.mjs +5 -0
- package/esm2020/lib/types.mjs +117 -0
- package/esm2020/public-api.mjs +53 -0
- package/fesm2015/indice-ng-components.mjs +3268 -0
- package/fesm2015/indice-ng-components.mjs.map +1 -0
- package/fesm2020/indice-ng-components.mjs +3225 -0
- package/fesm2020/indice-ng-components.mjs.map +1 -0
- package/indice-ng-components.d.ts +5 -0
- package/lib/controls/avatar-initials/avatar-initials.component.d.ts +14 -0
- package/lib/controls/collapsible-panel/collapsible-panel.component.d.ts +10 -0
- package/lib/controls/date-picker/date-picker.component.d.ts +48 -0
- package/lib/controls/drop-down-menu/drop-down-menu.component.d.ts +25 -0
- package/lib/controls/kpi-tile/kpi-tile.component.d.ts +13 -0
- package/lib/controls/list-view/list-column.component.d.ts +9 -0
- package/lib/controls/list-view/list-details-section.component.d.ts +7 -0
- package/lib/controls/list-view/list-tile.component.d.ts +7 -0
- package/lib/controls/list-view/list-view-empty-state.component.d.ts +11 -0
- package/lib/controls/list-view/list-view.component.d.ts +55 -0
- package/lib/controls/nav-links-list/nav-links-list.component.d.ts +15 -0
- package/lib/controls/notifications-indicator/notifications-indicator.component.d.ts +23 -0
- package/lib/controls/pager/pager.component.d.ts +36 -0
- package/lib/controls/side-pane/side-pane.component.d.ts +18 -0
- package/lib/controls/skeleton-loader/skeleton-loader.component.d.ts +11 -0
- package/lib/controls/toaster/toaster-container.component.d.ts +13 -0
- package/lib/controls/toaster/toaster.component.d.ts +15 -0
- package/lib/controls/toggle/toggle.component.d.ts +19 -0
- package/lib/directives/click-outside.directive.d.ts +40 -0
- package/lib/directives/dynamic-component-host.directive.d.ts +9 -0
- package/lib/helpers/base-list.component.d.ts +42 -0
- package/lib/icons.d.ts +30 -0
- package/lib/layouts/shell/shell-footer/shell-footer.component.d.ts +8 -0
- package/lib/layouts/shell/shell-header/shell-header.component.d.ts +41 -0
- package/lib/layouts/shell/shell-layout/shell-layout.component.d.ts +28 -0
- package/lib/layouts/views/form-layout/form-layout.component.d.ts +24 -0
- package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +25 -0
- package/lib/layouts/views/side-view-layout/side-view-layout.component.d.ts +28 -0
- package/lib/layouts/views/view-layout/view-layout.component.d.ts +31 -0
- package/lib/ng-components.module.d.ts +49 -0
- package/lib/pages/auth/auth-callback/auth-callback.component.d.ts +13 -0
- package/lib/pages/auth/auth-renew/auth-renew.component.d.ts +12 -0
- package/lib/pages/auth/logged-out/logged-out.component.d.ts +12 -0
- package/lib/pages/http-status/error/error.component.d.ts +8 -0
- package/lib/pages/http-status/page-not-found/page-not-found.component.d.ts +8 -0
- package/lib/pages/http-status/unauthorized/unauthorized.component.d.ts +8 -0
- package/lib/pipes/address.pipe.d.ts +8 -0
- package/lib/pipes/duration-format.pipe.d.ts +8 -0
- package/lib/services/component-loader/component-loader-options.class.d.ts +30 -0
- package/lib/services/component-loader/component-loader.class.d.ts +92 -0
- package/lib/services/component-loader/component-loader.factory.d.ts +24 -0
- package/lib/services/component-loader/content-ref.class.d.ts +12 -0
- package/lib/services/modal-service/modal-backdrop-component.d.ts +20 -0
- package/lib/services/modal-service/modal-container-component.d.ts +33 -0
- package/lib/services/modal-service/modal-options.class.d.ts +81 -0
- package/lib/services/modal-service/modal-service.d.ts +58 -0
- package/lib/services/modal-service/modal-styles.class.d.ts +10 -0
- package/lib/services/modal-service/modal.class.d.ts +43 -0
- package/lib/services/toaster.service.d.ts +11 -0
- package/lib/tokens.d.ts +5 -0
- package/lib/types.d.ts +153 -0
- package/{src/assets/styles/modal.css → modal.css} +157 -157
- package/package.json +24 -20
- package/{src/public-api.ts → public-api.d.ts} +43 -60
- package/CHANGELOG.md +0 -1
- package/karma.conf.js +0 -44
- package/ng-package.json +0 -10
- package/scripts/css-bundle.ts +0 -33
- package/src/_styles.css +0 -36
- package/src/_tests/utilities.service.spec.ts +0 -16
- package/src/assets/styles/avatar-initials.css +0 -37
- package/src/assets/styles/base.css +0 -46
- package/src/assets/styles/cards.css +0 -71
- package/src/assets/styles/collapsible-panel.css +0 -25
- package/src/assets/styles/components.css +0 -34
- package/src/assets/styles/date-picker.component.css +0 -0
- package/src/assets/styles/drop-down-menu.css +0 -50
- package/src/assets/styles/form-layout.css +0 -49
- package/src/assets/styles/list-view-empty-state.css +0 -0
- package/src/assets/styles/list-view.css +0 -64
- package/src/assets/styles/model-view-layout.css +0 -45
- package/src/assets/styles/nav-links.css +0 -35
- package/src/assets/styles/notifications-indicator.component.css +0 -43
- package/src/assets/styles/pager.css +0 -29
- package/src/assets/styles/shell-layout.css +0 -232
- package/src/assets/styles/side-pane.css +0 -46
- package/src/assets/styles/side-view-layout.css +0 -58
- package/src/assets/styles/toast.css +0 -72
- package/src/assets/styles/toggle.css +0 -26
- package/src/assets/styles/view-layout.css +0 -58
- package/src/lib/controls/avatar-initials/avatar-initials.component.html +0 -3
- package/src/lib/controls/avatar-initials/avatar-initials.component.ts +0 -47
- package/src/lib/controls/collapsible-panel/collapsible-panel.component.html +0 -15
- package/src/lib/controls/collapsible-panel/collapsible-panel.component.ts +0 -16
- package/src/lib/controls/date-picker/date-picker.component.html +0 -133
- package/src/lib/controls/date-picker/date-picker.component.ts +0 -258
- package/src/lib/controls/drop-down-menu/drop-down-menu.component.html +0 -61
- package/src/lib/controls/drop-down-menu/drop-down-menu.component.ts +0 -59
- package/src/lib/controls/kpi-tile/kpi-tile.component.html +0 -18
- package/src/lib/controls/kpi-tile/kpi-tile.component.ts +0 -26
- package/src/lib/controls/list-view/list-column.component.ts +0 -10
- package/src/lib/controls/list-view/list-details-section.component.ts +0 -8
- package/src/lib/controls/list-view/list-tile.component.ts +0 -8
- package/src/lib/controls/list-view/list-view-empty-state.component.html +0 -20
- package/src/lib/controls/list-view/list-view-empty-state.component.ts +0 -19
- package/src/lib/controls/list-view/list-view.component.html +0 -151
- package/src/lib/controls/list-view/list-view.component.ts +0 -146
- package/src/lib/controls/nav-links-list/nav-links-list.component.html +0 -27
- package/src/lib/controls/nav-links-list/nav-links-list.component.ts +0 -25
- package/src/lib/controls/notifications-indicator/notifications-indicator.component.html +0 -78
- package/src/lib/controls/notifications-indicator/notifications-indicator.component.ts +0 -75
- package/src/lib/controls/pager/pager.component.html +0 -33
- package/src/lib/controls/pager/pager.component.ts +0 -106
- package/src/lib/controls/side-pane/side-pane.component.html +0 -10
- package/src/lib/controls/side-pane/side-pane.component.ts +0 -59
- package/src/lib/controls/skeleton-loader/skeleton-loader.component.html +0 -112
- package/src/lib/controls/skeleton-loader/skeleton-loader.component.ts +0 -20
- package/src/lib/controls/toaster/toaster-container.component.html +0 -1
- package/src/lib/controls/toaster/toaster-container.component.ts +0 -27
- package/src/lib/controls/toaster/toaster.component.html +0 -103
- package/src/lib/controls/toaster/toaster.component.ts +0 -26
- package/src/lib/controls/toggle/toggle.component.html +0 -15
- package/src/lib/controls/toggle/toggle.component.ts +0 -58
- package/src/lib/directives/click-outside.directive.ts +0 -196
- package/src/lib/directives/dynamic-component-host.directive.ts +0 -7
- package/src/lib/directives/screen-size.directive.ts +0 -67
- package/src/lib/helpers/base-list.component.ts +0 -204
- package/src/lib/icons.ts +0 -39
- package/src/lib/layouts/shell/shell-footer/shell-footer.component.html +0 -71
- package/src/lib/layouts/shell/shell-footer/shell-footer.component.ts +0 -14
- package/src/lib/layouts/shell/shell-header/shell-header.component.html +0 -199
- package/src/lib/layouts/shell/shell-header/shell-header.component.ts +0 -111
- package/src/lib/layouts/shell/shell-layout/shell-layout.component.html +0 -36
- package/src/lib/layouts/shell/shell-layout/shell-layout.component.ts +0 -91
- package/src/lib/layouts/views/form-layout/form-layout.component.html +0 -67
- package/src/lib/layouts/views/form-layout/form-layout.component.ts +0 -66
- package/src/lib/layouts/views/model-view-layout/model-view-layout.component.html +0 -43
- package/src/lib/layouts/views/model-view-layout/model-view-layout.component.ts +0 -37
- package/src/lib/layouts/views/side-view-layout/side-view-layout.component.html +0 -36
- package/src/lib/layouts/views/side-view-layout/side-view-layout.component.ts +0 -67
- package/src/lib/layouts/views/view-layout/view-layout.component.html +0 -68
- package/src/lib/layouts/views/view-layout/view-layout.component.ts +0 -82
- package/src/lib/ng-components.module.ts +0 -135
- package/src/lib/pages/auth/auth-callback/auth-callback.component.html +0 -1
- package/src/lib/pages/auth/auth-callback/auth-callback.component.ts +0 -22
- package/src/lib/pages/auth/auth-renew/auth-renew.component.ts +0 -20
- package/src/lib/pages/auth/logged-out/logged-out.component.html +0 -1
- package/src/lib/pages/auth/logged-out/logged-out.component.ts +0 -22
- package/src/lib/pages/http-status/error/error.component.html +0 -13
- package/src/lib/pages/http-status/error/error.component.ts +0 -13
- package/src/lib/pages/http-status/page-not-found/page-not-found.component.html +0 -14
- package/src/lib/pages/http-status/page-not-found/page-not-found.component.ts +0 -14
- package/src/lib/pages/http-status/unauthorized/unauthorized.component.html +0 -15
- package/src/lib/pages/http-status/unauthorized/unauthorized.component.ts +0 -11
- package/src/lib/pipes/address.pipe.ts +0 -17
- package/src/lib/pipes/duration-format.pipe.ts +0 -67
- package/src/lib/services/component-loader/component-loader-options.class.ts +0 -31
- package/src/lib/services/component-loader/component-loader.class.ts +0 -226
- package/src/lib/services/component-loader/component-loader.factory.ts +0 -27
- package/src/lib/services/component-loader/content-ref.class.ts +0 -10
- package/src/lib/services/interceptors/bad-request.interceptor.ts +0 -34
- package/src/lib/services/modal-service/modal-backdrop-component.ts +0 -40
- package/src/lib/services/modal-service/modal-container-component.ts +0 -125
- package/src/lib/services/modal-service/modal-options.class.ts +0 -92
- package/src/lib/services/modal-service/modal-service.ts +0 -237
- package/src/lib/services/modal-service/modal-styles.class.ts +0 -11
- package/src/lib/services/modal-service/modal.class.ts +0 -45
- package/src/lib/services/shell-state-service.service.ts +0 -10
- package/src/lib/services/toaster.service.ts +0 -23
- package/src/lib/services/utilities.service.ts +0 -40
- package/src/lib/tokens.ts +0 -6
- package/src/lib/types.ts +0 -210
- package/src/test.ts +0 -28
- package/tsconfig.lib.json +0 -26
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -17
- package/tslint.json +0 -17
- package/webpack.config.js +0 -36
|
@@ -1,232 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
|
|
3
|
-
.app-logo {
|
|
4
|
-
@apply h-8 w-8;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.shell-container {
|
|
8
|
-
@apply antialiased font-sans bg-gray-100;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.shell-header-container {
|
|
12
|
-
@apply bg-gradient-to-r from-gray-900 to-gray-800 pb-24 sm:pb-28 z-50;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.shell-header-container-inner {
|
|
16
|
-
@apply max-w-7xl mx-auto;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.shell-header-container-inner-fluid {
|
|
20
|
-
@apply w-full mx-auto;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.shell-content-container {
|
|
24
|
-
@apply mx-auto -mt-28;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.shell-content-container-no-header {
|
|
28
|
-
/* overide this style in your app */
|
|
29
|
-
@apply mx-auto ;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.shell-content-container-inner {
|
|
33
|
-
@apply max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 min-h-screen;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.shell-content-container-inner-fluid {
|
|
37
|
-
@apply w-full mx-auto min-h-screen ;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
.shell-header-paddings {
|
|
42
|
-
@apply mx-auto px-4 sm:px-6 lg:px-8;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.shell-header-border {
|
|
46
|
-
@apply border-b border-gray-700;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.shell-header-menu-container {
|
|
50
|
-
@apply flex items-center justify-between h-16;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.shell-header-md-visible {
|
|
54
|
-
@apply hidden sm:block;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.shell-header-link-container {
|
|
58
|
-
@apply hidden sm:ml-6 sm:block ml-10 flex-grow justify-start flex items-center space-x-4;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.shell-header-link-container-inner {
|
|
62
|
-
@apply flex justify-start;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.shell-header-logo-container {
|
|
66
|
-
@apply flex flex-grow-0 flex-shrink-0 items-center;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.shell-header-links-far-container {
|
|
70
|
-
@apply flex flex-grow-0 flex-shrink-0 items-center ml-2;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.shell-header-menu-rounded-button {
|
|
74
|
-
@apply bg-gray-800 p-1 text-gray-400 rounded-full hover:text-white focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-offset-gray-800 focus:ring-white;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.shell-header-menu-rounded-button-icon-style {
|
|
78
|
-
@apply h-6 w-6;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.shell-header-profile {
|
|
82
|
-
@apply flex gap-3 items-center;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.shell-header-profile .shell-header-profile-userName {
|
|
86
|
-
@apply text-white text-xs;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.shell-header-profile-dropdown-button {
|
|
90
|
-
@apply max-w-xs outline-none focus:outline-none rounded-full flex items-center text-sm ring-1 ring-blue-300 focus:ring-offset-1
|
|
91
|
-
focus:ring-offset-blue-800 focus:ring-blue-400 transition ease-in duration-100;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.shell-header-profile-dropdown {
|
|
95
|
-
@apply z-50 origin-top-right absolute right-0 mt-2 w-48 rounded-sm shadow-lg py-1 bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.shell-header-profile-dropdown-with-username {
|
|
99
|
-
@apply z-50 origin-top-right absolute right-0 mt-24 w-48 rounded-sm shadow-lg py-1 bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
.mobile-menu-button-container {
|
|
104
|
-
@apply -mr-2 grid grid-cols-1 sm:hidden;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.mobile-menu-button {
|
|
108
|
-
@apply inline-flex items-center justify-center p-2 rounded-sm outline-none text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-offset-gray-800 focus:ring-white;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.mobile-menu-container {
|
|
112
|
-
@apply border-b h-full w-full sm:opacity-75 border-gray-700 md:hidden z-50;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
.mobile-menu-link-container {
|
|
116
|
-
@apply px-2 py-3 grid grid-cols-1 space-y-1;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.mobile-menu-user-info-container {
|
|
120
|
-
@apply pt-4 pb-3 border-t border-gray-700;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.mobile-menu-user-info-container-inner {
|
|
124
|
-
@apply flex items-center px-5;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.mobile-menu-avatar-container {
|
|
128
|
-
@apply inline-flex items-center justify-center h-10 w-10 rounded-full ring-1 ring-blue-300;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
.mobile-menu-avatar-name {
|
|
132
|
-
@apply text-sm font-medium leading-none text-white;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.mobile-menu-user-name {
|
|
136
|
-
@apply text-base font-medium leading-none text-white;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.mobile-menu-user-email {
|
|
140
|
-
@apply text-sm font-medium leading-none text-gray-400;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.mobile-menu-rounded-button {
|
|
144
|
-
@apply ml-auto bg-gray-800 flex-shrink-0 p-1 text-gray-400 rounded-full hover:text-white focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-800 focus:ring-white;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.mobile-menu-rounded-button-icon-style {
|
|
148
|
-
@apply h-6 w-6;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
.shell-footer-container {
|
|
154
|
-
@apply bg-gradient-to-r from-gray-800 to-gray-900 mt-10 pt-6;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.shell-footer-container-inner {
|
|
158
|
-
@apply max-w-7xl mx-auto;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.shell-footer-container-inner-fluid {
|
|
162
|
-
@apply w-full mx-auto;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.shell-footer-component-container {
|
|
166
|
-
@apply text-gray-300;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.shell-footer-paddings {
|
|
170
|
-
@apply mx-auto px-4 sm:px-6 lg:px-8;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.shell-footer-component-container-inner {
|
|
174
|
-
@apply w-full mx-auto;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.shell-footer-logo-h {
|
|
178
|
-
@apply h-12;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
.shell-footer-sections-container {
|
|
182
|
-
@apply grid grid-cols-8 md:grid-cols-9 lg:grid-cols-8 divide-gray-700 divide-y-2 md:divide-x-2 md:divide-y-0 md:-mx-8;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.shell-footer-section {
|
|
186
|
-
@apply col-span-8 md:col-span-3 lg:col-span-2 md:px-8 py-4 md:py-0;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
.shell-footer-section nav {
|
|
190
|
-
@apply mt-4;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
.shell-footer-section ul {
|
|
194
|
-
@apply space-y-2;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
.shell-footer-section-links {
|
|
198
|
-
@apply col-span-8 md:col-span-3 lg:col-span-2 md:px-8 py-4 md:py-0;
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
.shell-footer-section-links ul {
|
|
203
|
-
@apply grid lg:grid-cols-2;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.shell-footer-section-links li {
|
|
207
|
-
@apply mb-2;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
.shell-footer-section-title {
|
|
211
|
-
@apply text-xl font-semibold text-white;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
.shell-footer-social {
|
|
216
|
-
@apply flex space-x-2 font-normal text-base hover:text-gray-100;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
.shell-footer-social-icon {
|
|
220
|
-
@apply h-6 w-6;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.shell-footer-link {
|
|
224
|
-
@apply text-sm text-gray-400 hover:underline transition duration-150 ease-in-out;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.shell-footer-copyright {
|
|
228
|
-
@apply max-w-screen-xl mx-auto flex flex-col md:flex-row justify-between items-center space-y-4 mt-8 lg:mt-12 border-t-2 border-gray-700 py-5;
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
|
|
3
|
-
.side-pane-outer-container {
|
|
4
|
-
@apply fixed inset-0 overflow-hidden z-40;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.side-pane-overlay {
|
|
8
|
-
@apply absolute bg-gray-500 bg-opacity-25 inset-0;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.side-pane-overlay-opacity-0 {
|
|
12
|
-
@apply absolute bg-gray-500 bg-opacity-0 inset-0;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.side-pane-overlay-opacity-50 {
|
|
16
|
-
@apply absolute bg-gray-500 bg-opacity-50 inset-0;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.side-pane-container {
|
|
20
|
-
@apply fixed inset-y-0 right-0 sm:pl-10 max-w-full flex transition-all duration-200 ease-in-out;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.side-pane-container-inner {
|
|
24
|
-
@apply w-screen max-w-md;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.side-pane-box-size {
|
|
28
|
-
@apply w-screen max-w-2xl;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.side-pane-box-size-25 {
|
|
32
|
-
@apply w-screen max-w-xl;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.side-pane-box-size-50 {
|
|
36
|
-
@apply w-screen max-w-3xl;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.side-pane-box-size-75 {
|
|
40
|
-
@apply w-screen max-w-4xl;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.side-pane {
|
|
44
|
-
@apply flex flex-col bg-white shadow-xl overflow-y-hidden;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.side-view-layout-size-box {
|
|
3
|
-
@apply h-screen;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.side-view-layout-container {
|
|
7
|
-
@apply h-full flex flex-col shadow-xl bg-gray-900;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.side-view-layout-container-inner {
|
|
11
|
-
@apply min-h-0 flex-1 flex flex-col pt-6 overflow-y-hidden;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.side-view-layout-header-margins {
|
|
15
|
-
@apply px-4 sm:px-6;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.side-view-layout-header-container {
|
|
19
|
-
@apply flex items-start justify-between;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.side-view-layout-header-title {
|
|
23
|
-
@apply text-lg font-medium text-white;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.side-view-layout-close-button-container {
|
|
27
|
-
@apply ml-3 h-7 flex items-center;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.side-view-layout-close-button {
|
|
31
|
-
@apply rounded-sm text-white hover:text-gray-200 focus:outline-none focus:ring-1 focus:ring-gray-300;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.side-view-layout-close-button-icon {
|
|
35
|
-
@apply h-6 w-6;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.side-view-layout-content-container {
|
|
39
|
-
@apply bg-white mt-6 relative flex-1 px-6 overflow-y-auto;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.side-view-layout-actions-container {
|
|
43
|
-
@apply flex-shrink-0 px-4 py-4 flex bg-gray-100 justify-end;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.side-view-layout-action-button-cancel {
|
|
47
|
-
@apply bg-white py-2 px-4 border border-gray-300 rounded-md shadow-sm text-sm font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-500;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.side-view-layout-action-button-submit {
|
|
51
|
-
@apply ml-4 inline-flex justify-center py-2 px-4 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-gray-600 hover:bg-gray-700 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-500;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.side-view-layout-action-button-submit:disabled {
|
|
55
|
-
@apply ml-4 inline-flex justify-center py-2 px-4 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-gray-300 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-500 cursor-not-allowed;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
}
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.toast {
|
|
3
|
-
@apply fixed inset-0 flex items-end px-4 py-6 pointer-events-none sm:p-6 sm:items-start z-50;
|
|
4
|
-
animation: move 400ms ease-in;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.toast-closed {
|
|
8
|
-
@apply fixed inset-0 flex items-end px-4 py-6 pointer-events-none sm:p-6 sm:items-start;
|
|
9
|
-
animation: close 100ms ease-out;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.toast-container {
|
|
13
|
-
@apply w-full flex flex-col items-center space-y-4 sm:items-end z-50;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.toast-pill {
|
|
17
|
-
@apply max-w-sm w-full bg-white shadow-lg rounded-sm pointer-events-auto ring-1 ring-black ring-opacity-5 overflow-hidden;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.toast-context-padding {
|
|
21
|
-
@apply p-4;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.toast-context {
|
|
25
|
-
@apply flex items-start;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.toast-icon {
|
|
29
|
-
@apply flex-shrink-0;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.toast-close-icon {
|
|
33
|
-
@apply ml-4 flex-shrink-0 flex;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.toast-close-button {
|
|
37
|
-
@apply bg-white rounded-sm inline-flex text-gray-400 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.toast-title {
|
|
41
|
-
@apply mb-1 text-sm font-medium text-gray-900;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.toast-body {
|
|
45
|
-
@apply text-sm text-gray-500 whitespace-normal;
|
|
46
|
-
word-break: break-word;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
@keyframes move {
|
|
50
|
-
from {
|
|
51
|
-
opacity: 0;
|
|
52
|
-
--tw-translate-y: 0.5rem;
|
|
53
|
-
transform: translateY(0.5rem);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
to {
|
|
57
|
-
--tw-translate-y: 0;
|
|
58
|
-
transform: translateY(0);
|
|
59
|
-
opacity: 100;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
@keyframes close {
|
|
64
|
-
from {
|
|
65
|
-
opacity: 100;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
to {
|
|
69
|
-
opacity: 0;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.toggle-button {
|
|
3
|
-
@apply mt-3 relative inline-flex flex-shrink-0 h-6 w-11 border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.toggle-span {
|
|
7
|
-
@apply translate-x-0 pointer-events-none inline-block h-5 w-5 rounded-full bg-white shadow transform ring-0 transition ease-in-out duration-200
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.enabled {
|
|
11
|
-
@apply bg-indigo-600
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.enabled-anim {
|
|
15
|
-
@apply translate-x-5
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.disabled {
|
|
19
|
-
@apply bg-gray-200
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.disabled-anim {
|
|
23
|
-
@apply translate-x-0
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
|
|
3
|
-
.view-container {
|
|
4
|
-
@apply mt-8 sm:mt-5 flex flex-col;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.view-container-fluid {
|
|
8
|
-
@apply sm:px-0 ;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.view-layout-paddings {
|
|
12
|
-
@apply pt-6 pb-4 sm:py-6;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.view-layout-title-container {
|
|
16
|
-
@apply flex text-white flex-row justify-start ;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.view-layout-title-container-inner {
|
|
20
|
-
@apply flex-1 min-w-0;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.title-icon {
|
|
24
|
-
@apply text-2xl md:text-xl text-white font-thin mr-1;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.view-layout-title {
|
|
28
|
-
@apply inline text-xl md:text-3xl text-white;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.view-layout-title-busy {
|
|
32
|
-
@apply animate-pulse inline text-xl md:text-3xl text-gray-200;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.meta-container {
|
|
36
|
-
@apply ml-1 mt-2 flex flex-row sm:flex-row sm:flex-wrap space-x-2 sm:space-x-4;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.meta-item-container {
|
|
40
|
-
@apply flex items-center;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.meta-icon {
|
|
44
|
-
@apply text-sm mr-1;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.meta-text {
|
|
48
|
-
@apply text-xs mr-1;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.search-container {
|
|
52
|
-
@apply relative text-gray-400 focus-within:text-gray-600 ml-2 hover:shadow-sm hover:bg-gray-900;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.search-input {
|
|
56
|
-
@apply block w-60 bg-gray-50 rounded-sm text-sm text-gray-900 placeholder-gray-500 outline-none;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import { Component, Input, OnInit } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
@Component({
|
|
4
|
-
selector: 'lib-avatar-initials',
|
|
5
|
-
templateUrl: './avatar-initials.component.html'
|
|
6
|
-
})
|
|
7
|
-
export class AvatarInitialsComponent implements OnInit {
|
|
8
|
-
@Input()
|
|
9
|
-
public name: string | null | undefined;
|
|
10
|
-
@Input()
|
|
11
|
-
public large = false;
|
|
12
|
-
public initials?: string;
|
|
13
|
-
public circleColor!: string;
|
|
14
|
-
private colors = [
|
|
15
|
-
'#EB7181', // red
|
|
16
|
-
'#468547', // green
|
|
17
|
-
'#FFD558', // yellow
|
|
18
|
-
'#3670B2', // blue
|
|
19
|
-
];
|
|
20
|
-
|
|
21
|
-
constructor() { }
|
|
22
|
-
|
|
23
|
-
ngOnInit(): void {
|
|
24
|
-
this.createInititals();
|
|
25
|
-
const randomIndex = Math.floor(Math.random() * Math.floor(this.colors.length));
|
|
26
|
-
// assign this to a class if you want to randomly change background colors of the circle.
|
|
27
|
-
this.circleColor = this.colors[randomIndex];
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
private createInititals(): void {
|
|
31
|
-
if (this.name) {
|
|
32
|
-
let initials = '';
|
|
33
|
-
for (let i = 0; i < this.name.length; i++) {
|
|
34
|
-
if (this.name.charAt(i) === ' ') {
|
|
35
|
-
continue;
|
|
36
|
-
}
|
|
37
|
-
if (this.name.charAt(i) === this.name.charAt(i).toUpperCase()) {
|
|
38
|
-
initials += this.name.charAt(i);
|
|
39
|
-
if (initials.length === 2) {
|
|
40
|
-
break;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
this.initials = initials;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<div class="collapsible-panel-container">
|
|
2
|
-
<div class="collapsible-panel-container-shadow">
|
|
3
|
-
<div class="collapsible-panel-container-inner">
|
|
4
|
-
<button type="button" class="collapsible-panel-button" (click)="visible = !visible">
|
|
5
|
-
<div class="collapsible-panel-button-content-container">
|
|
6
|
-
<span>{{ title }} </span>
|
|
7
|
-
<span class="ico-plus"></span>
|
|
8
|
-
</div>
|
|
9
|
-
</button>
|
|
10
|
-
<div class="collapsible-panel-content-container" *ngIf="visible">
|
|
11
|
-
<ng-content></ng-content>
|
|
12
|
-
</div>
|
|
13
|
-
</div>
|
|
14
|
-
</div>
|
|
15
|
-
</div>
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Component, Input, OnInit } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
@Component({
|
|
4
|
-
selector: 'lib-collapsible-panel',
|
|
5
|
-
templateUrl: './collapsible-panel.component.html'
|
|
6
|
-
})
|
|
7
|
-
export class CollapsiblePanelComponent implements OnInit {
|
|
8
|
-
@Input() title: string | null = null;
|
|
9
|
-
public visible = false;
|
|
10
|
-
|
|
11
|
-
constructor() { }
|
|
12
|
-
|
|
13
|
-
ngOnInit(): void {
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
}
|