@seamapi/react 4.0.0-beta.1 → 4.0.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.
@@ -331,104 +331,6 @@
331
331
  justify-content: center;
332
332
  align-items: center;
333
333
  }
334
-
335
- .seam-climate-setting-schedule-card {
336
- background: colors.$bg-a;
337
- border-radius: 16px;
338
-
339
- .seam-climate-setting-schedule-content {
340
- display: flex;
341
- flex-direction: column;
342
-
343
- .seam-climate-setting-schedule-summary-container {
344
- padding: 16px;
345
- display: flex;
346
- width: 100%;
347
- gap: 8px;
348
-
349
- .seam-climate-setting-schedule-icon-block {
350
- padding: 8px;
351
- }
352
-
353
- .seam-climate-setting-schedule-summary {
354
- display: flex;
355
- flex-direction: column;
356
-
357
- .seam-climate-setting-schedule-heading {
358
- font-weight: 600;
359
- font-size: 21px;
360
- line-height: 132%;
361
- margin-bottom: 8px;
362
- }
363
-
364
- .seam-climate-setting-schedule-subheading {
365
- display: flex;
366
- align-items: center;
367
- color: colors.$text-gray-1;
368
- line-height: 118%;
369
-
370
- .seam-dot-divider {
371
- color: colors.$text-gray-3;
372
- width: 16px;
373
- display: flex;
374
- justify-content: center;
375
- }
376
- }
377
- }
378
- }
379
-
380
- .seam-climate-setting-schedule-device-bar {
381
- border-top: 1px solid colors.$bg-c;
382
- padding: 16px;
383
- display: flex;
384
- align-items: center;
385
- justify-content: space-between;
386
- cursor: pointer;
387
-
388
- .seam-device-image {
389
- width: 30px;
390
- height: 30px;
391
- margin-right: 16px;
392
-
393
- img {
394
- width: 100%;
395
- max-height: 100%;
396
- }
397
- }
398
-
399
- .seam-climate-setting-schedule-device-content {
400
- display: flex;
401
- align-items: center;
402
- width: 100%;
403
- font-weight: 400;
404
- font-size: 14px;
405
- line-height: 134%;
406
-
407
- .seam-climate-setting-schedule-device-details {
408
- display: flex;
409
- flex-direction: column;
410
- gap: 2.5px;
411
-
412
- .seam-device-name {
413
- color: colors.$text-gray-1;
414
- }
415
-
416
- .seam-device-current-climate-setting {
417
- line-height: 118%;
418
- color: colors.$text-gray-2;
419
- display: flex;
420
- align-items: center;
421
- gap: 8px;
422
- }
423
- }
424
- }
425
- }
426
- }
427
-
428
- .seam-climate-setting-schedule-device-chevron {
429
- transform: rotate(270deg);
430
- }
431
- }
432
334
  }
433
335
 
434
336
  @mixin thermostat-card {
@@ -1,44 +0,0 @@
1
- @use './colors';
2
-
3
- @mixin all {
4
- .seam-climate-setting-schedule-details {
5
- .seam-climate-setting-schedule-details-content {
6
- margin: 0 16px;
7
- }
8
-
9
- .seam-climate-setting-details-value {
10
- font-style: normal;
11
- font-weight: 400;
12
- line-height: 118%;
13
- font-size: 14px;
14
- color: colors.$text-gray-1;
15
-
16
- &.seam-climate-setting-details-schedule-range {
17
- display: flex;
18
- align-items: center;
19
- }
20
- }
21
-
22
- .seam-default-setting-message-container {
23
- display: flex;
24
- justify-content: center;
25
- margin: 16px 0;
26
-
27
- .seam-default-setting-message {
28
- font-size: 14px;
29
- font-style: normal;
30
- font-weight: 400;
31
- line-height: 115%;
32
- color: colors.$text-gray-2;
33
-
34
- .seam-default-setting-text {
35
- color: colors.$text-gray-1;
36
- }
37
- }
38
- }
39
-
40
- .seam-creation-date {
41
- color: colors.$text-gray-1;
42
- }
43
- }
44
- }
@@ -1,111 +0,0 @@
1
- @use './colors';
2
-
3
- @mixin all {
4
- .seam-climate-setting-schedule-form {
5
- @include main;
6
- @include name-and-schedule;
7
- @include default-climate-setting;
8
- @include climate-setting;
9
- }
10
- }
11
-
12
- @mixin main {
13
- > .seam-main {
14
- padding: 24px 24px 0;
15
- }
16
-
17
- .seam-actions {
18
- display: flex;
19
- gap: 8px;
20
- justify-content: center;
21
-
22
- .seam-btn {
23
- width: 96px;
24
- }
25
- }
26
- }
27
-
28
- @mixin name-and-schedule {
29
- .seam-climate-setting-schedule-form-name-and-schedule {
30
- .seam-time-zone {
31
- display: flex;
32
- align-items: center;
33
- font-size: 14px;
34
- margin-top: -6px;
35
- margin-bottom: 4px;
36
-
37
- .seam-label {
38
- color: colors.$text-gray-2;
39
- margin-right: 4px;
40
- }
41
-
42
- .seam-selected {
43
- color: colors.$primary;
44
- cursor: pointer;
45
- display: flex;
46
- align-items: center;
47
-
48
- svg {
49
- scale: 0.6667;
50
- transform: translate(-6px, 2px);
51
-
52
- * {
53
- fill: colors.$primary;
54
- }
55
- }
56
- }
57
- }
58
- }
59
- }
60
-
61
- @mixin default-climate-setting {
62
- .seam-climate-setting-schedule-form-default-climate-setting {
63
- .seam-control-group-title {
64
- margin-top: 16px;
65
- margin-bottom: 16px;
66
- }
67
-
68
- .seam-label {
69
- color: colors.$text-gray-1;
70
- font-size: 14px;
71
- }
72
-
73
- .seam-default-climate-setting-message {
74
- > p {
75
- color: colors.$text-gray-1;
76
- font-size: 14px;
77
- margin-bottom: 16px;
78
- }
79
-
80
- margin-top: 4px;
81
- border-bottom: 1px solid colors.$divider-stroke-light;
82
- }
83
-
84
- .seam-climate-setting-control-group {
85
- margin-bottom: 32px;
86
- }
87
- }
88
- }
89
-
90
- @mixin climate-setting {
91
- .seam-climate-setting-schedule-form-climate-setting {
92
- .seam-content {
93
- display: flex;
94
- flex-direction: column;
95
- gap: 16px;
96
- width: 100%;
97
- margin-top: 24px;
98
- margin-bottom: 24px;
99
-
100
- .seam-label {
101
- color: colors.$text-gray-2;
102
- font-size: 14px;
103
- }
104
-
105
- .seam-climate-setting-slider-container {
106
- display: flex;
107
- justify-content: center;
108
- }
109
- }
110
- }
111
- }