@indice/ng-components 0.4.0-beta.3 → 0.4.0-beta.5

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/fesm2022/indice-ng-components.mjs +2 -2
  2. package/fesm2022/indice-ng-components.mjs.map +1 -1
  3. package/package.json +3 -2
  4. package/src/assets/styles/advanced-search.css +57 -0
  5. package/src/assets/styles/avatar-initials.css +37 -0
  6. package/src/assets/styles/base.css +36 -0
  7. package/src/assets/styles/cards.css +85 -0
  8. package/src/assets/styles/collapsible-panel.css +24 -0
  9. package/src/assets/styles/combobox.css +28 -0
  10. package/src/assets/styles/components.css +36 -0
  11. package/src/assets/styles/date-picker.component.css +68 -0
  12. package/src/assets/styles/drop-down-menu.css +49 -0
  13. package/src/assets/styles/form-layout.css +52 -0
  14. package/{_styles.scss → src/assets/styles/indice-ng-icons-inline.css} +0 -2037
  15. package/src/assets/styles/language-selection.component.css +11 -0
  16. package/src/assets/styles/list-view-empty-state.css +0 -0
  17. package/src/assets/styles/list-view.css +63 -0
  18. package/src/assets/styles/model-view-layout.css +48 -0
  19. package/src/assets/styles/nav-links.css +66 -0
  20. package/src/assets/styles/notifications-indicator.component.css +39 -0
  21. package/src/assets/styles/pager.css +32 -0
  22. package/src/assets/styles/progress-bar.component.css +15 -0
  23. package/src/assets/styles/shell-layout.css +252 -0
  24. package/src/assets/styles/shell-sidebar-header.css +2 -0
  25. package/src/assets/styles/shell-sidebar-layout.css +125 -0
  26. package/src/assets/styles/shell-sidebar.css +32 -0
  27. package/src/assets/styles/side-pane.css +50 -0
  28. package/src/assets/styles/side-view-layout.css +57 -0
  29. package/src/assets/styles/stepper.css +170 -0
  30. package/src/assets/styles/tab-group.css +28 -0
  31. package/src/assets/styles/toast.css +70 -0
  32. package/src/assets/styles/toggle-button.component.css +52 -0
  33. package/src/assets/styles/toggle-buttons-list.component.css +45 -0
  34. package/src/assets/styles/toggle.css +24 -0
  35. package/src/assets/styles/view-layout.css +89 -0
  36. package/src/styles.css +51 -0
  37. package/src/tailwindcss.css +1 -0
  38. /package/{modal.css → src/assets/styles/modal.css} +0 -0
