@olenbetong/appframe-ds 1.0.3 → 1.2.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/CHANGELOG.md +13 -0
- package/package.json +8 -7
- package/scripts/copyAssets.mjs +27 -55
- package/src/AfLookup/Lookup.css +129 -125
- package/src/AfLookup/Lookup.tsx +184 -162
- package/src/AfLookup/LookupCombobox.css +78 -78
- package/src/AfLookup/LookupCombobox.tsx +237 -237
- package/src/AfLookup/LookupEdit.tsx +130 -130
- package/src/AfLookup/LookupGrid.tsx +124 -124
- package/src/AfLookup/index.ts +5 -5
- package/src/autocomplete/Autocomplete.css +256 -256
- package/src/autocomplete/Autocomplete.tsx +320 -320
- package/src/autocomplete/AutocompleteFrame.tsx +168 -168
- package/src/autocomplete/Combobox.tsx +286 -286
- package/src/autocomplete/index.ts +4 -4
- package/src/autocomplete/types.ts +204 -204
- package/src/autocomplete/utils.ts +183 -183
- package/src/binding/BoundNumericTextField.tsx +102 -102
- package/src/binding/BoundTextField.tsx +49 -49
- package/src/binding/CancelButton.tsx +30 -30
- package/src/binding/CancelIconButton.tsx +30 -30
- package/src/binding/DataEditToolbar.tsx +92 -92
- package/src/binding/DeleteButton.tsx +35 -35
- package/src/binding/DeleteIconButton.tsx +35 -35
- package/src/binding/RefreshButton.tsx +31 -31
- package/src/binding/RefreshIconButton.tsx +33 -33
- package/src/binding/RefreshRowIconButton.tsx +33 -33
- package/src/binding/SaveButton.tsx +37 -37
- package/src/binding/SaveIconButton.tsx +38 -38
- package/src/container/Container.tsx +49 -49
- package/src/container/index.ts +1 -1
- package/src/cutoff/CutOffPicker.css +12 -0
- package/src/cutoff/CutOffPicker.tsx +165 -0
- package/src/cutoff/context.tsx +194 -0
- package/src/cutoff/dsCutOffDates.ts +21 -0
- package/src/cutoff/index.ts +4 -0
- package/src/cutoff/utils.test.ts +59 -0
- package/src/cutoff/utils.ts +276 -0
- package/src/filter/ChipListInput.tsx +79 -79
- package/src/filter/FieldFilterPanel.css +150 -150
- package/src/filter/FieldFilterPanel.tsx +309 -309
- package/src/filter/FilterBuilder.css +152 -152
- package/src/filter/FilterBuilder.test.tsx +153 -153
- package/src/filter/FilterBuilder.tsx +435 -435
- package/src/filter/FilterEditor.css +231 -231
- package/src/filter/FilterEditor.test.tsx +259 -259
- package/src/filter/FilterEditor.tsx +75 -74
- package/src/filter/FilterGroupEditor.tsx +160 -160
- package/src/filter/FilterNameDialog.css +22 -22
- package/src/filter/FilterNameDialog.tsx +81 -81
- package/src/filter/FilterRow.tsx +117 -117
- package/src/filter/FilterShareDialog.css +28 -28
- package/src/filter/FilterShareDialog.tsx +201 -201
- package/src/filter/FilterStringField.tsx +78 -77
- package/src/filter/FilterValueEditor.tsx +220 -220
- package/src/filter/SavedFilterTree.css +107 -107
- package/src/filter/SavedFilterTree.test.tsx +94 -94
- package/src/filter/SavedFilterTree.tsx +218 -222
- package/src/filter/fieldFilter.test.ts +158 -158
- package/src/filter/fieldFilter.ts +139 -139
- package/src/filter/index.ts +27 -27
- package/src/filter/types.ts +38 -38
- package/src/filter/useDistinctValues.test.ts +102 -102
- package/src/filter/useDistinctValues.ts +230 -230
- package/src/global.d.ts +11 -11
- package/src/grid/AfGridColumnsPanel.tsx +118 -118
- package/src/grid/AfGridContext.tsx +51 -51
- package/src/grid/AfGridError.tsx +46 -46
- package/src/grid/AfHeaderFilterCell.tsx +147 -151
- package/src/grid/AfHeaderFilterPanel.tsx +111 -111
- package/src/grid/GridEditLookup.css +12 -0
- package/src/grid/GridEditLookup.tsx +121 -0
- package/src/grid/Toolbar.tsx +233 -233
- package/src/grid/editing.ts +100 -100
- package/src/grid/filter.ts +78 -78
- package/src/grid/formatters.ts +48 -48
- package/src/grid/index.css +245 -245
- package/src/grid/index.tsx +489 -484
- package/src/grid/license.ts +48 -48
- package/src/grid/localization.ts +369 -369
- package/src/grid/slots/index.tsx +307 -307
- package/src/grid/slots/slots.css +64 -64
- package/src/grid/theme.tsx +138 -138
- package/src/grid/useAfColumns.tsx +371 -371
- package/src/grid/useAfCurrentIndex.ts +63 -63
- package/src/grid/useAfData.ts +20 -20
- package/src/grid/useAfFilter.ts +160 -160
- package/src/grid/useAfFilterFields.ts +55 -55
- package/src/grid/useAfGridApi.ts +71 -71
- package/src/grid/useAfKeyBindings.ts +36 -36
- package/src/grid/useAfNewItemRow.ts +258 -258
- package/src/grid/useAfPagination.ts +53 -53
- package/src/grid/useAfPersistedState.ts +230 -230
- package/src/grid/useAfRowEditModel.ts +145 -145
- package/src/grid/useAfRowGrouping.ts +47 -47
- package/src/grid/useAfServerAggregation.ts +145 -145
- package/src/grid/useAfSortModel.ts +84 -84
- package/src/i18n.ts +13 -0
- package/src/index.ts +14 -12
- package/src/input/InputAdornments.css +75 -75
- package/src/input/InputAdornments.tsx +102 -102
- package/src/input/index.ts +1 -1
- package/src/layout/AppMenu.tsx +74 -75
- package/src/layout/AppMenuDrawer.css +70 -70
- package/src/layout/AppMenuDrawer.tsx +122 -122
- package/src/layout/ErrorBoundary.tsx +162 -162
- package/src/layout/ResponsiveDialog.css +86 -0
- package/src/layout/ResponsiveDialog.tsx +55 -0
- package/src/layout/index.tsx +69 -68
- package/src/link/Link.tsx +23 -0
- package/src/link/index.ts +1 -0
- package/src/mdi/Mdi.css +138 -138
- package/src/mdi/Mdi.test.tsx +91 -87
- package/src/mdi/Mdi.tsx +141 -141
- package/src/mdi/MdiConfirmCloseDialog.tsx +47 -47
- package/src/mdi/MdiContext.tsx +59 -59
- package/src/mdi/MdiDocumentContext.tsx +60 -60
- package/src/mdi/MdiPanel.tsx +61 -61
- package/src/mdi/MdiRestore.test.tsx +86 -82
- package/src/mdi/MdiTab.tsx +30 -30
- package/src/mdi/controller.test.ts +382 -382
- package/src/mdi/controller.ts +656 -656
- package/src/mdi/dockviewHost.ts +132 -132
- package/src/mdi/fakeHost.ts +200 -200
- package/src/mdi/host.ts +44 -44
- package/src/mdi/ids.test.ts +20 -20
- package/src/mdi/ids.ts +18 -18
- package/src/mdi/index.ts +31 -31
- package/src/mdi/layoutRestore.test.ts +156 -156
- package/src/mdi/layoutRestore.ts +311 -311
- package/src/mdi/layoutSpec.test.ts +143 -143
- package/src/mdi/layoutSpec.ts +214 -214
- package/src/mdi/layoutStore.test.ts +93 -93
- package/src/mdi/layoutStore.ts +99 -99
- package/src/mdi/memorySettingsStore.ts +21 -21
- package/src/mdi/registry.ts +34 -34
- package/src/mdi/testTypes.ts +37 -37
- package/src/mdi/theme.ts +22 -22
- package/src/mdi/types.ts +214 -214
- package/src/page/Page.css +53 -53
- package/src/page/PageBlock.css +64 -64
- package/src/page/PageBlock.tsx +92 -92
- package/src/page/PageHeader.css +88 -88
- package/src/page/PageHeader.tsx +115 -116
- package/src/page/PageTitle.css +5 -0
- package/src/page/PageTitle.tsx +21 -0
- package/src/page/index.ts +4 -3
- package/src/paper/Paper.tsx +52 -52
- package/src/progress/LinearProgress.css +93 -93
- package/src/progress/LinearProgress.tsx +104 -104
- package/src/progress/index.ts +1 -1
- package/src/report-downloader/ReportDownloader.css +67 -67
- package/src/report-downloader/components/StatusItem.tsx +87 -86
- package/src/report-downloader/components/StatusList.tsx +28 -28
- package/src/report-downloader/index.ts +41 -41
- package/src/report-downloader/status.tsx +92 -92
- package/src/sortable/DropIndicator.css +51 -51
- package/src/sortable/DropIndicator.tsx +27 -27
- package/src/sortable/SortableItemList.css +21 -21
- package/src/sortable/SortableItemList.tsx +264 -264
- package/src/sortable/index.ts +8 -8
- package/src/sortable/reorderSortOrder.ts +126 -126
- package/src/sortable/sortOrder.ts +101 -101
- package/src/sortable/types.ts +9 -9
- package/src/sortable/useSortableContainer.ts +53 -53
- package/src/sortable/useSortableItem.ts +95 -95
- package/src/sortable/useSortableList.ts +117 -117
- package/src/test/happy-dom-document-class.ts +24 -24
- package/src/test/setup.ts +12 -12
- package/src/theme/useDsColorScheme.ts +53 -53
- package/tsconfig.build.json +9 -9
- package/tsconfig.json +8 -8
- package/vitest.config.ts +10 -10
package/src/AfLookup/Lookup.tsx
CHANGED
|
@@ -1,162 +1,184 @@
|
|
|
1
|
-
import "./Lookup.css";
|
|
2
|
-
|
|
3
|
-
import { Button, Textfield, type TextfieldProps } from "@digdir/designsystemet-react";
|
|
4
|
-
import { MagnifyingGlassIcon, XMarkIcon } from "@navikt/aksel-icons";
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
import
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
import {
|
|
13
|
-
|
|
14
|
-
export type
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
)}
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
<
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
1
|
+
import "./Lookup.css";
|
|
2
|
+
|
|
3
|
+
import { Button, Tag, Textfield, type TextfieldProps } from "@digdir/designsystemet-react";
|
|
4
|
+
import { MagnifyingGlassIcon, XMarkIcon } from "@navikt/aksel-icons";
|
|
5
|
+
import { type DistributiveOmit, useLookupState } from "@olenbetong/appframe-react";
|
|
6
|
+
|
|
7
|
+
import clsx from "clsx";
|
|
8
|
+
import { useRef } from "react";
|
|
9
|
+
import { createPortal } from "react-dom";
|
|
10
|
+
|
|
11
|
+
import { LookupCombobox, type LookupComboboxProps } from "./LookupCombobox.js";
|
|
12
|
+
import { getLocalizedString } from "../i18n.js";
|
|
13
|
+
|
|
14
|
+
export type LabelTag = "optional" | "required";
|
|
15
|
+
|
|
16
|
+
const LABEL_TAG_COLOR: Record<LabelTag, string> = { optional: "info", required: "warning" };
|
|
17
|
+
const LABEL_TAG_TEXT: Record<LabelTag, string> = { optional: "Optional", required: "Required" };
|
|
18
|
+
|
|
19
|
+
function labelWithTag(label: string | undefined, labelTag: LabelTag | undefined) {
|
|
20
|
+
if (!labelTag) {
|
|
21
|
+
return label;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
return (
|
|
25
|
+
<>
|
|
26
|
+
{label}
|
|
27
|
+
<Tag className="ObLookup-labelTag" data-color={LABEL_TAG_COLOR[labelTag]} data-size="sm">
|
|
28
|
+
{getLocalizedString(LABEL_TAG_TEXT[labelTag])}
|
|
29
|
+
</Tag>
|
|
30
|
+
</>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export type AfLookupProps<T extends Record<string, unknown>> = DistributiveOmit<LookupComboboxProps<T>, "value"> & {
|
|
35
|
+
/**
|
|
36
|
+
* Allows the user to enter a value manually that might not be in the list.
|
|
37
|
+
*/
|
|
38
|
+
editable?: boolean;
|
|
39
|
+
fullWidth?: boolean;
|
|
40
|
+
label?: string;
|
|
41
|
+
labelTag?: LabelTag;
|
|
42
|
+
value?: string | null;
|
|
43
|
+
onChange?: (item: T | null) => void;
|
|
44
|
+
slotProps?: {
|
|
45
|
+
dialog?: Partial<React.HTMLProps<HTMLDialogElement>>;
|
|
46
|
+
textField?: Partial<TextfieldProps>;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export type LookupProps<T extends Record<string, unknown>> = DistributiveOmit<LookupComboboxProps<T>, "value"> & {
|
|
51
|
+
slotProps?: {
|
|
52
|
+
dialog?: Partial<React.HTMLProps<HTMLDialogElement>>;
|
|
53
|
+
};
|
|
54
|
+
getAnchorElement?: () => Element | null;
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
export function useLookup<T extends Record<string, unknown>>({
|
|
58
|
+
getAnchorElement,
|
|
59
|
+
slotProps,
|
|
60
|
+
...props
|
|
61
|
+
}: LookupProps<T>) {
|
|
62
|
+
let { open, openDialog, onKeyDown, dialogRef, anchorName, inputId } = useLookupState({
|
|
63
|
+
getAnchorElement,
|
|
64
|
+
scrollParentSelector: "[data-virtualized-scroller]",
|
|
65
|
+
});
|
|
66
|
+
let initialSearchValueRef = useRef<string | undefined>(undefined);
|
|
67
|
+
|
|
68
|
+
function handleChange(item: T | null) {
|
|
69
|
+
props.onChange?.(item);
|
|
70
|
+
dialogRef.current?.close();
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
function handleOpenDialog(searchValue?: string) {
|
|
74
|
+
initialSearchValueRef.current = searchValue;
|
|
75
|
+
openDialog();
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
return {
|
|
79
|
+
open,
|
|
80
|
+
openDialog: handleOpenDialog,
|
|
81
|
+
onKeyDown,
|
|
82
|
+
onChange: handleChange,
|
|
83
|
+
dialogRef,
|
|
84
|
+
anchorName,
|
|
85
|
+
inputId,
|
|
86
|
+
dialog: createPortal(
|
|
87
|
+
<dialog
|
|
88
|
+
ref={dialogRef}
|
|
89
|
+
className={clsx("ObLookup-dialog", slotProps?.dialog?.className)}
|
|
90
|
+
onKeyDown={(evt) => evt.stopPropagation()}
|
|
91
|
+
style={{ positionAnchor: anchorName, ...slotProps?.dialog?.style } as React.CSSProperties}
|
|
92
|
+
>
|
|
93
|
+
{open && (
|
|
94
|
+
<LookupCombobox
|
|
95
|
+
{...props}
|
|
96
|
+
initialSearchValue={initialSearchValueRef.current}
|
|
97
|
+
onClose={() => dialogRef.current?.close()}
|
|
98
|
+
onChange={handleChange}
|
|
99
|
+
/>
|
|
100
|
+
)}
|
|
101
|
+
</dialog>,
|
|
102
|
+
document.body,
|
|
103
|
+
inputId,
|
|
104
|
+
),
|
|
105
|
+
};
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
export function AfLookup<T extends Record<string, unknown>>({
|
|
109
|
+
fullWidth = false,
|
|
110
|
+
label,
|
|
111
|
+
labelTag,
|
|
112
|
+
slotProps,
|
|
113
|
+
value,
|
|
114
|
+
...props
|
|
115
|
+
}: AfLookupProps<T>) {
|
|
116
|
+
let { inputId, open: _open, dialog, anchorName, openDialog, onKeyDown } = useLookup<T>(props);
|
|
117
|
+
|
|
118
|
+
let hasClear = !!(props.nullable && value && props.onChange);
|
|
119
|
+
|
|
120
|
+
function handleInputKeyDown(event: React.KeyboardEvent<HTMLElement>) {
|
|
121
|
+
let hasModifier = event.ctrlKey || event.altKey || event.metaKey;
|
|
122
|
+
let isTypeaheadKey = event.key.length === 1 && !hasModifier && !event.nativeEvent.isComposing;
|
|
123
|
+
if (isTypeaheadKey) {
|
|
124
|
+
event.preventDefault();
|
|
125
|
+
event.stopPropagation();
|
|
126
|
+
openDialog(event.key);
|
|
127
|
+
return;
|
|
128
|
+
}
|
|
129
|
+
onKeyDown(event);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
return (
|
|
133
|
+
<div style={{ anchorName } as React.CSSProperties}>
|
|
134
|
+
<div
|
|
135
|
+
className="ObLookup-inputWrap"
|
|
136
|
+
style={
|
|
137
|
+
{
|
|
138
|
+
display: fullWidth ? "block" : "inline-block",
|
|
139
|
+
"--ObLookup-buttons-width": hasClear ? "5.5rem" : "3rem",
|
|
140
|
+
} as React.CSSProperties
|
|
141
|
+
}
|
|
142
|
+
>
|
|
143
|
+
<Textfield
|
|
144
|
+
id={inputId}
|
|
145
|
+
value={value ?? ""}
|
|
146
|
+
label={labelWithTag(label, labelTag)}
|
|
147
|
+
onClick={() => openDialog()}
|
|
148
|
+
onKeyDown={handleInputKeyDown}
|
|
149
|
+
className={clsx(slotProps?.textField?.className, "ObLookup-input")}
|
|
150
|
+
{...(slotProps?.textField as any)}
|
|
151
|
+
style={{ width: fullWidth ? "100%" : undefined, ...slotProps?.textField?.style }}
|
|
152
|
+
/>
|
|
153
|
+
<div className="ObLookup-buttons">
|
|
154
|
+
{hasClear && (
|
|
155
|
+
<Button
|
|
156
|
+
icon
|
|
157
|
+
variant="tertiary"
|
|
158
|
+
data-size="sm"
|
|
159
|
+
aria-label={getLocalizedString("Clear")}
|
|
160
|
+
onKeyDown={(evt) => evt.stopPropagation()}
|
|
161
|
+
onClick={(evt) => {
|
|
162
|
+
evt.stopPropagation();
|
|
163
|
+
props.onChange?.(null);
|
|
164
|
+
document.getElementById(inputId)?.focus();
|
|
165
|
+
}}
|
|
166
|
+
>
|
|
167
|
+
<XMarkIcon />
|
|
168
|
+
</Button>
|
|
169
|
+
)}
|
|
170
|
+
<Button
|
|
171
|
+
icon
|
|
172
|
+
variant="tertiary"
|
|
173
|
+
data-size="sm"
|
|
174
|
+
aria-label={getLocalizedString("Search")}
|
|
175
|
+
onClick={() => openDialog()}
|
|
176
|
+
>
|
|
177
|
+
<MagnifyingGlassIcon />
|
|
178
|
+
</Button>
|
|
179
|
+
</div>
|
|
180
|
+
</div>
|
|
181
|
+
{dialog}
|
|
182
|
+
</div>
|
|
183
|
+
);
|
|
184
|
+
}
|
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
.ObCombobox-root {
|
|
2
|
-
height: 100%;
|
|
3
|
-
display: grid;
|
|
4
|
-
grid-template-rows: min-content auto 1fr;
|
|
5
|
-
gap: 0.5rem;
|
|
6
|
-
|
|
7
|
-
overscroll-behavior: contain;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.ObCombobox-actions {
|
|
11
|
-
display: flex;
|
|
12
|
-
justify-content: space-between;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.ObCombobox-listWrap {
|
|
16
|
-
overflow: hidden;
|
|
17
|
-
min-height: 0;
|
|
18
|
-
border: 1px solid rgb(0 0 0 / 0.12);
|
|
19
|
-
border-radius: 0.25rem;
|
|
20
|
-
background-color: white;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.ObCombobox-list {
|
|
24
|
-
border: 1px solid rgb(0 0 0 / 0.06);
|
|
25
|
-
height: 100%;
|
|
26
|
-
overflow-y: hidden;
|
|
27
|
-
overscroll-behavior: contain;
|
|
28
|
-
list-style: none;
|
|
29
|
-
margin: 0;
|
|
30
|
-
padding: 0;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.ObCombobox-input {
|
|
34
|
-
background-color: white;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.ObCombobox-listItem {
|
|
38
|
-
--active-color: oklch(from var(--brand-secondary, #999) l c h / 50%);
|
|
39
|
-
cursor: pointer;
|
|
40
|
-
|
|
41
|
-
&.active {
|
|
42
|
-
background-color: var(--active-color);
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
&:hover {
|
|
46
|
-
background-color: rgb(0 0 0 / 0.06);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
&.active:hover {
|
|
50
|
-
background-color: oklch(from var(--active-color) calc(l + 0.1) calc(c - 0.04) h);
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.ObCombobox-progress {
|
|
55
|
-
position: relative;
|
|
56
|
-
height: 4px;
|
|
57
|
-
overflow: hidden;
|
|
58
|
-
background-color: rgb(0 0 0 / 0.08);
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.ObCombobox-progress-bar {
|
|
62
|
-
position: absolute;
|
|
63
|
-
top: 0;
|
|
64
|
-
left: -100%;
|
|
65
|
-
height: 100%;
|
|
66
|
-
width: 50%;
|
|
67
|
-
background-color: var(--ds-color-brand-base-default);
|
|
68
|
-
animation: ObCombobox-progress-anim 1.5s ease-in-out infinite;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
@keyframes ObCombobox-progress-anim {
|
|
72
|
-
0% {
|
|
73
|
-
left: -100%;
|
|
74
|
-
}
|
|
75
|
-
100% {
|
|
76
|
-
left: 200%;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
1
|
+
.ObCombobox-root {
|
|
2
|
+
height: 100%;
|
|
3
|
+
display: grid;
|
|
4
|
+
grid-template-rows: min-content auto 1fr;
|
|
5
|
+
gap: 0.5rem;
|
|
6
|
+
|
|
7
|
+
overscroll-behavior: contain;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.ObCombobox-actions {
|
|
11
|
+
display: flex;
|
|
12
|
+
justify-content: space-between;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.ObCombobox-listWrap {
|
|
16
|
+
overflow: hidden;
|
|
17
|
+
min-height: 0;
|
|
18
|
+
border: 1px solid rgb(0 0 0 / 0.12);
|
|
19
|
+
border-radius: 0.25rem;
|
|
20
|
+
background-color: white;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.ObCombobox-list {
|
|
24
|
+
border: 1px solid rgb(0 0 0 / 0.06);
|
|
25
|
+
height: 100%;
|
|
26
|
+
overflow-y: hidden;
|
|
27
|
+
overscroll-behavior: contain;
|
|
28
|
+
list-style: none;
|
|
29
|
+
margin: 0;
|
|
30
|
+
padding: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.ObCombobox-input {
|
|
34
|
+
background-color: white;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.ObCombobox-listItem {
|
|
38
|
+
--active-color: oklch(from var(--brand-secondary, #999) l c h / 50%);
|
|
39
|
+
cursor: pointer;
|
|
40
|
+
|
|
41
|
+
&.active {
|
|
42
|
+
background-color: var(--active-color);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&:hover {
|
|
46
|
+
background-color: rgb(0 0 0 / 0.06);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&.active:hover {
|
|
50
|
+
background-color: oklch(from var(--active-color) calc(l + 0.1) calc(c - 0.04) h);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.ObCombobox-progress {
|
|
55
|
+
position: relative;
|
|
56
|
+
height: 4px;
|
|
57
|
+
overflow: hidden;
|
|
58
|
+
background-color: rgb(0 0 0 / 0.08);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.ObCombobox-progress-bar {
|
|
62
|
+
position: absolute;
|
|
63
|
+
top: 0;
|
|
64
|
+
left: -100%;
|
|
65
|
+
height: 100%;
|
|
66
|
+
width: 50%;
|
|
67
|
+
background-color: var(--ds-color-brand-base-default);
|
|
68
|
+
animation: ObCombobox-progress-anim 1.5s ease-in-out infinite;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
@keyframes ObCombobox-progress-anim {
|
|
72
|
+
0% {
|
|
73
|
+
left: -100%;
|
|
74
|
+
}
|
|
75
|
+
100% {
|
|
76
|
+
left: 200%;
|
|
77
|
+
}
|
|
78
|
+
}
|