@genesislcap/grid-pro 14.101.4-alpha-0f9aa4a.0 → 14.102.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/dist/custom-elements.json +309 -1
- package/dist/dts/cell-editors/index.d.ts +1 -0
- package/dist/dts/cell-editors/index.d.ts.map +1 -1
- package/dist/dts/cell-editors/number.editor.d.ts +59 -0
- package/dist/dts/cell-editors/number.editor.d.ts.map +1 -0
- package/dist/dts/datasource/server-side.datasource.d.ts.map +1 -1
- package/dist/dts/grid-components.d.ts +10 -1
- package/dist/dts/grid-components.d.ts.map +1 -1
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +6 -0
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
- package/dist/dts/grid-pro.d.ts +5 -10
- package/dist/dts/grid-pro.d.ts.map +1 -1
- package/dist/dts/grid-pro.types.d.ts +2 -1
- package/dist/dts/grid-pro.types.d.ts.map +1 -1
- package/dist/esm/cell-editors/index.js +1 -0
- package/dist/esm/cell-editors/number.editor.js +86 -0
- package/dist/esm/datasource/server-side.datasource.js +3 -0
- package/dist/esm/grid-components.js +3 -2
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +10 -10
- package/dist/esm/grid-pro.js +4 -7
- package/dist/esm/grid-pro.types.js +1 -0
- package/dist/grid-pro.api.json +887 -2
- package/dist/grid-pro.d.ts +84 -12
- package/docs/api/grid-pro.agnumbereditorstyles.md +13 -0
- package/docs/api/grid-pro.foundationgridcomponents.md +10 -1
- package/docs/api/grid-pro.foundationnumbereditor.md +24 -0
- package/docs/api/grid-pro.getnumbereditortemplate.md +13 -0
- package/docs/api/grid-pro.gridprorenderertypes.md +1 -0
- package/docs/api/grid-pro.md +5 -0
- package/docs/api/grid-pro.numbereditor.afterguiattached.md +15 -0
- package/docs/api/grid-pro.numbereditor.changehandler.md +22 -0
- package/docs/api/grid-pro.numbereditor.destroy.md +15 -0
- package/docs/api/grid-pro.numbereditor.focus.md +15 -0
- package/docs/api/grid-pro.numbereditor.getgui.md +15 -0
- package/docs/api/grid-pro.numbereditor.getvalue.md +15 -0
- package/docs/api/grid-pro.numbereditor.init.md +22 -0
- package/docs/api/grid-pro.numbereditor.input.md +11 -0
- package/docs/api/grid-pro.numbereditor.ispopup.md +15 -0
- package/docs/api/grid-pro.numbereditor.md +39 -0
- package/docs/api/grid-pro.numbereditor.params.md +11 -0
- package/docs/api/grid-pro.numbereditor.refresh.md +22 -0
- package/docs/api/grid-pro.numbereditor.value.md +11 -0
- package/docs/api/grid-pro.numbereditorparams.disabled.md +11 -0
- package/docs/api/grid-pro.numbereditorparams.formatoptions.md +11 -0
- package/docs/api/grid-pro.numbereditorparams.md +24 -0
- package/docs/api/grid-pro.numbereditorparams.placeholder.md +11 -0
- package/docs/api/grid-pro.numbereditorparams.withformatting.md +11 -0
- package/docs/api-report.md +69 -1
- package/package.json +8 -8
package/docs/api-report.md
CHANGED
|
@@ -221,6 +221,9 @@ export enum AgGridTheme {
|
|
|
221
221
|
// @public
|
|
222
222
|
export const agHeadCSS: ElementStyles;
|
|
223
223
|
|
|
224
|
+
// @public
|
|
225
|
+
export const agNumberEditorStyles: ElementStyles;
|
|
226
|
+
|
|
224
227
|
// @public
|
|
225
228
|
export const agSelectEditorStyles: ElementStyles;
|
|
226
229
|
|
|
@@ -454,7 +457,7 @@ export const foundationGridComponents: {
|
|
|
454
457
|
styles: ElementStyles;
|
|
455
458
|
template: ViewTemplate<any, any>;
|
|
456
459
|
}, GridPro>;
|
|
457
|
-
|
|
460
|
+
foundationSelectEditor: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
458
461
|
baseName: string;
|
|
459
462
|
styles: ElementStyles;
|
|
460
463
|
template: ViewTemplate<SelectEditor, any>;
|
|
@@ -463,6 +466,15 @@ export const foundationGridComponents: {
|
|
|
463
466
|
styles: ElementStyles;
|
|
464
467
|
template: ViewTemplate<SelectEditor, any>;
|
|
465
468
|
}, SelectEditor>;
|
|
469
|
+
foundationNumberEditor: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
470
|
+
baseName: string;
|
|
471
|
+
styles: ElementStyles;
|
|
472
|
+
template: ViewTemplate<NumberEditor, any>;
|
|
473
|
+
}>) => FoundationElementRegistry< {
|
|
474
|
+
baseName: string;
|
|
475
|
+
styles: ElementStyles;
|
|
476
|
+
template: ViewTemplate<NumberEditor, any>;
|
|
477
|
+
}, NumberEditor>;
|
|
466
478
|
register(container?: Container, ...rest: any[]): void;
|
|
467
479
|
};
|
|
468
480
|
|
|
@@ -505,6 +517,17 @@ export const foundationGridProShadowOptions: ShadowRootInit;
|
|
|
505
517
|
// @public
|
|
506
518
|
export const foundationGridProStyles: ElementStyles;
|
|
507
519
|
|
|
520
|
+
// @public (undocumented)
|
|
521
|
+
export const foundationNumberEditor: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
522
|
+
baseName: string;
|
|
523
|
+
styles: ElementStyles;
|
|
524
|
+
template: ViewTemplate<NumberEditor, any>;
|
|
525
|
+
}>) => FoundationElementRegistry< {
|
|
526
|
+
baseName: string;
|
|
527
|
+
styles: ElementStyles;
|
|
528
|
+
template: ViewTemplate<NumberEditor, any>;
|
|
529
|
+
}, typeof NumberEditor>;
|
|
530
|
+
|
|
508
531
|
// @public (undocumented)
|
|
509
532
|
export const foundationSelectEditor: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
510
533
|
baseName: string;
|
|
@@ -531,6 +554,9 @@ export function getFilterByFieldType(type: string): string;
|
|
|
531
554
|
// @alpha
|
|
532
555
|
export function getFilterParamsByFieldType(type: string): any;
|
|
533
556
|
|
|
557
|
+
// @public
|
|
558
|
+
export const getNumberEditorTemplate: (designSystem?: string) => ViewTemplate<NumberEditor, any>;
|
|
559
|
+
|
|
534
560
|
// @public
|
|
535
561
|
export const getSelectEditorTemplate: (designSystem?: string) => ViewTemplate<SelectEditor, any>;
|
|
536
562
|
|
|
@@ -741,6 +767,8 @@ export enum GridProRendererTypes {
|
|
|
741
767
|
// (undocumented)
|
|
742
768
|
boolean = "boolean",
|
|
743
769
|
// (undocumented)
|
|
770
|
+
numberEditor = "numberEditor",
|
|
771
|
+
// (undocumented)
|
|
744
772
|
select = "select",
|
|
745
773
|
// (undocumented)
|
|
746
774
|
selectEditor = "selectEditor",
|
|
@@ -803,6 +831,46 @@ export const logger: Logger;
|
|
|
803
831
|
// @public
|
|
804
832
|
export function mergeAndDedupColDefWithColumnState(colDefs: ColDef[], columnStates: ColumnState[]): ColDef[];
|
|
805
833
|
|
|
834
|
+
// @public
|
|
835
|
+
export class NumberEditor extends FoundationElement implements ICellEditorComp {
|
|
836
|
+
// (undocumented)
|
|
837
|
+
afterGuiAttached(): void;
|
|
838
|
+
// (undocumented)
|
|
839
|
+
changeHandler(event: any): void;
|
|
840
|
+
// (undocumented)
|
|
841
|
+
destroy(): void;
|
|
842
|
+
// (undocumented)
|
|
843
|
+
focus(): void;
|
|
844
|
+
// (undocumented)
|
|
845
|
+
getGui(): HTMLElement;
|
|
846
|
+
// (undocumented)
|
|
847
|
+
getValue(): number;
|
|
848
|
+
// (undocumented)
|
|
849
|
+
init(params: NumberEditorParams): void;
|
|
850
|
+
// (undocumented)
|
|
851
|
+
input: any;
|
|
852
|
+
// (undocumented)
|
|
853
|
+
isPopup(): boolean;
|
|
854
|
+
// (undocumented)
|
|
855
|
+
params: NumberEditorParams;
|
|
856
|
+
// (undocumented)
|
|
857
|
+
refresh(params: NumberEditorParams): boolean;
|
|
858
|
+
// (undocumented)
|
|
859
|
+
value: number;
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
// @public
|
|
863
|
+
export interface NumberEditorParams extends ICellEditorParams {
|
|
864
|
+
// (undocumented)
|
|
865
|
+
disabled: boolean;
|
|
866
|
+
// (undocumented)
|
|
867
|
+
formatOptions: any;
|
|
868
|
+
// (undocumented)
|
|
869
|
+
placeholder: string;
|
|
870
|
+
// (undocumented)
|
|
871
|
+
withFormatting: boolean;
|
|
872
|
+
}
|
|
873
|
+
|
|
806
874
|
// Warning: (ae-internal-missing-underscore) The name "OperationType" should be prefixed with an underscore because the declaration is marked as @internal
|
|
807
875
|
//
|
|
808
876
|
// @internal
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/grid-pro",
|
|
3
3
|
"description": "Genesis Foundation AG Grid",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.102.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
"test:debug": "genx test --debug"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@genesislcap/foundation-testing": "14.
|
|
34
|
-
"@genesislcap/genx": "14.
|
|
33
|
+
"@genesislcap/foundation-testing": "14.102.0",
|
|
34
|
+
"@genesislcap/genx": "14.102.0",
|
|
35
35
|
"rimraf": "^3.0.2"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@genesislcap/foundation-comms": "14.
|
|
39
|
-
"@genesislcap/foundation-logger": "14.
|
|
40
|
-
"@genesislcap/foundation-ui": "14.
|
|
41
|
-
"@genesislcap/foundation-utils": "14.
|
|
38
|
+
"@genesislcap/foundation-comms": "14.102.0",
|
|
39
|
+
"@genesislcap/foundation-logger": "14.102.0",
|
|
40
|
+
"@genesislcap/foundation-ui": "14.102.0",
|
|
41
|
+
"@genesislcap/foundation-utils": "14.102.0",
|
|
42
42
|
"@microsoft/fast-colors": "^5.1.4",
|
|
43
43
|
"@microsoft/fast-components": "^2.21.3",
|
|
44
44
|
"@microsoft/fast-element": "^1.7.0",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"access": "public"
|
|
62
62
|
},
|
|
63
63
|
"customElements": "dist/custom-elements.json",
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "8e85c441c245f1c0dd6eae41f25d2c3059f53a17"
|
|
65
65
|
}
|