@integry/sdk 4.6.45 → 4.6.46

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.
@@ -130,6 +130,62 @@
130
130
  }
131
131
  }
132
132
 
133
+ /* AI Assist Toggle Styles */
134
+ .fieldWrapperWithAIAssist {
135
+ position: relative;
136
+ width: 100%;
137
+ }
138
+
139
+ .aiAssistToggleContainer {
140
+ position: absolute;
141
+ top: 0;
142
+ right: 0;
143
+ z-index: 1;
144
+ }
145
+
146
+ .aiAssistToggleLabel {
147
+ display: flex;
148
+ align-items: center;
149
+ font-size: 12px;
150
+ color: #666;
151
+ cursor: pointer;
152
+ }
153
+
154
+ .aiAssistToggleLabel span {
155
+ margin-right: 5px;
156
+ }
157
+
158
+ .aiAssistToggle {
159
+ appearance: none;
160
+ width: 30px;
161
+ height: 16px;
162
+ background-color: #cccccc;
163
+ border-radius: 10px;
164
+ position: relative;
165
+ cursor: pointer;
166
+ transition: background-color 0.3s;
167
+ }
168
+
169
+ .aiAssistToggle:checked {
170
+ background-color: #4a90e2;
171
+ }
172
+
173
+ .aiAssistToggle:before {
174
+ content: '';
175
+ position: absolute;
176
+ width: 12px;
177
+ height: 12px;
178
+ border-radius: 50%;
179
+ top: 2px;
180
+ left: 2px;
181
+ background-color: white;
182
+ transition: transform 0.3s;
183
+ }
184
+
185
+ .aiAssistToggle:checked:before {
186
+ transform: translateX(14px);
187
+ }
188
+
133
189
  .unsupported {
134
190
  font-size: 12px;
135
191
  color: #ca8c1b;