oziko-ui-kit 0.0.140 → 0.0.148
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/components/atoms/inputs/minimized/multi-selection/MultiSelection.d.ts +1 -1
- package/dist/components/atoms/relation-input/RelationInput.d.ts +3 -2
- package/dist/index.css +363 -66
- package/dist/index.export.d.ts +0 -1
- package/dist/index.mjs +16 -16
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -7,5 +7,5 @@ export type TypeMultiSelectionInput = {
|
|
|
7
7
|
value?: TypeValue;
|
|
8
8
|
selectProps?: TypeSelect;
|
|
9
9
|
} & TypeFluidContainer;
|
|
10
|
-
declare const MultipleSelectionMinimizedInput: ({ options, value, onChange,
|
|
10
|
+
declare const MultipleSelectionMinimizedInput: ({ options, value, selectProps: _selectProps, onChange: _onChange, className, prefix: _prefix, root: _root, suffix: _suffix, mode: _mode, ...props }: TypeMultiSelectionInput) => import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export default MultipleSelectionMinimizedInput;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { TypeBaseInputProps } from "../base-input/BaseInput";
|
|
2
1
|
import React from "react";
|
|
3
2
|
import { TypeRelationSelect } from "./relation-select/RelationSelect";
|
|
4
3
|
import { TypeFluidContainer } from "../fluid-container/FluidContainer";
|
|
4
|
+
import { TypeBaseInputProps } from "../base-input/BaseInput";
|
|
5
5
|
import { TypeLabeledValue } from "../../../index.export";
|
|
6
6
|
export type RelationType = "onetoone" | "onetomany";
|
|
7
7
|
export type TypeRelationInput<T = TypeLabeledValue> = {
|
|
@@ -18,5 +18,6 @@ export type TypeRelationInput<T = TypeLabeledValue> = {
|
|
|
18
18
|
multiple?: boolean;
|
|
19
19
|
externalDropdownRef?: React.RefObject<HTMLDivElement>;
|
|
20
20
|
} & Omit<TypeBaseInputProps, "children">;
|
|
21
|
-
declare const
|
|
21
|
+
declare const RelationInput: <T extends TypeLabeledValue>({ label, description, value, onChange, selectProps, getOptions, loadMoreOptions, searchOptions, totalOptionsLength, multiple, externalDropdownRef, disabled, errorMessage, }: TypeRelationInput<T>) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
declare const _default: typeof RelationInput;
|
|
22
23
|
export default _default;
|
package/dist/index.css
CHANGED
|
@@ -120,6 +120,7 @@
|
|
|
120
120
|
--font-size-sm-plus: 11.5px;
|
|
121
121
|
--font-size-base: 12px;
|
|
122
122
|
--font-size-base-plus: 12.5px;
|
|
123
|
+
--font-size-button: 12px;
|
|
123
124
|
--font-size-md: 13px;
|
|
124
125
|
--font-size-lg: 14px;
|
|
125
126
|
--font-size-xl: 20px;
|
|
@@ -788,7 +789,7 @@ samp {
|
|
|
788
789
|
.Button-module_button__tvuyP.Button-module_sChip__Ca0Mj {
|
|
789
790
|
border-radius: 5px;
|
|
790
791
|
padding: 4px 9px;
|
|
791
|
-
font-size:
|
|
792
|
+
font-size: var(--font-size-base-plus);
|
|
792
793
|
font-weight: 500;
|
|
793
794
|
}
|
|
794
795
|
.Button-module_button__tvuyP.Button-module_sChip__Ca0Mj.Button-module_vOutlined__BPlxJ.Button-module_cPrimary__67oy- {
|
|
@@ -1861,7 +1862,7 @@ samp {
|
|
|
1861
1862
|
inset: 0;
|
|
1862
1863
|
width: 100vw;
|
|
1863
1864
|
height: 100vh;
|
|
1864
|
-
z-index: 1000;
|
|
1865
|
+
z-index: var(--z-index-overlay, 1000);
|
|
1865
1866
|
}
|
|
1866
1867
|
.SelectOption-module_option__wQb8V {
|
|
1867
1868
|
cursor: pointer;
|
|
@@ -1985,6 +1986,7 @@ samp {
|
|
|
1985
1986
|
|
|
1986
1987
|
.Popover-module_content__TTNdo {
|
|
1987
1988
|
position: absolute;
|
|
1989
|
+
z-index: var(--z-index-overlay, 1000);
|
|
1988
1990
|
box-shadow: var(--shadow-md);
|
|
1989
1991
|
padding: var(--spacing-9);
|
|
1990
1992
|
border-radius: var(--radius-md);
|
|
@@ -2816,6 +2818,7 @@ svg.leaflet-image-layer.leaflet-interactive path {
|
|
|
2816
2818
|
.Modal-module_modalContainer__CnoII {
|
|
2817
2819
|
position: fixed;
|
|
2818
2820
|
inset: 0;
|
|
2821
|
+
z-index: var(--z-index-overlay, 1000);
|
|
2819
2822
|
width: 100% !important;
|
|
2820
2823
|
height: 100% !important;
|
|
2821
2824
|
padding: 24px;
|
|
@@ -5289,100 +5292,375 @@ button.font-increment {
|
|
|
5289
5292
|
position: absolute;
|
|
5290
5293
|
bottom: -7px;
|
|
5291
5294
|
}
|
|
5292
|
-
.RelationInput-
|
|
5293
|
-
|
|
5295
|
+
.RelationInput-module_relationInput__BkCBq {
|
|
5296
|
+
position: relative;
|
|
5297
|
+
font-family: var(--font-sans);
|
|
5298
|
+
font-size: var(--font-size-md);
|
|
5299
|
+
}
|
|
5300
|
+
.RelationInput-module_relationInput__BkCBq.RelationInput-module_disabled__rFiQj {
|
|
5301
|
+
opacity: 0.5;
|
|
5302
|
+
pointer-events: none;
|
|
5294
5303
|
}
|
|
5295
5304
|
|
|
5296
|
-
.RelationInput-
|
|
5297
|
-
|
|
5305
|
+
.RelationInput-module_fieldLabel__QHtyi {
|
|
5306
|
+
display: flex;
|
|
5307
|
+
align-items: center;
|
|
5308
|
+
gap: var(--spacing-6);
|
|
5309
|
+
margin-bottom: var(--spacing-5);
|
|
5298
5310
|
}
|
|
5299
5311
|
|
|
5300
|
-
.RelationInput-
|
|
5301
|
-
|
|
5302
|
-
|
|
5303
|
-
|
|
5312
|
+
.RelationInput-module_fieldName__UjYlw {
|
|
5313
|
+
display: inline-flex;
|
|
5314
|
+
align-items: center;
|
|
5315
|
+
gap: var(--spacing-4);
|
|
5316
|
+
font-size: var(--font-size-base);
|
|
5317
|
+
font-weight: var(--font-weight-medium);
|
|
5318
|
+
color: var(--color-text-secondary);
|
|
5304
5319
|
}
|
|
5305
5320
|
|
|
5306
|
-
.RelationInput-
|
|
5307
|
-
|
|
5308
|
-
|
|
5321
|
+
.RelationInput-module_fieldTypeBadge__nwh6H {
|
|
5322
|
+
font-size: var(--font-size-xs);
|
|
5323
|
+
font-weight: var(--font-weight-semibold);
|
|
5324
|
+
letter-spacing: 0.04em;
|
|
5325
|
+
color: var(--color-text-muted);
|
|
5326
|
+
background: var(--color-surface-3);
|
|
5327
|
+
border: 1px solid var(--color-border);
|
|
5328
|
+
border-radius: var(--radius-sm);
|
|
5329
|
+
padding: 1px var(--spacing-5);
|
|
5330
|
+
font-family: var(--font-mono);
|
|
5309
5331
|
}
|
|
5310
|
-
|
|
5311
|
-
|
|
5312
|
-
|
|
5313
|
-
|
|
5314
|
-
|
|
5332
|
+
|
|
5333
|
+
.RelationInput-module_trigger__Ff9XC {
|
|
5334
|
+
display: flex;
|
|
5335
|
+
align-items: center;
|
|
5336
|
+
border: 1.5px solid var(--color-border);
|
|
5337
|
+
border-radius: 9px;
|
|
5338
|
+
background: var(--color-surface);
|
|
5315
5339
|
overflow: hidden;
|
|
5340
|
+
transition: border-color var(--transition-border), box-shadow var(--transition-border);
|
|
5316
5341
|
cursor: pointer;
|
|
5342
|
+
min-height: 42px;
|
|
5343
|
+
user-select: none;
|
|
5317
5344
|
}
|
|
5318
|
-
.
|
|
5319
|
-
|
|
5320
|
-
opacity: var(--opacity-disabled);
|
|
5345
|
+
.RelationInput-module_trigger__Ff9XC:hover {
|
|
5346
|
+
border-color: var(--color-border-mid);
|
|
5321
5347
|
}
|
|
5322
|
-
|
|
5323
|
-
|
|
5324
|
-
-
|
|
5325
|
-
|
|
5326
|
-
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
|
|
5331
|
-
|
|
5332
|
-
|
|
5333
|
-
|
|
5348
|
+
|
|
5349
|
+
.RelationInput-module_triggerOpen__JxjH4 {
|
|
5350
|
+
border-color: var(--color-accent) !important;
|
|
5351
|
+
box-shadow: 0 0 0 3px var(--color-accent-subtle);
|
|
5352
|
+
border-radius: 9px 9px 0 0 !important;
|
|
5353
|
+
}
|
|
5354
|
+
|
|
5355
|
+
.RelationInput-module_triggerError__jYs-E {
|
|
5356
|
+
border-color: var(--color-red) !important;
|
|
5357
|
+
box-shadow: 0 0 0 3px rgba(var(--color-red-rgb), 0.1);
|
|
5358
|
+
}
|
|
5359
|
+
|
|
5360
|
+
.RelationInput-module_triggerIcon__Jw8AO {
|
|
5361
|
+
width: 42px;
|
|
5362
|
+
display: flex;
|
|
5363
|
+
align-items: center;
|
|
5364
|
+
justify-content: center;
|
|
5365
|
+
color: var(--color-accent);
|
|
5366
|
+
flex-shrink: 0;
|
|
5367
|
+
border-right: 1px solid var(--color-border);
|
|
5368
|
+
align-self: stretch;
|
|
5369
|
+
}
|
|
5370
|
+
|
|
5371
|
+
.RelationInput-module_triggerBody__FL9E9 {
|
|
5372
|
+
flex: 1;
|
|
5334
5373
|
display: flex;
|
|
5374
|
+
align-items: center;
|
|
5335
5375
|
flex-wrap: wrap;
|
|
5336
5376
|
gap: var(--spacing-4);
|
|
5337
|
-
|
|
5338
|
-
.RelationSelect-module_container__nwkcp .RelationSelect-module_displayer__-ispL::-webkit-scrollbar {
|
|
5339
|
-
display: none; /* Chrome, Safari, Opera*/
|
|
5340
|
-
}
|
|
5341
|
-
.RelationSelect-module_container__nwkcp .RelationSelect-module_displayerContainer__kCaoy {
|
|
5377
|
+
padding: var(--spacing-6) var(--spacing-9);
|
|
5342
5378
|
min-width: 0;
|
|
5343
|
-
overflow-x: hidden;
|
|
5344
5379
|
}
|
|
5345
5380
|
|
|
5346
|
-
.
|
|
5347
|
-
|
|
5381
|
+
.RelationInput-module_placeholder__-B84- {
|
|
5382
|
+
font-size: var(--font-size-md);
|
|
5383
|
+
color: var(--color-text-muted);
|
|
5384
|
+
user-select: none;
|
|
5385
|
+
}
|
|
5386
|
+
|
|
5387
|
+
.RelationInput-module_tag__i0Omb {
|
|
5388
|
+
display: inline-flex;
|
|
5389
|
+
align-items: center;
|
|
5390
|
+
gap: var(--spacing-4);
|
|
5391
|
+
background: var(--color-accent-subtle);
|
|
5392
|
+
border: 1px solid var(--color-accent-subtle-2);
|
|
5393
|
+
color: var(--color-accent);
|
|
5348
5394
|
border-radius: var(--radius-md);
|
|
5349
|
-
|
|
5350
|
-
|
|
5351
|
-
|
|
5352
|
-
|
|
5353
|
-
|
|
5395
|
+
padding: 3px var(--spacing-6) 3px var(--spacing-7);
|
|
5396
|
+
font-size: var(--font-size-base);
|
|
5397
|
+
font-weight: var(--font-weight-medium);
|
|
5398
|
+
font-family: var(--font-mono);
|
|
5399
|
+
}
|
|
5400
|
+
|
|
5401
|
+
.RelationInput-module_tagRemove__4OplZ {
|
|
5402
|
+
display: flex;
|
|
5403
|
+
align-items: center;
|
|
5404
|
+
cursor: pointer;
|
|
5405
|
+
color: var(--color-accent);
|
|
5406
|
+
opacity: 0.6;
|
|
5407
|
+
transition: opacity var(--transition-fast);
|
|
5408
|
+
}
|
|
5409
|
+
.RelationInput-module_tagRemove__4OplZ:hover {
|
|
5410
|
+
opacity: 1;
|
|
5411
|
+
}
|
|
5412
|
+
|
|
5413
|
+
.RelationInput-module_modeDisplay__iStf1 {
|
|
5414
|
+
display: flex;
|
|
5415
|
+
align-items: center;
|
|
5416
|
+
gap: var(--spacing-3);
|
|
5417
|
+
padding: 0 var(--spacing-9);
|
|
5418
|
+
flex-shrink: 0;
|
|
5419
|
+
border-left: 1px solid var(--color-border);
|
|
5420
|
+
align-self: stretch;
|
|
5421
|
+
}
|
|
5422
|
+
|
|
5423
|
+
.RelationInput-module_modePill__-ZPmL {
|
|
5424
|
+
padding: 3px var(--spacing-7);
|
|
5425
|
+
border-radius: var(--radius-md-sm);
|
|
5426
|
+
font-size: var(--font-size-sm);
|
|
5427
|
+
font-weight: var(--font-weight-medium);
|
|
5428
|
+
color: var(--color-text-faint);
|
|
5429
|
+
background: transparent;
|
|
5430
|
+
border: 1px solid transparent;
|
|
5431
|
+
font-family: inherit;
|
|
5432
|
+
user-select: none;
|
|
5433
|
+
}
|
|
5434
|
+
|
|
5435
|
+
.RelationInput-module_modePillActive__Rpjjo {
|
|
5436
|
+
background: var(--color-surface-2);
|
|
5437
|
+
color: var(--color-text-muted);
|
|
5438
|
+
border-color: var(--color-border);
|
|
5439
|
+
}
|
|
5440
|
+
|
|
5441
|
+
.RelationInput-module_triggerActions__aSWHa {
|
|
5442
|
+
display: flex;
|
|
5443
|
+
align-items: center;
|
|
5444
|
+
gap: var(--spacing-1);
|
|
5445
|
+
padding: 0 var(--spacing-9);
|
|
5446
|
+
flex-shrink: 0;
|
|
5447
|
+
}
|
|
5448
|
+
|
|
5449
|
+
.RelationInput-module_clearBtn__kuiqq {
|
|
5450
|
+
width: 24px;
|
|
5451
|
+
height: 24px;
|
|
5452
|
+
border-radius: var(--radius-md-sm);
|
|
5453
|
+
display: flex;
|
|
5454
|
+
align-items: center;
|
|
5455
|
+
justify-content: center;
|
|
5456
|
+
cursor: pointer;
|
|
5457
|
+
color: var(--color-red);
|
|
5458
|
+
border: none;
|
|
5459
|
+
background: transparent;
|
|
5460
|
+
transition: background var(--transition-fast);
|
|
5461
|
+
flex-shrink: 0;
|
|
5462
|
+
}
|
|
5463
|
+
.RelationInput-module_clearBtn__kuiqq:hover {
|
|
5464
|
+
background: rgba(var(--color-red-rgb), 0.08);
|
|
5465
|
+
}
|
|
5466
|
+
|
|
5467
|
+
.RelationInput-module_chevron__kbSBc {
|
|
5468
|
+
color: var(--color-text-muted);
|
|
5469
|
+
transition: transform 0.2s;
|
|
5470
|
+
flex-shrink: 0;
|
|
5471
|
+
}
|
|
5472
|
+
|
|
5473
|
+
.RelationInput-module_chevronOpen__6rvYy {
|
|
5474
|
+
transform: rotate(180deg);
|
|
5475
|
+
}
|
|
5476
|
+
|
|
5477
|
+
.RelationInput-module_dropdown__2Lavk {
|
|
5478
|
+
position: absolute;
|
|
5479
|
+
left: 0;
|
|
5480
|
+
right: 0;
|
|
5481
|
+
top: 100%;
|
|
5482
|
+
z-index: var(--z-index-dropdown);
|
|
5354
5483
|
background: var(--color-surface);
|
|
5355
|
-
|
|
5484
|
+
border: 1.5px solid var(--color-accent);
|
|
5485
|
+
border-top: none;
|
|
5486
|
+
border-radius: 0 0 9px 9px;
|
|
5487
|
+
box-shadow: var(--shadow-md);
|
|
5488
|
+
overflow: hidden;
|
|
5489
|
+
animation: RelationInput-module_dropIn__hyUj4 0.14s cubic-bezier(0.16, 1, 0.3, 1);
|
|
5356
5490
|
}
|
|
5357
|
-
|
|
5358
|
-
|
|
5491
|
+
|
|
5492
|
+
@keyframes RelationInput-module_dropIn__hyUj4 {
|
|
5493
|
+
from {
|
|
5494
|
+
opacity: 0;
|
|
5495
|
+
transform: translateY(-4px);
|
|
5496
|
+
}
|
|
5497
|
+
to {
|
|
5498
|
+
opacity: 1;
|
|
5499
|
+
transform: translateY(0);
|
|
5500
|
+
}
|
|
5501
|
+
}
|
|
5502
|
+
.RelationInput-module_search__87EXl {
|
|
5503
|
+
display: flex;
|
|
5504
|
+
align-items: center;
|
|
5505
|
+
gap: var(--spacing-7);
|
|
5506
|
+
padding: var(--spacing-8) var(--spacing-10);
|
|
5507
|
+
border-bottom: 1px solid var(--color-border);
|
|
5508
|
+
}
|
|
5509
|
+
|
|
5510
|
+
.RelationInput-module_searchIcon__FdWu3 {
|
|
5511
|
+
color: var(--color-text-muted);
|
|
5512
|
+
flex-shrink: 0;
|
|
5513
|
+
}
|
|
5514
|
+
|
|
5515
|
+
.RelationInput-module_searchInput__xhP8U {
|
|
5516
|
+
flex: 1;
|
|
5517
|
+
border: none;
|
|
5518
|
+
outline: none;
|
|
5519
|
+
background: transparent;
|
|
5520
|
+
font-family: var(--font-sans);
|
|
5521
|
+
font-size: var(--font-size-md);
|
|
5522
|
+
color: var(--color-text-primary);
|
|
5523
|
+
}
|
|
5524
|
+
.RelationInput-module_searchInput__xhP8U::placeholder {
|
|
5525
|
+
color: var(--color-text-muted);
|
|
5359
5526
|
}
|
|
5360
5527
|
|
|
5361
|
-
.
|
|
5528
|
+
.RelationInput-module_results__huI-d {
|
|
5529
|
+
max-height: 220px;
|
|
5530
|
+
overflow-y: auto;
|
|
5531
|
+
}
|
|
5532
|
+
.RelationInput-module_results__huI-d::-webkit-scrollbar {
|
|
5533
|
+
width: 3px;
|
|
5534
|
+
}
|
|
5535
|
+
.RelationInput-module_results__huI-d::-webkit-scrollbar-thumb {
|
|
5536
|
+
background: var(--color-border);
|
|
5537
|
+
border-radius: 2px;
|
|
5538
|
+
}
|
|
5539
|
+
|
|
5540
|
+
.RelationInput-module_item__9hjjw {
|
|
5541
|
+
display: flex;
|
|
5542
|
+
align-items: center;
|
|
5543
|
+
gap: var(--spacing-9);
|
|
5544
|
+
padding: var(--spacing-9) var(--spacing-11);
|
|
5545
|
+
cursor: pointer;
|
|
5546
|
+
transition: background var(--transition-fast);
|
|
5547
|
+
border-bottom: 1px solid var(--color-border);
|
|
5548
|
+
}
|
|
5549
|
+
.RelationInput-module_item__9hjjw:last-child {
|
|
5550
|
+
border-bottom: none;
|
|
5551
|
+
}
|
|
5552
|
+
.RelationInput-module_item__9hjjw:hover {
|
|
5553
|
+
background: var(--color-surface-2);
|
|
5554
|
+
}
|
|
5555
|
+
|
|
5556
|
+
.RelationInput-module_itemSelected__Ug8iI {
|
|
5557
|
+
background: var(--color-accent-subtle);
|
|
5558
|
+
}
|
|
5559
|
+
.RelationInput-module_itemSelected__Ug8iI .RelationInput-module_itemId__quQ14 {
|
|
5560
|
+
color: var(--color-accent);
|
|
5561
|
+
}
|
|
5562
|
+
|
|
5563
|
+
.RelationInput-module_itemCheck__2zQ30 {
|
|
5564
|
+
width: 16px;
|
|
5565
|
+
height: 16px;
|
|
5566
|
+
border-radius: var(--radius-sm);
|
|
5567
|
+
flex-shrink: 0;
|
|
5568
|
+
border: 1.5px solid var(--color-border-mid);
|
|
5569
|
+
background: var(--color-surface);
|
|
5362
5570
|
display: flex;
|
|
5363
5571
|
align-items: center;
|
|
5364
5572
|
justify-content: center;
|
|
5365
|
-
|
|
5573
|
+
transition: all var(--transition-fast);
|
|
5574
|
+
}
|
|
5575
|
+
.RelationInput-module_itemCheck__2zQ30 svg {
|
|
5576
|
+
opacity: 0;
|
|
5366
5577
|
}
|
|
5367
5578
|
|
|
5368
|
-
.
|
|
5579
|
+
.RelationInput-module_itemCheckSelected__3dnbH {
|
|
5580
|
+
background: var(--color-accent);
|
|
5581
|
+
border-color: var(--color-accent);
|
|
5582
|
+
}
|
|
5583
|
+
.RelationInput-module_itemCheckSelected__3dnbH svg {
|
|
5584
|
+
opacity: 1;
|
|
5585
|
+
}
|
|
5586
|
+
|
|
5587
|
+
.RelationInput-module_itemBody__7R0lu {
|
|
5588
|
+
flex: 1;
|
|
5589
|
+
min-width: 0;
|
|
5590
|
+
}
|
|
5591
|
+
|
|
5592
|
+
.RelationInput-module_itemId__quQ14 {
|
|
5593
|
+
font-family: var(--font-mono);
|
|
5594
|
+
font-size: var(--font-size-base);
|
|
5369
5595
|
color: var(--color-text-primary);
|
|
5596
|
+
overflow: hidden;
|
|
5597
|
+
text-overflow: ellipsis;
|
|
5598
|
+
white-space: nowrap;
|
|
5370
5599
|
}
|
|
5371
5600
|
|
|
5372
|
-
.
|
|
5373
|
-
|
|
5601
|
+
.RelationInput-module_empty__EdqQ- {
|
|
5602
|
+
padding: 20px var(--spacing-11);
|
|
5603
|
+
text-align: center;
|
|
5604
|
+
font-size: var(--font-size-base-plus);
|
|
5605
|
+
color: var(--color-text-muted);
|
|
5606
|
+
}
|
|
5607
|
+
|
|
5608
|
+
.RelationInput-module_loading__4uzeT {
|
|
5609
|
+
padding: var(--spacing-12) var(--spacing-11);
|
|
5610
|
+
display: flex;
|
|
5611
|
+
align-items: center;
|
|
5612
|
+
justify-content: center;
|
|
5613
|
+
gap: var(--spacing-7);
|
|
5614
|
+
font-size: var(--font-size-base);
|
|
5615
|
+
color: var(--color-text-muted);
|
|
5616
|
+
}
|
|
5617
|
+
|
|
5618
|
+
@keyframes RelationInput-module_spin__pMDvY {
|
|
5619
|
+
to {
|
|
5620
|
+
transform: rotate(360deg);
|
|
5621
|
+
}
|
|
5622
|
+
}
|
|
5623
|
+
.RelationInput-module_spinner__lXuwT {
|
|
5624
|
+
animation: RelationInput-module_spin__pMDvY 0.7s linear infinite;
|
|
5625
|
+
}
|
|
5626
|
+
|
|
5627
|
+
.RelationInput-module_dropdownFoot__RCuVL {
|
|
5628
|
+
padding: var(--spacing-7) var(--spacing-11);
|
|
5629
|
+
border-top: 1px solid var(--color-border);
|
|
5630
|
+
display: flex;
|
|
5631
|
+
align-items: center;
|
|
5632
|
+
justify-content: space-between;
|
|
5633
|
+
background: var(--color-surface-2);
|
|
5634
|
+
}
|
|
5635
|
+
|
|
5636
|
+
.RelationInput-module_footCount__Mdu-T {
|
|
5637
|
+
font-size: var(--font-size-sm);
|
|
5638
|
+
color: var(--color-text-muted);
|
|
5639
|
+
font-family: var(--font-mono);
|
|
5640
|
+
}
|
|
5641
|
+
.RelationInput-module_footCount__Mdu-T strong {
|
|
5642
|
+
color: var(--color-accent);
|
|
5643
|
+
font-weight: var(--font-weight-semibold);
|
|
5374
5644
|
}
|
|
5375
5645
|
|
|
5376
|
-
.
|
|
5646
|
+
.RelationInput-module_footClear__69I0C {
|
|
5647
|
+
font-size: var(--font-size-sm-plus);
|
|
5648
|
+
color: var(--color-text-muted);
|
|
5649
|
+
cursor: pointer;
|
|
5650
|
+
transition: color var(--transition-fast);
|
|
5651
|
+
}
|
|
5652
|
+
.RelationInput-module_footClear__69I0C:hover {
|
|
5377
5653
|
color: var(--color-red);
|
|
5378
5654
|
}
|
|
5379
5655
|
|
|
5380
|
-
.
|
|
5381
|
-
|
|
5656
|
+
.RelationInput-module_helper__n1rom {
|
|
5657
|
+
margin-top: var(--spacing-3);
|
|
5658
|
+
font-size: var(--font-size-sm);
|
|
5659
|
+
color: var(--color-text-muted);
|
|
5382
5660
|
}
|
|
5383
5661
|
|
|
5384
|
-
.
|
|
5385
|
-
|
|
5662
|
+
.RelationInput-module_helperError__E0erC {
|
|
5663
|
+
color: var(--color-red);
|
|
5386
5664
|
}
|
|
5387
5665
|
.Boolean-module_bool__23D4m {
|
|
5388
5666
|
display: inline-flex;
|
|
@@ -5482,19 +5760,37 @@ button.font-increment {
|
|
|
5482
5760
|
font-family: var(--font-sans);
|
|
5483
5761
|
padding: var(--spacing-9) var(--spacing-10);
|
|
5484
5762
|
padding: 0;
|
|
5763
|
+
width: 100%;
|
|
5764
|
+
overflow: hidden;
|
|
5485
5765
|
}
|
|
5486
5766
|
.MultiSelection-module_multiSelectionContainer__tUi2u input {
|
|
5487
5767
|
padding: 0;
|
|
5488
5768
|
}
|
|
5489
|
-
|
|
5490
|
-
|
|
5769
|
+
|
|
5770
|
+
.MultiSelection-module_selectedValues__oPNri {
|
|
5771
|
+
display: flex;
|
|
5772
|
+
flex-wrap: nowrap;
|
|
5773
|
+
align-items: center;
|
|
5774
|
+
gap: 4px;
|
|
5775
|
+
padding: 4px 8px;
|
|
5776
|
+
min-height: 34px;
|
|
5777
|
+
width: 100%;
|
|
5778
|
+
overflow-x: auto;
|
|
5779
|
+
scrollbar-width: none;
|
|
5491
5780
|
}
|
|
5492
|
-
.MultiSelection-
|
|
5493
|
-
|
|
5781
|
+
.MultiSelection-module_selectedValues__oPNri::-webkit-scrollbar {
|
|
5782
|
+
display: none;
|
|
5494
5783
|
}
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
|
|
5784
|
+
|
|
5785
|
+
.MultiSelection-module_selectedTag__RfYtm {
|
|
5786
|
+
display: inline-flex;
|
|
5787
|
+
align-items: center;
|
|
5788
|
+
padding: 2px 8px;
|
|
5789
|
+
border-radius: 4px;
|
|
5790
|
+
font-size: 12px;
|
|
5791
|
+
background: var(--color-neutral-100, #f0f0f0);
|
|
5792
|
+
color: var(--color-neutral-800, #333);
|
|
5793
|
+
white-space: nowrap;
|
|
5498
5794
|
}
|
|
5499
5795
|
.NumberMinimized-module_numberMinimized__o1ZAN {
|
|
5500
5796
|
background-color: var(--color-surface-2);
|
|
@@ -5645,6 +5941,7 @@ button.font-increment {
|
|
|
5645
5941
|
|
|
5646
5942
|
.Drawer-module_contentContainer__Bku-Q {
|
|
5647
5943
|
position: fixed;
|
|
5944
|
+
z-index: var(--z-index-overlay, 1000);
|
|
5648
5945
|
background-color: var(--color-surface);
|
|
5649
5946
|
overflow: hidden;
|
|
5650
5947
|
display: flex;
|
package/dist/index.export.d.ts
CHANGED
|
@@ -185,7 +185,6 @@ export { type TableHeaderCellProps } from "./components/organisms/table/Table";
|
|
|
185
185
|
export { type TableCellProps } from "./components/organisms/table/Table";
|
|
186
186
|
export { type TypeTable } from "./components/organisms/table/Table";
|
|
187
187
|
export { type TypeColumn } from "./components/organisms/table/Table";
|
|
188
|
-
export { type TypeColumnComponent } from "./components/organisms/table/Table";
|
|
189
188
|
export { type TypeHeaderCell } from "./components/organisms/table/Table";
|
|
190
189
|
export { type TypeCell } from "./components/organisms/table/Table";
|
|
191
190
|
export { type NotificationPlacement, type NotificationConfig, type NotificationAPI, type NotificationProviderProps, } from "./components/organisms/notification";
|