@genesislcap/grid-pro 14.428.2-alpha-257ebec.0 → 14.429.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.
@@ -17551,322 +17551,6 @@
17551
17551
  }
17552
17552
  ]
17553
17553
  },
17554
- {
17555
- "kind": "javascript-module",
17556
- "path": "src/state-persistence/index.ts",
17557
- "declarations": [],
17558
- "exports": [
17559
- {
17560
- "kind": "js",
17561
- "name": "*",
17562
- "declaration": {
17563
- "name": "*",
17564
- "package": "./kv-state"
17565
- }
17566
- },
17567
- {
17568
- "kind": "js",
17569
- "name": "*",
17570
- "declaration": {
17571
- "name": "*",
17572
- "package": "./local-state"
17573
- }
17574
- },
17575
- {
17576
- "kind": "js",
17577
- "name": "*",
17578
- "declaration": {
17579
- "name": "*",
17580
- "package": "./state-persistence"
17581
- }
17582
- }
17583
- ]
17584
- },
17585
- {
17586
- "kind": "javascript-module",
17587
- "path": "src/state-persistence/kv-state.ts",
17588
- "declarations": [
17589
- {
17590
- "kind": "class",
17591
- "description": "Implementation for the KV Storage State Persistence interface.",
17592
- "name": "KVStorageStatePersistence",
17593
- "members": [
17594
- {
17595
- "kind": "field",
17596
- "name": "kvStorage",
17597
- "type": {
17598
- "text": "KVStorage"
17599
- }
17600
- },
17601
- {
17602
- "kind": "field",
17603
- "name": "session",
17604
- "type": {
17605
- "text": "Session"
17606
- }
17607
- },
17608
- {
17609
- "kind": "method",
17610
- "name": "getColumnState",
17611
- "return": {
17612
- "type": {
17613
- "text": "Promise<ColumnState[]>"
17614
- }
17615
- },
17616
- "parameters": [
17617
- {
17618
- "name": "persistColumnStateKey",
17619
- "type": {
17620
- "text": "string"
17621
- }
17622
- }
17623
- ]
17624
- },
17625
- {
17626
- "kind": "method",
17627
- "name": "saveColumnState",
17628
- "return": {
17629
- "type": {
17630
- "text": "Promise<void>"
17631
- }
17632
- },
17633
- "parameters": [
17634
- {
17635
- "name": "persistColumnStateKey",
17636
- "type": {
17637
- "text": "string"
17638
- }
17639
- },
17640
- {
17641
- "name": "columnState",
17642
- "type": {
17643
- "text": "ColumnState[]"
17644
- }
17645
- }
17646
- ]
17647
- },
17648
- {
17649
- "kind": "method",
17650
- "name": "deleteColumnState",
17651
- "return": {
17652
- "type": {
17653
- "text": "Promise<void>"
17654
- }
17655
- },
17656
- "parameters": [
17657
- {
17658
- "name": "persistColumnStateKey",
17659
- "type": {
17660
- "text": "string"
17661
- }
17662
- }
17663
- ]
17664
- },
17665
- {
17666
- "kind": "method",
17667
- "name": "migrateLocalStorageToKVStorage",
17668
- "privacy": "private",
17669
- "return": {
17670
- "type": {
17671
- "text": "Promise<void>"
17672
- }
17673
- },
17674
- "parameters": [
17675
- {
17676
- "name": "persistColumnStateKey",
17677
- "type": {
17678
- "text": "string"
17679
- }
17680
- }
17681
- ]
17682
- },
17683
- {
17684
- "kind": "method",
17685
- "name": "getFilterModel",
17686
- "return": {
17687
- "type": {
17688
- "text": "Promise<{ [key: string]: any }>"
17689
- }
17690
- },
17691
- "parameters": [
17692
- {
17693
- "name": "persistFilterModelKey",
17694
- "type": {
17695
- "text": "string"
17696
- }
17697
- }
17698
- ]
17699
- },
17700
- {
17701
- "kind": "method",
17702
- "name": "saveFilterModel",
17703
- "return": {
17704
- "type": {
17705
- "text": "Promise<void>"
17706
- }
17707
- },
17708
- "parameters": [
17709
- {
17710
- "name": "persistFilterModelKey",
17711
- "type": {
17712
- "text": "string"
17713
- }
17714
- },
17715
- {
17716
- "name": "filterModel",
17717
- "type": {
17718
- "text": "{ [key: string]: any }"
17719
- }
17720
- }
17721
- ]
17722
- }
17723
- ]
17724
- }
17725
- ],
17726
- "exports": [
17727
- {
17728
- "kind": "js",
17729
- "name": "KVStorageStatePersistence",
17730
- "declaration": {
17731
- "name": "KVStorageStatePersistence",
17732
- "module": "src/state-persistence/kv-state.ts"
17733
- }
17734
- }
17735
- ]
17736
- },
17737
- {
17738
- "kind": "javascript-module",
17739
- "path": "src/state-persistence/local-state.ts",
17740
- "declarations": [
17741
- {
17742
- "kind": "class",
17743
- "description": "Implementation for the Local Storage State Persistence interface.",
17744
- "name": "LocalStorageStatePersistence",
17745
- "members": [
17746
- {
17747
- "kind": "field",
17748
- "name": "session",
17749
- "type": {
17750
- "text": "Session"
17751
- }
17752
- },
17753
- {
17754
- "kind": "method",
17755
- "name": "getColumnState",
17756
- "return": {
17757
- "type": {
17758
- "text": "Promise<ColumnState[]>"
17759
- }
17760
- },
17761
- "parameters": [
17762
- {
17763
- "name": "persistColumnStateKey",
17764
- "type": {
17765
- "text": "string"
17766
- }
17767
- }
17768
- ]
17769
- },
17770
- {
17771
- "kind": "method",
17772
- "name": "saveColumnState",
17773
- "return": {
17774
- "type": {
17775
- "text": "Promise<void>"
17776
- }
17777
- },
17778
- "parameters": [
17779
- {
17780
- "name": "persistColumnStateKey",
17781
- "type": {
17782
- "text": "string"
17783
- }
17784
- },
17785
- {
17786
- "name": "columnState",
17787
- "type": {
17788
- "text": "ColumnState[]"
17789
- }
17790
- }
17791
- ]
17792
- },
17793
- {
17794
- "kind": "method",
17795
- "name": "deleteColumnState",
17796
- "return": {
17797
- "type": {
17798
- "text": "Promise<void>"
17799
- }
17800
- },
17801
- "parameters": [
17802
- {
17803
- "name": "persistColumnStateKey",
17804
- "type": {
17805
- "text": "string"
17806
- }
17807
- }
17808
- ]
17809
- },
17810
- {
17811
- "kind": "method",
17812
- "name": "getFilterModel",
17813
- "return": {
17814
- "type": {
17815
- "text": "Promise<{ [key: string]: any }>"
17816
- }
17817
- },
17818
- "parameters": [
17819
- {
17820
- "name": "persistFilterModelKey",
17821
- "type": {
17822
- "text": "string"
17823
- }
17824
- }
17825
- ]
17826
- },
17827
- {
17828
- "kind": "method",
17829
- "name": "saveFilterModel",
17830
- "return": {
17831
- "type": {
17832
- "text": "Promise<void>"
17833
- }
17834
- },
17835
- "parameters": [
17836
- {
17837
- "name": "persistFilterModelKey",
17838
- "type": {
17839
- "text": "string"
17840
- }
17841
- },
17842
- {
17843
- "name": "filterModel",
17844
- "type": {
17845
- "text": "{ [key: string]: any }"
17846
- }
17847
- }
17848
- ]
17849
- }
17850
- ]
17851
- }
17852
- ],
17853
- "exports": [
17854
- {
17855
- "kind": "js",
17856
- "name": "LocalStorageStatePersistence",
17857
- "declaration": {
17858
- "name": "LocalStorageStatePersistence",
17859
- "module": "src/state-persistence/local-state.ts"
17860
- }
17861
- }
17862
- ]
17863
- },
17864
- {
17865
- "kind": "javascript-module",
17866
- "path": "src/state-persistence/state-persistence.ts",
17867
- "declarations": [],
17868
- "exports": []
17869
- },
17870
17554
  {
17871
17555
  "kind": "javascript-module",
17872
17556
  "path": "src/multicolumn-dropdown/index.ts",
@@ -18051,641 +17735,957 @@
18051
17735
  "members": [
18052
17736
  {
18053
17737
  "kind": "field",
18054
- "name": "optionsElement",
17738
+ "name": "optionsElement",
17739
+ "type": {
17740
+ "text": "HTMLElement"
17741
+ }
17742
+ },
17743
+ {
17744
+ "kind": "field",
17745
+ "name": "lastRequest",
17746
+ "type": {
17747
+ "text": "object"
17748
+ },
17749
+ "privacy": "private"
17750
+ },
17751
+ {
17752
+ "kind": "field",
17753
+ "name": "connectOverride",
17754
+ "type": {
17755
+ "text": "Connect"
17756
+ },
17757
+ "privacy": "private"
17758
+ },
17759
+ {
17760
+ "kind": "field",
17761
+ "name": "_connectDI",
17762
+ "type": {
17763
+ "text": "Connect"
17764
+ },
17765
+ "privacy": "private"
17766
+ },
17767
+ {
17768
+ "kind": "field",
17769
+ "name": "connect",
17770
+ "type": {
17771
+ "text": "Connect"
17772
+ },
17773
+ "description": "The connect service - uses DI by default, but can be manually set for dynamic element creation"
17774
+ },
17775
+ {
17776
+ "kind": "field",
17777
+ "name": "disabled",
17778
+ "type": {
17779
+ "text": "boolean"
17780
+ },
17781
+ "privacy": "public",
17782
+ "description": "Whether to disable control of the component"
17783
+ },
17784
+ {
17785
+ "kind": "field",
17786
+ "name": "resourceName",
17787
+ "type": {
17788
+ "text": "string"
17789
+ },
17790
+ "privacy": "public",
17791
+ "description": "The name of the reqrep to get the options from"
17792
+ },
17793
+ {
17794
+ "kind": "field",
17795
+ "name": "searchKey",
17796
+ "type": {
17797
+ "text": "string | string[] | undefined"
17798
+ },
17799
+ "privacy": "public",
17800
+ "description": "The key(s) to search by. Use comma-separated values for multiple keys (e.g. search-key=\"NAME,ID\")."
17801
+ },
17802
+ {
17803
+ "kind": "field",
17804
+ "name": "requestSupportsAdvancedSearch",
17805
+ "type": {
17806
+ "text": "boolean"
17807
+ },
17808
+ "privacy": "public",
17809
+ "default": "false",
17810
+ "description": "Tells whether a given request supports lookup by Groovy Expressions."
17811
+ },
17812
+ {
17813
+ "kind": "field",
17814
+ "name": "valueKey",
17815
+ "type": {
17816
+ "text": "string"
17817
+ },
17818
+ "privacy": "public",
17819
+ "description": "The key used as the value sent to the server"
17820
+ },
17821
+ {
17822
+ "kind": "field",
17823
+ "name": "labelKey",
17824
+ "type": {
17825
+ "text": "string"
17826
+ },
17827
+ "privacy": "public",
17828
+ "description": "The key used as the label displayed in the UI"
17829
+ },
17830
+ {
17831
+ "kind": "field",
17832
+ "name": "dropdownPlacement",
17833
+ "type": {
17834
+ "text": "'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'"
17835
+ },
17836
+ "description": "Position of the dropdown panel relative to the control.\n- `'bottom-right'` – default; opens below and aligns to the right edge of the control\n- `'bottom-left'` – opens below and extends to the left\n- `'top-right'` – opens above and aligns to the right edge of the control\n- `'top-left'` – opens above and extends to the left"
17837
+ },
17838
+ {
17839
+ "kind": "field",
17840
+ "name": "dropdownWidth",
17841
+ "type": {
17842
+ "text": "number"
17843
+ },
17844
+ "privacy": "public",
17845
+ "description": "Optionally specifies the width of the dropdown"
17846
+ },
17847
+ {
17848
+ "kind": "field",
17849
+ "name": "request",
17850
+ "type": {
17851
+ "text": "object"
17852
+ },
17853
+ "privacy": "public",
17854
+ "description": "A request object to pass in the reqrep"
17855
+ },
17856
+ {
17857
+ "kind": "field",
17858
+ "name": "columnDefinitions",
17859
+ "type": {
17860
+ "text": "ColDef[]"
17861
+ },
17862
+ "privacy": "public",
17863
+ "description": "An array of AG Grid column definitions to use in the grid to display the data"
17864
+ },
17865
+ {
17866
+ "kind": "field",
17867
+ "name": "baseCriteria",
17868
+ "type": {
17869
+ "text": "string | undefined"
17870
+ },
17871
+ "privacy": "public",
17872
+ "description": "Base criteria that is always applied to requests combined with search criteria via AND.\nUse this to pre-filter results."
17873
+ },
17874
+ {
17875
+ "kind": "field",
17876
+ "name": "defaultSlottedNodes",
18055
17877
  "type": {
18056
- "text": "HTMLElement"
18057
- }
17878
+ "text": "Node[]"
17879
+ },
17880
+ "privacy": "public",
17881
+ "default": "[]"
18058
17882
  },
18059
17883
  {
18060
17884
  "kind": "field",
18061
- "name": "lastRequest",
17885
+ "name": "grid",
18062
17886
  "type": {
18063
- "text": "object"
17887
+ "text": "GridPro"
18064
17888
  },
18065
- "privacy": "private"
17889
+ "privacy": "public"
18066
17890
  },
18067
17891
  {
18068
17892
  "kind": "field",
18069
- "name": "connectOverride",
17893
+ "name": "_value",
18070
17894
  "type": {
18071
- "text": "Connect"
17895
+ "text": "string"
18072
17896
  },
18073
17897
  "privacy": "private"
18074
17898
  },
18075
17899
  {
18076
17900
  "kind": "field",
18077
- "name": "_connectDI",
17901
+ "name": "value",
18078
17902
  "type": {
18079
- "text": "Connect"
18080
- },
18081
- "privacy": "private"
17903
+ "text": "string"
17904
+ }
18082
17905
  },
