@indice/ng-components 0.4.0-beta.9 → 0.4.1

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 (30) hide show
  1. package/package.json +2 -2
  2. package/src/assets/styles/advanced-search.css +30 -48
  3. package/src/assets/styles/avatar-initials.css +22 -24
  4. package/src/assets/styles/cards.css +63 -64
  5. package/src/assets/styles/collapsible-panel.css +18 -19
  6. package/src/assets/styles/combobox.css +21 -22
  7. package/src/assets/styles/components.css +24 -26
  8. package/src/assets/styles/drop-down-menu.css +48 -49
  9. package/src/assets/styles/form-layout.css +39 -40
  10. package/src/assets/styles/list-view.css +47 -48
  11. package/src/assets/styles/modal.css +35 -8
  12. package/src/assets/styles/model-view-layout.css +36 -37
  13. package/src/assets/styles/nav-links.css +48 -50
  14. package/src/assets/styles/notifications-indicator.component.css +23 -25
  15. package/src/assets/styles/pager.css +24 -25
  16. package/src/assets/styles/shell-layout.css +185 -187
  17. package/src/assets/styles/shell-sidebar-layout.css +86 -89
  18. package/src/assets/styles/shell-sidebar.css +24 -25
  19. package/src/assets/styles/side-pane.css +36 -38
  20. package/src/assets/styles/side-view-layout.css +42 -43
  21. package/src/assets/styles/stepper.css +166 -167
  22. package/src/assets/styles/tab-group.css +21 -22
  23. package/src/assets/styles/toast.css +54 -54
  24. package/src/assets/styles/toggle-button.component.css +39 -40
  25. package/src/assets/styles/toggle-buttons-list.component.css +44 -45
  26. package/src/assets/styles/toggle.css +18 -19
  27. package/src/assets/styles/view-layout.css +66 -66
  28. package/src/styles.css +0 -2
  29. package/src/assets/styles/list-view-empty-state.css +0 -0
  30. package/src/assets/styles/shell-sidebar-header.css +0 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indice/ng-components",
3
- "version": "0.4.0-beta.9",
3
+ "version": "0.4.1",
4
4
  "description": "Indice common components for Angular v20",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,7 +25,7 @@
25
25
  "@angular/common": ">=20.0.0",
26
26
  "@angular/core": ">=20.0.0",
27
27
  "@angular/router": ">=20.0.0",
28
- "@indice/ng-auth": ">=0.3.5 || 0.4.0-beta.9",
28
+ "@indice/ng-auth": ">=0.4.1",
29
29
  "oidc-client-ts": "^3.0.1",
30
30
  "rxjs": ">=7.8.1",
31
31
  "tailwindcss": "^4.1.16",
@@ -1,57 +1,39 @@
1
+ .advanced-search-filter {
2
+ @apply flex gap-6 mb-2 pr-2;
3
+ }
1
4
 
5
+ .advanced-search-filter-value-container {
6
+ @apply flex gap-6 mb-6;
7
+ }
2
8
 
3
- .advanced-search-container {
9
+ .advanced-search-filter-value-label {
10
+ @apply block;
11
+ }
4
12
 
5
- }
13
+ .advanced-search-filter-operator-label {
14
+ @apply block;
15
+ }
6
16
 
7
- .advanced-search-filter {
8
- @apply flex gap-6 mb-2 pr-2;
9
- }
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
+ }
10
20
 
11
- .advanced-search-filter-field-container {
21
+ .advanced-search-filter-value-input-daterange-from {
22
+ @apply mt-6 p-2;
23
+ }
12
24
 
13
- }
25
+ .advanced-search-filter-value-input-daterange-to {
26
+ @apply mt-6 p-2;
27
+ }
14
28
 
15
- .advanced-search-filter-value-container {
16
- @apply flex gap-6 mb-6;
17
- }
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
+ }
18
32
 
19
- .advanced-search-filter-field-label {
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
+ }
20
36
 
21
- }
22
-
23
- .advanced-search-filter-value-label {
24
- @apply block;
25
- }
26
-
27
- .advanced-search-filter-operator-container {
28
-
29
- }
30
-
31
- .advanced-search-filter-operator-label {
32
- @apply block;
33
- }
34
-
35
- .advanced-search-filter-value-input {
36
- @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;
37
- }
38
-
39
- .advanced-search-filter-value-input-daterange-from {
40
- @apply mt-6 p-2;
41
- }
42
-
43
- .advanced-search-filter-value-input-daterange-to {
44
- @apply mt-6 p-2;
45
- }
46
-
47
- .advanced-search-chips {
48
- @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;
49
- }
50
-
51
- .advanced-search-chips-remove-filter {
52
- @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;
53
- }
54
-
55
- .advanced-search-chips.disabled .advanced-search-chips-remove-filter:active {
56
- @apply transform-none;
57
- }
37
+ .advanced-search-chips.disabled .advanced-search-chips-remove-filter:active {
38
+ @apply transform-none;
39
+ }
@@ -1,37 +1,35 @@
1
+ .avatar-container {
2
+ @apply inline-flex items-center justify-center h-8 w-8 rounded-full overflow-hidden;
3
+ }
1
4
 
