@ekz/blueprintjs 0.2.0 → 0.2.1
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/lib/cjs/common/classes.d.ts +28 -0
- package/lib/cjs/common/classes.js +34 -0
- package/lib/cjs/common/classes.js.map +1 -0
- package/lib/cjs/common/index.d.ts +3 -0
- package/lib/cjs/common/index.js +9 -0
- package/lib/cjs/common/index.js.map +1 -0
- package/lib/cjs/components/pagination/index.d.ts +1 -0
- package/lib/cjs/components/pagination/index.js +5 -0
- package/lib/cjs/components/pagination/index.js.map +1 -0
- package/lib/cjs/components/pagination/pagination.d.ts +46 -0
- package/lib/cjs/components/pagination/pagination.js +46 -0
- package/lib/cjs/components/pagination/pagination.js.map +1 -0
- package/lib/cjs/components/table/columnFilter.d.ts +7 -0
- package/lib/cjs/components/table/columnFilter.js +23 -0
- package/lib/cjs/components/table/columnFilter.js.map +1 -0
- package/lib/cjs/components/table/columnHelpers.d.ts +340 -0
- package/lib/cjs/components/table/columnHelpers.js +39 -0
- package/lib/cjs/components/table/columnHelpers.js.map +1 -0
- package/lib/cjs/components/table/headerGroup.d.ts +8 -0
- package/lib/cjs/components/table/headerGroup.js +42 -0
- package/lib/cjs/components/table/headerGroup.js.map +1 -0
- package/lib/cjs/components/table/index.d.ts +9 -0
- package/lib/cjs/components/table/index.js +20 -0
- package/lib/cjs/components/table/index.js.map +1 -0
- package/lib/cjs/components/table/reactTableBase.d.ts +2 -0
- package/lib/cjs/components/table/reactTableBase.js +8 -0
- package/lib/cjs/components/table/reactTableBase.js.map +1 -0
- package/lib/cjs/components/table/table.d.ts +123 -0
- package/lib/cjs/components/table/table.js +229 -0
- package/lib/cjs/components/table/table.js.map +1 -0
- package/lib/cjs/components/table/tableMessages.d.ts +6 -0
- package/lib/cjs/components/table/tableMessages.js +11 -0
- package/lib/cjs/components/table/tableMessages.js.map +1 -0
- package/lib/cjs/components/table/theme.d.ts +4 -0
- package/lib/cjs/components/table/theme.js +9 -0
- package/lib/cjs/components/table/theme.js.map +1 -0
- package/lib/cjs/components/table/useAutoColumnSizer.d.ts +7 -0
- package/lib/cjs/components/table/useAutoColumnSizer.js +51 -0
- package/lib/cjs/components/table/useAutoColumnSizer.js.map +1 -0
- package/lib/cjs/components/table/useAutoHeight.d.ts +4 -0
- package/lib/cjs/components/table/useAutoHeight.js +69 -0
- package/lib/cjs/components/table/useAutoHeight.js.map +1 -0
- package/lib/cjs/components/table/useGroupedHeaderColumnSizer.d.ts +2 -0
- package/lib/cjs/components/table/useGroupedHeaderColumnSizer.js +57 -0
- package/lib/cjs/components/table/useGroupedHeaderColumnSizer.js.map +1 -0
- package/lib/cjs/components/table/useTable.d.ts +122 -0
- package/lib/cjs/components/table/useTable.js +31 -0
- package/lib/cjs/components/table/useTable.js.map +1 -0
- package/lib/cjs/components/table/useTableExport.d.ts +6 -0
- package/lib/cjs/components/table/useTableExport.js +41 -0
- package/lib/cjs/components/table/useTableExport.js.map +1 -0
- package/lib/cjs/components/table/useTableState.d.ts +3 -0
- package/lib/cjs/components/table/useTableState.js +14 -0
- package/lib/cjs/components/table/useTableState.js.map +1 -0
- package/lib/cjs/components/table/utils.d.ts +1 -0
- package/lib/cjs/components/table/utils.js +8 -0
- package/lib/cjs/components/table/utils.js.map +1 -0
- package/lib/cjs/index.d.ts +7 -0
- package/lib/cjs/index.js +16 -0
- package/lib/cjs/index.js.map +1 -0
- package/lib/cjs/theme/baseTheme.d.ts +39 -0
- package/lib/cjs/theme/baseTheme.js +47 -0
- package/lib/cjs/theme/baseTheme.js.map +1 -0
- package/lib/cjs/theme/blueprintTheme.d.ts +26 -0
- package/lib/cjs/theme/blueprintTheme.js +99 -0
- package/lib/cjs/theme/blueprintTheme.js.map +1 -0
- package/lib/cjs/theme/index.d.ts +6 -0
- package/lib/cjs/theme/index.js +13 -0
- package/lib/cjs/theme/index.js.map +1 -0
- package/lib/cjs/theme/spacing.d.ts +2 -0
- package/lib/cjs/theme/spacing.js +13 -0
- package/lib/cjs/theme/spacing.js.map +1 -0
- package/lib/cjs/theme/useBlueprintTheme.d.ts +2 -0
- package/lib/cjs/theme/useBlueprintTheme.js +12 -0
- package/lib/cjs/theme/useBlueprintTheme.js.map +1 -0
- package/lib/css/blueprintjs.css +402 -0
- package/lib/css/blueprintjs.css.map +1 -0
- package/lib/esm/common/classes.d.ts +28 -0
- package/lib/esm/common/classes.js +31 -0
- package/lib/esm/common/classes.js.map +1 -0
- package/lib/esm/common/index.d.ts +3 -0
- package/lib/esm/common/index.js +4 -0
- package/lib/esm/common/index.js.map +1 -0
- package/lib/esm/components/pagination/index.d.ts +1 -0
- package/lib/esm/components/pagination/index.js +2 -0
- package/lib/esm/components/pagination/index.js.map +1 -0
- package/lib/esm/components/pagination/pagination.d.ts +46 -0
- package/lib/esm/components/pagination/pagination.js +42 -0
- package/lib/esm/components/pagination/pagination.js.map +1 -0
- package/lib/esm/components/table/columnFilter.d.ts +7 -0
- package/lib/esm/components/table/columnFilter.js +18 -0
- package/lib/esm/components/table/columnFilter.js.map +1 -0
- package/lib/esm/components/table/columnHelpers.d.ts +340 -0
- package/lib/esm/components/table/columnHelpers.js +36 -0
- package/lib/esm/components/table/columnHelpers.js.map +1 -0
- package/lib/esm/components/table/headerGroup.d.ts +8 -0
- package/lib/esm/components/table/headerGroup.js +39 -0
- package/lib/esm/components/table/headerGroup.js.map +1 -0
- package/lib/esm/components/table/index.d.ts +9 -0
- package/lib/esm/components/table/index.js +10 -0
- package/lib/esm/components/table/index.js.map +1 -0
- package/lib/esm/components/table/reactTableBase.d.ts +2 -0
- package/lib/esm/components/table/reactTableBase.js +3 -0
- package/lib/esm/components/table/reactTableBase.js.map +1 -0
- package/lib/esm/components/table/table.d.ts +123 -0
- package/lib/esm/components/table/table.js +225 -0
- package/lib/esm/components/table/table.js.map +1 -0
- package/lib/esm/components/table/tableMessages.d.ts +6 -0
- package/lib/esm/components/table/tableMessages.js +6 -0
- package/lib/esm/components/table/tableMessages.js.map +1 -0
- package/lib/esm/components/table/theme.d.ts +4 -0
- package/lib/esm/components/table/theme.js +6 -0
- package/lib/esm/components/table/theme.js.map +1 -0
- package/lib/esm/components/table/useAutoColumnSizer.d.ts +7 -0
- package/lib/esm/components/table/useAutoColumnSizer.js +46 -0
- package/lib/esm/components/table/useAutoColumnSizer.js.map +1 -0
- package/lib/esm/components/table/useAutoHeight.d.ts +4 -0
- package/lib/esm/components/table/useAutoHeight.js +65 -0
- package/lib/esm/components/table/useAutoHeight.js.map +1 -0
- package/lib/esm/components/table/useGroupedHeaderColumnSizer.d.ts +2 -0
- package/lib/esm/components/table/useGroupedHeaderColumnSizer.js +53 -0
- package/lib/esm/components/table/useGroupedHeaderColumnSizer.js.map +1 -0
- package/lib/esm/components/table/useTable.d.ts +122 -0
- package/lib/esm/components/table/useTable.js +28 -0
- package/lib/esm/components/table/useTable.js.map +1 -0
- package/lib/esm/components/table/useTableExport.d.ts +6 -0
- package/lib/esm/components/table/useTableExport.js +37 -0
- package/lib/esm/components/table/useTableExport.js.map +1 -0
- package/lib/esm/components/table/useTableState.d.ts +3 -0
- package/lib/esm/components/table/useTableState.js +11 -0
- package/lib/esm/components/table/useTableState.js.map +1 -0
- package/lib/esm/components/table/utils.d.ts +1 -0
- package/lib/esm/components/table/utils.js +5 -0
- package/lib/esm/components/table/utils.js.map +1 -0
- package/lib/esm/index.d.ts +7 -0
- package/lib/esm/index.js +11 -0
- package/lib/esm/index.js.map +1 -0
- package/lib/esm/theme/baseTheme.d.ts +39 -0
- package/lib/esm/theme/baseTheme.js +44 -0
- package/lib/esm/theme/baseTheme.js.map +1 -0
- package/lib/esm/theme/blueprintTheme.d.ts +26 -0
- package/lib/esm/theme/blueprintTheme.js +96 -0
- package/lib/esm/theme/blueprintTheme.js.map +1 -0
- package/lib/esm/theme/index.d.ts +6 -0
- package/lib/esm/theme/index.js +5 -0
- package/lib/esm/theme/index.js.map +1 -0
- package/lib/esm/theme/spacing.d.ts +2 -0
- package/lib/esm/theme/spacing.js +9 -0
- package/lib/esm/theme/spacing.js.map +1 -0
- package/lib/esm/theme/useBlueprintTheme.d.ts +2 -0
- package/lib/esm/theme/useBlueprintTheme.js +9 -0
- package/lib/esm/theme/useBlueprintTheme.js.map +1 -0
- package/lib/esnext/common/classes.d.ts +28 -0
- package/lib/esnext/common/classes.js +31 -0
- package/lib/esnext/common/classes.js.map +1 -0
- package/lib/esnext/common/index.d.ts +3 -0
- package/lib/esnext/common/index.js +4 -0
- package/lib/esnext/common/index.js.map +1 -0
- package/lib/esnext/components/pagination/index.d.ts +1 -0
- package/lib/esnext/components/pagination/index.js +2 -0
- package/lib/esnext/components/pagination/index.js.map +1 -0
- package/lib/esnext/components/pagination/pagination.d.ts +46 -0
- package/lib/esnext/components/pagination/pagination.js +42 -0
- package/lib/esnext/components/pagination/pagination.js.map +1 -0
- package/lib/esnext/components/table/columnFilter.d.ts +7 -0
- package/lib/esnext/components/table/columnFilter.js +18 -0
- package/lib/esnext/components/table/columnFilter.js.map +1 -0
- package/lib/esnext/components/table/columnHelpers.d.ts +340 -0
- package/lib/esnext/components/table/columnHelpers.js +36 -0
- package/lib/esnext/components/table/columnHelpers.js.map +1 -0
- package/lib/esnext/components/table/headerGroup.d.ts +8 -0
- package/lib/esnext/components/table/headerGroup.js +39 -0
- package/lib/esnext/components/table/headerGroup.js.map +1 -0
- package/lib/esnext/components/table/index.d.ts +9 -0
- package/lib/esnext/components/table/index.js +10 -0
- package/lib/esnext/components/table/index.js.map +1 -0
- package/lib/esnext/components/table/reactTableBase.d.ts +2 -0
- package/lib/esnext/components/table/reactTableBase.js +3 -0
- package/lib/esnext/components/table/reactTableBase.js.map +1 -0
- package/lib/esnext/components/table/table.d.ts +123 -0
- package/lib/esnext/components/table/table.js +225 -0
- package/lib/esnext/components/table/table.js.map +1 -0
- package/lib/esnext/components/table/tableMessages.d.ts +6 -0
- package/lib/esnext/components/table/tableMessages.js +6 -0
- package/lib/esnext/components/table/tableMessages.js.map +1 -0
- package/lib/esnext/components/table/theme.d.ts +4 -0
- package/lib/esnext/components/table/theme.js +6 -0
- package/lib/esnext/components/table/theme.js.map +1 -0
- package/lib/esnext/components/table/useAutoColumnSizer.d.ts +7 -0
- package/lib/esnext/components/table/useAutoColumnSizer.js +46 -0
- package/lib/esnext/components/table/useAutoColumnSizer.js.map +1 -0
- package/lib/esnext/components/table/useAutoHeight.d.ts +4 -0
- package/lib/esnext/components/table/useAutoHeight.js +65 -0
- package/lib/esnext/components/table/useAutoHeight.js.map +1 -0
- package/lib/esnext/components/table/useGroupedHeaderColumnSizer.d.ts +2 -0
- package/lib/esnext/components/table/useGroupedHeaderColumnSizer.js +53 -0
- package/lib/esnext/components/table/useGroupedHeaderColumnSizer.js.map +1 -0
- package/lib/esnext/components/table/useTable.d.ts +122 -0
- package/lib/esnext/components/table/useTable.js +28 -0
- package/lib/esnext/components/table/useTable.js.map +1 -0
- package/lib/esnext/components/table/useTableExport.d.ts +6 -0
- package/lib/esnext/components/table/useTableExport.js +37 -0
- package/lib/esnext/components/table/useTableExport.js.map +1 -0
- package/lib/esnext/components/table/useTableState.d.ts +3 -0
- package/lib/esnext/components/table/useTableState.js +11 -0
- package/lib/esnext/components/table/useTableState.js.map +1 -0
- package/lib/esnext/components/table/utils.d.ts +1 -0
- package/lib/esnext/components/table/utils.js +5 -0
- package/lib/esnext/components/table/utils.js.map +1 -0
- package/lib/esnext/index.d.ts +7 -0
- package/lib/esnext/index.js +11 -0
- package/lib/esnext/index.js.map +1 -0
- package/lib/esnext/theme/baseTheme.d.ts +39 -0
- package/lib/esnext/theme/baseTheme.js +44 -0
- package/lib/esnext/theme/baseTheme.js.map +1 -0
- package/lib/esnext/theme/blueprintTheme.d.ts +26 -0
- package/lib/esnext/theme/blueprintTheme.js +96 -0
- package/lib/esnext/theme/blueprintTheme.js.map +1 -0
- package/lib/esnext/theme/index.d.ts +6 -0
- package/lib/esnext/theme/index.js +5 -0
- package/lib/esnext/theme/index.js.map +1 -0
- package/lib/esnext/theme/spacing.d.ts +2 -0
- package/lib/esnext/theme/spacing.js +9 -0
- package/lib/esnext/theme/spacing.js.map +1 -0
- package/lib/esnext/theme/useBlueprintTheme.d.ts +2 -0
- package/lib/esnext/theme/useBlueprintTheme.js +9 -0
- package/lib/esnext/theme/useBlueprintTheme.js.map +1 -0
- package/package.json +5 -5
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"blueprintTheme.js","sourceRoot":"","sources":["../../../src/main/web/theme/blueprintTheme.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { applyBlueprintTheme } from './blueprintTheme';
|
|
2
|
+
export type { BlueprintTheme, IntentName, IntentShades } from './blueprintTheme';
|
|
3
|
+
export { useBlueprintTheme } from './useBlueprintTheme';
|
|
4
|
+
export { blueprintBaseTheme } from './baseTheme';
|
|
5
|
+
export type { BlueprintBaseTheme } from './baseTheme';
|
|
6
|
+
export { spacing, GAP } from './spacing';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GAP = exports.spacing = exports.blueprintBaseTheme = exports.useBlueprintTheme = exports.applyBlueprintTheme = void 0;
|
|
4
|
+
var blueprintTheme_1 = require("./blueprintTheme");
|
|
5
|
+
Object.defineProperty(exports, "applyBlueprintTheme", { enumerable: true, get: function () { return blueprintTheme_1.applyBlueprintTheme; } });
|
|
6
|
+
var useBlueprintTheme_1 = require("./useBlueprintTheme");
|
|
7
|
+
Object.defineProperty(exports, "useBlueprintTheme", { enumerable: true, get: function () { return useBlueprintTheme_1.useBlueprintTheme; } });
|
|
8
|
+
var baseTheme_1 = require("./baseTheme");
|
|
9
|
+
Object.defineProperty(exports, "blueprintBaseTheme", { enumerable: true, get: function () { return baseTheme_1.blueprintBaseTheme; } });
|
|
10
|
+
var spacing_1 = require("./spacing");
|
|
11
|
+
Object.defineProperty(exports, "spacing", { enumerable: true, get: function () { return spacing_1.spacing; } });
|
|
12
|
+
Object.defineProperty(exports, "GAP", { enumerable: true, get: function () { return spacing_1.GAP; } });
|
|
13
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/main/web/theme/index.ts"],"names":[],"mappings":";;;AAAA,mDAAuD;AAA9C,qHAAA,mBAAmB,OAAA;AAE5B,yDAAwD;AAA/C,sHAAA,iBAAiB,OAAA;AAC1B,yCAAiD;AAAxC,+GAAA,kBAAkB,OAAA;AAE3B,qCAAyC;AAAhC,kGAAA,OAAO,OAAA;AAAE,8FAAA,GAAG,OAAA"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GAP = void 0;
|
|
4
|
+
exports.spacing = spacing;
|
|
5
|
+
// Derives app spacing from Blueprint's own --bp-surface-spacing custom property
|
|
6
|
+
// (see blueprintTheme.ts's `theme.spacing` override) instead of hardcoding pixel
|
|
7
|
+
// values, so app-wide gaps/padding stay in lockstep if that variable ever changes.
|
|
8
|
+
function spacing(multiplier) {
|
|
9
|
+
return `calc(var(--bp-surface-spacing) * ${multiplier})`;
|
|
10
|
+
}
|
|
11
|
+
// The app's standard gap/padding unit — 12px at Blueprint's default 4px surface spacing.
|
|
12
|
+
exports.GAP = spacing(3);
|
|
13
|
+
//# sourceMappingURL=spacing.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spacing.js","sourceRoot":"","sources":["../../../src/main/web/theme/spacing.ts"],"names":[],"mappings":";;;AAGA,0BAEC;AALD,gFAAgF;AAChF,iFAAiF;AACjF,mFAAmF;AACnF,SAAgB,OAAO,CAAC,UAAkB;IACtC,OAAO,oCAAoC,UAAU,GAAG,CAAC;AAC7D,CAAC;AAED,yFAAyF;AAC5E,QAAA,GAAG,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useBlueprintTheme = useBlueprintTheme;
|
|
4
|
+
const react_1 = require("react");
|
|
5
|
+
const blueprintTheme_1 = require("./blueprintTheme");
|
|
6
|
+
function useBlueprintTheme(theme) {
|
|
7
|
+
(0, react_1.useLayoutEffect)(() => {
|
|
8
|
+
(0, blueprintTheme_1.applyBlueprintTheme)(theme);
|
|
9
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
10
|
+
}, [JSON.stringify(theme)]);
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=useBlueprintTheme.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useBlueprintTheme.js","sourceRoot":"","sources":["../../../src/main/web/theme/useBlueprintTheme.ts"],"names":[],"mappings":";;AAKA,8CAKC;AAVD,iCAAwC;AAExC,qDAAuD;AAGvD,SAAgB,iBAAiB,CAAC,KAAqB;IACnD,IAAA,uBAAe,EAAC,GAAG,EAAE;QACjB,IAAA,oCAAmB,EAAC,KAAK,CAAC,CAAC;QAC3B,uDAAuD;IAC3D,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AAChC,CAAC"}
|
|
@@ -0,0 +1,402 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2023 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*/
|
|
4
|
+
/*
|
|
5
|
+
* Copyright 2023 Palantir Technologies, Inc. All rights reserved.
|
|
6
|
+
*/
|
|
7
|
+
ul.bp6-pagination {
|
|
8
|
+
display: inline-block;
|
|
9
|
+
list-style: none;
|
|
10
|
+
margin: 0;
|
|
11
|
+
padding: 0;
|
|
12
|
+
user-select: none;
|
|
13
|
+
}
|
|
14
|
+
ul.bp6-pagination > li {
|
|
15
|
+
display: inline-block;
|
|
16
|
+
}
|
|
17
|
+
ul.bp6-pagination > li .bp6-pagination-page {
|
|
18
|
+
padding: 8px 4px;
|
|
19
|
+
}
|
|
20
|
+
ul.bp6-pagination > li > * {
|
|
21
|
+
height: 100%;
|
|
22
|
+
}
|
|
23
|
+
ul.bp6-pagination.left {
|
|
24
|
+
display: flex;
|
|
25
|
+
justify-content: flex-start;
|
|
26
|
+
width: 100%;
|
|
27
|
+
}
|
|
28
|
+
ul.bp6-pagination.center {
|
|
29
|
+
display: flex;
|
|
30
|
+
justify-content: center;
|
|
31
|
+
width: 100%;
|
|
32
|
+
}
|
|
33
|
+
ul.bp6-pagination.right {
|
|
34
|
+
display: flex;
|
|
35
|
+
justify-content: flex-end;
|
|
36
|
+
width: 100%;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/*
|
|
40
|
+
* Copyright 2023 Palantir Technologies, Inc. All rights reserved.
|
|
41
|
+
*/
|
|
42
|
+
/*
|
|
43
|
+
* Copyright 2023 Palantir Technologies, Inc. All rights reserved.
|
|
44
|
+
*/
|
|
45
|
+
/*
|
|
46
|
+
* Copyright 2023 Palantir Technologies, Inc. All rights reserved.
|
|
47
|
+
*/
|
|
48
|
+
.bp6-react-table {
|
|
49
|
+
width: 100%;
|
|
50
|
+
}
|
|
51
|
+
.bp6-react-table .bp6-react-table-empty {
|
|
52
|
+
padding: 20px;
|
|
53
|
+
}
|
|
54
|
+
.bp6-react-table .bp6-react-table-empty[data-loading=true] {
|
|
55
|
+
height: 150px;
|
|
56
|
+
}
|
|
57
|
+
.bp6-react-table .bp6-react-table-top-toolbar,
|
|
58
|
+
.bp6-react-table .bp6-react-table-top-toolbar-right {
|
|
59
|
+
align-items: center;
|
|
60
|
+
display: flex;
|
|
61
|
+
justify-content: space-between;
|
|
62
|
+
}
|
|
63
|
+
.bp6-react-table .bp6-react-table-top-toolbar .bp6-react-table-column-manager,
|
|
64
|
+
.bp6-react-table .bp6-react-table-top-toolbar-right .bp6-react-table-column-manager {
|
|
65
|
+
background: #ffffff;
|
|
66
|
+
padding: 8px;
|
|
67
|
+
width: 360px;
|
|
68
|
+
}
|
|
69
|
+
.bp6-react-table .bp6-react-table-column-hiding {
|
|
70
|
+
margin-left: 10px;
|
|
71
|
+
}
|
|
72
|
+
.bp6-react-table .bp6-react-table-global-filter {
|
|
73
|
+
margin-left: 10px;
|
|
74
|
+
width: 200px;
|
|
75
|
+
}
|
|
76
|
+
.bp6-react-table .bp6-react-table-utility-toolbar {
|
|
77
|
+
align-items: center;
|
|
78
|
+
display: flex;
|
|
79
|
+
gap: 0;
|
|
80
|
+
}
|
|
81
|
+
.bp6-react-table .bp6-react-table-utility-toolbar:has(> :nth-child(2)) {
|
|
82
|
+
gap: 10px;
|
|
83
|
+
}
|
|
84
|
+
.bp6-react-table .bp6-react-table-content {
|
|
85
|
+
overflow-x: auto;
|
|
86
|
+
position: relative;
|
|
87
|
+
width: 100%;
|
|
88
|
+
}
|
|
89
|
+
.bp6-react-table .bp6-react-table-content[data-loading=true] {
|
|
90
|
+
overflow-x: clip;
|
|
91
|
+
}
|
|
92
|
+
.bp6-react-table .bp6-react-table-loading {
|
|
93
|
+
align-items: center;
|
|
94
|
+
background-color: rgba(255, 255, 255, 0.5);
|
|
95
|
+
display: flex;
|
|
96
|
+
height: 100%;
|
|
97
|
+
justify-content: center;
|
|
98
|
+
position: absolute;
|
|
99
|
+
width: 100%;
|
|
100
|
+
z-index: 1;
|
|
101
|
+
}
|
|
102
|
+
.bp6-react-table .bp6-react-table-head,
|
|
103
|
+
.bp6-react-table .bp6-react-table-body {
|
|
104
|
+
width: fit-content;
|
|
105
|
+
}
|
|
106
|
+
.bp6-react-table .bp6-react-table-head-cell {
|
|
107
|
+
color: #1c2127;
|
|
108
|
+
font-weight: 600;
|
|
109
|
+
}
|
|
110
|
+
.bp6-dark .bp6-react-table .bp6-react-table-head-cell {
|
|
111
|
+
color: #f6f7f9;
|
|
112
|
+
}
|
|
113
|
+
.bp6-react-table .bp6-react-table-head-cell.bp6-text-muted {
|
|
114
|
+
color: #5f6b7c;
|
|
115
|
+
}
|
|
116
|
+
.bp6-dark .bp6-react-table .bp6-react-table-head-cell.bp6-text-muted {
|
|
117
|
+
color: #abb3bf;
|
|
118
|
+
}
|
|
119
|
+
.bp6-react-table .bp6-react-table-head-cell {
|
|
120
|
+
user-select: none;
|
|
121
|
+
}
|
|
122
|
+
.bp6-react-table .bp6-react-table-head-cell:hover .bp6-react-table-resizer {
|
|
123
|
+
opacity: 1;
|
|
124
|
+
}
|
|
125
|
+
.bp6-react-table .bp6-react-table-head-cell:hover .bp6-react-table-head-filter[data-can-resize=true] {
|
|
126
|
+
width: calc(100% - 40px);
|
|
127
|
+
}
|
|
128
|
+
.bp6-react-table .bp6-react-table-head-cell[data-sortable=true] {
|
|
129
|
+
cursor: pointer;
|
|
130
|
+
}
|
|
131
|
+
.bp6-react-table .bp6-react-table-head-cell .bp6-react-table-sorting {
|
|
132
|
+
flex: 0 0 auto;
|
|
133
|
+
margin-right: 4px;
|
|
134
|
+
padding: 0 8px;
|
|
135
|
+
}
|
|
136
|
+
.bp6-react-table .bp6-react-table-head-cell-content {
|
|
137
|
+
align-items: center;
|
|
138
|
+
display: flex;
|
|
139
|
+
gap: 5px;
|
|
140
|
+
min-width: 0;
|
|
141
|
+
}
|
|
142
|
+
.bp6-react-table .bp6-react-table-head-cell-content-label {
|
|
143
|
+
flex: 0 1 auto;
|
|
144
|
+
min-width: 0;
|
|
145
|
+
overflow: hidden;
|
|
146
|
+
padding-top: 3px;
|
|
147
|
+
text-overflow: ellipsis;
|
|
148
|
+
white-space: nowrap;
|
|
149
|
+
}
|
|
150
|
+
.bp6-react-table .bp6-react-table-head-filter {
|
|
151
|
+
font-size: 14px;
|
|
152
|
+
font-weight: 400;
|
|
153
|
+
letter-spacing: 0;
|
|
154
|
+
line-height: 1.28581;
|
|
155
|
+
text-transform: none;
|
|
156
|
+
font-family: -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", "blueprint-icons-16", sans-serif;
|
|
157
|
+
margin-top: 5px;
|
|
158
|
+
width: calc(100% - 20px);
|
|
159
|
+
}
|
|
160
|
+
.bp6-react-table .bp6-react-table-head-filter > .bp6-numeric-input {
|
|
161
|
+
max-width: calc(100% - 20px);
|
|
162
|
+
}
|
|
163
|
+
.bp6-react-table .bp6-react-table-head-filter > .bp6-numeric-input .bp6-input-group {
|
|
164
|
+
width: 100%;
|
|
165
|
+
}
|
|
166
|
+
.bp6-react-table .bp6-react-table-head-filter:empty {
|
|
167
|
+
display: none;
|
|
168
|
+
}
|
|
169
|
+
.bp6-react-table .bp6-react-table-cell[data-ellipsize=true] {
|
|
170
|
+
min-width: 0;
|
|
171
|
+
overflow: hidden;
|
|
172
|
+
text-overflow: ellipsis;
|
|
173
|
+
white-space: nowrap;
|
|
174
|
+
}
|
|
175
|
+
.bp6-react-table .bp6-react-table-cell[data-ellipsize=true] > * {
|
|
176
|
+
flex: 1 1 auto;
|
|
177
|
+
min-width: 0;
|
|
178
|
+
overflow: hidden;
|
|
179
|
+
padding-top: 3px;
|
|
180
|
+
text-overflow: ellipsis;
|
|
181
|
+
white-space: nowrap;
|
|
182
|
+
}
|
|
183
|
+
.bp6-react-table .bp6-react-table-row-expander-wrapper {
|
|
184
|
+
align-items: center;
|
|
185
|
+
display: flex;
|
|
186
|
+
}
|
|
187
|
+
.bp6-react-table .bp6-react-table-row-expander {
|
|
188
|
+
cursor: pointer;
|
|
189
|
+
display: inline-block;
|
|
190
|
+
width: 25px;
|
|
191
|
+
}
|
|
192
|
+
.bp6-react-table .bp6-react-table-resizer {
|
|
193
|
+
cursor: col-resize;
|
|
194
|
+
height: 100%;
|
|
195
|
+
opacity: 0;
|
|
196
|
+
position: absolute;
|
|
197
|
+
right: 0;
|
|
198
|
+
top: 0;
|
|
199
|
+
touch-action: none;
|
|
200
|
+
user-select: none;
|
|
201
|
+
width: 16px;
|
|
202
|
+
}
|
|
203
|
+
.bp6-react-table .bp6-react-table-resizer::before {
|
|
204
|
+
font-family: "blueprint-icons-16", sans-serif;
|
|
205
|
+
font-size: 16px;
|
|
206
|
+
font-style: normal;
|
|
207
|
+
font-variant: normal;
|
|
208
|
+
font-weight: 400;
|
|
209
|
+
height: 16px;
|
|
210
|
+
line-height: 1;
|
|
211
|
+
width: 16px;
|
|
212
|
+
-moz-osx-font-smoothing: grayscale;
|
|
213
|
+
-webkit-font-smoothing: antialiased;
|
|
214
|
+
content: "\f18c";
|
|
215
|
+
position: absolute;
|
|
216
|
+
right: 4px;
|
|
217
|
+
top: 50%;
|
|
218
|
+
transform: translateY(-50%);
|
|
219
|
+
}
|
|
220
|
+
.bp6-react-table .bp6-react-table-resizer[data-resizing=true] {
|
|
221
|
+
opacity: 1;
|
|
222
|
+
}
|
|
223
|
+
.bp6-react-table .bp6-react-table-head-cell[data-has-filter=true] .bp6-react-table-resizer::before {
|
|
224
|
+
top: 25%;
|
|
225
|
+
}
|
|
226
|
+
.bp6-react-table .bp6-react-table-selection {
|
|
227
|
+
align-items: center;
|
|
228
|
+
display: flex;
|
|
229
|
+
height: 100%;
|
|
230
|
+
}
|
|
231
|
+
.bp6-react-table .bp6-react-table-row-sub-component:empty {
|
|
232
|
+
display: none;
|
|
233
|
+
}
|
|
234
|
+
.bp6-react-table .bp6-react-table-pagination {
|
|
235
|
+
display: flex;
|
|
236
|
+
justify-content: space-between;
|
|
237
|
+
padding: 10px;
|
|
238
|
+
gap: 10px;
|
|
239
|
+
}
|
|
240
|
+
.bp6-react-table .bp6-react-table-pagination .bp6-pagination {
|
|
241
|
+
width: unset;
|
|
242
|
+
}
|
|
243
|
+
.bp6-react-table[data-theme=standard] .bp6-react-table-top-toolbar {
|
|
244
|
+
padding: 10px;
|
|
245
|
+
}
|
|
246
|
+
.bp6-react-table[data-theme=standard] .bp6-react-table-content[data-top-toolbar=true] {
|
|
247
|
+
border-top: 1px solid #e5e8eb;
|
|
248
|
+
}
|
|
249
|
+
.bp6-react-table[data-theme=standard] .bp6-react-table-row {
|
|
250
|
+
align-items: stretch;
|
|
251
|
+
display: flex;
|
|
252
|
+
width: fit-content;
|
|
253
|
+
}
|
|
254
|
+
.bp6-react-table[data-theme=standard] .bp6-react-table-row:nth-child(even) {
|
|
255
|
+
background: #f6f7f9;
|
|
256
|
+
}
|
|
257
|
+
.bp6-dark .bp6-react-table[data-theme=standard] .bp6-react-table-row:nth-child(even) {
|
|
258
|
+
color: #1c2127;
|
|
259
|
+
}
|
|
260
|
+
.bp6-react-table[data-theme=standard] .bp6-react-table-row:hover[data-clickable=true] {
|
|
261
|
+
background-color: #edeff2;
|
|
262
|
+
cursor: pointer;
|
|
263
|
+
}
|
|
264
|
+
.bp6-react-table[data-theme=standard] .bp6-react-table-cell {
|
|
265
|
+
align-items: center;
|
|
266
|
+
display: flex;
|
|
267
|
+
}
|
|
268
|
+
.bp6-react-table[data-theme=standard] .bp6-react-table-head-cell,
|
|
269
|
+
.bp6-react-table[data-theme=standard] .bp6-react-table-cell {
|
|
270
|
+
box-sizing: content-box;
|
|
271
|
+
padding: 10px;
|
|
272
|
+
position: relative;
|
|
273
|
+
}
|
|
274
|
+
.bp6-react-table[data-theme=standard] .bp6-react-table-head-cell:not(:last-child),
|
|
275
|
+
.bp6-react-table[data-theme=standard] .bp6-react-table-cell:not(:last-child) {
|
|
276
|
+
border-right: 1px solid #e5e8eb;
|
|
277
|
+
}
|
|
278
|
+
.bp6-react-table[data-theme=standard] .bp6-react-table-head .bp6-react-table-row {
|
|
279
|
+
border-bottom: 1px solid #8f99a8;
|
|
280
|
+
}
|
|
281
|
+
.bp6-react-table[data-theme=standard] .bp6-react-table-body .bp6-react-table-row {
|
|
282
|
+
border-bottom: 1px solid #e5e8eb;
|
|
283
|
+
}
|
|
284
|
+
.bp6-react-table[data-theme=standard] .bp6-react-table-row-sub-component {
|
|
285
|
+
border-bottom: 1px solid #e5e8eb;
|
|
286
|
+
width: 100%;
|
|
287
|
+
}
|
|
288
|
+
.bp6-dark .bp6-react-table[data-theme=standard] .bp6-react-table-row:nth-child(odd) .bp6-react-table-row-expander svg {
|
|
289
|
+
fill: #8abbff;
|
|
290
|
+
}
|
|
291
|
+
.bp6-react-table[data-theme=segment] {
|
|
292
|
+
margin: -10px;
|
|
293
|
+
}
|
|
294
|
+
.bp6-react-table[data-theme=segment] .bp6-react-table-content {
|
|
295
|
+
padding: 10px;
|
|
296
|
+
}
|
|
297
|
+
[data-theme=segment] .bp6-react-table[data-theme=segment] {
|
|
298
|
+
margin: unset;
|
|
299
|
+
}
|
|
300
|
+
[data-theme=segment] .bp6-react-table[data-theme=segment] .bp6-react-table-content {
|
|
301
|
+
padding: unset;
|
|
302
|
+
}
|
|
303
|
+
.bp6-react-table[data-theme=segment] .bp6-react-table-empty {
|
|
304
|
+
background-color: #ffffff;
|
|
305
|
+
box-shadow: 0 0 0 1px rgba(17, 20, 24, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
|
|
306
|
+
}
|
|
307
|
+
.bp6-react-table[data-theme=segment] .bp6-react-table-loading {
|
|
308
|
+
background-color: rgba(229, 232, 235, 0.5);
|
|
309
|
+
}
|
|
310
|
+
.bp6-react-table[data-theme=segment] .bp6-react-table-row {
|
|
311
|
+
align-items: center;
|
|
312
|
+
display: flex;
|
|
313
|
+
padding: 0 10px;
|
|
314
|
+
width: fit-content;
|
|
315
|
+
}
|
|
316
|
+
.bp6-react-table[data-theme=segment] .bp6-react-table-row:hover[data-clickable=true] {
|
|
317
|
+
background-color: #edeff2;
|
|
318
|
+
cursor: pointer;
|
|
319
|
+
}
|
|
320
|
+
.bp6-react-table[data-theme=segment] .bp6-react-table-top-toolbar {
|
|
321
|
+
padding: 10px 10px 0;
|
|
322
|
+
}
|
|
323
|
+
.bp6-react-table[data-theme=segment] .bp6-react-table-head-cell {
|
|
324
|
+
color: #5f6b7c;
|
|
325
|
+
}
|
|
326
|
+
.bp6-react-table[data-theme=segment] .bp6-react-table-head-cell,
|
|
327
|
+
.bp6-react-table[data-theme=segment] .bp6-react-table-cell {
|
|
328
|
+
box-sizing: content-box;
|
|
329
|
+
padding: 10px;
|
|
330
|
+
position: relative;
|
|
331
|
+
}
|
|
332
|
+
.bp6-react-table[data-theme=segment] .bp6-react-table-body .bp6-react-table-row {
|
|
333
|
+
background: #ffffff;
|
|
334
|
+
box-shadow: 0 1px 4px rgba(17, 20, 24, 0.1), 0 4px 6px rgba(17, 20, 24, 0.1);
|
|
335
|
+
}
|
|
336
|
+
.bp6-react-table[data-theme=segment] .bp6-react-table-body .bp6-react-table-row[data-depth="0"]:not(:first-child) {
|
|
337
|
+
margin-top: 10px;
|
|
338
|
+
}
|
|
339
|
+
.bp6-react-table[data-theme=segment] .bp6-react-table-row-sub-component {
|
|
340
|
+
background: #ffffff;
|
|
341
|
+
box-shadow: 0 1px 4px rgba(17, 20, 24, 0.1), 0 4px 6px rgba(17, 20, 24, 0.1);
|
|
342
|
+
}
|
|
343
|
+
.bp6-dark .bp6-react-table[data-theme=segment] .bp6-react-table-body .bp6-react-table-row {
|
|
344
|
+
color: #1c2127;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
/*
|
|
348
|
+
* Copyright 2023 Palantir Technologies, Inc. All rights reserved.
|
|
349
|
+
*/
|
|
350
|
+
/*
|
|
351
|
+
* Copyright 2023 Palantir Technologies, Inc. All rights reserved.
|
|
352
|
+
*/
|
|
353
|
+
.bp6-control input:checked ~ .bp6-control-indicator {
|
|
354
|
+
background-color: var(--bp-intent-primary-rest);
|
|
355
|
+
color: var(--bp-intent-primary-foreground);
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.bp6-control:hover input:checked ~ .bp6-control-indicator {
|
|
359
|
+
background-color: var(--bp-intent-primary-hover);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.bp6-control input:not(:disabled):active:checked ~ .bp6-control-indicator {
|
|
363
|
+
background: var(--bp-intent-primary-active);
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.bp6-control input:disabled:checked ~ .bp6-control-indicator {
|
|
367
|
+
background: var(--bp-intent-primary-disabled);
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.bp6-control.bp6-switch input:checked ~ .bp6-control-indicator {
|
|
371
|
+
background: var(--bp-intent-primary-rest);
|
|
372
|
+
color: var(--bp-intent-primary-foreground);
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.bp6-control.bp6-switch:hover input:checked ~ .bp6-control-indicator {
|
|
376
|
+
background: var(--bp-intent-primary-hover);
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.bp6-control.bp6-switch input:checked:not(:disabled):active ~ .bp6-control-indicator {
|
|
380
|
+
background: var(--bp-intent-primary-active);
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.bp6-control.bp6-switch input:checked:disabled ~ .bp6-control-indicator {
|
|
384
|
+
background: var(--bp-intent-primary-disabled);
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
/*
|
|
388
|
+
* Copyright 2023 Palantir Technologies, Inc. All rights reserved.
|
|
389
|
+
*/
|
|
390
|
+
/*
|
|
391
|
+
* Copyright 2023 Palantir Technologies, Inc. All rights reserved.
|
|
392
|
+
*/
|
|
393
|
+
:focus {
|
|
394
|
+
outline-color: var(--bp-emphasis-focus-color, rgba(33, 93, 176, 0.752));
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.bp6-dark :focus,
|
|
398
|
+
[data-bp-color-scheme=dark] :focus {
|
|
399
|
+
outline-color: var(--bp-emphasis-focus-color, rgba(138, 187, 255, 0.752));
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
/*# sourceMappingURL=blueprintjs.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../../node_modules/@blueprintjs/colors/lib/scss/colors.scss","../../src/main/web/components/pagination/_pagination.scss","../../src/main/web/components/table/_table.scss","../../../../../node_modules/@blueprintjs/core/src/common/_variables.scss","../../../../../node_modules/@blueprintjs/core/src/common/_mixins.scss","../../../../../node_modules/@blueprintjs/core/src/components/icon/_icon-mixins.scss","../../src/main/web/theme/_intent-controls.scss","../../src/main/web/theme/_focus.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AACA;EACE;;AAGF;EACE;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;;ADnCJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AEGA;EACE;;AAEA;EACE;;AAEA;EACE;;AAIJ;AAAA;EAEE;EACA;EACA;;AAEA;AAAA;EACE,YFGE;EEFF;EACA;;AAIJ;EACE,aCHW;;ADMb;EACE,aCPW;EDQX;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;AAAA;EAEE;;AAGF;EEZA,OJtDW;EIuDX;;AAEA;EACE,OJ1CU;;AI6CZ;EACE,OJxDI;;AI0DJ;EACE,OJxDE;;AEyDN;EAEE;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAQF;EErEA,WDca;ECbb;EACA;EACA,aDiBe;EChBf;EFmEE,aCxEF;EDyEE;EACA;;AAEA;EACE;;AAEA;EACE;;AAIJ;EACE;;AAIJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,OCpIoB;;ADsIpB;EG/JF;EACA,WFwBsB;EEvBtB;EACA;EACA;EACA,QFoBsB;EEnBtB;EAGA,OFgBsB;EEjCtB;EACA;EHwKI;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAKF;EACE;;AAIJ;EACE;EACA;EACA;;AAIA;EACE;;AAIJ;EACE;EACA;EACA,SCvLW;EDwLX,KCxLW;;AD0LX;EACE;;AAKF;EACE,SCjMS;;ADoMX;EACE;;AAGF;EACE;EACA;EACA;;AAEA;EACE,YFjNM;;AEqNN;EACE,OFtOG;;AE0OP;EACE,kBF5NM;EE6NN;;AAIJ;EACE;EACA;;AAGF;AAAA;EAEE;EACA,SCrOS;EDsOT;;AAEA;AAAA;EACE;;AAIJ;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAIA;EACE;;AAKN;EACE;;AAEA;EACE,SCrQS;;ADwQX;EACE;;AAEA;EACE;;AAIJ;EACE,kBFlRE;EEmRF,YClMJ;;ADqME;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE,kBFpSM;EEqSN;;AAIJ;EACE;;AAGF;EACE,OFvTE;;AE0TJ;AAAA;EAEE;EACA,SChTS;EDiTT;;AAGF;EACE,YFtTE;EEuTF;;AAEA;EACE,YCzTO;;AD6TX;EACE,YF/TE;EEgUF;;AAIA;EACE,OFvVK;;;AANb;AAAA;AAAA;AAAA;AAAA;AAAA;AMSA;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;ANxCJ;AAAA;AAAA;AAAA;AAAA;AAAA;AOQA;EACI;;;AAGJ;AAAA;EAEI","file":"blueprintjs.css"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare const PAGINATION: string;
|
|
2
|
+
export declare const PAGINATION_BUTTON: string;
|
|
3
|
+
export declare const PAGINATION_PAGE: string;
|
|
4
|
+
export declare const REACT_TABLE: string;
|
|
5
|
+
export declare const REACT_TABLE_EMPTY: string;
|
|
6
|
+
export declare const REACT_TABLE_LOADING: string;
|
|
7
|
+
export declare const REACT_TABLE_TOP_TOOLBAR: string;
|
|
8
|
+
export declare const REACT_TABLE_TOP_TOOLBAR_LEFT: string;
|
|
9
|
+
export declare const REACT_TABLE_TOP_TOOLBAR_RIGHT: string;
|
|
10
|
+
export declare const REACT_TABLE_UTILITY_TOOLBAR: string;
|
|
11
|
+
export declare const REACT_TABLE_GLOBAL_FILTER: string;
|
|
12
|
+
export declare const REACT_TABLE_CONTENT: string;
|
|
13
|
+
export declare const REACT_TABLE_HEAD: string;
|
|
14
|
+
export declare const REACT_TABLE_BODY: string;
|
|
15
|
+
export declare const REACT_TABLE_PAGINATION: string;
|
|
16
|
+
export declare const REACT_TABLE_ROW: string;
|
|
17
|
+
export declare const REACT_TABLE_HEAD_CELL: string;
|
|
18
|
+
export declare const REACT_TABLE_HEAD_CELL_CONTENT: string;
|
|
19
|
+
export declare const REACT_TABLE_HEAD_CELL_CONTENT_LABEL: string;
|
|
20
|
+
export declare const REACT_TABLE_HEAD_FILTER: string;
|
|
21
|
+
export declare const REACT_TABLE_CELL: string;
|
|
22
|
+
export declare const REACT_TABLE_ROW_EXPANDER: string;
|
|
23
|
+
export declare const REACT_TABLE_ROW_EXPANDER_WRAPPER: string;
|
|
24
|
+
export declare const REACT_TABLE_ROW_SUB_COMPONENT: string;
|
|
25
|
+
export declare const REACT_TABLE_RESIZER: string;
|
|
26
|
+
export declare const REACT_TABLE_SORTING: string;
|
|
27
|
+
export declare const REACT_TABLE_SELECTION: string;
|
|
28
|
+
export declare const REACT_TABLE_COLUMN_MANAGER: string;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Classes } from '@blueprintjs/core';
|
|
2
|
+
const NS = Classes.getClassNamespace();
|
|
3
|
+
export const PAGINATION = `${NS}-pagination`;
|
|
4
|
+
export const PAGINATION_BUTTON = `${NS}-pagination-button`;
|
|
5
|
+
export const PAGINATION_PAGE = `${NS}-pagination-page`;
|
|
6
|
+
export const REACT_TABLE = `${NS}-react-table`;
|
|
7
|
+
export const REACT_TABLE_EMPTY = `${REACT_TABLE}-empty`;
|
|
8
|
+
export const REACT_TABLE_LOADING = `${REACT_TABLE}-loading`;
|
|
9
|
+
export const REACT_TABLE_TOP_TOOLBAR = `${REACT_TABLE}-top-toolbar`;
|
|
10
|
+
export const REACT_TABLE_TOP_TOOLBAR_LEFT = `${REACT_TABLE}-top-toolbar-left`;
|
|
11
|
+
export const REACT_TABLE_TOP_TOOLBAR_RIGHT = `${REACT_TABLE}-top-toolbar-right`;
|
|
12
|
+
export const REACT_TABLE_UTILITY_TOOLBAR = `${REACT_TABLE}-utility-toolbar`;
|
|
13
|
+
export const REACT_TABLE_GLOBAL_FILTER = `${REACT_TABLE}-global-filter`;
|
|
14
|
+
export const REACT_TABLE_CONTENT = `${REACT_TABLE}-content`;
|
|
15
|
+
export const REACT_TABLE_HEAD = `${REACT_TABLE}-head`;
|
|
16
|
+
export const REACT_TABLE_BODY = `${REACT_TABLE}-body`;
|
|
17
|
+
export const REACT_TABLE_PAGINATION = `${REACT_TABLE}-pagination`;
|
|
18
|
+
export const REACT_TABLE_ROW = `${REACT_TABLE}-row`;
|
|
19
|
+
export const REACT_TABLE_HEAD_CELL = `${REACT_TABLE}-head-cell`;
|
|
20
|
+
export const REACT_TABLE_HEAD_CELL_CONTENT = `${REACT_TABLE_HEAD_CELL}-content`;
|
|
21
|
+
export const REACT_TABLE_HEAD_CELL_CONTENT_LABEL = `${REACT_TABLE_HEAD_CELL_CONTENT}-label`;
|
|
22
|
+
export const REACT_TABLE_HEAD_FILTER = `${REACT_TABLE}-head-filter`;
|
|
23
|
+
export const REACT_TABLE_CELL = `${REACT_TABLE}-cell`;
|
|
24
|
+
export const REACT_TABLE_ROW_EXPANDER = `${REACT_TABLE}-row-expander`;
|
|
25
|
+
export const REACT_TABLE_ROW_EXPANDER_WRAPPER = `${REACT_TABLE}-row-expander-wrapper`;
|
|
26
|
+
export const REACT_TABLE_ROW_SUB_COMPONENT = `${REACT_TABLE}-row-sub-component`;
|
|
27
|
+
export const REACT_TABLE_RESIZER = `${REACT_TABLE}-resizer`;
|
|
28
|
+
export const REACT_TABLE_SORTING = `${REACT_TABLE}-sorting`;
|
|
29
|
+
export const REACT_TABLE_SELECTION = `${REACT_TABLE}-selection`;
|
|
30
|
+
export const REACT_TABLE_COLUMN_MANAGER = `${REACT_TABLE}-column-manager`;
|
|
31
|
+
//# sourceMappingURL=classes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"classes.js","sourceRoot":"","sources":["../../../src/main/web/common/classes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAE5C,MAAM,EAAE,GAAG,OAAO,CAAC,iBAAiB,EAAE,CAAC;AAEvC,MAAM,CAAC,MAAM,UAAU,GAAG,GAAG,EAAE,aAAa,CAAC;AAC7C,MAAM,CAAC,MAAM,iBAAiB,GAAG,GAAG,EAAE,oBAAoB,CAAC;AAC3D,MAAM,CAAC,MAAM,eAAe,GAAG,GAAG,EAAE,kBAAkB,CAAC;AAEvD,MAAM,CAAC,MAAM,WAAW,GAAG,GAAG,EAAE,cAAc,CAAC;AAC/C,MAAM,CAAC,MAAM,iBAAiB,GAAG,GAAG,WAAW,QAAQ,CAAC;AACxD,MAAM,CAAC,MAAM,mBAAmB,GAAG,GAAG,WAAW,UAAU,CAAC;AAC5D,MAAM,CAAC,MAAM,uBAAuB,GAAG,GAAG,WAAW,cAAc,CAAC;AACpE,MAAM,CAAC,MAAM,4BAA4B,GAAG,GAAG,WAAW,mBAAmB,CAAC;AAC9E,MAAM,CAAC,MAAM,6BAA6B,GAAG,GAAG,WAAW,oBAAoB,CAAC;AAChF,MAAM,CAAC,MAAM,2BAA2B,GAAG,GAAG,WAAW,kBAAkB,CAAC;AAC5E,MAAM,CAAC,MAAM,yBAAyB,GAAG,GAAG,WAAW,gBAAgB,CAAC;AACxE,MAAM,CAAC,MAAM,mBAAmB,GAAG,GAAG,WAAW,UAAU,CAAC;AAC5D,MAAM,CAAC,MAAM,gBAAgB,GAAG,GAAG,WAAW,OAAO,CAAC;AACtD,MAAM,CAAC,MAAM,gBAAgB,GAAG,GAAG,WAAW,OAAO,CAAC;AACtD,MAAM,CAAC,MAAM,sBAAsB,GAAG,GAAG,WAAW,aAAa,CAAC;AAClE,MAAM,CAAC,MAAM,eAAe,GAAG,GAAG,WAAW,MAAM,CAAC;AACpD,MAAM,CAAC,MAAM,qBAAqB,GAAG,GAAG,WAAW,YAAY,CAAC;AAChE,MAAM,CAAC,MAAM,6BAA6B,GAAG,GAAG,qBAAqB,UAAU,CAAC;AAChF,MAAM,CAAC,MAAM,mCAAmC,GAAG,GAAG,6BAA6B,QAAQ,CAAC;AAC5F,MAAM,CAAC,MAAM,uBAAuB,GAAG,GAAG,WAAW,cAAc,CAAC;AACpE,MAAM,CAAC,MAAM,gBAAgB,GAAG,GAAG,WAAW,OAAO,CAAC;AACtD,MAAM,CAAC,MAAM,wBAAwB,GAAG,GAAG,WAAW,eAAe,CAAC;AACtE,MAAM,CAAC,MAAM,gCAAgC,GAAG,GAAG,WAAW,uBAAuB,CAAC;AACtF,MAAM,CAAC,MAAM,6BAA6B,GAAG,GAAG,WAAW,oBAAoB,CAAC;AAChF,MAAM,CAAC,MAAM,mBAAmB,GAAG,GAAG,WAAW,UAAU,CAAC;AAC5D,MAAM,CAAC,MAAM,mBAAmB,GAAG,GAAG,WAAW,UAAU,CAAC;AAC5D,MAAM,CAAC,MAAM,qBAAqB,GAAG,GAAG,WAAW,YAAY,CAAC;AAChE,MAAM,CAAC,MAAM,0BAA0B,GAAG,GAAG,WAAW,iBAAiB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/main/web/common/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,WAAW,CAAC;AAErC,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAEvD,OAAO,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './pagination';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/main/web/components/pagination/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export interface PaginationProps extends React.HTMLAttributes<HTMLUListElement> {
|
|
3
|
+
/** Current selected page. */
|
|
4
|
+
selectedPage: number;
|
|
5
|
+
/** Handler that accepts the newly selected page by the user. */
|
|
6
|
+
onPageChange: (nextPage: number) => void;
|
|
7
|
+
/** True if component should be disabled. */
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
/** The total number of pages. */
|
|
10
|
+
pageCount: number;
|
|
11
|
+
/** The central number of pages to be displayed.
|
|
12
|
+
*
|
|
13
|
+
* @default 5
|
|
14
|
+
*/
|
|
15
|
+
centerPagesDisplayed?: number;
|
|
16
|
+
/** The number of pages to be displayed around the center pages.
|
|
17
|
+
*
|
|
18
|
+
* @default 1
|
|
19
|
+
*/
|
|
20
|
+
marginPagesDisplayed?: number;
|
|
21
|
+
/** The position to place the pagination list.
|
|
22
|
+
*
|
|
23
|
+
* @default "center"
|
|
24
|
+
*/
|
|
25
|
+
position?: PaginationPosition;
|
|
26
|
+
/** The message inside the previous page button.
|
|
27
|
+
*
|
|
28
|
+
* @default "Previous"
|
|
29
|
+
*/
|
|
30
|
+
previousMessage?: React.ReactNode;
|
|
31
|
+
/** The message inside the next page button.
|
|
32
|
+
*
|
|
33
|
+
* @default "Next"
|
|
34
|
+
*/
|
|
35
|
+
nextMessage?: React.ReactNode;
|
|
36
|
+
/** The aria message for the previous page button. */
|
|
37
|
+
'aria-previous-page'?: string;
|
|
38
|
+
/** The aria message for the next page button. */
|
|
39
|
+
'aria-next-page'?: string;
|
|
40
|
+
/** The aria message for the current page button. */
|
|
41
|
+
'aria-current-page'?: string;
|
|
42
|
+
}
|
|
43
|
+
/** Pagination position */
|
|
44
|
+
export type PaginationPosition = 'left' | 'center' | 'right';
|
|
45
|
+
declare const Pagination: React.FC<PaginationProps>;
|
|
46
|
+
export { Pagination };
|