dhre-component-lib 0.2.1 → 0.2.2

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.
@@ -0,0 +1,247 @@
1
+ .mapContainerStyle {
2
+ width: 100%;
3
+ height: 100%;
4
+ position: absolute;
5
+ }
6
+
7
+ .otpMainContainer {
8
+ display: flex;
9
+ justify-content: center;
10
+ flex-direction: column;
11
+ margin: 10px;
12
+ width: 343px;
13
+ }
14
+
15
+ .otpInputDiv {
16
+ flex-direction: row;
17
+ gap: 12px;
18
+ display: flex;
19
+ }
20
+
21
+ .otpInput {
22
+ width: 76px;
23
+ height: 48px;
24
+ text-align: center;
25
+ font-size: 18px;
26
+ font-weight: 400;
27
+ border-radius: 8px;
28
+ }
29
+
30
+ .resendContainer {
31
+ display: flex;
32
+ flex-direction: row;
33
+ margin-top: 10px;
34
+ justify-content: space-between;
35
+ }
36
+
37
+ .errorText {
38
+ color: #EB0542;
39
+ font-weight: 400;
40
+ font-size: 14px;
41
+ }
42
+
43
+ .timerText {
44
+ color: #A7A7A7;
45
+ font-weight: 400;
46
+ font-size: 14px;
47
+ }
48
+
49
+ .resendText {
50
+ color: #A7A7A7;
51
+ font-weight: 700;
52
+ font-size: 14px;
53
+ }
54
+
55
+ .breadcrumb {
56
+ display: flex;
57
+ align-items: center;
58
+ font-size: 16px;
59
+ }
60
+
61
+ .breadcrumbItem {
62
+ color: blue;
63
+ cursor: pointer;
64
+ margin-right: 8px;
65
+ }
66
+ .breadcrumbItem:hover {
67
+ text-decoration: underline;
68
+ }
69
+
70
+ .separator {
71
+ margin: 0 8px;
72
+ color: grey;
73
+ }
74
+
75
+ .button {
76
+ padding: 8px 16px;
77
+ font-size: 14px;
78
+ border-radius: 4px;
79
+ border: none;
80
+ cursor: pointer;
81
+ transition: background-color 0.3s ease;
82
+ }
83
+ .button.text {
84
+ background-color: transparent;
85
+ color: inherit;
86
+ }
87
+ .button.outlined {
88
+ background-color: transparent;
89
+ border: 2px solid currentColor;
90
+ }
91
+ .button.contained {
92
+ background-color: currentColor;
93
+ color: #fff;
94
+ }
95
+ .button.contained.primary:hover {
96
+ background-color: #1565c0;
97
+ }
98
+ .button.contained.secondary:hover {
99
+ background-color: #7b1fa2;
100
+ }
101
+ .button.contained.success:hover {
102
+ background-color: #388e3c;
103
+ }
104
+ .button.contained.error:hover {
105
+ background-color: #d32f2f;
106
+ }
107
+ .button.contained.warning:hover {
108
+ background-color: #f57c00;
109
+ }
110
+ .button.contained.info:hover {
111
+ background-color: #1976d2;
112
+ }
113
+ .button.primary {
114
+ color: #1976d2;
115
+ }
116
+ .button.secondary {
117
+ color: #9c27b0;
118
+ }
119
+ .button.success {
120
+ color: #4caf50;
121
+ }
122
+ .button.error {
123
+ color: #f44336;
124
+ }
125
+ .button.warning {
126
+ color: yellow;
127
+ }
128
+
129
+ .spinner {
130
+ border-style: solid;
131
+ border-radius: 50%;
132
+ border-color: transparent;
133
+ border-top-color: currentColor;
134
+ animation: spin 1s linear infinite;
135
+ }
136
+
137
+ .spinner.primary {
138
+ color: #007bff;
139
+ }
140
+
141
+ .spinner.secondary {
142
+ color: #6c757d;
143
+ }
144
+
145
+ .spinner.error {
146
+ color: #dc3545;
147
+ }
148
+
149
+ .spinner.success {
150
+ color: #28a745;
151
+ }
152
+
153
+ .spinner.info {
154
+ color: #17a2b8;
155
+ }
156
+
157
+ .spinner.warning {
158
+ color: #ffc107;
159
+ }
160
+
161
+ @keyframes spin {
162
+ 0% {
163
+ transform: rotate(0deg);
164
+ }
165
+ 100% {
166
+ transform: rotate(360deg);
167
+ }
168
+ }
169
+ .badge {
170
+ display: inline-block;
171
+ padding: 6px 12px;
172
+ background-color: red;
173
+ color: white;
174
+ border-radius: 12px;
175
+ font-size: 14px;
176
+ text-align: center;
177
+ cursor: pointer;
178
+ }
179
+ .badge:hover {
180
+ background-color: darkred;
181
+ }
182
+
183
+ .container {
184
+ display: flex;
185
+ flex-direction: column;
186
+ align-items: center;
187
+ justify-content: center;
188
+ }
189
+
190
+ .spinner {
191
+ border: 2px solid transparent;
192
+ border-radius: 50%;
193
+ border-top: 2px solid currentColor;
194
+ animation: spin 1s linear infinite;
195
+ }
196
+
197
+ .spinnerInner {
198
+ width: 100%;
199
+ height: 100%;
200
+ border-radius: 50%;
201
+ }
202
+
203
+ .errorText {
204
+ color: red;
205
+ }
206
+
207
+ .button {
208
+ padding: 8px 16px;
209
+ border: none;
210
+ border-radius: 4px;
211
+ cursor: pointer;
212
+ font-size: 16px;
213
+ }
214
+ .button-text {
215
+ background: none;
216
+ }
217
+ .button-outlined {
218
+ border: 1px solid currentColor;
219
+ }
220
+ .button-contained {
221
+ background-color: currentColor;
222
+ color: white;
223
+ }
224
+ .button-primary {
225
+ color: blue;
226
+ }
227
+ .button-secondary {
228
+ color: gray;
229
+ }
230
+ .button-small {
231
+ font-size: 12px;
232
+ }
233
+ .button-medium {
234
+ font-size: 16px;
235
+ }
236
+ .button-large {
237
+ font-size: 20px;
238
+ }
239
+
240
+ @keyframes spin {
241
+ 0% {
242
+ transform: rotate(0deg);
243
+ }
244
+ 100% {
245
+ transform: rotate(360deg);
246
+ }
247
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhre-component-lib",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "test": "jest",