5
+ .avatar-container-large {
6
+ @apply inline-flex items-center justify-center h-12 w-12 rounded-full;
7
+ }
2
8
 
3
- .avatar-container {
4
- @apply inline-flex items-center justify-center h-8 w-8 rounded-full overflow-hidden;
5
- }
6
-
7
- .avatar-container-large {
8
- @apply inline-flex items-center justify-center h-12 w-12 rounded-full;
9
- }
10
-
11
- .avatar-text {
12
- @apply text-sm font-medium leading-none text-blue-300;
13
- }
9
+ .avatar-text {
10
+ @apply text-sm font-medium leading-none text-blue-300;
11
+ }
14
12
 
15
- .avatar-text-large {
16
- @apply text-xl font-medium leading-none text-white;
17
- }
13
+ .avatar-text-large {
14
+ @apply text-xl font-medium leading-none text-white;
15
+ }
18
16
 
19
17
 
20
18
  .circle {
21
- display: flex;
22
- justify-content: center;
23
- align-items: center;
19
+ display: flex;
20
+ justify-content: center;
21
+ align-items: center;
24
22
  }
25
23
 
26
24
  .circle img {
27
- border-radius: 50%;
28
- width: 60px;
29
- height: 60px;
25
+ border-radius: 50%;
26
+ width: 60px;
27
+ height: 60px;
30
28
  }
31
29
 
32
30
  .circle .initials {
33
- color: #FFFFFF;
34
- font-size: 20px;
35
- line-height: 19px;
36
- letter-spacing: 0.2625px;
31
+ color: #FFFFFF;
32
+ font-size: 20px;
33
+ line-height: 19px;
34
+ letter-spacing: 0.2625px;
37
35
  }
@@ -1,85 +1,84 @@
1
-
2
- .card-deck-busy{
3
- @apply animate-pulse;
4
- }
1
+ .card-deck-busy{
2
+ @apply animate-pulse;
3
+ }
5
4
 
6
- .cards-deck-1 {
7
- @apply grid grid-cols-1 gap-0 sm:grid-cols-1 lg:grid-cols-1;
8
- }
5
+ .cards-deck-1 {
6
+ @apply grid grid-cols-1 gap-0 sm:grid-cols-1 lg:grid-cols-1;
7
+ }
9
8
 
10
- .cards-deck-2 {
11
- @apply grid grid-cols-1 gap-5 sm:grid-cols-1 lg:grid-cols-2;
12
- }
9
+ .cards-deck-2 {
10
+ @apply grid grid-cols-1 gap-5 sm:grid-cols-1 lg:grid-cols-2;
11
+ }
13
12
 
14
- .cards-deck-3 {
15
- @apply grid grid-cols-1 gap-5 sm:grid-cols-2 lg:grid-cols-3;
16
- }
13
+ .cards-deck-3 {
14
+ @apply grid grid-cols-1 gap-5 sm:grid-cols-2 lg:grid-cols-3;
15
+ }
17
16
 
18
- .cards-deck-4 {
19
- @apply grid grid-cols-1 gap-5 sm:grid-cols-2 lg:grid-cols-4;
20
- }
17
+ .cards-deck-4 {
18
+ @apply grid grid-cols-1 gap-5 sm:grid-cols-2 lg:grid-cols-4;
19
+ }
21
20
 
22
- .card {
23
- @apply relative h-full border border-gray-200 bg-gray-50 shadow-sm rounded-lg sm:rounded-3xl overflow-hidden;;
24
- }
21
+ .card {
22
+ @apply relative h-full border border-gray-200 bg-gray-50 shadow-sm rounded-lg sm:rounded-3xl overflow-hidden;;
23
+ }
25
24
 
26
- .card-body {
27
- @apply pt-2 px-4 pb-12 sm:pt-6 sm:px-6;
28
- }
25
+ .card-body {
26
+ @apply pt-2 px-4 pb-12 sm:pt-6 sm:px-6;
27
+ }
29
28
 
30
- .card-img-top {
31
- @apply object-cover w-full h-48;
32
- }
29
+ .card-img-top {
30
+ @apply object-cover w-full h-48;
31
+ }
33
32
 