18083
17906
  {
18084
17907
  "kind": "field",
18085
- "name": "connect",
17908
+ "name": "filterSearch",
18086
17909
  "type": {
18087
- "text": "Connect"
17910
+ "text": "string"
18088
17911
  },
18089
- "description": "The connect service - uses DI by default, but can be manually set for dynamic element creation"
17912
+ "privacy": "public",
17913
+ "description": "The criteria to search by"
18090
17914
  },
18091
17915
  {
18092
17916
  "kind": "field",
18093
- "name": "disabled",
17917
+ "name": "open",
18094
17918
  "type": {
18095
17919
  "text": "boolean"
18096
17920
  },
18097
17921
  "privacy": "public",
18098
- "description": "Whether to disable control of the component"
17922
+ "description": "Whether the dropdown is open or not"
18099
17923
  },
18100
17924
  {
18101
17925
  "kind": "field",
18102
- "name": "resourceName",
17926
+ "name": "selectedRow",
18103
17927
  "type": {
18104
- "text": "string"
17928
+ "text": "object"
18105
17929
  },
18106
- "privacy": "public",
18107
- "description": "The name of the reqrep to get the options from"
17930
+ "description": "Data for the selected row"
18108
17931
  },
18109
17932
  {
18110
17933
  "kind": "field",
18111
- "name": "searchKey",
17934
+ "name": "displayValue",
17935
+ "description": "Value to display in the form field",
17936
+ "readonly": true
17937
+ },
17938
+ {
17939
+ "kind": "field",
17940
+ "name": "hasSearchKey",
18112
17941
  "type": {
18113
- "text": "string | string[] | undefined"
17942
+ "text": "boolean"
18114
17943
  },
18115
- "privacy": "public",
18116
- "description": "The key(s) to search by. Use comma-separated values for multiple keys (e.g. search-key=\"NAME,ID\")."
17944
+ "readonly": true
18117
17945
  },
