@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.
Files changed (38) hide show
  1. package/README.md +4 -4
  2. package/fesm2022/indice-ng-components.mjs +138 -116
  3. package/fesm2022/indice-ng-components.mjs.map +1 -1
  4. package/index.d.ts +13 -4
  5. package/package.json +1 -1
  6. package/src/assets/styles/advanced-search.css +39 -39
  7. package/src/assets/styles/avatar-initials.css +35 -35
  8. package/src/assets/styles/base.css +36 -36
  9. package/src/assets/styles/cards.css +84 -84
  10. package/src/assets/styles/collapsible-panel.css +23 -23
  11. package/src/assets/styles/combobox.css +27 -27
  12. package/src/assets/styles/components.css +34 -34
  13. package/src/assets/styles/date-picker.component.css +68 -68
  14. package/src/assets/styles/drop-down-menu.css +48 -48
  15. package/src/assets/styles/form-layout.css +51 -51
  16. package/src/assets/styles/indice-ng-icons-inline.css +2286 -2286
  17. package/src/assets/styles/language-selection.component.css +10 -10
  18. package/src/assets/styles/list-view.css +62 -62
  19. package/src/assets/styles/modal.css +182 -182
  20. package/src/assets/styles/model-view-layout.css +47 -47
  21. package/src/assets/styles/nav-links.css +64 -64
  22. package/src/assets/styles/notifications-indicator.component.css +37 -37
  23. package/src/assets/styles/pager.css +31 -31
  24. package/src/assets/styles/progress-bar.component.css +15 -15
  25. package/src/assets/styles/shell-layout.css +250 -250
  26. package/src/assets/styles/shell-sidebar-layout.css +122 -122
  27. package/src/assets/styles/shell-sidebar.css +31 -31
  28. package/src/assets/styles/side-pane.css +48 -48
  29. package/src/assets/styles/side-view-layout.css +56 -56
  30. package/src/assets/styles/stepper.css +169 -169
  31. package/src/assets/styles/tab-group.css +27 -27
  32. package/src/assets/styles/toast.css +70 -70
  33. package/src/assets/styles/toggle-button.component.css +51 -51
  34. package/src/assets/styles/toggle-buttons-list.component.css +44 -44
  35. package/src/assets/styles/toggle.css +23 -23
  36. package/src/assets/styles/view-layout.css +89 -89
  37. package/src/styles.css +49 -49
  38. package/src/tailwindcss.css +1 -1
