@genesislcap/grid-pro 14.94.2 → 14.96.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.
@@ -3482,6 +3482,229 @@
3482
3482
  }
3483
3483
  ]
3484
3484
  },
3485
+ {
3486
+ "kind": "javascript-module",
3487
+ "path": "src/column/column.template.ts",
3488
+ "declarations": [
3489
+ {
3490
+ "kind": "variable",
3491
+ "name": "ColumnTemplate",
3492
+ "default": "html<GridProColumn>`\n <template>\n <slot ${slotted('slottedAgCell')} @slotchange=\"${(x) => x.slottedAgCellChanged()}\"></slot>\n </template>\n`",
3493
+ "description": "The Grid Pro Column Template.",
3494
+ "privacy": "public"
3495
+ }
3496
+ ],
3497
+ "exports": [
3498
+ {
3499
+ "kind": "js",
3500
+ "name": "ColumnTemplate",
3501
+ "declaration": {
3502
+ "name": "ColumnTemplate",
3503
+ "module": "src/column/column.template.ts"
3504
+ }
3505
+ }
3506
+ ]
3507
+ },
3508
+ {
3509
+ "kind": "javascript-module",
3510
+ "path": "src/column/column.ts",
3511
+ "declarations": [
3512
+ {
3513
+ "kind": "class",
3514
+ "description": "The Grid Pro Column element.",
3515
+ "name": "GridProColumn",
3516
+ "members": [
3517
+ {
3518
+ "kind": "field",
3519
+ "name": "slottedAgCell",
3520
+ "type": {
3521
+ "text": "HTMLElement[]"
3522
+ },
3523
+ "privacy": "public"
3524
+ },
3525
+ {
3526
+ "kind": "field",
3527
+ "name": "definition",
3528
+ "type": {
3529
+ "text": "ColDef"
3530
+ },
3531
+ "default": "{}"
3532
+ },
3533
+ {
3534
+ "kind": "method",
3535
+ "name": "slottedAgCellChanged",
3536
+ "privacy": "public"
3537
+ },
3538
+ {
3539
+ "kind": "field",
3540
+ "name": "_presentation",
3541
+ "type": {
3542
+ "text": "ComponentPresentation | null | undefined"
3543
+ },
3544
+ "privacy": "private",
3545
+ "default": "void 0",
3546
+ "inheritedFrom": {
3547
+ "name": "FoundationElement",
3548
+ "module": "src/foundation-element/foundation-element.ts"
3549
+ }
3550
+ },
3551
+ {
3552
+ "kind": "field",
3553
+ "name": "$presentation",
3554
+ "type": {
3555
+ "text": "ComponentPresentation | null"
3556
+ },
3557
+ "privacy": "public",
3558
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
3559
+ "inheritedFrom": {
3560
+ "name": "FoundationElement",
3561
+ "module": "src/foundation-element/foundation-element.ts"
3562
+ }
3563
+ },
3564
+ {
3565
+ "kind": "field",
3566
+ "name": "template",
3567
+ "type": {
3568
+ "text": "ElementViewTemplate | void | null"
3569
+ },
3570
+ "privacy": "public",
3571
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
3572
+ "inheritedFrom": {
3573
+ "name": "FoundationElement",
3574
+ "module": "src/foundation-element/foundation-element.ts"
3575
+ }
3576
+ },
3577
+ {
3578
+ "kind": "method",
3579
+ "name": "templateChanged",
3580
+ "privacy": "protected",
3581
+ "return": {
3582
+ "type": {
3583
+ "text": "void"
3584
+ }
3585
+ },
3586
+ "inheritedFrom": {
3587
+ "name": "FoundationElement",
3588
+ "module": "src/foundation-element/foundation-element.ts"
3589
+ }
3590
+ },
3591
+ {
3592
+ "kind": "field",
3593
+ "name": "styles",
3594
+ "type": {
3595
+ "text": "ElementStyles | void | null"
3596
+ },
3597
+ "privacy": "public",
3598
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
3599
+ "inheritedFrom": {
3600
+ "name": "FoundationElement",
3601
+ "module": "src/foundation-element/foundation-element.ts"
3602
+ }
3603
+ },
3604
+ {
3605
+ "kind": "method",
3606
+ "name": "stylesChanged",
3607
+ "privacy": "protected",
3608
+ "return": {
3609
+ "type": {
3610
+ "text": "void"
3611
+ }
3612
+ },
3613
+ "inheritedFrom": {
3614
+ "name": "FoundationElement",
3615
+ "module": "src/foundation-element/foundation-element.ts"
3616
+ }
3617
+ },
3618
+ {
3619
+ "kind": "method",
3620
+ "name": "compose",
3621
+ "privacy": "public",
3622
+ "static": true,
3623
+ "return": {
3624
+ "type": {
3625
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
3626
+ }
3627
+ },
3628
+ "parameters": [
3629
+ {
3630
+ "name": "this",
3631
+ "type": {
3632
+ "text": "K"
3633
+ }
3634
+ },
3635
+ {
3636
+ "name": "elementDefinition",
3637
+ "type": {
3638
+ "text": "T"
3639
+ },
3640
+ "description": "The definition of the element to create the registry\nfunction for."
3641
+ }
3642
+ ],
3643
+ "description": "Defines an element registry function with a set of element definition defaults.",
3644
+ "inheritedFrom": {
3645
+ "name": "FoundationElement",
3646
+ "module": "src/foundation-element/foundation-element.ts"
3647
+ }
3648
+ }
3649
+ ],
3650
+ "superclass": {
3651
+ "name": "FoundationElement",
3652
+ "package": "@microsoft/fast-foundation"
3653
+ },
3654
+ "tagName": "grid-pro-column",
3655
+ "customElement": true
3656
+ }
3657
+ ],
3658
+ "exports": [
3659
+ {
3660
+ "kind": "js",
3661
+ "name": "GridProColumn",
3662
+ "declaration": {
3663
+ "name": "GridProColumn",
3664
+ "module": "src/column/column.ts"
3665
+ }
3666
+ },
3667
+ {
3668
+ "kind": "custom-element-definition",
3669
+ "name": "grid-pro-column",
3670
+ "declaration": {
3671
+ "name": "GridProColumn",
3672
+ "module": "src/column/column.ts"
3673
+ }
3674
+ }
3675
+ ]
3676
+ },
3677
+ {
3678
+ "kind": "javascript-module",
3679
+ "path": "src/column/index.ts",
3680
+ "declarations": [],
3681
+ "exports": [
3682
+ {
3683
+ "kind": "js",
3684
+ "name": "*",
3685
+ "declaration": {
3686
+ "name": "*",
3687
+ "package": "./column.template"
3688
+ }
3689
+ },
3690
+ {
3691
+ "kind": "js",
3692
+ "name": "*",
3693
+ "declaration": {
3694
+ "name": "*",
3695
+ "package": "./column"
3696
+ }
3697
+ },
3698
+ {
3699
+ "kind": "js",
3700
+ "name": "*",
3701
+ "declaration": {
3702
+ "name": "*",
3703
+ "package": "./utils"
3704
+ }
3705
+ }
3706
+ ]
3707
+ },
3485
3708
  {
3486
3709
  "kind": "javascript-module",
3487
3710
  "path": "src/external/ag-grid-css.ts",
@@ -3754,229 +3977,6 @@
3754
3977
  }