18118
17946
  {
18119
17947
  "kind": "field",
18120
- "name": "requestSupportsAdvancedSearch",
17948
+ "name": "hasSlottedContent",
18121
17949
  "type": {
18122
17950
  "text": "boolean"
18123
17951
  },
17952
+ "readonly": true
17953
+ },
17954
+ {
17955
+ "kind": "method",
17956
+ "name": "setGridRowData",
17957
+ "privacy": "private",
17958
+ "parameters": [
17959
+ {
17960
+ "name": "rows",
17961
+ "type": {
17962
+ "text": "any[]"
17963
+ }
17964
+ }
17965
+ ],
17966
+ "description": "Sets row data on the grid in a version-safe way.\nAG Grid v32+ removed `setRowData` in favour of `updateGridOptions`."
17967
+ },
17968
+ {
17969
+ "kind": "method",
17970
+ "name": "setGridColumnDefs",
17971
+ "privacy": "private",
17972
+ "parameters": [
17973
+ {
17974
+ "name": "colDefs",
17975
+ "type": {
17976
+ "text": "ColDef[]"
17977
+ }
17978
+ }
17979
+ ],
17980
+ "description": "Sets column defs on the grid in a version-safe way.\nAG Grid v32+ removed `setColumnDefs` in favour of `updateGridOptions`."
17981
+ },
17982
+ {
17983
+ "kind": "method",
17984
+ "name": "emitValue",
17985
+ "privacy": "private",
17986
+ "parameters": [
17987
+ {
17988
+ "name": "value",
17989
+ "type": {
17990
+ "text": "string"
17991
+ }
17992
+ }
17993
+ ],
17994
+ "description": "Emits 'change' and 'input' events so that the `sync` directive and forms work correctly."
17995
+ },
17996
+ {
17997
+ "kind": "method",
17998
+ "name": "toggle",
17999
+ "privacy": "public"
18000
+ },
18001
+ {
18002
+ "kind": "method",
18003
+ "name": "getAndSetRows",
18004
+ "privacy": "private"
18005
+ },
18006
+ {
18007
+ "kind": "field",
18008
+ "name": "getAndSetRowsDebounce",
18009
+ "privacy": "private"
18010
+ },
18011
+ {
18012
+ "kind": "method",
18013
+ "name": "filterSearchChanged",
18014
+ "privacy": "public"
18015
+ },
18016
+ {
18017
+ "kind": "method",
18018
+ "name": "requestChanged",
18019
+ "privacy": "public"
18020
+ },
18021
+ {
18022
+ "kind": "method",
18023
+ "name": "columnDefinitionsChanged",
18024
+ "privacy": "public"
18025
+ },
18026
+ {
18027
+ "kind": "field",
18028
+ "name": "handleClickOutside",
18029
+ "privacy": "private"
18030
+ },
18031
+ {
18032
+ "kind": "method",
18033
+ "name": "openChanged",
18034
+ "privacy": "public"
18035
+ },
18036
+ {
18037
+ "kind": "method",
18038
+ "name": "dropdownWidthChanged",
18039
+ "privacy": "public"
18040
+ },
18041
+ {
18042
+ "kind": "method",
18043
+ "name": "changeHandler",
18124
18044
  "privacy": "public",
18125
- "default": "false",
18126
- "description": "Tells whether a given request supports lookup by Groovy Expressions."
18045
+ "parameters": [
18046
+ {
18047
+ "name": "event",
18048
+ "type": {
18049
+ "text": "Event"
18050
+ }
18051
+ }
18052
+ ]
18053
+ },
18054
+ {
18055
+ "kind": "method",
18056
+ "name": "cloneNode",
18057
+ "return": {
18058
+ "type": {
18059
+ "text": "Node"
18060
+ }
18061
+ },
18062
+ "parameters": [
18063
+ {
18064
+ "name": "deep",
18065
+ "optional": true,
18066
+ "type": {
18067
+ "text": "boolean"
18068
+ }
18069
+ }
18070
+ ],
18071
+ "inheritedFrom": {
18072
+ "name": "LifecycleMixin",
18073
+ "module": "src/mixins/lifecycle/lifecycle.ts"
18074
+ }
18075
+ },
18076
+ {
18077
+ "kind": "method",
18078
+ "name": "deepClone",
18079
+ "return": {
18080
+ "type": {
18081
+ "text": "Node"
18082
+ }
18083
+ },
18084
+ "inheritedFrom": {
18085
+ "name": "LifecycleMixin",
18086
+ "module": "src/mixins/lifecycle/lifecycle.ts"
18087
+ }
18127
18088
  },