@@ -0,0 +1,50 @@
1
+
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-black/25 inset-0;
9
+ }
10
+
11
+ .side-pane-overlay-opacity-0 {
12
+ @apply absolute bg-gray-500 bg-black/0 inset-0;
13
+ }
14
+
15
+ .side-pane-overlay-opacity-50 {
16
+ @apply absolute bg-gray-500 bg-black/50 inset-0;
17
+ }
18
+
19
+ .side-pane-container {
20
+ @apply fixed inset-y-0 right-0 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-2xl;
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
+
44
+ .side-pane-box-size-100 {
45
+ @apply w-screen max-w-full;
46
+ }
47
+
48
+ .side-pane {
49
+ @apply flex flex-col bg-white shadow-xl overflow-y-hidden;
50
+ }
@@ -0,0 +1,57 @@
1
+
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
+
@@ -0,0 +1,170 @@
1
+
2
+ /* Bullets */
3
+ .stepper-bullets-container {
4
+ @apply flex items-center justify-center;
5
+ }
6
+ .stepper-bullets-counter {
7
+ @apply text-sm font-medium;
8
+ }
9
+ .stepper-bullets-ol {
10
+ @apply ml-8 flex items-center space-x-5;
11
+ }
12
+ .stepper-bullets-completed-step {
13
+ @apply block w-2.5 h-2.5 bg-blue-600 rounded-full hover:bg-blue-900;
14
+ }
15
+ .stepper-bullets-active-step {
16
+ @apply relative flex items-center justify-center;
17
+ }
18
+ .stepper-bullets-active-step-level1 {
19
+ @apply absolute w-5 h-5 p-px flex;
20
+ }
21
+ .stepper-bullets-active-step-level11 {
22
+ @apply w-full h-full rounded-full bg-blue-200;
23
+ }
24
+ .stepper-bullets-active-step-bullet {
25
+ @apply relative block w-2.5 h-2.5 bg-blue-600 rounded-full;
26
+ }
27
+ .stepper-bullets-upcoming-step {
28
+ @apply block w-2.5 h-2.5 bg-gray-200 rounded-full hover:bg-gray-400;
29
+ }
30
+
31
+ /* Bullets & Text */
32
+ .stepper-bullets-and-text-container {
33
+ @apply flex items-center justify-center;
34
+ }
35
+ .stepper-bullets-and-text-ol {
36
+ @apply space-y-6;
37
+ }
38
+ .stepper-bullets-and-text-completed-step {
39
+ @apply flex items-start;
40
+ }
41
+ .stepper-bullets-and-text-completed-step-level1 {
42
+ @apply flex-shrink-0 relative h-5 w-5 flex items-center justify-center;
43
+ }
44
+ .stepper-bullets-and-text-completed-step-container {
45
+ @apply ml-3 text-sm font-medium text-gray-500 group-hover:text-gray-900;
46
+ }
47
+ .stepper-bullets-and-text-active-step {
48
+ @apply flex items-start;
49
+ }
50
+ .stepper-bullets-and-text-active-step-level1 {
51
+ @apply flex-shrink-0 h-5 w-5 relative flex items-center justify-center;
52
+ }
53
+ .stepper-bullets-and-text-active-step-level11 {
54
+ @apply absolute h-4 w-4 rounded-full bg-blue-200;
55
+ }
56
+ .stepper-bullets-and-text-active-step-level12 {
57
+ @apply relative block w-2 h-2 bg-blue-600 rounded-full;
58
+ }
59
+ .stepper-bullets-and-text-active-step-container {
60
+ @apply ml-3 text-sm font-medium text-blue-600;
61
+ }
62
+ .stepper-bullets-and-text-upcoming-step {
63
+ @apply flex items-start;
64
+ }
65
+ .stepper-bullets-and-text-upcoming-step-level1 {
66
+ @apply flex-shrink-0 h-5 w-5 relative flex items-center justify-center;
67
+ }
68
+ .stepper-bullets-and-text-upcoming-step-level2 {
69
+ @apply h-2 w-2 bg-gray-300 rounded-full group-hover:bg-gray-400;
70
+ }
71
+ .stepper-bullets-and-text-upcoming-step-container {
72
+ @apply ml-3 text-sm font-medium text-gray-500 group-hover:text-gray-900;
73
+ }
74
+
75
+ /* Circles */
76
+
77
+ /* Panels With Border */
78
+ .panels-with-border-container {
79
+ @apply border-t border-b border-gray-200;
80
+ }
81
+ .panels-with-border-nav {
82
+ @apply mx-auto max-w-7xl px-4 sm:px-6 lg:px-8;
83
+ }
84
+ .panels-with-border-ol {
85
+ @apply rounded-md overflow-hidden lg:flex lg:border-l lg:border-r lg:border-gray-200 lg:rounded-none;
86
+ }
87
+ .panels-with-border-li {
88
+ @apply relative overflow-hidden lg:flex-1 cursor-pointer;
89
+ }
90
+ .panels-with-border-completed-step {
91
+ @apply border border-gray-200 overflow-hidden border-b-0 rounded-t-md lg:border-0;
92
+ }
93
+ .panels-with-border-completed-step-level1 {
94
+ @apply absolute top-0 left-0 w-1 h-full bg-transparent group-hover:bg-gray-200 lg:w-full lg:h-1 lg:bottom-0 lg:top-auto;
95
+ }
96
+ .panels-with-border-completed-step-level2 {
97
+ @apply px-6 py-5 flex items-start text-sm font-medium;
98
+ }
99
+ .panels-with-border-completed-step-level21 {
100
+ @apply flex-shrink-0;
101
+ }
102
+ .panels-with-border-completed-step-level211 {
103
+ @apply w-10 h-10 flex items-center justify-center bg-blue-600 rounded-full;
104
+ }
105
+ .panels-with-border-completed-step-level22 {
106
+ @apply mt-0.5 ml-4 min-w-0 flex flex-col;
107
+ }
108
+ .panels-with-border-completed-step-level221 {
109
+ @apply text-xs font-semibold tracking-wide uppercase;
110
+ }
111
+ .panels-with-border-completed-step-level222 {
112
+ @apply text-sm font-medium text-gray-500;
113
+ }
114
+ .panels-with-border-active-step {
115
+ @apply border border-gray-200 overflow-hidden lg:border-0;
116
+ }
117
+ .panels-with-border-active-step-level1 {
118
+ @apply absolute top-0 left-0 w-1 h-full bg-blue-600 lg:w-full lg:h-1 lg:bottom-0 lg:top-auto;
119
+ }
120
+ .panels-with-border-active-step-level2 {
121
+ @apply px-6 py-5 flex items-start text-sm font-medium lg:pl-9;
122
+ }
123
+ .panels-with-border-active-step-level21 {
124
+ @apply flex-shrink-0;
125
+ }
126
+ .panels-with-border-active-step-level211 {
127
+ @apply w-10 h-10 flex items-center justify-center border-2 border-blue-600 rounded-full;
128
+ }
129
+ .panels-with-border-active-step-level211-text {
130
+ @apply text-blue-600;
131
+ }
132
+ .panels-with-border-active-step-level22 {
133
+ @apply mt-0.5 ml-4 min-w-0 flex flex-col;
134
+ }
135
+ .panels-with-border-active-step-level221 {
136
+ @apply text-xs font-semibold text-blue-600 tracking-wide uppercase;
137
+ }
138
+ .panels-with-border-active-step-level222 {
139
+ @apply text-sm font-medium text-gray-500;
140
+ }
141
+ .panels-with-border-step-separator {
142
+ @apply hidden absolute top-0 left-0 w-3 inset-0 lg:block;
143
+ }
144
+ .panels-with-border-upcoming-step {
145
+ @apply border border-gray-200 overflow-hidden border-t-0 rounded-b-md lg:border-0;
146
+ }
147
+ .panels-with-border-upcoming-step-level1 {
148
+ @apply absolute top-0 left-0 w-1 h-full bg-transparent group-hover:bg-gray-200 lg:w-full lg:h-1 lg:bottom-0 lg:top-auto;
149
+ }
150
+ .panels-with-border-upcoming-step-level2 {
151
+ @apply px-6 py-5 flex items-start text-sm font-medium lg:pl-9;
152
+ }
153
+ .panels-with-border-upcoming-step-level21 {
154
+ @apply flex-shrink-0;
155
+ }
156
+ .panels-with-border-upcoming-step-level211 {
157
+ @apply w-10 h-10 flex items-center justify-center border-2 border-gray-300 rounded-full;
158
+ }
159
+ .panels-with-border-upcoming-step-level211-text {
160
+ @apply text-gray-500;
161
+ }
162
+ .panels-with-border-upcoming-step-level22 {
163
+ @apply mt-0.5 ml-4 min-w-0 flex flex-col;
164
+ }
165
+ .panels-with-border-upcoming-step-level221 {
166
+ @apply text-xs font-semibold text-gray-500 tracking-wide uppercase;
167
+ }
168
+ .panels-with-border-upcoming-step-level222 {
169
+ @apply text-sm font-medium text-gray-500;
170
+ }
@@ -0,0 +1,28 @@
1
+
2
+ .tab-group-select-hidden {
3
+ @apply sm:hidden;
4
+ }
5
+
6
+ .tab-group-select {
7
+ @apply block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm rounded-md;
8
+ }
9
+
10
+ .tab-active {
11
+ @apply border-gray-500 text-gray-900 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
12
+ }
13
+
14
+ .tab {
15
+ @apply border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
16
+ }
17
+
18
+ .tab-group-container-nav {
19
+ @apply -mb-px flex space-x-8;
20
+ }
21
+
22
+ .tab-group-container-hidden {
23
+ @apply hidden sm:block;
24
+ }
25
+
26
+ .tab-group-container {
27
+ @apply border-b border-gray-200;
28
+ }
@@ -0,0 +1,70 @@
1
+ .toast {
2
+ @apply fixed inset-0 flex items-end px-4 py-6 pointer-events-none sm:p-6 sm:items-start z-50;
3
+ animation: move 400ms ease-in;
4
+ }
5
+
6
+ .toast-closed {
7
+ @apply fixed inset-0 flex items-end px-4 py-6 pointer-events-none sm:p-6 sm:items-start;
8
+ animation: close 100ms ease-out;
9
+ }
10
+
11
+ .toast-container {
12
+ @apply w-full flex flex-col items-center space-y-4 sm:items-end z-50;
13
+ }
14
+
15
+ .toast-pill {
16
+ @apply max-w-sm w-full bg-white shadow-lg rounded-xl pointer-events-auto ring-1 ring-black ring-black/5 overflow-hidden;
17
+ }
18
+
19
+ .toast-context-padding {
20
+ @apply p-4;
21
+ }
22
+
23
+ .toast-context {
24
+ @apply flex items-start;
25
+ }
26
+
27
+ .toast-icon {
28
+ @apply flex-shrink-0;
29
+ }
30
+
31
+ .toast-close-icon {
32
+ @apply ml-4 flex-shrink-0 flex;
33
+ }
34
+
35
+ .toast-close-button {
36
+ @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;
37
+ }
38
+
39
+ .toast-title {
40
+ @apply mb-1 text-sm font-medium text-gray-900;
41
+ }
42
+
43
+ .toast-body {
44
+ @apply text-sm text-gray-500 whitespace-normal;
45
+ word-break: break-word;
46
+ }
47
+
48
+ @keyframes move {
49
+ from {
50
+ opacity: 0;
51
+ --tw-translate-y: 0.5rem;
52
+ transform: translateY(0.5rem);
53
+ }
54
+
55
+ to {
56
+ --tw-translate-y: 0;
57
+ transform: translateY(0);
58
+ opacity: 100;
59
+ }
60
+ }
61
+
62
+ @keyframes close {
63
+ from {
64
+ opacity: 100;
65
+ }
66
+
67
+ to {
68
+ opacity: 0;
69
+ }
70
+ }
@@ -0,0 +1,52 @@
1
+
2
+ .toggle-button-button {
3
+ @apply relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-1 focus:ring-gray-500 focus:ring-offset-1;
4
+ }
5
+
6
+ .toggle-button-button-disabled {
7
+ @apply opacity-75;
8
+ }
9
+
10
+ .toggle-button-bg-false {
11
+ @apply bg-gray-200;
12
+ }
13
+
14
+ .toggle-button-bg-true {
15
+ @apply bg-gray-600;
16
+ }
17
+
18
+ .toggle-button-icon-container {
19
+ @apply pointer-events-none relative inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out;
20
+ }
21
+
22
+ .toggle-button-icon-container-true {
23
+ @apply translate-x-5;
24
+ }
25
+
26
+ .toggle-button-icon-container-false {
27
+ @apply translate-x-0;
28
+ }
29
+
30
+ .toggle-button-icon-container-inner {
31
+ @apply opacity-100 ease-in duration-200 absolute inset-0 flex h-full w-full items-center justify-center transition-opacity;
32
+ }
33
+
34
+ .toggle-button-container-inner-true {
35
+ @apply opacity-0 ease-out duration-100;
36
+ }
37
+
38
+ .toggle-button-container-inner-false {
39
+ @apply opacity-100 ease-in duration-200;
40
+ }
41
+
42
+ .toggle-button-icon {
43
+ @apply h-3 w-3 text-gray-600;
44
+ }
45
+
46
+ .toggle-button-text {
47
+ @apply text-sm font-medium text-gray-900;
48
+ }
49
+
50
+ .toggle-button-description {
51
+ @apply text-xs mt-1 text-gray-500;
52
+ }
@@ -0,0 +1,45 @@
1
+
2
+ .toggle-buttons-list-container {
3
+ @apply relative items-center inline-flex;
4
+ }
5
+
6
+ .toggle-buttons-list-icon-container {
7
+ @apply flex-none mr-2;
8
+ }
9
+
10
+ .toggle-buttons-list-drop-down-container {
11
+ @apply block lg:hidden z-10;
12
+ }
13
+
14
+ .toggle-buttons-list-drop-down-compact-container {
15
+ @apply block z-10;
16
+ }
17
+
18
+ /* mw-40 not supported*/
19
+ .toggle-buttons-list-drop-down {
20
+ @apply w-full;
21
+ }
22
+
23
+ .toggle-buttons-list {
24
+ @apply hidden lg:block;
25
+ }
26
+
27
+ .toggle-buttons-list-button {
28
+ @apply relative inline-flex items-center p-2 first:border-l first:rounded-l-lg last:rounded-r-lg border-t border-b border-r border-gray-300 bg-white text-xs text-gray-700 hover:text-gray-900 focus:z-10 focus:outline-none;
29
+ }
30
+
31
+ .toggle-buttons-list-button-selected {
32
+ @apply bg-gray-100;
33
+ }
34
+
35
+ .toggle-buttons-list-button-icon-container {
36
+ @apply flex-none mr-2;
37
+ }
38
+
39
+ .toggle-buttons-list-button-button-text {
40
+ @apply mr-2 block overflow-ellipsis overflow-hidden;
41
+ }
42
+
43
+ .toggle-buttons-list-button-button-count {
44
+ @apply ml-1.5 rounded py-0.5 px-1.5 bg-gray-200 text-xs text-gray-700 tabular-nums;
45
+ }
@@ -0,0 +1,24 @@
1
+
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
+ }
@@ -0,0 +1,89 @@
1
+ @reference tailwindcss;
2
+
3
+ .view-container {
4
+ @apply mt-4 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 py-4 sm:py-6;
13
+ }
14
+
15
+ .sidebar .view-layout-paddings {
16
+ @apply py-2 sm:py-4;
17
+ }
18
+
19
+ .view-layout-title-container {
20
+ @apply flex text-white flex-col md:flex-row justify-start;
21
+ }
22
+
23
+ .view-layout-title-container-inner {
24
+ @apply flex-1 min-w-0;
25
+ }
26
+
27
+ .view-layout-title-container-far {
28
+ @apply flex items-center justify-start sm:justify-end;
29
+ }
30
+
31
+ .title-icon {
32
+ @apply text-2xl md:text-xl text-white font-thin mr-1;
33
+ }
34
+
35
+ .sidebar .title-icon {
36
+ @apply text-2xl md:text-xl font-thin mr-1 text-gray-900;
37
+ }
38
+
39
+ .view-layout-title {
40
+ @apply inline text-xl md:text-3xl text-white;
41
+ }
42
+
43
+ .sidebar .view-layout-title {
44
+ @apply inline text-xl md:text-3xl text-gray-900;
45
+ }
46
+
47
+ .view-layout-title-busy {
48
+ @apply animate-pulse inline text-xl md:text-3xl text-gray-200;
49
+ }
50
+
51
+ .sidebar .view-layout-title-busy {
52
+ @apply animate-pulse inline text-xl md:text-3xl text-gray-400;
53
+ }
54
+
55
+ .meta-container {
56
+ @apply mt-1 ml-1 hidden h-0 w-0 md:w-full md:flex md:flex-wrap opacity-75;
57
+ }
58
+
59
+ .sidebar .meta-container {
60
+ @apply text-gray-900;
61
+ }
62
+
63
+ .meta-item-container {
64
+ @apply flex items-center mr-2;
65
+ }
66
+
67
+ .meta-icon {
68
+ @apply text-sm mr-1;
69
+ }
70
+
71
+ .meta-text {
72
+ @apply text-xs mr-1;
73
+ }
74
+
75
+ .search-container {
76
+ @apply relative rounded-lg inline-flex items-center bg-white text-gray-400 focus-within:text-gray-600 focus:shadow hover:shadow border border-gray-300;
77
+ }
78
+ /*
79
+ .search-input {
80
+ @apply pl-10 pr-20 w-60 bg-gray-50 rounded-sm text-sm text-gray-900 border-gray-400 placeholder-gray-500 outline-none focus:shadow focus:outline-none z-0;
81
+ } */
82
+
83
+ .search-input {
84
+ @apply w-64 rounded-lg text-sm text-gray-900 pt-2 pl-2 pb-2 placeholder-gray-500 outline-none border-0 focus:outline-none focus:ring-0;
85
+ }
86
+
87
+ .search-button {
88
+ @apply mr-1 text-xs focus:outline-none inline-flex items-center justify-center w-6 h-6 text-gray-800 hover:text-gray-900;
89
+ }
package/src/styles.css ADDED
@@ -0,0 +1,51 @@
1
+ @import './tailwindcss.css';
2
+ @import './assets/styles/base.css';
3
+
4
+ @import './assets/styles/avatar-initials.css';
5
+ @import './assets/styles/toggle.css';
6
+ @import './assets/styles/modal.css';
7
+ @import './assets/styles/tab-group.css';
8
+
9
+ @import './assets/styles/shell-sidebar.css';
10
+ @import './assets/styles/shell-sidebar-header.css';
11
+ @import './assets/styles/shell-sidebar-layout.css';
12
+
13
+ @import './assets/styles/notifications-indicator.component.css';
14
+ @import './assets/styles/language-selection.component.css';
15
+ @import './assets/styles/cards.css';
16
+ @import './assets/styles/collapsible-panel.css';
17
+ @import './assets/styles/components.css';
18
+ @import './assets/styles/date-picker.component.css';
19
+ @import './assets/styles/drop-down-menu.css';
20
+ @import './assets/styles/form-layout.css';
21
+ @import './assets/styles/indice-ng-icons-inline.css';
22
+ @import './assets/styles/list-view.css';
23
+ @import './assets/styles/model-view-layout.css';
24
+ @import './assets/styles/nav-links.css';
25
+ @import './assets/styles/notifications-indicator.component.css';
26
+ @import './assets/styles/pager.css';
27
+ @import './assets/styles/advanced-search.css';
28
+ @import './assets/styles/shell-layout.css';
29
+ @import './assets/styles/side-pane.css';
30
+ @import './assets/styles/side-view-layout.css';
31
+ @import './assets/styles/stepper.css';
32
+ @import './assets/styles/tab-group.css';
33
+ @import './assets/styles/toast.css';
34
+ @import './assets/styles/toggle.css';
35
+ @import './assets/styles/view-layout.css';
36
+ @import './assets/styles/combobox.css';
37
+ @import './assets/styles/toggle-button.component.css';
38
+ @import './assets/styles/toggle-buttons-list.component.css';
39
+ @import './assets/styles/progress-bar.component.css';
40
+
41
+ .modal-active {
42
+ overflow: hidden;
43
+ }
44
+
45
+ button:active {
46
+ transform: translateY(2px);
47
+ }
48
+
49
+ a:active {
50
+ transform: translateY(2px);
51
+ }
@@ -0,0 +1 @@
1
+ @import 'tailwindcss';
File without changes