@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/paper/Paper.tsx
CHANGED
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
import "./Paper.css";
|
|
2
|
-
|
|
3
|
-
import clsx from "clsx";
|
|
4
|
-
import type React from "react";
|
|
5
|
-
|
|
6
|
-
export const paperShadows = ["none", "xs", "sm", "md", "lg", "xl"] as const;
|
|
7
|
-
|
|
8
|
-
export type PaperShadow = (typeof paperShadows)[number];
|
|
9
|
-
|
|
10
|
-
export type PaperProps = React.HTMLAttributes<HTMLElement> & {
|
|
11
|
-
/**
|
|
12
|
-
* Overrides the rendered element (e.g. `"section"`, `"ul"`)
|
|
13
|
-
* @default "div"
|
|
14
|
-
*/
|
|
15
|
-
as?: React.ElementType;
|
|
16
|
-
/**
|
|
17
|
-
* Adds a subtle border. Combine with `shadow="none"` for an outlined
|
|
18
|
-
* variant (MUI `variant="outlined"` equivalent).
|
|
19
|
-
* @default false
|
|
20
|
-
*/
|
|
21
|
-
border?: boolean;
|
|
22
|
-
children?: React.ReactNode;
|
|
23
|
-
/** Forwarded to the rendered element. */
|
|
24
|
-
ref?: React.Ref<any>;
|
|
25
|
-
/**
|
|
26
|
-
* Elevation shadow, using the designsystemet `--ds-shadow-*` tokens.
|
|
27
|
-
* @default "sm"
|
|
28
|
-
*/
|
|
29
|
-
shadow?: PaperShadow;
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
/**
|
|
33
|
-
* Surface component equivalent to MUI `Paper`: a neutral surface with
|
|
34
|
-
* rounded corners and an elevation shadow. Use it instead of hand-rolled
|
|
35
|
-
* `background` + `box-shadow` CSS so surfaces stay consistent with the
|
|
36
|
-
* designsystemet tokens (and adapt to dark mode).
|
|
37
|
-
*/
|
|
38
|
-
export function Paper({ as: Component = "div", border, children, className, shadow = "sm", ...props }: PaperProps) {
|
|
39
|
-
return (
|
|
40
|
-
<Component
|
|
41
|
-
className={clsx(
|
|
42
|
-
"ObPaper-root",
|
|
43
|
-
shadow !== "none" && `ObPaper-shadow-${shadow}`,
|
|
44
|
-
border && "ObPaper-border",
|
|
45
|
-
className,
|
|
46
|
-
)}
|
|
47
|
-
{...props}
|
|
48
|
-
>
|
|
49
|
-
{children}
|
|
50
|
-
</Component>
|
|
51
|
-
);
|
|
52
|
-
}
|
|
1
|
+
import "./Paper.css";
|
|
2
|
+
|
|
3
|
+
import clsx from "clsx";
|
|
4
|
+
import type React from "react";
|
|
5
|
+
|
|
6
|
+
export const paperShadows = ["none", "xs", "sm", "md", "lg", "xl"] as const;
|
|
7
|
+
|
|
8
|
+
export type PaperShadow = (typeof paperShadows)[number];
|
|
9
|
+
|
|
10
|
+
export type PaperProps = React.HTMLAttributes<HTMLElement> & {
|
|
11
|
+
/**
|
|
12
|
+
* Overrides the rendered element (e.g. `"section"`, `"ul"`)
|
|
13
|
+
* @default "div"
|
|
14
|
+
*/
|
|
15
|
+
as?: React.ElementType;
|
|
16
|
+
/**
|
|
17
|
+
* Adds a subtle border. Combine with `shadow="none"` for an outlined
|
|
18
|
+
* variant (MUI `variant="outlined"` equivalent).
|
|
19
|
+
* @default false
|
|
20
|
+
*/
|
|
21
|
+
border?: boolean;
|
|
22
|
+
children?: React.ReactNode;
|
|
23
|
+
/** Forwarded to the rendered element. */
|
|
24
|
+
ref?: React.Ref<any>;
|
|
25
|
+
/**
|
|
26
|
+
* Elevation shadow, using the designsystemet `--ds-shadow-*` tokens.
|
|
27
|
+
* @default "sm"
|
|
28
|
+
*/
|
|
29
|
+
shadow?: PaperShadow;
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Surface component equivalent to MUI `Paper`: a neutral surface with
|
|
34
|
+
* rounded corners and an elevation shadow. Use it instead of hand-rolled
|
|
35
|
+
* `background` + `box-shadow` CSS so surfaces stay consistent with the
|
|
36
|
+
* designsystemet tokens (and adapt to dark mode).
|
|
37
|
+
*/
|
|
38
|
+
export function Paper({ as: Component = "div", border, children, className, shadow = "sm", ...props }: PaperProps) {
|
|
39
|
+
return (
|
|
40
|
+
<Component
|
|
41
|
+
className={clsx(
|
|
42
|
+
"ObPaper-root",
|
|
43
|
+
shadow !== "none" && `ObPaper-shadow-${shadow}`,
|
|
44
|
+
border && "ObPaper-border",
|
|
45
|
+
className,
|
|
46
|
+
)}
|
|
47
|
+
{...props}
|
|
48
|
+
>
|
|
49
|
+
{children}
|
|
50
|
+
</Component>
|
|
51
|
+
);
|
|
52
|
+
}
|
|
@@ -1,93 +1,93 @@
|
|
|
1
|
-
.ObLinearProgress-root {
|
|
2
|
-
--obLinearProgress-thickness: 0.25rem;
|
|
3
|
-
--obLinearProgress-duration: 2.1s;
|
|
4
|
-
|
|
5
|
-
position: relative;
|
|
6
|
-
display: block;
|
|
7
|
-
box-sizing: border-box;
|
|
8
|
-
inline-size: 100%;
|
|
9
|
-
block-size: var(--obLinearProgress-thickness);
|
|
10
|
-
overflow: hidden;
|
|
11
|
-
background-color: var(--ds-color-brand-surface-active, #cddffb);
|
|
12
|
-
border-radius: var(--ds-border-radius-full, 624.9375rem);
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.ObLinearProgress-root[data-size="xs"] {
|
|
16
|
-
--obLinearProgress-thickness: 0.125rem;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.ObLinearProgress-root[data-size="sm"] {
|
|
20
|
-
--obLinearProgress-thickness: 0.25rem;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.ObLinearProgress-root[data-size="md"] {
|
|
24
|
-
--obLinearProgress-thickness: 0.5rem;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.ObLinearProgress-root[data-size="lg"] {
|
|
28
|
-
--obLinearProgress-thickness: 0.75rem;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.ObLinearProgress-bar {
|
|
32
|
-
position: absolute;
|
|
33
|
-
inset-block: 0;
|
|
34
|
-
inset-inline-start: 0;
|
|
35
|
-
inline-size: 100%;
|
|
36
|
-
background-color: var(--ds-color-brand-base-default, #0062ba);
|
|
37
|
-
border-radius: inherit;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.ObLinearProgress-determinate .ObLinearProgress-bar {
|
|
41
|
-
transition: inline-size 0.2s linear;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
/*
|
|
45
|
-
* The indeterminate bar is full width and animated with `transform`, where the
|
|
46
|
-
* start and end of the bar move at different speeds (the bar stretches and
|
|
47
|
-
* shrinks as it travels).
|
|
48
|
-
*/
|
|
49
|
-
.ObLinearProgress-indeterminate .ObLinearProgress-bar {
|
|
50
|
-
transform-origin: left center;
|
|
51
|
-
will-change: transform;
|
|
52
|
-
animation: ObLinearProgress-indeterminate var(--obLinearProgress-duration) cubic-bezier(0.65, 0.815, 0.735, 0.395)
|
|
53
|
-
infinite;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
/* Zero-height wrapper so the overlay bar never affects the layout */
|
|
57
|
-
.ObLinearProgress-overlay {
|
|
58
|
-
position: relative;
|
|
59
|
-
z-index: 1;
|
|
60
|
-
block-size: 0;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.ObLinearProgress-overlay > .ObLinearProgress-root {
|
|
64
|
-
position: absolute;
|
|
65
|
-
inset-block-start: 0;
|
|
66
|
-
inset-inline: 0;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
@keyframes ObLinearProgress-indeterminate {
|
|
70
|
-
0% {
|
|
71
|
-
transform: translateX(-35%) scaleX(0.35);
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
60% {
|
|
75
|
-
transform: translateX(60%) scaleX(0.7);
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
100% {
|
|
79
|
-
transform: translateX(100%) scaleX(0.2);
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
@media (prefers-reduced-motion: reduce) {
|
|
84
|
-
.ObLinearProgress-indeterminate .ObLinearProgress-bar {
|
|
85
|
-
animation-duration: 4s;
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
@media print {
|
|
90
|
-
.ObLinearProgress-root {
|
|
91
|
-
display: none;
|
|
92
|
-
}
|
|
93
|
-
}
|
|
1
|
+
.ObLinearProgress-root {
|
|
2
|
+
--obLinearProgress-thickness: 0.25rem;
|
|
3
|
+
--obLinearProgress-duration: 2.1s;
|
|
4
|
+
|
|
5
|
+
position: relative;
|
|
6
|
+
display: block;
|
|
7
|
+
box-sizing: border-box;
|
|
8
|
+
inline-size: 100%;
|
|
9
|
+
block-size: var(--obLinearProgress-thickness);
|
|
10
|
+
overflow: hidden;
|
|
11
|
+
background-color: var(--ds-color-brand-surface-active, #cddffb);
|
|
12
|
+
border-radius: var(--ds-border-radius-full, 624.9375rem);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.ObLinearProgress-root[data-size="xs"] {
|
|
16
|
+
--obLinearProgress-thickness: 0.125rem;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.ObLinearProgress-root[data-size="sm"] {
|
|
20
|
+
--obLinearProgress-thickness: 0.25rem;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.ObLinearProgress-root[data-size="md"] {
|
|
24
|
+
--obLinearProgress-thickness: 0.5rem;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.ObLinearProgress-root[data-size="lg"] {
|
|
28
|
+
--obLinearProgress-thickness: 0.75rem;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.ObLinearProgress-bar {
|
|
32
|
+
position: absolute;
|
|
33
|
+
inset-block: 0;
|
|
34
|
+
inset-inline-start: 0;
|
|
35
|
+
inline-size: 100%;
|
|
36
|
+
background-color: var(--ds-color-brand-base-default, #0062ba);
|
|
37
|
+
border-radius: inherit;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.ObLinearProgress-determinate .ObLinearProgress-bar {
|
|
41
|
+
transition: inline-size 0.2s linear;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/*
|
|
45
|
+
* The indeterminate bar is full width and animated with `transform`, where the
|
|
46
|
+
* start and end of the bar move at different speeds (the bar stretches and
|
|
47
|
+
* shrinks as it travels).
|
|
48
|
+
*/
|
|
49
|
+
.ObLinearProgress-indeterminate .ObLinearProgress-bar {
|
|
50
|
+
transform-origin: left center;
|
|
51
|
+
will-change: transform;
|
|
52
|
+
animation: ObLinearProgress-indeterminate var(--obLinearProgress-duration) cubic-bezier(0.65, 0.815, 0.735, 0.395)
|
|
53
|
+
infinite;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/* Zero-height wrapper so the overlay bar never affects the layout */
|
|
57
|
+
.ObLinearProgress-overlay {
|
|
58
|
+
position: relative;
|
|
59
|
+
z-index: 1;
|
|
60
|
+
block-size: 0;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.ObLinearProgress-overlay > .ObLinearProgress-root {
|
|
64
|
+
position: absolute;
|
|
65
|
+
inset-block-start: 0;
|
|
66
|
+
inset-inline: 0;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
@keyframes ObLinearProgress-indeterminate {
|
|
70
|
+
0% {
|
|
71
|
+
transform: translateX(-35%) scaleX(0.35);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
60% {
|
|
75
|
+
transform: translateX(60%) scaleX(0.7);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
100% {
|
|
79
|
+
transform: translateX(100%) scaleX(0.2);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
@media (prefers-reduced-motion: reduce) {
|
|
84
|
+
.ObLinearProgress-indeterminate .ObLinearProgress-bar {
|
|
85
|
+
animation-duration: 4s;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
@media print {
|
|
90
|
+
.ObLinearProgress-root {
|
|
91
|
+
display: none;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
@@ -1,104 +1,104 @@
|
|
|
1
|
-
import "./LinearProgress.css";
|
|
2
|
-
|
|
3
|
-
import clsx from "clsx";
|
|
4
|
-
import type React from "react";
|
|
5
|
-
|
|
6
|
-
export const linearProgressSizes = ["xs", "sm", "md", "lg"] as const;
|
|
7
|
-
|
|
8
|
-
export type LinearProgressSize = (typeof linearProgressSizes)[number];
|
|
9
|
-
|
|
10
|
-
export type LinearProgressProps = Omit<React.HTMLAttributes<HTMLDivElement>, "color"> & {
|
|
11
|
-
/**
|
|
12
|
-
* Designsystemet colour palette used for the bar
|
|
13
|
-
* @default "accent"
|
|
14
|
-
*/
|
|
15
|
-
"data-color"?: string;
|
|
16
|
-
/**
|
|
17
|
-
* Thickness of the bar
|
|
18
|
-
* @default "sm"
|
|
19
|
-
*/
|
|
20
|
-
"data-size"?: LinearProgressSize;
|
|
21
|
-
/**
|
|
22
|
-
* Renders the bar absolutely positioned in a zero-height wrapper, so it
|
|
23
|
-
* overlays the top of the following content instead of taking up space.
|
|
24
|
-
* Use it for loading indicators that should not shift the layout.
|
|
25
|
-
* @default false
|
|
26
|
-
*/
|
|
27
|
-
overlay?: boolean;
|
|
28
|
-
/**
|
|
29
|
-
* Progress value. When omitted the bar is indeterminate.
|
|
30
|
-
*/
|
|
31
|
-
value?: number;
|
|
32
|
-
/**
|
|
33
|
-
* Highest possible value of `value`
|
|
34
|
-
* @default 100
|
|
35
|
-
*/
|
|
36
|
-
valueMax?: number;
|
|
37
|
-
/**
|
|
38
|
-
* Lowest possible value of `value`
|
|
39
|
-
* @default 0
|
|
40
|
-
*/
|
|
41
|
-
valueMin?: number;
|
|
42
|
-
};
|
|
43
|
-
|
|
44
|
-
/**
|
|
45
|
-
* Linear progress indicator, equivalent to MUI `LinearProgress`. Indeterminate
|
|
46
|
-
* by default, determinate when `value` is given. Designsystemet has no linear
|
|
47
|
-
* progress component, so this is built with the designsystemet colour and
|
|
48
|
-
* radius tokens (use `data-color` to change palette).
|
|
49
|
-
*
|
|
50
|
-
* @example
|
|
51
|
-
* ```jsx
|
|
52
|
-
* // Indeterminate, in the normal document flow
|
|
53
|
-
* <LinearProgress aria-label="Loading..." />
|
|
54
|
-
*
|
|
55
|
-
* // Determinate
|
|
56
|
-
* <LinearProgress aria-label="Uploading" value={40} />
|
|
57
|
-
*
|
|
58
|
-
* // Absolutely positioned, does not affect the layout
|
|
59
|
-
* <LinearProgress overlay aria-label="Loading..." />
|
|
60
|
-
* ```
|
|
61
|
-
*/
|
|
62
|
-
export function LinearProgress({
|
|
63
|
-
className,
|
|
64
|
-
overlay,
|
|
65
|
-
value,
|
|
66
|
-
valueMax = 100,
|
|
67
|
-
valueMin = 0,
|
|
68
|
-
"data-color": color = "accent",
|
|
69
|
-
"data-size": size = "sm",
|
|
70
|
-
...props
|
|
71
|
-
}: LinearProgressProps) {
|
|
72
|
-
let isDeterminate = typeof value === "number" && Number.isFinite(value);
|
|
73
|
-
let clamped = isDeterminate ? Math.min(Math.max(value as number, valueMin), valueMax) : undefined;
|
|
74
|
-
let percentage =
|
|
75
|
-
clamped === undefined || valueMax === valueMin ? undefined : ((clamped - valueMin) / (valueMax - valueMin)) * 100;
|
|
76
|
-
|
|
77
|
-
let bar = (
|
|
78
|
-
<div
|
|
79
|
-
className={clsx(
|
|
80
|
-
"ObLinearProgress-root",
|
|
81
|
-
isDeterminate ? "ObLinearProgress-determinate" : "ObLinearProgress-indeterminate",
|
|
82
|
-
!overlay && className,
|
|
83
|
-
)}
|
|
84
|
-
data-color={color}
|
|
85
|
-
data-size={size}
|
|
86
|
-
role="progressbar"
|
|
87
|
-
aria-valuemin={valueMin}
|
|
88
|
-
aria-valuemax={valueMax}
|
|
89
|
-
aria-valuenow={clamped}
|
|
90
|
-
{...props}
|
|
91
|
-
>
|
|
92
|
-
<div
|
|
93
|
-
className="ObLinearProgress-bar"
|
|
94
|
-
style={percentage === undefined ? undefined : { inlineSize: `${percentage}%` }}
|
|
95
|
-
/>
|
|
96
|
-
</div>
|
|
97
|
-
);
|
|
98
|
-
|
|
99
|
-
if (!overlay) {
|
|
100
|
-
return bar;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
return <div className={clsx("ObLinearProgress-overlay", className)}>{bar}</div>;
|
|
104
|
-
}
|
|
1
|
+
import "./LinearProgress.css";
|
|
2
|
+
|
|
3
|
+
import clsx from "clsx";
|
|
4
|
+
import type React from "react";
|
|
5
|
+
|
|
6
|
+
export const linearProgressSizes = ["xs", "sm", "md", "lg"] as const;
|
|
7
|
+
|
|
8
|
+
export type LinearProgressSize = (typeof linearProgressSizes)[number];
|
|
9
|
+
|
|
10
|
+
export type LinearProgressProps = Omit<React.HTMLAttributes<HTMLDivElement>, "color"> & {
|
|
11
|
+
/**
|
|
12
|
+
* Designsystemet colour palette used for the bar
|
|
13
|
+
* @default "accent"
|
|
14
|
+
*/
|
|
15
|
+
"data-color"?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Thickness of the bar
|
|
18
|
+
* @default "sm"
|
|
19
|
+
*/
|
|
20
|
+
"data-size"?: LinearProgressSize;
|
|
21
|
+
/**
|
|
22
|
+
* Renders the bar absolutely positioned in a zero-height wrapper, so it
|
|
23
|
+
* overlays the top of the following content instead of taking up space.
|
|
24
|
+
* Use it for loading indicators that should not shift the layout.
|
|
25
|
+
* @default false
|
|
26
|
+
*/
|
|
27
|
+
overlay?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Progress value. When omitted the bar is indeterminate.
|
|
30
|
+
*/
|
|
31
|
+
value?: number;
|
|
32
|
+
/**
|
|
33
|
+
* Highest possible value of `value`
|
|
34
|
+
* @default 100
|
|
35
|
+
*/
|
|
36
|
+
valueMax?: number;
|
|
37
|
+
/**
|
|
38
|
+
* Lowest possible value of `value`
|
|
39
|
+
* @default 0
|
|
40
|
+
*/
|
|
41
|
+
valueMin?: number;
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Linear progress indicator, equivalent to MUI `LinearProgress`. Indeterminate
|
|
46
|
+
* by default, determinate when `value` is given. Designsystemet has no linear
|
|
47
|
+
* progress component, so this is built with the designsystemet colour and
|
|
48
|
+
* radius tokens (use `data-color` to change palette).
|
|
49
|
+
*
|
|
50
|
+
* @example
|
|
51
|
+
* ```jsx
|
|
52
|
+
* // Indeterminate, in the normal document flow
|
|
53
|
+
* <LinearProgress aria-label="Loading..." />
|
|
54
|
+
*
|
|
55
|
+
* // Determinate
|
|
56
|
+
* <LinearProgress aria-label="Uploading" value={40} />
|
|
57
|
+
*
|
|
58
|
+
* // Absolutely positioned, does not affect the layout
|
|
59
|
+
* <LinearProgress overlay aria-label="Loading..." />
|
|
60
|
+
* ```
|
|
61
|
+
*/
|
|
62
|
+
export function LinearProgress({
|
|
63
|
+
className,
|
|
64
|
+
overlay,
|
|
65
|
+
value,
|
|
66
|
+
valueMax = 100,
|
|
67
|
+
valueMin = 0,
|
|
68
|
+
"data-color": color = "accent",
|
|
69
|
+
"data-size": size = "sm",
|
|
70
|
+
...props
|
|
71
|
+
}: LinearProgressProps) {
|
|
72
|
+
let isDeterminate = typeof value === "number" && Number.isFinite(value);
|
|
73
|
+
let clamped = isDeterminate ? Math.min(Math.max(value as number, valueMin), valueMax) : undefined;
|
|
74
|
+
let percentage =
|
|
75
|
+
clamped === undefined || valueMax === valueMin ? undefined : ((clamped - valueMin) / (valueMax - valueMin)) * 100;
|
|
76
|
+
|
|
77
|
+
let bar = (
|
|
78
|
+
<div
|
|
79
|
+
className={clsx(
|
|
80
|
+
"ObLinearProgress-root",
|
|
81
|
+
isDeterminate ? "ObLinearProgress-determinate" : "ObLinearProgress-indeterminate",
|
|
82
|
+
!overlay && className,
|
|
83
|
+
)}
|
|
84
|
+
data-color={color}
|
|
85
|
+
data-size={size}
|
|
86
|
+
role="progressbar"
|
|
87
|
+
aria-valuemin={valueMin}
|
|
88
|
+
aria-valuemax={valueMax}
|
|
89
|
+
aria-valuenow={clamped}
|
|
90
|
+
{...props}
|
|
91
|
+
>
|
|
92
|
+
<div
|
|
93
|
+
className="ObLinearProgress-bar"
|
|
94
|
+
style={percentage === undefined ? undefined : { inlineSize: `${percentage}%` }}
|
|
95
|
+
/>
|
|
96
|
+
</div>
|
|
97
|
+
);
|
|
98
|
+
|
|
99
|
+
if (!overlay) {
|
|
100
|
+
return bar;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
return <div className={clsx("ObLinearProgress-overlay", className)}>{bar}</div>;
|
|
104
|
+
}
|
package/src/progress/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./LinearProgress.js";
|
|
1
|
+
export * from "./LinearProgress.js";
|
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
.ObReportDownloader-root {
|
|
2
|
-
position: fixed;
|
|
3
|
-
bottom: 0;
|
|
4
|
-
left: 0;
|
|
5
|
-
z-index: 1060;
|
|
6
|
-
display: flex;
|
|
7
|
-
justify-content: center;
|
|
8
|
-
width: 100%;
|
|
9
|
-
padding: var(--ds-size-2);
|
|
10
|
-
pointer-events: none;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.ObReportDownloader-list {
|
|
14
|
-
width: 100%;
|
|
15
|
-
max-width: 60rem;
|
|
16
|
-
padding: var(--ds-size-2);
|
|
17
|
-
background: var(--ds-color-neutral-background-default);
|
|
18
|
-
border: 1px solid var(--ds-color-neutral-border-subtle);
|
|
19
|
-
border-radius: var(--ds-border-radius-md);
|
|
20
|
-
box-shadow: var(--ds-shadow-md);
|
|
21
|
-
opacity: 1;
|
|
22
|
-
transform: translateY(0);
|
|
23
|
-
transition:
|
|
24
|
-
opacity 150ms ease,
|
|
25
|
-
transform 150ms ease;
|
|
26
|
-
pointer-events: auto;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.ObReportDownloader-list.closed {
|
|
30
|
-
padding: 0;
|
|
31
|
-
border: none;
|
|
32
|
-
box-shadow: none;
|
|
33
|
-
opacity: 0;
|
|
34
|
-
transform: translateY(100%);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.ObReportDownloader-item {
|
|
38
|
-
display: grid;
|
|
39
|
-
grid-template-columns: 3rem 1fr auto;
|
|
40
|
-
gap: var(--ds-size-3);
|
|
41
|
-
align-items: center;
|
|
42
|
-
justify-items: center;
|
|
43
|
-
padding: var(--ds-size-2);
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.ObReportDownloader-itemText {
|
|
47
|
-
justify-self: start;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.ObReportDownloader-icon {
|
|
51
|
-
display: flex;
|
|
52
|
-
align-items: center;
|
|
53
|
-
justify-content: center;
|
|
54
|
-
font-size: 1.5rem;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.ObReportDownloader-icon.cancelled {
|
|
58
|
-
color: var(--ds-color-warning-base-default);
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.ObReportDownloader-icon.error {
|
|
62
|
-
color: var(--ds-color-danger-base-default);
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.ObReportDownloader-icon.completed {
|
|
66
|
-
color: var(--ds-color-success-base-default);
|
|
67
|
-
}
|
|
1
|
+
.ObReportDownloader-root {
|
|
2
|
+
position: fixed;
|
|
3
|
+
bottom: 0;
|
|
4
|
+
left: 0;
|
|
5
|
+
z-index: 1060;
|
|
6
|
+
display: flex;
|
|
7
|
+
justify-content: center;
|
|
8
|
+
width: 100%;
|
|
9
|
+
padding: var(--ds-size-2);
|
|
10
|
+
pointer-events: none;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.ObReportDownloader-list {
|
|
14
|
+
width: 100%;
|
|
15
|
+
max-width: 60rem;
|
|
16
|
+
padding: var(--ds-size-2);
|
|
17
|
+
background: var(--ds-color-neutral-background-default);
|
|
18
|
+
border: 1px solid var(--ds-color-neutral-border-subtle);
|
|
19
|
+
border-radius: var(--ds-border-radius-md);
|
|
20
|
+
box-shadow: var(--ds-shadow-md);
|
|
21
|
+
opacity: 1;
|
|
22
|
+
transform: translateY(0);
|
|
23
|
+
transition:
|
|
24
|
+
opacity 150ms ease,
|
|
25
|
+
transform 150ms ease;
|
|
26
|
+
pointer-events: auto;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.ObReportDownloader-list.closed {
|
|
30
|
+
padding: 0;
|
|
31
|
+
border: none;
|
|
32
|
+
box-shadow: none;
|
|
33
|
+
opacity: 0;
|
|
34
|
+
transform: translateY(100%);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.ObReportDownloader-item {
|
|
38
|
+
display: grid;
|
|
39
|
+
grid-template-columns: 3rem 1fr auto;
|
|
40
|
+
gap: var(--ds-size-3);
|
|
41
|
+
align-items: center;
|
|
42
|
+
justify-items: center;
|
|
43
|
+
padding: var(--ds-size-2);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.ObReportDownloader-itemText {
|
|
47
|
+
justify-self: start;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.ObReportDownloader-icon {
|
|
51
|
+
display: flex;
|
|
52
|
+
align-items: center;
|
|
53
|
+
justify-content: center;
|
|
54
|
+
font-size: 1.5rem;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.ObReportDownloader-icon.cancelled {
|
|
58
|
+
color: var(--ds-color-warning-base-default);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.ObReportDownloader-icon.error {
|
|
62
|
+
color: var(--ds-color-danger-base-default);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.ObReportDownloader-icon.completed {
|
|
66
|
+
color: var(--ds-color-success-base-default);
|
|
67
|
+
}
|