18128
18089
  {
18129
18090
  "kind": "field",
18130
- "name": "valueKey",
18131
- "type": {
18132
- "text": "string"
18091
+ "name": "shouldRunDisconnect",
18092
+ "return": {
18093
+ "type": {
18094
+ "text": ""
18095
+ }
18133
18096
  },
18134
- "privacy": "public",
18135
- "description": "The key used as the value sent to the server"
18097
+ "readonly": true,
18098
+ "inheritedFrom": {
18099
+ "name": "LifecycleMixin",
18100
+ "module": "src/mixins/lifecycle/lifecycle.ts"
18101
+ }
18136
18102
  },
18137
18103
  {
18138
18104
  "kind": "field",
18139
- "name": "labelKey",
18105
+ "name": "shouldRunConnect",
18106
+ "return": {
18107
+ "type": {
18108
+ "text": ""
18109
+ }
18110
+ },
18111
+ "readonly": true,
18112
+ "inheritedFrom": {
18113
+ "name": "LifecycleMixin",
18114
+ "module": "src/mixins/lifecycle/lifecycle.ts"
18115
+ }
18116
+ },
18117
+ {
18118
+ "kind": "method",
18119
+ "name": "#_blockLifecycleDueToTokenChange",
18120
+ "return": {
18121
+ "type": {
18122
+ "text": "boolean"
18123
+ }
18124
+ },
18125
+ "parameters": [
18126
+ {
18127
+ "name": "lifecycleType",
18128
+ "type": {
18129
+ "text": "Lifecycletype"
18130
+ }
18131
+ }
18132
+ ],
18133
+ "inheritedFrom": {
18134
+ "name": "LifecycleMixin",
18135
+ "module": "src/mixins/lifecycle/lifecycle.ts"
18136
+ }
18137
+ },
18138
+ {
18139
+ "kind": "field",
18140
+ "name": "_presentation",
18140
18141
  "type": {
18141
- "text": "string"
18142
+ "text": "ComponentPresentation | null | undefined"
18142
18143
  },
18143
- "privacy": "public",
18144
- "description": "The key used as the label displayed in the UI"
18144
+ "privacy": "private",
18145
+ "default": "void 0",
18146
+ "inheritedFrom": {
18147
+ "name": "FoundationElement",
18148
+ "module": "src/foundation-element/foundation-element.ts"
18149
+ }
18145
18150
  },
18146
18151
  {
18147
18152
  "kind": "field",
18148
- "name": "dropdownPlacement",
18153
+ "name": "$presentation",
18149
18154
  "type": {
18150
- "text": "'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'"
18155
+ "text": "ComponentPresentation | null"
18151
18156
  },
18152
- "description": "Position of the dropdown panel relative to the control.\n- `'bottom-right'` – default; opens below and aligns to the right edge of the control\n- `'bottom-left'` – opens below and extends to the left\n- `'top-right'` – opens above and aligns to the right edge of the control\n- `'top-left'` – opens above and extends to the left"
18157
+ "privacy": "public",
18158
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
18159
+ "inheritedFrom": {
18160
+ "name": "FoundationElement",
18161
+ "module": "src/foundation-element/foundation-element.ts"
18162
+ }
18153
18163
  },
18154
18164
  {
18155
18165
  "kind": "field",
18156
- "name": "dropdownWidth",
18166
+ "name": "template",
18157
18167
  "type": {
18158
- "text": "number"
18168
+ "text": "ElementViewTemplate | void | null"
18159
18169
  },
18160
18170
  "privacy": "public",
18161
- "description": "Optionally specifies the width of the dropdown"
18171
+ "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.",
18172
+ "inheritedFrom": {
18173
+ "name": "FoundationElement",
18174
+ "module": "src/foundation-element/foundation-element.ts"
18175
+ }
18176
+ },
18177
+ {
18178
+ "kind": "method",
18179
+ "name": "templateChanged",
18180
+ "privacy": "protected",
18181
+ "return": {
18182
+ "type": {
18183
+ "text": "void"
18184
+ }
18185
+ },
18186
+ "inheritedFrom": {
18187
+ "name": "FoundationElement",
18188
+ "module": "src/foundation-element/foundation-element.ts"
18189
+ }
18162
18190
  },
18163
18191
  {
18164
18192
  "kind": "field",
18165
- "name": "request",
18193
+ "name": "styles",
18166
18194
  "type": {
18167
- "text": "object"
18195
+ "text": "ElementStyles | void | null"
18168
18196
  },
18169
18197
  "privacy": "public",
18170
- "description": "A request object to pass in the reqrep"
18198
+ "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.",
18199
+ "inheritedFrom": {
18200
+ "name": "FoundationElement",
18201
+ "module": "src/foundation-element/foundation-element.ts"
18202
+ }
18171
18203
  },
18172
18204
  {
18173
- "kind": "field",
18174
- "name": "columnDefinitions",
18175
- "type": {
18176
- "text": "ColDef[]"
18205
+ "kind": "method",
18206
+ "name": "stylesChanged",
18207
+ "privacy": "protected",
18208
+ "return": {
18209
+ "type": {
18210
+ "text": "void"
18211
+ }
18177
18212
  },
18213
+ "inheritedFrom": {
18214
+ "name": "FoundationElement",
18215
+ "module": "src/foundation-element/foundation-element.ts"
18216
+ }
18217
+ },
18218
+ {
18219
+ "kind": "method",
18220
+ "name": "compose",
18178
18221
  "privacy": "public",
18179
- "description": "An array of AG Grid column definitions to use in the grid to display the data"
18222
+ "static": true,
18223
+ "return": {
18224
+ "type": {
18225
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
18226
+ }
18227
+ },
18228
+ "parameters": [
18229
+ {
18230
+ "name": "this",
18231
+ "type": {
18232
+ "text": "K"
18233
+ }
18234
+ },
18235
+ {
18236
+ "name": "elementDefinition",
18237
+ "type": {
18238
+ "text": "T"
18239
+ },
18240
+ "description": "The definition of the element to create the registry\nfunction for."
18241
+ }
18242
+ ],
18243
+ "description": "Defines an element registry function with a set of element definition defaults.",
18244
+ "inheritedFrom": {
18245
+ "name": "FoundationElement",
18246
+ "module": "src/foundation-element/foundation-element.ts"
18247
+ }
18248
+ }
18249
+ ],
18250
+ "events": [
18251
+ {
18252
+ "description": "Fired when the selected value changes",
18253
+ "name": "change"
18180
18254
  },
18181
18255
  {
18182
- "kind": "field",
18183
- "name": "baseCriteria",
18256
+ "description": "Fired when the value is updated (including programmatic changes)",
18257
+ "name": "input"
18258
+ }
18259
+ ],
18260
+ "attributes": [
18261
+ {
18184
18262
  "type": {
18185
- "text": "string | undefined"
18263
+ "text": "boolean"
18186
18264
  },
18187
- "privacy": "public",
18188
- "description": "Base criteria that is always applied to requests combined with search criteria via AND.\nUse this to pre-filter results."
18265
+ "description": "Whether to disable control of the component",
18266
+ "fieldName": "disabled"
18189
18267
  },
18190
18268
  {
18191
- "kind": "field",
18192
- "name": "defaultSlottedNodes",
18269
+ "name": "resource-name",
18193
18270
  "type": {
18194
- "text": "Node[]"
18271
+ "text": "string"
18195
18272
  },
18196
- "privacy": "public",
18197
- "default": "[]"
18273
+ "description": "The name of the reqrep to get the options from",
18274
+ "fieldName": "resourceName"
18198
18275
  },
18199
18276
  {
18200
- "kind": "field",
18201
- "name": "grid",
18277
+ "name": "search-key",
18202
18278
  "type": {
18203
- "text": "GridPro"
18279
+ "text": "string | string[] | undefined"
18204
18280
  },
18205
- "privacy": "public"
18281
+ "description": "The key(s) to search by. Use comma-separated values for multiple keys (e.g. search-key=\"NAME,ID\").",
18282
+ "fieldName": "searchKey"
18206
18283
  },
18207
18284
  {
18208
- "kind": "field",
18209
- "name": "_value",
18285
+ "name": "advanced-search-req",
18210
18286
  "type": {
18211
- "text": "string"
18287
+ "text": "boolean"
18212
18288
  },
18213
- "privacy": "private"
18289
+ "default": "false",
18290
+ "description": "Tells whether a given request supports lookup by Groovy Expressions.",
18291
+ "fieldName": "requestSupportsAdvancedSearch"
18214
18292
  },
18215
18293
  {
18216
- "kind": "field",
18217
- "name": "value",
18294
+ "name": "value-key",
18218
18295
  "type": {
18219
18296
  "text": "string"
18220
- }
18297
+ },
18298
+ "description": "The key used as the value sent to the server",
18299
+ "fieldName": "valueKey"
18221
18300
  },
18222
18301
  {
18223
- "kind": "field",
18224
- "name": "filterSearch",
18302
+ "name": "label-key",
18225
18303
  "type": {
18226
18304
  "text": "string"
18227
18305
  },
18228
- "privacy": "public",
18229
- "description": "The criteria to search by"
18306
+ "description": "The key used as the label displayed in the UI",
18307
+ "fieldName": "labelKey"
18230
18308
  },
18231
18309
  {
18232
- "kind": "field",
18233
- "name": "open",
18310
+ "name": "dropdown-placement",
18234
18311
  "type": {
18235
- "text": "boolean"
18312
+ "text": "'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'"
18236
18313
  },
18237
- "privacy": "public",
18238
- "description": "Whether the dropdown is open or not"
18314
+ "description": "Position of the dropdown panel relative to the control.\n- `'bottom-right'` – default; opens below and aligns to the right edge of the control\n- `'bottom-left'` – opens below and extends to the left\n- `'top-right'` – opens above and aligns to the right edge of the control\n- `'top-left'` – opens above and extends to the left",
18315
+ "fieldName": "dropdownPlacement"
18239
18316
  },
18240
18317
  {
18241
- "kind": "field",
18242
- "name": "selectedRow",
18318
+ "name": "dropdownWidth",
18243
18319
  "type": {
18244
- "text": "object"
18320
+ "text": "number"
18245
18321
  },
18246
- "description": "Data for the selected row"
18247
- },
18322
+ "description": "Optionally specifies the width of the dropdown",
18323
+ "fieldName": "dropdownWidth"
18324
+ }
18325
+ ],
18326
+ "mixins": [
18248
18327
  {
18249
- "kind": "field",
18250
- "name": "displayValue",
18251
- "description": "Value to display in the form field",
18252
- "readonly": true
18253
- },
18328
+ "name": "LifecycleMixin",
18329
+ "package": "@genesislcap/foundation-utils"
18330
+ }
18331
+ ],
18332
+ "superclass": {
18333
+ "name": "FoundationElement",
18334
+ "package": "@microsoft/fast-foundation"
18335
+ },
18336
+ "tagName": "%%prefix%%-multicolumn-dropdown",
18337
+ "customElement": true
18338
+ },
18339
+ {
18340
+ "kind": "variable",
18341
+ "name": "foundationMulticolumnDropdown",
18342
+ "description": "A function that returns a Multicolumn Dropdown registration for configuring the component with a DesignSystem.",
18343
+ "privacy": "public"
18344
+ }
18345
+ ],
18346
+ "exports": [
18347
+ {
18348
+ "kind": "js",
18349
+ "name": "wasClickOutsideElement",
18350
+ "declaration": {
18351
+ "name": "wasClickOutsideElement",
18352
+ "module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
18353
+ }
18354
+ },
18355
+ {
18356
+ "kind": "js",
18357
+ "name": "MulticolumnDropdown",
18358
+ "declaration": {
18359
+ "name": "MulticolumnDropdown",
18360
+ "module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
18361
+ }
18362
+ },
18363
+ {
18364
+ "kind": "js",
18365
+ "name": "foundationMulticolumnDropdown",
18366
+ "declaration": {
18367
+ "name": "foundationMulticolumnDropdown",
18368
+ "module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
18369
+ }
18370
+ }
18371
+ ]
18372
+ },
18373
+ {
18374
+ "kind": "javascript-module",
18375
+ "path": "src/state-persistence/index.ts",
18376
+ "declarations": [],
18377
+ "exports": [
18378
+ {
18379
+ "kind": "js",
18380
+ "name": "*",
18381
+ "declaration": {
18382
+ "name": "*",
18383
+ "package": "./kv-state"
18384
+ }
18385
+ },
18386
+ {
18387
+ "kind": "js",
18388
+ "name": "*",
18389
+ "declaration": {
18390
+ "name": "*",
18391
+ "package": "./local-state"
18392
+ }
18393
+ },
18394
+ {
18395
+ "kind": "js",
18396
+ "name": "*",
18397
+ "declaration": {
18398
+ "name": "*",
18399
+ "package": "./state-persistence"
18400
+ }
18401
+ }
18402
+ ]
18403
+ },
18404
+ {
18405
+ "kind": "javascript-module",
18406
+ "path": "src/state-persistence/kv-state.ts",
18407
+ "declarations": [
18408
+ {
18409
+ "kind": "class",
18410
+ "description": "Implementation for the KV Storage State Persistence interface.",
18411
+ "name": "KVStorageStatePersistence",
18412
+ "members": [
18254
18413
  {
18255
18414
  "kind": "field",
18256
- "name": "hasSearchKey",
18415
+ "name": "kvStorage",
18257
18416
  "type": {
18258
- "text": "boolean"
18259
- },
18260
- "readonly": true
18417
+ "text": "KVStorage"
18418
+ }
18261
18419
  },
18262
18420
  {
18263
18421
  "kind": "field",
18264
- "name": "hasSlottedContent",
18422
+ "name": "session",
18265
18423
  "type": {
18266
- "text": "boolean"
18267
- },
18268
- "readonly": true
18424
+ "text": "Session"
18425
+ }
18269
18426
  },
18270
18427
  {
18271
18428
  "kind": "method",
18272
- "name": "setGridRowData",
18273
- "privacy": "private",
18274
- "parameters": [
18275
- {
18276
- "name": "rows",
18277
- "type": {
18278
- "text": "any[]"
18279
- }
18429
+ "name": "getColumnState",
18430
+ "return": {
18431
+ "type": {
18432
+ "text": "Promise<ColumnState[]>"
18280
18433
  }
18281
- ],
18282
- "description": "Sets row data on the grid in a version-safe way.\nAG Grid v32+ removed `setRowData` in favour of `updateGridOptions`."
18283
- },
18284
- {
18285
- "kind": "method",
18286
- "name": "setGridColumnDefs",
18287
- "privacy": "private",
18434
+ },
18288
18435
  "parameters": [
18289
18436
  {
18290
- "name": "colDefs",
18437
+ "name": "persistColumnStateKey",
18291
18438
  "type": {
18292
- "text": "ColDef[]"
18439
+ "text": "string"
18293
18440
  }
18294
18441
  }
18295
- ],
18296
- "description": "Sets column defs on the grid in a version-safe way.\nAG Grid v32+ removed `setColumnDefs` in favour of `updateGridOptions`."
18442
+ ]
18297
18443
  },
18298
18444
  {
18299
18445
  "kind": "method",
18300
- "name": "emitValue",
18301
- "privacy": "private",
18446
+ "name": "saveColumnState",
18447
+ "return": {
18448
+ "type": {
18449
+ "text": "Promise<void>"
18450
+ }
18451
+ },
18302
18452
  "parameters": [
18303
18453
  {
18304
- "name": "value",
18454
+ "name": "persistColumnStateKey",
18305
18455
  "type": {
18306
18456
  "text": "string"
18307
18457
  }
18308
- }
18309
- ],
18310
- "description": "Emits 'change' and 'input' events so that the `sync` directive and forms work correctly."
18311
- },
18312
- {
18313
- "kind": "method",
18314
- "name": "toggle",
18315
- "privacy": "public"
18316
- },
18317
- {
18318
- "kind": "method",
18319
- "name": "getAndSetRows",
18320
- "privacy": "private"
18321
- },
18322
- {
18323
- "kind": "field",
18324
- "name": "getAndSetRowsDebounce",
18325
- "privacy": "private"
18326
- },
18327
- {
18328
- "kind": "method",
18329
- "name": "filterSearchChanged",
18330
- "privacy": "public"
18331
- },
18332
- {
18333
- "kind": "method",
18334
- "name": "requestChanged",
18335
- "privacy": "public"
18336
- },
18337
- {
18338
- "kind": "method",
18339
- "name": "columnDefinitionsChanged",
18340
- "privacy": "public"
18341
- },
18342
- {
18343
- "kind": "field",
18344
- "name": "handleClickOutside",
18345
- "privacy": "private"
18346
- },
18347
- {
18348
- "kind": "method",
18349
- "name": "openChanged",
18350
- "privacy": "public"
18351
- },
18352
- {
18353
- "kind": "method",
18354
- "name": "dropdownWidthChanged",
18355
- "privacy": "public"
18356
- },
18357
- {
18358
- "kind": "method",
18359
- "name": "changeHandler",
18360
- "privacy": "public",
18361
- "parameters": [
18458
+ },
18362
18459
  {
18363
- "name": "event",
18460
+ "name": "columnState",
18364
18461
  "type": {
18365
- "text": "Event"
18462
+ "text": "ColumnState[]"
18366
18463
  }
18367
18464
  }
18368
18465
  ]
18369
18466
  },
18370
18467
  {
18371
18468
  "kind": "method",
18372
- "name": "cloneNode",
18469
+ "name": "deleteColumnState",
18373
18470
  "return": {
18374
18471
  "type": {
18375
- "text": "Node"
18472
+ "text": "Promise<void>"
18376
18473
  }
18377
18474
  },
18378
18475
  "parameters": [
18379
18476
  {
18380
- "name": "deep",
18381
- "optional": true,
18477
+ "name": "persistColumnStateKey",
18382
18478
  "type": {
18383
- "text": "boolean"
18479
+ "text": "string"
18384
18480
  }
18385
18481
  }
18386
- ],
18387
- "inheritedFrom": {
18388
- "name": "LifecycleMixin",
18389
- "module": "src/mixins/lifecycle/lifecycle.ts"
18390
- }
18482
+ ]
18391
18483
  },
