opus-react 0.6.14 → 0.6.15

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/dist/index.css CHANGED
@@ -22161,6 +22161,163 @@ button.opus_Fxxd7-_card:focus-visible {
22161
22161
  top: 0;
22162
22162
  }
22163
22163
 
22164
+ /* components/InfiniteSelectableList/InfiniteSelectableList.module.css */
22165
+ .opus_5JC2Q6_viewport {
22166
+ border: 1px solid var(--opus-border);
22167
+ border-radius: var(--opus-radius, 12px);
22168
+ background: radial-gradient(85% 65% at 14% 0%, color-mix(in srgb, var(--opus-accent) 13%, transparent), transparent 58%),
22169
+ radial-gradient(72% 58% at 100% 100%, color-mix(in srgb, var(--opus-accent-secondary, #0284c7) 10%, transparent), transparent 62%),
22170
+ var(--dashboard-section-bg, var(--opus-panel));
22171
+ overscroll-behavior: contain;
22172
+ touch-action: pan-y;
22173
+ outline: none;
22174
+ position: relative;
22175
+ overflow: auto;
22176
+ box-shadow: inset 0 1px #ffffff0d;
22177
+ }
22178
+
22179
+ .opus_5JC2Q6_viewport:focus-visible {
22180
+ box-shadow: 0 0 0 2px color-mix(in srgb, var(--opus-accent) 52%, transparent);
22181
+ }
22182
+
22183
+ .opus_5JC2Q6_viewport[data-custom-scrollbar="true"] {
22184
+ scrollbar-width: none;
22185
+ }
22186
+
22187
+ .opus_5JC2Q6_viewport[data-custom-scrollbar="true"]::-webkit-scrollbar {
22188
+ display: none;
22189
+ }
22190
+
22191
+ .opus_5JC2Q6_row {
22192
+ box-sizing: border-box;
22193
+ inset-inline: 0;
22194
+ border-bottom: 1px solid var(--opus-border);
22195
+ color: var(--opus-text);
22196
+ cursor: default;
22197
+ user-select: none;
22198
+ padding: 10px 24px 10px 14px;
22199
+ transition: background .12s, box-shadow .12s;
22200
+ position: absolute;
22201
+ top: 0;
22202
+ }
22203
+
22204
+ .opus_5JC2Q6_row:hover {
22205
+ background: color-mix(in srgb, var(--opus-accent) 7%, transparent);
22206
+ }
22207
+
22208
+ .opus_5JC2Q6_row[data-selected] {
22209
+ background: linear-gradient(90deg, color-mix(in srgb, var(--opus-accent) 24%, transparent), color-mix(in srgb, var(--opus-accent-secondary, var(--opus-accent)) 10%, transparent));
22210
+ }
22211
+
22212
+ .opus_5JC2Q6_row[data-focused] {
22213
+ box-shadow: inset 3px 0 0 var(--opus-accent);
22214
+ }
22215
+
22216
+ .opus_5JC2Q6_row[aria-disabled="true"] {
22217
+ cursor: not-allowed;
22218
+ opacity: .48;
22219
+ }
22220
+
22221
+ .opus_5JC2Q6_rowContent {
22222
+ min-width: 0;
22223
+ height: 100%;
22224
+ }
22225
+
22226
+ .opus_5JC2Q6_rowWithIndicator {
22227
+ grid-template-columns: 20px minmax(0, 1fr);
22228
+ align-items: center;
22229
+ gap: 10px;
22230
+ min-width: 0;
22231
+ height: 100%;
22232
+ display: grid;
22233
+ }
22234
+
22235
+ .opus_5JC2Q6_selectionControl {
22236
+ cursor: pointer;
22237
+ place-items: center;
22238
+ width: 18px;
22239
+ height: 18px;
22240
+ display: grid;
22241
+ position: relative;
22242
+ }
22243
+
22244
+ .opus_5JC2Q6_selectionInput {
22245
+ clip: rect(0, 0, 0, 0);
22246
+ white-space: nowrap;
22247
+ opacity: 0;
22248
+ width: 1px;
22249
+ height: 1px;
22250
+ margin: -1px;
22251
+ position: absolute;
22252
+ overflow: hidden;
22253
+ }
22254
+
22255
+ .opus_5JC2Q6_selectionVisual {
22256
+ box-sizing: border-box;
22257
+ border: 1px solid var(--opus-border-strong);
22258
+ border-radius: var(--opus-input-radius, 5px);
22259
+ background: var(--opus-input-bg);
22260
+ width: 18px;
22261
+ height: 18px;
22262
+ position: relative;
22263
+ box-shadow: inset 0 1px #ffffff0f;
22264
+ }
22265
+
22266
+ .opus_5JC2Q6_selectionControl[data-kind="radio"] .opus_5JC2Q6_selectionVisual {
22267
+ border-radius: 50%;
22268
+ }
22269
+
22270
+ .opus_5JC2Q6_selectionVisual:after {
22271
+ content: "";
22272
+ opacity: 0;
22273
+ position: absolute;
22274
+ top: 50%;
22275
+ left: 50%;
22276
+ transform: translate(-50%, -50%);
22277
+ }
22278
+
22279
+ .opus_5JC2Q6_selectionControl[data-kind="checkbox"] .opus_5JC2Q6_selectionVisual:after {
22280
+ border-bottom: 2px solid #fff;
22281
+ border-left: 2px solid #fff;
22282
+ width: 8px;
22283
+ height: 4px;
22284
+ transform: translate(-50%, -65%) rotate(-45deg);
22285
+ }
22286
+
22287
+ .opus_5JC2Q6_selectionControl[data-kind="radio"] .opus_5JC2Q6_selectionVisual:after {
22288
+ background: var(--opus-accent);
22289
+ border-radius: 50%;
22290
+ width: 8px;
22291
+ height: 8px;
22292
+ }
22293
+
22294
+ .opus_5JC2Q6_selectionInput:checked + .opus_5JC2Q6_selectionVisual {
22295
+ border-color: color-mix(in srgb, var(--opus-accent) 72%, var(--opus-border-strong));
22296
+ }
22297
+
22298
+ .opus_5JC2Q6_selectionControl[data-kind="checkbox"] .opus_5JC2Q6_selectionInput:checked + .opus_5JC2Q6_selectionVisual {
22299
+ background: linear-gradient(135deg,
22300
+ var(--opus-accent),
22301
+ color-mix(in srgb, var(--opus-accent) 42%, var(--opus-accent-secondary, #00d2ff)));
22302
+ }
22303
+
22304
+ .opus_5JC2Q6_selectionInput:checked + .opus_5JC2Q6_selectionVisual:after {
22305
+ opacity: 1;
22306
+ }
22307
+
22308
+ .opus_5JC2Q6_loadingRow {
22309
+ color: var(--opus-muted);
22310
+ place-items: center;
22311
+ font-size: .875rem;
22312
+ display: grid;
22313
+ }
22314
+
22315
+ @media (prefers-reduced-motion: reduce) {
22316
+ .opus_5JC2Q6_row {
22317
+ transition: none;
22318
+ }
22319
+ }
22320
+
22164
22321
  /* components/ProductTour/ProductTour.module.css */
22165
22322
  .opus_I9WMvX_layer {
22166
22323
  z-index: 10000;