34
- .card-header {
35
- @apply inset-x-0 px-4 py-6 sm:py-4 sm:px-6 border-b bg-white border-gray-200;
36
- }
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
+ }
37
36
 
38
- .card-footer {
39
- @apply absolute bottom-0 inset-x-0 bg-white px-4 py-4 sm:px-6 border-t border-gray-200;
40
- }
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
+ }
41
40
 
42
- .kpi-tile-title-container {
43
- @apply uppercase mb-2 overflow-ellipsis overflow-hidden;
44
- }
41
+ .kpi-tile-title-container {
42
+ @apply uppercase mb-2 overflow-ellipsis overflow-hidden;
43
+ }
45
44
 
46
- .kpi-tile-action {
47
- @apply hover:text-gray-500;
48
- }
45
+ .kpi-tile-action {
46
+ @apply hover:text-gray-500;
47
+ }
49
48
 
50
- .kpi-tile-value {
51
- @apply text-6xl font-thin my-6;
52
- }
49
+ .kpi-tile-value {
50
+ @apply text-6xl font-thin my-6;
51
+ }
53
52
 
54
- .gallery-deck-1 {
55
- @apply grid grid-cols-1 p-4 gap-x-6 sm:grid-cols-2;
56
- }
53
+ .gallery-deck-1 {
54
+ @apply grid grid-cols-1 p-4 gap-x-6 sm:grid-cols-2;
55
+ }
57
56
 
58
- .gallery-deck-2 {
59
- @apply grid grid-cols-1 gap-x-4 gap-y-8 sm:grid-cols-2 sm:gap-x-6 p-4;
60
- }
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
+ }
61
60
 
62
- .gallery-deck-3 {
63
- @apply grid grid-cols-1 gap-x-4 gap-y-8 sm:grid-cols-3 sm:gap-x-6 p-4;
64
- }
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
+ }
65
64
 
66
- .gallery-deck-4 {
67
- @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;
68
- }
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
+ }
69
68
 
70
- .tile-card-footer {
71
- @apply absolute bottom-0 inset-x-0 bg-gradient-to-b from-transparent to-gray-50 px-2 pb-4 sm:px-4;
72
- }
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
+ }
73
72
 
74
- .tile-card-item-btn {
75
- @apply inline-flex mx-1 items-center rounded-full border border-transparent p-1 text-white shadow-sm focus:outline-none;
76
- }
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
+ }
77
76
 
78
- .tile-card-item-btn-selected {
79
- @apply bg-slate-700 ring-slate-700 ring-1 ring-offset-1;
80
- }
77
+ .tile-card-item-btn-selected {
78
+ @apply bg-slate-700 ring-slate-700 ring-1 ring-offset-1;
79
+ }
81
80
 
82
- .tile-card-item-btn-available {
83
- @apply bg-slate-500 hover:bg-slate-700 ring-0;
84
- }
81
+ .tile-card-item-btn-available {
82
+ @apply bg-slate-500 hover:bg-slate-700 ring-0;
83
+ }
85
84
 
@@ -1,24 +1,23 @@
1
+ .collapsible-panel-container {
2
+ @apply bg-white border border-gray-200 mb-2;
3
+ }
1
4
 
2
- .collapsible-panel-container {
3
- @apply bg-white border border-gray-200 mb-2;
4
- }
5
+ .collapsible-panel-container-shadow {
6
+ @apply shadow-sm;
7
+ }
5
8
 
6
- .collapsible-panel-container-shadow {
7
- @apply shadow-sm;
8
- }
9
+ .collapsible-panel-container-inner {
10
+ @apply relative border-b border-gray-200;
11
+ }
9
12
 
10
- .collapsible-panel-container-inner {
11
- @apply relative border-b border-gray-200;
12
- }
13
+ .collapsible-panel-button {
14
+ @apply w-full px-8 py-6 text-left;
15
+ }
13
16
 
14
- .collapsible-panel-button {
15
- @apply w-full px-8 py-6 text-left;
16
- }
17
+ .collapsible-panel-button-content-container {
18
+ @apply flex items-center justify-between;
19
+ }
17
20
 
18
- .collapsible-panel-button-content-container {
19
- @apply flex items-center justify-between;
20
- }
21
-
22
- .collapsible-panel-content-container {
23
- @apply relative overflow-hidden transition-all duration-700;
24
- }
21
+ .collapsible-panel-content-container {
22
+ @apply relative overflow-hidden transition-all duration-700;
23
+ }
@@ -1,28 +1,27 @@
1
+ .combobox-wrapper {
2
+ @apply relative mt-1;
3
+ }
1
4
 