18392
18484
  {
18393
18485
  "kind": "method",
18394
- "name": "deepClone",
18395
- "return": {
18396
- "type": {
18397
- "text": "Node"
18398
- }
18399
- },
18400
- "inheritedFrom": {
18401
- "name": "LifecycleMixin",
18402
- "module": "src/mixins/lifecycle/lifecycle.ts"
18403
- }
18404
- },
18405
- {
18406
- "kind": "field",
18407
- "name": "shouldRunDisconnect",
18486
+ "name": "migrateLocalStorageToKVStorage",
18487
+ "privacy": "private",
18408
18488
  "return": {
18409
18489
  "type": {
18410
- "text": ""
18490
+ "text": "Promise<void>"
18411
18491
  }
18412
18492
  },
18413
- "readonly": true,
18414
- "inheritedFrom": {
18415
- "name": "LifecycleMixin",
18416
- "module": "src/mixins/lifecycle/lifecycle.ts"
18417
- }
18418
- },
18419
- {
18420
- "kind": "field",
18421
- "name": "shouldRunConnect",
18422
- "return": {
18423
- "type": {
18424
- "text": ""
18493
+ "parameters": [
18494
+ {
18495
+ "name": "persistColumnStateKey",
18496
+ "type": {
18497
+ "text": "string"
18498
+ }
18425
18499
  }
18426
- },
18427
- "readonly": true,
18428
- "inheritedFrom": {
18429
- "name": "LifecycleMixin",
18430
- "module": "src/mixins/lifecycle/lifecycle.ts"
18431
- }
18500
+ ]
18432
18501
  },
18433
18502
  {
18434
18503
  "kind": "method",
18435
- "name": "#_blockLifecycleDueToTokenChange",
18504
+ "name": "getFilterModel",
18436
18505
  "return": {
18437
18506
  "type": {
18438
- "text": "boolean"
18507
+ "text": "Promise<{ [key: string]: any }>"
18439
18508
  }
18440
18509
  },
18441
18510
  "parameters": [
18442
18511
  {
18443
- "name": "lifecycleType",
18512
+ "name": "persistFilterModelKey",
18444
18513
  "type": {
18445
- "text": "Lifecycletype"
18514
+ "text": "string"
18446
18515
  }
18447
18516
  }
18448
- ],
18449
- "inheritedFrom": {
18450
- "name": "LifecycleMixin",
18451
- "module": "src/mixins/lifecycle/lifecycle.ts"
18452
- }
18453
- },
18454
- {
18455
- "kind": "field",
18456
- "name": "_presentation",
18457
- "type": {
18458
- "text": "ComponentPresentation | null | undefined"
18459
- },
18460
- "privacy": "private",
18461
- "default": "void 0",
18462
- "inheritedFrom": {
18463
- "name": "FoundationElement",
18464
- "module": "src/foundation-element/foundation-element.ts"
18465
- }
18466
- },
18467
- {
18468
- "kind": "field",
18469
- "name": "$presentation",
18470
- "type": {
18471
- "text": "ComponentPresentation | null"
18472
- },
18473
- "privacy": "public",
18474
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
18475
- "inheritedFrom": {
18476
- "name": "FoundationElement",
18477
- "module": "src/foundation-element/foundation-element.ts"
18478
- }
18479
- },
18480
- {
18481
- "kind": "field",
18482
- "name": "template",
18483
- "type": {
18484
- "text": "ElementViewTemplate | void | null"
18485
- },
18486
- "privacy": "public",
18487
- "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.",
18488
- "inheritedFrom": {
18489
- "name": "FoundationElement",
18490
- "module": "src/foundation-element/foundation-element.ts"
18491
- }
18517
+ ]
18492
18518
  },
