dhre-component-lib 0.2.1 → 0.2.3

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.
@@ -1,61 +1,41 @@
1
- .mapContainerStyle {
2
- width: 100%;
3
- height: 100%;
4
- position: absolute;
5
- }
6
-
7
- .button {
8
- padding: 8px 16px;
1
+ .badge {
2
+ display: inline-block;
3
+ padding: 6px 12px;
4
+ background-color: red;
5
+ color: white;
6
+ border-radius: 12px;
9
7
  font-size: 14px;
10
- border-radius: 4px;
11
- border: none;
8
+ text-align: center;
12
9
  cursor: pointer;
13
- transition: background-color 0.3s ease;
14
- }
15
- .button.text {
16
- background-color: transparent;
17
- color: inherit;
18
- }
19
- .button.outlined {
20
- background-color: transparent;
21
- border: 2px solid currentColor;
22
- }
23
- .button.contained {
24
- background-color: currentColor;
25
- color: #fff;
26
- }
27
- .button.contained.primary:hover {
28
- background-color: #1565c0;
29
- }
30
- .button.contained.secondary:hover {
31
- background-color: #7b1fa2;
32
- }
33
- .button.contained.success:hover {
34
- background-color: #388e3c;
35
- }
36
- .button.contained.error:hover {
37
- background-color: #d32f2f;
38
10
  }
39
- .button.contained.warning:hover {
40
- background-color: #f57c00;
41
- }
42
- .button.contained.info:hover {
43
- background-color: #1976d2;
11
+ .badge:hover {
12
+ background-color: darkred;
44
13
  }
45
- .button.primary {
46
- color: #1976d2;
14
+
15
+ .breadcrumb {
16
+ display: flex;
17
+ align-items: center;
18
+ font-size: 16px;
47
19
  }
48
- .button.secondary {
49
- color: #9c27b0;
20
+
21
+ .breadcrumbItem {
22
+ color: blue;
23
+ cursor: pointer;
24
+ margin-right: 8px;
50
25
  }
51
- .button.success {
52
- color: #4caf50;
26
+ .breadcrumbItem:hover {
27
+ text-decoration: underline;
53
28
  }
54
- .button.error {
55
- color: #f44336;
29
+
30
+ .separator {
31
+ margin: 0 8px;
32
+ color: grey;
56
33
  }
57
- .button.warning {
58
- color: yellow;
34
+
35
+ .mapContainerStyle {
36
+ width: 100%;
37
+ height: 100%;
38
+ position: absolute;
59
39
  }
60
40
 
61
41
  .otpMainContainer {
@@ -146,40 +126,6 @@
146
126
  transform: rotate(360deg);
147
127
  }
148
128
  }
149
- .breadcrumb {
150
- display: flex;
151
- align-items: center;
152
- font-size: 16px;
153
- }
154
-
155
- .breadcrumbItem {
156
- color: blue;
157
- cursor: pointer;
158
- margin-right: 8px;
159
- }
160
- .breadcrumbItem:hover {
161
- text-decoration: underline;
162
- }
163
-
164
- .separator {
165
- margin: 0 8px;
166
- color: grey;
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
129
  .container {
184
130
  display: flex;
185
131
  flex-direction: column;
@@ -244,4 +190,57 @@
244
190
  100% {
245
191
  transform: rotate(360deg);
246
192
  }
193
+ }
194
+ .button {
195
+ padding: 8px 16px;
196
+ font-size: 14px;
197
+ border-radius: 4px;
198
+ border: none;
199
+ cursor: pointer;
200
+ transition: background-color 0.3s ease;
201
+ }
202
+ .button.text {
203
+ background-color: transparent;
204
+ color: inherit;
205
+ }
206
+ .button.outlined {
207
+ background-color: transparent;
208
+ border: 2px solid currentColor;
209
+ }
210
+ .button.contained {
211
+ background-color: currentColor;
212
+ color: #fff;
213
+ }
214
+ .button.contained.primary:hover {
215
+ background-color: #1565c0;
216
+ }
217
+ .button.contained.secondary:hover {
218
+ background-color: #7b1fa2;
219
+ }
220
+ .button.contained.success:hover {
221
+ background-color: #388e3c;
222
+ }
223
+ .button.contained.error:hover {
224
+ background-color: #d32f2f;
225
+ }
226
+ .button.contained.warning:hover {
227
+ background-color: #f57c00;
228
+ }
229
+ .button.contained.info:hover {
230
+ background-color: #1976d2;
231
+ }
232
+ .button.primary {
233
+ color: #1976d2;
234
+ }
235
+ .button.secondary {
236
+ color: #9c27b0;
237
+ }
238
+ .button.success {
239
+ color: #4caf50;
240
+ }
241
+ .button.error {
242
+ color: #f44336;
243
+ }
244
+ .button.warning {
245
+ color: yellow;
247
246
  }
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.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "test": "jest",