@genesislcap/grid-pro 14.467.2 → 14.468.0-chore-add-reset-event.2
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 +1754 -1754
- package/package.json +14 -14
|
@@ -17897,7 +17897,7 @@
|
|
|
17897
17897
|
},
|
|
17898
17898
|
{
|
|
17899
17899
|
"kind": "javascript-module",
|
|
17900
|
-
"path": "src/
|
|
17900
|
+
"path": "src/multicolumn-dropdown/index.ts",
|
|
17901
17901
|
"declarations": [],
|
|
17902
17902
|
"exports": [
|
|
17903
17903
|
{
|
|
@@ -17905,7 +17905,7 @@
|
|
|
17905
17905
|
"name": "*",
|
|
17906
17906
|
"declaration": {
|
|
17907
17907
|
"name": "*",
|
|
17908
|
-
"package": "./
|
|
17908
|
+
"package": "./multicolumn-dropdown"
|
|
17909
17909
|
}
|
|
17910
17910
|
},
|
|
17911
17911
|
{
|
|
@@ -17913,7 +17913,7 @@
|
|
|
17913
17913
|
"name": "*",
|
|
17914
17914
|
"declaration": {
|
|
17915
17915
|
"name": "*",
|
|
17916
|
-
"package": "./
|
|
17916
|
+
"package": "./multicolumn-dropdown.styles"
|
|
17917
17917
|
}
|
|
17918
17918
|
},
|
|
17919
17919
|
{
|
|
@@ -17921,961 +17921,1200 @@
|
|
|
17921
17921
|
"name": "*",
|
|
17922
17922
|
"declaration": {
|
|
17923
17923
|
"name": "*",
|
|
17924
|
-
"package": "./
|
|
17924
|
+
"package": "./multicolumn-dropdown.template"
|
|
17925
17925
|
}
|
|
17926
17926
|
}
|
|
17927
17927
|
]
|
|
17928
17928
|
},
|
|
17929
17929
|
{
|
|
17930
17930
|
"kind": "javascript-module",
|
|
17931
|
-
"path": "src/
|
|
17931
|
+
"path": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts",
|
|
17932
|
+
"declarations": [
|
|
17933
|
+
{
|
|
17934
|
+
"kind": "variable",
|
|
17935
|
+
"name": "dropdownWidthVar",
|
|
17936
|
+
"type": {
|
|
17937
|
+
"text": "string"
|
|
17938
|
+
},
|
|
17939
|
+
"default": "'--dropdown-width'",
|
|
17940
|
+
"description": "The CSS variable to use for specifying the dropdown's width"
|
|
17941
|
+
},
|
|
17942
|
+
{
|
|
17943
|
+
"kind": "variable",
|
|
17944
|
+
"name": "optionsClass",
|
|
17945
|
+
"type": {
|
|
17946
|
+
"text": "string"
|
|
17947
|
+
},
|
|
17948
|
+
"default": "'options'",
|
|
17949
|
+
"description": "The CSS class to use for the options element's class in the dropdown"
|
|
17950
|
+
},
|
|
17951
|
+
{
|
|
17952
|
+
"kind": "variable",
|
|
17953
|
+
"name": "DISPLAY_NONE_CLASS",
|
|
17954
|
+
"type": {
|
|
17955
|
+
"text": "string"
|
|
17956
|
+
},
|
|
17957
|
+
"default": "'dnone'",
|
|
17958
|
+
"description": "Class name used to hide elements with display:none"
|
|
17959
|
+
},
|
|
17960
|
+
{
|
|
17961
|
+
"kind": "variable",
|
|
17962
|
+
"name": "multicolumnDropdownStyles",
|
|
17963
|
+
"default": "css`\n label {\n color: var(--neutral-foreground-hint, rgb(135 155 166));\n font-style: normal;\n margin: calc(var(--design-unit) * 2px) 0;\n display: block;\n cursor: pointer;\n font-size: var(--type-ramp-base-font-size);\n line-height: var(--type-ramp-base-line-height);\n }\n\n .${DISPLAY_NONE_CLASS} {\n display: none !important;\n }\n\n .root {\n position: relative;\n width: inherit;\n min-width: 250px;\n ${dropdownWidthVar}: 350px;\n }\n\n .control {\n cursor: pointer;\n position: relative;\n display: flex;\n align-items: center;\n width: 100%;\n border-radius: calc(var(--control-corner-radius) * 1px);\n }\n\n #display-field {\n width: 100%;\n cursor: pointer;\n color: inherit;\n min-height: 40px;\n padding-left: calc(var(--design-unit) * 2.25px);\n padding-right: 52px;\n border-width: 0;\n background: var(--neutral-fill-input-rest);\n border-radius: calc(var(--control-corner-radius) * 1px);\n text-overflow: ellipsis;\n font-size: var(--type-ramp-base-font-size);\n font-family: var(--body-font);\n }\n\n #display-field[disabled] {\n cursor: not-allowed;\n opacity: var(--disabled-opacity);\n }\n\n #display-field:focus {\n outline: 1px solid var(--accent-fill-rest);\n background: var(--neutral-fill-input-rest);\n border-style: none;\n box-shadow: none;\n }\n\n #display-field:hover:not(:focus):not([disabled]) {\n outline: 1px solid var(--neutral-stroke-hover, rgb(231 232 232));\n }\n\n button {\n pointer-events: none;\n }\n\n #arrow-icon {\n display: inline-block;\n width: 16px;\n color: currentColor;\n position: absolute;\n left: calc(100% - 26px);\n padding: 0;\n cursor: pointer;\n transform: rotate(0deg);\n transition: transform 0.2s linear 0s;\n }\n\n #arrow-icon.flipped {\n transform: rotate(180deg);\n }\n\n .cross-icon {\n display: inline-block;\n width: 12px;\n color: currentColor;\n position: absolute;\n left: calc(100% - 46px);\n padding: 0;\n cursor: pointer;\n visibility: hidden;\n }\n\n .cross-icon:hover {\n color: var(--error-color);\n }\n\n .disabled-icon {\n pointer-events: none;\n opacity: var(--disabled-opacity);\n }\n\n .${optionsClass} {\n min-width: 100%;\n width: var(${dropdownWidthVar});\n display: flex;\n flex-direction: column;\n position: absolute;\n height: max-content;\n overflow-y: hidden;\n margin: 5px 0;\n background: var(--neutral-fill-input-rest);\n visibility: hidden;\n z-index: 999;\n }\n\n .dropdown-above {\n bottom: 100%;\n }\n\n .dropdown-left {\n right: 0;\n }\n\n .grid-container {\n height: 300px;\n width: 100%;\n }\n\n #filter-search {\n padding: 5px;\n }\n\n .visible {\n visibility: visible;\n }\n`",
|
|
17964
|
+
"description": "Multicolumn Dropdown styles.",
|
|
17965
|
+
"privacy": "public"
|
|
17966
|
+
}
|
|
17967
|
+
],
|
|
17968
|
+
"exports": [
|
|
17969
|
+
{
|
|
17970
|
+
"kind": "js",
|
|
17971
|
+
"name": "dropdownWidthVar",
|
|
17972
|
+
"declaration": {
|
|
17973
|
+
"name": "dropdownWidthVar",
|
|
17974
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts"
|
|
17975
|
+
}
|
|
17976
|
+
},
|
|
17977
|
+
{
|
|
17978
|
+
"kind": "js",
|
|
17979
|
+
"name": "optionsClass",
|
|
17980
|
+
"declaration": {
|
|
17981
|
+
"name": "optionsClass",
|
|
17982
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts"
|
|
17983
|
+
}
|
|
17984
|
+
},
|
|
17985
|
+
{
|
|
17986
|
+
"kind": "js",
|
|
17987
|
+
"name": "DISPLAY_NONE_CLASS",
|
|
17988
|
+
"declaration": {
|
|
17989
|
+
"name": "DISPLAY_NONE_CLASS",
|
|
17990
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts"
|
|
17991
|
+
}
|
|
17992
|
+
},
|
|
17993
|
+
{
|
|
17994
|
+
"kind": "js",
|
|
17995
|
+
"name": "multicolumnDropdownStyles",
|
|
17996
|
+
"declaration": {
|
|
17997
|
+
"name": "multicolumnDropdownStyles",
|
|
17998
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts"
|
|
17999
|
+
}
|
|
18000
|
+
}
|
|
18001
|
+
]
|
|
18002
|
+
},
|
|
18003
|
+
{
|
|
18004
|
+
"kind": "javascript-module",
|
|
18005
|
+
"path": "src/multicolumn-dropdown/multicolumn-dropdown.template.ts",
|
|
18006
|
+
"declarations": [
|
|
18007
|
+
{
|
|
18008
|
+
"kind": "function",
|
|
18009
|
+
"name": "getMulticolumnDropdownTemplate",
|
|
18010
|
+
"parameters": [
|
|
18011
|
+
{
|
|
18012
|
+
"name": "designSystem",
|
|
18013
|
+
"default": "'foundation'",
|
|
18014
|
+
"description": "The design system prefix to use. Defaults to 'foundation'."
|
|
18015
|
+
}
|
|
18016
|
+
],
|
|
18017
|
+
"description": "Get a Design System prefixed Multicolumn Dropdown template.",
|
|
18018
|
+
"return": {
|
|
18019
|
+
"type": {
|
|
18020
|
+
"text": ""
|
|
18021
|
+
}
|
|
18022
|
+
},
|
|
18023
|
+
"privacy": "public"
|
|
18024
|
+
},
|
|
18025
|
+
{
|
|
18026
|
+
"kind": "variable",
|
|
18027
|
+
"name": "multicolumnDropdownTemplate",
|
|
18028
|
+
"description": "The default Multicolumn Dropdown template using the 'foundation' design system prefix.",
|
|
18029
|
+
"privacy": "public"
|
|
18030
|
+
}
|
|
18031
|
+
],
|
|
18032
|
+
"exports": [
|
|
18033
|
+
{
|
|
18034
|
+
"kind": "js",
|
|
18035
|
+
"name": "getMulticolumnDropdownTemplate",
|
|
18036
|
+
"declaration": {
|
|
18037
|
+
"name": "getMulticolumnDropdownTemplate",
|
|
18038
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.template.ts"
|
|
18039
|
+
}
|
|
18040
|
+
},
|
|
18041
|
+
{
|
|
18042
|
+
"kind": "js",
|
|
18043
|
+
"name": "multicolumnDropdownTemplate",
|
|
18044
|
+
"declaration": {
|
|
18045
|
+
"name": "multicolumnDropdownTemplate",
|
|
18046
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.template.ts"
|
|
18047
|
+
}
|
|
18048
|
+
}
|
|
18049
|
+
]
|
|
18050
|
+
},
|
|
18051
|
+
{
|
|
18052
|
+
"kind": "javascript-module",
|
|
18053
|
+
"path": "src/multicolumn-dropdown/multicolumn-dropdown.ts",
|
|
17932
18054
|
"declarations": [
|
|
18055
|
+
{
|
|
18056
|
+
"kind": "function",
|
|
18057
|
+
"name": "wasClickOutsideElement",
|
|
18058
|
+
"parameters": [
|
|
18059
|
+
{
|
|
18060
|
+
"name": "event",
|
|
18061
|
+
"type": {
|
|
18062
|
+
"text": "MouseEvent"
|
|
18063
|
+
}
|
|
18064
|
+
},
|
|
18065
|
+
{
|
|
18066
|
+
"name": "target",
|
|
18067
|
+
"type": {
|
|
18068
|
+
"text": "EventTarget"
|
|
18069
|
+
}
|
|
18070
|
+
}
|
|
18071
|
+
],
|
|
18072
|
+
"description": "Checks if the given mouse event occurred outside the target element.",
|
|
18073
|
+
"privacy": "public"
|
|
18074
|
+
},
|
|
17933
18075
|
{
|
|
17934
18076
|
"kind": "class",
|
|
17935
|
-
"description": "
|
|
17936
|
-
"name": "
|
|
18077
|
+
"description": "",
|
|
18078
|
+
"name": "MulticolumnDropdown",
|
|
17937
18079
|
"members": [
|
|
17938
18080
|
{
|
|
17939
18081
|
"kind": "field",
|
|
17940
|
-
"name": "
|
|
18082
|
+
"name": "optionsElement",
|
|
17941
18083
|
"type": {
|
|
17942
|
-
"text": "
|
|
18084
|
+
"text": "HTMLElement"
|
|
17943
18085
|
}
|
|
17944
18086
|
},
|
|
17945
18087
|
{
|
|
17946
18088
|
"kind": "field",
|
|
17947
|
-
"name": "
|
|
18089
|
+
"name": "lastRequest",
|
|
17948
18090
|
"type": {
|
|
17949
|
-
"text": "
|
|
17950
|
-
}
|
|
18091
|
+
"text": "object"
|
|
18092
|
+
},
|
|
18093
|
+
"privacy": "private"
|
|
17951
18094
|
},
|
|
17952
18095
|
{
|
|
17953
|
-
"kind": "
|
|
17954
|
-
"name": "
|
|
17955
|
-
"
|
|
17956
|
-
"
|
|
17957
|
-
"text": "Promise<ColumnState[]>"
|
|
17958
|
-
}
|
|
18096
|
+
"kind": "field",
|
|
18097
|
+
"name": "connectOverride",
|
|
18098
|
+
"type": {
|
|
18099
|
+
"text": "Connect"
|
|
17959
18100
|
},
|
|
17960
|
-
"
|
|
17961
|
-
{
|
|
17962
|
-
"name": "persistColumnStateKey",
|
|
17963
|
-
"type": {
|
|
17964
|
-
"text": "string"
|
|
17965
|
-
}
|
|
17966
|
-
}
|
|
17967
|
-
]
|
|
18101
|
+
"privacy": "private"
|
|
17968
18102
|
},
|
|
17969
18103
|
{
|
|
17970
|
-
"kind": "
|
|
17971
|
-
"name": "
|
|
17972
|
-
"
|
|
17973
|
-
"
|
|
17974
|
-
"text": "Promise<void>"
|
|
17975
|
-
}
|
|
18104
|
+
"kind": "field",
|
|
18105
|
+
"name": "_connectDI",
|
|
18106
|
+
"type": {
|
|
18107
|
+
"text": "Connect"
|
|
17976
18108
|
},
|
|
17977
|
-
"
|
|
17978
|
-
{
|
|
17979
|
-
"name": "persistColumnStateKey",
|
|
17980
|
-
"type": {
|
|
17981
|
-
"text": "string"
|
|
17982
|
-
}
|
|
17983
|
-
},
|
|
17984
|
-
{
|
|
17985
|
-
"name": "columnState",
|
|
17986
|
-
"type": {
|
|
17987
|
-
"text": "ColumnState[]"
|
|
17988
|
-
}
|
|
17989
|
-
}
|
|
17990
|
-
]
|
|
18109
|
+
"privacy": "private"
|
|
17991
18110
|
},
|
|
17992
18111
|
{
|
|
17993
|
-
"kind": "
|
|
17994
|
-
"name": "
|
|
17995
|
-
"
|
|
17996
|
-
"
|
|
17997
|
-
"text": "Promise<void>"
|
|
17998
|
-
}
|
|
18112
|
+
"kind": "field",
|
|
18113
|
+
"name": "connect",
|
|
18114
|
+
"type": {
|
|
18115
|
+
"text": "Connect"
|
|
17999
18116
|
},
|
|
18000
|
-
"
|
|
18001
|
-
{
|
|
18002
|
-
"name": "persistColumnStateKey",
|
|
18003
|
-
"type": {
|
|
18004
|
-
"text": "string"
|
|
18005
|
-
}
|
|
18006
|
-
}
|
|
18007
|
-
]
|
|
18117
|
+
"description": "The connect service - uses DI by default, but can be manually set for dynamic element creation"
|
|
18008
18118
|
},
|
|
18009
18119
|
{
|
|
18010
|
-
"kind": "
|
|
18011
|
-
"name": "
|
|
18012
|
-
"
|
|
18013
|
-
|
|
18014
|
-
"type": {
|
|
18015
|
-
"text": "Promise<void>"
|
|
18016
|
-
}
|
|
18120
|
+
"kind": "field",
|
|
18121
|
+
"name": "disabled",
|
|
18122
|
+
"type": {
|
|
18123
|
+
"text": "boolean"
|
|
18017
18124
|
},
|
|
18018
|
-
"
|
|
18019
|
-
|
|
18020
|
-
"name": "persistColumnStateKey",
|
|
18021
|
-
"type": {
|
|
18022
|
-
"text": "string"
|
|
18023
|
-
}
|
|
18024
|
-
}
|
|
18025
|
-
]
|
|
18125
|
+
"privacy": "public",
|
|
18126
|
+
"description": "Whether to disable control of the component"
|
|
18026
18127
|
},
|
|
18027
18128
|
{
|
|
18028
|
-
"kind": "
|
|
18029
|
-
"name": "
|
|
18030
|
-
"
|
|
18031
|
-
"
|
|
18032
|
-
"text": "Promise<{ [key: string]: any }>"
|
|
18033
|
-
}
|
|
18129
|
+
"kind": "field",
|
|
18130
|
+
"name": "resourceName",
|
|
18131
|
+
"type": {
|
|
18132
|
+
"text": "string"
|
|
18034
18133
|
},
|
|
18035
|
-
"
|
|
18036
|
-
|
|
18037
|
-
"name": "persistFilterModelKey",
|
|
18038
|
-
"type": {
|
|
18039
|
-
"text": "string"
|
|
18040
|
-
}
|
|
18041
|
-
}
|
|
18042
|
-
]
|
|
18134
|
+
"privacy": "public",
|
|
18135
|
+
"description": "The name of the reqrep to get the options from"
|
|
18043
18136
|
},
|
|
18044
18137
|
{
|
|
18045
|
-
"kind": "
|
|
18046
|
-
"name": "
|
|
18047
|
-
"
|
|
18048
|
-
"
|
|
18049
|
-
"text": "Promise<void>"
|
|
18050
|
-
}
|
|
18138
|
+
"kind": "field",
|
|
18139
|
+
"name": "searchKey",
|
|
18140
|
+
"type": {
|
|
18141
|
+
"text": "string | string[] | undefined"
|
|
18051
18142
|
},
|
|
18052
|
-
"
|
|
18053
|
-
|
|
18054
|
-
|
|
18055
|
-
"type": {
|
|
18056
|
-
"text": "string"
|
|
18057
|
-
}
|
|
18058
|
-
},
|
|
18059
|
-
{
|
|
18060
|
-
"name": "filterModel",
|
|
18061
|
-
"type": {
|
|
18062
|
-
"text": "{ [key: string]: any }"
|
|
18063
|
-
}
|
|
18064
|
-
}
|
|
18065
|
-
]
|
|
18066
|
-
}
|
|
18067
|
-
]
|
|
18068
|
-
}
|
|
18069
|
-
],
|
|
18070
|
-
"exports": [
|
|
18071
|
-
{
|
|
18072
|
-
"kind": "js",
|
|
18073
|
-
"name": "KVStorageStatePersistence",
|
|
18074
|
-
"declaration": {
|
|
18075
|
-
"name": "KVStorageStatePersistence",
|
|
18076
|
-
"module": "src/state-persistence/kv-state.ts"
|
|
18077
|
-
}
|
|
18078
|
-
}
|
|
18079
|
-
]
|
|
18080
|
-
},
|
|
18081
|
-
{
|
|
18082
|
-
"kind": "javascript-module",
|
|
18083
|
-
"path": "src/state-persistence/local-state.ts",
|
|
18084
|
-
"declarations": [
|
|
18085
|
-
{
|
|
18086
|
-
"kind": "class",
|
|
18087
|
-
"description": "Implementation for the Local Storage State Persistence interface.",
|
|
18088
|
-
"name": "LocalStorageStatePersistence",
|
|
18089
|
-
"members": [
|
|
18143
|
+
"privacy": "public",
|
|
18144
|
+
"description": "The key(s) to search by. Use comma-separated values for multiple keys (e.g. search-key=\"NAME,ID\")."
|
|
18145
|
+
},
|
|
18090
18146
|
{
|
|
18091
18147
|
"kind": "field",
|
|
18092
|
-
"name": "
|
|
18148
|
+
"name": "requestSupportsAdvancedSearch",
|
|
18093
18149
|
"type": {
|
|
18094
|
-
"text": "
|
|
18150
|
+
"text": "boolean"
|
|
18151
|
+
},
|
|
18152
|
+
"privacy": "public",
|
|
18153
|
+
"default": "false",
|
|
18154
|
+
"description": "Tells whether a given request supports lookup by Groovy Expressions."
|
|
18155
|
+
},
|
|
18156
|
+
{
|
|
18157
|
+
"kind": "field",
|
|
18158
|
+
"name": "valueKey",
|
|
18159
|
+
"type": {
|
|
18160
|
+
"text": "string"
|
|
18161
|
+
},
|
|
18162
|
+
"privacy": "public",
|
|
18163
|
+
"description": "The key used as the value sent to the server"
|
|
18164
|
+
},
|
|
18165
|
+
{
|
|
18166
|
+
"kind": "field",
|
|
18167
|
+
"name": "labelKey",
|
|
18168
|
+
"type": {
|
|
18169
|
+
"text": "string"
|
|
18170
|
+
},
|
|
18171
|
+
"privacy": "public",
|
|
18172
|
+
"description": "The key used as the label displayed in the UI"
|
|
18173
|
+
},
|
|
18174
|
+
{
|
|
18175
|
+
"kind": "field",
|
|
18176
|
+
"name": "dropdownPlacement",
|
|
18177
|
+
"type": {
|
|
18178
|
+
"text": "'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'"
|
|
18179
|
+
},
|
|
18180
|
+
"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"
|
|
18181
|
+
},
|
|
18182
|
+
{
|
|
18183
|
+
"kind": "field",
|
|
18184
|
+
"name": "dropdownWidth",
|
|
18185
|
+
"type": {
|
|
18186
|
+
"text": "number"
|
|
18187
|
+
},
|
|
18188
|
+
"privacy": "public",
|
|
18189
|
+
"description": "Optionally specifies the width of the dropdown"
|
|
18190
|
+
},
|
|
18191
|
+
{
|
|
18192
|
+
"kind": "field",
|
|
18193
|
+
"name": "request",
|
|
18194
|
+
"type": {
|
|
18195
|
+
"text": "object"
|
|
18196
|
+
},
|
|
18197
|
+
"privacy": "public",
|
|
18198
|
+
"description": "A request object to pass in the reqrep"
|
|
18199
|
+
},
|
|
18200
|
+
{
|
|
18201
|
+
"kind": "field",
|
|
18202
|
+
"name": "columnDefinitions",
|
|
18203
|
+
"type": {
|
|
18204
|
+
"text": "ColDef[]"
|
|
18205
|
+
},
|
|
18206
|
+
"privacy": "public",
|
|
18207
|
+
"description": "An array of AG Grid column definitions to use in the grid to display the data"
|
|
18208
|
+
},
|
|
18209
|
+
{
|
|
18210
|
+
"kind": "field",
|
|
18211
|
+
"name": "baseCriteria",
|
|
18212
|
+
"type": {
|
|
18213
|
+
"text": "string | undefined"
|
|
18214
|
+
},
|
|
18215
|
+
"privacy": "public",
|
|
18216
|
+
"description": "Base criteria that is always applied to requests combined with search criteria via AND.\nUse this to pre-filter results."
|
|
18217
|
+
},
|
|
18218
|
+
{
|
|
18219
|
+
"kind": "field",
|
|
18220
|
+
"name": "defaultSlottedNodes",
|
|
18221
|
+
"type": {
|
|
18222
|
+
"text": "Node[]"
|
|
18223
|
+
},
|
|
18224
|
+
"privacy": "public",
|
|
18225
|
+
"default": "[]"
|
|
18226
|
+
},
|
|
18227
|
+
{
|
|
18228
|
+
"kind": "field",
|
|
18229
|
+
"name": "grid",
|
|
18230
|
+
"type": {
|
|
18231
|
+
"text": "GridPro"
|
|
18232
|
+
},
|
|
18233
|
+
"privacy": "public"
|
|
18234
|
+
},
|
|
18235
|
+
{
|
|
18236
|
+
"kind": "field",
|
|
18237
|
+
"name": "_value",
|
|
18238
|
+
"type": {
|
|
18239
|
+
"text": "string"
|
|
18240
|
+
},
|
|
18241
|
+
"privacy": "private"
|
|
18242
|
+
},
|
|
18243
|
+
{
|
|
18244
|
+
"kind": "field",
|
|
18245
|
+
"name": "value",
|
|
18246
|
+
"type": {
|
|
18247
|
+
"text": "string"
|
|
18095
18248
|
}
|
|
18096
18249
|
},
|
|
18097
18250
|
{
|
|
18098
|
-
"kind": "
|
|
18099
|
-
"name": "
|
|
18100
|
-
"
|
|
18101
|
-
"
|
|
18102
|
-
|
|
18103
|
-
|
|
18251
|
+
"kind": "field",
|
|
18252
|
+
"name": "filterSearch",
|
|
18253
|
+
"type": {
|
|
18254
|
+
"text": "string"
|
|
18255
|
+
},
|
|
18256
|
+
"privacy": "public",
|
|
18257
|
+
"description": "The criteria to search by"
|
|
18258
|
+
},
|
|
18259
|
+
{
|
|
18260
|
+
"kind": "field",
|
|
18261
|
+
"name": "open",
|
|
18262
|
+
"type": {
|
|
18263
|
+
"text": "boolean"
|
|
18264
|
+
},
|
|
18265
|
+
"privacy": "public",
|
|
18266
|
+
"description": "Whether the dropdown is open or not"
|
|
18267
|
+
},
|
|
18268
|
+
{
|
|
18269
|
+
"kind": "field",
|
|
18270
|
+
"name": "selectedRow",
|
|
18271
|
+
"type": {
|
|
18272
|
+
"text": "object"
|
|
18273
|
+
},
|
|
18274
|
+
"description": "Data for the selected row"
|
|
18275
|
+
},
|
|
18276
|
+
{
|
|
18277
|
+
"kind": "field",
|
|
18278
|
+
"name": "displayValue",
|
|
18279
|
+
"description": "Value to display in the form field",
|
|
18280
|
+
"readonly": true
|
|
18281
|
+
},
|
|
18282
|
+
{
|
|
18283
|
+
"kind": "field",
|
|
18284
|
+
"name": "hasSearchKey",
|
|
18285
|
+
"type": {
|
|
18286
|
+
"text": "boolean"
|
|
18287
|
+
},
|
|
18288
|
+
"readonly": true
|
|
18289
|
+
},
|
|
18290
|
+
{
|
|
18291
|
+
"kind": "field",
|
|
18292
|
+
"name": "hasSlottedContent",
|
|
18293
|
+
"type": {
|
|
18294
|
+
"text": "boolean"
|
|
18104
18295
|
},
|
|
18296
|
+
"readonly": true
|
|
18297
|
+
},
|
|
18298
|
+
{
|
|
18299
|
+
"kind": "method",
|
|
18300
|
+
"name": "setGridRowData",
|
|
18301
|
+
"privacy": "private",
|
|
18105
18302
|
"parameters": [
|
|
18106
18303
|
{
|
|
18107
|
-
"name": "
|
|
18304
|
+
"name": "rows",
|
|
18108
18305
|
"type": {
|
|
18109
|
-
"text": "
|
|
18306
|
+
"text": "any[]"
|
|
18110
18307
|
}
|
|
18111
18308
|
}
|
|
18112
|
-
]
|
|
18309
|
+
],
|
|
18310
|
+
"description": "Sets row data on the grid in a version-safe way.\nAG Grid v32+ removed `setRowData` in favour of `updateGridOptions`."
|
|
18113
18311
|
},
|
|
18114
18312
|
{
|
|
18115
18313
|
"kind": "method",
|
|
18116
|
-
"name": "
|
|
18117
|
-
"
|
|
18118
|
-
"type": {
|
|
18119
|
-
"text": "Promise<void>"
|
|
18120
|
-
}
|
|
18121
|
-
},
|
|
18314
|
+
"name": "setGridColumnDefs",
|
|
18315
|
+
"privacy": "private",
|
|
18122
18316
|
"parameters": [
|
|
18123
18317
|
{
|
|
18124
|
-
"name": "
|
|
18125
|
-
"type": {
|
|
18126
|
-
"text": "string"
|
|
18127
|
-
}
|
|
18128
|
-
},
|
|
18129
|
-
{
|
|
18130
|
-
"name": "columnState",
|
|
18318
|
+
"name": "colDefs",
|
|
18131
18319
|
"type": {
|
|
18132
|
-
"text": "
|
|
18320
|
+
"text": "ColDef[]"
|
|
18133
18321
|
}
|
|
18134
18322
|
}
|
|
18135
|
-
]
|
|
18323
|
+
],
|
|
18324
|
+
"description": "Sets column defs on the grid in a version-safe way.\nAG Grid v32+ removed `setColumnDefs` in favour of `updateGridOptions`."
|
|
18136
18325
|
},
|
|
18137
18326
|
{
|
|
18138
18327
|
"kind": "method",
|
|
18139
|
-
"name": "
|
|
18140
|
-
"
|
|
18141
|
-
"type": {
|
|
18142
|
-
"text": "Promise<void>"
|
|
18143
|
-
}
|
|
18144
|
-
},
|
|
18328
|
+
"name": "emitValue",
|
|
18329
|
+
"privacy": "private",
|
|
18145
18330
|
"parameters": [
|
|
18146
18331
|
{
|
|
18147
|
-
"name": "
|
|
18332
|
+
"name": "value",
|
|
18148
18333
|
"type": {
|
|
18149
18334
|
"text": "string"
|
|
18150
18335
|
}
|
|
18151
18336
|
}
|
|
18152
|
-
]
|
|
18337
|
+
],
|
|
18338
|
+
"description": "Emits 'change' and 'input' events so that the `sync` directive and forms work correctly."
|
|
18153
18339
|
},
|
|
18154
18340
|
{
|
|
18155
18341
|
"kind": "method",
|
|
18156
|
-
"name": "
|
|
18157
|
-
"
|
|
18158
|
-
"type": {
|
|
18159
|
-
"text": "Promise<{ [key: string]: any }>"
|
|
18160
|
-
}
|
|
18161
|
-
},
|
|
18162
|
-
"parameters": [
|
|
18163
|
-
{
|
|
18164
|
-
"name": "persistFilterModelKey",
|
|
18165
|
-
"type": {
|
|
18166
|
-
"text": "string"
|
|
18167
|
-
}
|
|
18168
|
-
}
|
|
18169
|
-
]
|
|
18342
|
+
"name": "toggle",
|
|
18343
|
+
"privacy": "public"
|
|
18170
18344
|
},
|
|
18171
18345
|
{
|
|
18172
18346
|
"kind": "method",
|
|
18173
|
-
"name": "
|
|
18174
|
-
"return": {
|
|
18175
|
-
"type": {
|
|
18176
|
-
"text": "Promise<void>"
|
|
18177
|
-
}
|
|
18178
|
-
},
|
|
18179
|
-
"parameters": [
|
|
18180
|
-
{
|
|
18181
|
-
"name": "persistFilterModelKey",
|
|
18182
|
-
"type": {
|
|
18183
|
-
"text": "string"
|
|
18184
|
-
}
|
|
18185
|
-
},
|
|
18186
|
-
{
|
|
18187
|
-
"name": "filterModel",
|
|
18188
|
-
"type": {
|
|
18189
|
-
"text": "{ [key: string]: any }"
|
|
18190
|
-
}
|
|
18191
|
-
}
|
|
18192
|
-
]
|
|
18193
|
-
}
|
|
18194
|
-
]
|
|
18195
|
-
}
|
|
18196
|
-
],
|
|
18197
|
-
"exports": [
|
|
18198
|
-
{
|
|
18199
|
-
"kind": "js",
|
|
18200
|
-
"name": "LocalStorageStatePersistence",
|
|
18201
|
-
"declaration": {
|
|
18202
|
-
"name": "LocalStorageStatePersistence",
|
|
18203
|
-
"module": "src/state-persistence/local-state.ts"
|
|
18204
|
-
}
|
|
18205
|
-
}
|
|
18206
|
-
]
|
|
18207
|
-
},
|
|
18208
|
-
{
|
|
18209
|
-
"kind": "javascript-module",
|
|
18210
|
-
"path": "src/state-persistence/state-persistence.ts",
|
|
18211
|
-
"declarations": [],
|
|
18212
|
-
"exports": []
|
|
18213
|
-
},
|
|
18214
|
-
{
|
|
18215
|
-
"kind": "javascript-module",
|
|
18216
|
-
"path": "src/status-bar-components/index.ts",
|
|
18217
|
-
"declarations": [],
|
|
18218
|
-
"exports": [
|
|
18219
|
-
{
|
|
18220
|
-
"kind": "js",
|
|
18221
|
-
"name": "*",
|
|
18222
|
-
"declaration": {
|
|
18223
|
-
"name": "*",
|
|
18224
|
-
"package": "./load-more.status-bar"
|
|
18225
|
-
}
|
|
18226
|
-
},
|
|
18227
|
-
{
|
|
18228
|
-
"kind": "js",
|
|
18229
|
-
"name": "*",
|
|
18230
|
-
"declaration": {
|
|
18231
|
-
"name": "*",
|
|
18232
|
-
"package": "./pagination.status-bar"
|
|
18233
|
-
}
|
|
18234
|
-
},
|
|
18235
|
-
{
|
|
18236
|
-
"kind": "js",
|
|
18237
|
-
"name": "*",
|
|
18238
|
-
"declaration": {
|
|
18239
|
-
"name": "*",
|
|
18240
|
-
"package": "./label-value.status-bar"
|
|
18241
|
-
}
|
|
18242
|
-
},
|
|
18243
|
-
{
|
|
18244
|
-
"kind": "js",
|
|
18245
|
-
"name": "*",
|
|
18246
|
-
"declaration": {
|
|
18247
|
-
"name": "*",
|
|
18248
|
-
"package": "./reload.status-bar"
|
|
18249
|
-
}
|
|
18250
|
-
},
|
|
18251
|
-
{
|
|
18252
|
-
"kind": "js",
|
|
18253
|
-
"name": "*",
|
|
18254
|
-
"declaration": {
|
|
18255
|
-
"name": "*",
|
|
18256
|
-
"package": "./row-count.status-bar"
|
|
18257
|
-
}
|
|
18258
|
-
}
|
|
18259
|
-
]
|
|
18260
|
-
},
|
|
18261
|
-
{
|
|
18262
|
-
"kind": "javascript-module",
|
|
18263
|
-
"path": "src/status-bar-components/label-value.status-bar.ts",
|
|
18264
|
-
"declarations": [
|
|
18265
|
-
{
|
|
18266
|
-
"kind": "class",
|
|
18267
|
-
"description": "Label Value Status Bar Component",
|
|
18268
|
-
"name": "LabelValueStatusBarComponent",
|
|
18269
|
-
"members": [
|
|
18270
|
-
{
|
|
18271
|
-
"kind": "field",
|
|
18272
|
-
"name": "element",
|
|
18273
|
-
"type": {
|
|
18274
|
-
"text": "HTMLElement"
|
|
18275
|
-
},
|
|
18347
|
+
"name": "getAndSetRows",
|
|
18276
18348
|
"privacy": "private"
|
|
18277
18349
|
},
|
|
18278
18350
|
{
|
|
18279
18351
|
"kind": "field",
|
|
18280
|
-
"name": "
|
|
18281
|
-
"type": {
|
|
18282
|
-
"text": "HTMLElement"
|
|
18283
|
-
},
|
|
18352
|
+
"name": "getAndSetRowsDebounce",
|
|
18284
18353
|
"privacy": "private"
|
|
18285
18354
|
},
|
|
18286
18355
|
{
|
|
18287
|
-
"kind": "
|
|
18288
|
-
"name": "
|
|
18289
|
-
"
|
|
18290
|
-
|
|
18291
|
-
|
|
18292
|
-
"
|
|
18356
|
+
"kind": "method",
|
|
18357
|
+
"name": "filterSearchChanged",
|
|
18358
|
+
"privacy": "public"
|
|
18359
|
+
},
|
|
18360
|
+
{
|
|
18361
|
+
"kind": "method",
|
|
18362
|
+
"name": "requestChanged",
|
|
18363
|
+
"privacy": "public"
|
|
18364
|
+
},
|
|
18365
|
+
{
|
|
18366
|
+
"kind": "method",
|
|
18367
|
+
"name": "columnDefinitionsChanged",
|
|
18368
|
+
"privacy": "public"
|
|
18293
18369
|
},
|
|
18294
18370
|
{
|
|
18295
18371
|
"kind": "field",
|
|
18296
|
-
"name": "
|
|
18297
|
-
"type": {
|
|
18298
|
-
"text": "LabelValueStatusBarParams"
|
|
18299
|
-
},
|
|
18372
|
+
"name": "handleClickOutside",
|
|
18300
18373
|
"privacy": "private"
|
|
18301
18374
|
},
|
|
18302
18375
|
{
|
|
18303
18376
|
"kind": "method",
|
|
18304
|
-
"name": "
|
|
18377
|
+
"name": "openChanged",
|
|
18378
|
+
"privacy": "public"
|
|
18379
|
+
},
|
|
18380
|
+
{
|
|
18381
|
+
"kind": "method",
|
|
18382
|
+
"name": "dropdownWidthChanged",
|
|
18383
|
+
"privacy": "public"
|
|
18384
|
+
},
|
|
18385
|
+
{
|
|
18386
|
+
"kind": "method",
|
|
18387
|
+
"name": "changeHandler",
|
|
18388
|
+
"privacy": "public",
|
|
18305
18389
|
"parameters": [
|
|
18306
18390
|
{
|
|
18307
|
-
"name": "
|
|
18391
|
+
"name": "event",
|
|
18308
18392
|
"type": {
|
|
18309
|
-
"text": "
|
|
18393
|
+
"text": "Event"
|
|
18310
18394
|
}
|
|
18311
18395
|
}
|
|
18312
18396
|
]
|
|
18313
18397
|
},
|
|
18314
18398
|
{
|
|
18315
18399
|
"kind": "method",
|
|
18316
|
-
"name": "
|
|
18400
|
+
"name": "cloneNode",
|
|
18317
18401
|
"return": {
|
|
18318
18402
|
"type": {
|
|
18319
|
-
"text": "
|
|
18403
|
+
"text": "Node"
|
|
18320
18404
|
}
|
|
18321
18405
|
},
|
|
18322
18406
|
"parameters": [
|
|
18323
18407
|
{
|
|
18324
|
-
"name": "
|
|
18408
|
+
"name": "deep",
|
|
18409
|
+
"optional": true,
|
|
18325
18410
|
"type": {
|
|
18326
|
-
"text": "
|
|
18411
|
+
"text": "boolean"
|
|
18327
18412
|
}
|
|
18328
18413
|
}
|
|
18329
|
-
]
|
|
18414
|
+
],
|
|
18415
|
+
"inheritedFrom": {
|
|
18416
|
+
"name": "LifecycleMixin",
|
|
18417
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
18418
|
+
}
|
|
18330
18419
|
},
|
|
18331
18420
|
{
|
|
18332
18421
|
"kind": "method",
|
|
18333
|
-
"name": "
|
|
18334
|
-
"privacy": "private",
|
|
18422
|
+
"name": "deepClone",
|
|
18335
18423
|
"return": {
|
|
18336
18424
|
"type": {
|
|
18337
|
-
"text": "
|
|
18425
|
+
"text": "Node"
|
|
18338
18426
|
}
|
|
18427
|
+
},
|
|
18428
|
+
"inheritedFrom": {
|
|
18429
|
+
"name": "LifecycleMixin",
|
|
18430
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
18339
18431
|
}
|
|
18340
18432
|
},
|
|
18341
18433
|
{
|
|
18342
|
-
"kind": "
|
|
18343
|
-
"name": "
|
|
18434
|
+
"kind": "field",
|
|
18435
|
+
"name": "shouldRunDisconnect",
|
|
18344
18436
|
"return": {
|
|
18345
18437
|
"type": {
|
|
18346
|
-
"text": "
|
|
18438
|
+
"text": ""
|
|
18347
18439
|
}
|
|
18440
|
+
},
|
|
18441
|
+
"readonly": true,
|
|
18442
|
+
"inheritedFrom": {
|
|
18443
|
+
"name": "LifecycleMixin",
|
|
18444
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
18348
18445
|
}
|
|
18349
18446
|
},
|
|
18350
|
-
{
|
|
18351
|
-
"kind": "method",
|
|
18352
|
-
"name": "destroy"
|
|
18353
|
-
}
|
|
18354
|
-
]
|
|
18355
|
-
}
|
|
18356
|
-
],
|
|
18357
|
-
"exports": [
|
|
18358
|
-
{
|
|
18359
|
-
"kind": "js",
|
|
18360
|
-
"name": "LabelValueStatusBarComponent",
|
|
18361
|
-
"declaration": {
|
|
18362
|
-
"name": "LabelValueStatusBarComponent",
|
|
18363
|
-
"module": "src/status-bar-components/label-value.status-bar.ts"
|
|
18364
|
-
}
|
|
18365
|
-
}
|
|
18366
|
-
]
|
|
18367
|
-
},
|
|
18368
|
-
{
|
|
18369
|
-
"kind": "javascript-module",
|
|
18370
|
-
"path": "src/status-bar-components/load-more.status-bar.ts",
|
|
18371
|
-
"declarations": [
|
|
18372
|
-
{
|
|
18373
|
-
"kind": "class",
|
|
18374
|
-
"description": "A status bar component that shows a \"Load More\" button when more rows are available",
|
|
18375
|
-
"name": "LoadMoreStatusBarComponent",
|
|
18376
|
-
"members": [
|
|
18377
18447
|
{
|
|
18378
18448
|
"kind": "field",
|
|
18379
|
-
"name": "
|
|
18380
|
-
"
|
|
18381
|
-
"
|
|
18449
|
+
"name": "shouldRunConnect",
|
|
18450
|
+
"return": {
|
|
18451
|
+
"type": {
|
|
18452
|
+
"text": ""
|
|
18453
|
+
}
|
|
18382
18454
|
},
|
|
18383
|
-
"
|
|
18455
|
+
"readonly": true,
|
|
18456
|
+
"inheritedFrom": {
|
|
18457
|
+
"name": "LifecycleMixin",
|
|
18458
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
18459
|
+
}
|
|
18384
18460
|
},
|
|
18385
18461
|
{
|
|
18386
|
-
"kind": "
|
|
18387
|
-
"name": "
|
|
18388
|
-
"
|
|
18389
|
-
"
|
|
18390
|
-
|
|
18391
|
-
|
|
18392
|
-
},
|
|
18393
|
-
{
|
|
18394
|
-
"kind": "field",
|
|
18395
|
-
"name": "progressRing",
|
|
18396
|
-
"type": {
|
|
18397
|
-
"text": "HTMLElement"
|
|
18462
|
+
"kind": "method",
|
|
18463
|
+
"name": "#_blockLifecycleDueToTokenChange",
|
|
18464
|
+
"return": {
|
|
18465
|
+
"type": {
|
|
18466
|
+
"text": "boolean"
|
|
18467
|
+
}
|
|
18398
18468
|
},
|
|
18399
|
-
"
|
|
18469
|
+
"parameters": [
|
|
18470
|
+
{
|
|
18471
|
+
"name": "lifecycleType",
|
|
18472
|
+
"type": {
|
|
18473
|
+
"text": "Lifecycletype"
|
|
18474
|
+
}
|
|
18475
|
+
}
|
|
18476
|
+
],
|
|
18477
|
+
"inheritedFrom": {
|
|
18478
|
+
"name": "LifecycleMixin",
|
|
18479
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
18480
|
+
}
|
|
18400
18481
|
},
|
|
18401
18482
|
{
|
|
18402
18483
|
"kind": "field",
|
|
18403
|
-
"name": "
|
|
18484
|
+
"name": "_presentation",
|
|
18404
18485
|
"type": {
|
|
18405
|
-
"text": "
|
|
18486
|
+
"text": "ComponentPresentation | null | undefined"
|
|
18406
18487
|
},
|
|
18407
18488
|
"privacy": "private",
|
|
18408
|
-
"default": "
|
|
18409
|
-
|
|
18410
|
-
|
|
18411
|
-
|
|
18412
|
-
|
|
18413
|
-
"type": {
|
|
18414
|
-
"text": "LoadMoreStatusBarParams"
|
|
18415
|
-
},
|
|
18416
|
-
"privacy": "private"
|
|
18417
|
-
},
|
|
18418
|
-
{
|
|
18419
|
-
"kind": "field",
|
|
18420
|
-
"name": "designSystemPrefix",
|
|
18421
|
-
"type": {
|
|
18422
|
-
"text": "string"
|
|
18423
|
-
},
|
|
18424
|
-
"privacy": "private"
|
|
18489
|
+
"default": "void 0",
|
|
18490
|
+
"inheritedFrom": {
|
|
18491
|
+
"name": "FoundationElement",
|
|
18492
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
18493
|
+
}
|
|
18425
18494
|
},
|
|
18426
18495
|
{
|
|
18427
18496
|
"kind": "field",
|
|
18428
|
-
"name": "
|
|
18497
|
+
"name": "$presentation",
|
|
18429
18498
|
"type": {
|
|
18430
|
-
"text": "
|
|
18499
|
+
"text": "ComponentPresentation | null"
|
|
18431
18500
|
},
|
|
18432
|
-
"privacy": "
|
|
18433
|
-
"
|
|
18501
|
+
"privacy": "public",
|
|
18502
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
18503
|
+
"inheritedFrom": {
|
|
18504
|
+
"name": "FoundationElement",
|
|
18505
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
18506
|
+
}
|
|
18434
18507
|
},
|
|
18435
18508
|
{
|
|
18436
18509
|
"kind": "field",
|
|
18437
|
-
"name": "
|
|
18510
|
+
"name": "template",
|
|
18438
18511
|
"type": {
|
|
18439
|
-
"text": "
|
|
18512
|
+
"text": "ElementViewTemplate | void | null"
|
|
18440
18513
|
},
|
|
18441
|
-
"privacy": "
|
|
18442
|
-
"
|
|
18514
|
+
"privacy": "public",
|
|
18515
|
+
"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.",
|
|
18516
|
+
"inheritedFrom": {
|
|
18517
|
+
"name": "FoundationElement",
|
|
18518
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
18519
|
+
}
|
|
18443
18520
|
},
|
|
18444
18521
|
{
|
|
18445
|
-
"kind": "
|
|
18446
|
-
"name": "
|
|
18447
|
-
"
|
|
18448
|
-
|
|
18522
|
+
"kind": "method",
|
|
18523
|
+
"name": "templateChanged",
|
|
18524
|
+
"privacy": "protected",
|
|
18525
|
+
"return": {
|
|
18526
|
+
"type": {
|
|
18527
|
+
"text": "void"
|
|
18528
|
+
}
|
|
18449
18529
|
},
|
|
18450
|
-
"
|
|
18530
|
+
"inheritedFrom": {
|
|
18531
|
+
"name": "FoundationElement",
|
|
18532
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
18533
|
+
}
|
|
18451
18534
|
},
|
|
18452
18535
|
{
|
|
18453
18536
|
"kind": "field",
|
|
18454
|
-
"name": "
|
|
18537
|
+
"name": "styles",
|
|
18455
18538
|
"type": {
|
|
18456
|
-
"text": "
|
|
18539
|
+
"text": "ElementStyles | void | null"
|
|
18457
18540
|
},
|
|
18458
|
-
"privacy": "
|
|
18459
|
-
|
|
18460
|
-
|
|
18461
|
-
|
|
18462
|
-
|
|
18463
|
-
|
|
18464
|
-
{
|
|
18465
|
-
"name": "params",
|
|
18466
|
-
"type": {
|
|
18467
|
-
"text": "IStatusPanelParams"
|
|
18468
|
-
}
|
|
18469
|
-
}
|
|
18470
|
-
]
|
|
18471
|
-
},
|
|
18472
|
-
{
|
|
18473
|
-
"kind": "method",
|
|
18474
|
-
"name": "createProgressRing",
|
|
18475
|
-
"privacy": "private"
|
|
18476
|
-
},
|
|
18477
|
-
{
|
|
18478
|
-
"kind": "method",
|
|
18479
|
-
"name": "createLoadMoreButton",
|
|
18480
|
-
"privacy": "private"
|
|
18541
|
+
"privacy": "public",
|
|
18542
|
+
"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.",
|
|
18543
|
+
"inheritedFrom": {
|
|
18544
|
+
"name": "FoundationElement",
|
|
18545
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
18546
|
+
}
|
|
18481
18547
|
},
|
|
18482
18548
|
{
|
|
18483
18549
|
"kind": "method",
|
|
18484
|
-
"name": "
|
|
18485
|
-
"privacy": "
|
|
18550
|
+
"name": "stylesChanged",
|
|
18551
|
+
"privacy": "protected",
|
|
18486
18552
|
"return": {
|
|
18487
18553
|
"type": {
|
|
18488
18554
|
"text": "void"
|
|
18489
18555
|
}
|
|
18490
18556
|
},
|
|
18491
|
-
"
|
|
18557
|
+
"inheritedFrom": {
|
|
18558
|
+
"name": "FoundationElement",
|
|
18559
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
18560
|
+
}
|
|
18492
18561
|
},
|
|
18493
18562
|
{
|
|
18494
18563
|
"kind": "method",
|
|
18495
|
-
"name": "
|
|
18496
|
-
"privacy": "
|
|
18564
|
+
"name": "compose",
|
|
18565
|
+
"privacy": "public",
|
|
18566
|
+
"static": true,
|
|
18497
18567
|
"return": {
|
|
18498
18568
|
"type": {
|
|
18499
|
-
"text": "
|
|
18569
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
18500
18570
|
}
|
|
18501
18571
|
},
|
|
18502
18572
|
"parameters": [
|
|
18503
18573
|
{
|
|
18504
|
-
"name": "
|
|
18574
|
+
"name": "this",
|
|
18505
18575
|
"type": {
|
|
18506
|
-
"text": "
|
|
18576
|
+
"text": "K"
|
|
18507
18577
|
}
|
|
18508
|
-
}
|
|
18509
|
-
],
|
|
18510
|
-
"description": "Show or hide the loading state"
|
|
18511
|
-
},
|
|
18512
|
-
{
|
|
18513
|
-
"kind": "method",
|
|
18514
|
-
"name": "updateButtonVisibility",
|
|
18515
|
-
"privacy": "public"
|
|
18516
|
-
},
|
|
18517
|
-
{
|
|
18518
|
-
"kind": "method",
|
|
18519
|
-
"name": "updateParams",
|
|
18520
|
-
"privacy": "public",
|
|
18521
|
-
"parameters": [
|
|
18578
|
+
},
|
|
18522
18579
|
{
|
|
18523
|
-
"name": "
|
|
18580
|
+
"name": "elementDefinition",
|
|
18524
18581
|
"type": {
|
|
18525
|
-
"text": "
|
|
18526
|
-
}
|
|
18527
|
-
|
|
18528
|
-
]
|
|
18529
|
-
},
|
|
18530
|
-
{
|
|
18531
|
-
"kind": "method",
|
|
18532
|
-
"name": "getGui",
|
|
18533
|
-
"return": {
|
|
18534
|
-
"type": {
|
|
18535
|
-
"text": "HTMLElement"
|
|
18582
|
+
"text": "T"
|
|
18583
|
+
},
|
|
18584
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
18536
18585
|
}
|
|
18586
|
+
],
|
|
18587
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
18588
|
+
"inheritedFrom": {
|
|
18589
|
+
"name": "FoundationElement",
|
|
18590
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
18537
18591
|
}
|
|
18592
|
+
}
|
|
18593
|
+
],
|
|
18594
|
+
"events": [
|
|
18595
|
+
{
|
|
18596
|
+
"description": "Fired when the selected value changes",
|
|
18597
|
+
"name": "change"
|
|
18538
18598
|
},
|
|
18539
18599
|
{
|
|
18540
|
-
"
|
|
18541
|
-
"name": "
|
|
18600
|
+
"description": "Fired when the value is updated (including programmatic changes)",
|
|
18601
|
+
"name": "input"
|
|
18542
18602
|
}
|
|
18543
|
-
]
|
|
18544
|
-
|
|
18545
|
-
],
|
|
18546
|
-
"exports": [
|
|
18547
|
-
{
|
|
18548
|
-
"kind": "js",
|
|
18549
|
-
"name": "LoadMoreStatusBarComponent",
|
|
18550
|
-
"declaration": {
|
|
18551
|
-
"name": "LoadMoreStatusBarComponent",
|
|
18552
|
-
"module": "src/status-bar-components/load-more.status-bar.ts"
|
|
18553
|
-
}
|
|
18554
|
-
}
|
|
18555
|
-
]
|
|
18556
|
-
},
|
|
18557
|
-
{
|
|
18558
|
-
"kind": "javascript-module",
|
|
18559
|
-
"path": "src/status-bar-components/pagination.status-bar.ts",
|
|
18560
|
-
"declarations": [
|
|
18561
|
-
{
|
|
18562
|
-
"kind": "class",
|
|
18563
|
-
"description": "Pagination Status Bar Component for AG Grid\nDisplays pagination controls and information about current page and total rows",
|
|
18564
|
-
"name": "PaginationStatusBarComponent",
|
|
18565
|
-
"members": [
|
|
18603
|
+
],
|
|
18604
|
+
"attributes": [
|
|
18566
18605
|
{
|
|
18567
|
-
"kind": "field",
|
|
18568
|
-
"name": "element",
|
|
18569
18606
|
"type": {
|
|
18570
|
-
"text": "
|
|
18607
|
+
"text": "boolean"
|
|
18571
18608
|
},
|
|
18572
|
-
"
|
|
18609
|
+
"description": "Whether to disable control of the component",
|
|
18610
|
+
"fieldName": "disabled"
|
|
18573
18611
|
},
|
|
18574
18612
|
{
|
|
18575
|
-
"
|
|
18576
|
-
"name": "api",
|
|
18613
|
+
"name": "resource-name",
|
|
18577
18614
|
"type": {
|
|
18578
|
-
"text": "
|
|
18615
|
+
"text": "string"
|
|
18579
18616
|
},
|
|
18580
|
-
"
|
|
18617
|
+
"description": "The name of the reqrep to get the options from",
|
|
18618
|
+
"fieldName": "resourceName"
|
|
18581
18619
|
},
|
|
18582
18620
|
{
|
|
18583
|
-
"
|
|
18584
|
-
"name": "paginationPanel",
|
|
18621
|
+
"name": "search-key",
|
|
18585
18622
|
"type": {
|
|
18586
|
-
"text": "
|
|
18623
|
+
"text": "string | string[] | undefined"
|
|
18587
18624
|
},
|
|
18588
|
-
"
|
|
18625
|
+
"description": "The key(s) to search by. Use comma-separated values for multiple keys (e.g. search-key=\"NAME,ID\").",
|
|
18626
|
+
"fieldName": "searchKey"
|
|
18589
18627
|
},
|
|
18590
18628
|
{
|
|
18591
|
-
"
|
|
18592
|
-
"name": "paginationSummaryPanel",
|
|
18629
|
+
"name": "advanced-search-req",
|
|
18593
18630
|
"type": {
|
|
18594
|
-
"text": "
|
|
18631
|
+
"text": "boolean"
|
|
18595
18632
|
},
|
|
18596
|
-
"
|
|
18633
|
+
"default": "false",
|
|
18634
|
+
"description": "Tells whether a given request supports lookup by Groovy Expressions.",
|
|
18635
|
+
"fieldName": "requestSupportsAdvancedSearch"
|
|
18597
18636
|
},
|
|
18598
18637
|
{
|
|
18599
|
-
"
|
|
18600
|
-
"name": "firstPageButton",
|
|
18638
|
+
"name": "value-key",
|
|
18601
18639
|
"type": {
|
|
18602
|
-
"text": "
|
|
18640
|
+
"text": "string"
|
|
18603
18641
|
},
|
|
18604
|
-
"
|
|
18642
|
+
"description": "The key used as the value sent to the server",
|
|
18643
|
+
"fieldName": "valueKey"
|
|
18605
18644
|
},
|
|
18606
18645
|
{
|
|
18607
|
-
"
|
|
18608
|
-
"name": "prevPageButton",
|
|
18609
|
-
"type": {
|
|
18610
|
-
"text": "HTMLElement"
|
|
18611
|
-
},
|
|
18612
|
-
"privacy": "private"
|
|
18613
|
-
},
|
|
18614
|
-
{
|
|
18615
|
-
"kind": "field",
|
|
18616
|
-
"name": "descriptionPanel",
|
|
18617
|
-
"type": {
|
|
18618
|
-
"text": "HTMLElement"
|
|
18619
|
-
},
|
|
18620
|
-
"privacy": "private"
|
|
18621
|
-
},
|
|
18622
|
-
{
|
|
18623
|
-
"kind": "field",
|
|
18624
|
-
"name": "pageStartDisplay",
|
|
18625
|
-
"type": {
|
|
18626
|
-
"text": "HTMLElement"
|
|
18627
|
-
},
|
|
18628
|
-
"privacy": "private"
|
|
18629
|
-
},
|
|
18630
|
-
{
|
|
18631
|
-
"kind": "field",
|
|
18632
|
-
"name": "pageNumberDisplay",
|
|
18646
|
+
"name": "label-key",
|
|
18633
18647
|
"type": {
|
|
18634
|
-
"text": "
|
|
18648
|
+
"text": "string"
|
|
18635
18649
|
},
|
|
18636
|
-
"
|
|
18650
|
+
"description": "The key used as the label displayed in the UI",
|
|
18651
|
+
"fieldName": "labelKey"
|
|
18637
18652
|
},
|
|
18638
18653
|
{
|
|
18639
|
-
"
|
|
18640
|
-
"name": "pageOfDisplay",
|
|
18654
|
+
"name": "dropdown-placement",
|
|
18641
18655
|
"type": {
|
|
18642
|
-
"text": "
|
|
18656
|
+
"text": "'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'"
|
|
18643
18657
|
},
|
|
18644
|
-
"
|
|
18658
|
+
"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",
|
|
18659
|
+
"fieldName": "dropdownPlacement"
|
|
18645
18660
|
},
|
|
18646
18661
|
{
|
|
18647
|
-
"
|
|
18648
|
-
"name": "pageNumberTotalDisplay",
|
|
18662
|
+
"name": "dropdownWidth",
|
|
18649
18663
|
"type": {
|
|
18650
|
-
"text": "
|
|
18664
|
+
"text": "number"
|
|
18651
18665
|
},
|
|
18652
|
-
"
|
|
18653
|
-
|
|
18666
|
+
"description": "Optionally specifies the width of the dropdown",
|
|
18667
|
+
"fieldName": "dropdownWidth"
|
|
18668
|
+
}
|
|
18669
|
+
],
|
|
18670
|
+
"mixins": [
|
|
18654
18671
|
{
|
|
18655
|
-
"
|
|
18656
|
-
"
|
|
18657
|
-
|
|
18658
|
-
|
|
18659
|
-
|
|
18660
|
-
|
|
18661
|
-
|
|
18672
|
+
"name": "LifecycleMixin",
|
|
18673
|
+
"package": "@genesislcap/foundation-utils"
|
|
18674
|
+
}
|
|
18675
|
+
],
|
|
18676
|
+
"superclass": {
|
|
18677
|
+
"name": "FoundationElement",
|
|
18678
|
+
"package": "@microsoft/fast-foundation"
|
|
18679
|
+
},
|
|
18680
|
+
"tagName": "%%prefix%%-multicolumn-dropdown",
|
|
18681
|
+
"customElement": true
|
|
18682
|
+
},
|
|
18683
|
+
{
|
|
18684
|
+
"kind": "variable",
|
|
18685
|
+
"name": "foundationMulticolumnDropdown",
|
|
18686
|
+
"description": "A function that returns a Multicolumn Dropdown registration for configuring the component with a DesignSystem.",
|
|
18687
|
+
"privacy": "public"
|
|
18688
|
+
}
|
|
18689
|
+
],
|
|
18690
|
+
"exports": [
|
|
18691
|
+
{
|
|
18692
|
+
"kind": "js",
|
|
18693
|
+
"name": "wasClickOutsideElement",
|
|
18694
|
+
"declaration": {
|
|
18695
|
+
"name": "wasClickOutsideElement",
|
|
18696
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
18697
|
+
}
|
|
18698
|
+
},
|
|
18699
|
+
{
|
|
18700
|
+
"kind": "js",
|
|
18701
|
+
"name": "MulticolumnDropdown",
|
|
18702
|
+
"declaration": {
|
|
18703
|
+
"name": "MulticolumnDropdown",
|
|
18704
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
18705
|
+
}
|
|
18706
|
+
},
|
|
18707
|
+
{
|
|
18708
|
+
"kind": "js",
|
|
18709
|
+
"name": "foundationMulticolumnDropdown",
|
|
18710
|
+
"declaration": {
|
|
18711
|
+
"name": "foundationMulticolumnDropdown",
|
|
18712
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
18713
|
+
}
|
|
18714
|
+
}
|
|
18715
|
+
]
|
|
18716
|
+
},
|
|
18717
|
+
{
|
|
18718
|
+
"kind": "javascript-module",
|
|
18719
|
+
"path": "src/state-persistence/index.ts",
|
|
18720
|
+
"declarations": [],
|
|
18721
|
+
"exports": [
|
|
18722
|
+
{
|
|
18723
|
+
"kind": "js",
|
|
18724
|
+
"name": "*",
|
|
18725
|
+
"declaration": {
|
|
18726
|
+
"name": "*",
|
|
18727
|
+
"package": "./kv-state"
|
|
18728
|
+
}
|
|
18729
|
+
},
|
|
18730
|
+
{
|
|
18731
|
+
"kind": "js",
|
|
18732
|
+
"name": "*",
|
|
18733
|
+
"declaration": {
|
|
18734
|
+
"name": "*",
|
|
18735
|
+
"package": "./local-state"
|
|
18736
|
+
}
|
|
18737
|
+
},
|
|
18738
|
+
{
|
|
18739
|
+
"kind": "js",
|
|
18740
|
+
"name": "*",
|
|
18741
|
+
"declaration": {
|
|
18742
|
+
"name": "*",
|
|
18743
|
+
"package": "./state-persistence"
|
|
18744
|
+
}
|
|
18745
|
+
}
|
|
18746
|
+
]
|
|
18747
|
+
},
|
|
18748
|
+
{
|
|
18749
|
+
"kind": "javascript-module",
|
|
18750
|
+
"path": "src/state-persistence/kv-state.ts",
|
|
18751
|
+
"declarations": [
|
|
18752
|
+
{
|
|
18753
|
+
"kind": "class",
|
|
18754
|
+
"description": "Implementation for the KV Storage State Persistence interface.",
|
|
18755
|
+
"name": "KVStorageStatePersistence",
|
|
18756
|
+
"members": [
|
|
18662
18757
|
{
|
|
18663
18758
|
"kind": "field",
|
|
18664
|
-
"name": "
|
|
18759
|
+
"name": "kvStorage",
|
|
18665
18760
|
"type": {
|
|
18666
|
-
"text": "
|
|
18667
|
-
}
|
|
18668
|
-
"privacy": "private"
|
|
18761
|
+
"text": "KVStorage"
|
|
18762
|
+
}
|
|
18669
18763
|
},
|
|
18670
18764
|
{
|
|
18671
18765
|
"kind": "field",
|
|
18672
|
-
"name": "
|
|
18766
|
+
"name": "session",
|
|
18673
18767
|
"type": {
|
|
18674
|
-
"text": "
|
|
18675
|
-
}
|
|
18676
|
-
"privacy": "private"
|
|
18768
|
+
"text": "Session"
|
|
18769
|
+
}
|
|
18677
18770
|
},
|
|
18678
18771
|
{
|
|
18679
18772
|
"kind": "method",
|
|
18680
|
-
"name": "
|
|
18773
|
+
"name": "getColumnState",
|
|
18774
|
+
"return": {
|
|
18775
|
+
"type": {
|
|
18776
|
+
"text": "Promise<ColumnState[]>"
|
|
18777
|
+
}
|
|
18778
|
+
},
|
|
18681
18779
|
"parameters": [
|
|
18682
18780
|
{
|
|
18683
|
-
"name": "
|
|
18781
|
+
"name": "persistColumnStateKey",
|
|
18684
18782
|
"type": {
|
|
18685
|
-
"text": "
|
|
18783
|
+
"text": "string"
|
|
18686
18784
|
}
|
|
18687
18785
|
}
|
|
18688
18786
|
]
|
|
18689
18787
|
},
|
|
18690
18788
|
{
|
|
18691
18789
|
"kind": "method",
|
|
18692
|
-
"name": "
|
|
18693
|
-
},
|
|
18694
|
-
{
|
|
18695
|
-
"kind": "method",
|
|
18696
|
-
"name": "createPaginationPanel",
|
|
18697
|
-
"privacy": "private"
|
|
18698
|
-
},
|
|
18699
|
-
{
|
|
18700
|
-
"kind": "method",
|
|
18701
|
-
"name": "addPaginationEventListeners",
|
|
18702
|
-
"privacy": "private",
|
|
18703
|
-
"return": {
|
|
18704
|
-
"type": {
|
|
18705
|
-
"text": "void"
|
|
18706
|
-
}
|
|
18707
|
-
}
|
|
18708
|
-
},
|
|
18709
|
-
{
|
|
18710
|
-
"kind": "method",
|
|
18711
|
-
"name": "createPaginationButton",
|
|
18712
|
-
"privacy": "private",
|
|
18790
|
+
"name": "saveColumnState",
|
|
18713
18791
|
"return": {
|
|
18714
18792
|
"type": {
|
|
18715
|
-
"text": "
|
|
18793
|
+
"text": "Promise<void>"
|
|
18716
18794
|
}
|
|
18717
18795
|
},
|
|
18718
18796
|
"parameters": [
|
|
18719
18797
|
{
|
|
18720
|
-
"name": "
|
|
18798
|
+
"name": "persistColumnStateKey",
|
|
18721
18799
|
"type": {
|
|
18722
18800
|
"text": "string"
|
|
18723
18801
|
}
|
|
18724
18802
|
},
|
|
18725
18803
|
{
|
|
18726
|
-
"name": "
|
|
18804
|
+
"name": "columnState",
|
|
18727
18805
|
"type": {
|
|
18728
|
-
"text": "
|
|
18806
|
+
"text": "ColumnState[]"
|
|
18729
18807
|
}
|
|
18730
|
-
}
|
|
18808
|
+
}
|
|
18809
|
+
]
|
|
18810
|
+
},
|
|
18811
|
+
{
|
|
18812
|
+
"kind": "method",
|
|
18813
|
+
"name": "deleteColumnState",
|
|
18814
|
+
"return": {
|
|
18815
|
+
"type": {
|
|
18816
|
+
"text": "Promise<void>"
|
|
18817
|
+
}
|
|
18818
|
+
},
|
|
18819
|
+
"parameters": [
|
|
18731
18820
|
{
|
|
18732
|
-
"name": "
|
|
18821
|
+
"name": "persistColumnStateKey",
|
|
18733
18822
|
"type": {
|
|
18734
18823
|
"text": "string"
|
|
18735
18824
|
}
|
|
18736
|
-
},
|
|
18737
|
-
{
|
|
18738
|
-
"name": "disabled",
|
|
18739
|
-
"type": {
|
|
18740
|
-
"text": "boolean"
|
|
18741
|
-
}
|
|
18742
18825
|
}
|
|
18743
18826
|
]
|
|
18744
18827
|
},
|
|
18745
18828
|
{
|
|
18746
18829
|
"kind": "method",
|
|
18747
|
-
"name": "
|
|
18830
|
+
"name": "migrateLocalStorageToKVStorage",
|
|
18748
18831
|
"privacy": "private",
|
|
18832
|
+
"return": {
|
|
18833
|
+
"type": {
|
|
18834
|
+
"text": "Promise<void>"
|
|
18835
|
+
}
|
|
18836
|
+
},
|
|
18749
18837
|
"parameters": [
|
|
18750
18838
|
{
|
|
18751
|
-
"name": "
|
|
18839
|
+
"name": "persistColumnStateKey",
|
|
18752
18840
|
"type": {
|
|
18753
|
-
"text": "
|
|
18841
|
+
"text": "string"
|
|
18754
18842
|
}
|
|
18755
18843
|
}
|
|
18756
18844
|
]
|
|
18757
18845
|
},
|
|
18758
18846
|
{
|
|
18759
18847
|
"kind": "method",
|
|
18760
|
-
"name": "
|
|
18761
|
-
"
|
|
18762
|
-
|
|
18763
|
-
|
|
18764
|
-
|
|
18765
|
-
|
|
18766
|
-
"privacy": "private",
|
|
18848
|
+
"name": "getFilterModel",
|
|
18849
|
+
"return": {
|
|
18850
|
+
"type": {
|
|
18851
|
+
"text": "Promise<{ [key: string]: any }>"
|
|
18852
|
+
}
|
|
18853
|
+
},
|
|
18767
18854
|
"parameters": [
|
|
18768
18855
|
{
|
|
18769
|
-
"name": "
|
|
18770
|
-
"type": {
|
|
18771
|
-
"text": "HTMLElement"
|
|
18772
|
-
}
|
|
18773
|
-
},
|
|
18774
|
-
{
|
|
18775
|
-
"name": "disabled",
|
|
18856
|
+
"name": "persistFilterModelKey",
|
|
18776
18857
|
"type": {
|
|
18777
|
-
"text": "
|
|
18858
|
+
"text": "string"
|
|
18778
18859
|
}
|
|
18779
18860
|
}
|
|
18780
18861
|
]
|
|
18781
18862
|
},
|
|
18782
18863
|
{
|
|
18783
18864
|
"kind": "method",
|
|
18784
|
-
"name": "
|
|
18785
|
-
|
|
18786
|
-
|
|
18865
|
+
"name": "saveFilterModel",
|
|
18866
|
+
"return": {
|
|
18867
|
+
"type": {
|
|
18868
|
+
"text": "Promise<void>"
|
|
18869
|
+
}
|
|
18870
|
+
},
|
|
18871
|
+
"parameters": [
|
|
18872
|
+
{
|
|
18873
|
+
"name": "persistFilterModelKey",
|
|
18874
|
+
"type": {
|
|
18875
|
+
"text": "string"
|
|
18876
|
+
}
|
|
18877
|
+
},
|
|
18878
|
+
{
|
|
18879
|
+
"name": "filterModel",
|
|
18880
|
+
"type": {
|
|
18881
|
+
"text": "{ [key: string]: any }"
|
|
18882
|
+
}
|
|
18883
|
+
}
|
|
18884
|
+
]
|
|
18885
|
+
}
|
|
18886
|
+
]
|
|
18787
18887
|
}
|
|
18788
18888
|
],
|
|
18789
18889
|
"exports": [
|
|
18790
18890
|
{
|
|
18791
18891
|
"kind": "js",
|
|
18792
|
-
"name": "
|
|
18892
|
+
"name": "KVStorageStatePersistence",
|
|
18793
18893
|
"declaration": {
|
|
18794
|
-
"name": "
|
|
18795
|
-
"module": "src/
|
|
18894
|
+
"name": "KVStorageStatePersistence",
|
|
18895
|
+
"module": "src/state-persistence/kv-state.ts"
|
|
18796
18896
|
}
|
|
18797
18897
|
}
|
|
18798
18898
|
]
|
|
18799
18899
|
},
|
|
18800
18900
|
{
|
|
18801
18901
|
"kind": "javascript-module",
|
|
18802
|
-
"path": "src/
|
|
18902
|
+
"path": "src/state-persistence/local-state.ts",
|
|
18803
18903
|
"declarations": [
|
|
18804
18904
|
{
|
|
18805
18905
|
"kind": "class",
|
|
18806
|
-
"description": "
|
|
18807
|
-
"name": "
|
|
18906
|
+
"description": "Implementation for the Local Storage State Persistence interface.",
|
|
18907
|
+
"name": "LocalStorageStatePersistence",
|
|
18808
18908
|
"members": [
|
|
18809
18909
|
{
|
|
18810
18910
|
"kind": "field",
|
|
18811
|
-
"name": "
|
|
18911
|
+
"name": "session",
|
|
18812
18912
|
"type": {
|
|
18813
|
-
"text": "
|
|
18814
|
-
}
|
|
18815
|
-
"privacy": "private"
|
|
18913
|
+
"text": "Session"
|
|
18914
|
+
}
|
|
18816
18915
|
},
|
|
18817
18916
|
{
|
|
18818
|
-
"kind": "
|
|
18819
|
-
"name": "
|
|
18820
|
-
"
|
|
18821
|
-
"
|
|
18917
|
+
"kind": "method",
|
|
18918
|
+
"name": "getColumnState",
|
|
18919
|
+
"return": {
|
|
18920
|
+
"type": {
|
|
18921
|
+
"text": "Promise<ColumnState[]>"
|
|
18922
|
+
}
|
|
18822
18923
|
},
|
|
18823
|
-
"
|
|
18924
|
+
"parameters": [
|
|
18925
|
+
{
|
|
18926
|
+
"name": "persistColumnStateKey",
|
|
18927
|
+
"type": {
|
|
18928
|
+
"text": "string"
|
|
18929
|
+
}
|
|
18930
|
+
}
|
|
18931
|
+
]
|
|
18824
18932
|
},
|
|
18825
18933
|
{
|
|
18826
|
-
"kind": "
|
|
18827
|
-
"name": "
|
|
18828
|
-
"
|
|
18829
|
-
"
|
|
18934
|
+
"kind": "method",
|
|
18935
|
+
"name": "saveColumnState",
|
|
18936
|
+
"return": {
|
|
18937
|
+
"type": {
|
|
18938
|
+
"text": "Promise<void>"
|
|
18939
|
+
}
|
|
18830
18940
|
},
|
|
18831
|
-
"
|
|
18941
|
+
"parameters": [
|
|
18942
|
+
{
|
|
18943
|
+
"name": "persistColumnStateKey",
|
|
18944
|
+
"type": {
|
|
18945
|
+
"text": "string"
|
|
18946
|
+
}
|
|
18947
|
+
},
|
|
18948
|
+
{
|
|
18949
|
+
"name": "columnState",
|
|
18950
|
+
"type": {
|
|
18951
|
+
"text": "ColumnState[]"
|
|
18952
|
+
}
|
|
18953
|
+
}
|
|
18954
|
+
]
|
|
18832
18955
|
},
|
|
18833
18956
|
{
|
|
18834
|
-
"kind": "
|
|
18835
|
-
"name": "
|
|
18836
|
-
"
|
|
18837
|
-
"
|
|
18957
|
+
"kind": "method",
|
|
18958
|
+
"name": "deleteColumnState",
|
|
18959
|
+
"return": {
|
|
18960
|
+
"type": {
|
|
18961
|
+
"text": "Promise<void>"
|
|
18962
|
+
}
|
|
18838
18963
|
},
|
|
18839
|
-
"
|
|
18964
|
+
"parameters": [
|
|
18965
|
+
{
|
|
18966
|
+
"name": "persistColumnStateKey",
|
|
18967
|
+
"type": {
|
|
18968
|
+
"text": "string"
|
|
18969
|
+
}
|
|
18970
|
+
}
|
|
18971
|
+
]
|
|
18840
18972
|
},
|
|
18841
18973
|
{
|
|
18842
|
-
"kind": "
|
|
18843
|
-
"name": "
|
|
18844
|
-
"
|
|
18845
|
-
"
|
|
18974
|
+
"kind": "method",
|
|
18975
|
+
"name": "getFilterModel",
|
|
18976
|
+
"return": {
|
|
18977
|
+
"type": {
|
|
18978
|
+
"text": "Promise<{ [key: string]: any }>"
|
|
18979
|
+
}
|
|
18846
18980
|
},
|
|
18847
|
-
"
|
|
18981
|
+
"parameters": [
|
|
18982
|
+
{
|
|
18983
|
+
"name": "persistFilterModelKey",
|
|
18984
|
+
"type": {
|
|
18985
|
+
"text": "string"
|
|
18986
|
+
}
|
|
18987
|
+
}
|
|
18988
|
+
]
|
|
18848
18989
|
},
|
|
18990
|
+
{
|
|
18991
|
+
"kind": "method",
|
|
18992
|
+
"name": "saveFilterModel",
|
|
18993
|
+
"return": {
|
|
18994
|
+
"type": {
|
|
18995
|
+
"text": "Promise<void>"
|
|
18996
|
+
}
|
|
18997
|
+
},
|
|
18998
|
+
"parameters": [
|
|
18999
|
+
{
|
|
19000
|
+
"name": "persistFilterModelKey",
|
|
19001
|
+
"type": {
|
|
19002
|
+
"text": "string"
|
|
19003
|
+
}
|
|
19004
|
+
},
|
|
19005
|
+
{
|
|
19006
|
+
"name": "filterModel",
|
|
19007
|
+
"type": {
|
|
19008
|
+
"text": "{ [key: string]: any }"
|
|
19009
|
+
}
|
|
19010
|
+
}
|
|
19011
|
+
]
|
|
19012
|
+
}
|
|
19013
|
+
]
|
|
19014
|
+
}
|
|
19015
|
+
],
|
|
19016
|
+
"exports": [
|
|
19017
|
+
{
|
|
19018
|
+
"kind": "js",
|
|
19019
|
+
"name": "LocalStorageStatePersistence",
|
|
19020
|
+
"declaration": {
|
|
19021
|
+
"name": "LocalStorageStatePersistence",
|
|
19022
|
+
"module": "src/state-persistence/local-state.ts"
|
|
19023
|
+
}
|
|
19024
|
+
}
|
|
19025
|
+
]
|
|
19026
|
+
},
|
|
19027
|
+
{
|
|
19028
|
+
"kind": "javascript-module",
|
|
19029
|
+
"path": "src/state-persistence/state-persistence.ts",
|
|
19030
|
+
"declarations": [],
|
|
19031
|
+
"exports": []
|
|
19032
|
+
},
|
|
19033
|
+
{
|
|
19034
|
+
"kind": "javascript-module",
|
|
19035
|
+
"path": "src/status-bar-components/index.ts",
|
|
19036
|
+
"declarations": [],
|
|
19037
|
+
"exports": [
|
|
19038
|
+
{
|
|
19039
|
+
"kind": "js",
|
|
19040
|
+
"name": "*",
|
|
19041
|
+
"declaration": {
|
|
19042
|
+
"name": "*",
|
|
19043
|
+
"package": "./load-more.status-bar"
|
|
19044
|
+
}
|
|
19045
|
+
},
|
|
19046
|
+
{
|
|
19047
|
+
"kind": "js",
|
|
19048
|
+
"name": "*",
|
|
19049
|
+
"declaration": {
|
|
19050
|
+
"name": "*",
|
|
19051
|
+
"package": "./pagination.status-bar"
|
|
19052
|
+
}
|
|
19053
|
+
},
|
|
19054
|
+
{
|
|
19055
|
+
"kind": "js",
|
|
19056
|
+
"name": "*",
|
|
19057
|
+
"declaration": {
|
|
19058
|
+
"name": "*",
|
|
19059
|
+
"package": "./label-value.status-bar"
|
|
19060
|
+
}
|
|
19061
|
+
},
|
|
19062
|
+
{
|
|
19063
|
+
"kind": "js",
|
|
19064
|
+
"name": "*",
|
|
19065
|
+
"declaration": {
|
|
19066
|
+
"name": "*",
|
|
19067
|
+
"package": "./reload.status-bar"
|
|
19068
|
+
}
|
|
19069
|
+
},
|
|
19070
|
+
{
|
|
19071
|
+
"kind": "js",
|
|
19072
|
+
"name": "*",
|
|
19073
|
+
"declaration": {
|
|
19074
|
+
"name": "*",
|
|
19075
|
+
"package": "./row-count.status-bar"
|
|
19076
|
+
}
|
|
19077
|
+
}
|
|
19078
|
+
]
|
|
19079
|
+
},
|
|
19080
|
+
{
|
|
19081
|
+
"kind": "javascript-module",
|
|
19082
|
+
"path": "src/status-bar-components/label-value.status-bar.ts",
|
|
19083
|
+
"declarations": [
|
|
19084
|
+
{
|
|
19085
|
+
"kind": "class",
|
|
19086
|
+
"description": "Label Value Status Bar Component",
|
|
19087
|
+
"name": "LabelValueStatusBarComponent",
|
|
19088
|
+
"members": [
|
|
18849
19089
|
{
|
|
18850
19090
|
"kind": "field",
|
|
18851
|
-
"name": "
|
|
19091
|
+
"name": "element",
|
|
18852
19092
|
"type": {
|
|
18853
|
-
"text": "
|
|
19093
|
+
"text": "HTMLElement"
|
|
18854
19094
|
},
|
|
18855
|
-
"privacy": "private"
|
|
18856
|
-
"default": "false"
|
|
19095
|
+
"privacy": "private"
|
|
18857
19096
|
},
|
|
18858
19097
|
{
|
|
18859
19098
|
"kind": "field",
|
|
18860
|
-
"name": "
|
|
19099
|
+
"name": "labelElement",
|
|
18861
19100
|
"type": {
|
|
18862
|
-
"text": "
|
|
19101
|
+
"text": "HTMLElement"
|
|
18863
19102
|
},
|
|
18864
19103
|
"privacy": "private"
|
|
18865
19104
|
},
|
|
18866
19105
|
{
|
|
18867
19106
|
"kind": "field",
|
|
18868
|
-
"name": "
|
|
19107
|
+
"name": "valueElement",
|
|
18869
19108
|
"type": {
|
|
18870
|
-
"text": "
|
|
19109
|
+
"text": "HTMLElement"
|
|
18871
19110
|
},
|
|
18872
19111
|
"privacy": "private"
|
|
18873
19112
|
},
|
|
18874
19113
|
{
|
|
18875
19114
|
"kind": "field",
|
|
18876
|
-
"name": "
|
|
19115
|
+
"name": "currentParams",
|
|
18877
19116
|
"type": {
|
|
18878
|
-
"text": "
|
|
19117
|
+
"text": "LabelValueStatusBarParams"
|
|
18879
19118
|
},
|
|
18880
19119
|
"privacy": "private"
|
|
18881
19120
|
},
|
|
@@ -18893,18 +19132,7 @@
|
|
|
18893
19132
|
},
|
|
18894
19133
|
{
|
|
18895
19134
|
"kind": "method",
|
|
18896
|
-
"name": "
|
|
18897
|
-
"privacy": "private"
|
|
18898
|
-
},
|
|
18899
|
-
{
|
|
18900
|
-
"kind": "method",
|
|
18901
|
-
"name": "createRefreshIcon",
|
|
18902
|
-
"privacy": "private"
|
|
18903
|
-
},
|
|
18904
|
-
{
|
|
18905
|
-
"kind": "method",
|
|
18906
|
-
"name": "showReloading",
|
|
18907
|
-
"privacy": "private",
|
|
19135
|
+
"name": "updateParams",
|
|
18908
19136
|
"return": {
|
|
18909
19137
|
"type": {
|
|
18910
19138
|
"text": "void"
|
|
@@ -18912,26 +19140,22 @@
|
|
|
18912
19140
|
},
|
|
18913
19141
|
"parameters": [
|
|
18914
19142
|
{
|
|
18915
|
-
"name": "
|
|
19143
|
+
"name": "params",
|
|
18916
19144
|
"type": {
|
|
18917
|
-
"text": "
|
|
19145
|
+
"text": "Partial<LabelValueStatusBarParams>"
|
|
18918
19146
|
}
|
|
18919
19147
|
}
|
|
18920
|
-
]
|
|
18921
|
-
"description": "Show or hide the reloading state"
|
|
19148
|
+
]
|
|
18922
19149
|
},
|
|
18923
19150
|
{
|
|
18924
19151
|
"kind": "method",
|
|
18925
|
-
"name": "
|
|
18926
|
-
"privacy": "
|
|
18927
|
-
"
|
|
18928
|
-
{
|
|
18929
|
-
"
|
|
18930
|
-
"type": {
|
|
18931
|
-
"text": "ReloadStatusBarParams"
|
|
18932
|
-
}
|
|
19152
|
+
"name": "updateDisplay",
|
|
19153
|
+
"privacy": "private",
|
|
19154
|
+
"return": {
|
|
19155
|
+
"type": {
|
|
19156
|
+
"text": "void"
|
|
18933
19157
|
}
|
|
18934
|
-
|
|
19158
|
+
}
|
|
18935
19159
|
},
|
|
18936
19160
|
{
|
|
18937
19161
|
"kind": "method",
|
|
@@ -18952,22 +19176,22 @@
|
|
|
18952
19176
|
"exports": [
|
|
18953
19177
|
{
|
|
18954
19178
|
"kind": "js",
|
|
18955
|
-
"name": "
|
|
19179
|
+
"name": "LabelValueStatusBarComponent",
|
|
18956
19180
|
"declaration": {
|
|
18957
|
-
"name": "
|
|
18958
|
-
"module": "src/status-bar-components/
|
|
19181
|
+
"name": "LabelValueStatusBarComponent",
|
|
19182
|
+
"module": "src/status-bar-components/label-value.status-bar.ts"
|
|
18959
19183
|
}
|
|
18960
19184
|
}
|
|
18961
19185
|
]
|
|
18962
19186
|
},
|
|
18963
19187
|
{
|
|
18964
19188
|
"kind": "javascript-module",
|
|
18965
|
-
"path": "src/status-bar-components/
|
|
19189
|
+
"path": "src/status-bar-components/load-more.status-bar.ts",
|
|
18966
19190
|
"declarations": [
|
|
18967
19191
|
{
|
|
18968
19192
|
"kind": "class",
|
|
18969
|
-
"description": "
|
|
18970
|
-
"name": "
|
|
19193
|
+
"description": "A status bar component that shows a \"Load More\" button when more rows are available",
|
|
19194
|
+
"name": "LoadMoreStatusBarComponent",
|
|
18971
19195
|
"members": [
|
|
18972
19196
|
{
|
|
18973
19197
|
"kind": "field",
|
|
@@ -18979,15 +19203,15 @@
|
|
|
18979
19203
|
},
|
|
18980
19204
|
{
|
|
18981
19205
|
"kind": "field",
|
|
18982
|
-
"name": "
|
|
19206
|
+
"name": "loadMoreButton",
|
|
18983
19207
|
"type": {
|
|
18984
|
-
"text": "
|
|
19208
|
+
"text": "HTMLElement"
|
|
18985
19209
|
},
|
|
18986
19210
|
"privacy": "private"
|
|
18987
19211
|
},
|
|
18988
19212
|
{
|
|
18989
19213
|
"kind": "field",
|
|
18990
|
-
"name": "
|
|
19214
|
+
"name": "progressRing",
|
|
18991
19215
|
"type": {
|
|
18992
19216
|
"text": "HTMLElement"
|
|
18993
19217
|
},
|
|
@@ -18995,9 +19219,60 @@
|
|
|
18995
19219
|
},
|
|
18996
19220
|
{
|
|
18997
19221
|
"kind": "field",
|
|
18998
|
-
"name": "
|
|
19222
|
+
"name": "buttonLabel",
|
|
18999
19223
|
"type": {
|
|
19000
|
-
"text": "
|
|
19224
|
+
"text": "string"
|
|
19225
|
+
},
|
|
19226
|
+
"privacy": "private",
|
|
19227
|
+
"default": "'Load More'"
|
|
19228
|
+
},
|
|
19229
|
+
{
|
|
19230
|
+
"kind": "field",
|
|
19231
|
+
"name": "params",
|
|
19232
|
+
"type": {
|
|
19233
|
+
"text": "LoadMoreStatusBarParams"
|
|
19234
|
+
},
|
|
19235
|
+
"privacy": "private"
|
|
19236
|
+
},
|
|
19237
|
+
{
|
|
19238
|
+
"kind": "field",
|
|
19239
|
+
"name": "designSystemPrefix",
|
|
19240
|
+
"type": {
|
|
19241
|
+
"text": "string"
|
|
19242
|
+
},
|
|
19243
|
+
"privacy": "private"
|
|
19244
|
+
},
|
|
19245
|
+
{
|
|
19246
|
+
"kind": "field",
|
|
19247
|
+
"name": "isLoading",
|
|
19248
|
+
"type": {
|
|
19249
|
+
"text": "boolean"
|
|
19250
|
+
},
|
|
19251
|
+
"privacy": "private",
|
|
19252
|
+
"default": "false"
|
|
19253
|
+
},
|
|
19254
|
+
{
|
|
19255
|
+
"kind": "field",
|
|
19256
|
+
"name": "isLeftAligned",
|
|
19257
|
+
"type": {
|
|
19258
|
+
"text": "boolean"
|
|
19259
|
+
},
|
|
19260
|
+
"privacy": "private",
|
|
19261
|
+
"default": "false"
|
|
19262
|
+
},
|
|
19263
|
+
{
|
|
19264
|
+
"kind": "field",
|
|
19265
|
+
"name": "gridApi",
|
|
19266
|
+
"type": {
|
|
19267
|
+
"text": "any"
|
|
19268
|
+
},
|
|
19269
|
+
"privacy": "private"
|
|
19270
|
+
},
|
|
19271
|
+
{
|
|
19272
|
+
"kind": "field",
|
|
19273
|
+
"name": "clickHandler",
|
|
19274
|
+
"type": {
|
|
19275
|
+
"text": "(event: MouseEvent) => void"
|
|
19001
19276
|
},
|
|
19002
19277
|
"privacy": "private"
|
|
19003
19278
|
},
|
|
@@ -19015,13 +19290,61 @@
|
|
|
19015
19290
|
},
|
|
19016
19291
|
{
|
|
19017
19292
|
"kind": "method",
|
|
19018
|
-
"name": "
|
|
19293
|
+
"name": "createProgressRing",
|
|
19294
|
+
"privacy": "private"
|
|
19295
|
+
},
|
|
19296
|
+
{
|
|
19297
|
+
"kind": "method",
|
|
19298
|
+
"name": "createLoadMoreButton",
|
|
19299
|
+
"privacy": "private"
|
|
19300
|
+
},
|
|
19301
|
+
{
|
|
19302
|
+
"kind": "method",
|
|
19303
|
+
"name": "updateAriaLabel",
|
|
19019
19304
|
"privacy": "private",
|
|
19020
19305
|
"return": {
|
|
19021
19306
|
"type": {
|
|
19022
19307
|
"text": "void"
|
|
19023
19308
|
}
|
|
19024
|
-
}
|
|
19309
|
+
},
|
|
19310
|
+
"description": "Update the aria-label based on current state and tooltip"
|
|
19311
|
+
},
|
|
19312
|
+
{
|
|
19313
|
+
"kind": "method",
|
|
19314
|
+
"name": "showLoading",
|
|
19315
|
+
"privacy": "private",
|
|
19316
|
+
"return": {
|
|
19317
|
+
"type": {
|
|
19318
|
+
"text": "void"
|
|
19319
|
+
}
|
|
19320
|
+
},
|
|
19321
|
+
"parameters": [
|
|
19322
|
+
{
|
|
19323
|
+
"name": "loading",
|
|
19324
|
+
"type": {
|
|
19325
|
+
"text": "boolean"
|
|
19326
|
+
}
|
|
19327
|
+
}
|
|
19328
|
+
],
|
|
19329
|
+
"description": "Show or hide the loading state"
|
|
19330
|
+
},
|
|
19331
|
+
{
|
|
19332
|
+
"kind": "method",
|
|
19333
|
+
"name": "updateButtonVisibility",
|
|
19334
|
+
"privacy": "public"
|
|
19335
|
+
},
|
|
19336
|
+
{
|
|
19337
|
+
"kind": "method",
|
|
19338
|
+
"name": "updateParams",
|
|
19339
|
+
"privacy": "public",
|
|
19340
|
+
"parameters": [
|
|
19341
|
+
{
|
|
19342
|
+
"name": "params",
|
|
19343
|
+
"type": {
|
|
19344
|
+
"text": "LoadMoreStatusBarParams"
|
|
19345
|
+
}
|
|
19346
|
+
}
|
|
19347
|
+
]
|
|
19025
19348
|
},
|
|
19026
19349
|
{
|
|
19027
19350
|
"kind": "method",
|
|
@@ -19042,234 +19365,519 @@
|
|
|
19042
19365
|
"exports": [
|
|
19043
19366
|
{
|
|
19044
19367
|
"kind": "js",
|
|
19045
|
-
"name": "
|
|
19046
|
-
"declaration": {
|
|
19047
|
-
"name": "RowCountStatusBarComponent",
|
|
19048
|
-
"module": "src/status-bar-components/row-count.status-bar.ts"
|
|
19049
|
-
}
|
|
19050
|
-
}
|
|
19051
|
-
]
|
|
19052
|
-
},
|
|
19053
|
-
{
|
|
19054
|
-
"kind": "javascript-module",
|
|
19055
|
-
"path": "src/style/colors.ts",
|
|
19056
|
-
"declarations": [],
|
|
19057
|
-
"exports": []
|
|
19058
|
-
},
|
|
19059
|
-
{
|
|
19060
|
-
"kind": "javascript-module",
|
|
19061
|
-
"path": "src/style/index.ts",
|
|
19062
|
-
"declarations": [],
|
|
19063
|
-
"exports": [
|
|
19064
|
-
{
|
|
19065
|
-
"kind": "js",
|
|
19066
|
-
"name": "*",
|
|
19067
|
-
"declaration": {
|
|
19068
|
-
"name": "*",
|
|
19069
|
-
"package": "./colors"
|
|
19070
|
-
}
|
|
19071
|
-
},
|
|
19072
|
-
{
|
|
19073
|
-
"kind": "js",
|
|
19074
|
-
"name": "*",
|
|
19075
|
-
"declaration": {
|
|
19076
|
-
"name": "*",
|
|
19077
|
-
"package": "./tokens"
|
|
19078
|
-
}
|
|
19079
|
-
}
|
|
19080
|
-
]
|
|
19081
|
-
},
|
|
19082
|
-
{
|
|
19083
|
-
"kind": "javascript-module",
|
|
19084
|
-
"path": "src/style/tokens.ts",
|
|
19085
|
-
"declarations": [],
|
|
19086
|
-
"exports": []
|
|
19087
|
-
},
|
|
19088
|
-
{
|
|
19089
|
-
"kind": "javascript-module",
|
|
19090
|
-
"path": "src/tooltips/error-tooltip.ts",
|
|
19091
|
-
"declarations": [],
|
|
19092
|
-
"exports": []
|
|
19093
|
-
},
|
|
19094
|
-
{
|
|
19095
|
-
"kind": "javascript-module",
|
|
19096
|
-
"path": "src/tooltips/index.ts",
|
|
19097
|
-
"declarations": [],
|
|
19098
|
-
"exports": [
|
|
19099
|
-
{
|
|
19100
|
-
"kind": "js",
|
|
19101
|
-
"name": "*",
|
|
19368
|
+
"name": "LoadMoreStatusBarComponent",
|
|
19102
19369
|
"declaration": {
|
|
19103
|
-
"name": "
|
|
19104
|
-
"
|
|
19370
|
+
"name": "LoadMoreStatusBarComponent",
|
|
19371
|
+
"module": "src/status-bar-components/load-more.status-bar.ts"
|
|
19105
19372
|
}
|
|
19106
19373
|
}
|
|
19107
19374
|
]
|
|
19108
19375
|
},
|
|
19109
19376
|
{
|
|
19110
19377
|
"kind": "javascript-module",
|
|
19111
|
-
"path": "src/
|
|
19378
|
+
"path": "src/status-bar-components/pagination.status-bar.ts",
|
|
19112
19379
|
"declarations": [
|
|
19113
19380
|
{
|
|
19114
|
-
"kind": "
|
|
19115
|
-
"
|
|
19116
|
-
"
|
|
19117
|
-
|
|
19118
|
-
"text": ""
|
|
19119
|
-
}
|
|
19120
|
-
},
|
|
19121
|
-
"parameters": [
|
|
19381
|
+
"kind": "class",
|
|
19382
|
+
"description": "Pagination Status Bar Component for AG Grid\nDisplays pagination controls and information about current page and total rows",
|
|
19383
|
+
"name": "PaginationStatusBarComponent",
|
|
19384
|
+
"members": [
|
|
19122
19385
|
{
|
|
19123
|
-
"
|
|
19386
|
+
"kind": "field",
|
|
19387
|
+
"name": "element",
|
|
19124
19388
|
"type": {
|
|
19125
|
-
"text": "
|
|
19389
|
+
"text": "HTMLElement"
|
|
19126
19390
|
},
|
|
19127
|
-
"
|
|
19128
|
-
}
|
|
19129
|
-
],
|
|
19130
|
-
"description": "Converts a ColDef to a ColumnState",
|
|
19131
|
-
"privacy": "public"
|
|
19132
|
-
},
|
|
19133
|
-
{
|
|
19134
|
-
"kind": "function",
|
|
19135
|
-
"name": "sanitizeColumnState",
|
|
19136
|
-
"return": {
|
|
19137
|
-
"type": {
|
|
19138
|
-
"text": "ColumnState[]"
|
|
19139
|
-
}
|
|
19140
|
-
},
|
|
19141
|
-
"parameters": [
|
|
19391
|
+
"privacy": "private"
|
|
19392
|
+
},
|
|
19142
19393
|
{
|
|
19143
|
-
"
|
|
19144
|
-
"
|
|
19394
|
+
"kind": "field",
|
|
19395
|
+
"name": "api",
|
|
19145
19396
|
"type": {
|
|
19146
|
-
"text": "
|
|
19147
|
-
}
|
|
19148
|
-
|
|
19149
|
-
|
|
19150
|
-
"description": "Sanitizes persisted column state by removing unsupported keys.",
|
|
19151
|
-
"privacy": "public"
|
|
19152
|
-
},
|
|
19153
|
-
{
|
|
19154
|
-
"kind": "function",
|
|
19155
|
-
"name": "convertColDefsToColumnStates",
|
|
19156
|
-
"return": {
|
|
19157
|
-
"type": {
|
|
19158
|
-
"text": ""
|
|
19159
|
-
}
|
|
19160
|
-
},
|
|
19161
|
-
"parameters": [
|
|
19397
|
+
"text": "GridApi"
|
|
19398
|
+
},
|
|
19399
|
+
"privacy": "private"
|
|
19400
|
+
},
|
|
19162
19401
|
{
|
|
19163
|
-
"
|
|
19402
|
+
"kind": "field",
|
|
19403
|
+
"name": "paginationPanel",
|
|
19164
19404
|
"type": {
|
|
19165
|
-
"text": "
|
|
19405
|
+
"text": "HTMLElement"
|
|
19166
19406
|
},
|
|
19167
|
-
"
|
|
19168
|
-
}
|
|
19169
|
-
],
|
|
19170
|
-
"description": "Converts an array of ColDef to an array of ColumnState",
|
|
19171
|
-
"privacy": "public"
|
|
19172
|
-
},
|
|
19173
|
-
{
|
|
19174
|
-
"kind": "function",
|
|
19175
|
-
"name": "mergeAndDedupColDefWithColumnState",
|
|
19176
|
-
"return": {
|
|
19177
|
-
"type": {
|
|
19178
|
-
"text": "(ColDef | ColGroupDef)[]"
|
|
19179
|
-
}
|
|
19180
|
-
},
|
|
19181
|
-
"parameters": [
|
|
19407
|
+
"privacy": "private"
|
|
19408
|
+
},
|
|
19182
19409
|
{
|
|
19183
|
-
"
|
|
19410
|
+
"kind": "field",
|
|
19411
|
+
"name": "paginationSummaryPanel",
|
|
19184
19412
|
"type": {
|
|
19185
|
-
"text": "
|
|
19186
|
-
}
|
|
19413
|
+
"text": "HTMLElement"
|
|
19414
|
+
},
|
|
19415
|
+
"privacy": "private"
|
|
19187
19416
|
},
|
|
19188
19417
|
{
|
|
19189
|
-
"
|
|
19418
|
+
"kind": "field",
|
|
19419
|
+
"name": "firstPageButton",
|
|
19190
19420
|
"type": {
|
|
19191
|
-
"text": "
|
|
19421
|
+
"text": "HTMLElement"
|
|
19422
|
+
},
|
|
19423
|
+
"privacy": "private"
|
|
19424
|
+
},
|
|
19425
|
+
{
|
|
19426
|
+
"kind": "field",
|
|
19427
|
+
"name": "prevPageButton",
|
|
19428
|
+
"type": {
|
|
19429
|
+
"text": "HTMLElement"
|
|
19430
|
+
},
|
|
19431
|
+
"privacy": "private"
|
|
19432
|
+
},
|
|
19433
|
+
{
|
|
19434
|
+
"kind": "field",
|
|
19435
|
+
"name": "descriptionPanel",
|
|
19436
|
+
"type": {
|
|
19437
|
+
"text": "HTMLElement"
|
|
19438
|
+
},
|
|
19439
|
+
"privacy": "private"
|
|
19440
|
+
},
|
|
19441
|
+
{
|
|
19442
|
+
"kind": "field",
|
|
19443
|
+
"name": "pageStartDisplay",
|
|
19444
|
+
"type": {
|
|
19445
|
+
"text": "HTMLElement"
|
|
19446
|
+
},
|
|
19447
|
+
"privacy": "private"
|
|
19448
|
+
},
|
|
19449
|
+
{
|
|
19450
|
+
"kind": "field",
|
|
19451
|
+
"name": "pageNumberDisplay",
|
|
19452
|
+
"type": {
|
|
19453
|
+
"text": "HTMLElement"
|
|
19454
|
+
},
|
|
19455
|
+
"privacy": "private"
|
|
19456
|
+
},
|
|
19457
|
+
{
|
|
19458
|
+
"kind": "field",
|
|
19459
|
+
"name": "pageOfDisplay",
|
|
19460
|
+
"type": {
|
|
19461
|
+
"text": "HTMLElement"
|
|
19462
|
+
},
|
|
19463
|
+
"privacy": "private"
|
|
19464
|
+
},
|
|
19465
|
+
{
|
|
19466
|
+
"kind": "field",
|
|
19467
|
+
"name": "pageNumberTotalDisplay",
|
|
19468
|
+
"type": {
|
|
19469
|
+
"text": "HTMLElement"
|
|
19470
|
+
},
|
|
19471
|
+
"privacy": "private"
|
|
19472
|
+
},
|
|
19473
|
+
{
|
|
19474
|
+
"kind": "field",
|
|
19475
|
+
"name": "nextPageButton",
|
|
19476
|
+
"type": {
|
|
19477
|
+
"text": "HTMLElement"
|
|
19478
|
+
},
|
|
19479
|
+
"privacy": "private"
|
|
19480
|
+
},
|
|
19481
|
+
{
|
|
19482
|
+
"kind": "field",
|
|
19483
|
+
"name": "lastPageButton",
|
|
19484
|
+
"type": {
|
|
19485
|
+
"text": "HTMLElement"
|
|
19486
|
+
},
|
|
19487
|
+
"privacy": "private"
|
|
19488
|
+
},
|
|
19489
|
+
{
|
|
19490
|
+
"kind": "field",
|
|
19491
|
+
"name": "paginationChangedHandler",
|
|
19492
|
+
"type": {
|
|
19493
|
+
"text": "() => void"
|
|
19494
|
+
},
|
|
19495
|
+
"privacy": "private"
|
|
19496
|
+
},
|
|
19497
|
+
{
|
|
19498
|
+
"kind": "method",
|
|
19499
|
+
"name": "init",
|
|
19500
|
+
"parameters": [
|
|
19501
|
+
{
|
|
19502
|
+
"name": "params",
|
|
19503
|
+
"type": {
|
|
19504
|
+
"text": "IStatusPanelParams"
|
|
19505
|
+
}
|
|
19506
|
+
}
|
|
19507
|
+
]
|
|
19508
|
+
},
|
|
19509
|
+
{
|
|
19510
|
+
"kind": "method",
|
|
19511
|
+
"name": "getGui"
|
|
19512
|
+
},
|
|
19513
|
+
{
|
|
19514
|
+
"kind": "method",
|
|
19515
|
+
"name": "createPaginationPanel",
|
|
19516
|
+
"privacy": "private"
|
|
19517
|
+
},
|
|
19518
|
+
{
|
|
19519
|
+
"kind": "method",
|
|
19520
|
+
"name": "addPaginationEventListeners",
|
|
19521
|
+
"privacy": "private",
|
|
19522
|
+
"return": {
|
|
19523
|
+
"type": {
|
|
19524
|
+
"text": "void"
|
|
19525
|
+
}
|
|
19192
19526
|
}
|
|
19527
|
+
},
|
|
19528
|
+
{
|
|
19529
|
+
"kind": "method",
|
|
19530
|
+
"name": "createPaginationButton",
|
|
19531
|
+
"privacy": "private",
|
|
19532
|
+
"return": {
|
|
19533
|
+
"type": {
|
|
19534
|
+
"text": "HTMLElement"
|
|
19535
|
+
}
|
|
19536
|
+
},
|
|
19537
|
+
"parameters": [
|
|
19538
|
+
{
|
|
19539
|
+
"name": "ref",
|
|
19540
|
+
"type": {
|
|
19541
|
+
"text": "string"
|
|
19542
|
+
}
|
|
19543
|
+
},
|
|
19544
|
+
{
|
|
19545
|
+
"name": "className",
|
|
19546
|
+
"type": {
|
|
19547
|
+
"text": "string"
|
|
19548
|
+
}
|
|
19549
|
+
},
|
|
19550
|
+
{
|
|
19551
|
+
"name": "ariaLabel",
|
|
19552
|
+
"type": {
|
|
19553
|
+
"text": "string"
|
|
19554
|
+
}
|
|
19555
|
+
},
|
|
19556
|
+
{
|
|
19557
|
+
"name": "disabled",
|
|
19558
|
+
"type": {
|
|
19559
|
+
"text": "boolean"
|
|
19560
|
+
}
|
|
19561
|
+
}
|
|
19562
|
+
]
|
|
19563
|
+
},
|
|
19564
|
+
{
|
|
19565
|
+
"kind": "method",
|
|
19566
|
+
"name": "goToPage",
|
|
19567
|
+
"privacy": "private",
|
|
19568
|
+
"parameters": [
|
|
19569
|
+
{
|
|
19570
|
+
"name": "page",
|
|
19571
|
+
"type": {
|
|
19572
|
+
"text": "'first' | 'previous' | 'next' | 'last'"
|
|
19573
|
+
}
|
|
19574
|
+
}
|
|
19575
|
+
]
|
|
19576
|
+
},
|
|
19577
|
+
{
|
|
19578
|
+
"kind": "method",
|
|
19579
|
+
"name": "updateDisplay",
|
|
19580
|
+
"privacy": "private"
|
|
19581
|
+
},
|
|
19582
|
+
{
|
|
19583
|
+
"kind": "method",
|
|
19584
|
+
"name": "updateButtonState",
|
|
19585
|
+
"privacy": "private",
|
|
19586
|
+
"parameters": [
|
|
19587
|
+
{
|
|
19588
|
+
"name": "button",
|
|
19589
|
+
"type": {
|
|
19590
|
+
"text": "HTMLElement"
|
|
19591
|
+
}
|
|
19592
|
+
},
|
|
19593
|
+
{
|
|
19594
|
+
"name": "disabled",
|
|
19595
|
+
"type": {
|
|
19596
|
+
"text": "boolean"
|
|
19597
|
+
}
|
|
19598
|
+
}
|
|
19599
|
+
]
|
|
19600
|
+
},
|
|
19601
|
+
{
|
|
19602
|
+
"kind": "method",
|
|
19603
|
+
"name": "destroy"
|
|
19193
19604
|
}
|
|
19194
|
-
]
|
|
19195
|
-
"description": "Merges two arrays, one of `ColDef` and one of `ColumnState`, and deduplicates them.",
|
|
19196
|
-
"privacy": "public"
|
|
19605
|
+
]
|
|
19197
19606
|
}
|
|
19198
19607
|
],
|
|
19199
19608
|
"exports": [
|
|
19200
19609
|
{
|
|
19201
19610
|
"kind": "js",
|
|
19202
|
-
"name": "
|
|
19203
|
-
"declaration": {
|
|
19204
|
-
"name": "convertColDefToColumnState",
|
|
19205
|
-
"module": "src/utils/array.ts"
|
|
19206
|
-
}
|
|
19207
|
-
},
|
|
19208
|
-
{
|
|
19209
|
-
"kind": "js",
|
|
19210
|
-
"name": "sanitizeColumnState",
|
|
19611
|
+
"name": "PaginationStatusBarComponent",
|
|
19211
19612
|
"declaration": {
|
|
19212
|
-
"name": "
|
|
19213
|
-
"module": "src/
|
|
19613
|
+
"name": "PaginationStatusBarComponent",
|
|
19614
|
+
"module": "src/status-bar-components/pagination.status-bar.ts"
|
|
19214
19615
|
}
|
|
19215
|
-
}
|
|
19616
|
+
}
|
|
19617
|
+
]
|
|
19618
|
+
},
|
|
19619
|
+
{
|
|
19620
|
+
"kind": "javascript-module",
|
|
19621
|
+
"path": "src/status-bar-components/reload.status-bar.ts",
|
|
19622
|
+
"declarations": [
|
|
19216
19623
|
{
|
|
19217
|
-
"kind": "
|
|
19218
|
-
"
|
|
19219
|
-
"
|
|
19220
|
-
|
|
19221
|
-
|
|
19222
|
-
|
|
19223
|
-
|
|
19624
|
+
"kind": "class",
|
|
19625
|
+
"description": "A status bar component that shows a refresh icon to reload the grid data",
|
|
19626
|
+
"name": "ReloadStatusBarComponent",
|
|
19627
|
+
"members": [
|
|
19628
|
+
{
|
|
19629
|
+
"kind": "field",
|
|
19630
|
+
"name": "element",
|
|
19631
|
+
"type": {
|
|
19632
|
+
"text": "HTMLElement"
|
|
19633
|
+
},
|
|
19634
|
+
"privacy": "private"
|
|
19635
|
+
},
|
|
19636
|
+
{
|
|
19637
|
+
"kind": "field",
|
|
19638
|
+
"name": "refreshIcon",
|
|
19639
|
+
"type": {
|
|
19640
|
+
"text": "HTMLElement"
|
|
19641
|
+
},
|
|
19642
|
+
"privacy": "private"
|
|
19643
|
+
},
|
|
19644
|
+
{
|
|
19645
|
+
"kind": "field",
|
|
19646
|
+
"name": "progressRing",
|
|
19647
|
+
"type": {
|
|
19648
|
+
"text": "HTMLElement"
|
|
19649
|
+
},
|
|
19650
|
+
"privacy": "private"
|
|
19651
|
+
},
|
|
19652
|
+
{
|
|
19653
|
+
"kind": "field",
|
|
19654
|
+
"name": "params",
|
|
19655
|
+
"type": {
|
|
19656
|
+
"text": "ReloadStatusBarParams"
|
|
19657
|
+
},
|
|
19658
|
+
"privacy": "private"
|
|
19659
|
+
},
|
|
19660
|
+
{
|
|
19661
|
+
"kind": "field",
|
|
19662
|
+
"name": "designSystemPrefix",
|
|
19663
|
+
"type": {
|
|
19664
|
+
"text": "string"
|
|
19665
|
+
},
|
|
19666
|
+
"privacy": "private"
|
|
19667
|
+
},
|
|
19668
|
+
{
|
|
19669
|
+
"kind": "field",
|
|
19670
|
+
"name": "isReloading",
|
|
19671
|
+
"type": {
|
|
19672
|
+
"text": "boolean"
|
|
19673
|
+
},
|
|
19674
|
+
"privacy": "private",
|
|
19675
|
+
"default": "false"
|
|
19676
|
+
},
|
|
19677
|
+
{
|
|
19678
|
+
"kind": "field",
|
|
19679
|
+
"name": "mouseoverHandler",
|
|
19680
|
+
"type": {
|
|
19681
|
+
"text": "(event: MouseEvent) => void"
|
|
19682
|
+
},
|
|
19683
|
+
"privacy": "private"
|
|
19684
|
+
},
|
|
19685
|
+
{
|
|
19686
|
+
"kind": "field",
|
|
19687
|
+
"name": "mouseoutHandler",
|
|
19688
|
+
"type": {
|
|
19689
|
+
"text": "(event: MouseEvent) => void"
|
|
19690
|
+
},
|
|
19691
|
+
"privacy": "private"
|
|
19692
|
+
},
|
|
19693
|
+
{
|
|
19694
|
+
"kind": "field",
|
|
19695
|
+
"name": "clickHandler",
|
|
19696
|
+
"type": {
|
|
19697
|
+
"text": "(event: MouseEvent) => void"
|
|
19698
|
+
},
|
|
19699
|
+
"privacy": "private"
|
|
19700
|
+
},
|
|
19701
|
+
{
|
|
19702
|
+
"kind": "method",
|
|
19703
|
+
"name": "init",
|
|
19704
|
+
"parameters": [
|
|
19705
|
+
{
|
|
19706
|
+
"name": "params",
|
|
19707
|
+
"type": {
|
|
19708
|
+
"text": "IStatusPanelParams"
|
|
19709
|
+
}
|
|
19710
|
+
}
|
|
19711
|
+
]
|
|
19712
|
+
},
|
|
19713
|
+
{
|
|
19714
|
+
"kind": "method",
|
|
19715
|
+
"name": "createProgressRing",
|
|
19716
|
+
"privacy": "private"
|
|
19717
|
+
},
|
|
19718
|
+
{
|
|
19719
|
+
"kind": "method",
|
|
19720
|
+
"name": "createRefreshIcon",
|
|
19721
|
+
"privacy": "private"
|
|
19722
|
+
},
|
|
19723
|
+
{
|
|
19724
|
+
"kind": "method",
|
|
19725
|
+
"name": "showReloading",
|
|
19726
|
+
"privacy": "private",
|
|
19727
|
+
"return": {
|
|
19728
|
+
"type": {
|
|
19729
|
+
"text": "void"
|
|
19730
|
+
}
|
|
19731
|
+
},
|
|
19732
|
+
"parameters": [
|
|
19733
|
+
{
|
|
19734
|
+
"name": "reloading",
|
|
19735
|
+
"type": {
|
|
19736
|
+
"text": "boolean"
|
|
19737
|
+
}
|
|
19738
|
+
}
|
|
19739
|
+
],
|
|
19740
|
+
"description": "Show or hide the reloading state"
|
|
19741
|
+
},
|
|
19742
|
+
{
|
|
19743
|
+
"kind": "method",
|
|
19744
|
+
"name": "updateParams",
|
|
19745
|
+
"privacy": "public",
|
|
19746
|
+
"parameters": [
|
|
19747
|
+
{
|
|
19748
|
+
"name": "params",
|
|
19749
|
+
"type": {
|
|
19750
|
+
"text": "ReloadStatusBarParams"
|
|
19751
|
+
}
|
|
19752
|
+
}
|
|
19753
|
+
]
|
|
19754
|
+
},
|
|
19755
|
+
{
|
|
19756
|
+
"kind": "method",
|
|
19757
|
+
"name": "getGui",
|
|
19758
|
+
"return": {
|
|
19759
|
+
"type": {
|
|
19760
|
+
"text": "HTMLElement"
|
|
19761
|
+
}
|
|
19762
|
+
}
|
|
19763
|
+
},
|
|
19764
|
+
{
|
|
19765
|
+
"kind": "method",
|
|
19766
|
+
"name": "destroy"
|
|
19767
|
+
}
|
|
19768
|
+
]
|
|
19769
|
+
}
|
|
19770
|
+
],
|
|
19771
|
+
"exports": [
|
|
19224
19772
|
{
|
|
19225
19773
|
"kind": "js",
|
|
19226
|
-
"name": "
|
|
19774
|
+
"name": "ReloadStatusBarComponent",
|
|
19227
19775
|
"declaration": {
|
|
19228
|
-
"name": "
|
|
19229
|
-
"module": "src/
|
|
19776
|
+
"name": "ReloadStatusBarComponent",
|
|
19777
|
+
"module": "src/status-bar-components/reload.status-bar.ts"
|
|
19230
19778
|
}
|
|
19231
19779
|
}
|
|
19232
19780
|
]
|
|
19233
19781
|
},
|
|
19234
19782
|
{
|
|
19235
19783
|
"kind": "javascript-module",
|
|
19236
|
-
"path": "src/
|
|
19784
|
+
"path": "src/status-bar-components/row-count.status-bar.ts",
|
|
19237
19785
|
"declarations": [
|
|
19238
19786
|
{
|
|
19239
|
-
"kind": "
|
|
19240
|
-
"
|
|
19241
|
-
"
|
|
19242
|
-
|
|
19243
|
-
"text": ""
|
|
19244
|
-
}
|
|
19245
|
-
},
|
|
19246
|
-
"parameters": [
|
|
19787
|
+
"kind": "class",
|
|
19788
|
+
"description": "Row Count Status Bar Component for Server-Side Infinite Scroll\nDisplays current row count information for server-side grids without pagination.\nFor pagination scenarios, use PaginationStatusBarComponent instead.",
|
|
19789
|
+
"name": "RowCountStatusBarComponent",
|
|
19790
|
+
"members": [
|
|
19247
19791
|
{
|
|
19248
|
-
"
|
|
19792
|
+
"kind": "field",
|
|
19793
|
+
"name": "element",
|
|
19249
19794
|
"type": {
|
|
19250
|
-
"text": "
|
|
19795
|
+
"text": "HTMLElement"
|
|
19251
19796
|
},
|
|
19252
|
-
"
|
|
19797
|
+
"privacy": "private"
|
|
19798
|
+
},
|
|
19799
|
+
{
|
|
19800
|
+
"kind": "field",
|
|
19801
|
+
"name": "api",
|
|
19802
|
+
"type": {
|
|
19803
|
+
"text": "GridApi"
|
|
19804
|
+
},
|
|
19805
|
+
"privacy": "private"
|
|
19806
|
+
},
|
|
19807
|
+
{
|
|
19808
|
+
"kind": "field",
|
|
19809
|
+
"name": "rowCountDisplay",
|
|
19810
|
+
"type": {
|
|
19811
|
+
"text": "HTMLElement"
|
|
19812
|
+
},
|
|
19813
|
+
"privacy": "private"
|
|
19814
|
+
},
|
|
19815
|
+
{
|
|
19816
|
+
"kind": "field",
|
|
19817
|
+
"name": "modelUpdatedHandler",
|
|
19818
|
+
"type": {
|
|
19819
|
+
"text": "() => void"
|
|
19820
|
+
},
|
|
19821
|
+
"privacy": "private"
|
|
19822
|
+
},
|
|
19823
|
+
{
|
|
19824
|
+
"kind": "method",
|
|
19825
|
+
"name": "init",
|
|
19826
|
+
"parameters": [
|
|
19827
|
+
{
|
|
19828
|
+
"name": "params",
|
|
19829
|
+
"type": {
|
|
19830
|
+
"text": "IStatusPanelParams"
|
|
19831
|
+
}
|
|
19832
|
+
}
|
|
19833
|
+
]
|
|
19834
|
+
},
|
|
19835
|
+
{
|
|
19836
|
+
"kind": "method",
|
|
19837
|
+
"name": "updateDisplay",
|
|
19838
|
+
"privacy": "private",
|
|
19839
|
+
"return": {
|
|
19840
|
+
"type": {
|
|
19841
|
+
"text": "void"
|
|
19842
|
+
}
|
|
19843
|
+
}
|
|
19844
|
+
},
|
|
19845
|
+
{
|
|
19846
|
+
"kind": "method",
|
|
19847
|
+
"name": "getGui",
|
|
19848
|
+
"return": {
|
|
19849
|
+
"type": {
|
|
19850
|
+
"text": "HTMLElement"
|
|
19851
|
+
}
|
|
19852
|
+
}
|
|
19853
|
+
},
|
|
19854
|
+
{
|
|
19855
|
+
"kind": "method",
|
|
19856
|
+
"name": "destroy"
|
|
19253
19857
|
}
|
|
19254
|
-
]
|
|
19255
|
-
"description": "Extracts a user-friendly error message from a given error detail.",
|
|
19256
|
-
"privacy": "public"
|
|
19858
|
+
]
|
|
19257
19859
|
}
|
|
19258
19860
|
],
|
|
19259
19861
|
"exports": [
|
|
19260
19862
|
{
|
|
19261
19863
|
"kind": "js",
|
|
19262
|
-
"name": "
|
|
19864
|
+
"name": "RowCountStatusBarComponent",
|
|
19263
19865
|
"declaration": {
|
|
19264
|
-
"name": "
|
|
19265
|
-
"module": "src/
|
|
19866
|
+
"name": "RowCountStatusBarComponent",
|
|
19867
|
+
"module": "src/status-bar-components/row-count.status-bar.ts"
|
|
19266
19868
|
}
|
|
19267
19869
|
}
|
|
19268
19870
|
]
|
|
19269
19871
|
},
|
|
19270
19872
|
{
|
|
19271
19873
|
"kind": "javascript-module",
|
|
19272
|
-
"path": "src/
|
|
19874
|
+
"path": "src/style/colors.ts",
|
|
19875
|
+
"declarations": [],
|
|
19876
|
+
"exports": []
|
|
19877
|
+
},
|
|
19878
|
+
{
|
|
19879
|
+
"kind": "javascript-module",
|
|
19880
|
+
"path": "src/style/index.ts",
|
|
19273
19881
|
"declarations": [],
|
|
19274
19882
|
"exports": [
|
|
19275
19883
|
{
|
|
@@ -19277,39 +19885,7 @@
|
|
|
19277
19885
|
"name": "*",
|
|
19278
19886
|
"declaration": {
|
|
19279
19887
|
"name": "*",
|
|
19280
|
-
"package": "./
|
|
19281
|
-
}
|
|
19282
|
-
},
|
|
19283
|
-
{
|
|
19284
|
-
"kind": "js",
|
|
19285
|
-
"name": "*",
|
|
19286
|
-
"declaration": {
|
|
19287
|
-
"name": "*",
|
|
19288
|
-
"package": "./error"
|
|
19289
|
-
}
|
|
19290
|
-
},
|
|
19291
|
-
{
|
|
19292
|
-
"kind": "js",
|
|
19293
|
-
"name": "*",
|
|
19294
|
-
"declaration": {
|
|
19295
|
-
"name": "*",
|
|
19296
|
-
"package": "./logger"
|
|
19297
|
-
}
|
|
19298
|
-
},
|
|
19299
|
-
{
|
|
19300
|
-
"kind": "js",
|
|
19301
|
-
"name": "*",
|
|
19302
|
-
"declaration": {
|
|
19303
|
-
"name": "*",
|
|
19304
|
-
"package": "./map"
|
|
19305
|
-
}
|
|
19306
|
-
},
|
|
19307
|
-
{
|
|
19308
|
-
"kind": "js",
|
|
19309
|
-
"name": "*",
|
|
19310
|
-
"declaration": {
|
|
19311
|
-
"name": "*",
|
|
19312
|
-
"package": "./sanitasations"
|
|
19888
|
+
"package": "./colors"
|
|
19313
19889
|
}
|
|
19314
19890
|
},
|
|
19315
19891
|
{
|
|
@@ -19317,40 +19893,45 @@
|
|
|
19317
19893
|
"name": "*",
|
|
19318
19894
|
"declaration": {
|
|
19319
19895
|
"name": "*",
|
|
19320
|
-
"package": "./
|
|
19896
|
+
"package": "./tokens"
|
|
19321
19897
|
}
|
|
19322
19898
|
}
|
|
19323
19899
|
]
|
|
19324
19900
|
},
|
|
19325
19901
|
{
|
|
19326
19902
|
"kind": "javascript-module",
|
|
19327
|
-
"path": "src/
|
|
19328
|
-
"declarations": [
|
|
19329
|
-
|
|
19330
|
-
|
|
19331
|
-
|
|
19332
|
-
|
|
19333
|
-
|
|
19334
|
-
|
|
19335
|
-
]
|
|
19903
|
+
"path": "src/style/tokens.ts",
|
|
19904
|
+
"declarations": [],
|
|
19905
|
+
"exports": []
|
|
19906
|
+
},
|
|
19907
|
+
{
|
|
19908
|
+
"kind": "javascript-module",
|
|
19909
|
+
"path": "src/tooltips/error-tooltip.ts",
|
|
19910
|
+
"declarations": [],
|
|
19911
|
+
"exports": []
|
|
19912
|
+
},
|
|
19913
|
+
{
|
|
19914
|
+
"kind": "javascript-module",
|
|
19915
|
+
"path": "src/tooltips/index.ts",
|
|
19916
|
+
"declarations": [],
|
|
19336
19917
|
"exports": [
|
|
19337
19918
|
{
|
|
19338
19919
|
"kind": "js",
|
|
19339
|
-
"name": "
|
|
19920
|
+
"name": "*",
|
|
19340
19921
|
"declaration": {
|
|
19341
|
-
"name": "
|
|
19342
|
-
"
|
|
19922
|
+
"name": "*",
|
|
19923
|
+
"package": "./error-tooltip"
|
|
19343
19924
|
}
|
|
19344
19925
|
}
|
|
19345
19926
|
]
|
|
19346
19927
|
},
|
|
19347
19928
|
{
|
|
19348
19929
|
"kind": "javascript-module",
|
|
19349
|
-
"path": "src/utils/
|
|
19930
|
+
"path": "src/utils/array.ts",
|
|
19350
19931
|
"declarations": [
|
|
19351
19932
|
{
|
|
19352
19933
|
"kind": "function",
|
|
19353
|
-
"name": "
|
|
19934
|
+
"name": "convertColDefToColumnState",
|
|
19354
19935
|
"return": {
|
|
19355
19936
|
"type": {
|
|
19356
19937
|
"text": ""
|
|
@@ -19358,219 +19939,156 @@
|
|
|
19358
19939
|
},
|
|
19359
19940
|
"parameters": [
|
|
19360
19941
|
{
|
|
19361
|
-
"name": "
|
|
19942
|
+
"name": "colDef",
|
|
19362
19943
|
"type": {
|
|
19363
|
-
"text": "
|
|
19944
|
+
"text": "ColDef"
|
|
19364
19945
|
},
|
|
19365
|
-
"description": "
|
|
19946
|
+
"description": "The column definition to convert"
|
|
19366
19947
|
}
|
|
19367
19948
|
],
|
|
19368
|
-
"description": "
|
|
19949
|
+
"description": "Converts a ColDef to a ColumnState",
|
|
19369
19950
|
"privacy": "public"
|
|
19370
19951
|
},
|
|
19371
19952
|
{
|
|
19372
19953
|
"kind": "function",
|
|
19373
|
-
"name": "
|
|
19954
|
+
"name": "sanitizeColumnState",
|
|
19374
19955
|
"return": {
|
|
19375
19956
|
"type": {
|
|
19376
|
-
"text": ""
|
|
19957
|
+
"text": "ColumnState[]"
|
|
19377
19958
|
}
|
|
19378
19959
|
},
|
|
19379
19960
|
"parameters": [
|
|
19380
19961
|
{
|
|
19381
|
-
"name": "
|
|
19962
|
+
"name": "columnState",
|
|
19963
|
+
"optional": true,
|
|
19382
19964
|
"type": {
|
|
19383
|
-
"text": "
|
|
19384
|
-
}
|
|
19385
|
-
"description": "the map data to have the values extracted from"
|
|
19965
|
+
"text": "ColumnState[] | null"
|
|
19966
|
+
}
|
|
19386
19967
|
}
|
|
19387
19968
|
],
|
|
19388
|
-
"description": "
|
|
19969
|
+
"description": "Sanitizes persisted column state by removing unsupported keys.",
|
|
19389
19970
|
"privacy": "public"
|
|
19390
|
-
}
|
|
19391
|
-
],
|
|
19392
|
-
"exports": [
|
|
19393
|
-
{
|
|
19394
|
-
"kind": "js",
|
|
19395
|
-
"name": "getAvailableIndexes",
|
|
19396
|
-
"declaration": {
|
|
19397
|
-
"name": "getAvailableIndexes",
|
|
19398
|
-
"module": "src/utils/map.ts"
|
|
19399
|
-
}
|
|
19400
19971
|
},
|
|
19401
|
-
{
|
|
19402
|
-
"kind": "js",
|
|
19403
|
-
"name": "getAvailableIndexFields",
|
|
19404
|
-
"declaration": {
|
|
19405
|
-
"name": "getAvailableIndexFields",
|
|
19406
|
-
"module": "src/utils/map.ts"
|
|
19407
|
-
}
|
|
19408
|
-
}
|
|
19409
|
-
]
|
|
19410
|
-
},
|
|
19411
|
-
{
|
|
19412
|
-
"kind": "javascript-module",
|
|
19413
|
-
"path": "src/utils/sanitasations.ts",
|
|
19414
|
-
"declarations": [
|
|
19415
|
-
{
|
|
19416
|
-
"kind": "variable",
|
|
19417
|
-
"name": "csvExportParams",
|
|
19418
|
-
"type": {
|
|
19419
|
-
"text": "CsvExportParams"
|
|
19420
|
-
},
|
|
19421
|
-
"default": "{\n processCellCallback: (params) => {\n if (\n ['+', '=', '-', '@', '\\t', '\\n'].some((character) =>\n String(params.value).startsWith(character),\n )\n ) {\n return `'${params.value}`;\n }\n\n return params.value;\n },\n}",
|
|
19422
|
-
"description": "Allows secure export of CSV https://owasp.org/www-community/attacks/CSV_Injection",
|
|
19423
|
-
"privacy": "public"
|
|
19424
|
-
}
|
|
19425
|
-
],
|
|
19426
|
-
"exports": [
|
|
19427
|
-
{
|
|
19428
|
-
"kind": "js",
|
|
19429
|
-
"name": "csvExportParams",
|
|
19430
|
-
"declaration": {
|
|
19431
|
-
"name": "csvExportParams",
|
|
19432
|
-
"module": "src/utils/sanitasations.ts"
|
|
19433
|
-
}
|
|
19434
|
-
}
|
|
19435
|
-
]
|
|
19436
|
-
},
|
|
19437
|
-
{
|
|
19438
|
-
"kind": "javascript-module",
|
|
19439
|
-
"path": "src/utils/string.ts",
|
|
19440
|
-
"declarations": [
|
|
19441
19972
|
{
|
|
19442
19973
|
"kind": "function",
|
|
19443
|
-
"name": "
|
|
19974
|
+
"name": "convertColDefsToColumnStates",
|
|
19975
|
+
"return": {
|
|
19976
|
+
"type": {
|
|
19977
|
+
"text": ""
|
|
19978
|
+
}
|
|
19979
|
+
},
|
|
19444
19980
|
"parameters": [
|
|
19445
19981
|
{
|
|
19446
|
-
"name": "
|
|
19982
|
+
"name": "colDefs",
|
|
19447
19983
|
"type": {
|
|
19448
|
-
"text": "
|
|
19984
|
+
"text": "ColDef[]"
|
|
19449
19985
|
},
|
|
19450
|
-
"description": "The
|
|
19986
|
+
"description": "The column definitions to convert"
|
|
19451
19987
|
}
|
|
19452
19988
|
],
|
|
19453
|
-
"description": "
|
|
19454
|
-
"return": {
|
|
19455
|
-
"type": {
|
|
19456
|
-
"text": ""
|
|
19457
|
-
}
|
|
19458
|
-
},
|
|
19989
|
+
"description": "Converts an array of ColDef to an array of ColumnState",
|
|
19459
19990
|
"privacy": "public"
|
|
19460
|
-
}
|
|
19461
|
-
],
|
|
19462
|
-
"exports": [
|
|
19463
|
-
{
|
|
19464
|
-
"kind": "js",
|
|
19465
|
-
"name": "convertToKebabCase",
|
|
19466
|
-
"declaration": {
|
|
19467
|
-
"name": "convertToKebabCase",
|
|
19468
|
-
"module": "src/utils/string.ts"
|
|
19469
|
-
}
|
|
19470
|
-
}
|
|
19471
|
-
]
|
|
19472
|
-
},
|
|
19473
|
-
{
|
|
19474
|
-
"kind": "javascript-module",
|
|
19475
|
-
"path": "src/cell-renderers/utils/accessor.ts",
|
|
19476
|
-
"declarations": [
|
|
19991
|
+
},
|
|
19477
19992
|
{
|
|
19478
19993
|
"kind": "function",
|
|
19479
|
-
"name": "
|
|
19994
|
+
"name": "mergeAndDedupColDefWithColumnState",
|
|
19480
19995
|
"return": {
|
|
19481
19996
|
"type": {
|
|
19482
|
-
"text": "
|
|
19997
|
+
"text": "(ColDef | ColGroupDef)[]"
|
|
19483
19998
|
}
|
|
19484
19999
|
},
|
|
19485
20000
|
"parameters": [
|
|
19486
20001
|
{
|
|
19487
|
-
"name": "
|
|
20002
|
+
"name": "colDefs",
|
|
19488
20003
|
"type": {
|
|
19489
|
-
"text": "
|
|
20004
|
+
"text": "(ColDef | ColGroupDef)[]"
|
|
19490
20005
|
}
|
|
19491
20006
|
},
|
|
19492
20007
|
{
|
|
19493
|
-
"name": "
|
|
20008
|
+
"name": "columnStates",
|
|
19494
20009
|
"type": {
|
|
19495
|
-
"text": "
|
|
20010
|
+
"text": "ColumnState[]"
|
|
19496
20011
|
}
|
|
19497
20012
|
}
|
|
19498
|
-
]
|
|
20013
|
+
],
|
|
20014
|
+
"description": "Merges two arrays, one of `ColDef` and one of `ColumnState`, and deduplicates them.",
|
|
20015
|
+
"privacy": "public"
|
|
19499
20016
|
}
|
|
19500
20017
|
],
|
|
19501
20018
|
"exports": [
|
|
19502
20019
|
{
|
|
19503
20020
|
"kind": "js",
|
|
19504
|
-
"name": "
|
|
20021
|
+
"name": "convertColDefToColumnState",
|
|
19505
20022
|
"declaration": {
|
|
19506
|
-
"name": "
|
|
19507
|
-
"module": "src/
|
|
20023
|
+
"name": "convertColDefToColumnState",
|
|
20024
|
+
"module": "src/utils/array.ts"
|
|
19508
20025
|
}
|
|
19509
|
-
}
|
|
19510
|
-
]
|
|
19511
|
-
},
|
|
19512
|
-
{
|
|
19513
|
-
"kind": "javascript-module",
|
|
19514
|
-
"path": "src/cell-renderers/utils/index.ts",
|
|
19515
|
-
"declarations": [],
|
|
19516
|
-
"exports": [
|
|
20026
|
+
},
|
|
19517
20027
|
{
|
|
19518
20028
|
"kind": "js",
|
|
19519
|
-
"name": "
|
|
20029
|
+
"name": "sanitizeColumnState",
|
|
19520
20030
|
"declaration": {
|
|
19521
|
-
"name": "
|
|
19522
|
-
"
|
|
20031
|
+
"name": "sanitizeColumnState",
|
|
20032
|
+
"module": "src/utils/array.ts"
|
|
20033
|
+
}
|
|
20034
|
+
},
|
|
20035
|
+
{
|
|
20036
|
+
"kind": "js",
|
|
20037
|
+
"name": "convertColDefsToColumnStates",
|
|
20038
|
+
"declaration": {
|
|
20039
|
+
"name": "convertColDefsToColumnStates",
|
|
20040
|
+
"module": "src/utils/array.ts"
|
|
20041
|
+
}
|
|
20042
|
+
},
|
|
20043
|
+
{
|
|
20044
|
+
"kind": "js",
|
|
20045
|
+
"name": "mergeAndDedupColDefWithColumnState",
|
|
20046
|
+
"declaration": {
|
|
20047
|
+
"name": "mergeAndDedupColDefWithColumnState",
|
|
20048
|
+
"module": "src/utils/array.ts"
|
|
19523
20049
|
}
|
|
19524
20050
|
}
|
|
19525
20051
|
]
|
|
19526
20052
|
},
|
|
19527
20053
|
{
|
|
19528
20054
|
"kind": "javascript-module",
|
|
19529
|
-
"path": "src/
|
|
20055
|
+
"path": "src/utils/error.ts",
|
|
19530
20056
|
"declarations": [
|
|
19531
20057
|
{
|
|
19532
20058
|
"kind": "function",
|
|
19533
|
-
"name": "
|
|
20059
|
+
"name": "extractErrorMessage",
|
|
19534
20060
|
"return": {
|
|
19535
20061
|
"type": {
|
|
19536
|
-
"text": "
|
|
20062
|
+
"text": ""
|
|
19537
20063
|
}
|
|
19538
20064
|
},
|
|
19539
20065
|
"parameters": [
|
|
19540
20066
|
{
|
|
19541
|
-
"name": "
|
|
19542
|
-
"type": {
|
|
19543
|
-
"text": "Binding<TSource, readonly ColDef[]> | readonly ColDef[]"
|
|
19544
|
-
},
|
|
19545
|
-
"description": "The array to render"
|
|
19546
|
-
},
|
|
19547
|
-
{
|
|
19548
|
-
"name": "includeRenderers",
|
|
19549
|
-
"default": "true",
|
|
20067
|
+
"name": "detail",
|
|
19550
20068
|
"type": {
|
|
19551
|
-
"text": "
|
|
20069
|
+
"text": "any"
|
|
19552
20070
|
},
|
|
19553
|
-
"description": "
|
|
20071
|
+
"description": "The error detail, which can be a string, array, or object."
|
|
19554
20072
|
}
|
|
19555
20073
|
],
|
|
19556
|
-
"description": "
|
|
20074
|
+
"description": "Extracts a user-friendly error message from a given error detail.",
|
|
19557
20075
|
"privacy": "public"
|
|
19558
20076
|
}
|
|
19559
20077
|
],
|
|
19560
20078
|
"exports": [
|
|
19561
20079
|
{
|
|
19562
20080
|
"kind": "js",
|
|
19563
|
-
"name": "
|
|
20081
|
+
"name": "extractErrorMessage",
|
|
19564
20082
|
"declaration": {
|
|
19565
|
-
"name": "
|
|
19566
|
-
"module": "src/
|
|
20083
|
+
"name": "extractErrorMessage",
|
|
20084
|
+
"module": "src/utils/error.ts"
|
|
19567
20085
|
}
|
|
19568
20086
|
}
|
|
19569
20087
|
]
|
|
19570
20088
|
},
|
|
19571
20089
|
{
|
|
19572
20090
|
"kind": "javascript-module",
|
|
19573
|
-
"path": "src/
|
|
20091
|
+
"path": "src/utils/index.ts",
|
|
19574
20092
|
"declarations": [],
|
|
19575
20093
|
"exports": [
|
|
19576
20094
|
{
|
|
@@ -19578,22 +20096,15 @@
|
|
|
19578
20096
|
"name": "*",
|
|
19579
20097
|
"declaration": {
|
|
19580
20098
|
"name": "*",
|
|
19581
|
-
"package": "./
|
|
20099
|
+
"package": "./array"
|
|
19582
20100
|
}
|
|
19583
|
-
}
|
|
19584
|
-
]
|
|
19585
|
-
},
|
|
19586
|
-
{
|
|
19587
|
-
"kind": "javascript-module",
|
|
19588
|
-
"path": "src/multicolumn-dropdown/index.ts",
|
|
19589
|
-
"declarations": [],
|
|
19590
|
-
"exports": [
|
|
20101
|
+
},
|
|
19591
20102
|
{
|
|
19592
20103
|
"kind": "js",
|
|
19593
20104
|
"name": "*",
|
|
19594
20105
|
"declaration": {
|
|
19595
20106
|
"name": "*",
|
|
19596
|
-
"package": "./
|
|
20107
|
+
"package": "./error"
|
|
19597
20108
|
}
|
|
19598
20109
|
},
|
|
19599
20110
|
{
|
|
@@ -19601,7 +20112,7 @@
|
|
|
19601
20112
|
"name": "*",
|
|
19602
20113
|
"declaration": {
|
|
19603
20114
|
"name": "*",
|
|
19604
|
-
"package": "./
|
|
20115
|
+
"package": "./logger"
|
|
19605
20116
|
}
|
|
19606
20117
|
},
|
|
19607
20118
|
{
|
|
@@ -19609,795 +20120,284 @@
|
|
|
19609
20120
|
"name": "*",
|
|
19610
20121
|
"declaration": {
|
|
19611
20122
|
"name": "*",
|
|
19612
|
-
"package": "./
|
|
19613
|
-
}
|
|
19614
|
-
}
|
|
19615
|
-
]
|
|
19616
|
-
},
|
|
19617
|
-
{
|
|
19618
|
-
"kind": "javascript-module",
|
|
19619
|
-
"path": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts",
|
|
19620
|
-
"declarations": [
|
|
19621
|
-
{
|
|
19622
|
-
"kind": "variable",
|
|
19623
|
-
"name": "dropdownWidthVar",
|
|
19624
|
-
"type": {
|
|
19625
|
-
"text": "string"
|
|
19626
|
-
},
|
|
19627
|
-
"default": "'--dropdown-width'",
|
|
19628
|
-
"description": "The CSS variable to use for specifying the dropdown's width"
|
|
19629
|
-
},
|
|
19630
|
-
{
|
|
19631
|
-
"kind": "variable",
|
|
19632
|
-
"name": "optionsClass",
|
|
19633
|
-
"type": {
|
|
19634
|
-
"text": "string"
|
|
19635
|
-
},
|
|
19636
|
-
"default": "'options'",
|
|
19637
|
-
"description": "The CSS class to use for the options element's class in the dropdown"
|
|
19638
|
-
},
|
|
19639
|
-
{
|
|
19640
|
-
"kind": "variable",
|
|
19641
|
-
"name": "DISPLAY_NONE_CLASS",
|
|
19642
|
-
"type": {
|
|
19643
|
-
"text": "string"
|
|
19644
|
-
},
|
|
19645
|
-
"default": "'dnone'",
|
|
19646
|
-
"description": "Class name used to hide elements with display:none"
|
|
19647
|
-
},
|
|
19648
|
-
{
|
|
19649
|
-
"kind": "variable",
|
|
19650
|
-
"name": "multicolumnDropdownStyles",
|
|
19651
|
-
"default": "css`\n label {\n color: var(--neutral-foreground-hint, rgb(135 155 166));\n font-style: normal;\n margin: calc(var(--design-unit) * 2px) 0;\n display: block;\n cursor: pointer;\n font-size: var(--type-ramp-base-font-size);\n line-height: var(--type-ramp-base-line-height);\n }\n\n .${DISPLAY_NONE_CLASS} {\n display: none !important;\n }\n\n .root {\n position: relative;\n width: inherit;\n min-width: 250px;\n ${dropdownWidthVar}: 350px;\n }\n\n .control {\n cursor: pointer;\n position: relative;\n display: flex;\n align-items: center;\n width: 100%;\n border-radius: calc(var(--control-corner-radius) * 1px);\n }\n\n #display-field {\n width: 100%;\n cursor: pointer;\n color: inherit;\n min-height: 40px;\n padding-left: calc(var(--design-unit) * 2.25px);\n padding-right: 52px;\n border-width: 0;\n background: var(--neutral-fill-input-rest);\n border-radius: calc(var(--control-corner-radius) * 1px);\n text-overflow: ellipsis;\n font-size: var(--type-ramp-base-font-size);\n font-family: var(--body-font);\n }\n\n #display-field[disabled] {\n cursor: not-allowed;\n opacity: var(--disabled-opacity);\n }\n\n #display-field:focus {\n outline: 1px solid var(--accent-fill-rest);\n background: var(--neutral-fill-input-rest);\n border-style: none;\n box-shadow: none;\n }\n\n #display-field:hover:not(:focus):not([disabled]) {\n outline: 1px solid var(--neutral-stroke-hover, rgb(231 232 232));\n }\n\n button {\n pointer-events: none;\n }\n\n #arrow-icon {\n display: inline-block;\n width: 16px;\n color: currentColor;\n position: absolute;\n left: calc(100% - 26px);\n padding: 0;\n cursor: pointer;\n transform: rotate(0deg);\n transition: transform 0.2s linear 0s;\n }\n\n #arrow-icon.flipped {\n transform: rotate(180deg);\n }\n\n .cross-icon {\n display: inline-block;\n width: 12px;\n color: currentColor;\n position: absolute;\n left: calc(100% - 46px);\n padding: 0;\n cursor: pointer;\n visibility: hidden;\n }\n\n .cross-icon:hover {\n color: var(--error-color);\n }\n\n .disabled-icon {\n pointer-events: none;\n opacity: var(--disabled-opacity);\n }\n\n .${optionsClass} {\n min-width: 100%;\n width: var(${dropdownWidthVar});\n display: flex;\n flex-direction: column;\n position: absolute;\n height: max-content;\n overflow-y: hidden;\n margin: 5px 0;\n background: var(--neutral-fill-input-rest);\n visibility: hidden;\n z-index: 999;\n }\n\n .dropdown-above {\n bottom: 100%;\n }\n\n .dropdown-left {\n right: 0;\n }\n\n .grid-container {\n height: 300px;\n width: 100%;\n }\n\n #filter-search {\n padding: 5px;\n }\n\n .visible {\n visibility: visible;\n }\n`",
|
|
19652
|
-
"description": "Multicolumn Dropdown styles.",
|
|
19653
|
-
"privacy": "public"
|
|
19654
|
-
}
|
|
19655
|
-
],
|
|
19656
|
-
"exports": [
|
|
19657
|
-
{
|
|
19658
|
-
"kind": "js",
|
|
19659
|
-
"name": "dropdownWidthVar",
|
|
19660
|
-
"declaration": {
|
|
19661
|
-
"name": "dropdownWidthVar",
|
|
19662
|
-
"module": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts"
|
|
19663
|
-
}
|
|
19664
|
-
},
|
|
19665
|
-
{
|
|
19666
|
-
"kind": "js",
|
|
19667
|
-
"name": "optionsClass",
|
|
19668
|
-
"declaration": {
|
|
19669
|
-
"name": "optionsClass",
|
|
19670
|
-
"module": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts"
|
|
20123
|
+
"package": "./map"
|
|
19671
20124
|
}
|
|
19672
20125
|
},
|
|
19673
20126
|
{
|
|
19674
20127
|
"kind": "js",
|
|
19675
|
-
"name": "
|
|
20128
|
+
"name": "*",
|
|
19676
20129
|
"declaration": {
|
|
19677
|
-
"name": "
|
|
19678
|
-
"
|
|
20130
|
+
"name": "*",
|
|
20131
|
+
"package": "./sanitasations"
|
|
19679
20132
|
}
|
|
19680
20133
|
},
|
|
19681
20134
|
{
|
|
19682
20135
|
"kind": "js",
|
|
19683
|
-
"name": "
|
|
20136
|
+
"name": "*",
|
|
19684
20137
|
"declaration": {
|
|
19685
|
-
"name": "
|
|
19686
|
-
"
|
|
20138
|
+
"name": "*",
|
|
20139
|
+
"package": "./string"
|
|
19687
20140
|
}
|
|
19688
20141
|
}
|
|
19689
20142
|
]
|
|
19690
20143
|
},
|
|
19691
20144
|
{
|
|
19692
20145
|
"kind": "javascript-module",
|
|
19693
|
-
"path": "src/
|
|
20146
|
+
"path": "src/utils/logger.ts",
|
|
19694
20147
|
"declarations": [
|
|
19695
|
-
{
|
|
19696
|
-
"kind": "function",
|
|
19697
|
-
"name": "getMulticolumnDropdownTemplate",
|
|
19698
|
-
"parameters": [
|
|
19699
|
-
{
|
|
19700
|
-
"name": "designSystem",
|
|
19701
|
-
"default": "'foundation'",
|
|
19702
|
-
"description": "The design system prefix to use. Defaults to 'foundation'."
|
|
19703
|
-
}
|
|
19704
|
-
],
|
|
19705
|
-
"description": "Get a Design System prefixed Multicolumn Dropdown template.",
|
|
19706
|
-
"return": {
|
|
19707
|
-
"type": {
|
|
19708
|
-
"text": ""
|
|
19709
|
-
}
|
|
19710
|
-
},
|
|
19711
|
-
"privacy": "public"
|
|
19712
|
-
},
|
|
19713
20148
|
{
|
|
19714
20149
|
"kind": "variable",
|
|
19715
|
-
"name": "
|
|
19716
|
-
"description": "
|
|
20150
|
+
"name": "logger",
|
|
20151
|
+
"description": "Logger for the grid-pro package",
|
|
19717
20152
|
"privacy": "public"
|
|
19718
20153
|
}
|
|
19719
20154
|
],
|
|
19720
20155
|
"exports": [
|
|
19721
20156
|
{
|
|
19722
20157
|
"kind": "js",
|
|
19723
|
-
"name": "
|
|
19724
|
-
"declaration": {
|
|
19725
|
-
"name": "getMulticolumnDropdownTemplate",
|
|
19726
|
-
"module": "src/multicolumn-dropdown/multicolumn-dropdown.template.ts"
|
|
19727
|
-
}
|
|
19728
|
-
},
|
|
19729
|
-
{
|
|
19730
|
-
"kind": "js",
|
|
19731
|
-
"name": "multicolumnDropdownTemplate",
|
|
20158
|
+
"name": "logger",
|
|
19732
20159
|
"declaration": {
|
|
19733
|
-
"name": "
|
|
19734
|
-
"module": "src/
|
|
20160
|
+
"name": "logger",
|
|
20161
|
+
"module": "src/utils/logger.ts"
|
|
19735
20162
|
}
|
|
19736
20163
|
}
|
|
19737
20164
|
]
|
|
19738
20165
|
},
|
|
19739
20166
|
{
|
|
19740
20167
|
"kind": "javascript-module",
|
|
19741
|
-
"path": "src/
|
|
20168
|
+
"path": "src/utils/map.ts",
|
|
19742
20169
|
"declarations": [
|
|
19743
20170
|
{
|
|
19744
20171
|
"kind": "function",
|
|
19745
|
-
"name": "
|
|
19746
|
-
"
|
|
19747
|
-
{
|
|
19748
|
-
"
|
|
19749
|
-
|
|
19750
|
-
|
|
19751
|
-
|
|
19752
|
-
},
|
|
19753
|
-
{
|
|
19754
|
-
"name": "target",
|
|
19755
|
-
"type": {
|
|
19756
|
-
"text": "EventTarget"
|
|
19757
|
-
}
|
|
19758
|
-
}
|
|
19759
|
-
],
|
|
19760
|
-
"description": "Checks if the given mouse event occurred outside the target element.",
|
|
19761
|
-
"privacy": "public"
|
|
19762
|
-
},
|
|
19763
|
-
{
|
|
19764
|
-
"kind": "class",
|
|
19765
|
-
"description": "",
|
|
19766
|
-
"name": "MulticolumnDropdown",
|
|
19767
|
-
"members": [
|
|
19768
|
-
{
|
|
19769
|
-
"kind": "field",
|
|
19770
|
-
"name": "optionsElement",
|
|
19771
|
-
"type": {
|
|
19772
|
-
"text": "HTMLElement"
|
|
19773
|
-
}
|
|
19774
|
-
},
|
|
19775
|
-
{
|
|
19776
|
-
"kind": "field",
|
|
19777
|
-
"name": "lastRequest",
|
|
19778
|
-
"type": {
|
|
19779
|
-
"text": "object"
|
|
19780
|
-
},
|
|
19781
|
-
"privacy": "private"
|
|
19782
|
-
},
|
|
19783
|
-
{
|
|
19784
|
-
"kind": "field",
|
|
19785
|
-
"name": "connectOverride",
|
|
19786
|
-
"type": {
|
|
19787
|
-
"text": "Connect"
|
|
19788
|
-
},
|
|
19789
|
-
"privacy": "private"
|
|
19790
|
-
},
|
|
19791
|
-
{
|
|
19792
|
-
"kind": "field",
|
|
19793
|
-
"name": "_connectDI",
|
|
19794
|
-
"type": {
|
|
19795
|
-
"text": "Connect"
|
|
19796
|
-
},
|
|
19797
|
-
"privacy": "private"
|
|
19798
|
-
},
|
|
19799
|
-
{
|
|
19800
|
-
"kind": "field",
|
|
19801
|
-
"name": "connect",
|
|
19802
|
-
"type": {
|
|
19803
|
-
"text": "Connect"
|
|
19804
|
-
},
|
|
19805
|
-
"description": "The connect service - uses DI by default, but can be manually set for dynamic element creation"
|
|
19806
|
-
},
|
|
19807
|
-
{
|
|
19808
|
-
"kind": "field",
|
|
19809
|
-
"name": "disabled",
|
|
19810
|
-
"type": {
|
|
19811
|
-
"text": "boolean"
|
|
19812
|
-
},
|
|
19813
|
-
"privacy": "public",
|
|
19814
|
-
"description": "Whether to disable control of the component"
|
|
19815
|
-
},
|
|
19816
|
-
{
|
|
19817
|
-
"kind": "field",
|
|
19818
|
-
"name": "resourceName",
|
|
19819
|
-
"type": {
|
|
19820
|
-
"text": "string"
|
|
19821
|
-
},
|
|
19822
|
-
"privacy": "public",
|
|
19823
|
-
"description": "The name of the reqrep to get the options from"
|
|
19824
|
-
},
|
|
19825
|
-
{
|
|
19826
|
-
"kind": "field",
|
|
19827
|
-
"name": "searchKey",
|
|
19828
|
-
"type": {
|
|
19829
|
-
"text": "string | string[] | undefined"
|
|
19830
|
-
},
|
|
19831
|
-
"privacy": "public",
|
|
19832
|
-
"description": "The key(s) to search by. Use comma-separated values for multiple keys (e.g. search-key=\"NAME,ID\")."
|
|
19833
|
-
},
|
|
19834
|
-
{
|
|
19835
|
-
"kind": "field",
|
|
19836
|
-
"name": "requestSupportsAdvancedSearch",
|
|
19837
|
-
"type": {
|
|
19838
|
-
"text": "boolean"
|
|
19839
|
-
},
|
|
19840
|
-
"privacy": "public",
|
|
19841
|
-
"default": "false",
|
|
19842
|
-
"description": "Tells whether a given request supports lookup by Groovy Expressions."
|
|
19843
|
-
},
|
|
19844
|
-
{
|
|
19845
|
-
"kind": "field",
|
|
19846
|
-
"name": "valueKey",
|
|
19847
|
-
"type": {
|
|
19848
|
-
"text": "string"
|
|
19849
|
-
},
|
|
19850
|
-
"privacy": "public",
|
|
19851
|
-
"description": "The key used as the value sent to the server"
|
|
19852
|
-
},
|
|
19853
|
-
{
|
|
19854
|
-
"kind": "field",
|
|
19855
|
-
"name": "labelKey",
|
|
19856
|
-
"type": {
|
|
19857
|
-
"text": "string"
|
|
19858
|
-
},
|
|
19859
|
-
"privacy": "public",
|
|
19860
|
-
"description": "The key used as the label displayed in the UI"
|
|
19861
|
-
},
|
|
19862
|
-
{
|
|
19863
|
-
"kind": "field",
|
|
19864
|
-
"name": "dropdownPlacement",
|
|
19865
|
-
"type": {
|
|
19866
|
-
"text": "'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'"
|
|
19867
|
-
},
|
|
19868
|
-
"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"
|
|
19869
|
-
},
|
|
19870
|
-
{
|
|
19871
|
-
"kind": "field",
|
|
19872
|
-
"name": "dropdownWidth",
|
|
19873
|
-
"type": {
|
|
19874
|
-
"text": "number"
|
|
19875
|
-
},
|
|
19876
|
-
"privacy": "public",
|
|
19877
|
-
"description": "Optionally specifies the width of the dropdown"
|
|
19878
|
-
},
|
|
19879
|
-
{
|
|
19880
|
-
"kind": "field",
|
|
19881
|
-
"name": "request",
|
|
19882
|
-
"type": {
|
|
19883
|
-
"text": "object"
|
|
19884
|
-
},
|
|
19885
|
-
"privacy": "public",
|
|
19886
|
-
"description": "A request object to pass in the reqrep"
|
|
19887
|
-
},
|
|
19888
|
-
{
|
|
19889
|
-
"kind": "field",
|
|
19890
|
-
"name": "columnDefinitions",
|
|
19891
|
-
"type": {
|
|
19892
|
-
"text": "ColDef[]"
|
|
19893
|
-
},
|
|
19894
|
-
"privacy": "public",
|
|
19895
|
-
"description": "An array of AG Grid column definitions to use in the grid to display the data"
|
|
19896
|
-
},
|
|
19897
|
-
{
|
|
19898
|
-
"kind": "field",
|
|
19899
|
-
"name": "baseCriteria",
|
|
19900
|
-
"type": {
|
|
19901
|
-
"text": "string | undefined"
|
|
19902
|
-
},
|
|
19903
|
-
"privacy": "public",
|
|
19904
|
-
"description": "Base criteria that is always applied to requests combined with search criteria via AND.\nUse this to pre-filter results."
|
|
19905
|
-
},
|
|
19906
|
-
{
|
|
19907
|
-
"kind": "field",
|
|
19908
|
-
"name": "defaultSlottedNodes",
|
|
19909
|
-
"type": {
|
|
19910
|
-
"text": "Node[]"
|
|
19911
|
-
},
|
|
19912
|
-
"privacy": "public",
|
|
19913
|
-
"default": "[]"
|
|
19914
|
-
},
|
|
19915
|
-
{
|
|
19916
|
-
"kind": "field",
|
|
19917
|
-
"name": "grid",
|
|
19918
|
-
"type": {
|
|
19919
|
-
"text": "GridPro"
|
|
19920
|
-
},
|
|
19921
|
-
"privacy": "public"
|
|
19922
|
-
},
|
|
19923
|
-
{
|
|
19924
|
-
"kind": "field",
|
|
19925
|
-
"name": "_value",
|
|
19926
|
-
"type": {
|
|
19927
|
-
"text": "string"
|
|
19928
|
-
},
|
|
19929
|
-
"privacy": "private"
|
|
19930
|
-
},
|
|
19931
|
-
{
|
|
19932
|
-
"kind": "field",
|
|
19933
|
-
"name": "value",
|
|
19934
|
-
"type": {
|
|
19935
|
-
"text": "string"
|
|
19936
|
-
}
|
|
19937
|
-
},
|
|
19938
|
-
{
|
|
19939
|
-
"kind": "field",
|
|
19940
|
-
"name": "filterSearch",
|
|
19941
|
-
"type": {
|
|
19942
|
-
"text": "string"
|
|
19943
|
-
},
|
|
19944
|
-
"privacy": "public",
|
|
19945
|
-
"description": "The criteria to search by"
|
|
19946
|
-
},
|
|
19947
|
-
{
|
|
19948
|
-
"kind": "field",
|
|
19949
|
-
"name": "open",
|
|
19950
|
-
"type": {
|
|
19951
|
-
"text": "boolean"
|
|
19952
|
-
},
|
|
19953
|
-
"privacy": "public",
|
|
19954
|
-
"description": "Whether the dropdown is open or not"
|
|
19955
|
-
},
|
|
19956
|
-
{
|
|
19957
|
-
"kind": "field",
|
|
19958
|
-
"name": "selectedRow",
|
|
19959
|
-
"type": {
|
|
19960
|
-
"text": "object"
|
|
19961
|
-
},
|
|
19962
|
-
"description": "Data for the selected row"
|
|
19963
|
-
},
|
|
19964
|
-
{
|
|
19965
|
-
"kind": "field",
|
|
19966
|
-
"name": "displayValue",
|
|
19967
|
-
"description": "Value to display in the form field",
|
|
19968
|
-
"readonly": true
|
|
19969
|
-
},
|
|
19970
|
-
{
|
|
19971
|
-
"kind": "field",
|
|
19972
|
-
"name": "hasSearchKey",
|
|
19973
|
-
"type": {
|
|
19974
|
-
"text": "boolean"
|
|
19975
|
-
},
|
|
19976
|
-
"readonly": true
|
|
19977
|
-
},
|
|
19978
|
-
{
|
|
19979
|
-
"kind": "field",
|
|
19980
|
-
"name": "hasSlottedContent",
|
|
19981
|
-
"type": {
|
|
19982
|
-
"text": "boolean"
|
|
19983
|
-
},
|
|
19984
|
-
"readonly": true
|
|
19985
|
-
},
|
|
19986
|
-
{
|
|
19987
|
-
"kind": "method",
|
|
19988
|
-
"name": "setGridRowData",
|
|
19989
|
-
"privacy": "private",
|
|
19990
|
-
"parameters": [
|
|
19991
|
-
{
|
|
19992
|
-
"name": "rows",
|
|
19993
|
-
"type": {
|
|
19994
|
-
"text": "any[]"
|
|
19995
|
-
}
|
|
19996
|
-
}
|
|
19997
|
-
],
|
|
19998
|
-
"description": "Sets row data on the grid in a version-safe way.\nAG Grid v32+ removed `setRowData` in favour of `updateGridOptions`."
|
|
19999
|
-
},
|
|
20000
|
-
{
|
|
20001
|
-
"kind": "method",
|
|
20002
|
-
"name": "setGridColumnDefs",
|
|
20003
|
-
"privacy": "private",
|
|
20004
|
-
"parameters": [
|
|
20005
|
-
{
|
|
20006
|
-
"name": "colDefs",
|
|
20007
|
-
"type": {
|
|
20008
|
-
"text": "ColDef[]"
|
|
20009
|
-
}
|
|
20010
|
-
}
|
|
20011
|
-
],
|
|
20012
|
-
"description": "Sets column defs on the grid in a version-safe way.\nAG Grid v32+ removed `setColumnDefs` in favour of `updateGridOptions`."
|
|
20013
|
-
},
|
|
20014
|
-
{
|
|
20015
|
-
"kind": "method",
|
|
20016
|
-
"name": "emitValue",
|
|
20017
|
-
"privacy": "private",
|
|
20018
|
-
"parameters": [
|
|
20019
|
-
{
|
|
20020
|
-
"name": "value",
|
|
20021
|
-
"type": {
|
|
20022
|
-
"text": "string"
|
|
20023
|
-
}
|
|
20024
|
-
}
|
|
20025
|
-
],
|
|
20026
|
-
"description": "Emits 'change' and 'input' events so that the `sync` directive and forms work correctly."
|
|
20027
|
-
},
|
|
20028
|
-
{
|
|
20029
|
-
"kind": "method",
|
|
20030
|
-
"name": "toggle",
|
|
20031
|
-
"privacy": "public"
|
|
20032
|
-
},
|
|
20033
|
-
{
|
|
20034
|
-
"kind": "method",
|
|
20035
|
-
"name": "getAndSetRows",
|
|
20036
|
-
"privacy": "private"
|
|
20037
|
-
},
|
|
20038
|
-
{
|
|
20039
|
-
"kind": "field",
|
|
20040
|
-
"name": "getAndSetRowsDebounce",
|
|
20041
|
-
"privacy": "private"
|
|
20042
|
-
},
|
|
20043
|
-
{
|
|
20044
|
-
"kind": "method",
|
|
20045
|
-
"name": "filterSearchChanged",
|
|
20046
|
-
"privacy": "public"
|
|
20047
|
-
},
|
|
20048
|
-
{
|
|
20049
|
-
"kind": "method",
|
|
20050
|
-
"name": "requestChanged",
|
|
20051
|
-
"privacy": "public"
|
|
20052
|
-
},
|
|
20053
|
-
{
|
|
20054
|
-
"kind": "method",
|
|
20055
|
-
"name": "columnDefinitionsChanged",
|
|
20056
|
-
"privacy": "public"
|
|
20057
|
-
},
|
|
20058
|
-
{
|
|
20059
|
-
"kind": "field",
|
|
20060
|
-
"name": "handleClickOutside",
|
|
20061
|
-
"privacy": "private"
|
|
20062
|
-
},
|
|
20063
|
-
{
|
|
20064
|
-
"kind": "method",
|
|
20065
|
-
"name": "openChanged",
|
|
20066
|
-
"privacy": "public"
|
|
20067
|
-
},
|
|
20068
|
-
{
|
|
20069
|
-
"kind": "method",
|
|
20070
|
-
"name": "dropdownWidthChanged",
|
|
20071
|
-
"privacy": "public"
|
|
20072
|
-
},
|
|
20073
|
-
{
|
|
20074
|
-
"kind": "method",
|
|
20075
|
-
"name": "changeHandler",
|
|
20076
|
-
"privacy": "public",
|
|
20077
|
-
"parameters": [
|
|
20078
|
-
{
|
|
20079
|
-
"name": "event",
|
|
20080
|
-
"type": {
|
|
20081
|
-
"text": "Event"
|
|
20082
|
-
}
|
|
20083
|
-
}
|
|
20084
|
-
]
|
|
20085
|
-
},
|
|
20086
|
-
{
|
|
20087
|
-
"kind": "method",
|
|
20088
|
-
"name": "cloneNode",
|
|
20089
|
-
"return": {
|
|
20090
|
-
"type": {
|
|
20091
|
-
"text": "Node"
|
|
20092
|
-
}
|
|
20093
|
-
},
|
|
20094
|
-
"parameters": [
|
|
20095
|
-
{
|
|
20096
|
-
"name": "deep",
|
|
20097
|
-
"optional": true,
|
|
20098
|
-
"type": {
|
|
20099
|
-
"text": "boolean"
|
|
20100
|
-
}
|
|
20101
|
-
}
|
|
20102
|
-
],
|
|
20103
|
-
"inheritedFrom": {
|
|
20104
|
-
"name": "LifecycleMixin",
|
|
20105
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
20106
|
-
}
|
|
20107
|
-
},
|
|
20108
|
-
{
|
|
20109
|
-
"kind": "method",
|
|
20110
|
-
"name": "deepClone",
|
|
20111
|
-
"return": {
|
|
20112
|
-
"type": {
|
|
20113
|
-
"text": "Node"
|
|
20114
|
-
}
|
|
20115
|
-
},
|
|
20116
|
-
"inheritedFrom": {
|
|
20117
|
-
"name": "LifecycleMixin",
|
|
20118
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
20119
|
-
}
|
|
20120
|
-
},
|
|
20121
|
-
{
|
|
20122
|
-
"kind": "field",
|
|
20123
|
-
"name": "shouldRunDisconnect",
|
|
20124
|
-
"return": {
|
|
20125
|
-
"type": {
|
|
20126
|
-
"text": ""
|
|
20127
|
-
}
|
|
20128
|
-
},
|
|
20129
|
-
"readonly": true,
|
|
20130
|
-
"inheritedFrom": {
|
|
20131
|
-
"name": "LifecycleMixin",
|
|
20132
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
20133
|
-
}
|
|
20134
|
-
},
|
|
20135
|
-
{
|
|
20136
|
-
"kind": "field",
|
|
20137
|
-
"name": "shouldRunConnect",
|
|
20138
|
-
"return": {
|
|
20139
|
-
"type": {
|
|
20140
|
-
"text": ""
|
|
20141
|
-
}
|
|
20142
|
-
},
|
|
20143
|
-
"readonly": true,
|
|
20144
|
-
"inheritedFrom": {
|
|
20145
|
-
"name": "LifecycleMixin",
|
|
20146
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
20147
|
-
}
|
|
20148
|
-
},
|
|
20149
|
-
{
|
|
20150
|
-
"kind": "method",
|
|
20151
|
-
"name": "#_blockLifecycleDueToTokenChange",
|
|
20152
|
-
"return": {
|
|
20153
|
-
"type": {
|
|
20154
|
-
"text": "boolean"
|
|
20155
|
-
}
|
|
20156
|
-
},
|
|
20157
|
-
"parameters": [
|
|
20158
|
-
{
|
|
20159
|
-
"name": "lifecycleType",
|
|
20160
|
-
"type": {
|
|
20161
|
-
"text": "Lifecycletype"
|
|
20162
|
-
}
|
|
20163
|
-
}
|
|
20164
|
-
],
|
|
20165
|
-
"inheritedFrom": {
|
|
20166
|
-
"name": "LifecycleMixin",
|
|
20167
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
20168
|
-
}
|
|
20169
|
-
},
|
|
20170
|
-
{
|
|
20171
|
-
"kind": "field",
|
|
20172
|
-
"name": "_presentation",
|
|
20173
|
-
"type": {
|
|
20174
|
-
"text": "ComponentPresentation | null | undefined"
|
|
20175
|
-
},
|
|
20176
|
-
"privacy": "private",
|
|
20177
|
-
"default": "void 0",
|
|
20178
|
-
"inheritedFrom": {
|
|
20179
|
-
"name": "FoundationElement",
|
|
20180
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
20181
|
-
}
|
|
20182
|
-
},
|
|
20183
|
-
{
|
|
20184
|
-
"kind": "field",
|
|
20185
|
-
"name": "$presentation",
|
|
20186
|
-
"type": {
|
|
20187
|
-
"text": "ComponentPresentation | null"
|
|
20188
|
-
},
|
|
20189
|
-
"privacy": "public",
|
|
20190
|
-
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
20191
|
-
"inheritedFrom": {
|
|
20192
|
-
"name": "FoundationElement",
|
|
20193
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
20194
|
-
}
|
|
20195
|
-
},
|
|
20196
|
-
{
|
|
20197
|
-
"kind": "field",
|
|
20198
|
-
"name": "template",
|
|
20199
|
-
"type": {
|
|
20200
|
-
"text": "ElementViewTemplate | void | null"
|
|
20201
|
-
},
|
|
20202
|
-
"privacy": "public",
|
|
20203
|
-
"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.",
|
|
20204
|
-
"inheritedFrom": {
|
|
20205
|
-
"name": "FoundationElement",
|
|
20206
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
20207
|
-
}
|
|
20208
|
-
},
|
|
20209
|
-
{
|
|
20210
|
-
"kind": "method",
|
|
20211
|
-
"name": "templateChanged",
|
|
20212
|
-
"privacy": "protected",
|
|
20213
|
-
"return": {
|
|
20214
|
-
"type": {
|
|
20215
|
-
"text": "void"
|
|
20216
|
-
}
|
|
20217
|
-
},
|
|
20218
|
-
"inheritedFrom": {
|
|
20219
|
-
"name": "FoundationElement",
|
|
20220
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
20221
|
-
}
|
|
20222
|
-
},
|
|
20223
|
-
{
|
|
20224
|
-
"kind": "field",
|
|
20225
|
-
"name": "styles",
|
|
20226
|
-
"type": {
|
|
20227
|
-
"text": "ElementStyles | void | null"
|
|
20228
|
-
},
|
|
20229
|
-
"privacy": "public",
|
|
20230
|
-
"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.",
|
|
20231
|
-
"inheritedFrom": {
|
|
20232
|
-
"name": "FoundationElement",
|
|
20233
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
20234
|
-
}
|
|
20235
|
-
},
|
|
20236
|
-
{
|
|
20237
|
-
"kind": "method",
|
|
20238
|
-
"name": "stylesChanged",
|
|
20239
|
-
"privacy": "protected",
|
|
20240
|
-
"return": {
|
|
20241
|
-
"type": {
|
|
20242
|
-
"text": "void"
|
|
20243
|
-
}
|
|
20244
|
-
},
|
|
20245
|
-
"inheritedFrom": {
|
|
20246
|
-
"name": "FoundationElement",
|
|
20247
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
20248
|
-
}
|
|
20249
|
-
},
|
|
20250
|
-
{
|
|
20251
|
-
"kind": "method",
|
|
20252
|
-
"name": "compose",
|
|
20253
|
-
"privacy": "public",
|
|
20254
|
-
"static": true,
|
|
20255
|
-
"return": {
|
|
20256
|
-
"type": {
|
|
20257
|
-
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
20258
|
-
}
|
|
20259
|
-
},
|
|
20260
|
-
"parameters": [
|
|
20261
|
-
{
|
|
20262
|
-
"name": "this",
|
|
20263
|
-
"type": {
|
|
20264
|
-
"text": "K"
|
|
20265
|
-
}
|
|
20266
|
-
},
|
|
20267
|
-
{
|
|
20268
|
-
"name": "elementDefinition",
|
|
20269
|
-
"type": {
|
|
20270
|
-
"text": "T"
|
|
20271
|
-
},
|
|
20272
|
-
"description": "The definition of the element to create the registry\nfunction for."
|
|
20273
|
-
}
|
|
20274
|
-
],
|
|
20275
|
-
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
20276
|
-
"inheritedFrom": {
|
|
20277
|
-
"name": "FoundationElement",
|
|
20278
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
20279
|
-
}
|
|
20280
|
-
}
|
|
20281
|
-
],
|
|
20282
|
-
"events": [
|
|
20283
|
-
{
|
|
20284
|
-
"description": "Fired when the selected value changes",
|
|
20285
|
-
"name": "change"
|
|
20286
|
-
},
|
|
20287
|
-
{
|
|
20288
|
-
"description": "Fired when the value is updated (including programmatic changes)",
|
|
20289
|
-
"name": "input"
|
|
20290
|
-
}
|
|
20291
|
-
],
|
|
20292
|
-
"attributes": [
|
|
20293
|
-
{
|
|
20294
|
-
"type": {
|
|
20295
|
-
"text": "boolean"
|
|
20296
|
-
},
|
|
20297
|
-
"description": "Whether to disable control of the component",
|
|
20298
|
-
"fieldName": "disabled"
|
|
20299
|
-
},
|
|
20172
|
+
"name": "getAvailableIndexes",
|
|
20173
|
+
"return": {
|
|
20174
|
+
"type": {
|
|
20175
|
+
"text": ""
|
|
20176
|
+
}
|
|
20177
|
+
},
|
|
20178
|
+
"parameters": [
|
|
20300
20179
|
{
|
|
20301
|
-
"name": "
|
|
20180
|
+
"name": "data",
|
|
20302
20181
|
"type": {
|
|
20303
|
-
"text": "string"
|
|
20182
|
+
"text": "Map<string, [string]>"
|
|
20304
20183
|
},
|
|
20305
|
-
"description": "
|
|
20306
|
-
|
|
20307
|
-
|
|
20184
|
+
"description": "the map data to have the keys extracted from"
|
|
20185
|
+
}
|
|
20186
|
+
],
|
|
20187
|
+
"description": "Get the keys of the Metadata indexes map",
|
|
20188
|
+
"privacy": "public"
|
|
20189
|
+
},
|
|
20190
|
+
{
|
|
20191
|
+
"kind": "function",
|
|
20192
|
+
"name": "getAvailableIndexFields",
|
|
20193
|
+
"return": {
|
|
20194
|
+
"type": {
|
|
20195
|
+
"text": ""
|
|
20196
|
+
}
|
|
20197
|
+
},
|
|
20198
|
+
"parameters": [
|
|
20308
20199
|
{
|
|
20309
|
-
"name": "
|
|
20200
|
+
"name": "data",
|
|
20310
20201
|
"type": {
|
|
20311
|
-
"text": "string
|
|
20202
|
+
"text": "Map<string, [string]>"
|
|
20312
20203
|
},
|
|
20313
|
-
"description": "
|
|
20314
|
-
|
|
20315
|
-
|
|
20204
|
+
"description": "the map data to have the values extracted from"
|
|
20205
|
+
}
|
|
20206
|
+
],
|
|
20207
|
+
"description": "Get the values of the Metadata indexes map",
|
|
20208
|
+
"privacy": "public"
|
|
20209
|
+
}
|
|
20210
|
+
],
|
|
20211
|
+
"exports": [
|
|
20212
|
+
{
|
|
20213
|
+
"kind": "js",
|
|
20214
|
+
"name": "getAvailableIndexes",
|
|
20215
|
+
"declaration": {
|
|
20216
|
+
"name": "getAvailableIndexes",
|
|
20217
|
+
"module": "src/utils/map.ts"
|
|
20218
|
+
}
|
|
20219
|
+
},
|
|
20220
|
+
{
|
|
20221
|
+
"kind": "js",
|
|
20222
|
+
"name": "getAvailableIndexFields",
|
|
20223
|
+
"declaration": {
|
|
20224
|
+
"name": "getAvailableIndexFields",
|
|
20225
|
+
"module": "src/utils/map.ts"
|
|
20226
|
+
}
|
|
20227
|
+
}
|
|
20228
|
+
]
|
|
20229
|
+
},
|
|
20230
|
+
{
|
|
20231
|
+
"kind": "javascript-module",
|
|
20232
|
+
"path": "src/utils/sanitasations.ts",
|
|
20233
|
+
"declarations": [
|
|
20234
|
+
{
|
|
20235
|
+
"kind": "variable",
|
|
20236
|
+
"name": "csvExportParams",
|
|
20237
|
+
"type": {
|
|
20238
|
+
"text": "CsvExportParams"
|
|
20239
|
+
},
|
|
20240
|
+
"default": "{\n processCellCallback: (params) => {\n if (\n ['+', '=', '-', '@', '\\t', '\\n'].some((character) =>\n String(params.value).startsWith(character),\n )\n ) {\n return `'${params.value}`;\n }\n\n return params.value;\n },\n}",
|
|
20241
|
+
"description": "Allows secure export of CSV https://owasp.org/www-community/attacks/CSV_Injection",
|
|
20242
|
+
"privacy": "public"
|
|
20243
|
+
}
|
|
20244
|
+
],
|
|
20245
|
+
"exports": [
|
|
20246
|
+
{
|
|
20247
|
+
"kind": "js",
|
|
20248
|
+
"name": "csvExportParams",
|
|
20249
|
+
"declaration": {
|
|
20250
|
+
"name": "csvExportParams",
|
|
20251
|
+
"module": "src/utils/sanitasations.ts"
|
|
20252
|
+
}
|
|
20253
|
+
}
|
|
20254
|
+
]
|
|
20255
|
+
},
|
|
20256
|
+
{
|
|
20257
|
+
"kind": "javascript-module",
|
|
20258
|
+
"path": "src/utils/string.ts",
|
|
20259
|
+
"declarations": [
|
|
20260
|
+
{
|
|
20261
|
+
"kind": "function",
|
|
20262
|
+
"name": "convertToKebabCase",
|
|
20263
|
+
"parameters": [
|
|
20316
20264
|
{
|
|
20317
|
-
"name": "
|
|
20265
|
+
"name": "value",
|
|
20318
20266
|
"type": {
|
|
20319
|
-
"text": "
|
|
20267
|
+
"text": "string"
|
|
20320
20268
|
},
|
|
20321
|
-
"
|
|
20322
|
-
|
|
20323
|
-
|
|
20324
|
-
|
|
20269
|
+
"description": "The value to convert to Kebab case."
|
|
20270
|
+
}
|
|
20271
|
+
],
|
|
20272
|
+
"description": "Convert string values from 'camelCase' to 'kebab-case'",
|
|
20273
|
+
"return": {
|
|
20274
|
+
"type": {
|
|
20275
|
+
"text": ""
|
|
20276
|
+
}
|
|
20277
|
+
},
|
|
20278
|
+
"privacy": "public"
|
|
20279
|
+
}
|
|
20280
|
+
],
|
|
20281
|
+
"exports": [
|
|
20282
|
+
{
|
|
20283
|
+
"kind": "js",
|
|
20284
|
+
"name": "convertToKebabCase",
|
|
20285
|
+
"declaration": {
|
|
20286
|
+
"name": "convertToKebabCase",
|
|
20287
|
+
"module": "src/utils/string.ts"
|
|
20288
|
+
}
|
|
20289
|
+
}
|
|
20290
|
+
]
|
|
20291
|
+
},
|
|
20292
|
+
{
|
|
20293
|
+
"kind": "javascript-module",
|
|
20294
|
+
"path": "src/cell-renderers/utils/accessor.ts",
|
|
20295
|
+
"declarations": [
|
|
20296
|
+
{
|
|
20297
|
+
"kind": "function",
|
|
20298
|
+
"name": "setValueWithAccessor",
|
|
20299
|
+
"return": {
|
|
20300
|
+
"type": {
|
|
20301
|
+
"text": "string"
|
|
20302
|
+
}
|
|
20303
|
+
},
|
|
20304
|
+
"parameters": [
|
|
20325
20305
|
{
|
|
20326
|
-
"name": "
|
|
20306
|
+
"name": "data",
|
|
20327
20307
|
"type": {
|
|
20328
|
-
"text": "
|
|
20329
|
-
}
|
|
20330
|
-
"description": "The key used as the value sent to the server",
|
|
20331
|
-
"fieldName": "valueKey"
|
|
20308
|
+
"text": "any"
|
|
20309
|
+
}
|
|
20332
20310
|
},
|
|
20333
20311
|
{
|
|
20334
|
-
"name": "
|
|
20312
|
+
"name": "accessor",
|
|
20335
20313
|
"type": {
|
|
20336
20314
|
"text": "string"
|
|
20337
|
-
}
|
|
20338
|
-
|
|
20339
|
-
|
|
20340
|
-
|
|
20315
|
+
}
|
|
20316
|
+
}
|
|
20317
|
+
]
|
|
20318
|
+
}
|
|
20319
|
+
],
|
|
20320
|
+
"exports": [
|
|
20321
|
+
{
|
|
20322
|
+
"kind": "js",
|
|
20323
|
+
"name": "setValueWithAccessor",
|
|
20324
|
+
"declaration": {
|
|
20325
|
+
"name": "setValueWithAccessor",
|
|
20326
|
+
"module": "src/cell-renderers/utils/accessor.ts"
|
|
20327
|
+
}
|
|
20328
|
+
}
|
|
20329
|
+
]
|
|
20330
|
+
},
|
|
20331
|
+
{
|
|
20332
|
+
"kind": "javascript-module",
|
|
20333
|
+
"path": "src/cell-renderers/utils/index.ts",
|
|
20334
|
+
"declarations": [],
|
|
20335
|
+
"exports": [
|
|
20336
|
+
{
|
|
20337
|
+
"kind": "js",
|
|
20338
|
+
"name": "*",
|
|
20339
|
+
"declaration": {
|
|
20340
|
+
"name": "*",
|
|
20341
|
+
"package": "./accessor"
|
|
20342
|
+
}
|
|
20343
|
+
}
|
|
20344
|
+
]
|
|
20345
|
+
},
|
|
20346
|
+
{
|
|
20347
|
+
"kind": "javascript-module",
|
|
20348
|
+
"path": "src/column/utils/grid-pro-columns.ts",
|
|
20349
|
+
"declarations": [
|
|
20350
|
+
{
|
|
20351
|
+
"kind": "function",
|
|
20352
|
+
"name": "gridProColumns",
|
|
20353
|
+
"return": {
|
|
20354
|
+
"type": {
|
|
20355
|
+
"text": "CaptureType<TSource>"
|
|
20356
|
+
}
|
|
20357
|
+
},
|
|
20358
|
+
"parameters": [
|
|
20341
20359
|
{
|
|
20342
|
-
"name": "
|
|
20360
|
+
"name": "itemsBinding",
|
|
20343
20361
|
"type": {
|
|
20344
|
-
"text": "
|
|
20362
|
+
"text": "Binding<TSource, readonly ColDef[]> | readonly ColDef[]"
|
|
20345
20363
|
},
|
|
20346
|
-
"description": "
|
|
20347
|
-
"fieldName": "dropdownPlacement"
|
|
20364
|
+
"description": "The array to render"
|
|
20348
20365
|
},
|
|
20349
20366
|
{
|
|
20350
|
-
"name": "
|
|
20367
|
+
"name": "includeRenderers",
|
|
20368
|
+
"default": "true",
|
|
20351
20369
|
"type": {
|
|
20352
|
-
"text": "
|
|
20370
|
+
"text": "boolean"
|
|
20353
20371
|
},
|
|
20354
|
-
"description": "Optionally
|
|
20355
|
-
"fieldName": "dropdownWidth"
|
|
20356
|
-
}
|
|
20357
|
-
],
|
|
20358
|
-
"mixins": [
|
|
20359
|
-
{
|
|
20360
|
-
"name": "LifecycleMixin",
|
|
20361
|
-
"package": "@genesislcap/foundation-utils"
|
|
20372
|
+
"description": "Optionally tells whether to include cell renderers, if available"
|
|
20362
20373
|
}
|
|
20363
20374
|
],
|
|
20364
|
-
"
|
|
20365
|
-
"name": "FoundationElement",
|
|
20366
|
-
"package": "@microsoft/fast-foundation"
|
|
20367
|
-
},
|
|
20368
|
-
"tagName": "%%prefix%%-multicolumn-dropdown",
|
|
20369
|
-
"customElement": true
|
|
20370
|
-
},
|
|
20371
|
-
{
|
|
20372
|
-
"kind": "variable",
|
|
20373
|
-
"name": "foundationMulticolumnDropdown",
|
|
20374
|
-
"description": "A function that returns a Multicolumn Dropdown registration for configuring the component with a DesignSystem.",
|
|
20375
|
+
"description": "A directive that renders a set of grid-pro-column elements from a given input binding",
|
|
20375
20376
|
"privacy": "public"
|
|
20376
20377
|
}
|
|
20377
20378
|
],
|
|
20378
20379
|
"exports": [
|
|
20379
20380
|
{
|
|
20380
20381
|
"kind": "js",
|
|
20381
|
-
"name": "
|
|
20382
|
-
"declaration": {
|
|
20383
|
-
"name": "wasClickOutsideElement",
|
|
20384
|
-
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
20385
|
-
}
|
|
20386
|
-
},
|
|
20387
|
-
{
|
|
20388
|
-
"kind": "js",
|
|
20389
|
-
"name": "MulticolumnDropdown",
|
|
20382
|
+
"name": "gridProColumns",
|
|
20390
20383
|
"declaration": {
|
|
20391
|
-
"name": "
|
|
20392
|
-
"module": "src/
|
|
20384
|
+
"name": "gridProColumns",
|
|
20385
|
+
"module": "src/column/utils/grid-pro-columns.ts"
|
|
20393
20386
|
}
|
|
20394
|
-
}
|
|
20387
|
+
}
|
|
20388
|
+
]
|
|
20389
|
+
},
|
|
20390
|
+
{
|
|
20391
|
+
"kind": "javascript-module",
|
|
20392
|
+
"path": "src/column/utils/index.ts",
|
|
20393
|
+
"declarations": [],
|
|
20394
|
+
"exports": [
|
|
20395
20395
|
{
|
|
20396
20396
|
"kind": "js",
|
|
20397
|
-
"name": "
|
|
20397
|
+
"name": "*",
|
|
20398
20398
|
"declaration": {
|
|
20399
|
-
"name": "
|
|
20400
|
-
"
|
|
20399
|
+
"name": "*",
|
|
20400
|
+
"package": "./grid-pro-columns"
|
|
20401
20401
|
}
|
|
20402
20402
|
}
|
|
20403
20403
|
]
|