@blueprintui/grid 2.6.1 → 2.7.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/CHANGELOG.md +14 -0
- package/dist/column/element.d.ts +3 -3
- package/dist/custom-elements.json +2 -2
- package/dist/detail/element.d.ts +5 -4
- package/dist/grid/element.d.ts +11 -10
- package/dist/placeholder/element.d.ts +2 -1
- package/dist/row/element.d.ts +2 -2
- package/dist/vscode.html-custom-data.json +2 -2
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@blueprintui/grid-v2.7.1](https://github.com/blueprintui/blueprintui/compare/@blueprintui/grid-v2.7.0...@blueprintui/grid-v2.7.1) (2026-01-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **build:** resolve lint errors from new eslint rules ([e41bd03](https://github.com/blueprintui/blueprintui/commit/e41bd03faba64447c7365a767b312b5765f231fd))
|
|
7
|
+
|
|
8
|
+
# [@blueprintui/grid-v2.7.0](https://github.com/blueprintui/blueprintui/compare/@blueprintui/grid-v2.6.1...@blueprintui/grid-v2.7.0) (2026-01-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **components:** create @blueprintui/orbit package ([abbbb7a](https://github.com/blueprintui/blueprintui/commit/abbbb7a60eb9ad7b5a3243363c4f76d5b9af8e87))
|
|
14
|
+
|
|
1
15
|
# [@blueprintui/grid-v2.6.1](https://github.com/blueprintui/blueprintui/compare/@blueprintui/grid-v2.6.0...@blueprintui/grid-v2.6.1) (2026-01-01)
|
|
2
16
|
|
|
3
17
|
|
package/dist/column/element.d.ts
CHANGED
|
@@ -21,11 +21,11 @@ import { LitElement } from 'lit';
|
|
|
21
21
|
*/
|
|
22
22
|
export declare class BpGridColumn extends LitElement {
|
|
23
23
|
/** control width of grid column via numeric or CSS value types */
|
|
24
|
-
width: string;
|
|
24
|
+
accessor width: string;
|
|
25
25
|
/** position individual column relative to the grid scroll container */
|
|
26
|
-
position: 'sticky' | 'fixed';
|
|
26
|
+
accessor position: 'sticky' | 'fixed';
|
|
27
27
|
/** align column content and corresponding column cells */
|
|
28
|
-
alignment: 'start' | 'center' | 'end';
|
|
28
|
+
accessor alignment: 'start' | 'center' | 'end';
|
|
29
29
|
static styles: CSSStyleSheet[];
|
|
30
30
|
/** @private */
|
|
31
31
|
_internals: ElementInternals;
|
|
@@ -1288,7 +1288,7 @@
|
|
|
1288
1288
|
"kind": "field",
|
|
1289
1289
|
"name": "columnStyle",
|
|
1290
1290
|
"type": {
|
|
1291
|
-
"text": "Permutations
|
|
1291
|
+
"text": "Permutations<\n 'hover' | 'border'\n >"
|
|
1292
1292
|
},
|
|
1293
1293
|
"description": "determines the visual style for columns",
|
|
1294
1294
|
"attribute": "column-style",
|
|
@@ -1491,7 +1491,7 @@
|
|
|
1491
1491
|
{
|
|
1492
1492
|
"name": "column-style",
|
|
1493
1493
|
"type": {
|
|
1494
|
-
"text": "Permutations
|
|
1494
|
+
"text": "Permutations<\n 'hover' | 'border'\n >"
|
|
1495
1495
|
},
|
|
1496
1496
|
"description": "determines the visual style for columns",
|
|
1497
1497
|
"fieldName": "columnStyle"
|
package/dist/detail/element.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ import { LitElement, PropertyValues } from 'lit';
|
|
|
16
16
|
*/
|
|
17
17
|
export declare class BpGridDetail extends LitElement {
|
|
18
18
|
#private;
|
|
19
|
-
i18n: {
|
|
19
|
+
accessor i18n: {
|
|
20
20
|
copy: string;
|
|
21
21
|
sort: string;
|
|
22
22
|
none: string;
|
|
@@ -47,10 +47,11 @@ export declare class BpGridDetail extends LitElement {
|
|
|
47
47
|
nextPage: string;
|
|
48
48
|
lastPage: string;
|
|
49
49
|
pageSize: string;
|
|
50
|
+
pagination: string;
|
|
50
51
|
};
|
|
51
|
-
position: 'inline-start' | 'inline-end';
|
|
52
|
-
trigger: HTMLElement | string;
|
|
53
|
-
closable: boolean;
|
|
52
|
+
accessor position: 'inline-start' | 'inline-end';
|
|
53
|
+
accessor trigger: HTMLElement | string;
|
|
54
|
+
accessor closable: boolean;
|
|
54
55
|
_internals: ElementInternals;
|
|
55
56
|
static styles: CSSStyleSheet[];
|
|
56
57
|
render(): import("lit").TemplateResult<1>;
|
package/dist/grid/element.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ import { GridLayoutController } from './layout.controller.js';
|
|
|
24
24
|
export declare class BpGrid extends LitElement {
|
|
25
25
|
#private;
|
|
26
26
|
/** set default aria/i18n strings */
|
|
27
|
-
i18n: {
|
|
27
|
+
accessor i18n: {
|
|
28
28
|
copy: string;
|
|
29
29
|
sort: string;
|
|
30
30
|
none: string;
|
|
@@ -55,25 +55,26 @@ export declare class BpGrid extends LitElement {
|
|
|
55
55
|
nextPage: string;
|
|
56
56
|
lastPage: string;
|
|
57
57
|
pageSize: string;
|
|
58
|
+
pagination: string;
|
|
58
59
|
};
|
|
59
60
|
/** max height for grid container */
|
|
60
|
-
height: string;
|
|
61
|
+
accessor height: string;
|
|
61
62
|
/** column layout determines initial column width calculation */
|
|
62
|
-
columnLayout: 'fixed' | 'flex';
|
|
63
|
+
accessor columnLayout: 'fixed' | 'flex';
|
|
63
64
|
/** determines the visual style for rows */
|
|
64
|
-
rowStyle: Permutations<'hover' | 'stripe' | 'border'>;
|
|
65
|
+
accessor rowStyle: Permutations<'hover' | 'stripe' | 'border'>;
|
|
65
66
|
/** determines the visual style for columns */
|
|
66
|
-
columnStyle: Permutations<'hover' | 'border'>;
|
|
67
|
+
accessor columnStyle: Permutations<'hover' | 'border'>;
|
|
67
68
|
/** initializes grid to appropriate aria/a11y settings for selections */
|
|
68
|
-
selectable: 'multi' | 'single' | null;
|
|
69
|
+
accessor selectable: 'multi' | 'single' | null;
|
|
69
70
|
/** disables scroll container */
|
|
70
|
-
scrollLock: boolean;
|
|
71
|
+
accessor scrollLock: boolean;
|
|
71
72
|
/** determines the visual layer style (container vs flat for nesting) */
|
|
72
|
-
layer: 'flat' | 'container';
|
|
73
|
+
accessor layer: 'flat' | 'container';
|
|
73
74
|
/** enables range selection */
|
|
74
|
-
rangeSelection: boolean;
|
|
75
|
+
accessor rangeSelection: boolean;
|
|
75
76
|
/** @private enables range selection */
|
|
76
|
-
_id: string;
|
|
77
|
+
accessor _id: string;
|
|
77
78
|
protected gridLayoutController: GridLayoutController;
|
|
78
79
|
static styles: CSSStyleSheet[];
|
|
79
80
|
/** @private */
|
|
@@ -12,7 +12,7 @@ import { LitElement } from 'lit';
|
|
|
12
12
|
export declare class BpGridPlaceholder extends LitElement {
|
|
13
13
|
#private;
|
|
14
14
|
/** set default aria/i18n strings */
|
|
15
|
-
i18n: {
|
|
15
|
+
accessor i18n: {
|
|
16
16
|
copy: string;
|
|
17
17
|
sort: string;
|
|
18
18
|
none: string;
|
|
@@ -43,6 +43,7 @@ export declare class BpGridPlaceholder extends LitElement {
|
|
|
43
43
|
nextPage: string;
|
|
44
44
|
lastPage: string;
|
|
45
45
|
pageSize: string;
|
|
46
|
+
pagination: string;
|
|
46
47
|
};
|
|
47
48
|
_colSpan: string;
|
|
48
49
|
private bpDraggableItem?;
|
package/dist/row/element.d.ts
CHANGED
|
@@ -17,9 +17,9 @@ import { LitElement } from 'lit';
|
|
|
17
17
|
*/
|
|
18
18
|
export declare class BpGridRow extends LitElement {
|
|
19
19
|
/** selected visual state */
|
|
20
|
-
selected: boolean;
|
|
20
|
+
accessor selected: boolean;
|
|
21
21
|
/** position individual row relative to the grid scroll container */
|
|
22
|
-
position: 'fixed' | 'sticky' | '';
|
|
22
|
+
accessor position: 'fixed' | 'sticky' | '';
|
|
23
23
|
static styles: CSSStyleSheet[];
|
|
24
24
|
/** @private */
|
|
25
25
|
_internals: ElementInternals;
|
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"name": "column-style",
|
|
87
87
|
"description": "determines the visual style for columns",
|
|
88
88
|
"values": [
|
|
89
|
-
{ "name": "Permutations
|
|
90
|
-
{ "name": "'border'>" }
|
|
89
|
+
{ "name": "Permutations<\n 'hover'" },
|
|
90
|
+
{ "name": "'border'\n >" }
|
|
91
91
|
]
|
|
92
92
|
},
|
|
93
93
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blueprintui/grid",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"package.json",
|
|
@@ -62,11 +62,12 @@
|
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"lit": "^3.3.1",
|
|
64
64
|
"tslib": "^2.8.1",
|
|
65
|
-
"@blueprintui/components": "^2.
|
|
65
|
+
"@blueprintui/components": "^2.18.1",
|
|
66
|
+
"@blueprintui/crane": "^2.1.9",
|
|
67
|
+
"@blueprintui/orbit": "^1.0.0",
|
|
68
|
+
"@blueprintui/icons": "^2.1.7",
|
|
66
69
|
"@blueprintui/themes": "^2.1.12",
|
|
67
|
-
"@blueprintui/
|
|
68
|
-
"@blueprintui/crane": "^2.1.8",
|
|
69
|
-
"@blueprintui/typewriter": "^2.1.11"
|
|
70
|
+
"@blueprintui/typewriter": "^2.1.12"
|
|
70
71
|
},
|
|
71
72
|
"devDependencies": {
|
|
72
73
|
"@blueprintui/cli": "0.11.3",
|
|
@@ -87,11 +88,11 @@
|
|
|
87
88
|
"publint": "0.3.12",
|
|
88
89
|
"web-test-runner-jasmine": "0.1.4",
|
|
89
90
|
"web-test-runner-performance": "0.1.6",
|
|
91
|
+
"@blueprintui-internals/eslint": "0.0.0",
|
|
92
|
+
"@blueprintui/layout": "^2.3.0",
|
|
90
93
|
"@blueprintui/test": "^0.0.0",
|
|
91
|
-
"@blueprintui/layout": "^2.2.0",
|
|
92
94
|
"@blueprintui/typography": "^2.2.1",
|
|
93
|
-
"@blueprintui/virtual": "^1.0.1"
|
|
94
|
-
"@blueprintui-internals/eslint": "0.0.0"
|
|
95
|
+
"@blueprintui/virtual": "^1.0.1"
|
|
95
96
|
},
|
|
96
97
|
"wireit": {
|
|
97
98
|
"ci": {
|