18493
18519
  {
18494
18520
  "kind": "method",
18495
- "name": "templateChanged",
18496
- "privacy": "protected",
18521
+ "name": "saveFilterModel",
18497
18522
  "return": {
18498
18523
  "type": {
18499
- "text": "void"
18524
+ "text": "Promise<void>"
18500
18525
  }
18501
18526
  },
18502
- "inheritedFrom": {
18503
- "name": "FoundationElement",
18504
- "module": "src/foundation-element/foundation-element.ts"
18505
- }
18506
- },
18527
+ "parameters": [
18528
+ {
18529
+ "name": "persistFilterModelKey",
18530
+ "type": {
18531
+ "text": "string"
18532
+ }
18533
+ },
18534
+ {
18535
+ "name": "filterModel",
18536
+ "type": {
18537
+ "text": "{ [key: string]: any }"
18538
+ }
18539
+ }
18540
+ ]
18541
+ }
18542
+ ]
18543
+ }
18544
+ ],
18545
+ "exports": [
18546
+ {
18547
+ "kind": "js",
18548
+ "name": "KVStorageStatePersistence",
18549
+ "declaration": {
18550
+ "name": "KVStorageStatePersistence",
18551
+ "module": "src/state-persistence/kv-state.ts"
18552
+ }
18553
+ }
18554
+ ]
18555
+ },
18556
+ {
18557
+ "kind": "javascript-module",
18558
+ "path": "src/state-persistence/local-state.ts",
18559
+ "declarations": [
18560
+ {
18561
+ "kind": "class",
18562
+ "description": "Implementation for the Local Storage State Persistence interface.",
18563
+ "name": "LocalStorageStatePersistence",
18564
+ "members": [
18507
18565
  {
18508
18566
  "kind": "field",
18509
- "name": "styles",
18567
+ "name": "session",
18510
18568
  "type": {
18511
- "text": "ElementStyles | void | null"
18512
- },
18513
- "privacy": "public",
18514
- "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.",
18515
- "inheritedFrom": {
18516
- "name": "FoundationElement",
18517
- "module": "src/foundation-element/foundation-element.ts"
18569
+ "text": "Session"
18518
18570
  }
18519
18571
  },
18520
18572
  {
18521
18573
  "kind": "method",
18522
- "name": "stylesChanged",
18523
- "privacy": "protected",
18574
+ "name": "getColumnState",
18524
18575
  "return": {
18525
18576
  "type": {
18526
- "text": "void"
18577
+ "text": "Promise<ColumnState[]>"
18527
18578
  }
18528
18579
  },
18529
- "inheritedFrom": {
18530
- "name": "FoundationElement",
18531
- "module": "src/foundation-element/foundation-element.ts"
18532
- }
18580
+ "parameters": [
18581
+ {
18582
+ "name": "persistColumnStateKey",
18583
+ "type": {
18584
+ "text": "string"
18585
+ }
18586
+ }
18587
+ ]
18533
18588
  },
18534
18589
  {
18535
18590
  "kind": "method",
18536
- "name": "compose",
18537
- "privacy": "public",
18538
- "static": true,
18591
+ "name": "saveColumnState",
18539
18592
  "return": {
18540
18593
  "type": {
18541
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
18594
+ "text": "Promise<void>"
18542
18595
  }
18543
18596
  },
18544
18597
  "parameters": [
18545
18598
  {
18546
- "name": "this",
18599
+ "name": "persistColumnStateKey",
18547
18600
  "type": {
18548
- "text": "K"
18601
+ "text": "string"
18549
18602
  }
18550
18603
  },
18551
18604
  {
18552
- "name": "elementDefinition",
18605
+ "name": "columnState",
18553
18606
  "type": {
18554
- "text": "T"
18555
- },
18556
- "description": "The definition of the element to create the registry\nfunction for."
18607
+ "text": "ColumnState[]"
18608
+ }
18557
18609
  }
18558
- ],
18559
- "description": "Defines an element registry function with a set of element definition defaults.",
18560
- "inheritedFrom": {
18561
- "name": "FoundationElement",
18562
- "module": "src/foundation-element/foundation-element.ts"
18563
- }
18564
- }
18565
- ],
18566
- "events": [
18567
- {
18568
- "description": "Fired when the selected value changes",
18569
- "name": "change"
18570
- },
18571
- {
18572
- "description": "Fired when the value is updated (including programmatic changes)",
18573
- "name": "input"
18574
- }
18575
- ],
18576
- "attributes": [
18577
- {
18578
- "type": {
18579
- "text": "boolean"
18580
- },
18581
- "description": "Whether to disable control of the component",
18582
- "fieldName": "disabled"
18583
- },
18584
- {
18585
- "name": "resource-name",
18586
- "type": {
18587
- "text": "string"
18588
- },
18589
- "description": "The name of the reqrep to get the options from",
18590
- "fieldName": "resourceName"
18591
- },
18592
- {
18593
- "name": "search-key",
18594
- "type": {
18595
- "text": "string | string[] | undefined"
18596
- },
18597
- "description": "The key(s) to search by. Use comma-separated values for multiple keys (e.g. search-key=\"NAME,ID\").",
18598
- "fieldName": "searchKey"
18599
- },
18600
- {
18601
- "name": "advanced-search-req",
18602
- "type": {
18603
- "text": "boolean"
18604
- },
18605
- "default": "false",
18606
- "description": "Tells whether a given request supports lookup by Groovy Expressions.",
18607
- "fieldName": "requestSupportsAdvancedSearch"
18608
- },
18609
- {
18610
- "name": "value-key",
18611
- "type": {
18612
- "text": "string"
18613
- },
18614
- "description": "The key used as the value sent to the server",
18615
- "fieldName": "valueKey"
18610
+ ]
18616
18611
  },
18617
18612
  {
18618
- "name": "label-key",
18619
- "type": {
18620
- "text": "string"
18613
+ "kind": "method",
18614
+ "name": "deleteColumnState",
18615
+ "return": {
18616
+ "type": {
18617
+ "text": "Promise<void>"
18618
+ }
18621
18619
  },
18622
- "description": "The key used as the label displayed in the UI",
18623
- "fieldName": "labelKey"
18620
+ "parameters": [
18621
+ {
18622
+ "name": "persistColumnStateKey",
18623
+ "type": {
18624
+ "text": "string"
18625
+ }
18626
+ }
18627
+ ]
18624
18628
  },
18625
18629
  {
18626
- "name": "dropdown-placement",
18627
- "type": {
18628
- "text": "'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'"
18630
+ "kind": "method",
18631
+ "name": "getFilterModel",
18632
+ "return": {
18633
+ "type": {
18634
+ "text": "Promise<{ [key: string]: any }>"
18635
+ }
18629
18636
  },
18630
- "description": "Position of the dropdown panel relative to the control.\n- `'bottom-right'` – default; opens below and aligns to the right edge of the control\n- `'bottom-left'` – opens below and extends to the left\n- `'top-right'` – opens above and aligns to the right edge of the control\n- `'top-left'` – opens above and extends to the left",
18631
- "fieldName": "dropdownPlacement"
18637
+ "parameters": [
18638
+ {
18639
+ "name": "persistFilterModelKey",
18640
+ "type": {
18641
+ "text": "string"
18642
+ }
18643
+ }
18644
+ ]
18632
18645
  },
18633
18646
  {
18634
- "name": "dropdownWidth",
18635
- "type": {
18636
- "text": "number"
18647
+ "kind": "method",
18648
+ "name": "saveFilterModel",
18649
+ "return": {
18650
+ "type": {
18651
+ "text": "Promise<void>"
18652
+ }
18637
18653
  },
18638
- "description": "Optionally specifies the width of the dropdown",
18639
- "fieldName": "dropdownWidth"
18640
- }
18641
- ],
18642
- "mixins": [
18643
- {
18644
- "name": "LifecycleMixin",
18645
- "package": "@genesislcap/foundation-utils"
18654
+ "parameters": [
18655
+ {
18656
+ "name": "persistFilterModelKey",
18657
+ "type": {
18658
+ "text": "string"
18659
+ }
18660
+ },
18661
+ {
18662
+ "name": "filterModel",
18663
+ "type": {
18664
+ "text": "{ [key: string]: any }"
18665
+ }
18666
+ }
18667
+ ]
18646
18668
  }
18647
- ],
18648
- "superclass": {
18649
- "name": "FoundationElement",
18650
- "package": "@microsoft/fast-foundation"
18651
- },
18652
- "tagName": "%%prefix%%-multicolumn-dropdown",
18653
- "customElement": true
18654
- },
18655
- {
18656
- "kind": "variable",
18657
- "name": "foundationMulticolumnDropdown",
18658
- "description": "A function that returns a Multicolumn Dropdown registration for configuring the component with a DesignSystem.",
18659
- "privacy": "public"
18669
+ ]
18660
18670
  }
18661
18671
  ],
18662
18672
  "exports": [
18663
18673
  {
18664
18674
  "kind": "js",
18665
- "name": "wasClickOutsideElement",
18666
- "declaration": {
18667
- "name": "wasClickOutsideElement",
18668
- "module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
18669
- }
18670
- },
18671
- {
18672
- "kind": "js",
18673
- "name": "MulticolumnDropdown",
18674
- "declaration": {
18675
- "name": "MulticolumnDropdown",
18676
- "module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
18677
- }
18678
- },
18679
- {
18680
- "kind": "js",
18681
- "name": "foundationMulticolumnDropdown",
18675
+ "name": "LocalStorageStatePersistence",
18682
18676
  "declaration": {
18683
- "name": "foundationMulticolumnDropdown",
18684
- "module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
18677
+ "name": "LocalStorageStatePersistence",
18678
+ "module": "src/state-persistence/local-state.ts"
18685
18679
  }
18686
18680
  }
18687
18681
  ]
18688
18682
  },
