@seamapi/react 4.0.0-beta.1 → 4.1.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 +2 -2
- package/dist/elements.js +16539 -16209
- package/dist/elements.js.map +1 -1
- package/dist/index.css +8 -193
- package/dist/index.css.map +1 -1
- package/dist/index.min.css +1 -1
- package/dist/index.min.css.map +1 -1
- package/lib/seam/components/AccessCodeDetails/AccessCodeDetails.js +1 -1
- package/lib/seam/components/AccessCodeDetails/AccessCodeDetails.js.map +1 -1
- package/lib/seam/components/AccessCodeDetails/AccessCodeDevice.js +1 -1
- package/lib/seam/components/AccessCodeDetails/AccessCodeDevice.js.map +1 -1
- package/lib/seam/components/AccessCodeTable/AccessCodeTable.d.ts +1 -1
- package/lib/seam/components/AccessCodeTable/AccessCodeTable.js +11 -2
- package/lib/seam/components/AccessCodeTable/AccessCodeTable.js.map +1 -1
- package/lib/seam/components/DeviceDetails/LockDeviceDetails.js +3 -3
- package/lib/seam/components/DeviceDetails/LockDeviceDetails.js.map +1 -1
- package/lib/seam/components/DeviceDetails/ThermostatDeviceDetails.js +0 -6
- package/lib/seam/components/DeviceDetails/ThermostatDeviceDetails.js.map +1 -1
- package/lib/seam/locks/lock-device.js +9 -1
- package/lib/seam/locks/lock-device.js.map +1 -1
- package/lib/seam/thermostats/thermostat-device.d.ts +0 -1
- package/lib/seam/thermostats/thermostat-device.js.map +1 -1
- package/lib/ui/device/LockStatus.js +3 -0
- package/lib/ui/device/LockStatus.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/lib/version.js.map +1 -1
- package/package.json +8 -8
- package/src/lib/seam/components/AccessCodeDetails/AccessCodeDetails.tsx +2 -2
- package/src/lib/seam/components/AccessCodeDetails/AccessCodeDevice.tsx +1 -1
- package/src/lib/seam/components/AccessCodeTable/AccessCodeTable.tsx +19 -8
- package/src/lib/seam/components/DeviceDetails/LockDeviceDetails.tsx +27 -20
- package/src/lib/seam/components/DeviceDetails/ThermostatDeviceDetails.tsx +0 -7
- package/src/lib/seam/locks/lock-device.ts +11 -2
- package/src/lib/seam/thermostats/thermostat-device.ts +0 -1
- package/src/lib/ui/device/LockStatus.tsx +4 -0
- package/src/lib/version.ts +1 -1
- package/src/styles/_main.scss +0 -4
- package/src/styles/_thermostat.scss +0 -98
- package/src/styles/_climate-setting-schedule-details.scss +0 -44
- package/src/styles/_climate-setting-schedule-form.scss +0 -111
|
@@ -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
|
-
}
|