ag-grid-community 32.2.1 → 32.3.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/LICENSE.txt +1 -1
- package/dist/ag-grid-community.js +287 -154
- package/dist/ag-grid-community.min.js +1 -1
- package/dist/ag-grid-community.min.noStyle.js +1 -1
- package/dist/ag-grid-community.noStyle.js +286 -153
- package/dist/package/main.cjs.js +286 -153
- package/dist/package/main.cjs.min.js +16 -16
- package/dist/package/main.esm.min.mjs +46 -46
- package/dist/package/main.esm.mjs +286 -153
- package/dist/package/package.json +8 -8
- package/dist/types/client-side-row-model/clientSideRowModel/clientSideRowModel.d.ts +3 -0
- package/dist/types/client-side-row-model/version.d.ts +1 -1
- package/dist/types/core/api/gridApi.d.ts +1 -1
- package/dist/types/core/entities/colDef.d.ts +2 -0
- package/dist/types/core/entities/gridOptions.d.ts +4 -2
- package/dist/types/core/gridBodyComp/viewportSizeFeature.d.ts +1 -0
- package/dist/types/core/headerRendering/cells/column/selectAllFeature.d.ts +0 -2
- package/dist/types/core/headerRendering/cells/columnGroup/headerGroupCellComp.d.ts +1 -0
- package/dist/types/core/headerRendering/cells/columnGroup/headerGroupCellCtrl.d.ts +3 -0
- package/dist/types/core/interfaces/iClientSideRowModel.d.ts +1 -1
- package/dist/types/core/misc/menuService.d.ts +7 -6
- package/dist/types/core/utils/fuzzyMatch.d.ts +7 -4
- package/dist/types/core/version.d.ts +1 -1
- package/dist/types/core/widgets/popupService.d.ts +1 -1
- package/dist/types/core/widgets/tooltipStateManager.d.ts +1 -0
- package/dist/types/csv-export/version.d.ts +1 -1
- package/dist/types/infinite-row-model/version.d.ts +1 -1
- package/dist/types/main.d.ts +1 -0
- package/dist/types/theming/Part.d.ts +33 -0
- package/dist/types/theming/Theme.d.ts +39 -0
- package/dist/types/theming/main.d.ts +9 -0
- package/dist/types/theming/styles/core/GENERATED-core.d.ts +1 -0
- package/dist/types/theming/styles/core/core-css.d.ts +468 -0
- package/dist/types/theming/styles/parts/checkbox-style/GENERATED-checkbox-style-default.d.ts +1 -0
- package/dist/types/theming/styles/parts/checkbox-style/checkbox-styles.d.ts +56 -0
- package/dist/types/theming/styles/parts/color-scheme/color-schemes.d.ts +6 -0
- package/dist/types/theming/styles/parts/icon-set/alpine/GENERATED-icon-set-alpine.d.ts +1 -0
- package/dist/types/theming/styles/parts/icon-set/alpine/icon-set-alpine.d.ts +1 -0
- package/dist/types/theming/styles/parts/icon-set/icon-sets.d.ts +3 -0
- package/dist/types/theming/styles/parts/icon-set/material/GENERATED-icon-set-material.d.ts +1 -0
- package/dist/types/theming/styles/parts/icon-set/material/icon-set-material.d.ts +1 -0
- package/dist/types/theming/styles/parts/icon-set/quartz/GENERATED-icon-set-quartz.d.ts +1 -0
- package/dist/types/theming/styles/parts/icon-set/quartz/icon-set-quartz.d.ts +6 -0
- package/dist/types/theming/styles/parts/icon-set/quartz/quartz-icon-data.d.ts +3 -0
- package/dist/types/theming/styles/parts/input-style/GENERATED-input-style-base.d.ts +1 -0
- package/dist/types/theming/styles/parts/input-style/GENERATED-input-style-underlined.d.ts +1 -0
- package/dist/types/theming/styles/parts/input-style/input-styles.d.ts +70 -0
- package/dist/types/theming/styles/parts/tab-style/GENERATED-tab-style-base.d.ts +1 -0
- package/dist/types/theming/styles/parts/tab-style/GENERATED-tab-style-rolodex.d.ts +1 -0
- package/dist/types/theming/styles/parts/tab-style/tab-styles.d.ts +101 -0
- package/dist/types/theming/styles/parts/theme/themes.d.ts +3 -0
- package/dist/types/theming/theme-types.d.ts +206 -0
- package/dist/types/theming/theme-utils.d.ts +8 -0
- package/dist/types/theming/version.d.ts +1 -0
- package/package.json +8 -8
- package/styles/_css-content.scss +34 -16
- package/styles/ag-grid-no-native-widgets.css +17 -8
- package/styles/ag-grid-no-native-widgets.min.css +3 -3
- package/styles/ag-grid.css +17 -8
- package/styles/ag-grid.min.css +3 -3
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
import { type CoreParams } from './styles/core/core-css';
|
|
2
|
+
export type CssFragment = string | (() => string);
|
|
3
|
+
export type Feature = 'colorScheme' | 'iconSet' | 'checkboxStyle' | 'inputStyle' | 'tabStyle';
|
|
4
|
+
export type ParamType = 'color' | 'colorScheme' | 'length' | 'scale' | 'border' | 'borderStyle' | 'shadow' | 'image' | 'fontFamily' | 'fontWeight' | 'duration';
|
|
5
|
+
/**
|
|
6
|
+
* Return the ParamType for a given param name,
|
|
7
|
+
*/
|
|
8
|
+
export declare const getParamType: (arg: string) => ParamType;
|
|
9
|
+
type ColorParam = CoreParamWithSuffix<'Color'>;
|
|
10
|
+
type LengthParam = 'spacing' | CoreParamWithSuffix<'Padding' | 'Spacing' | 'Size' | 'Width' | 'Height' | 'Radius' | 'Indent' | 'Start' | 'End' | 'Top' | 'Bottom' | 'Horizontal' | 'Vertical'>;
|
|
11
|
+
type BorderParam = CoreParamWithSuffix<'Border'>;
|
|
12
|
+
type ShadowParam = CoreParamWithSuffix<'Shadow'>;
|
|
13
|
+
type ImageParam = CoreParamWithSuffix<'Image'>;
|
|
14
|
+
type FontFamilyParam = CoreParamWithSuffix<'Family'>;
|
|
15
|
+
type DurationParam = CoreParamWithSuffix<'Duration'>;
|
|
16
|
+
type CoreParamWithSuffix<Suffix extends string> = {
|
|
17
|
+
[K in keyof CoreParams]: K extends `${infer _}${Suffix}` ? K : never;
|
|
18
|
+
}[keyof CoreParams];
|
|
19
|
+
type AnyString = string & {};
|
|
20
|
+
/**
|
|
21
|
+
* The 'brand color' for the grid, used wherever a non-neutral color is
|
|
22
|
+
* required. Selections, focus outlines and checkboxes use the accent color by
|
|
23
|
+
* default.
|
|
24
|
+
*/
|
|
25
|
+
export type ColorValue = string | {
|
|
26
|
+
/**
|
|
27
|
+
* The name of the color parameter to reference
|
|
28
|
+
*/
|
|
29
|
+
ref: ColorParam | AnyString;
|
|
30
|
+
/**
|
|
31
|
+
* Enable color mixing. Provide a value between 0 and 1 determining the amount of the referenced color used in the mix.
|
|
32
|
+
*
|
|
33
|
+
* By default, the referenced color will be mixed with `transparent` so 0 = fully transparent and 1 = fully opaque.
|
|
34
|
+
*/
|
|
35
|
+
mix?: number;
|
|
36
|
+
/**
|
|
37
|
+
* Provide a second color reference to mix with instead of `transparent` This has no effect if `mix` is unspecified.
|
|
38
|
+
*/
|
|
39
|
+
onto?: ColorParam | AnyString;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* A CSS color-scheme value, e.g. "light", "dark", or "inherit" to use the
|
|
43
|
+
* same setting as the parent application
|
|
44
|
+
*
|
|
45
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/color-scheme
|
|
46
|
+
*/
|
|
47
|
+
export type ColorSchemeValue = 'light' | 'dark' | 'inherit' | 'normal';
|
|
48
|
+
/**
|
|
49
|
+
* A CSS dimension value with length units, e.g. "1px" or "2em". Alternatively:
|
|
50
|
+
*
|
|
51
|
+
* - `4` -> "4px" (a plain JavaScript number will be given pixel units)
|
|
52
|
+
* - `{ref: "foo"}` -> use the same value as the `foo` param (`ref` must be a valid param name)
|
|
53
|
+
* - `{calc: "foo + bar * 2"}` -> Use a dynamically calculated expression. You can use param names like spacing and fontSize in the expression, as well as built-in CSS math functions like `min(spacing, fontSize)`
|
|
54
|
+
*/
|
|
55
|
+
export type LengthValue = number | string | {
|
|
56
|
+
/**
|
|
57
|
+
* An expression that can include param names and maths, e.g.
|
|
58
|
+
* "spacing * 2". NOTE: In CSS the `-` character is valid in variable
|
|
59
|
+
* names, so leave a space around it.
|
|
60
|
+
*/
|
|
61
|
+
calc: string;
|
|
62
|
+
} | {
|
|
63
|
+
ref: LengthParam | AnyString;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* A number without units.
|
|
67
|
+
*/
|
|
68
|
+
export type ScaleValue = number;
|
|
69
|
+
/**
|
|
70
|
+
* A CSS border value e.g. "solid 1px red". Alternatively an object containing optional properties:
|
|
71
|
+
*
|
|
72
|
+
* - `style` -> a CSS border-style, default `"solid"`
|
|
73
|
+
* - `width` -> a width in pixels, default `1`
|
|
74
|
+
* - `color` -> a ColorValue as you would pass to any color param, default `{ref: "borderColor"}`
|
|
75
|
+
*
|
|
76
|
+
* Or a reference:
|
|
77
|
+
* - `{ref: "foo"}` -> use the same value as the `foo` param (`ref` must be a valid param name)
|
|
78
|
+
*
|
|
79
|
+
* Or boolean value
|
|
80
|
+
* - `true` -> `{}` (the default border style, equivalent to `{style: "solid", width: 1, color: {ref: "borderColor"}`)
|
|
81
|
+
* - `false` -> `"none"` (no border).
|
|
82
|
+
*
|
|
83
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/border
|
|
84
|
+
*/
|
|
85
|
+
export type BorderValue = string | boolean | {
|
|
86
|
+
style?: BorderStyleValue;
|
|
87
|
+
width?: LengthValue;
|
|
88
|
+
color?: ColorValue;
|
|
89
|
+
} | {
|
|
90
|
+
ref: BorderParam | AnyString;
|
|
91
|
+
};
|
|
92
|
+
/**
|
|
93
|
+
* A CSS box shadow value e.g. "10px 5px 5px red;". Alternatively an object containing optional properties:
|
|
94
|
+
*
|
|
95
|
+
* - `offsetX` -> number of pixels to move the shadow to the right, or a negative value to move left, default 0
|
|
96
|
+
* - `offsetY` -> number of pixels to move the shadow downwards, or a negative value to move up, default 0
|
|
97
|
+
* - `radius` -> softness of the shadow. 0 = hard edge, 10 = 10px wide blur
|
|
98
|
+
* - `spread` -> size of the shadow. 0 = same size as the shadow-casting element. 10 = 10px wider in all directions.
|
|
99
|
+
* - `color` -> color of the shadow e.g. `"red"`. Default `{ref: "foregroundColor"}`
|
|
100
|
+
*
|
|
101
|
+
* Or a reference:
|
|
102
|
+
* - `{ref: "foo"}` -> use the same value as the `foo` param (`ref` must be a valid param name)
|
|
103
|
+
*
|
|
104
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
|
|
105
|
+
*/
|
|
106
|
+
export type ShadowValue = string | false | {
|
|
107
|
+
/**
|
|
108
|
+
* Positive values move the shadow to the right, negative values move left
|
|
109
|
+
*
|
|
110
|
+
* @default 0
|
|
111
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
|
|
112
|
+
*/
|
|
113
|
+
offsetX?: LengthValue;
|
|
114
|
+
/**
|
|
115
|
+
* Positive values move the shadow downwards, negative values move up
|
|
116
|
+
*
|
|
117
|
+
* @default 0
|
|
118
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
|
|
119
|
+
*/
|
|
120
|
+
offsetY?: LengthValue;
|
|
121
|
+
/**
|
|
122
|
+
* Softness of the shadow. 0 = hard edge, 10 = 10px wide blur.
|
|
123
|
+
*
|
|
124
|
+
* @default 0
|
|
125
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
|
|
126
|
+
*/
|
|
127
|
+
radius?: LengthValue;
|
|
128
|
+
/**
|
|
129
|
+
* Size of the shadow. 0 = same size as the shadow-casting element. 10 = 10px wider in all directions.
|
|
130
|
+
*
|
|
131
|
+
* @default 0
|
|
132
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
|
|
133
|
+
*/
|
|
134
|
+
spread?: LengthValue;
|
|
135
|
+
/**
|
|
136
|
+
* Shadow color. Can accept any value that is valid for a color parameter, e.g. 'red' or {ref: 'accentColor'}
|
|
137
|
+
*
|
|
138
|
+
* @default {ref: 'foregroundColor'}
|
|
139
|
+
*/
|
|
140
|
+
color?: ColorValue;
|
|
141
|
+
} | {
|
|
142
|
+
ref: ShadowParam | AnyString;
|
|
143
|
+
};
|
|
144
|
+
/**
|
|
145
|
+
* A CSS line-style value e.g. "solid" or "dashed".
|
|
146
|
+
*
|
|
147
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/line-style
|
|
148
|
+
*/
|
|
149
|
+
export type BorderStyleValue = 'none' | 'solid' | 'dotted' | 'dashed';
|
|
150
|
+
/**
|
|
151
|
+
* A CSS font-family value consisting of a font name or comma-separated list of fonts in order of preference e.g. `"Roboto, -apple-system, 'Segoe UI', sans-serif"`. Alternatively:
|
|
152
|
+
*
|
|
153
|
+
* - `["Roboto", "-apple-system", "Segoe UI", "sans-serif"]` -> an array of font names in order of preference
|
|
154
|
+
* - `["Dave's Font"]` -> when passing an array, special characters in font names will automatically be escaped
|
|
155
|
+
* - `{ref: "foo"}` -> use the same value as `foo` which must be a valid font family param name
|
|
156
|
+
*
|
|
157
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/font-family
|
|
158
|
+
*/
|
|
159
|
+
export type FontFamilyValue = string | {
|
|
160
|
+
googleFont: string;
|
|
161
|
+
} | Array<string | {
|
|
162
|
+
googleFont: string;
|
|
163
|
+
}> | {
|
|
164
|
+
ref: FontFamilyParam | AnyString;
|
|
165
|
+
};
|
|
166
|
+
/**
|
|
167
|
+
* A CSS font-weight value e.g. `500` or `"bold"`
|
|
168
|
+
*
|
|
169
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight
|
|
170
|
+
*/
|
|
171
|
+
export type FontWeightValue = 'normal' | 'bold' | number;
|
|
172
|
+
/**
|
|
173
|
+
* A CSS image value e.g. `"url(...image-url...)"`. Alternatively:
|
|
174
|
+
*
|
|
175
|
+
* - `{svg: "...XML source of SVG image..."}` -> embed an SVG as a data: uri
|
|
176
|
+
* - `{url: "https://..."}` -> a URL to load an image asset from. Can be a HTTPS URL, or image assets such as PNGs can be converted to data: URLs
|
|
177
|
+
* - `{ref: "foo"}` -> use the same value as the `foo` param (`ref` must be a valid param name)
|
|
178
|
+
*
|
|
179
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/image
|
|
180
|
+
*/
|
|
181
|
+
export type ImageValue = string | {
|
|
182
|
+
/**
|
|
183
|
+
* The URL of an image. data: URLs can be used embed assets.
|
|
184
|
+
*/
|
|
185
|
+
url: string;
|
|
186
|
+
} | {
|
|
187
|
+
/**
|
|
188
|
+
* The XML text of an SVG file
|
|
189
|
+
*/
|
|
190
|
+
svg: string;
|
|
191
|
+
} | {
|
|
192
|
+
ref: ImageParam | AnyString;
|
|
193
|
+
};
|
|
194
|
+
/**
|
|
195
|
+
* A CSS time value with second or millisecond units e.g. `"0.3s"` or `"300ms"`. Alternatively:
|
|
196
|
+
*
|
|
197
|
+
* - `0.4` -> "0.4s" (a plain JavaScript number is assumed to be a number of seconds.
|
|
198
|
+
* - `{ref: "foo"}` -> use the same value as the `foo` param (`ref` must be a valid param name)
|
|
199
|
+
*
|
|
200
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/animation-duration
|
|
201
|
+
*/
|
|
202
|
+
export type DurationValue = number | string | {
|
|
203
|
+
ref: DurationParam | AnyString;
|
|
204
|
+
};
|
|
205
|
+
export declare const paramValueToCss: (param: string, value: unknown) => string | false;
|
|
206
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const kebabCase: (str: string) => string;
|
|
2
|
+
export declare const paramToVariableName: (paramName: string) => string;
|
|
3
|
+
export declare const paramToVariableExpression: (paramName: string) => string;
|
|
4
|
+
export declare const clamp: (value: number, min: number, max: number) => number;
|
|
5
|
+
export declare const logErrorMessage: (message: unknown, error?: unknown) => void;
|
|
6
|
+
export declare const proportionToPercent: (value: number) => number;
|
|
7
|
+
export declare const camelCase: (str: string) => string;
|
|
8
|
+
export declare const memoize: <R, A = void>(fn: (arg: A) => R) => ((arg: A) => R);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const VERSION = "32.3.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ag-grid-community",
|
|
3
|
-
"version": "32.
|
|
3
|
+
"version": "32.3.0",
|
|
4
4
|
"description": "Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue",
|
|
5
5
|
"main": "./dist/package/main.cjs.js",
|
|
6
6
|
"types": "./dist/types/main.d.ts",
|
|
@@ -88,19 +88,19 @@
|
|
|
88
88
|
],
|
|
89
89
|
"homepage": "https://www.ag-grid.com/",
|
|
90
90
|
"dependencies": {
|
|
91
|
-
"ag-charts-types": "10.
|
|
91
|
+
"ag-charts-types": "10.3.0"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
94
|
"source-map-loader": "^5.0.0",
|
|
95
95
|
"gulp": "^4.0.0",
|
|
96
96
|
"gulp-replace": "^1.0.0",
|
|
97
97
|
"gulp-rename": "^2.0.0",
|
|
98
|
-
"@ag-grid-community/client-side-row-model": "32.
|
|
99
|
-
"@ag-grid-community/core": "32.
|
|
100
|
-
"@ag-grid-community/csv-export": "32.
|
|
101
|
-
"@ag-grid-community/infinite-row-model": "32.
|
|
102
|
-
"@ag-grid-community/styles": "32.
|
|
103
|
-
"@ag-grid-community/theming": "32.
|
|
98
|
+
"@ag-grid-community/client-side-row-model": "32.3.0",
|
|
99
|
+
"@ag-grid-community/core": "32.3.0",
|
|
100
|
+
"@ag-grid-community/csv-export": "32.3.0",
|
|
101
|
+
"@ag-grid-community/infinite-row-model": "32.3.0",
|
|
102
|
+
"@ag-grid-community/styles": "32.3.0",
|
|
103
|
+
"@ag-grid-community/theming": "32.3.0",
|
|
104
104
|
"ts-loader": "^9.5.1",
|
|
105
105
|
"style-loader": "^3.3.4",
|
|
106
106
|
"css-loader": "^6.10.0",
|
package/styles/_css-content.scss
CHANGED
|
@@ -1633,10 +1633,10 @@
|
|
|
1633
1633
|
flex: 1 1 auto;
|
|
1634
1634
|
align-self: stretch;
|
|
1635
1635
|
align-items: center;
|
|
1636
|
+
overflow: hidden;
|
|
1636
1637
|
}
|
|
1637
1638
|
|
|
1638
1639
|
.ag-header-cell-label {
|
|
1639
|
-
overflow: hidden;
|
|
1640
1640
|
text-overflow: ellipsis;
|
|
1641
1641
|
}
|
|
1642
1642
|
|
|
@@ -1644,6 +1644,7 @@
|
|
|
1644
1644
|
position: sticky;
|
|
1645
1645
|
flex: none;
|
|
1646
1646
|
max-width: 100%;
|
|
1647
|
+
overflow: visible;
|
|
1647
1648
|
}
|
|
1648
1649
|
|
|
1649
1650
|
.ag-header-group-text {
|
|
@@ -1675,6 +1676,10 @@
|
|
|
1675
1676
|
white-space: normal;
|
|
1676
1677
|
}
|
|
1677
1678
|
|
|
1679
|
+
.ag-header-cell-comp-wrapper-limited-height > div {
|
|
1680
|
+
overflow: hidden;
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1678
1683
|
.ag-right-aligned-header .ag-header-cell-label {
|
|
1679
1684
|
flex-direction: row-reverse;
|
|
1680
1685
|
}
|
|
@@ -2565,7 +2570,7 @@
|
|
|
2565
2570
|
position: absolute;
|
|
2566
2571
|
}
|
|
2567
2572
|
|
|
2568
|
-
.ag-header-group-cell-no-group.ag-header-span-height
|
|
2573
|
+
.ag-header-group-cell-no-group.ag-header-span-height {
|
|
2569
2574
|
display: none;
|
|
2570
2575
|
}
|
|
2571
2576
|
|
|
@@ -3847,11 +3852,7 @@
|
|
|
3847
3852
|
}
|
|
3848
3853
|
|
|
3849
3854
|
.ag-row-highlight-above::after {
|
|
3850
|
-
top:
|
|
3851
|
-
}
|
|
3852
|
-
|
|
3853
|
-
.ag-row-highlight-above.ag-row-first::after {
|
|
3854
|
-
top: 0;
|
|
3855
|
+
top: 0px;
|
|
3855
3856
|
}
|
|
3856
3857
|
|
|
3857
3858
|
.ag-row-highlight-below::after {
|
|
@@ -4903,7 +4904,7 @@
|
|
|
4903
4904
|
margin-right: 4px;
|
|
4904
4905
|
}
|
|
4905
4906
|
|
|
4906
|
-
.ag-header-row:not(:first-child) .ag-header-cell:not(.ag-header-span-height.ag-header-span-total),
|
|
4907
|
+
.ag-header-row:not(:first-child) .ag-header-cell:not(.ag-header-span-height.ag-header-span-total, .ag-header-parent-hidden),
|
|
4907
4908
|
.ag-header-row:not(:first-child) .ag-header-group-cell.ag-header-group-cell-with-group {
|
|
4908
4909
|
border-top: var(--ag-borders-critical) var(--ag-border-color);
|
|
4909
4910
|
}
|
|
@@ -5726,6 +5727,14 @@
|
|
|
5726
5727
|
--ag-charts-justify: none !important;
|
|
5727
5728
|
}
|
|
5728
5729
|
|
|
5730
|
+
.ag-charts-wrapper .ag-charts-proxy-legend-toolbar button:focus {
|
|
5731
|
+
box-shadow: none;
|
|
5732
|
+
}
|
|
5733
|
+
|
|
5734
|
+
.ag-charts-wrapper .ag-charts-proxy-legend-toolbar button:focus-visible {
|
|
5735
|
+
box-shadow: var(--ag-input-focus-box-shadow);
|
|
5736
|
+
}
|
|
5737
|
+
|
|
5729
5738
|
.ag-date-time-list-page-title-bar {
|
|
5730
5739
|
display: flex;
|
|
5731
5740
|
}
|
|
@@ -7691,10 +7700,10 @@
|
|
|
7691
7700
|
flex: 1 1 auto;
|
|
7692
7701
|
align-self: stretch;
|
|
7693
7702
|
align-items: center;
|
|
7703
|
+
overflow: hidden;
|
|
7694
7704
|
}
|
|
7695
7705
|
|
|
7696
7706
|
.ag-header-cell-label {
|
|
7697
|
-
overflow: hidden;
|
|
7698
7707
|
text-overflow: ellipsis;
|
|
7699
7708
|
}
|
|
7700
7709
|
|
|
@@ -7702,6 +7711,7 @@
|
|
|
7702
7711
|
position: sticky;
|
|
7703
7712
|
flex: none;
|
|
7704
7713
|
max-width: 100%;
|
|
7714
|
+
overflow: visible;
|
|
7705
7715
|
}
|
|
7706
7716
|
|
|
7707
7717
|
.ag-header-group-text {
|
|
@@ -7733,6 +7743,10 @@
|
|
|
7733
7743
|
white-space: normal;
|
|
7734
7744
|
}
|
|
7735
7745
|
|
|
7746
|
+
.ag-header-cell-comp-wrapper-limited-height > div {
|
|
7747
|
+
overflow: hidden;
|
|
7748
|
+
}
|
|
7749
|
+
|
|
7736
7750
|
.ag-right-aligned-header .ag-header-cell-label {
|
|
7737
7751
|
flex-direction: row-reverse;
|
|
7738
7752
|
}
|
|
@@ -8623,7 +8637,7 @@
|
|
|
8623
8637
|
position: absolute;
|
|
8624
8638
|
}
|
|
8625
8639
|
|
|
8626
|
-
.ag-header-group-cell-no-group.ag-header-span-height
|
|
8640
|
+
.ag-header-group-cell-no-group.ag-header-span-height {
|
|
8627
8641
|
display: none;
|
|
8628
8642
|
}
|
|
8629
8643
|
|
|
@@ -9905,11 +9919,7 @@
|
|
|
9905
9919
|
}
|
|
9906
9920
|
|
|
9907
9921
|
.ag-row-highlight-above::after {
|
|
9908
|
-
top:
|
|
9909
|
-
}
|
|
9910
|
-
|
|
9911
|
-
.ag-row-highlight-above.ag-row-first::after {
|
|
9912
|
-
top: 0;
|
|
9922
|
+
top: 0px;
|
|
9913
9923
|
}
|
|
9914
9924
|
|
|
9915
9925
|
.ag-row-highlight-below::after {
|
|
@@ -10961,7 +10971,7 @@
|
|
|
10961
10971
|
margin-right: 4px;
|
|
10962
10972
|
}
|
|
10963
10973
|
|
|
10964
|
-
.ag-header-row:not(:first-child) .ag-header-cell:not(.ag-header-span-height.ag-header-span-total),
|
|
10974
|
+
.ag-header-row:not(:first-child) .ag-header-cell:not(.ag-header-span-height.ag-header-span-total, .ag-header-parent-hidden),
|
|
10965
10975
|
.ag-header-row:not(:first-child) .ag-header-group-cell.ag-header-group-cell-with-group {
|
|
10966
10976
|
border-top: var(--ag-borders-critical) var(--ag-border-color);
|
|
10967
10977
|
}
|
|
@@ -11784,6 +11794,14 @@
|
|
|
11784
11794
|
--ag-charts-justify: none !important;
|
|
11785
11795
|
}
|
|
11786
11796
|
|
|
11797
|
+
.ag-charts-wrapper .ag-charts-proxy-legend-toolbar button:focus {
|
|
11798
|
+
box-shadow: none;
|
|
11799
|
+
}
|
|
11800
|
+
|
|
11801
|
+
.ag-charts-wrapper .ag-charts-proxy-legend-toolbar button:focus-visible {
|
|
11802
|
+
box-shadow: var(--ag-input-focus-box-shadow);
|
|
11803
|
+
}
|
|
11804
|
+
|
|
11787
11805
|
.ag-date-time-list-page-title-bar {
|
|
11788
11806
|
display: flex;
|
|
11789
11807
|
}
|
|
@@ -1611,10 +1611,10 @@ ag-grid-aurelia {
|
|
|
1611
1611
|
flex: 1 1 auto;
|
|
1612
1612
|
align-self: stretch;
|
|
1613
1613
|
align-items: center;
|
|
1614
|
+
overflow: hidden;
|
|
1614
1615
|
}
|
|
1615
1616
|
|
|
1616
1617
|
.ag-header-cell-label {
|
|
1617
|
-
overflow: hidden;
|
|
1618
1618
|
text-overflow: ellipsis;
|
|
1619
1619
|
}
|
|
1620
1620
|
|
|
@@ -1622,6 +1622,7 @@ ag-grid-aurelia {
|
|
|
1622
1622
|
position: sticky;
|
|
1623
1623
|
flex: none;
|
|
1624
1624
|
max-width: 100%;
|
|
1625
|
+
overflow: visible;
|
|
1625
1626
|
}
|
|
1626
1627
|
|
|
1627
1628
|
.ag-header-group-text {
|
|
@@ -1653,6 +1654,10 @@ ag-grid-aurelia {
|
|
|
1653
1654
|
white-space: normal;
|
|
1654
1655
|
}
|
|
1655
1656
|
|
|
1657
|
+
.ag-header-cell-comp-wrapper-limited-height > div {
|
|
1658
|
+
overflow: hidden;
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1656
1661
|
.ag-right-aligned-header .ag-header-cell-label {
|
|
1657
1662
|
flex-direction: row-reverse;
|
|
1658
1663
|
}
|
|
@@ -2543,7 +2548,7 @@ ag-grid-aurelia {
|
|
|
2543
2548
|
position: absolute;
|
|
2544
2549
|
}
|
|
2545
2550
|
|
|
2546
|
-
.ag-header-group-cell-no-group.ag-header-span-height
|
|
2551
|
+
.ag-header-group-cell-no-group.ag-header-span-height {
|
|
2547
2552
|
display: none;
|
|
2548
2553
|
}
|
|
2549
2554
|
|
|
@@ -3825,11 +3830,7 @@ button[class^=ag-]:focus {
|
|
|
3825
3830
|
}
|
|
3826
3831
|
|
|
3827
3832
|
.ag-row-highlight-above::after {
|
|
3828
|
-
top:
|
|
3829
|
-
}
|
|
3830
|
-
|
|
3831
|
-
.ag-row-highlight-above.ag-row-first::after {
|
|
3832
|
-
top: 0;
|
|
3833
|
+
top: 0px;
|
|
3833
3834
|
}
|
|
3834
3835
|
|
|
3835
3836
|
.ag-row-highlight-below::after {
|
|
@@ -4881,7 +4882,7 @@ button.ag-side-button-button:focus {
|
|
|
4881
4882
|
margin-right: 4px;
|
|
4882
4883
|
}
|
|
4883
4884
|
|
|
4884
|
-
.ag-header-row:not(:first-child) .ag-header-cell:not(.ag-header-span-height.ag-header-span-total),
|
|
4885
|
+
.ag-header-row:not(:first-child) .ag-header-cell:not(.ag-header-span-height.ag-header-span-total, .ag-header-parent-hidden),
|
|
4885
4886
|
.ag-header-row:not(:first-child) .ag-header-group-cell.ag-header-group-cell-with-group {
|
|
4886
4887
|
border-top: var(--ag-borders-critical) var(--ag-border-color);
|
|
4887
4888
|
}
|
|
@@ -5704,6 +5705,14 @@ button.ag-side-button-button:focus {
|
|
|
5704
5705
|
--ag-charts-justify: none !important;
|
|
5705
5706
|
}
|
|
5706
5707
|
|
|
5708
|
+
.ag-charts-wrapper .ag-charts-proxy-legend-toolbar button:focus {
|
|
5709
|
+
box-shadow: none;
|
|
5710
|
+
}
|
|
5711
|
+
|
|
5712
|
+
.ag-charts-wrapper .ag-charts-proxy-legend-toolbar button:focus-visible {
|
|
5713
|
+
box-shadow: var(--ag-input-focus-box-shadow);
|
|
5714
|
+
}
|
|
5715
|
+
|
|
5707
5716
|
.ag-date-time-list-page-title-bar {
|
|
5708
5717
|
display: flex;
|
|
5709
5718
|
}
|