@indice/ng-components 0.5.0-beta.10 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/fesm2022/indice-ng-components.mjs +138 -116
- package/fesm2022/indice-ng-components.mjs.map +1 -1
- package/index.d.ts +13 -4
- package/package.json +1 -1
- package/src/assets/styles/advanced-search.css +39 -39
- package/src/assets/styles/avatar-initials.css +35 -35
- package/src/assets/styles/base.css +36 -36
- package/src/assets/styles/cards.css +84 -84
- package/src/assets/styles/collapsible-panel.css +23 -23
- package/src/assets/styles/combobox.css +27 -27
- package/src/assets/styles/components.css +34 -34
- package/src/assets/styles/date-picker.component.css +68 -68
- package/src/assets/styles/drop-down-menu.css +48 -48
- package/src/assets/styles/form-layout.css +51 -51
- package/src/assets/styles/indice-ng-icons-inline.css +2286 -2286
- package/src/assets/styles/language-selection.component.css +10 -10
- package/src/assets/styles/list-view.css +62 -62
- package/src/assets/styles/modal.css +182 -182
- package/src/assets/styles/model-view-layout.css +47 -47
- package/src/assets/styles/nav-links.css +64 -64
- package/src/assets/styles/notifications-indicator.component.css +37 -37
- package/src/assets/styles/pager.css +31 -31
- package/src/assets/styles/progress-bar.component.css +15 -15
- package/src/assets/styles/shell-layout.css +250 -250
- package/src/assets/styles/shell-sidebar-layout.css +122 -122
- package/src/assets/styles/shell-sidebar.css +31 -31
- package/src/assets/styles/side-pane.css +48 -48
- package/src/assets/styles/side-view-layout.css +56 -56
- package/src/assets/styles/stepper.css +169 -169
- package/src/assets/styles/tab-group.css +27 -27
- package/src/assets/styles/toast.css +70 -70
- package/src/assets/styles/toggle-button.component.css +51 -51
- package/src/assets/styles/toggle-buttons-list.component.css +44 -44
- package/src/assets/styles/toggle.css +23 -23
- package/src/assets/styles/view-layout.css +89 -89
- package/src/styles.css +49 -49
- package/src/tailwindcss.css +1 -1
|
@@ -1,169 +1,169 @@
|
|
|
1
|
-
/* Bullets */
|
|
2
|
-
.stepper-bullets-container {
|
|
3
|
-
@apply flex items-center justify-center;
|
|
4
|
-
}
|
|
5
|
-
.stepper-bullets-counter {
|
|
6
|
-
@apply text-sm font-medium;
|
|
7
|
-
}
|
|
8
|
-
.stepper-bullets-ol {
|
|
9
|
-
@apply ml-8 flex items-center space-x-5;
|
|
10
|
-
}
|
|
11
|
-
.stepper-bullets-completed-step {
|
|
12
|
-
@apply block w-2.5 h-2.5 bg-blue-600 rounded-full hover:bg-blue-900;
|
|
13
|
-
}
|
|
14
|
-
.stepper-bullets-active-step {
|
|
15
|
-
@apply relative flex items-center justify-center;
|
|
16
|
-
}
|
|
17
|
-
.stepper-bullets-active-step-level1 {
|
|
18
|
-
@apply absolute w-5 h-5 p-px flex;
|
|
19
|
-
}
|
|
20
|
-
.stepper-bullets-active-step-level11 {
|
|
21
|
-
@apply w-full h-full rounded-full bg-blue-200;
|
|
22
|
-
}
|
|
23
|
-
.stepper-bullets-active-step-bullet {
|
|
24
|
-
@apply relative block w-2.5 h-2.5 bg-blue-600 rounded-full;
|
|
25
|
-
}
|
|
26
|
-
.stepper-bullets-upcoming-step {
|
|
27
|
-
@apply block w-2.5 h-2.5 bg-gray-200 rounded-full hover:bg-gray-400;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/* Bullets & Text */
|
|
31
|
-
.stepper-bullets-and-text-container {
|
|
32
|
-
@apply flex items-center justify-center;
|
|
33
|
-
}
|
|
34
|
-
.stepper-bullets-and-text-ol {
|
|
35
|
-
@apply space-y-6;
|
|
36
|
-
}
|
|
37
|
-
.stepper-bullets-and-text-completed-step {
|
|
38
|
-
@apply flex items-start;
|
|
39
|
-
}
|
|
40
|
-
.stepper-bullets-and-text-completed-step-level1 {
|
|
41
|
-
@apply flex-shrink-0 relative h-5 w-5 flex items-center justify-center;
|
|
42
|
-
}
|
|
43
|
-
.stepper-bullets-and-text-completed-step-container {
|
|
44
|
-
@apply ml-3 text-sm font-medium text-gray-500 group-hover:text-gray-900;
|
|
45
|
-
}
|
|
46
|
-
.stepper-bullets-and-text-active-step {
|
|
47
|
-
@apply flex items-start;
|
|
48
|
-
}
|
|
49
|
-
.stepper-bullets-and-text-active-step-level1 {
|
|
50
|
-
@apply flex-shrink-0 h-5 w-5 relative flex items-center justify-center;
|
|
51
|
-
}
|
|
52
|
-
.stepper-bullets-and-text-active-step-level11 {
|
|
53
|
-
@apply absolute h-4 w-4 rounded-full bg-blue-200;
|
|
54
|
-
}
|
|
55
|
-
.stepper-bullets-and-text-active-step-level12 {
|
|
56
|
-
@apply relative block w-2 h-2 bg-blue-600 rounded-full;
|
|
57
|
-
}
|
|
58
|
-
.stepper-bullets-and-text-active-step-container {
|
|
59
|
-
@apply ml-3 text-sm font-medium text-blue-600;
|
|
60
|
-
}
|
|
61
|
-
.stepper-bullets-and-text-upcoming-step {
|
|
62
|
-
@apply flex items-start;
|
|
63
|
-
}
|
|
64
|
-
.stepper-bullets-and-text-upcoming-step-level1 {
|
|
65
|
-
@apply flex-shrink-0 h-5 w-5 relative flex items-center justify-center;
|
|
66
|
-
}
|
|
67
|
-
.stepper-bullets-and-text-upcoming-step-level2 {
|
|
68
|
-
@apply h-2 w-2 bg-gray-300 rounded-full group-hover:bg-gray-400;
|
|
69
|
-
}
|
|
70
|
-
.stepper-bullets-and-text-upcoming-step-container {
|
|
71
|
-
@apply ml-3 text-sm font-medium text-gray-500 group-hover:text-gray-900;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
/* Circles */
|
|
75
|
-
|
|
76
|
-
/* Panels With Border */
|
|
77
|
-
.panels-with-border-container {
|
|
78
|
-
@apply border-t border-b border-gray-200;
|
|
79
|
-
}
|
|
80
|
-
.panels-with-border-nav {
|
|
81
|
-
@apply mx-auto max-w-7xl px-4 sm:px-6 lg:px-8;
|
|
82
|
-
}
|
|
83
|
-
.panels-with-border-ol {
|
|
84
|
-
@apply rounded-md overflow-hidden lg:flex lg:border-l lg:border-r lg:border-gray-200 lg:rounded-none;
|
|
85
|
-
}
|
|
86
|
-
.panels-with-border-li {
|
|
87
|
-
@apply relative overflow-hidden lg:flex-1 cursor-pointer;
|
|
88
|
-
}
|
|
89
|
-
.panels-with-border-completed-step {
|
|
90
|
-
@apply border border-gray-200 overflow-hidden border-b-0 rounded-t-md lg:border-0;
|
|
91
|
-
}
|
|
92
|
-
.panels-with-border-completed-step-level1 {
|
|
93
|
-
@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;
|
|
94
|
-
}
|
|
95
|
-
.panels-with-border-completed-step-level2 {
|
|
96
|
-
@apply px-6 py-5 flex items-start text-sm font-medium;
|
|
97
|
-
}
|
|
98
|
-
.panels-with-border-completed-step-level21 {
|
|
99
|
-
@apply flex-shrink-0;
|
|
100
|
-
}
|
|
101
|
-
.panels-with-border-completed-step-level211 {
|
|
102
|
-
@apply w-10 h-10 flex items-center justify-center bg-blue-600 rounded-full;
|
|
103
|
-
}
|
|
104
|
-
.panels-with-border-completed-step-level22 {
|
|
105
|
-
@apply mt-0.5 ml-4 min-w-0 flex flex-col;
|
|
106
|
-
}
|
|
107
|
-
.panels-with-border-completed-step-level221 {
|
|
108
|
-
@apply text-xs font-semibold tracking-wide uppercase;
|
|
109
|
-
}
|
|
110
|
-
.panels-with-border-completed-step-level222 {
|
|
111
|
-
@apply text-sm font-medium text-gray-500;
|
|
112
|
-
}
|
|
113
|
-
.panels-with-border-active-step {
|
|
114
|
-
@apply border border-gray-200 overflow-hidden lg:border-0;
|
|
115
|
-
}
|
|
116
|
-
.panels-with-border-active-step-level1 {
|
|
117
|
-
@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;
|
|
118
|
-
}
|
|
119
|
-
.panels-with-border-active-step-level2 {
|
|
120
|
-
@apply px-6 py-5 flex items-start text-sm font-medium lg:pl-9;
|
|
121
|
-
}
|
|
122
|
-
.panels-with-border-active-step-level21 {
|
|
123
|
-
@apply flex-shrink-0;
|
|
124
|
-
}
|
|
125
|
-
.panels-with-border-active-step-level211 {
|
|
126
|
-
@apply w-10 h-10 flex items-center justify-center border-2 border-blue-600 rounded-full;
|
|
127
|
-
}
|
|
128
|
-
.panels-with-border-active-step-level211-text {
|
|
129
|
-
@apply text-blue-600;
|
|
130
|
-
}
|
|
131
|
-
.panels-with-border-active-step-level22 {
|
|
132
|
-
@apply mt-0.5 ml-4 min-w-0 flex flex-col;
|
|
133
|
-
}
|
|
134
|
-
.panels-with-border-active-step-level221 {
|
|
135
|
-
@apply text-xs font-semibold text-blue-600 tracking-wide uppercase;
|
|
136
|
-
}
|
|
137
|
-
.panels-with-border-active-step-level222 {
|
|
138
|
-
@apply text-sm font-medium text-gray-500;
|
|
139
|
-
}
|
|
140
|
-
.panels-with-border-step-separator {
|
|
141
|
-
@apply hidden absolute top-0 left-0 w-3 inset-0 lg:block;
|
|
142
|
-
}
|
|
143
|
-
.panels-with-border-upcoming-step {
|
|
144
|
-
@apply border border-gray-200 overflow-hidden border-t-0 rounded-b-md lg:border-0;
|
|
145
|
-
}
|
|
146
|
-
.panels-with-border-upcoming-step-level1 {
|
|
147
|
-
@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;
|
|
148
|
-
}
|
|
149
|
-
.panels-with-border-upcoming-step-level2 {
|
|
150
|
-
@apply px-6 py-5 flex items-start text-sm font-medium lg:pl-9;
|
|
151
|
-
}
|
|
152
|
-
.panels-with-border-upcoming-step-level21 {
|
|
153
|
-
@apply flex-shrink-0;
|
|
154
|
-
}
|
|
155
|
-
.panels-with-border-upcoming-step-level211 {
|
|
156
|
-
@apply w-10 h-10 flex items-center justify-center border-2 border-gray-300 rounded-full;
|
|
157
|
-
}
|
|
158
|
-
.panels-with-border-upcoming-step-level211-text {
|
|
159
|
-
@apply text-gray-500;
|
|
160
|
-
}
|
|
161
|
-
.panels-with-border-upcoming-step-level22 {
|
|
162
|
-
@apply mt-0.5 ml-4 min-w-0 flex flex-col;
|
|
163
|
-
}
|
|
164
|
-
.panels-with-border-upcoming-step-level221 {
|
|
165
|
-
@apply text-xs font-semibold text-gray-500 tracking-wide uppercase;
|
|
166
|
-
}
|
|
167
|
-
.panels-with-border-upcoming-step-level222 {
|
|
168
|
-
@apply text-sm font-medium text-gray-500;
|
|
169
|
-
}
|
|
1
|
+
/* Bullets */
|
|
2
|
+
.stepper-bullets-container {
|
|
3
|
+
@apply flex items-center justify-center;
|
|
4
|
+
}
|
|
5
|
+
.stepper-bullets-counter {
|
|
6
|
+
@apply text-sm font-medium;
|
|
7
|
+
}
|
|
8
|
+
.stepper-bullets-ol {
|
|
9
|
+
@apply ml-8 flex items-center space-x-5;
|
|
10
|
+
}
|
|
11
|
+
.stepper-bullets-completed-step {
|
|
12
|
+
@apply block w-2.5 h-2.5 bg-blue-600 rounded-full hover:bg-blue-900;
|
|
13
|
+
}
|
|
14
|
+
.stepper-bullets-active-step {
|
|
15
|
+
@apply relative flex items-center justify-center;
|
|
16
|
+
}
|
|
17
|
+
.stepper-bullets-active-step-level1 {
|
|
18
|
+
@apply absolute w-5 h-5 p-px flex;
|
|
19
|
+
}
|
|
20
|
+
.stepper-bullets-active-step-level11 {
|
|
21
|
+
@apply w-full h-full rounded-full bg-blue-200;
|
|
22
|
+
}
|
|
23
|
+
.stepper-bullets-active-step-bullet {
|
|
24
|
+
@apply relative block w-2.5 h-2.5 bg-blue-600 rounded-full;
|
|
25
|
+
}
|
|
26
|
+
.stepper-bullets-upcoming-step {
|
|
27
|
+
@apply block w-2.5 h-2.5 bg-gray-200 rounded-full hover:bg-gray-400;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/* Bullets & Text */
|
|
31
|
+
.stepper-bullets-and-text-container {
|
|
32
|
+
@apply flex items-center justify-center;
|
|
33
|
+
}
|
|
34
|
+
.stepper-bullets-and-text-ol {
|
|
35
|
+
@apply space-y-6;
|
|
36
|
+
}
|
|
37
|
+
.stepper-bullets-and-text-completed-step {
|
|
38
|
+
@apply flex items-start;
|
|
39
|
+
}
|
|
40
|
+
.stepper-bullets-and-text-completed-step-level1 {
|
|
41
|
+
@apply flex-shrink-0 relative h-5 w-5 flex items-center justify-center;
|
|
42
|
+
}
|
|
43
|
+
.stepper-bullets-and-text-completed-step-container {
|
|
44
|
+
@apply ml-3 text-sm font-medium text-gray-500 group-hover:text-gray-900;
|
|
45
|
+
}
|
|
46
|
+
.stepper-bullets-and-text-active-step {
|
|
47
|
+
@apply flex items-start;
|
|
48
|
+
}
|
|
49
|
+
.stepper-bullets-and-text-active-step-level1 {
|
|
50
|
+
@apply flex-shrink-0 h-5 w-5 relative flex items-center justify-center;
|
|
51
|
+
}
|
|
52
|
+
.stepper-bullets-and-text-active-step-level11 {
|
|
53
|
+
@apply absolute h-4 w-4 rounded-full bg-blue-200;
|
|
54
|
+
}
|
|
55
|
+
.stepper-bullets-and-text-active-step-level12 {
|
|
56
|
+
@apply relative block w-2 h-2 bg-blue-600 rounded-full;
|
|
57
|
+
}
|
|
58
|
+
.stepper-bullets-and-text-active-step-container {
|
|
59
|
+
@apply ml-3 text-sm font-medium text-blue-600;
|
|
60
|
+
}
|
|
61
|
+
.stepper-bullets-and-text-upcoming-step {
|
|
62
|
+
@apply flex items-start;
|
|
63
|
+
}
|
|
64
|
+
.stepper-bullets-and-text-upcoming-step-level1 {
|
|
65
|
+
@apply flex-shrink-0 h-5 w-5 relative flex items-center justify-center;
|
|
66
|
+
}
|
|
67
|
+
.stepper-bullets-and-text-upcoming-step-level2 {
|
|
68
|
+
@apply h-2 w-2 bg-gray-300 rounded-full group-hover:bg-gray-400;
|
|
69
|
+
}
|
|
70
|
+
.stepper-bullets-and-text-upcoming-step-container {
|
|
71
|
+
@apply ml-3 text-sm font-medium text-gray-500 group-hover:text-gray-900;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/* Circles */
|
|
75
|
+
|
|
76
|
+
/* Panels With Border */
|
|
77
|
+
.panels-with-border-container {
|
|
78
|
+
@apply border-t border-b border-gray-200;
|
|
79
|
+
}
|
|
80
|
+
.panels-with-border-nav {
|
|
81
|
+
@apply mx-auto max-w-7xl px-4 sm:px-6 lg:px-8;
|
|
82
|
+
}
|
|
83
|
+
.panels-with-border-ol {
|
|
84
|
+
@apply rounded-md overflow-hidden lg:flex lg:border-l lg:border-r lg:border-gray-200 lg:rounded-none;
|
|
85
|
+
}
|
|
86
|
+
.panels-with-border-li {
|
|
87
|
+
@apply relative overflow-hidden lg:flex-1 cursor-pointer;
|
|
88
|
+
}
|
|
89
|
+
.panels-with-border-completed-step {
|
|
90
|
+
@apply border border-gray-200 overflow-hidden border-b-0 rounded-t-md lg:border-0;
|
|
91
|
+
}
|
|
92
|
+
.panels-with-border-completed-step-level1 {
|
|
93
|
+
@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;
|
|
94
|
+
}
|
|
95
|
+
.panels-with-border-completed-step-level2 {
|
|
96
|
+
@apply px-6 py-5 flex items-start text-sm font-medium;
|
|
97
|
+
}
|
|
98
|
+
.panels-with-border-completed-step-level21 {
|
|
99
|
+
@apply flex-shrink-0;
|
|
100
|
+
}
|
|
101
|
+
.panels-with-border-completed-step-level211 {
|
|
102
|
+
@apply w-10 h-10 flex items-center justify-center bg-blue-600 rounded-full;
|
|
103
|
+
}
|
|
104
|
+
.panels-with-border-completed-step-level22 {
|
|
105
|
+
@apply mt-0.5 ml-4 min-w-0 flex flex-col;
|
|
106
|
+
}
|
|
107
|
+
.panels-with-border-completed-step-level221 {
|
|
108
|
+
@apply text-xs font-semibold tracking-wide uppercase;
|
|
109
|
+
}
|
|
110
|
+
.panels-with-border-completed-step-level222 {
|
|
111
|
+
@apply text-sm font-medium text-gray-500;
|
|
112
|
+
}
|
|
113
|
+
.panels-with-border-active-step {
|
|
114
|
+
@apply border border-gray-200 overflow-hidden lg:border-0;
|
|
115
|
+
}
|
|
116
|
+
.panels-with-border-active-step-level1 {
|
|
117
|
+
@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;
|
|
118
|
+
}
|
|
119
|
+
.panels-with-border-active-step-level2 {
|
|
120
|
+
@apply px-6 py-5 flex items-start text-sm font-medium lg:pl-9;
|
|
121
|
+
}
|
|
122
|
+
.panels-with-border-active-step-level21 {
|
|
123
|
+
@apply flex-shrink-0;
|
|
124
|
+
}
|
|
125
|
+
.panels-with-border-active-step-level211 {
|
|
126
|
+
@apply w-10 h-10 flex items-center justify-center border-2 border-blue-600 rounded-full;
|
|
127
|
+
}
|
|
128
|
+
.panels-with-border-active-step-level211-text {
|
|
129
|
+
@apply text-blue-600;
|
|
130
|
+
}
|
|
131
|
+
.panels-with-border-active-step-level22 {
|
|
132
|
+
@apply mt-0.5 ml-4 min-w-0 flex flex-col;
|
|
133
|
+
}
|
|
134
|
+
.panels-with-border-active-step-level221 {
|
|
135
|
+
@apply text-xs font-semibold text-blue-600 tracking-wide uppercase;
|
|
136
|
+
}
|
|
137
|
+
.panels-with-border-active-step-level222 {
|
|
138
|
+
@apply text-sm font-medium text-gray-500;
|
|
139
|
+
}
|
|
140
|
+
.panels-with-border-step-separator {
|
|
141
|
+
@apply hidden absolute top-0 left-0 w-3 inset-0 lg:block;
|
|
142
|
+
}
|
|
143
|
+
.panels-with-border-upcoming-step {
|
|
144
|
+
@apply border border-gray-200 overflow-hidden border-t-0 rounded-b-md lg:border-0;
|
|
145
|
+
}
|
|
146
|
+
.panels-with-border-upcoming-step-level1 {
|
|
147
|
+
@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;
|
|
148
|
+
}
|
|
149
|
+
.panels-with-border-upcoming-step-level2 {
|
|
150
|
+
@apply px-6 py-5 flex items-start text-sm font-medium lg:pl-9;
|
|
151
|
+
}
|
|
152
|
+
.panels-with-border-upcoming-step-level21 {
|
|
153
|
+
@apply flex-shrink-0;
|
|
154
|
+
}
|
|
155
|
+
.panels-with-border-upcoming-step-level211 {
|
|
156
|
+
@apply w-10 h-10 flex items-center justify-center border-2 border-gray-300 rounded-full;
|
|
157
|
+
}
|
|
158
|
+
.panels-with-border-upcoming-step-level211-text {
|
|
159
|
+
@apply text-gray-500;
|
|
160
|
+
}
|
|
161
|
+
.panels-with-border-upcoming-step-level22 {
|
|
162
|
+
@apply mt-0.5 ml-4 min-w-0 flex flex-col;
|
|
163
|
+
}
|
|
164
|
+
.panels-with-border-upcoming-step-level221 {
|
|
165
|
+
@apply text-xs font-semibold text-gray-500 tracking-wide uppercase;
|
|
166
|
+
}
|
|
167
|
+
.panels-with-border-upcoming-step-level222 {
|
|
168
|
+
@apply text-sm font-medium text-gray-500;
|
|
169
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
.tab-group-select-hidden {
|
|
2
|
-
@apply sm:hidden;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.tab-group-select {
|
|
6
|
-
@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;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.tab-active {
|
|
10
|
-
@apply border-gray-500 text-gray-900 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.tab {
|
|
14
|
-
@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;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.tab-group-container-nav {
|
|
18
|
-
@apply -mb-px flex space-x-8;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.tab-group-container-hidden {
|
|
22
|
-
@apply hidden sm:block;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.tab-group-container {
|
|
26
|
-
@apply border-b border-gray-200;
|
|
27
|
-
}
|
|
1
|
+
.tab-group-select-hidden {
|
|
2
|
+
@apply sm:hidden;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.tab-group-select {
|
|
6
|
+
@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;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.tab-active {
|
|
10
|
+
@apply border-gray-500 text-gray-900 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.tab {
|
|
14
|
+
@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;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.tab-group-container-nav {
|
|
18
|
+
@apply -mb-px flex space-x-8;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.tab-group-container-hidden {
|
|
22
|
+
@apply hidden sm:block;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.tab-group-container {
|
|
26
|
+
@apply border-b border-gray-200;
|
|
27
|
+
}
|
|
@@ -1,70 +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
|
-
}
|
|
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
|
+
}
|
|
@@ -1,51 +1,51 @@
|
|
|
1
|
-
.toggle-button-button {
|
|
2
|
-
@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;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.toggle-button-button-disabled {
|
|
6
|
-
@apply opacity-75;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.toggle-button-bg-false {
|
|
10
|
-
@apply bg-gray-200;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.toggle-button-bg-true {
|
|
14
|
-
@apply bg-gray-600;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.toggle-button-icon-container {
|
|
18
|
-
@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;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.toggle-button-icon-container-true {
|
|
22
|
-
@apply translate-x-5;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.toggle-button-icon-container-false {
|
|
26
|
-
@apply translate-x-0;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.toggle-button-icon-container-inner {
|
|
30
|
-
@apply opacity-100 ease-in duration-200 absolute inset-0 flex h-full w-full items-center justify-center transition-opacity;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.toggle-button-container-inner-true {
|
|
34
|
-
@apply opacity-0 ease-out duration-100;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.toggle-button-container-inner-false {
|
|
38
|
-
@apply opacity-100 ease-in duration-200;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.toggle-button-icon {
|
|
42
|
-
@apply h-3 w-3 text-gray-600;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.toggle-button-text {
|
|
46
|
-
@apply text-sm font-medium text-gray-900;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.toggle-button-description {
|
|
50
|
-
@apply text-xs mt-1 text-gray-500;
|
|
51
|
-
}
|
|
1
|
+
.toggle-button-button {
|
|
2
|
+
@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;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.toggle-button-button-disabled {
|
|
6
|
+
@apply opacity-75;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.toggle-button-bg-false {
|
|
10
|
+
@apply bg-gray-200;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.toggle-button-bg-true {
|
|
14
|
+
@apply bg-gray-600;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.toggle-button-icon-container {
|
|
18
|
+
@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;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.toggle-button-icon-container-true {
|
|
22
|
+
@apply translate-x-5;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.toggle-button-icon-container-false {
|
|
26
|
+
@apply translate-x-0;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.toggle-button-icon-container-inner {
|
|
30
|
+
@apply opacity-100 ease-in duration-200 absolute inset-0 flex h-full w-full items-center justify-center transition-opacity;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.toggle-button-container-inner-true {
|
|
34
|
+
@apply opacity-0 ease-out duration-100;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.toggle-button-container-inner-false {
|
|
38
|
+
@apply opacity-100 ease-in duration-200;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.toggle-button-icon {
|
|
42
|
+
@apply h-3 w-3 text-gray-600;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.toggle-button-text {
|
|
46
|
+
@apply text-sm font-medium text-gray-900;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.toggle-button-description {
|
|
50
|
+
@apply text-xs mt-1 text-gray-500;
|
|
51
|
+
}
|