18683
+ {
18684
+ "kind": "javascript-module",
18685
+ "path": "src/state-persistence/state-persistence.ts",
18686
+ "declarations": [],
18687
+ "exports": []
18688
+ },
18689
18689
  {
18690
18690
  "kind": "javascript-module",
18691
18691
  "path": "src/status-bar-components/index.ts",
@@ -19585,25 +19585,6 @@
19585
19585
  "kind": "javascript-module",
19586
19586
  "path": "src/utils/array.ts",
19587
19587
  "declarations": [
19588
- {
19589
- "kind": "function",
19590
- "name": "sanitizeColumnState",
19591
- "return": {
19592
- "type": {
19593
- "text": "ColumnState[]"
19594
- }
19595
- },
19596
- "parameters": [
19597
- {
19598
- "name": "columnState",
19599
- "type": {
19600
- "text": "ColumnState[]"
19601
- }
19602
- }
19603
- ],
19604
- "description": "Sanitizes persisted column state by removing unsupported keys.",
19605
- "privacy": "public"
19606
- },
19607
19588
  {
19608
19589
  "kind": "function",
19609
19590
  "name": "convertColDefToColumnState",
@@ -19671,14 +19652,6 @@
19671
19652
  }
19672
19653
  ],
19673
19654
  "exports": [
19674
- {
19675
- "kind": "js",
19676
- "name": "sanitizeColumnState",
19677
- "declaration": {
19678
- "name": "sanitizeColumnState",
19679
- "module": "src/utils/array.ts"
19680
- }
19681
- },
19682
19655
  {
19683
19656
  "kind": "js",
19684
19657
  "name": "convertColDefToColumnState",