3755
3978
  ]
3756
3979
  },
3757
- {
3758
- "kind": "javascript-module",
3759
- "path": "src/column/column.template.ts",
3760
- "declarations": [
3761
- {
3762
- "kind": "variable",
3763
- "name": "ColumnTemplate",
3764
- "default": "html<GridProColumn>`\n <template>\n <slot ${slotted('slottedAgCell')} @slotchange=\"${(x) => x.slottedAgCellChanged()}\"></slot>\n </template>\n`",
3765
- "description": "The Grid Pro Column Template.",
3766
- "privacy": "public"
3767
- }
3768
- ],
3769
- "exports": [
3770
- {
3771
- "kind": "js",
3772
- "name": "ColumnTemplate",
3773
- "declaration": {
3774
- "name": "ColumnTemplate",
3775
- "module": "src/column/column.template.ts"
3776
- }
3777
- }
3778
- ]
3779
- },
3780
- {
3781
- "kind": "javascript-module",
3782
- "path": "src/column/column.ts",
3783
- "declarations": [
3784
- {
3785
- "kind": "class",
3786
- "description": "The Grid Pro Column element.",
3787
- "name": "GridProColumn",
3788
- "members": [
3789
- {
3790
- "kind": "field",
3791
- "name": "slottedAgCell",
3792
- "type": {
3793
- "text": "HTMLElement[]"
3794
- },
3795
- "privacy": "public"
3796
- },
3797
- {
3798
- "kind": "field",
3799
- "name": "definition",
3800
- "type": {
3801
- "text": "ColDef"
3802
- },
3803
- "default": "{}"
3804
- },
3805
- {
3806
- "kind": "method",
3807
- "name": "slottedAgCellChanged",
3808
- "privacy": "public"
3809
- },
3810
- {
3811
- "kind": "field",
3812
- "name": "_presentation",
3813
- "type": {
3814
- "text": "ComponentPresentation | null | undefined"
3815
- },
3816
- "privacy": "private",
3817
- "default": "void 0",
3818
- "inheritedFrom": {
3819
- "name": "FoundationElement",
3820
- "module": "src/foundation-element/foundation-element.ts"
3821
- }
3822
- },
3823
- {
3824
- "kind": "field",
3825
- "name": "$presentation",
3826
- "type": {
3827
- "text": "ComponentPresentation | null"
3828
- },
3829
- "privacy": "public",
3830
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
3831
- "inheritedFrom": {
3832
- "name": "FoundationElement",
3833
- "module": "src/foundation-element/foundation-element.ts"
3834
- }
3835
- },
3836
- {
3837
- "kind": "field",
3838
- "name": "template",
3839
- "type": {
3840
- "text": "ElementViewTemplate | void | null"
3841
- },
3842
- "privacy": "public",
3843
- "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
3844
- "inheritedFrom": {
3845
- "name": "FoundationElement",
3846
- "module": "src/foundation-element/foundation-element.ts"
3847
- }
3848
- },
3849
- {
3850
- "kind": "method",
3851
- "name": "templateChanged",
3852
- "privacy": "protected",
3853
- "return": {
3854
- "type": {
3855
- "text": "void"
3856
- }
3857
- },
3858
- "inheritedFrom": {
3859
- "name": "FoundationElement",
3860
- "module": "src/foundation-element/foundation-element.ts"
3861
- }
3862
- },
3863
- {
3864
- "kind": "field",
3865
- "name": "styles",
3866
- "type": {
3867
- "text": "ElementStyles | void | null"
3868
- },
3869
- "privacy": "public",
3870
- "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
3871
- "inheritedFrom": {
3872
- "name": "FoundationElement",
3873
- "module": "src/foundation-element/foundation-element.ts"
3874
- }
3875
- },
3876
- {
3877
- "kind": "method",
3878
- "name": "stylesChanged",
3879
- "privacy": "protected",
3880
- "return": {
3881
- "type": {
3882
- "text": "void"
3883
- }
3884
- },
3885
- "inheritedFrom": {
3886
- "name": "FoundationElement",
3887
- "module": "src/foundation-element/foundation-element.ts"
3888
- }
3889
- },
3890
- {
3891
- "kind": "method",
3892
- "name": "compose",
3893
- "privacy": "public",
3894
- "static": true,
3895
- "return": {
3896
- "type": {
3897
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
3898
- }
3899
- },
3900
- "parameters": [
3901
- {
3902
- "name": "this",
3903
- "type": {
3904
- "text": "K"
3905
- }
3906
- },
3907
- {
3908
- "name": "elementDefinition",
3909
- "type": {
3910
- "text": "T"
3911
- },
3912
- "description": "The definition of the element to create the registry\nfunction for."
3913
- }
3914
- ],
3915
- "description": "Defines an element registry function with a set of element definition defaults.",
3916
- "inheritedFrom": {
3917
- "name": "FoundationElement",
3918
- "module": "src/foundation-element/foundation-element.ts"
3919
- }
3920
- }
3921
- ],
3922
- "superclass": {
3923
- "name": "FoundationElement",
3924
- "package": "@microsoft/fast-foundation"
3925
- },
3926
- "tagName": "grid-pro-column",
3927
- "customElement": true
3928
- }
3929
- ],
3930
- "exports": [
3931
- {
3932
- "kind": "js",
3933
- "name": "GridProColumn",
3934
- "declaration": {
3935
- "name": "GridProColumn",
3936
- "module": "src/column/column.ts"
3937
- }
3938
- },
3939
- {
3940
- "kind": "custom-element-definition",
3941
- "name": "grid-pro-column",
3942
- "declaration": {
3943
- "name": "GridProColumn",
3944
- "module": "src/column/column.ts"
3945
- }
3946
- }
3947
- ]
3948
- },
3949
- {
3950
- "kind": "javascript-module",
3951
- "path": "src/column/index.ts",
3952
- "declarations": [],
3953
- "exports": [
3954
- {
3955
- "kind": "js",
3956
- "name": "*",
3957
- "declaration": {
3958
- "name": "*",
3959
- "package": "./column.template"
3960
- }
3961
- },
3962
- {
3963
- "kind": "js",
3964
- "name": "*",
3965
- "declaration": {
3966
- "name": "*",
3967
- "package": "./column"
3968
- }
3969
- },
3970
- {
3971
- "kind": "js",
3972
- "name": "*",
3973
- "declaration": {
3974
- "name": "*",
3975
- "package": "./utils"
3976
- }
3977
- }
3978
- ]
3979
- },
3980
3980
  {
3981
3981
  "kind": "javascript-module",
3982
3982
  "path": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource-next.ts",
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.94.2",
4
+ "version": "14.96.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.94.2",
34
- "@genesislcap/genx": "14.94.2",
33
+ "@genesislcap/foundation-testing": "14.96.0",
34
+ "@genesislcap/genx": "14.96.0",
35
35
  "rimraf": "^3.0.2"
36
36
  },
37
37
  "dependencies": {
38
- "@genesislcap/foundation-comms": "14.94.2",
39
- "@genesislcap/foundation-logger": "14.94.2",
40
- "@genesislcap/foundation-ui": "14.94.2",
41
- "@genesislcap/foundation-utils": "14.94.2",
38
+ "@genesislcap/foundation-comms": "14.96.0",
39
+ "@genesislcap/foundation-logger": "14.96.0",
40
+ "@genesislcap/foundation-ui": "14.96.0",
41
+ "@genesislcap/foundation-utils": "14.96.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": "8f234d54d3f4baf8f21a036b93dd6ba07eb59158"
64
+ "gitHead": "65b7a0ee750748ce8a8a5ac374e56fd50623118e"
65
65
  }