2
- .combobox-wrapper {
3
- @apply relative mt-1;
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
+ }
5
8
 
6
- .combobox-input {
7
- @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;
8
- }
9
+ .combobox-icons {
10
+ @apply absolute inset-y-0 right-0 flex items-center rounded-r-md px-2 focus:outline-none;
11
+ }
9
12
 
10
- .combobox-icons {
11
- @apply absolute inset-y-0 right-0 flex items-center rounded-r-md px-2 focus:outline-none;
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
+ }
13
16
 
14
- .combobox-results {
15
- @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;
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
+ }
17
20
 
18
- .combobox-default-item-template {
19
- @apply hover:bg-gray-100 relative cursor-pointer select-none py-2 pl-3 pr-3 block truncate;
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
+ }
21
24
 
22
- .combobox-selected-item-wrapper {
23
- @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;
24
- }
25
-
26
- .combobox-selected-item-remove-btn {
27
- @apply cursor-pointer bg-white rounded-md inline-flex text-gray-400 hover:text-gray-500;
28
- }
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,36 +1,34 @@
1
+ .md-visible {
2
+ @apply hidden md:block;
3
+ }
1
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
+ }
2
8
 
3
- .md-visible {
4
- @apply hidden md:block;
5
- }
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
+ }
6
12
 
7
- .btn-outline {
8
- @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;
9
- }
10
13
 
11
- .btn-outline:disabled {
12
- @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;
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
+ }
14
17
 
15
18
 
16
- .btn-view-header {
17
- @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;
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
+ }
19
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
+ }
20
26
 
21
- .sidebar .btn-view-header {
22
- @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;
23
- }
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
+ }
24
30
 
25
- .btn-form-view-header {
26
- @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;
27
- }
28
-
29
- .btn-form-view-header-search {
30
- @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;
31
- }
32
-
33
- .selected-view-indicator {
34
- @apply absolute top-0 right-0 block ml-2 h-1.5 w-1.5 rounded-full ring-1 ring-white bg-blue-300;
35
- }
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
+ }
36
34
 
@@ -1,49 +1,48 @@
1
-
2
- .dropdown-container {
3
- @apply relative w-auto;
4
- }
5
-
6
- .dropdown-button {
7
- @apply bg-white block w-full rounded-lg border pl-3 py-1.5 pr-10 ring-0 placeholder:text-gray-300 focus:border-gray-500 hover:border-gray-400
8
- text-sm leading-6 disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:border-gray-300;
9
- }
10
-
11
- .dropdown-selected-text {
12
- @apply truncate w-full inline-flex items-start place-items-center;
13
- }
14
-
15
- .dropdown-button-icon {
16
- @apply absolute inset-y-0 right-1 flex items-center pointer-events-none;
17
- }
18
-
19
- .dropdown-arrow {
20
- @apply h-5 w-5 text-gray-600;
21
- }
22
-
23
- .dropdown-ul {
24
- @apply absolute z-50 mt-1 w-auto bg-white shadow max-h-60 rounded-lg py-1 text-xs ring-1 ring-gray-300 ring-black/5 focus:outline-none overflow-x-hidden;
25
- }
26
-
27
- .dropdown-li {
28
- @apply text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9 hover:bg-gray-100 min-w-max;
29
- }
30
-
31
- .dropdown-li-selected {
32
- @apply text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9 min-w-max;
33
- }
34
-
35
- .dropdown-li-text {
36
- @apply font-normal truncate inline-flex items-center ;
37
- }
38
-
39
- .dropdown-li-selected-text {
40
- @apply font-semibold truncate inline-flex items-center ;
41
- }
42
-
43
- .dropdown-li-selected-indicator-container {
44
- @apply text-gray-600 absolute inset-y-0 right-0 flex items-center pr-4;
45
- }
46
-
47
- .dropdown-li-selected-indicator {
48
- @apply h-5 w-5;
49
- }
1
+ .dropdown-container {
2
+ @apply relative w-auto;
3
+ }
4
+
5
+ .dropdown-button {
6
+ @apply bg-white block w-full rounded-lg border pl-3 py-1.5 pr-10 ring-0 placeholder:text-gray-300 focus:border-gray-500 hover:border-gray-400
7
+ text-sm leading-6 disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:border-gray-300;
8
+ }
9
+
10
+ .dropdown-selected-text {
11
+ @apply truncate w-full inline-flex items-start place-items-center;
12
+ }
13
+
14
+ .dropdown-button-icon {
15
+ @apply absolute inset-y-0 right-1 flex items-center pointer-events-none;
16
+ }
17
+
18
+ .dropdown-arrow {
19
+ @apply h-5 w-5 text-gray-600;
20
+ }
21
+
22
+ .dropdown-ul {
23
+ @apply absolute z-50 mt-1 w-auto bg-white shadow max-h-60 rounded-lg py-1 text-xs ring-1 ring-gray-300 ring-black/5 focus:outline-none overflow-x-hidden;
24
+ }
25
+
26
+ .dropdown-li {
27
+ @apply text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9 hover:bg-gray-100 min-w-max;
28
+ }
29
+
30
+ .dropdown-li-selected {
31
+ @apply text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9 min-w-max;
32
+ }
33
+
34
+ .dropdown-li-text {
35
+ @apply font-normal truncate inline-flex items-center ;
36
+ }
37
+
38
+ .dropdown-li-selected-text {
39
+ @apply font-semibold truncate inline-flex items-center ;
40
+ }
41
+
42
+ .dropdown-li-selected-indicator-container {
43
+ @apply text-gray-600 absolute inset-y-0 right-0 flex items-center pr-4;
44
+ }
45
+
46
+ .dropdown-li-selected-indicator {
47
+ @apply h-5 w-5;
48
+ }
@@ -1,52 +1,51 @@
1
+ .form-layout-container {
2
+ @apply bg-white shadow-sm border border-gray-200 rounded-xl;
3
+ }
1
4
 