@@ -1,64 +1,64 @@
1
- .nav-link {
2
- @apply cursor-pointer text-white hover:bg-gray-700 hover:text-white hover:shadow-sm px-3 py-2 rounded-lg text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
3
- }
4
-
5
- .sidebar .nav-link {
6
- @apply cursor-pointer text-gray-300 hover:bg-gray-700 hover:text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
7
- }
8
-
9
- .nav-link-profile {
10
- @apply flex items-center cursor-pointer px-4 py-2 rounded-md text-xs text-gray-700 hover:bg-gray-100 whitespace-nowrap overflow-ellipsis overflow-hidden;
11
- }
12
-
13
- .nav-link-mobile {
14
- @apply cursor-pointer text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
15
- }
16
-
17
- .sidebar .nav-link-list-container {
18
- @apply flex-1 flex flex-col overflow-y-auto;
19
- }
20
-
21
- .sidebar .nav-link-list-container-inner {
22
- @apply flex-1 px-2 py-4 space-y-2;
23
- }
24
-
25
- .sidebar .nav-link-list-container-inner .icons-only {
26
- @apply flex-1 px-2 py-4 space-y-4;
27
- }
28
-
29
- .nav-link-active {
30
- @apply cursor-default text-sky-600 bg-gray-900 hover:bg-gray-900 px-3 py-2 rounded-lg text-xs shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
31
- }
32
-
33
- .sidebar .nav-link-active {
34
- @apply cursor-default bg-gray-900 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
35
- }
36
-
37
- .sidebar .nav-link-active-b {
38
- @apply cursor-default bg-gray-900 border-b border-sky-400 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
39
- }
40
-
41
- .sidebar .nav-link-active-l {
42
- @apply cursor-default bg-gray-900 border-l border-sky-400 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
43
- }
44
-
45
- .nav-link-profile-active {
46
- @apply cursor-default rounded-md block px-4 py-2 text-xs text-sky-900 shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
47
- }
48
-
49
- .nav-link-mobile-active {
50
- @apply cursor-default bg-gray-900 text-sky-300 block px-3 py-2 rounded-lg text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
51
- }
52
-
53
- .view-nav-link {
54
- @apply cursor-pointer rounded-md text-gray-600 hover:border-gray-50 border-transparent border-l-2 hover:bg-gray-50 hover:text-gray-900 py-2 px-4 flex items-center text-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
55
- }
56
-
57
- .view-nav-link-active {
58
- @apply cursor-default bg-gray-100 border-gray-600 hover:border-gray-600 text-gray-900;
59
- }
60
-
61
-
62
- .min-nav-link-text-width {
63
- width: 220px;
64
- }
1
+ .nav-link {
2
+ @apply cursor-pointer text-white hover:bg-gray-700 hover:text-white hover:shadow-sm px-3 py-2 rounded-lg text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
3
+ }
4
+
5
+ .sidebar .nav-link {
6
+ @apply cursor-pointer text-gray-300 hover:bg-gray-700 hover:text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
7
+ }
8
+
9
+ .nav-link-profile {
10
+ @apply flex items-center cursor-pointer px-4 py-2 rounded-md text-xs text-gray-700 hover:bg-gray-100 whitespace-nowrap overflow-ellipsis overflow-hidden;
11
+ }
12
+
13
+ .nav-link-mobile {
14
+ @apply cursor-pointer text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
15
+ }
16
+
17
+ .sidebar .nav-link-list-container {
18
+ @apply flex-1 flex flex-col overflow-y-auto;
19
+ }
20
+
21
+ .sidebar .nav-link-list-container-inner {
22
+ @apply flex-1 px-2 py-4 space-y-2;
23
+ }
24
+
25
+ .sidebar .nav-link-list-container-inner .icons-only {
26
+ @apply flex-1 px-2 py-4 space-y-4;
27
+ }
28
+
29
+ .nav-link-active {
30
+ @apply cursor-default text-sky-600 bg-gray-900 hover:bg-gray-900 px-3 py-2 rounded-lg text-xs shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
31
+ }
32
+
33
+ .sidebar .nav-link-active {
34
+ @apply cursor-default bg-gray-900 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
35
+ }
36
+
37
+ .sidebar .nav-link-active-b {
38
+ @apply cursor-default bg-gray-900 border-b border-sky-400 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
39
+ }
40
+
41
+ .sidebar .nav-link-active-l {
42
+ @apply cursor-default bg-gray-900 border-l border-sky-400 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
43
+ }
44
+
45
+ .nav-link-profile-active {
46
+ @apply cursor-default rounded-md block px-4 py-2 text-xs text-sky-900 shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
47
+ }
48
+
49
+ .nav-link-mobile-active {
50
+ @apply cursor-default bg-gray-900 text-sky-300 block px-3 py-2 rounded-lg text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
51
+ }
52
+
53
+ .view-nav-link {
54
+ @apply cursor-pointer rounded-md text-gray-600 hover:border-gray-50 border-transparent border-l-2 hover:bg-gray-50 hover:text-gray-900 py-2 px-4 flex items-center text-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
55
+ }
56
+
57
+ .view-nav-link-active {
58
+ @apply cursor-default bg-gray-100 border-gray-600 hover:border-gray-600 text-gray-900;
59
+ }
60
+
61
+
62
+ .min-nav-link-text-width {
63
+ width: 220px;
64
+ }
@@ -1,37 +1,37 @@
1
- .notifications-nav-link {
2
- @apply block py-3 pl-3 pr-2 text-xs text-gray-700 hover:bg-gray-50;
3
- }
4
-
5
- .header-notifications {
6
- @apply flex gap-3 items-center;
7
- }
8
-
9
- .header-notifications-dropdown-button {
10
- @apply max-w-xs focus:outline-none rounded-full flex items-center text-sm ring-1 ring-blue-300 focus:ring-offset-1
11
- focus:ring-offset-blue-800 focus:ring-blue-400 transition ease-in duration-100;
12
- }
13
-
14
- .header-notifications-dropdown {
15
- @apply z-50 origin-top-right absolute right-0 pt-3 pl-2 mt-2 w-80 rounded-lg shadow-lg bg-white ring-1 ring-black ring-black/5 focus:outline-none;
16
- }
17
-
18
- .header-notifications-dropdown-with-username {
19
- @apply z-50 origin-top-right absolute right-0 pt-3 pl-1.5 mt-1 w-80 rounded-lg shadow-lg bg-white ring-1 ring-black ring-black/5 focus:outline-none;
20
- }
21
-
22
- .header-notifications-dropdown-view-all-button{
23
- @apply items-center align-text-bottom font-medium w-full px-2.5 py-2.5 text-xs text-gray-600 focus:outline-none;
24
- }
25
-
26
- .notification-messages::-webkit-scrollbar-thumb {
27
- @apply bg-gray-600 hover:bg-gray-700;
28
- }
29
-
30
-
31
- .notification-messages::-webkit-scrollbar {
32
- width: 7px;
33
- height: 7px;
34
- background: transparent;
35
- cursor: pointer;
36
- /* or add it to the track */
37
- }
1
+ .notifications-nav-link {
2
+ @apply block py-3 pl-3 pr-2 text-xs text-gray-700 hover:bg-gray-50;
3
+ }
4
+
5
+ .header-notifications {
6
+ @apply flex gap-3 items-center;
7
+ }
8
+
9
+ .header-notifications-dropdown-button {
10
+ @apply max-w-xs focus:outline-none rounded-full flex items-center text-sm ring-1 ring-blue-300 focus:ring-offset-1
11
+ focus:ring-offset-blue-800 focus:ring-blue-400 transition ease-in duration-100;
12
+ }
13
+
14
+ .header-notifications-dropdown {
15
+ @apply z-50 origin-top-right absolute right-0 pt-3 pl-2 mt-2 w-80 rounded-lg shadow-lg bg-white ring-1 ring-black ring-black/5 focus:outline-none;
16
+ }
17
+
18
+ .header-notifications-dropdown-with-username {
19
+ @apply z-50 origin-top-right absolute right-0 pt-3 pl-1.5 mt-1 w-80 rounded-lg shadow-lg bg-white ring-1 ring-black ring-black/5 focus:outline-none;
20
+ }
21
+
22
+ .header-notifications-dropdown-view-all-button{
23
+ @apply items-center align-text-bottom font-medium w-full px-2.5 py-2.5 text-xs text-gray-600 focus:outline-none;
24
+ }
25
+
26
+ .notification-messages::-webkit-scrollbar-thumb {
27
+ @apply bg-gray-600 hover:bg-gray-700;
28
+ }
29
+
30
+
31
+ .notification-messages::-webkit-scrollbar {
32
+ width: 7px;
33
+ height: 7px;
34
+ background: transparent;
35
+ cursor: pointer;
36
+ /* or add it to the track */
37
+ }
@@ -1,31 +1,31 @@
1
- .pager-container {
2
- @apply flex flex-col sm:flex-row mb-2 justify-start;
3
- }
4
-
5
- .pager-container-near {
6
- @apply sm:flex-1 justify-start items-center mb-1 sm:mb-0;
7
- }
8
-
9
- .pager-container-far {
10
- @apply justify-start flex-nowrap items-center;
11
- }
12
-
13
- .pager-icon-button {
14
- @apply inline-flex relative ml-1 mr-2 items-center px-2 py-2 rounded-l-sm text-sm font-medium text-gray-500 hover:bg-gray-50;
15
- }
16
-
17
- .pager-pages-container {
18
- @apply relative inline-flex rounded-sm;
19
- }
20
-
21
- .pager-button {
22
- @apply relative ml-1 inline-flex items-center px-1 py-2 rounded-l-sm text-sm font-medium text-gray-500 hover:bg-gray-50;
23
- }
24
-
25
- .pager-arrow-button-left {
26
- @apply inline-flex relative ml-1 items-center px-1 py-2 rounded-l-sm text-sm font-medium text-gray-500 disabled:text-gray-300 disabled:hover:bg-none hover:bg-gray-50;
27
- }
28
-
29
- .pager-arrow-button-right {
30
- @apply inline-flex relative mr-1 items-center px-1 py-2 rounded-l-sm text-sm font-medium text-gray-500 disabled:text-gray-300 disabled:hover:bg-none hover:bg-gray-50;
31
- }
1
+ .pager-container {
2
+ @apply flex flex-col sm:flex-row mb-2 justify-start;
3
+ }
4
+
5
+ .pager-container-near {
6
+ @apply sm:flex-1 justify-start items-center mb-1 sm:mb-0;
7
+ }
8
+
9
+ .pager-container-far {
10
+ @apply justify-start flex-nowrap items-center;
11
+ }
12
+
13
+ .pager-icon-button {
14
+ @apply inline-flex relative ml-1 mr-2 items-center px-2 py-2 rounded-l-sm text-sm font-medium text-gray-500 hover:bg-gray-50;
15
+ }
16
+
17
+ .pager-pages-container {
18
+ @apply relative inline-flex rounded-sm;
19
+ }
20
+
21
+ .pager-button {
22
+ @apply relative ml-1 inline-flex items-center px-1 py-2 rounded-l-sm text-sm font-medium text-gray-500 hover:bg-gray-50;
23
+ }
24
+
25
+ .pager-arrow-button-left {
26
+ @apply inline-flex relative ml-1 items-center px-1 py-2 rounded-l-sm text-sm font-medium text-gray-500 disabled:text-gray-300 disabled:hover:bg-none hover:bg-gray-50;
27
+ }
28
+
29
+ .pager-arrow-button-right {
30
+ @apply inline-flex relative mr-1 items-center px-1 py-2 rounded-l-sm text-sm font-medium text-gray-500 disabled:text-gray-300 disabled:hover:bg-none hover:bg-gray-50;
31
+ }
@@ -1,15 +1,15 @@
1
- .progress-bar-container {
2
- @apply flex grid grid-cols-1;
3
- }
4
-
5
- .progress-bar-label {
6
- @apply text-xs mt-2 truncate text-ellipsis;
7
- }
8
-
9
- .progress-bar-backdrop {
10
- @apply flex mt-1 h-4 rounded-md backdrop-blur-sm bg-slate-200/25;
11
- }
12
-
13
- .progress-bar-inner {
14
- @apply h-2 m-1 rounded-md bg-sky-200 transition-[width] ease-in-out duration-300 transform;
15
- }
1
+ .progress-bar-container {
2
+ @apply flex grid grid-cols-1;
3
+ }
4
+
5
+ .progress-bar-label {
6
+ @apply text-xs mt-2 truncate text-ellipsis;
7
+ }
8
+
9
+ .progress-bar-backdrop {
10
+ @apply flex mt-1 h-4 rounded-md backdrop-blur-sm bg-slate-200/25;
11
+ }
12
+
13
+ .progress-bar-inner {
14
+ @apply h-2 m-1 rounded-md bg-sky-200 transition-[width] ease-in-out duration-300 transform;
15
+ }