2
- .form-layout-container {
3
- @apply bg-white shadow-sm border border-gray-200 rounded-xl;
4
- }
5
+ .form-header {
6
+ @apply px-4 py-4 bg-gray-50 rounded-t-xl h-24 sm:flex sm:items-center sm:justify-between;
7
+ }
5
8
 
6
- .form-header {
7
- @apply px-4 py-4 bg-gray-50 rounded-t-xl h-24 sm:flex sm:items-center sm:justify-between;
8
- }
9
+ .form-header-inner {
10
+ @apply flex-1 min-w-0;
11
+ }
9
12
 
10
- .form-header-inner {
11
- @apply flex-1 min-w-0;
12
- }
13
+ .form-header-image {
14
+ @apply w-12 h-12;
15
+ }
13
16
 
14
- .form-header-image {
15
- @apply w-12 h-12;
16
- }
17
+ .form-title {
18
+ @apply text-lg leading-6 font-medium text-gray-900;
19
+ }
17
20
 
18
- .form-title {
19
- @apply text-lg leading-6 font-medium text-gray-900;
20
- }
21
+ .form-subtitle {
22
+ @apply mt-1 max-w-2xl text-sm text-gray-500;
23
+ }
21
24
 
22
- .form-subtitle {
23
- @apply mt-1 max-w-2xl text-sm text-gray-500;
24
- }
25
+ .form-header-actions {
26
+ @apply mt-4 flex md:mt-0 md:ml-4;
27
+ }
25
28
 
26
- .form-header-actions {
27
- @apply mt-4 flex md:mt-0 md:ml-4;
28
- }
29
+ .form-content-container {
30
+ @apply px-4 py-4;
31
+ }
29
32
 
30
- .form-content-container {
31
- @apply px-4 py-4;
32
- }
33
+ .form-content-container-inner {
34
+ @apply flex flex-col pt-4;
35
+ }
33
36
 
34
- .form-content-container-inner {
35
- @apply flex flex-col pt-4;
36
- }
37
+ .form-header-search-input {
38
+ @apply block w-60 bg-gray-50 rounded-md text-sm text-gray-900 placeholder-gray-500 outline-none;
39
+ }
37
40
 
38
- .form-header-search-input {
39
- @apply block w-60 bg-gray-50 rounded-md text-sm text-gray-900 placeholder-gray-500 outline-none;
40
- }
41
+ .field-label {
42
+ @apply block text-sm py-2 font-medium text-gray-500;
43
+ }
41
44
 
42
- .field-label {
43
- @apply block text-sm py-2 font-medium text-gray-500;
44
- }
45
+ .field-info {
46
+ @apply mt-2 text-xs text-gray-400 py-2;
47
+ }
45
48
 
46
- .field-info {
47
- @apply mt-2 text-xs text-gray-400 py-2;
48
- }
49
-
50
- .form-actions {
51
- @apply -mx-4 -mb-4 mt-4 px-4 sm:px-6 py-3 bg-gray-100 text-gray-700 text-right flex justify-end rounded-b-xl;
52
- }
49
+ .form-actions {
50
+ @apply -mx-4 -mb-4 mt-4 px-4 sm:px-6 py-3 bg-gray-100 text-gray-700 text-right flex justify-end rounded-b-xl;
51
+ }